From d0fa073a5ddd95429cb06a2384d2f15df357f35a Mon Sep 17 00:00:00 2001 From: Cebutris Date: Mon, 12 Feb 2018 21:57:24 -0500 Subject: [PATCH 01/94] adds in a hallucinogenic collar and a dirty sweater --- code/citadel/custom_loadout/custom_items.dm | 34 +++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/code/citadel/custom_loadout/custom_items.dm b/code/citadel/custom_loadout/custom_items.dm index 7e1c053d25..1c7b95c268 100644 --- a/code/citadel/custom_loadout/custom_items.dm +++ b/code/citadel/custom_loadout/custom_items.dm @@ -263,3 +263,37 @@ body_parts_covered = CHEST|GROIN|LEGS|ARMS|HANDS icon = 'icons/obj/custom.dmi' icon_override = 'icons/mob/custom_w.dmi' + +/*TechnicalMagi*/ +/obj/item/clothing/under/bb_sweater/black/naomi + name = "worn black sweater" + desc = "A well-loved sweater, showing signs of several cleanings and re-stitchings. And a few stains. Is that cat fur?" + +/obj/item/clothing/neck/petcollar/naomi + name = "worn pet collar" + desc = "a pet collar that looks well used." + +/obj/item/clothing/neck/petcollar/naomi/examine(mob/user) + . = ..() + if(usr.ckey != "technicalmagi") + to_chat(user, "There's something odd about the it. You probably shouldn't wear it...")//warn people not to wear it if they're not Naomi, lest they become as crazy as she is + +/obj/item/clothing/neck/petcollar/naomi/equipped() + . = ..() + START_PROCESSING(SSobj, src) + +/obj/item/clothing/neck/petcollar/naomi/dropped() + . = ..() + STOP_PROCESSING(SSobj, src) + +/obj/item/clothing/neck/petcollar/naomi/process() + var/mob/living/carbon/human/H + if(ishuman(loc)) + H = loc + if(!H) + return + else if(H.get_item_by_slot(slot_neck) == src) + if(H.arousalloss < H.max_arousal / 3) + H.arousalloss = H.max_arousal / 3 + if(prob(5)) + H.hallucination += 10 \ No newline at end of file From d54a92ef46db9359a594b913e6210064739b64a9 Mon Sep 17 00:00:00 2001 From: Cebutris Date: Mon, 12 Feb 2018 22:04:44 -0500 Subject: [PATCH 02/94] adds the crazy catslut stuff to the loadout --- .../code/modules/client/loadout/__donator.dm | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/modular_citadel/code/modules/client/loadout/__donator.dm b/modular_citadel/code/modules/client/loadout/__donator.dm index 0cbabd3ca5..c28ae631d7 100644 --- a/modular_citadel/code/modules/client/loadout/__donator.dm +++ b/modular_citadel/code/modules/client/loadout/__donator.dm @@ -180,3 +180,15 @@ category = slot_hands path = /obj/item/storage/backpack/satchel/carrot ckeywhitelist = list("improvedname") + +/datum/gear/naomisweater + name = "worn black sweater" + category = slot_w_uniform + path = /obj/item/clothing/under/bb_sweater/black/naomi + ckeywhitelist = list("technicalmagi") + +/datum/gear/naomicollar + name = "worn pet collar" + category = slot_neck + path = /obj/item/clothing/neck/petcollar/naomi + ckeywhitelist = list("technicalmagi") \ No newline at end of file From 440e39ed68318d62f0fcd5429e2f754a18f3c797 Mon Sep 17 00:00:00 2001 From: Cebutris Date: Mon, 12 Feb 2018 22:15:53 -0500 Subject: [PATCH 03/94] limits the hallucinations a little --- code/citadel/custom_loadout/custom_items.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/citadel/custom_loadout/custom_items.dm b/code/citadel/custom_loadout/custom_items.dm index 1c7b95c268..3b4501153e 100644 --- a/code/citadel/custom_loadout/custom_items.dm +++ b/code/citadel/custom_loadout/custom_items.dm @@ -295,5 +295,5 @@ else if(H.get_item_by_slot(slot_neck) == src) if(H.arousalloss < H.max_arousal / 3) H.arousalloss = H.max_arousal / 3 - if(prob(5)) + if(prob(5) && H.hallucination < 15) H.hallucination += 10 \ No newline at end of file From 5b30b29a4b765c9e5c39b667e91f8560305a9a91 Mon Sep 17 00:00:00 2001 From: Tad Hardesty Date: Thu, 15 Feb 2018 01:21:25 -0800 Subject: [PATCH 04/94] Support stations with multiple z-levels (#35339) * Remove ZLEVEL_STATION_PRIMARY * Add Up and Down traits for use by ladders and chasms * Give map_config creation its own proc * Combine LoadConfig and ValidateJSON and remove transition_config * Make space linkage a z-level trait * Remove ZLEVEL_EMPTY_SPACE * Update uses of GetFullMapPath * Handle multi-Z stations and load Lavaland and Reebe at runtime * Remove unused space maps * Fix inappropriate z-expansion in map reader, improve logging * Update comments relating to z-level configuration * Add Lavaland and Reebe to ALL_MAPS --- _maps/_basemap.dm | 9 +- _maps/map_files/generic/Space.dmm | 65540 ---------------- _maps/map_files/generic/Space2.dmm | 65540 ---------------- _maps/map_files/generic/SpaceStation.dmm | 65540 ---------------- code/__DEFINES/maps.dm | 96 +- .../configuration/configuration.dm | 2 +- code/controllers/subsystem/mapping.dm | 102 +- code/controllers/subsystem/minimap.dm | 5 +- code/controllers/subsystem/persistence.dm | 6 +- code/datums/map_config.dm | 167 +- code/game/objects/structures/ladders.dm | 9 +- code/game/turfs/simulated/chasm.dm | 19 +- .../turfs/simulated/floor/plating/dirt.dm | 2 +- code/game/turfs/space/transit.dm | 10 +- code/modules/events/pirates.dm | 2 +- code/modules/mapping/map_template.dm | 2 +- code/modules/mapping/reader.dm | 2 +- .../mapping/space_management/space_level.dm | 6 +- .../space_management/space_transition.dm | 5 +- .../mapping/space_management/traits.dm | 34 +- .../space_management/zlevel_manager.dm | 12 +- .../mapGenerators/repair.dm | 16 +- .../ruins/objects_and_mobs/sin_ruins.dm | 9 +- 23 files changed, 272 insertions(+), 196863 deletions(-) delete mode 100644 _maps/map_files/generic/Space.dmm delete mode 100644 _maps/map_files/generic/Space2.dmm delete mode 100644 _maps/map_files/generic/SpaceStation.dmm diff --git a/_maps/_basemap.dm b/_maps/_basemap.dm index e51e6d90ef..da795b6933 100644 --- a/_maps/_basemap.dm +++ b/_maps/_basemap.dm @@ -1,16 +1,11 @@ //#define LOWMEMORYMODE //uncomment this to load centcom and runtime station and thats it. #include "map_files\generic\CentCom.dmm" -#include "map_files\generic\SpaceStation.dmm" #ifndef LOWMEMORYMODE - - #include "map_files\generic\Space.dmm" - #include "map_files\generic\Space2.dmm" - #include "map_files\Mining\Lavaland.dmm" - #include "map_files\generic\City_of_Cogs.dmm" - #ifdef ALL_MAPS + #include "map_files\Mining\Lavaland.dmm" + #include "map_files\generic\City_of_Cogs.dmm" #include "map_files\debug\runtimestation.dmm" #include "map_files\Deltastation\DeltaStation2.dmm" #include "map_files\MetaStation\MetaStation.dmm" diff --git a/_maps/map_files/generic/Space.dmm b/_maps/map_files/generic/Space.dmm deleted file mode 100644 index 6621535fd3..0000000000 --- a/_maps/map_files/generic/Space.dmm +++ /dev/null @@ -1,65540 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/open/space/basic, -/area/space) - -(1,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(2,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(3,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(4,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(5,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(6,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(7,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(8,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(9,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(10,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(11,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(12,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(13,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(14,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(15,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(16,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(17,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(18,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(19,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(20,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(21,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(22,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(23,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(24,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(25,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(26,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(27,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(28,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(29,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(30,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(31,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(32,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(33,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(34,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(35,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(36,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(37,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(38,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(39,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(40,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(41,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(42,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(43,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(44,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(45,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(46,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(47,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(48,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(49,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(50,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(51,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(52,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(53,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(54,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(55,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(56,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(57,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(58,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(59,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(60,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(61,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(62,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(63,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(64,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(65,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(66,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(67,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(68,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(69,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(70,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(71,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(72,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(73,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(74,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(75,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(76,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(77,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(78,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(79,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(80,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(81,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(82,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(83,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(84,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(85,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(86,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(87,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(88,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(89,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(90,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(91,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(92,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(93,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(94,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(95,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(96,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(97,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(98,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(99,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(100,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(101,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(102,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(103,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(104,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(105,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(106,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(107,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(108,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(109,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(110,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(111,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(112,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(113,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(114,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(115,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(116,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(117,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(118,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(119,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(120,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(121,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(122,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(123,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(124,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(125,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(126,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(127,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(128,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(129,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(130,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(131,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(132,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(133,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(134,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(135,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(136,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(137,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(138,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(139,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(140,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(141,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(142,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(143,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(144,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(145,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(146,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(147,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(148,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(149,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(150,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(151,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(152,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(153,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(154,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(155,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(156,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(157,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(158,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(159,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(160,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(161,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(162,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(163,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(164,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(165,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(166,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(167,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(168,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(169,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(170,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(171,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(172,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(173,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(174,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(175,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(176,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(177,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(178,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(179,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(180,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(181,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(182,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(183,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(184,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(185,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(186,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(187,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(188,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(189,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(190,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(191,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(192,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(193,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(194,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(195,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(196,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(197,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(198,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(199,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(200,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(201,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(202,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(203,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(204,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(205,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(206,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(207,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(208,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(209,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(210,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(211,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(212,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(213,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(214,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(215,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(216,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(217,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(218,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(219,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(220,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(221,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(222,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(223,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(224,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(225,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(226,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(227,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(228,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(229,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(230,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(231,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(232,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(233,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(234,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(235,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(236,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(237,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(238,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(239,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(240,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(241,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(242,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(243,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(244,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(245,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(246,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(247,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(248,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(249,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(250,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(251,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(252,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(253,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(254,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(255,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} diff --git a/_maps/map_files/generic/Space2.dmm b/_maps/map_files/generic/Space2.dmm deleted file mode 100644 index 6621535fd3..0000000000 --- a/_maps/map_files/generic/Space2.dmm +++ /dev/null @@ -1,65540 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/open/space/basic, -/area/space) - -(1,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(2,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(3,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(4,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(5,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(6,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(7,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(8,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(9,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(10,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(11,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(12,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(13,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(14,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(15,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(16,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(17,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(18,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(19,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(20,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(21,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(22,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(23,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(24,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(25,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(26,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(27,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(28,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(29,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(30,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(31,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(32,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(33,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(34,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(35,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(36,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(37,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(38,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(39,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(40,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(41,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(42,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(43,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(44,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(45,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(46,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(47,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(48,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(49,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(50,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(51,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(52,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(53,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(54,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(55,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(56,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(57,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(58,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(59,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(60,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(61,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(62,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(63,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(64,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(65,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(66,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(67,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(68,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(69,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(70,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(71,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(72,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(73,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(74,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(75,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(76,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(77,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(78,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(79,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(80,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(81,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(82,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(83,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(84,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(85,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(86,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(87,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(88,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(89,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(90,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(91,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(92,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(93,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(94,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(95,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(96,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(97,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(98,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(99,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(100,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(101,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(102,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(103,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(104,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(105,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(106,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(107,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(108,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(109,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(110,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(111,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(112,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(113,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(114,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(115,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(116,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(117,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(118,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(119,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(120,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(121,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(122,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(123,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(124,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(125,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(126,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(127,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(128,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(129,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(130,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(131,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(132,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(133,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(134,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(135,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(136,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(137,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(138,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(139,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(140,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(141,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(142,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(143,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(144,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(145,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(146,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(147,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(148,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(149,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(150,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(151,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(152,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(153,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(154,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(155,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(156,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(157,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(158,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(159,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(160,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(161,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(162,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(163,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(164,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(165,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(166,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(167,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(168,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(169,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(170,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(171,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(172,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(173,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(174,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(175,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(176,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(177,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(178,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(179,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(180,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(181,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(182,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(183,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(184,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(185,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(186,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(187,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(188,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(189,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(190,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(191,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(192,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(193,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(194,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(195,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(196,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(197,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(198,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(199,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(200,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(201,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(202,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(203,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(204,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(205,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(206,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(207,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(208,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(209,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(210,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(211,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(212,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(213,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(214,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(215,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(216,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(217,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(218,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(219,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(220,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(221,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(222,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(223,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(224,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(225,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(226,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(227,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(228,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(229,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(230,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(231,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(232,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(233,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(234,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(235,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(236,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(237,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(238,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(239,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(240,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(241,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(242,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(243,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(244,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(245,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(246,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(247,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(248,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(249,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(250,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(251,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(252,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(253,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(254,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(255,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} diff --git a/_maps/map_files/generic/SpaceStation.dmm b/_maps/map_files/generic/SpaceStation.dmm deleted file mode 100644 index 6621535fd3..0000000000 --- a/_maps/map_files/generic/SpaceStation.dmm +++ /dev/null @@ -1,65540 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/open/space/basic, -/area/space) - -(1,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(2,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(3,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(4,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(5,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(6,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(7,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(8,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(9,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(10,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(11,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(12,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(13,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(14,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(15,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(16,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(17,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(18,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(19,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(20,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(21,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(22,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(23,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(24,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(25,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(26,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(27,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(28,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(29,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(30,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(31,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(32,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(33,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(34,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(35,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(36,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(37,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(38,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(39,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(40,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(41,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(42,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(43,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(44,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(45,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(46,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(47,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(48,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(49,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(50,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(51,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(52,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(53,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(54,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(55,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(56,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(57,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(58,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(59,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(60,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(61,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(62,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(63,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(64,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(65,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(66,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(67,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(68,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(69,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(70,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(71,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(72,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(73,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(74,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(75,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(76,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(77,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(78,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(79,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(80,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(81,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(82,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(83,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(84,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(85,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(86,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(87,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(88,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(89,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(90,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(91,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(92,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(93,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(94,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(95,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(96,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(97,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(98,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(99,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(100,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(101,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(102,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(103,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(104,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(105,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(106,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(107,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(108,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(109,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(110,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(111,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(112,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(113,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(114,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(115,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(116,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(117,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(118,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(119,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(120,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(121,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(122,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(123,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(124,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(125,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(126,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(127,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(128,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(129,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(130,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(131,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(132,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(133,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(134,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(135,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(136,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(137,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(138,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(139,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(140,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(141,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(142,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(143,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(144,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(145,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(146,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(147,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(148,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(149,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(150,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(151,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(152,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(153,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(154,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(155,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(156,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(157,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(158,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(159,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(160,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(161,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(162,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(163,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(164,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(165,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(166,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(167,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(168,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(169,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(170,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(171,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(172,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(173,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(174,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(175,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(176,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(177,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(178,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(179,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(180,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(181,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(182,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(183,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(184,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(185,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(186,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(187,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(188,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(189,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(190,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(191,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(192,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(193,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(194,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(195,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(196,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(197,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(198,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(199,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(200,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(201,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(202,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(203,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(204,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(205,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(206,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(207,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(208,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(209,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(210,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(211,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(212,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(213,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(214,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(215,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(216,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(217,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(218,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(219,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(220,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(221,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(222,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(223,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(224,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(225,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(226,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(227,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(228,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(229,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(230,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(231,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(232,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(233,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(234,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(235,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(236,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(237,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(238,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(239,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(240,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(241,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(242,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(243,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(244,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(245,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(246,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(247,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(248,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(249,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(250,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(251,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(252,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(253,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(254,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(255,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} diff --git a/code/__DEFINES/maps.dm b/code/__DEFINES/maps.dm index 73f6a7b4dd..c83851fd5f 100644 --- a/code/__DEFINES/maps.dm +++ b/code/__DEFINES/maps.dm @@ -1,46 +1,32 @@ /* -The /tg/ codebase currently requires you to have 11 z-levels of the same size dimensions. -z-level order is important, the order you put them in inside the map config.dm will determine what z level number they are assigned ingame. -Names of z-level do not matter, but order does greatly, for instances such as checking alive status of revheads on z1 +The /tg/ codebase allows mixing of hardcoded and dynamically-loaded z-levels. +Z-levels can be reordered as desired and their properties are set by "traits". +See map_config.dm for how a particular station's traits may be chosen. +The list DEFAULT_MAP_TRAITS at the bottom of this file should correspond to +the maps that are hardcoded, as set in _maps/_basemap.dm. SSmapping is +responsible for loading every non-hardcoded z-level. -current as of september 17, 2017 -z1 = station -z2 = centcom -z5 = mining -z6 = city of cogs -Everything else = randomized space -Last space-z level = empty +As of 2018-02-04, the typical z-levels for a single-level station are: +1: CentCom +2: Station +3-4: Randomized space +5: Mining +6: City of Cogs +7-11: Randomized space +12: Empty space +13: Transit space + +Multi-Z stations are supported and multi-Z mining and away missions would +require only minor tweaks. */ -#define CROSSLINKED 2 -#define SELFLOOPING 1 -#define UNAFFECTED 0 - -#define MAIN_STATION "Main Station" -#define CENTCOM "CentCom" -#define CITY_OF_COGS "City of Cogs" -#define EMPTY_AREA_1 "Empty Area 1" -#define EMPTY_AREA_2 "Empty Area 2" -#define MINING_ASTEROID "Mining Asteroid" -#define EMPTY_AREA_3 "Empty Area 3" -#define EMPTY_AREA_4 "Empty Area 4" -#define EMPTY_AREA_5 "Empty Area 5" -#define EMPTY_AREA_6 "Empty Area 6" -#define EMPTY_AREA_7 "Empty Area 7" -#define EMPTY_AREA_8 "Empty Area 8" -#define AWAY_MISSION "Away Mission" - -//for modifying jobs +// helpers for modifying jobs, used in various job_changes.dm files #define MAP_JOB_CHECK if(SSmapping.config.map_name != JOB_MODIFICATION_MAP_NAME) { return; } #define MAP_JOB_CHECK_BASE if(SSmapping.config.map_name != JOB_MODIFICATION_MAP_NAME) { return ..(); } #define MAP_REMOVE_JOB(jobpath) /datum/job/##jobpath/map_check() { return (SSmapping.config.map_name != JOB_MODIFICATION_MAP_NAME) && ..() } -//zlevel defines, can be overridden for different maps in the appropriate _maps file. -#define ZLEVEL_STATION_PRIMARY 2 -#define ZLEVEL_EMPTY_SPACE 12 - #define SPACERUIN_MAP_EDGE_PAD 15 -#define ZLEVEL_SPACE_RUIN_COUNT 5 +#define ZLEVEL_SPACE_RUIN_COUNT 7 // traits // boolean - marks a level as having that property if present @@ -52,26 +38,40 @@ Last space-z level = empty #define ZTRAIT_AWAY "Away Mission" #define ZTRAIT_SPACE_RUINS "Space Ruins" #define ZTRAIT_LAVA_RUINS "Lava Ruins" + // number - bombcap is multiplied by this before being applied to bombs #define ZTRAIT_BOMBCAP_MULTIPLIER "Bombcap Multiplier" -// trait definitions -#define DL_NAME "name" -#define DL_LINKAGE "linkage" -#define DL_TRAITS "traits" +// numeric offsets - e.g. {"Down": -1} means that chasms will fall to z - 1 rather than oblivion +#define ZTRAIT_UP "Up" +#define ZTRAIT_DOWN "Down" -#define DECLARE_LEVEL(NAME, LINKAGE, TRAITS) list(DL_NAME = NAME, DL_LINKAGE = LINKAGE, DL_TRAITS = TRAITS) -// corresponds to basemap.dm +// enum - how space transitions should affect this level +#define ZTRAIT_LINKAGE "Linkage" + // UNAFFECTED if absent - no space transitions + #define UNAFFECTED null + // SELFLOOPING - space transitions always self-loop + #define SELFLOOPING "Self" + // CROSSLINKED - mixed in with the cross-linked space pool + #define CROSSLINKED "Cross" + +// default trait definitions, used by SSmapping +#define ZTRAITS_CENTCOM list(ZTRAIT_LINKAGE = SELFLOOPING, ZTRAIT_CENTCOM = TRUE) +#define ZTRAITS_STATION list(ZTRAIT_LINKAGE = CROSSLINKED, ZTRAIT_STATION = TRUE) +#define ZTRAITS_SPACE list(ZTRAIT_LINKAGE = CROSSLINKED, ZTRAIT_SPACE_RUINS = TRUE) +#define ZTRAITS_LAVALAND list(ZTRAIT_MINING = TRUE, ZTRAIT_LAVA_RUINS = TRUE, ZTRAIT_BOMBCAP_MULTIPLIER = 2) +#define ZTRAITS_REEBE list(ZTRAIT_REEBE = TRUE, ZTRAIT_BOMBCAP_MULTIPLIER = 0.5) + +#define DL_NAME "name" +#define DL_TRAITS "traits" +#define DECLARE_LEVEL(NAME, TRAITS) list(DL_NAME = NAME, DL_TRAITS = TRAITS) + +// must correspond to _basemap.dm for things to work correctly #define DEFAULT_MAP_TRAITS list(\ - DECLARE_LEVEL("CentCom", SELFLOOPING, list(ZTRAIT_CENTCOM = TRUE)),\ - DECLARE_LEVEL("Main Station", CROSSLINKED, list(ZTRAIT_STATION = TRUE)),\ - DECLARE_LEVEL("Empty Area 1", CROSSLINKED, list(ZTRAIT_SPACE_RUINS = TRUE)),\ - DECLARE_LEVEL("Empty Area 2", CROSSLINKED, list(ZTRAIT_SPACE_RUINS = TRUE)),\ - DECLARE_LEVEL("Lavaland", UNAFFECTED, list(ZTRAIT_MINING = TRUE, ZTRAIT_LAVA_RUINS = TRUE, ZTRAIT_BOMBCAP_MULTIPLIER = 2)),\ - DECLARE_LEVEL("Reebe", UNAFFECTED, list(ZTRAIT_REEBE = TRUE, ZTRAIT_BOMBCAP_MULTIPLIER = 0.5)),\ + DECLARE_LEVEL("CentCom", ZTRAITS_CENTCOM),\ ) -//Camera lock flags +// Camera lock flags #define CAMERA_LOCK_STATION 1 #define CAMERA_LOCK_MINING 2 #define CAMERA_LOCK_CENTCOM 4 @@ -85,4 +85,4 @@ Last space-z level = empty #define PLACE_DEFAULT "random" #define PLACE_SAME_Z "same" #define PLACE_SPACE_RUIN "space" -#define PLACE_LAVA_RUIN "lavaland" \ No newline at end of file +#define PLACE_LAVA_RUIN "lavaland" diff --git a/code/controllers/configuration/configuration.dm b/code/controllers/configuration/configuration.dm index 238718b682..a19f3147e7 100644 --- a/code/controllers/configuration/configuration.dm +++ b/code/controllers/configuration/configuration.dm @@ -236,7 +236,7 @@ switch (command) if ("map") - currentmap = new ("_maps/[data].json") + currentmap = load_map_config("_maps/[data].json") if(currentmap.defaulted) log_config("Failed to load map config for [data]!") currentmap = null diff --git a/code/controllers/subsystem/mapping.dm b/code/controllers/subsystem/mapping.dm index 3721f89a60..3da9dfe41a 100644 --- a/code/controllers/subsystem/mapping.dm +++ b/code/controllers/subsystem/mapping.dm @@ -23,15 +23,19 @@ SUBSYSTEM_DEF(mapping) var/loading_ruins = FALSE // Z-manager stuff + var/station_start // should only be used for maploading-related tasks + var/space_levels_so_far = 0 var/list/z_list var/datum/space_level/transit + var/datum/space_level/empty_space + var/dmm_suite/loader /datum/controller/subsystem/mapping/PreInit() if(!config) #ifdef FORCE_MAP - config = new(FORCE_MAP) + config = load_map_config(FORCE_MAP) #else - config = new(error_if_missing = FALSE) + config = load_map_config(error_if_missing = FALSE) #endif return ..() @@ -39,16 +43,20 @@ SUBSYSTEM_DEF(mapping) /datum/controller/subsystem/mapping/Initialize(timeofday) if(config.defaulted) to_chat(world, "Unable to load next map config, defaulting to Box Station") + loader = new loadWorld() repopulate_sorted_areas() process_teleport_locs() //Sets up the wizard teleport locations preloadTemplates() #ifndef LOWMEMORYMODE - // Create space levels - for(var/I in 1 to ZLEVEL_SPACE_RUIN_COUNT) - add_new_zlevel("Empty Area [2 + I]", CROSSLINKED, list(ZTRAIT_SPACE_RUINS = TRUE)) - add_new_zlevel("Empty Area [3 + ZLEVEL_SPACE_RUIN_COUNT]", CROSSLINKED, list()) // no ruins - transit = add_new_zlevel("Transit", UNAFFECTED, list(ZTRAIT_TRANSIT = TRUE)) + // Create space ruin levels + while (space_levels_so_far < ZLEVEL_SPACE_RUIN_COUNT) + ++space_levels_so_far + add_new_zlevel("Empty Area [space_levels_so_far]", ZTRAITS_SPACE) + // and one level with no ruins + empty_space = add_new_zlevel("Empty Area [1 + space_levels_so_far]", list(ZTRAIT_LINKAGE = CROSSLINKED)) + // and the transit level + transit = add_new_zlevel("Transit", list(ZTRAIT_TRANSIT = TRUE)) // Pick a random away mission. createRandomZlevel() @@ -71,6 +79,7 @@ SUBSYSTEM_DEF(mapping) // Set up Z-level transitions. setup_map_transitions() generate_station_area_list() + QDEL_NULL(loader) ..() /* Nuke threats, for making the blue tiles on the station go RED @@ -108,32 +117,77 @@ SUBSYSTEM_DEF(mapping) z_list = SSmapping.z_list -/datum/controller/subsystem/mapping/proc/TryLoadZ(filename, errorList, forceLevel, last) - var/static/dmm_suite/loader - if(!loader) - loader = new - if(!loader.load_map(file(filename), 0, 0, forceLevel, no_changeturf = TRUE)) - errorList |= filename - if(last) - QDEL_NULL(loader) - #define INIT_ANNOUNCE(X) to_chat(world, "[X]"); log_world(X) +/datum/controller/subsystem/mapping/proc/LoadGroup(list/errorList, name, path, files, list/traits, list/default_traits) + var/start_time = REALTIMEOFDAY + + if (!islist(files)) // handle single-level maps + files = list(files) + + // check that the total z count of all maps matches the list of traits + var/total_z = 0 + for (var/file in files) + var/full_path = "_maps/[path]/[file]" + var/bounds = loader.load_map(file(full_path), 1, 1, 1, cropMap=FALSE, measureOnly=TRUE) + files[file] = total_z // save the start Z of this file + total_z += bounds[MAP_MAXZ] - bounds[MAP_MINZ] + 1 + + if (!length(traits)) // null or empty - default + for (var/i in 1 to total_z) + traits += list(default_traits) + else if (total_z != traits.len) // mismatch + INIT_ANNOUNCE("WARNING: [traits.len] trait sets specified for [total_z] z-levels in [path]!") + if (total_z < traits.len) // ignore extra traits + traits.Cut(total_z + 1) + while (total_z > traits.len) // fall back to defaults on extra levels + traits += list(default_traits) + + // preload the relevant space_level datums + var/start_z = world.maxz + 1 + var/i = 0 + for (var/level in traits) + add_new_zlevel("[name][i ? " [i + 1]" : ""]", level) + ++i + + // load the maps + for (var/file in files) + var/full_path = "_maps/[path]/[file]" + if(!loader.load_map(file(full_path), 0, 0, start_z + files[file], no_changeturf = TRUE)) + errorList |= full_path + + INIT_ANNOUNCE("Loaded [name] in [(REALTIMEOFDAY - start_time)/10]s!") + /datum/controller/subsystem/mapping/proc/loadWorld() //if any of these fail, something has gone horribly, HORRIBLY, wrong var/list/FailedZs = list() - var/start_time = REALTIMEOFDAY - - INIT_ANNOUNCE("Loading [config.map_name]...") - TryLoadZ(config.GetFullMapPath(), FailedZs, ZLEVEL_STATION_PRIMARY) + // ensure we have space_level datums for compiled-in maps InitializeDefaultZLevels() - INIT_ANNOUNCE("Loaded station in [(REALTIMEOFDAY - start_time)/10]s!") + + // load the station + station_start = world.maxz + 1 + INIT_ANNOUNCE("Loading [config.map_name]...") + LoadGroup(FailedZs, "Station", config.map_path, config.map_file, config.traits, ZTRAITS_STATION) + if(SSdbcore.Connect()) var/datum/DBQuery/query_round_map_name = SSdbcore.NewQuery("UPDATE [format_table_name("round")] SET map_name = '[config.map_name]' WHERE id = [GLOB.round_id]") query_round_map_name.Execute() - if(config.minetype != "lavaland") - INIT_ANNOUNCE("WARNING: A map without lavaland set as its minetype was loaded! This is being ignored! Update the maploader code!") +#ifndef LOWMEMORYMODE + // TODO: remove this when the DB is prepared for the z-levels getting reordered + while (world.maxz < (5 - 1) && space_levels_so_far < ZLEVEL_SPACE_RUIN_COUNT) + ++space_levels_so_far + add_new_zlevel("Empty Area [space_levels_so_far]", ZTRAITS_SPACE) + + // load mining + if(config.minetype == "lavaland") + LoadGroup(FailedZs, "Lavaland", "map_files/Mining", "Lavaland.dmm", default_traits = ZTRAITS_LAVALAND) + else if (!isnull(config.minetype)) + INIT_ANNOUNCE("WARNING: An unknown minetype '[config.minetype]' was set! This is being ignored! Update the maploader code!") + + // load Reebe + LoadGroup(FailedZs, "Reebe", "map_files/generic", "City_of_Cogs.dmm", default_traits = ZTRAITS_REEBE) +#endif if(LAZYLEN(FailedZs)) //but seriously, unless the server's filesystem is messed up this will never happen var/msg = "RED ALERT! The following map files failed to load: [FailedZs[1]]" @@ -209,7 +263,7 @@ GLOBAL_LIST_EMPTY(the_station_areas) /datum/controller/subsystem/mapping/proc/changemap(var/datum/map_config/VM) if(!VM.MakeNextMap()) - next_map_config = new(default_to_box = TRUE) + next_map_config = load_map_config(default_to_box = TRUE) message_admins("Failed to set new map with next_map.json for [VM.map_name]! Using default as backup!") return diff --git a/code/controllers/subsystem/minimap.dm b/code/controllers/subsystem/minimap.dm index fa9821b85b..6f835d082f 100644 --- a/code/controllers/subsystem/minimap.dm +++ b/code/controllers/subsystem/minimap.dm @@ -9,7 +9,10 @@ SUBSYSTEM_DEF(minimap) /datum/controller/subsystem/minimap/Initialize(timeofday) z_levels = SSmapping.levels_by_trait(ZTRAIT_STATION) - var/hash = md5(SSmapping.config.GetFullMapPath()) + var/list/hashlist = list() + for (var/file in SSmapping.config.GetFullMapPaths()) + hashlist += md5(file2text(file)) + var/hash = hashlist.Join("\n") if(CONFIG_GET(flag/generate_minimaps)) if(hash == trim(file2text(hash_path()))) for(var/z in z_levels) //We have these files cached, let's register them diff --git a/code/controllers/subsystem/persistence.dm b/code/controllers/subsystem/persistence.dm index 3973d9d281..b46a55c4d1 100644 --- a/code/controllers/subsystem/persistence.dm +++ b/code/controllers/subsystem/persistence.dm @@ -56,7 +56,7 @@ SUBSYSTEM_DEF(persistence) old_secret_satchels.Cut(pos, pos+1 % old_secret_satchels.len) F.x = old_secret_satchels[pos]["x"] F.y = old_secret_satchels[pos]["y"] - F.z = ZLEVEL_STATION_PRIMARY + F.z = SSmapping.station_start path = text2path(old_secret_satchels[pos]["saved_obj"]) if(F) @@ -67,7 +67,7 @@ SUBSYSTEM_DEF(persistence) spawned_objects[spawned_item] = TRUE placed_satchel++ var/free_satchels = 0 - for(var/turf/T in shuffle(block(locate(TRANSITIONEDGE,TRANSITIONEDGE,ZLEVEL_STATION_PRIMARY), locate(world.maxx-TRANSITIONEDGE,world.maxy-TRANSITIONEDGE,ZLEVEL_STATION_PRIMARY)))) //Nontrivially expensive but it's roundstart only + for(var/turf/T in shuffle(block(locate(TRANSITIONEDGE,TRANSITIONEDGE,SSmapping.station_start), locate(world.maxx-TRANSITIONEDGE,world.maxy-TRANSITIONEDGE,SSmapping.station_start)))) //Nontrivially expensive but it's roundstart only if(isfloorturf(T) && !isplatingturf(T)) new /obj/item/storage/backpack/satchel/flat/secret(T) free_satchels++ @@ -189,7 +189,7 @@ SUBSYSTEM_DEF(persistence) var/list/satchels_to_add = list() for(var/A in new_secret_satchels) var/obj/item/storage/backpack/satchel/flat/F = A - if(QDELETED(F) || F.z != ZLEVEL_STATION_PRIMARY || F.invisibility != INVISIBILITY_MAXIMUM) + if(QDELETED(F) || F.z != SSmapping.station_start || F.invisibility != INVISIBILITY_MAXIMUM) continue var/list/savable_obj = list() for(var/obj/O in F) diff --git a/code/datums/map_config.dm b/code/datums/map_config.dm index bda639892b..a1061e4e77 100644 --- a/code/datums/map_config.dm +++ b/code/datums/map_config.dm @@ -4,46 +4,42 @@ // -Cyberboss /datum/map_config + // Metadata var/config_filename = "_maps/boxstation.json" + var/defaulted = TRUE // set to FALSE by LoadConfig() succeeding + // Config from maps.txt + var/config_max_users = 0 + var/config_min_users = 0 + var/voteweight = 1 + + // Config actually from the JSON - should default to Box var/map_name = "Box Station" var/map_path = "map_files/BoxStation" var/map_file = "BoxStation.dmm" + var/traits = null + var/minetype = "lavaland" + var/allow_custom_shuttles = TRUE var/shuttles = list( "cargo" = "cargo_box", "ferry" = "ferry_fancy", "whiteship" = "whiteship_box", "emergency" = "emergency_box") - //Order matters here. - var/list/transition_config = list(CENTCOM = SELFLOOPING, - MAIN_STATION = CROSSLINKED, - EMPTY_AREA_1 = CROSSLINKED, - EMPTY_AREA_2 = CROSSLINKED, - MINING = SELFLOOPING, - CITY_OF_COGS = SELFLOOPING, - EMPTY_AREA_3 = CROSSLINKED, - EMPTY_AREA_4 = CROSSLINKED, - EMPTY_AREA_5 = CROSSLINKED, - EMPTY_AREA_6 = CROSSLINKED, - EMPTY_AREA_7 = CROSSLINKED, - EMPTY_AREA_8 = CROSSLINKED) - var/defaulted = TRUE //if New failed - - var/config_max_users = 0 - var/config_min_users = 0 - var/voteweight = 1 - var/allow_custom_shuttles = TRUE - -/datum/map_config/New(filename = "data/next_map.json", default_to_box, delete_after, error_if_missing = TRUE) - if(default_to_box) - return - LoadConfig(filename, error_if_missing) - if(delete_after) +/proc/load_map_config(filename = "data/next_map.json", default_to_box, delete_after, error_if_missing = TRUE) + var/datum/map_config/config = new + if (default_to_box) + return config + if (!config.LoadConfig(filename, error_if_missing)) + qdel(config) + config = new /datum/map_config // Fall back to Box + if (delete_after) fdel(filename) + return config +#define CHECK_EXISTS(X) if(!istext(json[X])) { log_world("[##X] missing from json!"); return; } /datum/map_config/proc/LoadConfig(filename, error_if_missing) if(!fexists(filename)) if(error_if_missing) @@ -65,99 +61,66 @@ log_world("map_config is not json: [filename]") return - if(!ValidateJSON(json)) - log_world("map_config failed to validate for above reason: [filename]") - return - config_filename = filename + CHECK_EXISTS("map_name") map_name = json["map_name"] + CHECK_EXISTS("map_path") map_path = json["map_path"] - map_file = json["map_file"] - if(islist(json["shuttles"])) + map_file = json["map_file"] + // "map_file": "BoxStation.dmm" + if (istext(map_file)) + if (!fexists("_maps/[map_path]/[map_file]")) + log_world("Map file ([map_path]/[map_file]) does not exist!") + return + // "map_file": ["Lower.dmm", "Upper.dmm"] + else if (islist(map_file)) + for (var/file in map_file) + if (!fexists("_maps/[map_path]/[file]")) + log_world("Map file ([map_path]/[file]) does not exist!") + return + else + log_world("map_file missing from json!") + return + + if (islist(json["shuttles"])) var/list/L = json["shuttles"] for(var/key in L) var/value = L[key] shuttles[key] = value - - minetype = json["minetype"] || minetype - allow_custom_shuttles = json["allow_custom_shuttles"] != FALSE - - var/jtcl = json["transition_config"] - if(jtcl && jtcl != "default") - transition_config.Cut() - - for(var/I in jtcl) - transition_config[TransitionStringToEnum(I)] = TransitionStringToEnum(jtcl[I]) - - defaulted = FALSE - -#define CHECK_EXISTS(X) if(!istext(json[X])) { log_world("[##X] missing from json!"); return; } -/datum/map_config/proc/ValidateJSON(list/json) - CHECK_EXISTS("map_name") - CHECK_EXISTS("map_path") - CHECK_EXISTS("map_file") - - var/shuttles = json["shuttles"] - if(shuttles && !islist(shuttles)) - log_world("json\[shuttles\] is not a list!") - - var/path = GetFullMapPath(json["map_path"], json["map_file"]) - if(!fexists(path)) - log_world("Map file ([path]) does not exist!") + else if ("shuttles" in json) + log_world("map_config shuttles is not a list!") return - var/tc = json["transition_config"] - if(tc != null && tc != "default") - if(!islist(tc)) - log_world("transition_config is not a list!") - return + traits = json["traits"] + // "traits": [{"Linkage": "Cross"}, {"Space Ruins": true}] + if (islist(traits)) + // "Station" is set by default, but it's assumed if you're setting + // traits you want to customize which level is cross-linked + for (var/level in traits) + if (!(ZTRAIT_STATION in level)) + level[ZTRAIT_STATION] = TRUE + // "traits": null or absent -> default + else if (!isnull(traits)) + log_world("map_config traits is not a list!") + return - for(var/I in tc) - if(isnull(TransitionStringToEnum(I))) - log_world("Invalid transition_config option: [I]!") - if(isnull(TransitionStringToEnum(tc[I]))) - log_world("Invalid transition_config option: [I]!") + if ("minetype" in json) + minetype = json["minetype"] + allow_custom_shuttles = json["allow_custom_shuttles"] != FALSE + + defaulted = FALSE return TRUE #undef CHECK_EXISTS -/datum/map_config/proc/TransitionStringToEnum(string) - switch(string) - if("CROSSLINKED") - return CROSSLINKED - if("SELFLOOPING") - return SELFLOOPING - if("UNAFFECTED") - return UNAFFECTED - if("MAIN_STATION") - return MAIN_STATION - if("CENTCOM") - return CENTCOM - if("CITY_OF_COGS") - return CITY_OF_COGS - if("MINING") - return MINING - if("EMPTY_AREA_1") - return EMPTY_AREA_1 - if("EMPTY_AREA_2") - return EMPTY_AREA_2 - if("EMPTY_AREA_3") - return EMPTY_AREA_3 - if("EMPTY_AREA_4") - return EMPTY_AREA_4 - if("EMPTY_AREA_5") - return EMPTY_AREA_5 - if("EMPTY_AREA_6") - return EMPTY_AREA_6 - if("EMPTY_AREA_7") - return EMPTY_AREA_7 - if("EMPTY_AREA_8") - return EMPTY_AREA_8 - -/datum/map_config/proc/GetFullMapPath(mp = map_path, mf = map_file) - return "_maps/[mp]/[mf]" +/datum/map_config/proc/GetFullMapPaths() + if (istext(map_file)) + return list("_maps/[map_path]/[map_file]") + . = list() + for (var/file in map_file) + . += "_maps/[map_path]/[file]" /datum/map_config/proc/MakeNextMap() return config_filename == "data/next_map.json" || fcopy(config_filename, "data/next_map.json") diff --git a/code/game/objects/structures/ladders.dm b/code/game/objects/structures/ladders.dm index 1dc6cd9cf7..72572db686 100644 --- a/code/game/objects/structures/ladders.dm +++ b/code/game/objects/structures/ladders.dm @@ -35,19 +35,20 @@ /obj/structure/ladder/LateInitialize() // By default, discover ladders above and below us vertically var/turf/T = get_turf(src) + var/obj/structure/ladder/L if (!down) - for (var/obj/structure/ladder/L in locate(T.x, T.y, T.z - 1)) + L = locate() in SSmapping.get_turf_below(T) + if (L) down = L L.up = src // Don't waste effort looping the other way L.update_icon() - break if (!up) - for (var/obj/structure/ladder/L in locate(T.x, T.y, T.z + 1)) + L = locate() in SSmapping.get_turf_above(T) + if (L) up = L L.down = src // Don't waste effort looping the other way L.update_icon() - break update_icon() diff --git a/code/game/turfs/simulated/chasm.dm b/code/game/turfs/simulated/chasm.dm index dec9deac51..5c05c44fc5 100644 --- a/code/game/turfs/simulated/chasm.dm +++ b/code/game/turfs/simulated/chasm.dm @@ -11,7 +11,7 @@ /turf/open/chasm/Initialize() . = ..() - AddComponent(/datum/component/chasm, null) + AddComponent(/datum/component/chasm, SSmapping.get_turf_below(src)) /turf/open/chasm/proc/set_target(turf/target) GET_COMPONENT(chasm_component, /datum/component/chasm) @@ -64,16 +64,6 @@ /turf/open/chasm/CanPass(atom/movable/mover, turf/target) return 1 - -// Naive "down" which just subtracts a z-level -/turf/open/chasm/straight_down - baseturfs = /turf/open/chasm/straight_down - -/turf/open/chasm/straight_down/Initialize() - . = ..() - set_target(locate(x, y, z - 1)) - - // Chasms for Lavaland, with planetary atmos and lava glow /turf/open/chasm/lavaland initial_gas_mix = LAVALAND_DEFAULT_ATMOS @@ -95,10 +85,3 @@ underlay_appearance.icon = 'icons/turf/floors.dmi' underlay_appearance.icon_state = "dirt" return TRUE - -/turf/open/chasm/jungle/straight_down - baseturfs = /turf/open/chasm/jungle/straight_down - -/turf/open/chasm/jungle/straight_down/Initialize(mapload) - . = ..() - set_target(locate(x, y, z - 1)) diff --git a/code/game/turfs/simulated/floor/plating/dirt.dm b/code/game/turfs/simulated/floor/plating/dirt.dm index a9ddd4180e..4c4a523567 100644 --- a/code/game/turfs/simulated/floor/plating/dirt.dm +++ b/code/game/turfs/simulated/floor/plating/dirt.dm @@ -3,7 +3,7 @@ desc = "Upon closer examination, it's still dirt." icon = 'icons/turf/floors.dmi' icon_state = "dirt" - baseturfs = /turf/open/chasm/jungle/straight_down + baseturfs = /turf/open/chasm/jungle initial_gas_mix = LAVALAND_DEFAULT_ATMOS planetary_atmos = TRUE attachment_holes = FALSE diff --git a/code/game/turfs/space/transit.dm b/code/game/turfs/space/transit.dm index a2f8d8262c..e66b148e9c 100644 --- a/code/game/turfs/space/transit.dm +++ b/code/game/turfs/space/transit.dm @@ -40,12 +40,10 @@ var/min = 1+TRANSITIONEDGE var/list/possible_transtitons = list() - var/k = 1 - var/list/config_list = SSmapping.config.transition_config - for(var/a in config_list) - if(config_list[a] == CROSSLINKED) // Only pick z-levels connected to station space - possible_transtitons += k - k++ + for(var/A in SSmapping.z_list) + var/datum/space_level/D = A + if (D.linkage == CROSSLINKED) + possible_transtitons += D.z_value var/_z = pick(possible_transtitons) //now select coordinates for a border turf diff --git a/code/modules/events/pirates.dm b/code/modules/events/pirates.dm index 2ec6422bb2..b43b5892ea 100644 --- a/code/modules/events/pirates.dm +++ b/code/modules/events/pirates.dm @@ -60,7 +60,7 @@ var/datum/map_template/pirate_event_ship/ship = new var/x = rand(TRANSITIONEDGE,world.maxx - TRANSITIONEDGE - ship.width) var/y = rand(TRANSITIONEDGE,world.maxy - TRANSITIONEDGE - ship.height) - var/z = ZLEVEL_EMPTY_SPACE + var/z = SSmapping.empty_space.z_value var/turf/T = locate(x,y,z) if(!T) CRASH("Pirate event found no turf to load in") diff --git a/code/modules/mapping/map_template.dm b/code/modules/mapping/map_template.dm index 7cc91781ef..45a203b401 100644 --- a/code/modules/mapping/map_template.dm +++ b/code/modules/mapping/map_template.dm @@ -52,7 +52,7 @@ var/x = round((world.maxx - width)/2) var/y = round((world.maxy - height)/2) - var/datum/space_level/level = SSmapping.add_new_zlevel(name, UNAFFECTED, list(ZTRAIT_AWAY = TRUE)) + var/datum/space_level/level = SSmapping.add_new_zlevel(name, list(ZTRAIT_AWAY = TRUE)) var/list/bounds = maploader.load_map(file(mappath), x, y, level.z_value, no_changeturf=(SSatoms.initialized == INITIALIZATION_INSSATOMS), placeOnTop=TRUE) if(!bounds) return FALSE diff --git a/code/modules/mapping/reader.dm b/code/modules/mapping/reader.dm index 0e37d74c1b..c0d9e65653 100644 --- a/code/modules/mapping/reader.dm +++ b/code/modules/mapping/reader.dm @@ -94,7 +94,7 @@ GLOBAL_DATUM_INIT(_preloader, /dmm_suite/preloader, new) var/zcrd = text2num(dmmRegex.group[5]) + z_offset - 1 var/zexpansion = zcrd > world.maxz - if(zexpansion) + if(zexpansion && !measureOnly) if(cropMap) continue else diff --git a/code/modules/mapping/space_management/space_level.dm b/code/modules/mapping/space_management/space_level.dm index 22a6d6ed6f..cc9c6e11f1 100644 --- a/code/modules/mapping/space_management/space_level.dm +++ b/code/modules/mapping/space_management/space_level.dm @@ -1,5 +1,5 @@ /datum/space_level - var/name = "Your config settings failed, you need to fix this for the datum space levels to work" + var/name = "NAME MISSING" var/list/neigbours = list() var/list/traits var/z_value = 1 //actual z placement @@ -7,8 +7,8 @@ var/xi var/yi //imaginary placements on the grid -/datum/space_level/New(new_z, new_name, new_linkage = SELFLOOPING, list/new_traits = list()) +/datum/space_level/New(new_z, new_name, list/new_traits = list()) z_value = new_z name = new_name traits = new_traits - set_linkage(new_linkage) + set_linkage(new_traits[ZTRAIT_LINKAGE]) diff --git a/code/modules/mapping/space_management/space_transition.dm b/code/modules/mapping/space_management/space_transition.dm index fa7cab9436..cae8b6116e 100644 --- a/code/modules/mapping/space_management/space_transition.dm +++ b/code/modules/mapping/space_management/space_transition.dm @@ -1,9 +1,8 @@ /datum/space_level/proc/set_linkage(new_linkage) linkage = new_linkage if(linkage == SELFLOOPING) - neigbours = list() - var/list/L = list(TEXT_NORTH,TEXT_SOUTH,TEXT_EAST,TEXT_WEST) - for(var/A in L) + neigbours = list(TEXT_NORTH,TEXT_SOUTH,TEXT_EAST,TEXT_WEST) + for(var/A in neigbours) neigbours[A] = src /datum/space_level/proc/set_neigbours(list/L) diff --git a/code/modules/mapping/space_management/traits.dm b/code/modules/mapping/space_management/traits.dm index a086ec01cc..9ba8d96d5e 100644 --- a/code/modules/mapping/space_management/traits.dm +++ b/code/modules/mapping/space_management/traits.dm @@ -1,15 +1,19 @@ // Look up levels[z].traits[trait] /datum/controller/subsystem/mapping/proc/level_trait(z, trait) - if (!z) + if (!isnum(z) || z < 1) return null - var/list/trait_list if (z_list) + if (z > z_list.len) + stack_trace("Unmanaged z-level [z]! maxz = [world.maxz], z_list.len = [z_list.len]") + return list() var/datum/space_level/S = get_level(z) - trait_list = S.traits + return S.traits[trait] else - var/list/default_map_traits = DEFAULT_MAP_TRAITS - trait_list = default_map_traits[z][DL_TRAITS] - return trait_list[trait] + var/list/default = DEFAULT_MAP_TRAITS + if (z > default.len) + stack_trace("Unmanaged z-level [z]! maxz = [world.maxz], default.len = [default.len]") + return list() + return default[z][DL_TRAITS][trait] // Check if levels[z] has any of the specified traits /datum/controller/subsystem/mapping/proc/level_has_any_trait(z, list/traits) @@ -45,6 +49,24 @@ . += S.z_value break +// Attempt to get the turf below the provided one according to Z traits +/datum/controller/subsystem/mapping/proc/get_turf_below(turf/T) + if (!T) + return + var/offset = level_trait(T.z, ZTRAIT_DOWN) + if (!offset) + return + return locate(T.x, T.y, T.z + offset) + +// Attempt to get the turf above the provided one according to Z traits +/datum/controller/subsystem/mapping/proc/get_turf_above(turf/T) + if (!T) + return + var/offset = level_trait(T.z, ZTRAIT_UP) + if (!offset) + return + return locate(T.x, T.y, T.z + offset) + // Prefer not to use this one too often /datum/controller/subsystem/mapping/proc/get_station_center() var/station_z = levels_by_trait(ZTRAIT_STATION)[1] diff --git a/code/modules/mapping/space_management/zlevel_manager.dm b/code/modules/mapping/space_management/zlevel_manager.dm index 5a442c5b6a..a0d84c55dd 100644 --- a/code/modules/mapping/space_management/zlevel_manager.dm +++ b/code/modules/mapping/space_management/zlevel_manager.dm @@ -13,20 +13,20 @@ for (var/I in 1 to default_map_traits.len) var/list/features = default_map_traits[I] - var/datum/space_level/S = new(I, features[DL_NAME], features[DL_LINKAGE], features[DL_TRAITS]) + var/datum/space_level/S = new(I, features[DL_NAME], features[DL_TRAITS]) z_list += S -/datum/controller/subsystem/mapping/proc/add_new_zlevel(name, linkage = SELFLOOPING, traits = list(), z_type = /datum/space_level) +/datum/controller/subsystem/mapping/proc/add_new_zlevel(name, traits = list(), z_type = /datum/space_level) var/new_z = z_list.len + 1 if (world.maxz < new_z) world.incrementMaxZ() CHECK_TICK // TODO: sleep here if the Z level needs to be cleared - var/datum/space_level/S = new z_type(new_z, name, linkage, traits) + var/datum/space_level/S = new z_type(new_z, name, traits) z_list += S return S /datum/controller/subsystem/mapping/proc/get_level(z) - . = z_list[z] - if (!.) - CRASH("Unmanaged z-level: '[z]'") + if (z_list && z >= 1 && z <= z_list.len) + return z_list[z] + CRASH("Unmanaged z-level [z]! maxz = [world.maxz], z_list.len = [z_list ? z_list.len : "null"]") diff --git a/code/modules/procedural_mapping/mapGenerators/repair.dm b/code/modules/procedural_mapping/mapGenerators/repair.dm index d6264041f0..4b541e8a79 100644 --- a/code/modules/procedural_mapping/mapGenerators/repair.dm +++ b/code/modules/procedural_mapping/mapGenerators/repair.dm @@ -20,11 +20,15 @@ if(!istype(mother, /datum/mapGenerator/repair/reload_station_map)) return var/datum/mapGenerator/repair/reload_station_map/mother1 = mother - if(!is_station_level(mother1.z)) - return //This is only for reloading station blocks! GLOB.reloading_map = TRUE var/static/dmm_suite/reloader = new - var/list/bounds = reloader.load_map(file(SSmapping.config.GetFullMapPath()),measureOnly = FALSE, no_changeturf = FALSE,x_offset = 0, y_offset = 0, z_offset = ZLEVEL_STATION_PRIMARY, cropMap=TRUE, lower_crop_x = mother1.x_low, lower_crop_y = mother1.y_low, upper_crop_x = mother1.x_high, upper_crop_y = mother1.y_high) + // This is kind of finicky on multi-Z maps but the reader would need to be + // changed to allow Z cropping and that's a mess + var/z_offset = SSmapping.station_start + var/list/bounds + for (var/path in SSmapping.config.GetFullMapPaths()) + bounds = reloader.load_map(file(path), measureOnly = FALSE, no_changeturf = FALSE,x_offset = 0, y_offset = 0, z_offset = z_offset, cropMap=TRUE, lower_crop_x = mother1.x_low, lower_crop_y = mother1.y_low, upper_crop_x = mother1.x_high, upper_crop_y = mother1.y_high) + z_offset += bounds[MAP_MAXZ] - bounds[MAP_MINZ] + 1 var/list/obj/machinery/atmospherics/atmos_machines = list() var/list/obj/structure/cable/cables = list() @@ -32,8 +36,8 @@ repopulate_sorted_areas() - for(var/L in block(locate(bounds[MAP_MINX], bounds[MAP_MINY], bounds[MAP_MINZ]), - locate(bounds[MAP_MAXX], bounds[MAP_MAXY], bounds[MAP_MAXZ]))) + for(var/L in block(locate(bounds[MAP_MINX], bounds[MAP_MINY], SSmapping.station_start), + locate(bounds[MAP_MAXX], bounds[MAP_MAXY], z_offset - 1))) set waitfor = FALSE var/turf/B = L atoms += B @@ -93,7 +97,7 @@ y_low = min(start.y, end.y) x_high = max(start.x, end.x) y_high = max(start.y, end.y) - z = ZLEVEL_STATION_PRIMARY + z = SSmapping.station_start GLOBAL_VAR_INIT(reloading_map, FALSE) diff --git a/code/modules/ruins/objects_and_mobs/sin_ruins.dm b/code/modules/ruins/objects_and_mobs/sin_ruins.dm index 33bfdb8b67..384f22282b 100644 --- a/code/modules/ruins/objects_and_mobs/sin_ruins.dm +++ b/code/modules/ruins/objects_and_mobs/sin_ruins.dm @@ -100,9 +100,16 @@ /obj/structure/mirror/magic/pride/curse(mob/user) user.visible_message("The ground splits beneath [user] as [user.p_their()] hand leaves the mirror!", \ "Perfect. Much better! Now nobody will be able to resist yo-") + var/turf/T = get_turf(user) - T.ChangeTurf(/turf/open/chasm/straight_down) + var/list/levels = SSmapping.levels_by_trait(ZTRAIT_SPACE_RUINS) + var/turf/dest + if (levels.len) + dest = locate(T.x, T.y, pick(levels)) + + T.ChangeTurf(/turf/open/chasm) var/turf/open/chasm/C = T + C.set_target(dest) C.drop(user) //can't be bothered to do sloth right now, will make later From 5005fb20c65dd7802866293400644d2ce7e75a7e Mon Sep 17 00:00:00 2001 From: Cruix Date: Thu, 15 Feb 2018 12:34:08 -0800 Subject: [PATCH 06/94] Added chemical reaction unit tests --- code/modules/reagents/chemistry/holder.dm | 147 +++++++++++------- code/modules/reagents/chemistry/recipes.dm | 2 +- code/modules/unit_tests/_unit_tests.dm | 10 ++ code/modules/unit_tests/reagent_id_typos.dm | 14 ++ .../unit_tests/reagent_recipe_collisions.dm | 67 ++++++++ 5 files changed, 179 insertions(+), 61 deletions(-) create mode 100644 code/modules/unit_tests/reagent_id_typos.dm create mode 100644 code/modules/unit_tests/reagent_recipe_collisions.dm diff --git a/code/modules/reagents/chemistry/holder.dm b/code/modules/reagents/chemistry/holder.dm index 71c7f9fa0d..ff16d62609 100644 --- a/code/modules/reagents/chemistry/holder.dm +++ b/code/modules/reagents/chemistry/holder.dm @@ -1,4 +1,45 @@ +/proc/build_chemical_reagent_list() + //Chemical Reagents - Initialises all /datum/reagent into a list indexed by reagent id + + if(GLOB.chemical_reagents_list) + return + + var/paths = subtypesof(/datum/reagent) + GLOB.chemical_reagents_list = list() + + for(var/path in paths) + var/datum/reagent/D = new path() + GLOB.chemical_reagents_list[D.id] = D + +/proc/build_chemical_reactions_list() + //Chemical Reactions - Initialises all /datum/chemical_reaction into a list + // It is filtered into multiple lists within a list. + // For example: + // chemical_reaction_list["plasma"] is a list of all reactions relating to plasma + + if(GLOB.chemical_reactions_list) + return + + var/paths = subtypesof(/datum/chemical_reaction) + GLOB.chemical_reactions_list = list() + + for(var/path in paths) + + var/datum/chemical_reaction/D = new path() + var/list/reaction_ids = list() + + if(D.required_reagents && D.required_reagents.len) + for(var/reaction in D.required_reagents) + reaction_ids += reaction + + // Create filters based on each reagent id in the required reagents list + for(var/id in reaction_ids) + if(!GLOB.chemical_reactions_list[id]) + GLOB.chemical_reactions_list[id] = list() + GLOB.chemical_reactions_list[id] += D + break // Don't bother adding ourselves to other reagent ids, it is redundant +. /////////////////////////////////////////////////////////////////////////////////// /datum/reagents @@ -15,39 +56,11 @@ /datum/reagents/New(maximum=100) maximum_volume = maximum - //I dislike having these here but map-objects are initialised before world/New() is called. >_> if(!GLOB.chemical_reagents_list) - //Chemical Reagents - Initialises all /datum/reagent into a list indexed by reagent id - var/paths = subtypesof(/datum/reagent) - GLOB.chemical_reagents_list = list() - for(var/path in paths) - var/datum/reagent/D = new path() - GLOB.chemical_reagents_list[D.id] = D + build_chemical_reagent_list() if(!GLOB.chemical_reactions_list) - //Chemical Reactions - Initialises all /datum/chemical_reaction into a list - // It is filtered into multiple lists within a list. - // For example: - // chemical_reaction_list["plasma"] is a list of all reactions relating to plasma - - var/paths = subtypesof(/datum/chemical_reaction) - GLOB.chemical_reactions_list = list() - - for(var/path in paths) - - var/datum/chemical_reaction/D = new path() - var/list/reaction_ids = list() - - if(D.required_reagents && D.required_reagents.len) - for(var/reaction in D.required_reagents) - reaction_ids += reaction - - // Create filters based on each reagent id in the required reagents list - for(var/id in reaction_ids) - if(!GLOB.chemical_reactions_list[id]) - GLOB.chemical_reactions_list[id] = list() - GLOB.chemical_reactions_list[id] += D - break // Don't bother adding ourselves to other reagent ids, it is redundant. + build_chemical_reactions_list() /datum/reagents/Destroy() . = ..() @@ -326,6 +339,7 @@ var/reaction_occurred = 0 do + var/list/possible_reactions = list() reaction_occurred = 0 for(var/reagent in cached_reagents) var/datum/reagent/R = reagent @@ -342,18 +356,14 @@ var/total_matching_catalysts= 0 var/matching_container = 0 var/matching_other = 0 - var/list/multipliers = new/list() var/required_temp = C.required_temp var/is_cold_recipe = C.is_cold_recipe var/meets_temp_requirement = 0 - var/list/cached_results = C.results - for(var/B in cached_required_reagents) if(!has_reagent(B, cached_required_reagents[B])) break total_matching_reagents++ - multipliers += round(get_reagent_amount(B) / cached_required_reagents[B]) for(var/B in cached_required_catalysts) if(!has_reagent(B, cached_required_catalysts[B])) break @@ -385,37 +395,54 @@ meets_temp_requirement = 1 if(total_matching_reagents == total_required_reagents && total_matching_catalysts == total_required_catalysts && matching_container && matching_other && meets_temp_requirement) - var/multiplier = min(multipliers) - for(var/B in cached_required_reagents) - remove_reagent(B, (multiplier * cached_required_reagents[B]), safety = 1) + possible_reactions += C - for(var/P in C.results) - multiplier = max(multiplier, 1) //this shouldnt happen ... - SSblackbox.record_feedback("tally", "chemical_reaction", cached_results[P]*multiplier, P) - add_reagent(P, cached_results[P]*multiplier, null, chem_temp) + if(possible_reactions.len) + var/datum/chemical_reaction/selected_reaction = possible_reactions[1] + //select the reaction with the most extreme temperature requirements + for(var/V in possible_reactions) + var/datum/chemical_reaction/competitor = V + if(selected_reaction.is_cold_recipe) //if there are no recipe conflicts, everything in possible_reactions will have this same value for is_cold_reaction. warranty void if assumption not met. + if(competitor.required_temp < selected_reaction.required_temp) + selected_reaction = competitor + else + if(competitor.required_temp > selected_reaction.required_temp) + selected_reaction = competitor + var/list/cached_required_reagents = selected_reaction.required_reagents + var/list/cached_results = selected_reaction.results + var/list/multiplier = INFINITY + for(var/B in cached_required_reagents) + multiplier = min(multiplier, round(get_reagent_amount(B) / cached_required_reagents[B])) - var/list/seen = viewers(4, get_turf(my_atom)) - var/iconhtml = icon2html(cached_my_atom, seen) - if(cached_my_atom) - if(!ismob(cached_my_atom)) // No bubbling mobs - if(C.mix_sound) - playsound(get_turf(cached_my_atom), C.mix_sound, 80, 1) + for(var/B in cached_required_reagents) + remove_reagent(B, (multiplier * cached_required_reagents[B]), safety = 1) - for(var/mob/M in seen) - to_chat(M, "[iconhtml] [C.mix_message]") + for(var/P in selected_reaction.results) + multiplier = max(multiplier, 1) //this shouldnt happen ... + SSblackbox.record_feedback("tally", "chemical_reaction", cached_results[P]*multiplier, P) + add_reagent(P, cached_results[P]*multiplier, null, chem_temp) - if(istype(cached_my_atom, /obj/item/slime_extract)) - var/obj/item/slime_extract/ME2 = my_atom - ME2.Uses-- - if(ME2.Uses <= 0) // give the notification that the slime core is dead - for(var/mob/M in seen) - to_chat(M, "[iconhtml] \The [my_atom]'s power is consumed in the reaction.") - ME2.name = "used slime extract" - ME2.desc = "This extract has been used up." + var/list/seen = viewers(4, get_turf(my_atom)) + var/iconhtml = icon2html(cached_my_atom, seen) + if(cached_my_atom) + if(!ismob(cached_my_atom)) // No bubbling mobs + if(selected_reaction.mix_sound) + playsound(get_turf(cached_my_atom), selected_reaction.mix_sound, 80, 1) - C.on_reaction(src, multiplier) - reaction_occurred = 1 - break + for(var/mob/M in seen) + to_chat(M, "[iconhtml] [selected_reaction.mix_message]") + + if(istype(cached_my_atom, /obj/item/slime_extract)) + var/obj/item/slime_extract/ME2 = my_atom + ME2.Uses-- + if(ME2.Uses <= 0) // give the notification that the slime core is dead + for(var/mob/M in seen) + to_chat(M, "[iconhtml] \The [my_atom]'s power is consumed in the reaction.") + ME2.name = "used slime extract" + ME2.desc = "This extract has been used up." + + selected_reaction.on_reaction(src, multiplier) + reaction_occurred = 1 while(reaction_occurred) update_total() diff --git a/code/modules/reagents/chemistry/recipes.dm b/code/modules/reagents/chemistry/recipes.dm index 9e73f12f10..1a9aeb5597 100644 --- a/code/modules/reagents/chemistry/recipes.dm +++ b/code/modules/reagents/chemistry/recipes.dm @@ -6,7 +6,7 @@ var/list/required_catalysts = new/list() // Both of these variables are mostly going to be used with slime cores - but if you want to, you can use them for other things - var/atom/required_container = null // the container required for the reaction to happen + var/required_container = null // the exact container path required for the reaction to happen var/required_other = 0 // an integer required for the reaction to happen var/secondary = 0 // set to nonzero if secondary reaction diff --git a/code/modules/unit_tests/_unit_tests.dm b/code/modules/unit_tests/_unit_tests.dm index 001952ea65..522e34a10b 100644 --- a/code/modules/unit_tests/_unit_tests.dm +++ b/code/modules/unit_tests/_unit_tests.dm @@ -1,5 +1,15 @@ +<<<<<<< HEAD //include unit test files in this module in this ifdef #ifdef UNIT_TESTS #include "unit_test.dm" #endif +======= +//include unit test files in this module in this ifdef + +#ifdef UNIT_TESTS +#include "unit_test.dm" +#include "reagent_recipe_collisions.dm" +#include "reagent_id_typos.dm" +#endif +>>>>>>> ad7fc74... Added chemical reaction unit tests (#35478) diff --git a/code/modules/unit_tests/reagent_id_typos.dm b/code/modules/unit_tests/reagent_id_typos.dm new file mode 100644 index 0000000000..d6548852fa --- /dev/null +++ b/code/modules/unit_tests/reagent_id_typos.dm @@ -0,0 +1,14 @@ + + +/datum/unit_test/reagent_id_typos + +/datum/unit_test/reagent_id_typos/Run() + build_chemical_reactions_list() + build_chemical_reagent_list() + + for(var/I in GLOB.chemical_reactions_list) + for(var/V in GLOB.chemical_reactions_list[I]) + var/datum/chemical_reaction/R = V + for(var/id in (R.required_reagents + R.required_catalysts)) + if(!GLOB.chemical_reagents_list[id]) + Fail("Unknown chemical id \"[id]\" in recipe [R.type]") diff --git a/code/modules/unit_tests/reagent_recipe_collisions.dm b/code/modules/unit_tests/reagent_recipe_collisions.dm new file mode 100644 index 0000000000..31027c2cd3 --- /dev/null +++ b/code/modules/unit_tests/reagent_recipe_collisions.dm @@ -0,0 +1,67 @@ + + +/datum/unit_test/reagent_recipe_collisions + +/datum/unit_test/reagent_recipe_collisions/Run() + build_chemical_reactions_list() + var/list/reactions = list() + for(var/V in GLOB.chemical_reactions_list) + reactions += GLOB.chemical_reactions_list[V] + for(var/i in 1 to (reactions.len-1)) + for(var/i2 in (i+1) to reactions.len) + var/datum/chemical_reaction/r1 = reactions[i] + var/datum/chemical_reaction/r2 = reactions[i2] + if(recipes_do_conflict(r1, r2)) + Fail("Chemical recipe conflict between [r1.type] and [r2.type]") + +/datum/unit_test/reagent_recipe_collisions/proc/recipes_do_conflict(datum/chemical_reaction/r1, datum/chemical_reaction/r2) + //do the non-list tests first, because they are cheaper + if(r1.required_container != r2.required_container) + return FALSE + if(r1.is_cold_recipe == r2.is_cold_recipe) + if(r1.required_temp != r2.required_temp) + //one reaction requires a more extreme temperature than the other, so there is no conflict + return FALSE + else + var/datum/chemical_reaction/cold_one = r1.is_cold_recipe ? r1 : r2 + var/datum/chemical_reaction/warm_one = r1.is_cold_recipe ? r2 : r1 + if(cold_one.required_temp < warm_one.required_temp) + //the range of temperatures does not overlap, so there is no conflict + return FALSE + + //find the reactions with the shorter and longer required_reagents list + var/datum/chemical_reaction/long_req + var/datum/chemical_reaction/short_req + if(r1.required_reagents.len > r2.required_reagents.len) + long_req = r1 + short_req = r2 + else if(r1.required_reagents.len < r2.required_reagents.len) + long_req = r2 + short_req = r1 + else + //if they are the same length, sort instead by the length of the catalyst list + //this is important if the required_reagents lists are the same + if(r1.required_catalysts.len > r2.required_catalysts.len) + long_req = r1 + short_req = r2 + else + long_req = r2 + short_req = r1 + + + //check if the shorter reaction list is a subset of the longer one + var/list/overlap = r1.required_reagents & r2.required_reagents + if(overlap.len != short_req.required_reagents.len) + //there is at least one reagent in the short list that is not in the long list, so there is no conflict + return FALSE + + //check to see if the shorter reaction's catalyst list is also a subset of the longer reaction's catalyst list + //if the longer reaction's catalyst list is a subset of the shorter ones, that is fine + //if the reaction lists are the same, the short reaction will have the shorter required_catalysts list, so it will register as a conflict + var/list/short_minus_long_catalysts = short_req.required_catalysts - long_req.required_catalysts + if(short_minus_long_catalysts.len) + //there is at least one unique catalyst for the short reaction, so there is no conflict + return FALSE + + //if we got this far, the longer reaction will be impossible to create if the shorter one is earlier in GLOB.chemical_reactions_list, and will require the reagents to be added in a particular order otherwise + return TRUE \ No newline at end of file From 62f139f217eb8cc37158959493f085b71983d1f1 Mon Sep 17 00:00:00 2001 From: deathride58 Date: Thu, 15 Feb 2018 20:30:47 -0500 Subject: [PATCH 07/94] Update _unit_tests.dm --- code/modules/unit_tests/_unit_tests.dm | 8 -------- 1 file changed, 8 deletions(-) diff --git a/code/modules/unit_tests/_unit_tests.dm b/code/modules/unit_tests/_unit_tests.dm index 522e34a10b..47d35108a1 100644 --- a/code/modules/unit_tests/_unit_tests.dm +++ b/code/modules/unit_tests/_unit_tests.dm @@ -1,10 +1,3 @@ -<<<<<<< HEAD -//include unit test files in this module in this ifdef - -#ifdef UNIT_TESTS -#include "unit_test.dm" -#endif -======= //include unit test files in this module in this ifdef #ifdef UNIT_TESTS @@ -12,4 +5,3 @@ #include "reagent_recipe_collisions.dm" #include "reagent_id_typos.dm" #endif ->>>>>>> ad7fc74... Added chemical reaction unit tests (#35478) From f9353da8559f7be8601352beecf04a7ba41d9a9d Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Fri, 16 Feb 2018 01:25:42 -0500 Subject: [PATCH 08/94] Quote the armor lists --- code/game/machinery/_machinery.dm | 2 +- code/game/machinery/ai_slipper.dm | 2 +- code/game/machinery/buttons.dm | 2 +- code/game/machinery/camera/camera.dm | 2 +- code/game/machinery/computer/_computer.dm | 2 +- code/game/machinery/deployable.dm | 2 +- code/game/machinery/doors/airlock_types.dm | 2 +- code/game/machinery/doors/door.dm | 2 +- code/game/machinery/doors/passworddoor.dm | 2 +- code/game/machinery/doors/poddoor.dm | 2 +- code/game/machinery/doors/windowdoor.dm | 2 +- code/game/machinery/firealarm.dm | 2 +- code/game/machinery/hologram.dm | 2 +- code/game/machinery/igniter.dm | 2 +- code/game/machinery/navbeacon.dm | 2 +- code/game/machinery/newscaster.dm | 2 +- .../machinery/porta_turret/portable_turret.dm | 2 +- code/game/machinery/requests_console.dm | 2 +- code/game/machinery/spaceheater.dm | 2 +- .../telecomms/machines/message_server.dm | 184 +++++++++ code/game/machinery/vending.dm | 38 +- code/game/mecha/combat/combat.dm | 2 +- code/game/mecha/combat/durand.dm | 25 ++ code/game/mecha/combat/gygax.dm | 4 +- code/game/mecha/combat/honker.dm | 2 +- code/game/mecha/combat/marauder.dm | 2 +- code/game/mecha/combat/phazon.dm | 33 ++ code/game/mecha/combat/reticence.dm | 2 +- code/game/mecha/mecha.dm | 2 +- code/game/mecha/working/ripley.dm | 4 +- code/game/objects/items/RCD.dm | 2 +- code/game/objects/items/RPD.dm | 2 +- code/game/objects/items/RSF.dm | 2 +- code/game/objects/items/cards_ids.dm | 2 +- code/game/objects/items/defib.dm | 2 +- code/game/objects/items/devices/PDA/PDA.dm | 2 +- .../items/devices/forcefieldprojector.dm | 2 +- code/game/objects/items/handcuffs.dm | 2 +- code/game/objects/items/kitchen.dm | 6 +- code/game/objects/items/melee/energy.dm | 2 +- code/game/objects/items/pneumaticCannon.dm | 2 +- code/game/objects/items/powerfist.dm | 2 +- code/game/objects/items/religion.dm | 8 +- code/game/objects/items/shields.dm | 2 +- code/game/objects/items/singularityhammer.dm | 115 ++++++ .../game/objects/items/stacks/sheets/glass.dm | 4 +- .../items/stacks/sheets/sheet_types.dm | 4 +- .../objects/items/stacks/tiles/tile_types.dm | 2 +- code/game/objects/items/storage/backpack.dm | 2 +- code/game/objects/items/stunbaton.dm | 2 +- code/game/objects/items/tanks/tanks.dm | 2 +- code/game/objects/items/tanks/watertank.dm | 2 +- code/game/objects/items/teleportation.dm | 2 +- code/game/objects/items/tools/crowbar.dm | 11 +- code/game/objects/items/tools/screwdriver.dm | 2 +- code/game/objects/items/tools/weldingtool.dm | 363 ++++++++++++++++++ code/game/objects/items/tools/wirecutters.dm | 2 +- code/game/objects/items/tools/wrench.dm | 14 +- code/game/objects/items/twohanded.dm | 8 +- code/game/objects/items/vending_items.dm | 2 +- code/game/objects/items/weaponry.dm | 6 +- code/game/objects/structures.dm | 2 +- code/game/objects/structures/barsigns.dm | 2 +- .../structures/crates_lockers/closets.dm | 2 +- .../closets/secure/secure_closets.dm | 2 +- .../crates_lockers/crates/secure.dm | 2 +- code/game/objects/structures/displaycase.dm | 2 +- code/game/objects/structures/fireaxe.dm | 2 +- code/game/objects/structures/grille.dm | 2 +- code/game/objects/structures/holosign.dm | 2 +- code/game/objects/structures/lattice.dm | 2 +- code/game/objects/structures/mineral_doors.dm | 2 +- code/game/objects/structures/plasticflaps.dm | 2 +- code/game/objects/structures/signs/_signs.dm | 2 +- code/game/objects/structures/tables_racks.dm | 4 +- code/game/shuttle_engines.dm | 2 +- .../abductor/equipment/abduction_gear.dm | 6 +- .../antagonists/blob/blob/blobs/core.dm | 2 +- .../antagonists/blob/blob/blobs/node.dm | 2 +- .../antagonists/blob/blob/blobs/shield.dm | 36 ++ code/modules/antagonists/blob/blob/theblob.dm | 2 +- .../changeling/powers/mutations.dm | 8 +- .../clockcult/clock_items/clockwork_armor.dm | 22 +- code/modules/antagonists/cult/cult_items.dm | 20 +- .../nukeop/equipment/nuclearbomb.dm | 2 +- code/modules/assembly/flash.dm | 2 +- .../atmospherics/machinery/airalarm.dm | 2 +- .../atmospherics/machinery/atmosmachinery.dm | 2 +- .../components/unary_devices/cryo.dm | 2 +- .../components/unary_devices/thermomachine.dm | 2 +- .../atmospherics/machinery/other/meter.dm | 2 +- .../machinery/portable/canister.dm | 2 +- .../portable/portable_atmospherics.dm | 2 +- .../awaymissions/mission_code/snowdin.dm | 2 +- code/modules/clothing/chameleon.dm | 18 +- code/modules/clothing/glasses/_glasses.dm | 2 +- code/modules/clothing/gloves/color.dm | 2 +- code/modules/clothing/gloves/miscellaneous.dm | 6 +- code/modules/clothing/head/hardhat.dm | 2 +- code/modules/clothing/head/helmet.dm | 20 +- code/modules/clothing/head/jobs.dm | 12 +- code/modules/clothing/head/misc.dm | 6 +- code/modules/clothing/head/misc_special.dm | 8 +- code/modules/clothing/head/soft_caps.dm | 2 +- code/modules/clothing/masks/gasmask.dm | 4 +- code/modules/clothing/masks/miscellaneous.dm | 2 +- code/modules/clothing/shoes/miscellaneous.dm | 6 +- .../clothing/spacesuits/_spacesuits.dm | 4 +- .../modules/clothing/spacesuits/chronosuit.dm | 4 +- .../modules/clothing/spacesuits/flightsuit.dm | 6 +- code/modules/clothing/spacesuits/hardsuit.dm | 70 ++-- .../clothing/spacesuits/miscellaneous.dm | 34 +- code/modules/clothing/spacesuits/plasmamen.dm | 4 +- code/modules/clothing/spacesuits/syndi.dm | 4 +- code/modules/clothing/suits/_suits.dm | 2 +- code/modules/clothing/suits/armor.dm | 22 +- code/modules/clothing/suits/bio.dm | 8 +- code/modules/clothing/suits/cloaks.dm | 8 +- code/modules/clothing/suits/jobs.dm | 4 +- code/modules/clothing/suits/labcoat.dm | 2 +- code/modules/clothing/suits/miscellaneous.dm | 18 +- code/modules/clothing/suits/utility.dm | 8 +- code/modules/clothing/suits/wiz_robe.dm | 16 +- code/modules/clothing/under/_under.dm | 2 +- code/modules/clothing/under/accessories.dm | 6 +- code/modules/clothing/under/jobs/civilian.dm | 2 +- .../clothing/under/jobs/engineering.dm | 4 +- code/modules/clothing/under/jobs/medsci.dm | 20 +- code/modules/clothing/under/jobs/security.dm | 8 +- code/modules/clothing/under/miscellaneous.dm | 4 +- code/modules/clothing/under/syndicate.dm | 6 +- code/modules/clothing/under/trek.dm | 2 +- code/modules/events/holiday/xmas.dm | 2 +- .../integrated_electronics/core/assemblies.dm | 2 +- code/modules/library/lib_items.dm | 2 +- .../modules/mining/equipment/explorer_gear.dm | 6 +- .../mining/equipment/marker_beacons.dm | 2 +- .../carbon/human/species_types/golems.dm | 2 +- .../computers/item/computer.dm | 2 +- code/modules/ninja/suit/head.dm | 2 +- code/modules/ninja/suit/shoes.dm | 2 +- code/modules/ninja/suit/suit.dm | 2 +- code/modules/power/apc.dm | 2 +- code/modules/power/lighting.dm | 2 +- .../power/singularity/field_generator.dm | 2 +- .../particle_accelerator.dm | 2 +- .../reagents/reagent_containers/glass.dm | 2 +- code/modules/recycling/disposal/bin.dm | 2 +- 148 files changed, 1112 insertions(+), 349 deletions(-) diff --git a/code/game/machinery/_machinery.dm b/code/game/machinery/_machinery.dm index 22978e9ea2..ce538e97e8 100644 --- a/code/game/machinery/_machinery.dm +++ b/code/game/machinery/_machinery.dm @@ -114,7 +114,7 @@ Class Procs: /obj/machinery/Initialize() if(!armor) - armor = list(melee = 25, bullet = 10, laser = 10, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 70) + armor = list("melee" = 25, "bullet" = 10, "laser" = 10, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 70) . = ..() GLOB.machines += src diff --git a/code/game/machinery/ai_slipper.dm b/code/game/machinery/ai_slipper.dm index 8a4c854d76..c9d0eb0292 100644 --- a/code/game/machinery/ai_slipper.dm +++ b/code/game/machinery/ai_slipper.dm @@ -6,7 +6,7 @@ layer = PROJECTILE_HIT_THRESHHOLD_LAYER anchored = TRUE max_integrity = 200 - armor = list(melee = 50, bullet = 20, laser = 20, energy = 20, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 30) + armor = list("melee" = 50, "bullet" = 20, "laser" = 20, "energy" = 20, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 30) var/uses = 20 var/cooldown = 0 diff --git a/code/game/machinery/buttons.dm b/code/game/machinery/buttons.dm index 7379185505..35d1e040f5 100644 --- a/code/game/machinery/buttons.dm +++ b/code/game/machinery/buttons.dm @@ -10,7 +10,7 @@ var/device_type = null var/id = null var/initialized_button = 0 - armor = list(melee = 50, bullet = 50, laser = 50, energy = 50, bomb = 10, bio = 100, rad = 100, fire = 90, acid = 70) + armor = list("melee" = 50, "bullet" = 50, "laser" = 50, "energy" = 50, "bomb" = 10, "bio" = 100, "rad" = 100, "fire" = 90, "acid" = 70) anchored = TRUE use_power = IDLE_POWER_USE idle_power_usage = 2 diff --git a/code/game/machinery/camera/camera.dm b/code/game/machinery/camera/camera.dm index 2127eb095b..0a98927802 100644 --- a/code/game/machinery/camera/camera.dm +++ b/code/game/machinery/camera/camera.dm @@ -14,7 +14,7 @@ resistance_flags = FIRE_PROOF - armor = list(melee = 50, bullet = 20, laser = 20, energy = 20, bomb = 0, bio = 0, rad = 0, fire = 90, acid = 50) + armor = list("melee" = 50, "bullet" = 20, "laser" = 20, "energy" = 20, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 90, "acid" = 50) max_integrity = 100 integrity_failure = 50 var/list/network = list("SS13") diff --git a/code/game/machinery/computer/_computer.dm b/code/game/machinery/computer/_computer.dm index 2bae3b30bd..68f279cc29 100644 --- a/code/game/machinery/computer/_computer.dm +++ b/code/game/machinery/computer/_computer.dm @@ -9,7 +9,7 @@ active_power_usage = 300 max_integrity = 200 integrity_failure = 100 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 40, acid = 20) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 40, "acid" = 20) var/processing = FALSE var/brightness_on = 2 var/icon_keyboard = "generic_key" diff --git a/code/game/machinery/deployable.dm b/code/game/machinery/deployable.dm index 130d276184..1a3ff23c56 100644 --- a/code/game/machinery/deployable.dm +++ b/code/game/machinery/deployable.dm @@ -104,7 +104,7 @@ anchored = FALSE max_integrity = 180 proj_pass_rate = 20 - armor = list(melee = 10, bullet = 50, laser = 50, energy = 50, bomb = 10, bio = 100, rad = 100, fire = 10, acid = 0) + armor = list("melee" = 10, "bullet" = 50, "laser" = 50, "energy" = 50, "bomb" = 10, "bio" = 100, "rad" = 100, "fire" = 10, "acid" = 0) var/deploy_time = 40 var/deploy_message = TRUE diff --git a/code/game/machinery/doors/airlock_types.dm b/code/game/machinery/doors/airlock_types.dm index dc734b387d..f6d80bca49 100644 --- a/code/game/machinery/doors/airlock_types.dm +++ b/code/game/machinery/doors/airlock_types.dm @@ -489,7 +489,7 @@ desc = "An airlock hastily corrupted by blood magic, it is unusually brittle in this state." normal_integrity = 180 damage_deflection = 5 - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) //Pinion airlocks: Clockwork doors that only let servants of Ratvar through. /obj/machinery/door/airlock/clockwork diff --git a/code/game/machinery/doors/door.dm b/code/game/machinery/doors/door.dm index 7c14f48e2d..2de468e175 100644 --- a/code/game/machinery/doors/door.dm +++ b/code/game/machinery/doors/door.dm @@ -9,7 +9,7 @@ layer = OPEN_DOOR_LAYER power_channel = ENVIRON max_integrity = 350 - armor = list(melee = 30, bullet = 30, laser = 20, energy = 20, bomb = 10, bio = 100, rad = 100, fire = 80, acid = 70) + armor = list("melee" = 30, "bullet" = 30, "laser" = 20, "energy" = 20, "bomb" = 10, "bio" = 100, "rad" = 100, "fire" = 80, "acid" = 70) CanAtmosPass = ATMOS_PASS_DENSITY flags_1 = PREVENT_CLICK_UNDER_1 diff --git a/code/game/machinery/doors/passworddoor.dm b/code/game/machinery/doors/passworddoor.dm index 7f4137d165..6a6c145079 100644 --- a/code/game/machinery/doors/passworddoor.dm +++ b/code/game/machinery/doors/passworddoor.dm @@ -6,7 +6,7 @@ explosion_block = 3 heat_proof = TRUE max_integrity = 600 - armor = list(melee = 100, bullet = 100, laser = 100, energy = 100, bomb = 100, bio = 100, rad = 100, fire = 100, acid = 100) + armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100) resistance_flags = INDESTRUCTIBLE | FIRE_PROOF | ACID_PROOF | LAVA_PROOF damage_deflection = 70 var/password = "Swordfish" diff --git a/code/game/machinery/doors/poddoor.dm b/code/game/machinery/doors/poddoor.dm index f42352d79d..f2441ad583 100644 --- a/code/game/machinery/doors/poddoor.dm +++ b/code/game/machinery/doors/poddoor.dm @@ -11,7 +11,7 @@ heat_proof = TRUE safe = FALSE max_integrity = 600 - armor = list(melee = 50, bullet = 100, laser = 100, energy = 100, bomb = 50, bio = 100, rad = 100, fire = 100, acid = 70) + armor = list("melee" = 50, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 50, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 70) resistance_flags = FIRE_PROOF damage_deflection = 70 diff --git a/code/game/machinery/doors/windowdoor.dm b/code/game/machinery/doors/windowdoor.dm index 3c646265f7..24c45fd1be 100644 --- a/code/game/machinery/doors/windowdoor.dm +++ b/code/game/machinery/doors/windowdoor.dm @@ -9,7 +9,7 @@ var/base_state = "left" max_integrity = 150 //If you change this, consider changing ../door/window/brigdoor/ max_integrity at the bottom of this .dm file integrity_failure = 0 - armor = list(melee = 20, bullet = 50, laser = 50, energy = 50, bomb = 10, bio = 100, rad = 100, fire = 70, acid = 100) + armor = list("melee" = 20, "bullet" = 50, "laser" = 50, "energy" = 50, "bomb" = 10, "bio" = 100, "rad" = 100, "fire" = 70, "acid" = 100) visible = FALSE flags_1 = ON_BORDER_1 opacity = 0 diff --git a/code/game/machinery/firealarm.dm b/code/game/machinery/firealarm.dm index bf3255385c..efc8682313 100644 --- a/code/game/machinery/firealarm.dm +++ b/code/game/machinery/firealarm.dm @@ -19,7 +19,7 @@ anchored = TRUE max_integrity = 250 integrity_failure = 100 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 100, rad = 100, fire = 90, acid = 30) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 100, "rad" = 100, "fire" = 90, "acid" = 30) use_power = IDLE_POWER_USE idle_power_usage = 2 active_power_usage = 6 diff --git a/code/game/machinery/hologram.dm b/code/game/machinery/hologram.dm index d1f1774c8b..211391a56b 100644 --- a/code/game/machinery/hologram.dm +++ b/code/game/machinery/hologram.dm @@ -39,7 +39,7 @@ Possible to do for anyone motivated enough: idle_power_usage = 5 active_power_usage = 100 max_integrity = 300 - armor = list(melee = 50, bullet = 20, laser = 20, energy = 20, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 0) + armor = list("melee" = 50, "bullet" = 20, "laser" = 20, "energy" = 20, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 0) circuit = /obj/item/circuitboard/machine/holopad var/list/masters //List of living mobs that use the holopad var/list/holorays //Holoray-mob link. diff --git a/code/game/machinery/igniter.dm b/code/game/machinery/igniter.dm index 6c3e3d9cdc..05de03aae1 100644 --- a/code/game/machinery/igniter.dm +++ b/code/game/machinery/igniter.dm @@ -10,7 +10,7 @@ idle_power_usage = 2 active_power_usage = 4 max_integrity = 300 - armor = list(melee = 50, bullet = 30, laser = 70, energy = 50, bomb = 20, bio = 0, rad = 0, fire = 100, acid = 70) + armor = list("melee" = 50, "bullet" = 30, "laser" = 70, "energy" = 50, "bomb" = 20, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 70) resistance_flags = FIRE_PROOF /obj/machinery/igniter/attack_ai(mob/user) diff --git a/code/game/machinery/navbeacon.dm b/code/game/machinery/navbeacon.dm index fe2926f150..a4a7419b34 100644 --- a/code/game/machinery/navbeacon.dm +++ b/code/game/machinery/navbeacon.dm @@ -11,7 +11,7 @@ layer = LOW_OBJ_LAYER anchored = TRUE max_integrity = 500 - armor = list(melee = 70, bullet = 70, laser = 70, energy = 70, bomb = 0, bio = 0, rad = 0, fire = 80, acid = 80) + armor = list("melee" = 70, "bullet" = 70, "laser" = 70, "energy" = 70, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 80, "acid" = 80) var/open = FALSE // true if cover is open var/locked = TRUE // true if controls are locked diff --git a/code/game/machinery/newscaster.dm b/code/game/machinery/newscaster.dm index 91eedfd904..aa724c087f 100644 --- a/code/game/machinery/newscaster.dm +++ b/code/game/machinery/newscaster.dm @@ -186,7 +186,7 @@ GLOBAL_LIST_EMPTY(allCasters) verb_say = "beeps" verb_ask = "beeps" verb_exclaim = "beeps" - armor = list(melee = 50, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 30) + armor = list("melee" = 50, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 30) max_integrity = 200 integrity_failure = 50 var/screen = 0 diff --git a/code/game/machinery/porta_turret/portable_turret.dm b/code/game/machinery/porta_turret/portable_turret.dm index 9a88febdc2..2b442401e2 100644 --- a/code/game/machinery/porta_turret/portable_turret.dm +++ b/code/game/machinery/porta_turret/portable_turret.dm @@ -31,7 +31,7 @@ max_integrity = 160 //the turret's health integrity_failure = 80 - armor = list(melee = 50, bullet = 30, laser = 30, energy = 30, bomb = 30, bio = 0, rad = 0, fire = 90, acid = 90) + armor = list("melee" = 50, "bullet" = 30, "laser" = 30, "energy" = 30, "bomb" = 30, "bio" = 0, "rad" = 0, "fire" = 90, "acid" = 90) var/locked = TRUE //if the turret's behaviour control access is locked var/controllock = 0 //if the turret responds to control panels diff --git a/code/game/machinery/requests_console.dm b/code/game/machinery/requests_console.dm index b24c3c1406..2ca5d83365 100644 --- a/code/game/machinery/requests_console.dm +++ b/code/game/machinery/requests_console.dm @@ -55,7 +55,7 @@ GLOBAL_LIST_EMPTY(allConsoles) var/emergency //If an emergency has been called by this device. Acts as both a cooldown and lets the responder know where it the emergency was triggered from var/receive_ore_updates = FALSE //If ore redemption machines will send an update when it receives new ores. max_integrity = 300 - armor = list(melee = 70, bullet = 30, laser = 30, energy = 30, bomb = 0, bio = 0, rad = 0, fire = 90, acid = 90) + armor = list("melee" = 70, "bullet" = 30, "laser" = 30, "energy" = 30, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 90, "acid" = 90) /obj/machinery/requests_console/power_change() ..() diff --git a/code/game/machinery/spaceheater.dm b/code/game/machinery/spaceheater.dm index f59925bc54..3946d03495 100644 --- a/code/game/machinery/spaceheater.dm +++ b/code/game/machinery/spaceheater.dm @@ -11,7 +11,7 @@ name = "space heater" desc = "Made by Space Amish using traditional space techniques, this heater/cooler is guaranteed not to set the station on fire. Warranty void if used in engines." max_integrity = 250 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 100, rad = 100, fire = 80, acid = 10) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 100, "rad" = 100, "fire" = 80, "acid" = 10) circuit = /obj/item/circuitboard/machine/space_heater var/obj/item/stock_parts/cell/cell var/on = FALSE diff --git a/code/game/machinery/telecomms/machines/message_server.dm b/code/game/machinery/telecomms/machines/message_server.dm index 8f0e22b7d9..5a892cec6e 100644 --- a/code/game/machinery/telecomms/machines/message_server.dm +++ b/code/game/machinery/telecomms/machines/message_server.dm @@ -1,3 +1,4 @@ +<<<<<<< HEAD /* The equivalent of the server, for PDA and request console messages. Without it, PDA and request console messages cannot be transmitted. @@ -179,3 +180,186 @@ else priority = "Undetermined" +======= +/* + The equivalent of the server, for PDA and request console messages. + Without it, PDA and request console messages cannot be transmitted. + PDAs require the rest of the telecomms setup, but request consoles only + require the message server. +*/ + +// A decorational representation of SSblackbox, usually placed alongside the message server. +/obj/machinery/blackbox_recorder + icon = 'icons/obj/stationobjs.dmi' + icon_state = "blackbox" + name = "Blackbox Recorder" + density = TRUE + anchored = TRUE + use_power = IDLE_POWER_USE + idle_power_usage = 10 + active_power_usage = 100 + armor = list("melee" = 25, "bullet" = 10, "laser" = 10, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 70) + + +// The message server itself. +/obj/machinery/telecomms/message_server + icon = 'icons/obj/machines/research.dmi' + icon_state = "server" + name = "Messaging Server" + desc = "A machine that attempts to gather the secret knowledge of the universe." + density = TRUE + anchored = TRUE + use_power = IDLE_POWER_USE + idle_power_usage = 10 + active_power_usage = 100 + + id = "Messaging Server" + network = "tcommsat" + autolinkers = list("common") + + var/list/datum/data_pda_msg/pda_msgs = list() + var/list/datum/data_rc_msg/rc_msgs = list() + var/decryptkey + +/obj/machinery/telecomms/message_server/Initialize() + . = ..() + if (!decryptkey) + decryptkey = GenerateKey() + pda_msgs += new /datum/data_pda_msg("System Administrator", "system", "This is an automated message. The messaging system is functioning correctly.") + +/obj/machinery/telecomms/message_server/Destroy() + for(var/obj/machinery/computer/message_monitor/monitor in GLOB.telecomms_list) + if(monitor.linkedServer && monitor.linkedServer == src) + monitor.linkedServer = null + . = ..() + +/obj/machinery/telecomms/message_server/proc/GenerateKey() + var/newKey + newKey += pick("the", "if", "of", "as", "in", "a", "you", "from", "to", "an", "too", "little", "snow", "dead", "drunk", "rosebud", "duck", "al", "le") + newKey += pick("diamond", "beer", "mushroom", "assistant", "clown", "captain", "twinkie", "security", "nuke", "small", "big", "escape", "yellow", "gloves", "monkey", "engine", "nuclear", "ai") + newKey += pick("1", "2", "3", "4", "5", "6", "7", "8", "9", "0") + return newKey + +/obj/machinery/telecomms/message_server/process() + if(toggled && (stat & (BROKEN|NOPOWER))) + toggled = FALSE + update_icon() + +/obj/machinery/telecomms/message_server/receive_information(datum/signal/subspace/pda/signal, obj/machinery/telecomms/machine_from) + // can't log non-PDA signals + if(!istype(signal) || !signal.data["message"] || !toggled) + return + + // log the signal + var/datum/data_pda_msg/M = new(signal.format_target(), "[signal.data["name"]] ([signal.data["job"]])", signal.data["message"], signal.data["photo"]) + pda_msgs += M + signal.logged = M + + // pass it along to either the hub or the broadcaster + if(!relay_information(signal, /obj/machinery/telecomms/hub)) + relay_information(signal, /obj/machinery/telecomms/broadcaster) + +/obj/machinery/telecomms/message_server/update_icon() + if((stat & (BROKEN|NOPOWER))) + icon_state = "server-nopower" + else if (!toggled) + icon_state = "server-off" + else + icon_state = "server-on" + + +// PDA signal datum +/datum/signal/subspace/pda + frequency = FREQ_COMMON + server_type = /obj/machinery/telecomms/message_server + var/datum/data_pda_msg/logged + +/datum/signal/subspace/pda/New(source, data) + src.source = source + src.data = data + var/turf/T = get_turf(source) + levels = list(T.z) + +/datum/signal/subspace/pda/copy() + var/datum/signal/subspace/pda/copy = new(source, data.Copy()) + copy.original = src + copy.levels = levels + return copy + +/datum/signal/subspace/pda/proc/format_target() + if (length(data["targets"]) > 1) + return "Everyone" + return data["targets"][1] + +/datum/signal/subspace/pda/proc/format_message() + if (logged && data["photo"]) + return "\"[data["message"]]\" (Photo)" + return "\"[data["message"]]\"" + +/datum/signal/subspace/pda/broadcast() + if (!logged) // Can only go through if a message server logs it + return + for (var/obj/item/device/pda/P in GLOB.PDAs) + if ("[P.owner] ([P.ownjob])" in data["targets"]) + P.receive_message(src) + + +// Log datums stored by the message server. +/datum/data_pda_msg + var/sender = "Unspecified" + var/recipient = "Unspecified" + var/message = "Blank" // transferred message + var/icon/photo // attached photo + +/datum/data_pda_msg/New(param_rec, param_sender, param_message, param_photo) + if(param_rec) + recipient = param_rec + if(param_sender) + sender = param_sender + if(param_message) + message = param_message + if(param_photo) + photo = param_photo + +/datum/data_pda_msg/Topic(href,href_list) + ..() + if(href_list["photo"]) + var/mob/M = usr + M << browse_rsc(photo, "pda_photo.png") + M << browse("PDA Photo" \ + + "" \ + + "" \ + + "", "window=pdaphoto;size=192x192") + onclose(M, "pdaphoto") + +/datum/data_rc_msg + var/rec_dpt = "Unspecified" // receiving department + var/send_dpt = "Unspecified" // sending department + var/message = "Blank" + var/stamp = "Unstamped" + var/id_auth = "Unauthenticated" + var/priority = "Normal" + +/datum/data_rc_msg/New(param_rec, param_sender, param_message, param_stamp, param_id_auth, param_priority) + if(param_rec) + rec_dpt = param_rec + if(param_sender) + send_dpt = param_sender + if(param_message) + message = param_message + if(param_stamp) + stamp = param_stamp + if(param_id_auth) + id_auth = param_id_auth + if(param_priority) + switch(param_priority) + if(1) + priority = "Normal" + if(2) + priority = "High" + if(3) + priority = "Extreme" + else + priority = "Undetermined" + +>>>>>>> d282c60... Quote the armor lists (#35668) diff --git a/code/game/machinery/vending.dm b/code/game/machinery/vending.dm index 3fa3836143..69bac9b906 100644 --- a/code/game/machinery/vending.dm +++ b/code/game/machinery/vending.dm @@ -23,7 +23,7 @@ verb_exclaim = "beeps" max_integrity = 300 integrity_failure = 100 - armor = list(melee = 20, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 70) + armor = list("melee" = 20, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 70) circuit = /obj/item/circuitboard/machine/vendor var/active = 1 //No sales pitches if off! var/vend_ready = 1 //Are we ready to vend?? Is it time?? @@ -652,7 +652,7 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C /obj/item/wirecutters = 1, /obj/item/cartridge/signal = 4) contraband = list(/obj/item/device/assembly/timer = 2, /obj/item/device/assembly/voice = 2, /obj/item/device/assembly/health = 2) product_ads = "Only the finest!;Have some tools.;The most robust equipment.;The finest gear in space!" - armor = list(melee = 100, bullet = 100, laser = 100, energy = 100, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 50) + armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 50) resistance_flags = FIRE_PROOF /obj/machinery/vending/coffee @@ -714,7 +714,7 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C /obj/item/reagent_containers/food/drinks/coffee = 12, /obj/item/tank/internals/emergency_oxygen = 6, /obj/item/clothing/mask/breath = 6) - armor = list(melee = 100, bullet = 100, laser = 100, energy = 100, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 50) + armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 50) resistance_flags = FIRE_PROOF /obj/machinery/vending/cola @@ -797,7 +797,7 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C products = list(/obj/item/cartridge/medical = 10, /obj/item/cartridge/engineering = 10, /obj/item/cartridge/security = 10, /obj/item/cartridge/janitor = 10, /obj/item/cartridge/signal/toxins = 10, /obj/item/device/pda/heads = 10, /obj/item/cartridge/captain = 3, /obj/item/cartridge/quartermaster = 10) - armor = list(melee = 100, bullet = 100, laser = 100, energy = 100, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 50) + armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 50) resistance_flags = FIRE_PROOF /obj/machinery/vending/liberationstation @@ -814,7 +814,7 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C /obj/item/gun/ballistic/shotgun = 2, /obj/item/gun/ballistic/automatic/ar = 2) premium = list(/obj/item/ammo_box/magazine/smgm9mm = 2, /obj/item/ammo_box/magazine/m50 = 4, /obj/item/ammo_box/magazine/m45 = 2, /obj/item/ammo_box/magazine/m75 = 2) contraband = list(/obj/item/clothing/under/patriotsuit = 1, /obj/item/bedsheet/patriot = 3) - armor = list(melee = 100, bullet = 100, laser = 100, energy = 100, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 50) + armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 50) resistance_flags = FIRE_PROOF /obj/machinery/vending/cigarette @@ -854,7 +854,7 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C /obj/item/reagent_containers/glass/bottle/toxin = 3, /obj/item/reagent_containers/syringe/antiviral = 6, /obj/item/reagent_containers/pill/salbutamol = 2, /obj/item/device/healthanalyzer = 4, /obj/item/device/sensor_device = 2, /obj/item/pinpointer/crew = 2) contraband = list(/obj/item/reagent_containers/pill/tox = 3, /obj/item/reagent_containers/pill/morphine = 4, /obj/item/reagent_containers/pill/charcoal = 6) premium = list(/obj/item/storage/box/hug/medical = 1, /obj/item/reagent_containers/hypospray/medipen = 3, /obj/item/storage/belt/medical = 3, /obj/item/wrench/medical = 1) - armor = list(melee = 100, bullet = 100, laser = 100, energy = 100, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 50) + armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 50) resistance_flags = FIRE_PROOF refill_canister = /obj/item/vending_refill/medical @@ -877,7 +877,7 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C /obj/item/reagent_containers/pill/patch/silver_sulf = 5, /obj/item/reagent_containers/pill/charcoal = 2, /obj/item/reagent_containers/spray/medical/sterilizer = 1) contraband = list(/obj/item/reagent_containers/pill/tox = 2, /obj/item/reagent_containers/pill/morphine = 2) - armor = list(melee = 100, bullet = 100, laser = 100, energy = 100, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 50) + armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 50) resistance_flags = FIRE_PROOF refill_canister = /obj/item/vending_refill/medical refill_count = 1 @@ -893,7 +893,7 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C /obj/item/reagent_containers/food/snacks/donut = 12, /obj/item/storage/box/evidence = 6, /obj/item/device/flashlight/seclite = 4, /obj/item/restraints/legcuffs/bola/energy = 7) contraband = list(/obj/item/clothing/glasses/sunglasses = 2, /obj/item/storage/fancy/donut_box = 2) premium = list(/obj/item/coin/antagtoken = 1) - armor = list(melee = 100, bullet = 100, laser = 100, energy = 100, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 50) + armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 50) resistance_flags = FIRE_PROOF /obj/machinery/vending/security/pre_throw(obj/item/I) @@ -915,7 +915,7 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C products = list(/obj/item/reagent_containers/glass/bottle/nutrient/ez = 30, /obj/item/reagent_containers/glass/bottle/nutrient/l4z = 20, /obj/item/reagent_containers/glass/bottle/nutrient/rh = 10, /obj/item/reagent_containers/spray/pestspray = 20, /obj/item/reagent_containers/syringe = 5, /obj/item/storage/bag/plants = 5, /obj/item/cultivator = 3, /obj/item/shovel/spade = 3, /obj/item/device/plant_analyzer = 4) contraband = list(/obj/item/reagent_containers/glass/bottle/ammonia = 10, /obj/item/reagent_containers/glass/bottle/diethylamine = 5) - armor = list(melee = 100, bullet = 100, laser = 100, energy = 100, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 50) + armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 50) resistance_flags = FIRE_PROOF /obj/machinery/vending/hydroseeds @@ -936,7 +936,7 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C /obj/item/seeds/plump = 2, /obj/item/seeds/reishi = 2, /obj/item/seeds/cannabis = 3, /obj/item/seeds/starthistle = 2, /obj/item/seeds/random = 2) premium = list(/obj/item/reagent_containers/spray/waterflower = 1) - armor = list(melee = 100, bullet = 100, laser = 100, energy = 100, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 50) + armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 50) resistance_flags = FIRE_PROOF /obj/machinery/vending/magivend @@ -948,7 +948,7 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C product_ads = "FJKLFJSD;AJKFLBJAKL;1234 LOONIES LOL!;>MFW;Kill them fuckers!;GET DAT FUKKEN DISK;HONK!;EI NATH;Destroy the station!;Admin conspiracies since forever!;Space-time bending hardware!" products = list(/obj/item/clothing/head/wizard = 1, /obj/item/clothing/suit/wizrobe = 1, /obj/item/clothing/head/wizard/red = 1, /obj/item/clothing/suit/wizrobe/red = 1, /obj/item/clothing/head/wizard/yellow = 1, /obj/item/clothing/suit/wizrobe/yellow = 1, /obj/item/clothing/shoes/sandal/magic = 1, /obj/item/staff = 2) contraband = list(/obj/item/reagent_containers/glass/bottle/wizarditis = 1) //No one can get to the machine to hack it anyways; for the lulz - Microwave - armor = list(melee = 100, bullet = 100, laser = 100, energy = 100, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 50) + armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 50) resistance_flags = FIRE_PROOF /obj/machinery/vending/autodrobe @@ -1005,7 +1005,7 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C icon_state = "dinnerware" products = list(/obj/item/storage/bag/tray = 8, /obj/item/kitchen/fork = 6, /obj/item/kitchen/knife = 6, /obj/item/kitchen/rollingpin = 2, /obj/item/reagent_containers/food/drinks/drinkingglass = 8, /obj/item/clothing/suit/apron/chef = 2, /obj/item/reagent_containers/food/condiment/pack/ketchup = 5, /obj/item/reagent_containers/food/condiment/pack/hotsauce = 5, /obj/item/reagent_containers/food/condiment/saltshaker = 5, /obj/item/reagent_containers/food/condiment/peppermill = 5, /obj/item/reagent_containers/glass/bowl = 20) contraband = list(/obj/item/kitchen/rollingpin = 2, /obj/item/kitchen/knife/butcher = 2) - armor = list(melee = 100, bullet = 100, laser = 100, energy = 100, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 50) + armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 50) resistance_flags = FIRE_PROOF /obj/machinery/vending/sovietsoda @@ -1015,7 +1015,7 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C product_ads = "For Tsar and Country.;Have you fulfilled your nutrition quota today?;Very nice!;We are simple people, for this is all we eat.;If there is a person, there is a problem. If there is no person, then there is no problem." products = list(/obj/item/reagent_containers/food/drinks/drinkingglass/filled/soda = 30) contraband = list(/obj/item/reagent_containers/food/drinks/drinkingglass/filled/cola = 20) - armor = list(melee = 100, bullet = 100, laser = 100, energy = 100, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 50) + armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 50) resistance_flags = FIRE_PROOF /obj/machinery/vending/tool @@ -1041,7 +1041,7 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C /obj/item/clothing/gloves/color/fyellow = 2) premium = list( /obj/item/clothing/gloves/color/yellow = 1) - armor = list(melee = 100, bullet = 100, laser = 100, energy = 100, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 70) + armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 70) resistance_flags = FIRE_PROOF /obj/machinery/vending/engivend @@ -1053,7 +1053,7 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C products = list(/obj/item/clothing/glasses/meson/engine = 2, /obj/item/device/multitool = 4, /obj/item/electronics/airlock = 10, /obj/item/electronics/apc = 10, /obj/item/electronics/airalarm = 10, /obj/item/stock_parts/cell/high = 10, /obj/item/construction/rcd/loaded = 3, /obj/item/device/geiger_counter = 5, /obj/item/grenade/chem_grenade/smart_metal_foam = 10) contraband = list(/obj/item/stock_parts/cell/potato = 3) premium = list(/obj/item/storage/belt/utility = 3, /obj/item/storage/box/smart_metal_foam = 1) - armor = list(melee = 100, bullet = 100, laser = 100, energy = 100, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 50) + armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 50) resistance_flags = FIRE_PROOF //This one's from bay12 @@ -1069,7 +1069,7 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C /obj/item/stock_parts/cell = 8, /obj/item/weldingtool = 8, /obj/item/clothing/head/welding = 8, /obj/item/light/tube = 10, /obj/item/clothing/suit/fire = 4, /obj/item/stock_parts/scanning_module = 5, /obj/item/stock_parts/micro_laser = 5, /obj/item/stock_parts/matter_bin = 5, /obj/item/stock_parts/manipulator = 5) - armor = list(melee = 100, bullet = 100, laser = 100, energy = 100, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 50) + armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 50) resistance_flags = FIRE_PROOF //This one's from bay12 @@ -1083,7 +1083,7 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C /obj/item/stock_parts/cell/high = 12, /obj/item/device/assembly/prox_sensor = 3, /obj/item/device/assembly/signaler = 3, /obj/item/device/healthanalyzer = 3, /obj/item/scalpel = 2, /obj/item/circular_saw = 2, /obj/item/tank/internals/anesthetic = 2, /obj/item/clothing/mask/breath/medical = 5, /obj/item/screwdriver = 5, /obj/item/crowbar = 5) - armor = list(melee = 100, bullet = 100, laser = 100, energy = 100, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 50) + armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 50) resistance_flags = FIRE_PROOF //DON'T FORGET TO CHANGE THE REFILL SIZE IF YOU CHANGE THE MACHINE'S CONTENTS! @@ -1147,7 +1147,7 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C /obj/item/toy/katana = 10, /obj/item/twohanded/dualsaber/toy = 5, /obj/item/toy/cards/deck/syndicate = 10) //Gambling and it hurts, making it a +18 item - armor = list(melee = 100, bullet = 100, laser = 100, energy = 100, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 50) + armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 50) resistance_flags = FIRE_PROOF refill_canister = /obj/item/vending_refill/donksoft @@ -1172,7 +1172,7 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C /obj/item/gun/ballistic/automatic/l6_saw/toy/unrestricted = 10, /obj/item/toy/katana = 10, /obj/item/twohanded/dualsaber/toy = 5) - armor = list(melee = 100, bullet = 100, laser = 100, energy = 100, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 50) + armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 50) resistance_flags = FIRE_PROOF refill_canister = /obj/item/vending_refill/donksoft diff --git a/code/game/mecha/combat/combat.dm b/code/game/mecha/combat/combat.dm index 5e7ddb6497..99837d2beb 100644 --- a/code/game/mecha/combat/combat.dm +++ b/code/game/mecha/combat/combat.dm @@ -1,7 +1,7 @@ /obj/mecha/combat force = 30 internal_damage_threshold = 50 - armor = list(melee = 30, bullet = 30, laser = 15, energy = 20, bomb = 20, bio = 0, rad = 0, fire = 100, acid = 100) + armor = list("melee" = 30, "bullet" = 30, "laser" = 15, "energy" = 20, "bomb" = 20, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 100) /obj/mecha/combat/moved_inside(mob/living/carbon/human/H) if(..()) diff --git a/code/game/mecha/combat/durand.dm b/code/game/mecha/combat/durand.dm index e726853b8a..ceaea0e9d9 100644 --- a/code/game/mecha/combat/durand.dm +++ b/code/game/mecha/combat/durand.dm @@ -1,3 +1,4 @@ +<<<<<<< HEAD /obj/mecha/combat/durand desc = "An aging combat exosuit utilized by the Nanotrasen corporation. Originally developed to combat hostile alien lifeforms." name = "\improper Durand" @@ -20,3 +21,27 @@ ..() defense_action.Remove(user) +======= +/obj/mecha/combat/durand + desc = "An aging combat exosuit utilized by the Nanotrasen corporation. Originally developed to combat hostile alien lifeforms." + name = "\improper Durand" + icon_state = "durand" + step_in = 4 + dir_in = 1 //Facing North. + max_integrity = 400 + deflect_chance = 20 + armor = list("melee" = 40, "bullet" = 35, "laser" = 15, "energy" = 10, "bomb" = 20, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 100) + max_temperature = 30000 + infra_luminosity = 8 + force = 40 + wreckage = /obj/structure/mecha_wreckage/durand + +/obj/mecha/combat/durand/GrantActions(mob/living/user, human_occupant = 0) + ..() + defense_action.Grant(user, src) + +/obj/mecha/combat/durand/RemoveActions(mob/living/user, human_occupant = 0) + ..() + defense_action.Remove(user) + +>>>>>>> d282c60... Quote the armor lists (#35668) diff --git a/code/game/mecha/combat/gygax.dm b/code/game/mecha/combat/gygax.dm index b46bc2abf2..95137938d0 100644 --- a/code/game/mecha/combat/gygax.dm +++ b/code/game/mecha/combat/gygax.dm @@ -6,7 +6,7 @@ dir_in = 1 //Facing North. max_integrity = 250 deflect_chance = 5 - armor = list(melee = 25, bullet = 20, laser = 30, energy = 15, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 100) + armor = list("melee" = 25, "bullet" = 20, "laser" = 30, "energy" = 15, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 100) max_temperature = 25000 infra_luminosity = 6 wreckage = /obj/structure/mecha_wreckage/gygax @@ -20,7 +20,7 @@ icon_state = "darkgygax" max_integrity = 300 deflect_chance = 15 - armor = list(melee = 40, bullet = 40, laser = 50, energy = 35, bomb = 20, bio = 0, rad = 0, fire = 100, acid = 100) + armor = list("melee" = 40, "bullet" = 40, "laser" = 50, "energy" = 35, "bomb" = 20, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 100) max_temperature = 35000 leg_overload_coeff = 100 operation_req_access = list(ACCESS_SYNDICATE) diff --git a/code/game/mecha/combat/honker.dm b/code/game/mecha/combat/honker.dm index 7424a30fcc..0298e56089 100644 --- a/code/game/mecha/combat/honker.dm +++ b/code/game/mecha/combat/honker.dm @@ -6,7 +6,7 @@ max_integrity = 140 deflect_chance = 60 internal_damage_threshold = 60 - armor = list(melee = -20, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 100) + armor = list("melee" = -20, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 100) max_temperature = 25000 infra_luminosity = 5 operation_req_access = list(ACCESS_THEATRE) diff --git a/code/game/mecha/combat/marauder.dm b/code/game/mecha/combat/marauder.dm index b82af2632e..21f8259e69 100644 --- a/code/game/mecha/combat/marauder.dm +++ b/code/game/mecha/combat/marauder.dm @@ -5,7 +5,7 @@ step_in = 5 max_integrity = 500 deflect_chance = 25 - armor = list(melee = 50, bullet = 55, laser = 40, energy = 30, bomb = 30, bio = 0, rad = 0, fire = 100, acid = 100) + armor = list("melee" = 50, "bullet" = 55, "laser" = 40, "energy" = 30, "bomb" = 30, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 100) max_temperature = 60000 resistance_flags = LAVA_PROOF | FIRE_PROOF | ACID_PROOF infra_luminosity = 3 diff --git a/code/game/mecha/combat/phazon.dm b/code/game/mecha/combat/phazon.dm index 8909c635a9..4a4c33704a 100644 --- a/code/game/mecha/combat/phazon.dm +++ b/code/game/mecha/combat/phazon.dm @@ -1,3 +1,4 @@ +<<<<<<< HEAD /obj/mecha/combat/phazon desc = "This is a Phazon exosuit. The pinnacle of scientific research and pride of Nanotrasen, it uses cutting edge bluespace technology and expensive materials." name = "\improper Phazon" @@ -28,3 +29,35 @@ switch_damtype_action.Remove(user) phasing_action.Remove(user) +======= +/obj/mecha/combat/phazon + desc = "This is a Phazon exosuit. The pinnacle of scientific research and pride of Nanotrasen, it uses cutting edge bluespace technology and expensive materials." + name = "\improper Phazon" + icon_state = "phazon" + step_in = 2 + dir_in = 2 //Facing South. + step_energy_drain = 3 + max_integrity = 200 + deflect_chance = 30 + armor = list("melee" = 30, "bullet" = 30, "laser" = 30, "energy" = 30, "bomb" = 30, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 100) + max_temperature = 25000 + infra_luminosity = 3 + wreckage = /obj/structure/mecha_wreckage/phazon + add_req_access = 1 + internal_damage_threshold = 25 + force = 15 + max_equip = 3 + phase_state = "phazon-phase" + +/obj/mecha/combat/phazon/GrantActions(mob/living/user, human_occupant = 0) + ..() + switch_damtype_action.Grant(user, src) + phasing_action.Grant(user, src) + + +/obj/mecha/combat/phazon/RemoveActions(mob/living/user, human_occupant = 0) + ..() + switch_damtype_action.Remove(user) + phasing_action.Remove(user) + +>>>>>>> d282c60... Quote the armor lists (#35668) diff --git a/code/game/mecha/combat/reticence.dm b/code/game/mecha/combat/reticence.dm index 18b50d3077..4cd8c01517 100644 --- a/code/game/mecha/combat/reticence.dm +++ b/code/game/mecha/combat/reticence.dm @@ -6,7 +6,7 @@ dir_in = 1 //Facing North. max_integrity = 100 deflect_chance = 3 - armor = list(melee = 25, bullet = 20, laser = 30, energy = 15, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 100) + armor = list("melee" = 25, "bullet" = 20, "laser" = 30, "energy" = 15, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 100) max_temperature = 15000 wreckage = /obj/structure/mecha_wreckage/reticence operation_req_access = list(ACCESS_THEATRE) diff --git a/code/game/mecha/mecha.dm b/code/game/mecha/mecha.dm index db6ef6b6b9..61f6b64c4e 100644 --- a/code/game/mecha/mecha.dm +++ b/code/game/mecha/mecha.dm @@ -34,7 +34,7 @@ var/overload_step_energy_drain_min = 100 max_integrity = 300 //max_integrity is base health var/deflect_chance = 10 //chance to deflect the incoming projectiles, hits, or lesser the effect of ex_act. - armor = list(melee = 20, bullet = 10, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 100) + armor = list("melee" = 20, "bullet" = 10, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 100) var/list/facing_modifiers = list(FRONT_ARMOUR = 1.5, SIDE_ARMOUR = 1, BACK_ARMOUR = 0.5) var/obj/item/stock_parts/cell/cell var/state = 0 diff --git a/code/game/mecha/working/ripley.dm b/code/game/mecha/working/ripley.dm index eaa09ff9b7..429d954451 100644 --- a/code/game/mecha/working/ripley.dm +++ b/code/game/mecha/working/ripley.dm @@ -9,7 +9,7 @@ max_integrity = 200 lights_power = 7 deflect_chance = 15 - armor = list(melee = 40, bullet = 20, laser = 10, energy = 20, bomb = 40, bio = 0, rad = 0, fire = 100, acid = 100) + armor = list("melee" = 40, "bullet" = 20, "laser" = 10, "energy" = 20, "bomb" = 40, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 100) max_equip = 6 wreckage = /obj/structure/mecha_wreckage/ripley var/list/cargo = new @@ -65,7 +65,7 @@ max_integrity = 250 resistance_flags = LAVA_PROOF | FIRE_PROOF | ACID_PROOF lights_power = 7 - armor = list(melee = 40, bullet = 30, laser = 30, energy = 30, bomb = 60, bio = 0, rad = 0, fire = 100, acid = 100) + armor = list("melee" = 40, "bullet" = 30, "laser" = 30, "energy" = 30, "bomb" = 60, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 100) max_equip = 5 // More armor, less tools wreckage = /obj/structure/mecha_wreckage/ripley/firefighter diff --git a/code/game/objects/items/RCD.dm b/code/game/objects/items/RCD.dm index 9f146b8ff3..4a911f9002 100644 --- a/code/game/objects/items/RCD.dm +++ b/code/game/objects/items/RCD.dm @@ -22,7 +22,7 @@ ARCD w_class = WEIGHT_CLASS_NORMAL materials = list(MAT_METAL=100000) req_access_txt = "11" - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 50) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 50) resistance_flags = FIRE_PROOF var/datum/effect_system/spark_spread/spark_system var/matter = 0 diff --git a/code/game/objects/items/RPD.dm b/code/game/objects/items/RPD.dm index abf4b7bd6f..4169e70dc9 100644 --- a/code/game/objects/items/RPD.dm +++ b/code/game/objects/items/RPD.dm @@ -181,7 +181,7 @@ GLOBAL_LIST_INIT(transit_tube_recipes, list( throw_range = 5 w_class = WEIGHT_CLASS_NORMAL materials = list(MAT_METAL=75000, MAT_GLASS=37500) - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 50) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 50) resistance_flags = FIRE_PROOF var/datum/effect_system/spark_spread/spark_system var/working = 0 diff --git a/code/game/objects/items/RSF.dm b/code/game/objects/items/RSF.dm index a01c0e7487..42d2b3dc45 100644 --- a/code/game/objects/items/RSF.dm +++ b/code/game/objects/items/RSF.dm @@ -14,7 +14,7 @@ RSF density = FALSE anchored = FALSE flags_1 = NOBLUDGEON_1 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) var/matter = 0 var/mode = 1 w_class = WEIGHT_CLASS_NORMAL diff --git a/code/game/objects/items/cards_ids.dm b/code/game/objects/items/cards_ids.dm index 2f506fb419..a7bd41999e 100644 --- a/code/game/objects/items/cards_ids.dm +++ b/code/game/objects/items/cards_ids.dm @@ -98,7 +98,7 @@ lefthand_file = 'icons/mob/inhands/equipment/idcards_lefthand.dmi' righthand_file = 'icons/mob/inhands/equipment/idcards_righthand.dmi' slot_flags = SLOT_ID - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 100) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 100) resistance_flags = FIRE_PROOF | ACID_PROOF var/mining_points = 0 //For redeeming at mining equipment vendors var/list/access = list() diff --git a/code/game/objects/items/defib.dm b/code/game/objects/items/defib.dm index 23840ac217..d4e59c8542 100644 --- a/code/game/objects/items/defib.dm +++ b/code/game/objects/items/defib.dm @@ -14,7 +14,7 @@ throwforce = 6 w_class = WEIGHT_CLASS_BULKY actions_types = list(/datum/action/item_action/toggle_paddles) - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 50) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 50) var/on = FALSE //if the paddles are equipped (1) or on the defib (0) var/safety = TRUE //if you can zap people with the defibs on harm mode diff --git a/code/game/objects/items/devices/PDA/PDA.dm b/code/game/objects/items/devices/PDA/PDA.dm index 5899b7c211..db7e2993ae 100644 --- a/code/game/objects/items/devices/PDA/PDA.dm +++ b/code/game/objects/items/devices/PDA/PDA.dm @@ -21,7 +21,7 @@ GLOBAL_LIST_EMPTY(PDAs) flags_1 = NOBLUDGEON_1 w_class = WEIGHT_CLASS_TINY slot_flags = SLOT_ID | SLOT_BELT - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 100) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 100) resistance_flags = FIRE_PROOF | ACID_PROOF diff --git a/code/game/objects/items/devices/forcefieldprojector.dm b/code/game/objects/items/devices/forcefieldprojector.dm index e10c34a139..c0b32883e8 100644 --- a/code/game/objects/items/devices/forcefieldprojector.dm +++ b/code/game/objects/items/devices/forcefieldprojector.dm @@ -79,7 +79,7 @@ mouse_opacity = MOUSE_OPACITY_OPAQUE resistance_flags = INDESTRUCTIBLE CanAtmosPass = ATMOS_PASS_DENSITY - armor = list(melee = 0, bullet = 25, laser = 50, energy = 50, bomb = 25, bio = 100, rad = 100, fire = 100, acid = 100) + armor = list("melee" = 0, "bullet" = 25, "laser" = 50, "energy" = 50, "bomb" = 25, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100) var/obj/item/device/forcefield/generator /obj/structure/projected_forcefield/Initialize(mapload, obj/item/device/forcefield/origin) diff --git a/code/game/objects/items/handcuffs.dm b/code/game/objects/items/handcuffs.dm index 839082c55e..3a66268bd3 100644 --- a/code/game/objects/items/handcuffs.dm +++ b/code/game/objects/items/handcuffs.dm @@ -36,7 +36,7 @@ throw_range = 5 materials = list(MAT_METAL=500) breakouttime = 600 //Deciseconds = 60s = 1 minute - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 50) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 50) var/cuffsound = 'sound/weapons/handcuffs.ogg' var/trashtype = null //for disposable cuffs diff --git a/code/game/objects/items/kitchen.dm b/code/game/objects/items/kitchen.dm index d67a3c8333..c626ba44cc 100644 --- a/code/game/objects/items/kitchen.dm +++ b/code/game/objects/items/kitchen.dm @@ -26,7 +26,7 @@ flags_1 = CONDUCT_1 attack_verb = list("attacked", "stabbed", "poked") hitsound = 'sound/weapons/bladeslice.ogg' - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 30) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 30) var/datum/reagent/forkload //used to eat omelette /obj/item/kitchen/fork/suicide_act(mob/living/carbon/user) @@ -70,7 +70,7 @@ materials = list(MAT_METAL=12000) attack_verb = list("slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut") sharpness = IS_SHARP_ACCURATE - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 50) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 50) var/bayonet = FALSE //Can this be attached to a gun? /obj/item/kitchen/knife/attack(mob/living/carbon/M, mob/living/carbon/user) @@ -155,7 +155,7 @@ throwforce = 12//fuck git materials = list() attack_verb = list("shanked", "shivved") - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) /obj/item/kitchen/rollingpin name = "rolling pin" diff --git a/code/game/objects/items/melee/energy.dm b/code/game/objects/items/melee/energy.dm index 2f9e4231df..74ac616646 100644 --- a/code/game/objects/items/melee/energy.dm +++ b/code/game/objects/items/melee/energy.dm @@ -2,7 +2,7 @@ hitsound_on = 'sound/weapons/blade1.ogg' heat = 3500 max_integrity = 200 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 30) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 30) resistance_flags = FIRE_PROOF var/brightness_on = 3 diff --git a/code/game/objects/items/pneumaticCannon.dm b/code/game/objects/items/pneumaticCannon.dm index 4b6557fde1..10f3cbf810 100644 --- a/code/game/objects/items/pneumaticCannon.dm +++ b/code/game/objects/items/pneumaticCannon.dm @@ -13,7 +13,7 @@ item_state = "bulldog" lefthand_file = 'icons/mob/inhands/weapons/guns_lefthand.dmi' righthand_file = 'icons/mob/inhands/weapons/guns_righthand.dmi' - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 60, acid = 50) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 60, "acid" = 50) var/maxWeightClass = 20 //The max weight of items that can fit into the cannon var/loadedWeightClass = 0 //The weight of items currently in the cannon var/obj/item/tank/internals/tank = null //The gas tank that is drawn from to fire things diff --git a/code/game/objects/items/powerfist.dm b/code/game/objects/items/powerfist.dm index e5bc6ea715..210a6d6a33 100644 --- a/code/game/objects/items/powerfist.dm +++ b/code/game/objects/items/powerfist.dm @@ -11,7 +11,7 @@ throwforce = 10 throw_range = 7 w_class = WEIGHT_CLASS_NORMAL - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 40) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 40) resistance_flags = FIRE_PROOF var/click_delay = 1.5 var/fisto_setting = 1 diff --git a/code/game/objects/items/religion.dm b/code/game/objects/items/religion.dm index b25184c4b1..1a4c2f5674 100644 --- a/code/game/objects/items/religion.dm +++ b/code/game/objects/items/religion.dm @@ -233,7 +233,7 @@ w_class = WEIGHT_CLASS_BULKY slowdown = 2.0 //gotta pretend we're balanced. body_parts_covered = CHEST|GROIN|LEGS|FEET|ARMS|HANDS - armor = list(melee = 50, bullet = 50, laser = 50, energy = 40, bomb = 60, bio = 0, rad = 0, fire = 60, acid = 60) + armor = list("melee" = 50, "bullet" = 50, "laser" = 50, "energy" = 40, "bomb" = 60, "bio" = 0, "rad" = 0, "fire" = 60, "acid" = 60) /obj/item/clothing/suit/armor/plate/crusader/red icon_state = "crusader-red" @@ -247,7 +247,7 @@ icon_state = "crusader" w_class = WEIGHT_CLASS_NORMAL flags_inv = HIDEHAIR|HIDEEARS|HIDEFACE - armor = list(melee = 50, bullet = 50, laser = 50, energy = 40, bomb = 60, bio = 0, rad = 0, fire = 60, acid = 60) + armor = list("melee" = 50, "bullet" = 50, "laser" = 50, "energy" = 40, "bomb" = 60, "bio" = 0, "rad" = 0, "fire" = 60, "acid" = 60) /obj/item/clothing/head/helmet/plate/crusader/blue icon_state = "crusader-blue" @@ -261,7 +261,7 @@ desc = "A religious-looking hat." alternate_worn_icon = 'icons/mob/large-worn-icons/64x64/head.dmi' flags_1 = 0 - armor = list(melee = 60, bullet = 60, laser = 60, energy = 50, bomb = 70, bio = 50, rad = 50, fire = 60, acid = 60) //religion protects you from disease and radiation, honk. + armor = list("melee" = 60, "bullet" = 60, "laser" = 60, "energy" = 50, "bomb" = 70, "bio" = 50, "rad" = 50, "fire" = 60, "acid" = 60) //religion protects you from disease and radiation, honk. worn_x_dimension = 64 worn_y_dimension = 64 @@ -320,7 +320,7 @@ desc = "Metal boots, they look heavy." icon_state = "crusader" w_class = WEIGHT_CLASS_NORMAL - armor = list(melee = 50, bullet = 50, laser = 50, energy = 40, bomb = 60, bio = 0, rad = 0, fire = 60, acid = 60) //does this even do anything on boots? + armor = list("melee" = 50, "bullet" = 50, "laser" = 50, "energy" = 40, "bomb" = 60, "bio" = 0, "rad" = 0, "fire" = 60, "acid" = 60) //does this even do anything on boots? flags_1 = NOSLIP_1 cold_protection = FEET min_cold_protection_temperature = SHOES_MIN_TEMP_PROTECT diff --git a/code/game/objects/items/shields.dm b/code/game/objects/items/shields.dm index 8baa73368e..628ffe4de0 100644 --- a/code/game/objects/items/shields.dm +++ b/code/game/objects/items/shields.dm @@ -1,7 +1,7 @@ /obj/item/shield name = "shield" block_chance = 50 - armor = list(melee = 50, bullet = 50, laser = 50, energy = 0, bomb = 30, bio = 0, rad = 0, fire = 80, acid = 70) + armor = list("melee" = 50, "bullet" = 50, "laser" = 50, "energy" = 0, "bomb" = 30, "bio" = 0, "rad" = 0, "fire" = 80, "acid" = 70) /obj/item/shield/riot name = "riot shield" diff --git a/code/game/objects/items/singularityhammer.dm b/code/game/objects/items/singularityhammer.dm index 38a5ba4cec..9c120dae5d 100644 --- a/code/game/objects/items/singularityhammer.dm +++ b/code/game/objects/items/singularityhammer.dm @@ -1,3 +1,4 @@ +<<<<<<< HEAD /obj/item/twohanded/singularityhammer name = "singularity hammer" desc = "The pinnacle of close combat technology, the hammer harnesses the power of a miniaturized singularity to deal crushing blows." @@ -110,3 +111,117 @@ /obj/item/twohanded/mjollnir/update_icon() //Currently only here to fuck with the on-mob icons. icon_state = "mjollnir[wielded]" return +======= +/obj/item/twohanded/singularityhammer + name = "singularity hammer" + desc = "The pinnacle of close combat technology, the hammer harnesses the power of a miniaturized singularity to deal crushing blows." + icon_state = "mjollnir0" + lefthand_file = 'icons/mob/inhands/weapons/hammers_lefthand.dmi' + righthand_file = 'icons/mob/inhands/weapons/hammers_righthand.dmi' + flags_1 = CONDUCT_1 + slot_flags = SLOT_BACK + force = 5 + force_unwielded = 5 + force_wielded = 20 + throwforce = 15 + throw_range = 1 + w_class = WEIGHT_CLASS_HUGE + var/charged = 5 + armor = list("melee" = 50, "bullet" = 50, "laser" = 50, "energy" = 0, "bomb" = 50, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 100) + resistance_flags = FIRE_PROOF | ACID_PROOF + force_string = "LORD SINGULOTH HIMSELF" + +/obj/item/twohanded/singularityhammer/New() + ..() + START_PROCESSING(SSobj, src) + +/obj/item/twohanded/singularityhammer/Destroy() + STOP_PROCESSING(SSobj, src) + return ..() + +/obj/item/twohanded/singularityhammer/process() + if(charged < 5) + charged++ + return + +/obj/item/twohanded/singularityhammer/update_icon() //Currently only here to fuck with the on-mob icons. + icon_state = "mjollnir[wielded]" + return + +/obj/item/twohanded/singularityhammer/proc/vortex(turf/pull, mob/wielder) + for(var/atom/X in orange(5,pull)) + if(ismovableatom(X)) + var/atom/movable/A = X + if(A == wielder) + continue + if(A && !A.anchored && !ishuman(X)) + step_towards(A,pull) + step_towards(A,pull) + step_towards(A,pull) + else if(ishuman(X)) + var/mob/living/carbon/human/H = X + if(istype(H.shoes, /obj/item/clothing/shoes/magboots)) + var/obj/item/clothing/shoes/magboots/M = H.shoes + if(M.magpulse) + continue + H.apply_effect(20, KNOCKDOWN, 0) + step_towards(H,pull) + step_towards(H,pull) + step_towards(H,pull) + return + +/obj/item/twohanded/singularityhammer/afterattack(atom/A as mob|obj|turf|area, mob/user, proximity) + if(!proximity) + return + if(wielded) + if(charged == 5) + charged = 0 + if(istype(A, /mob/living/)) + var/mob/living/Z = A + Z.take_bodypart_damage(20,0) + playsound(user, 'sound/weapons/marauder.ogg', 50, 1) + var/turf/target = get_turf(A) + vortex(target,user) + +/obj/item/twohanded/mjollnir + name = "Mjolnir" + desc = "A weapon worthy of a god, able to strike with the force of a lightning bolt. It crackles with barely contained energy." + icon_state = "mjollnir0" + lefthand_file = 'icons/mob/inhands/weapons/hammers_lefthand.dmi' + righthand_file = 'icons/mob/inhands/weapons/hammers_righthand.dmi' + flags_1 = CONDUCT_1 + slot_flags = SLOT_BACK + force = 5 + force_unwielded = 5 + force_wielded = 25 + throwforce = 30 + throw_range = 7 + w_class = WEIGHT_CLASS_HUGE + +/obj/item/twohanded/mjollnir/proc/shock(mob/living/target) + target.Stun(60) + var/datum/effect_system/lightning_spread/s = new /datum/effect_system/lightning_spread + s.set_up(5, 1, target.loc) + s.start() + target.visible_message("[target.name] was shocked by [src]!", \ + "You feel a powerful shock course through your body sending you flying!", \ + "You hear a heavy electrical crack!") + var/atom/throw_target = get_edge_target_turf(target, get_dir(src, get_step_away(target, src))) + target.throw_at(throw_target, 200, 4) + return + +/obj/item/twohanded/mjollnir/attack(mob/living/M, mob/user) + ..() + if(wielded) + playsound(src.loc, "sparks", 50, 1) + shock(M) + +/obj/item/twohanded/mjollnir/throw_impact(atom/target) + . = ..() + if(isliving(target)) + shock(target) + +/obj/item/twohanded/mjollnir/update_icon() //Currently only here to fuck with the on-mob icons. + icon_state = "mjollnir[wielded]" + return +>>>>>>> d282c60... Quote the armor lists (#35668) diff --git a/code/game/objects/items/stacks/sheets/glass.dm b/code/game/objects/items/stacks/sheets/glass.dm index c0045c721b..d344f5eeda 100644 --- a/code/game/objects/items/stacks/sheets/glass.dm +++ b/code/game/objects/items/stacks/sheets/glass.dm @@ -19,7 +19,7 @@ GLOBAL_LIST_INIT(glass_recipes, list ( \ singular_name = "glass sheet" icon_state = "sheet-glass" materials = list(MAT_GLASS=MINERAL_MATERIAL_AMOUNT) - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 100) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 100) resistance_flags = ACID_PROOF merge_type = /obj/item/stack/sheet/glass grind_results = list("silicon" = 20) @@ -131,7 +131,7 @@ GLOBAL_LIST_INIT(reinforced_glass_recipes, list ( \ singular_name = "reinforced glass sheet" icon_state = "sheet-rglass" materials = list(MAT_METAL=MINERAL_MATERIAL_AMOUNT/2, MAT_GLASS=MINERAL_MATERIAL_AMOUNT) - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 70, acid = 100) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 70, "acid" = 100) resistance_flags = ACID_PROOF merge_type = /obj/item/stack/sheet/rglass grind_results = list("silicon" = 20, "iron" = 10) diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm index 0c0b942083..91b3ebeb55 100644 --- a/code/game/objects/items/stacks/sheets/sheet_types.dm +++ b/code/game/objects/items/stacks/sheets/sheet_types.dm @@ -157,7 +157,7 @@ GLOBAL_LIST_INIT(plasteel_recipes, list ( \ materials = list(MAT_METAL=2000, MAT_PLASMA=2000) throwforce = 10 flags_1 = CONDUCT_1 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 80) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 80) resistance_flags = FIRE_PROOF merge_type = /obj/item/stack/sheet/plasteel grind_results = list("iron" = 20, "plasma" = 20) @@ -208,7 +208,7 @@ GLOBAL_LIST_INIT(wood_recipes, list ( \ icon_state = "sheet-wood" icon = 'icons/obj/stack_objects.dmi' sheettype = "wood" - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 0) resistance_flags = FLAMMABLE merge_type = /obj/item/stack/sheet/mineral/wood novariants = TRUE diff --git a/code/game/objects/items/stacks/tiles/tile_types.dm b/code/game/objects/items/stacks/tiles/tile_types.dm index 4e15cea273..2231207556 100644 --- a/code/game/objects/items/stacks/tiles/tile_types.dm +++ b/code/game/objects/items/stacks/tiles/tile_types.dm @@ -206,7 +206,7 @@ flags_1 = CONDUCT_1 turf_type = /turf/open/floor/plasteel mineralType = "metal" - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 70) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 70) resistance_flags = FIRE_PROOF /obj/item/stack/tile/plasteel/cyborg diff --git a/code/game/objects/items/storage/backpack.dm b/code/game/objects/items/storage/backpack.dm index 6691462888..26c2c0b9db 100644 --- a/code/game/objects/items/storage/backpack.dm +++ b/code/game/objects/items/storage/backpack.dm @@ -42,7 +42,7 @@ flags_2 = NO_MAT_REDEMPTION_2 var/pshoom = 'sound/items/pshoom.ogg' var/alt_sound = 'sound/items/pshoom_2.ogg' - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 60, acid = 50) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 60, "acid" = 50) /obj/item/storage/backpack/holding/suicide_act(mob/living/user) diff --git a/code/game/objects/items/stunbaton.dm b/code/game/objects/items/stunbaton.dm index 05599597af..9f42a7c370 100644 --- a/code/game/objects/items/stunbaton.dm +++ b/code/game/objects/items/stunbaton.dm @@ -10,7 +10,7 @@ throwforce = 7 w_class = WEIGHT_CLASS_NORMAL attack_verb = list("beaten") - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 50, bio = 0, rad = 0, fire = 80, acid = 80) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 50, "bio" = 0, "rad" = 0, "fire" = 80, "acid" = 80) var/stunforce = 140 var/status = 0 diff --git a/code/game/objects/items/tanks/tanks.dm b/code/game/objects/items/tanks/tanks.dm index 4b20b9695f..2e512c3ec4 100644 --- a/code/game/objects/items/tanks/tanks.dm +++ b/code/game/objects/items/tanks/tanks.dm @@ -13,7 +13,7 @@ throw_range = 4 materials = list(MAT_METAL = 500) actions_types = list(/datum/action/item_action/set_internals) - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 10, bio = 0, rad = 0, fire = 80, acid = 30) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 10, "bio" = 0, "rad" = 0, "fire" = 80, "acid" = 30) var/datum/gas_mixture/air_contents = null var/distribute_pressure = ONE_ATMOSPHERE var/integrity = 3 diff --git a/code/game/objects/items/tanks/watertank.dm b/code/game/objects/items/tanks/watertank.dm index dc0540307e..2d54eec334 100644 --- a/code/game/objects/items/tanks/watertank.dm +++ b/code/game/objects/items/tanks/watertank.dm @@ -10,7 +10,7 @@ slowdown = 1 actions_types = list(/datum/action/item_action/toggle_mister) max_integrity = 200 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 30) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 30) resistance_flags = FIRE_PROOF var/obj/item/noz diff --git a/code/game/objects/items/teleportation.dm b/code/game/objects/items/teleportation.dm index 44c44281c6..2ef3e52ff1 100644 --- a/code/game/objects/items/teleportation.dm +++ b/code/game/objects/items/teleportation.dm @@ -140,7 +140,7 @@ Frequency: throw_speed = 3 throw_range = 5 materials = list(MAT_METAL=10000) - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 30, bio = 0, rad = 0, fire = 100, acid = 100) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 30, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 100) resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | ACID_PROOF var/list/active_portal_pairs var/max_portal_pairs = 3 diff --git a/code/game/objects/items/tools/crowbar.dm b/code/game/objects/items/tools/crowbar.dm index cf2baba081..ed6233a0b6 100644 --- a/code/game/objects/items/tools/crowbar.dm +++ b/code/game/objects/items/tools/crowbar.dm @@ -11,11 +11,12 @@ force = 5 throwforce = 7 w_class = WEIGHT_CLASS_SMALL - materials = list(MAT_METAL=50) + materials = list(MAT_METAL=50) + attack_verb = list("attacked", "bashed", "battered", "bludgeoned", "whacked") tool_behaviour = TOOL_CROWBAR toolspeed = 1 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 30) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 30) /obj/item/crowbar/suicide_act(mob/user) user.visible_message("[user] is beating [user.p_them()]self to death with [src]! It looks like [user.p_theyre()] trying to commit suicide!") @@ -39,7 +40,8 @@ icon = 'icons/obj/abductor.dmi' usesound = 'sound/weapons/sonic_jackhammer.ogg' icon_state = "crowbar" - toolspeed = 0.1 + toolspeed = 0.1 + /obj/item/crowbar/large name = "crowbar" @@ -67,7 +69,8 @@ item_state = "jawsoflife" lefthand_file = 'icons/mob/inhands/equipment/tools_lefthand.dmi' righthand_file = 'icons/mob/inhands/equipment/tools_righthand.dmi' - materials = list(MAT_METAL=150,MAT_SILVER=50,MAT_TITANIUM=25) + materials = list(MAT_METAL=150,MAT_SILVER=50,MAT_TITANIUM=25) + usesound = 'sound/items/jaws_pry.ogg' force = 15 toolspeed = 0.25 diff --git a/code/game/objects/items/tools/screwdriver.dm b/code/game/objects/items/tools/screwdriver.dm index ea7a762b1e..530580fab5 100644 --- a/code/game/objects/items/tools/screwdriver.dm +++ b/code/game/objects/items/tools/screwdriver.dm @@ -19,7 +19,7 @@ usesound = list('sound/items/screwdriver.ogg', 'sound/items/screwdriver2.ogg') tool_behaviour = TOOL_SCREWDRIVER toolspeed = 1 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 30) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 30) var/random_color = TRUE //if the screwdriver uses random coloring var/static/list/screwdriver_colors = list( "blue" = rgb(24, 97, 213), diff --git a/code/game/objects/items/tools/weldingtool.dm b/code/game/objects/items/tools/weldingtool.dm index 7425835764..d7dd57fd2b 100644 --- a/code/game/objects/items/tools/weldingtool.dm +++ b/code/game/objects/items/tools/weldingtool.dm @@ -1,3 +1,4 @@ +<<<<<<< HEAD #define WELDER_FUEL_BURN_INTERVAL 13 /obj/item/weldingtool name = "welding tool" @@ -358,4 +359,366 @@ nextrefueltick = world.time + 10 reagents.add_reagent("welding_fuel", 1) +======= +#define WELDER_FUEL_BURN_INTERVAL 13 +/obj/item/weldingtool + name = "welding tool" + desc = "A standard edition welder provided by Nanotrasen." + icon = 'icons/obj/tools.dmi' + icon_state = "welder" + item_state = "welder" + lefthand_file = 'icons/mob/inhands/equipment/tools_lefthand.dmi' + righthand_file = 'icons/mob/inhands/equipment/tools_righthand.dmi' + flags_1 = CONDUCT_1 + slot_flags = SLOT_BELT + force = 3 + throwforce = 5 + hitsound = "swing_hit" + usesound = list('sound/items/welder.ogg', 'sound/items/welder2.ogg') + var/acti_sound = 'sound/items/welderactivate.ogg' + var/deac_sound = 'sound/items/welderdeactivate.ogg' + throw_speed = 3 + throw_range = 5 + w_class = WEIGHT_CLASS_SMALL + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 30) + resistance_flags = FIRE_PROOF + + materials = list(MAT_METAL=70, MAT_GLASS=30) + var/welding = 0 //Whether or not the welding tool is off(0), on(1) or currently welding(2) + var/status = TRUE //Whether the welder is secured or unsecured (able to attach rods to it to make a flamethrower) + var/max_fuel = 20 //The max amount of fuel the welder can hold + var/change_icons = 1 + var/can_off_process = 0 + var/light_intensity = 2 //how powerful the emitted light is when used. + var/burned_fuel_for = 0 //when fuel was last removed + heat = 3800 + tool_behaviour = TOOL_WELDER + toolspeed = 1 + +/obj/item/weldingtool/Initialize() + . = ..() + create_reagents(max_fuel) + reagents.add_reagent("welding_fuel", max_fuel) + update_icon() + + +/obj/item/weldingtool/proc/update_torch() + if(welding) + add_overlay("[initial(icon_state)]-on") + item_state = "[initial(item_state)]1" + else + item_state = "[initial(item_state)]" + + +/obj/item/weldingtool/update_icon() + cut_overlays() + if(change_icons) + var/ratio = get_fuel() / max_fuel + ratio = CEILING(ratio*4, 1) * 25 + add_overlay("[initial(icon_state)][ratio]") + update_torch() + return + + +/obj/item/weldingtool/process() + switch(welding) + if(0) + force = 3 + damtype = "brute" + update_icon() + if(!can_off_process) + STOP_PROCESSING(SSobj, src) + return + //Welders left on now use up fuel, but lets not have them run out quite that fast + if(1) + force = 15 + damtype = "fire" + ++burned_fuel_for + if(burned_fuel_for >= WELDER_FUEL_BURN_INTERVAL) + use(1) + update_icon() + + //This is to start fires. process() is only called if the welder is on. + open_flame() + + +/obj/item/weldingtool/suicide_act(mob/user) + user.visible_message("[user] welds [user.p_their()] every orifice closed! It looks like [user.p_theyre()] trying to commit suicide!") + return (FIRELOSS) + + +/obj/item/weldingtool/attackby(obj/item/I, mob/user, params) + if(istype(I, /obj/item/screwdriver)) + flamethrower_screwdriver(I, user) + else if(istype(I, /obj/item/stack/rods)) + flamethrower_rods(I, user) + else + . = ..() + update_icon() + +/obj/item/weldingtool/proc/explode() + var/turf/T = get_turf(loc) + var/plasmaAmount = reagents.get_reagent_amount("plasma") + dyn_explosion(T, plasmaAmount/5)//20 plasma in a standard welder has a 4 power explosion. no breaches, but enough to kill/dismember holder + qdel(src) + +/obj/item/weldingtool/attack(mob/living/carbon/human/H, mob/user) + if(!istype(H)) + return ..() + + var/obj/item/bodypart/affecting = H.get_bodypart(check_zone(user.zone_selected)) + + if(affecting && affecting.status == BODYPART_ROBOTIC && user.a_intent != INTENT_HARM) + if(src.use_tool(H, user, 0, volume=50, amount=1)) + if(user == H) + user.visible_message("[user] starts to fix some of the dents on [H]'s [affecting.name].", + "You start fixing some of the dents on [H]'s [affecting.name].") + if(!do_mob(user, H, 50)) + return + item_heal_robotic(H, user, 15, 0) + else + return ..() + + +/obj/item/weldingtool/afterattack(atom/O, mob/user, proximity) + if(!proximity) + return + if(!status && O.is_refillable()) + reagents.trans_to(O, reagents.total_volume) + to_chat(user, "You empty [src]'s fuel tank into [O].") + update_icon() + if(isOn()) + use(1) + var/turf/location = get_turf(user) + location.hotspot_expose(700, 50, 1) + if(get_fuel() <= 0) + set_light(0) + + if(isliving(O)) + var/mob/living/L = O + if(L.IgniteMob()) + message_admins("[key_name_admin(user)] set [key_name_admin(L)] on fire") + log_game("[key_name(user)] set [key_name(L)] on fire") + + +/obj/item/weldingtool/attack_self(mob/user) + if(src.reagents.has_reagent("plasma")) + message_admins("[key_name_admin(user)] activated a rigged welder.") + explode() + switched_on(user) + if(welding) + set_light(light_intensity) + + update_icon() + + +// Returns the amount of fuel in the welder +/obj/item/weldingtool/proc/get_fuel() + return reagents.get_reagent_amount("welding_fuel") + + +// Uses fuel from the welding tool. +/obj/item/weldingtool/use(used = 0) + if(!isOn() || !check_fuel()) + return FALSE + + if(used) + burned_fuel_for = 0 + if(get_fuel() >= used) + reagents.remove_reagent("welding_fuel", used) + check_fuel() + return TRUE + else + return FALSE + + +//Turns off the welder if there is no more fuel (does this really need to be its own proc?) +/obj/item/weldingtool/proc/check_fuel(mob/user) + if(get_fuel() <= 0 && welding) + switched_on(user) + update_icon() + //mob icon update + if(ismob(loc)) + var/mob/M = loc + M.update_inv_hands(0) + + return 0 + return 1 + +//Switches the welder on +/obj/item/weldingtool/proc/switched_on(mob/user) + if(!status) + to_chat(user, "[src] can't be turned on while unsecured!") + return + welding = !welding + if(welding) + if(get_fuel() >= 1) + to_chat(user, "You switch [src] on.") + playsound(loc, acti_sound, 50, 1) + force = 15 + damtype = "fire" + hitsound = 'sound/items/welder.ogg' + update_icon() + START_PROCESSING(SSobj, src) + else + to_chat(user, "You need more fuel!") + switched_off(user) + else + to_chat(user, "You switch [src] off.") + playsound(loc, deac_sound, 50, 1) + switched_off(user) + +//Switches the welder off +/obj/item/weldingtool/proc/switched_off(mob/user) + welding = 0 + set_light(0) + + force = 3 + damtype = "brute" + hitsound = "swing_hit" + update_icon() + + +/obj/item/weldingtool/examine(mob/user) + ..() + to_chat(user, "It contains [get_fuel()] unit\s of fuel out of [max_fuel].") + +/obj/item/weldingtool/is_hot() + return welding * heat + +//Returns whether or not the welding tool is currently on. +/obj/item/weldingtool/proc/isOn() + return welding + +// When welding is about to start, run a normal tool_use_check, then flash a mob if it succeeds. +/obj/item/weldingtool/tool_start_check(mob/living/user, amount=0) + . = tool_use_check(user, amount) + if(. && user) + user.flash_act(light_intensity) + +// If welding tool ran out of fuel during a construction task, construction fails. +/obj/item/weldingtool/tool_use_check(mob/living/user, amount) + if(!isOn() || !check_fuel()) + to_chat(user, "[src] has to be on to complete this task!") + return FALSE + + if(get_fuel() >= amount) + return TRUE + else + to_chat(user, "You need more welding fuel to complete this task!") + return FALSE + + +/obj/item/weldingtool/proc/flamethrower_screwdriver(obj/item/I, mob/user) + if(welding) + to_chat(user, "Turn it off first!") + return + status = !status + if(status) + to_chat(user, "You resecure [src] and close the fuel tank.") + container_type = NONE + else + to_chat(user, "[src] can now be attached, modified, and refuelled.") + container_type = OPENCONTAINER + add_fingerprint(user) + +/obj/item/weldingtool/proc/flamethrower_rods(obj/item/I, mob/user) + if(!status) + var/obj/item/stack/rods/R = I + if (R.use(1)) + var/obj/item/flamethrower/F = new /obj/item/flamethrower(user.loc) + if(!remove_item_from_storage(F)) + user.transferItemToLoc(src, F, TRUE) + F.weldtool = src + add_fingerprint(user) + to_chat(user, "You add a rod to a welder, starting to build a flamethrower.") + user.put_in_hands(F) + else + to_chat(user, "You need one rod to start building a flamethrower!") + +/obj/item/weldingtool/ignition_effect(atom/A, mob/user) + if(use_tool(A, user, 0, amount=1)) + return "[user] casually lights [A] with [src], what a badass." + else + return "" + +/obj/item/weldingtool/largetank + name = "industrial welding tool" + desc = "A slightly larger welder with a larger tank." + icon_state = "indwelder" + max_fuel = 40 + materials = list(MAT_GLASS=60) + +/obj/item/weldingtool/largetank/cyborg + name = "integrated welding tool" + desc = "An advanced welder designed to be used in robotic systems." + toolspeed = 0.5 + +/obj/item/weldingtool/largetank/flamethrower_screwdriver() + return + + +/obj/item/weldingtool/mini + name = "emergency welding tool" + desc = "A miniature welder used during emergencies." + icon_state = "miniwelder" + max_fuel = 10 + w_class = WEIGHT_CLASS_TINY + materials = list(MAT_METAL=30, MAT_GLASS=10) + change_icons = 0 + +/obj/item/weldingtool/mini/flamethrower_screwdriver() + return + +/obj/item/weldingtool/abductor + name = "alien welding tool" + desc = "An alien welding tool. Whatever fuel it uses, it never runs out." + icon = 'icons/obj/abductor.dmi' + icon_state = "welder" + toolspeed = 0.1 + light_intensity = 0 + change_icons = 0 + +/obj/item/weldingtool/abductor/process() + if(get_fuel() <= max_fuel) + reagents.add_reagent("welding_fuel", 1) + ..() + +/obj/item/weldingtool/hugetank + name = "upgraded industrial welding tool" + desc = "An upgraded welder based of the industrial welder." + icon_state = "upindwelder" + item_state = "upindwelder" + max_fuel = 80 + materials = list(MAT_METAL=70, MAT_GLASS=120) + +/obj/item/weldingtool/experimental + name = "experimental welding tool" + desc = "An experimental welder capable of self-fuel generation and less harmful to the eyes." + icon_state = "exwelder" + item_state = "exwelder" + max_fuel = 40 + materials = list(MAT_METAL=70, MAT_GLASS=120) + var/last_gen = 0 + change_icons = 0 + can_off_process = 1 + light_intensity = 1 + toolspeed = 0.5 + var/nextrefueltick = 0 + +/obj/item/weldingtool/experimental/brass + name = "brass welding tool" + desc = "A brass welder that seems to constantly refuel itself. It is faintly warm to the touch." + resistance_flags = FIRE_PROOF | ACID_PROOF + icon_state = "brasswelder" + item_state = "brasswelder" + + +/obj/item/weldingtool/experimental/process() + ..() + if(get_fuel() < max_fuel && nextrefueltick < world.time) + nextrefueltick = world.time + 10 + reagents.add_reagent("welding_fuel", 1) + +>>>>>>> d282c60... Quote the armor lists (#35668) #undef WELDER_FUEL_BURN_INTERVAL \ No newline at end of file diff --git a/code/game/objects/items/tools/wirecutters.dm b/code/game/objects/items/tools/wirecutters.dm index de5eb557dc..d2981fc839 100644 --- a/code/game/objects/items/tools/wirecutters.dm +++ b/code/game/objects/items/tools/wirecutters.dm @@ -19,7 +19,7 @@ tool_behaviour = TOOL_WIRECUTTER toolspeed = 1 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 30) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 30) var/random_color = TRUE var/static/list/wirecutter_colors = list( "blue" = "#1861d5", diff --git a/code/game/objects/items/tools/wrench.dm b/code/game/objects/items/tools/wrench.dm index 2b3c6e7bbe..6e399c0909 100644 --- a/code/game/objects/items/tools/wrench.dm +++ b/code/game/objects/items/tools/wrench.dm @@ -11,11 +11,12 @@ throwforce = 7 w_class = WEIGHT_CLASS_SMALL usesound = 'sound/items/ratchet.ogg' - materials = list(MAT_METAL=150) + materials = list(MAT_METAL=150) + attack_verb = list("bashed", "battered", "bludgeoned", "whacked") tool_behaviour = TOOL_WRENCH toolspeed = 1 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 30) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 30) /obj/item/wrench/suicide_act(mob/user) user.visible_message("[user] is beating [user.p_them()]self to death with [src]! It looks like [user.p_theyre()] trying to commit suicide!") @@ -40,7 +41,8 @@ icon = 'icons/obj/abductor.dmi' icon_state = "wrench" usesound = 'sound/effects/empulse.ogg' - toolspeed = 0.1 + toolspeed = 0.1 + /obj/item/wrench/power name = "hand drill" @@ -50,7 +52,8 @@ lefthand_file = 'icons/mob/inhands/equipment/tools_lefthand.dmi' righthand_file = 'icons/mob/inhands/equipment/tools_righthand.dmi' usesound = 'sound/items/drill_use.ogg' - materials = list(MAT_METAL=150,MAT_SILVER=50,MAT_TITANIUM=25) //done for balance reasons, making them high value for research, but harder to get + materials = list(MAT_METAL=150,MAT_SILVER=50,MAT_TITANIUM=25) + //done for balance reasons, making them high value for research, but harder to get force = 8 //might or might not be too high, subject to change w_class = WEIGHT_CLASS_SMALL throwforce = 8 @@ -73,7 +76,8 @@ desc = "A medical wrench with common(medical?) uses. Can be found in your hand." icon_state = "wrench_medical" force = 2 //MEDICAL - throwforce = 4 + throwforce = 4 + attack_verb = list("wrenched", "medicaled", "tapped", "jabbed", "whacked") /obj/item/wrench/medical/suicide_act(mob/living/user) diff --git a/code/game/objects/items/twohanded.dm b/code/game/objects/items/twohanded.dm index a6f4a52f69..8962e7248d 100644 --- a/code/game/objects/items/twohanded.dm +++ b/code/game/objects/items/twohanded.dm @@ -231,7 +231,7 @@ hitsound = 'sound/weapons/bladeslice.ogg' sharpness = IS_SHARP max_integrity = 200 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 30) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 30) resistance_flags = FIRE_PROOF /obj/item/twohanded/fireaxe/update_icon() //Currently only here to fuck with the on-mob icons. @@ -280,7 +280,7 @@ attack_verb = list("attacked", "slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut") block_chance = 75 max_integrity = 200 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 70) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 70) resistance_flags = FIRE_PROOF var/hacked = FALSE var/brightness_on = 6 //TWICE AS BRIGHT AS A REGULAR ESWORD @@ -466,7 +466,7 @@ attack_verb = list("attacked", "poked", "jabbed", "torn", "gored") sharpness = IS_SHARP max_integrity = 200 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 30) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 30) var/obj/item/grenade/explosive = null var/war_cry = "AAAAARGH!!!" @@ -650,7 +650,7 @@ hitsound = 'sound/weapons/bladeslice.ogg' sharpness = IS_SHARP max_integrity = 200 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 30) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 30) resistance_flags = FIRE_PROOF /obj/item/twohanded/pitchfork/demonic diff --git a/code/game/objects/items/vending_items.dm b/code/game/objects/items/vending_items.dm index 9321cfc3f0..42b8757b7e 100644 --- a/code/game/objects/items/vending_items.dm +++ b/code/game/objects/items/vending_items.dm @@ -14,7 +14,7 @@ throw_speed = 1 throw_range = 7 w_class = WEIGHT_CLASS_BULKY - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 70, acid = 30) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 70, "acid" = 30) var/charges = list(0, 0, 0) //how many restocking "charges" the refill has for standard/contraband/coin products var/init_charges = list(0, 0, 0) diff --git a/code/game/objects/items/weaponry.dm b/code/game/objects/items/weaponry.dm index 34260eafe0..c476611ff9 100644 --- a/code/game/objects/items/weaponry.dm +++ b/code/game/objects/items/weaponry.dm @@ -11,7 +11,7 @@ throw_range = 7 attack_verb = list("banned") max_integrity = 200 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 70) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 70) resistance_flags = FIRE_PROOF /obj/item/banhammer/suicide_act(mob/user) @@ -63,7 +63,7 @@ block_chance = 50 sharpness = IS_SHARP max_integrity = 200 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 50) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 50) resistance_flags = FIRE_PROOF /obj/item/claymore/suicide_act(mob/user) @@ -210,7 +210,7 @@ block_chance = 50 sharpness = IS_SHARP max_integrity = 200 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 50) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 50) resistance_flags = FIRE_PROOF /obj/item/katana/cursed diff --git a/code/game/objects/structures.dm b/code/game/objects/structures.dm index 56b5469c86..39ad436b05 100644 --- a/code/game/objects/structures.dm +++ b/code/game/objects/structures.dm @@ -10,7 +10,7 @@ /obj/structure/Initialize() if (!armor) - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 50) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 50) . = ..() if(smooth) queue_smooth(src) diff --git a/code/game/objects/structures/barsigns.dm b/code/game/objects/structures/barsigns.dm index c9c9e8c931..41ab647897 100644 --- a/code/game/objects/structures/barsigns.dm +++ b/code/game/objects/structures/barsigns.dm @@ -6,7 +6,7 @@ req_access = list(ACCESS_BAR) max_integrity = 500 integrity_failure = 250 - armor = list(melee = 20, bullet = 20, laser = 20, energy = 100, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 50) + armor = list("melee" = 20, "bullet" = 20, "laser" = 20, "energy" = 100, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 50) buildable_sign = 0 var/list/barsigns=list() var/list/hiddensigns diff --git a/code/game/objects/structures/crates_lockers/closets.dm b/code/game/objects/structures/crates_lockers/closets.dm index 3ebac6f65f..52fe7b9bf9 100644 --- a/code/game/objects/structures/crates_lockers/closets.dm +++ b/code/game/objects/structures/crates_lockers/closets.dm @@ -15,7 +15,7 @@ var/wall_mounted = 0 //never solid (You can always pass over it) max_integrity = 200 integrity_failure = 50 - armor = list(melee = 20, bullet = 10, laser = 10, energy = 0, bomb = 10, bio = 0, rad = 0, fire = 70, acid = 60) + armor = list("melee" = 20, "bullet" = 10, "laser" = 10, "energy" = 0, "bomb" = 10, "bio" = 0, "rad" = 0, "fire" = 70, "acid" = 60) var/breakout_time = 1200 var/message_cooldown var/can_weld_shut = TRUE diff --git a/code/game/objects/structures/crates_lockers/closets/secure/secure_closets.dm b/code/game/objects/structures/crates_lockers/closets/secure/secure_closets.dm index 215384054b..dd503d76f7 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/secure_closets.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/secure_closets.dm @@ -4,7 +4,7 @@ locked = TRUE icon_state = "secure" max_integrity = 250 - armor = list(melee = 30, bullet = 50, laser = 50, energy = 100, bomb = 0, bio = 0, rad = 0, fire = 80, acid = 80) + armor = list("melee" = 30, "bullet" = 50, "laser" = 50, "energy" = 100, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 80, "acid" = 80) secure = TRUE /obj/structure/closet/secure_closet/run_obj_armor(damage_amount, damage_type, damage_flag = 0, attack_dir) diff --git a/code/game/objects/structures/crates_lockers/crates/secure.dm b/code/game/objects/structures/crates_lockers/crates/secure.dm index 57cc82662e..d52bd183ac 100644 --- a/code/game/objects/structures/crates_lockers/crates/secure.dm +++ b/code/game/objects/structures/crates_lockers/crates/secure.dm @@ -5,7 +5,7 @@ secure = TRUE locked = TRUE max_integrity = 500 - armor = list(melee = 30, bullet = 50, laser = 50, energy = 100, bomb = 0, bio = 0, rad = 0, fire = 80, acid = 80) + armor = list("melee" = 30, "bullet" = 50, "laser" = 50, "energy" = 100, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 80, "acid" = 80) var/tamperproof = 0 /obj/structure/closet/crate/secure/run_obj_armor(damage_amount, damage_type, damage_flag = 0, attack_dir) diff --git a/code/game/objects/structures/displaycase.dm b/code/game/objects/structures/displaycase.dm index a4efc89701..94e6d62747 100644 --- a/code/game/objects/structures/displaycase.dm +++ b/code/game/objects/structures/displaycase.dm @@ -6,7 +6,7 @@ density = TRUE anchored = TRUE resistance_flags = ACID_PROOF - armor = list(melee = 30, bullet = 0, laser = 0, energy = 0, bomb = 10, bio = 0, rad = 0, fire = 70, acid = 100) + armor = list("melee" = 30, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 10, "bio" = 0, "rad" = 0, "fire" = 70, "acid" = 100) max_integrity = 200 integrity_failure = 50 var/obj/item/showpiece = null diff --git a/code/game/objects/structures/fireaxe.dm b/code/game/objects/structures/fireaxe.dm index a75056c31a..b9f0da2b1b 100644 --- a/code/game/objects/structures/fireaxe.dm +++ b/code/game/objects/structures/fireaxe.dm @@ -6,7 +6,7 @@ icon_state = "fireaxe" anchored = TRUE density = FALSE - armor = list(melee = 50, bullet = 20, laser = 0, energy = 100, bomb = 10, bio = 100, rad = 100, fire = 90, acid = 50) + armor = list("melee" = 50, "bullet" = 20, "laser" = 0, "energy" = 100, "bomb" = 10, "bio" = 100, "rad" = 100, "fire" = 90, "acid" = 50) var/locked = TRUE var/open = FALSE max_integrity = 150 diff --git a/code/game/objects/structures/grille.dm b/code/game/objects/structures/grille.dm index 733ec9952b..f9828ea52a 100644 --- a/code/game/objects/structures/grille.dm +++ b/code/game/objects/structures/grille.dm @@ -8,7 +8,7 @@ flags_1 = CONDUCT_1 pressure_resistance = 5*ONE_ATMOSPHERE layer = BELOW_OBJ_LAYER - armor = list(melee = 50, bullet = 70, laser = 70, energy = 100, bomb = 10, bio = 100, rad = 100, fire = 0, acid = 0) + armor = list("melee" = 50, "bullet" = 70, "laser" = 70, "energy" = 100, "bomb" = 10, "bio" = 100, "rad" = 100, "fire" = 0, "acid" = 0) max_integrity = 50 integrity_failure = 20 var/rods_type = /obj/item/stack/rods diff --git a/code/game/objects/structures/holosign.dm b/code/game/objects/structures/holosign.dm index 38981d1d99..b9a750d2df 100644 --- a/code/game/objects/structures/holosign.dm +++ b/code/game/objects/structures/holosign.dm @@ -6,7 +6,7 @@ icon = 'icons/effects/effects.dmi' anchored = TRUE max_integrity = 1 - armor = list(melee = 0, bullet = 50, laser = 50, energy = 50, bomb = 0, bio = 0, rad = 0, fire = 20, acid = 20) + armor = list("melee" = 0, "bullet" = 50, "laser" = 50, "energy" = 50, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 20, "acid" = 20) var/obj/item/holosign_creator/projector /obj/structure/holosign/New(loc, source_projector) diff --git a/code/game/objects/structures/lattice.dm b/code/game/objects/structures/lattice.dm index 83549a56d2..c6273f3049 100644 --- a/code/game/objects/structures/lattice.dm +++ b/code/game/objects/structures/lattice.dm @@ -5,7 +5,7 @@ icon_state = "lattice" density = FALSE anchored = TRUE - armor = list(melee = 50, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 80, acid = 50) + armor = list("melee" = 50, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 80, "acid" = 50) max_integrity = 50 layer = LATTICE_LAYER //under pipes var/number_of_rods = 1 diff --git a/code/game/objects/structures/mineral_doors.dm b/code/game/objects/structures/mineral_doors.dm index 35d1008474..7ae10816a6 100644 --- a/code/game/objects/structures/mineral_doors.dm +++ b/code/game/objects/structures/mineral_doors.dm @@ -15,7 +15,7 @@ var/isSwitchingStates = 0 var/close_delay = -1 //-1 if does not auto close. max_integrity = 200 - armor = list(melee = 10, bullet = 0, laser = 0, energy = 100, bomb = 10, bio = 100, rad = 100, fire = 50, acid = 50) + armor = list("melee" = 10, "bullet" = 0, "laser" = 0, "energy" = 100, "bomb" = 10, "bio" = 100, "rad" = 100, "fire" = 50, "acid" = 50) var/sheetType = /obj/item/stack/sheet/metal var/sheetAmount = 7 var/openSound = 'sound/effects/stonedoor_openclose.ogg' diff --git a/code/game/objects/structures/plasticflaps.dm b/code/game/objects/structures/plasticflaps.dm index 99903901bd..bd2c888b3c 100644 --- a/code/game/objects/structures/plasticflaps.dm +++ b/code/game/objects/structures/plasticflaps.dm @@ -3,7 +3,7 @@ desc = "Definitely can't get past those. No way." icon = 'icons/obj/stationobjs.dmi' icon_state = "plasticflaps" - armor = list(melee = 100, bullet = 80, laser = 80, energy = 100, bomb = 50, bio = 100, rad = 100, fire = 50, acid = 50) + armor = list("melee" = 100, "bullet" = 80, "laser" = 80, "energy" = 100, "bomb" = 50, "bio" = 100, "rad" = 100, "fire" = 50, "acid" = 50) density = FALSE anchored = TRUE layer = ABOVE_MOB_LAYER diff --git a/code/game/objects/structures/signs/_signs.dm b/code/game/objects/structures/signs/_signs.dm index c3547116fd..5a3488225e 100644 --- a/code/game/objects/structures/signs/_signs.dm +++ b/code/game/objects/structures/signs/_signs.dm @@ -5,7 +5,7 @@ density = FALSE layer = SIGN_LAYER max_integrity = 100 - armor = list(melee = 50, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 50) + armor = list("melee" = 50, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 50) var/buildable_sign = 1 //unwrenchable and modifiable /obj/structure/sign/ComponentInitialize() diff --git a/code/game/objects/structures/tables_racks.dm b/code/game/objects/structures/tables_racks.dm index 7cb73ba52b..09ad92e396 100644 --- a/code/game/objects/structures/tables_racks.dm +++ b/code/game/objects/structures/tables_racks.dm @@ -159,7 +159,7 @@ canSmoothWith = null max_integrity = 70 resistance_flags = ACID_PROOF - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 80, acid = 100) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 80, "acid" = 100) var/list/debris = list() /obj/structure/table/glass/New() @@ -292,7 +292,7 @@ canSmoothWith = list(/obj/structure/table/reinforced, /obj/structure/table) max_integrity = 200 integrity_failure = 50 - armor = list(melee = 10, bullet = 30, laser = 30, energy = 100, bomb = 20, bio = 0, rad = 0, fire = 80, acid = 70) + armor = list("melee" = 10, "bullet" = 30, "laser" = 30, "energy" = 100, "bomb" = 20, "bio" = 0, "rad" = 0, "fire" = 80, "acid" = 70) /obj/structure/table/reinforced/deconstruction_hints(mob/user) if(deconstruction_ready) diff --git a/code/game/shuttle_engines.dm b/code/game/shuttle_engines.dm index 257ae07a55..b169fc0b2c 100644 --- a/code/game/shuttle_engines.dm +++ b/code/game/shuttle_engines.dm @@ -8,7 +8,7 @@ icon = 'icons/turf/shuttle.dmi' resistance_flags = LAVA_PROOF | FIRE_PROOF | ACID_PROOF max_integrity = 500 - armor = list(melee = 100, bullet = 10, laser = 10, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 70) //default + ignores melee + armor = list("melee" = 100, "bullet" = 10, "laser" = 10, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 70) //default + ignores melee /obj/structure/shuttle/engine name = "engine" diff --git a/code/modules/antagonists/abductor/equipment/abduction_gear.dm b/code/modules/antagonists/abductor/equipment/abduction_gear.dm index 26452e0945..dcc8be412f 100644 --- a/code/modules/antagonists/abductor/equipment/abduction_gear.dm +++ b/code/modules/antagonists/abductor/equipment/abduction_gear.dm @@ -13,7 +13,7 @@ icon_state = "vest_stealth" item_state = "armor" blood_overlay_type = "armor" - armor = list(melee = 15, bullet = 15, laser = 15, energy = 15, bomb = 15, bio = 15, rad = 15, fire = 70, acid = 70) + armor = list("melee" = 15, "bullet" = 15, "laser" = 15, "energy" = 15, "bomb" = 15, "bio" = 15, "rad" = 15, "fire" = 70, "acid" = 70) actions_types = list(/datum/action/item_action/hands_free/activate) allowed = list( /obj/item/device/abductor, @@ -26,8 +26,8 @@ var/stealth_active = 0 var/combat_cooldown = 10 var/datum/icon_snapshot/disguise - var/stealth_armor = list(melee = 15, bullet = 15, laser = 15, energy = 15, bomb = 15, bio = 15, rad = 15, fire = 70, acid = 70) - var/combat_armor = list(melee = 50, bullet = 50, laser = 50, energy = 50, bomb = 50, bio = 50, rad = 50, fire = 90, acid = 90) + var/stealth_armor = list("melee" = 15, "bullet" = 15, "laser" = 15, "energy" = 15, "bomb" = 15, "bio" = 15, "rad" = 15, "fire" = 70, "acid" = 70) + var/combat_armor = list("melee" = 50, "bullet" = 50, "laser" = 50, "energy" = 50, "bomb" = 50, "bio" = 50, "rad" = 50, "fire" = 90, "acid" = 90) /obj/item/clothing/suit/armor/abductor/vest/proc/toggle_nodrop() flags_1 ^= NODROP_1 diff --git a/code/modules/antagonists/blob/blob/blobs/core.dm b/code/modules/antagonists/blob/blob/blobs/core.dm index 9412e8582f..1140f540c4 100644 --- a/code/modules/antagonists/blob/blob/blobs/core.dm +++ b/code/modules/antagonists/blob/blob/blobs/core.dm @@ -4,7 +4,7 @@ icon_state = "blank_blob" desc = "A huge, pulsating yellow mass." max_integrity = 400 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 75, acid = 90) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 75, "acid" = 90) explosion_block = 6 point_return = -1 health_regen = 0 //we regen in Life() instead of when pulsed diff --git a/code/modules/antagonists/blob/blob/blobs/node.dm b/code/modules/antagonists/blob/blob/blobs/node.dm index a6bcd359a8..7d38ccd17f 100644 --- a/code/modules/antagonists/blob/blob/blobs/node.dm +++ b/code/modules/antagonists/blob/blob/blobs/node.dm @@ -4,7 +4,7 @@ icon_state = "blank_blob" desc = "A large, pulsating yellow mass." max_integrity = 200 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 65, acid = 90) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 65, "acid" = 90) health_regen = 3 point_return = 25 diff --git a/code/modules/antagonists/blob/blob/blobs/shield.dm b/code/modules/antagonists/blob/blob/blobs/shield.dm index 551ec5d418..87dcd7bfdf 100644 --- a/code/modules/antagonists/blob/blob/blobs/shield.dm +++ b/code/modules/antagonists/blob/blob/blobs/shield.dm @@ -1,3 +1,4 @@ +<<<<<<< HEAD /obj/structure/blob/shield name = "strong blob" icon = 'icons/mob/blob.dmi' @@ -31,3 +32,38 @@ desc = initial(desc) atmosblock = TRUE air_update_turf(1) +======= +/obj/structure/blob/shield + name = "strong blob" + icon = 'icons/mob/blob.dmi' + icon_state = "blob_shield" + desc = "A solid wall of slightly twitching tendrils." + max_integrity = 150 + brute_resist = 0.25 + explosion_block = 3 + point_return = 4 + atmosblock = TRUE + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 90, "acid" = 90) + +/obj/structure/blob/shield/scannerreport() + if(atmosblock) + return "Will prevent the spread of atmospheric changes." + return "N/A" + +/obj/structure/blob/shield/core + point_return = 0 + +/obj/structure/blob/shield/update_icon() + ..() + if(obj_integrity <= 75) + icon_state = "blob_shield_damaged" + name = "weakened strong blob" + desc = "A wall of twitching tendrils." + atmosblock = FALSE + else + icon_state = initial(icon_state) + name = initial(name) + desc = initial(desc) + atmosblock = TRUE + air_update_turf(1) +>>>>>>> d282c60... Quote the armor lists (#35668) diff --git a/code/modules/antagonists/blob/blob/theblob.dm b/code/modules/antagonists/blob/blob/theblob.dm index c110ef272c..80d24bb080 100644 --- a/code/modules/antagonists/blob/blob/theblob.dm +++ b/code/modules/antagonists/blob/blob/theblob.dm @@ -11,7 +11,7 @@ CanAtmosPass = ATMOS_PASS_PROC var/point_return = 0 //How many points the blob gets back when it removes a blob of that type. If less than 0, blob cannot be removed. max_integrity = 30 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 80, acid = 70) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 80, "acid" = 70) var/health_regen = 2 //how much health this blob regens when pulsed var/pulse_timestamp = 0 //we got pulsed when? var/heal_timestamp = 0 //we got healed when? diff --git a/code/modules/antagonists/changeling/powers/mutations.dm b/code/modules/antagonists/changeling/powers/mutations.dm index 118c692bc0..dce13f0aaa 100644 --- a/code/modules/antagonists/changeling/powers/mutations.dm +++ b/code/modules/antagonists/changeling/powers/mutations.dm @@ -446,7 +446,7 @@ desc = "A huge, bulky mass of pressure and temperature-resistant organic tissue, evolved to facilitate space travel." flags_1 = STOPSPRESSUREDMAGE_1 | NODROP_1 | DROPDEL_1 //Not THICKMATERIAL_1 because it's organic tissue, so if somebody tries to inject something into it, it still ends up in your blood. (also balance but muh fluff) allowed = list(/obj/item/device/flashlight, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/oxygen) - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0, fire = 90, acid = 90) //No armor at all. + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 90, "acid" = 90) //No armor at all. /obj/item/clothing/suit/space/changeling/Initialize() . = ..() @@ -464,7 +464,7 @@ icon_state = "lingspacehelmet" desc = "A covering of pressure and temperature-resistant organic tissue with a glass-like chitin front." flags_1 = STOPSPRESSUREDMAGE_1 | NODROP_1 | DROPDEL_1 //Again, no THICKMATERIAL_1. - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0, fire = 90, acid = 90) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 90, "acid" = 90) flags_cover = HEADCOVERSEYES | HEADCOVERSMOUTH /***************************************\ @@ -490,7 +490,7 @@ icon_state = "lingarmor" flags_1 = NODROP_1 | DROPDEL_1 body_parts_covered = CHEST|GROIN|LEGS|FEET|ARMS|HANDS - armor = list(melee = 40, bullet = 40, laser = 40, energy = 20, bomb = 10, bio = 4, rad = 0, fire = 90, acid = 90) + armor = list("melee" = 40, "bullet" = 40, "laser" = 40, "energy" = 20, "bomb" = 10, "bio" = 4, "rad" = 0, "fire" = 90, "acid" = 90) flags_inv = HIDEJUMPSUIT cold_protection = 0 heat_protection = 0 @@ -505,5 +505,5 @@ desc = "A tough, hard covering of black chitin with transparent chitin in front." icon_state = "lingarmorhelmet" flags_1 = NODROP_1 | DROPDEL_1 - armor = list(melee = 40, bullet = 40, laser = 40, energy = 20, bomb = 10, bio = 4, rad = 0, fire = 90, acid = 90) + armor = list("melee" = 40, "bullet" = 40, "laser" = 40, "energy" = 20, "bomb" = 10, "bio" = 4, "rad" = 0, "fire" = 90, "acid" = 90) flags_inv = HIDEEARS|HIDEHAIR|HIDEEYES|HIDEFACIALHAIR|HIDEFACE diff --git a/code/modules/antagonists/clockcult/clock_items/clockwork_armor.dm b/code/modules/antagonists/clockcult/clock_items/clockwork_armor.dm index df83ff4890..95ae8ff65f 100644 --- a/code/modules/antagonists/clockcult/clock_items/clockwork_armor.dm +++ b/code/modules/antagonists/clockcult/clock_items/clockwork_armor.dm @@ -7,7 +7,7 @@ w_class = WEIGHT_CLASS_NORMAL resistance_flags = FIRE_PROOF | ACID_PROOF flags_inv = HIDEEARS|HIDEHAIR|HIDEFACE - armor = list(melee = 50, bullet = 70, laser = -25, energy = 0, bomb = 60, bio = 0, rad = 0, fire = 100, acid = 100) + armor = list("melee" = 50, "bullet" = 70, "laser" = -25, "energy" = 0, "bomb" = 60, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 100) /obj/item/clothing/head/helmet/clockwork/Initialize() . = ..() @@ -20,17 +20,17 @@ /obj/item/clothing/head/helmet/clockwork/ratvar_act() if(GLOB.ratvar_awakens) - armor = list(melee = 100, bullet = 100, laser = 100, energy = 100, bomb = 100, bio = 100, rad = 100, fire = 100, acid = 100) + armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100) flags_1 |= STOPSPRESSUREDMAGE_1 max_heat_protection_temperature = FIRE_IMMUNITY_SUIT_MAX_TEMP_PROTECT min_cold_protection_temperature = SPACE_HELM_MIN_TEMP_PROTECT else if(GLOB.ratvar_approaches) - armor = list(melee = 70, bullet = 80, laser = -15, energy = 25, bomb = 70, bio = 0, rad = 0, fire = 100, acid = 100) + armor = list("melee" = 70, "bullet" = 80, "laser" = -15, "energy" = 25, "bomb" = 70, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 100) flags_1 |= STOPSPRESSUREDMAGE_1 max_heat_protection_temperature = FIRE_IMMUNITY_SUIT_MAX_TEMP_PROTECT min_cold_protection_temperature = SPACE_HELM_MIN_TEMP_PROTECT else - armor = list(melee = 60, bullet = 70, laser = -25, energy = 0, bomb = 60, bio = 0, rad = 0, fire = 100, acid = 100) + armor = list("melee" = 60, "bullet" = 70, "laser" = -25, "energy" = 0, "bomb" = 60, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 100) flags_1 &= ~STOPSPRESSUREDMAGE_1 max_heat_protection_temperature = initial(max_heat_protection_temperature) min_cold_protection_temperature = initial(min_cold_protection_temperature) @@ -67,7 +67,7 @@ cold_protection = CHEST|GROIN|LEGS heat_protection = CHEST|GROIN|LEGS resistance_flags = FIRE_PROOF | ACID_PROOF - armor = list(melee = 60, bullet = 70, laser = -25, energy = 0, bomb = 60, bio = 0, rad = 0, fire = 100, acid = 100) + armor = list("melee" = 60, "bullet" = 70, "laser" = -25, "energy" = 0, "bomb" = 60, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 100) allowed = list(/obj/item/clockwork, /obj/item/clothing/glasses/wraith_spectacles, /obj/item/clothing/glasses/judicial_visor, /obj/item/device/mmi/posibrain/soul_vessel) /obj/item/clothing/suit/armor/clockwork/Initialize() @@ -81,17 +81,17 @@ /obj/item/clothing/suit/armor/clockwork/ratvar_act() if(GLOB.ratvar_awakens) - armor = list(melee = 100, bullet = 100, laser = 100, energy = 100, bomb = 100, bio = 100, rad = 100, fire = 100, acid = 100) + armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100) flags_1 |= STOPSPRESSUREDMAGE_1 max_heat_protection_temperature = FIRE_IMMUNITY_SUIT_MAX_TEMP_PROTECT min_cold_protection_temperature = SPACE_HELM_MIN_TEMP_PROTECT else if(GLOB.ratvar_approaches) - armor = list(melee = 70, bullet = 80, laser = -15, energy = 25, bomb = 70, bio = 0, rad = 0, fire = 100, acid = 100) + armor = list("melee" = 70, "bullet" = 80, "laser" = -15, "energy" = 25, "bomb" = 70, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 100) flags_1 |= STOPSPRESSUREDMAGE_1 max_heat_protection_temperature = FIRE_IMMUNITY_SUIT_MAX_TEMP_PROTECT min_cold_protection_temperature = SPACE_HELM_MIN_TEMP_PROTECT else - armor = list(melee = 60, bullet = 70, laser = -25, energy = 0, bomb = 60, bio = 0, rad = 0, fire = 100, acid = 100) + armor = list("melee" = 60, "bullet" = 70, "laser" = -25, "energy" = 0, "bomb" = 60, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 100) flags_1 &= ~STOPSPRESSUREDMAGE_1 max_heat_protection_temperature = initial(max_heat_protection_temperature) min_cold_protection_temperature = initial(min_cold_protection_temperature) @@ -134,7 +134,7 @@ siemens_coefficient = 0 permeability_coefficient = 0.05 resistance_flags = FIRE_PROOF | ACID_PROOF - armor = list(melee = 80, bullet = 70, laser = -25, energy = 0, bomb = 60, bio = 0, rad = 0, fire = 100, acid = 100) + armor = list("melee" = 80, "bullet" = 70, "laser" = -25, "energy" = 0, "bomb" = 60, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 100) /obj/item/clothing/gloves/clockwork/Initialize() . = ..() @@ -147,12 +147,12 @@ /obj/item/clothing/gloves/clockwork/ratvar_act() if(GLOB.ratvar_awakens) - armor = list(melee = 100, bullet = 100, laser = 100, energy = 100, bomb = 100, bio = 100, rad = 100, fire = 100, acid = 100) + armor = list("melee" = 100, "bullet" = 100, "laser" = 100, "energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100) flags_1 |= STOPSPRESSUREDMAGE_1 max_heat_protection_temperature = FIRE_IMMUNITY_SUIT_MAX_TEMP_PROTECT min_cold_protection_temperature = SPACE_HELM_MIN_TEMP_PROTECT else - armor = list(melee = 80, bullet = 70, laser = -25, energy = 0, bomb = 60, bio = 0, rad = 0, fire = 100, acid = 100) + armor = list("melee" = 80, "bullet" = 70, "laser" = -25, "energy" = 0, "bomb" = 60, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 100) flags_1 &= ~STOPSPRESSUREDMAGE_1 max_heat_protection_temperature = initial(max_heat_protection_temperature) min_cold_protection_temperature = initial(min_cold_protection_temperature) diff --git a/code/modules/antagonists/cult/cult_items.dm b/code/modules/antagonists/cult/cult_items.dm index 6d4a5fce18..459aaa9f2d 100644 --- a/code/modules/antagonists/cult/cult_items.dm +++ b/code/modules/antagonists/cult/cult_items.dm @@ -275,7 +275,7 @@ desc = "A torn, dust-caked hood. Strange letters line the inside." flags_inv = HIDEFACE|HIDEHAIR|HIDEEARS flags_cover = HEADCOVERSEYES - armor = list(melee = 40, bullet = 30, laser = 40,energy = 20, bomb = 25, bio = 10, rad = 0, fire = 10, acid = 10) + armor = list("melee" = 40, "bullet" = 30, "laser" = 40,"energy" = 20, "bomb" = 25, "bio" = 10, "rad" = 0, "fire" = 10, "acid" = 10) cold_protection = HEAD min_cold_protection_temperature = HELMET_MIN_TEMP_PROTECT heat_protection = HEAD @@ -288,7 +288,7 @@ item_state = "cultrobes" body_parts_covered = CHEST|GROIN|LEGS|ARMS allowed = list(/obj/item/tome, /obj/item/melee/cultblade) - armor = list(melee = 40, bullet = 30, laser = 40,energy = 20, bomb = 25, bio = 10, rad = 0, fire = 10, acid = 10) + armor = list("melee" = 40, "bullet" = 30, "laser" = 40,"energy" = 20, "bomb" = 25, "bio" = 10, "rad" = 0, "fire" = 10, "acid" = 10) flags_inv = HIDEJUMPSUIT cold_protection = CHEST|GROIN|LEGS|ARMS min_cold_protection_temperature = ARMOR_MIN_TEMP_PROTECT @@ -321,7 +321,7 @@ item_state = "magus" desc = "A helm worn by the followers of Nar-Sie." flags_inv = HIDEFACE|HIDEHAIR|HIDEFACIALHAIR|HIDEEARS|HIDEEYES - armor = list(melee = 30, bullet = 30, laser = 30,energy = 20, bomb = 0, bio = 0, rad = 0, fire = 10, acid = 10) + armor = list("melee" = 30, "bullet" = 30, "laser" = 30,"energy" = 20, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 10, "acid" = 10) flags_cover = HEADCOVERSEYES | HEADCOVERSMOUTH /obj/item/clothing/suit/magusred @@ -331,7 +331,7 @@ item_state = "magusred" body_parts_covered = CHEST|GROIN|LEGS|ARMS allowed = list(/obj/item/tome, /obj/item/melee/cultblade) - armor = list(melee = 50, bullet = 30, laser = 50,energy = 20, bomb = 25, bio = 10, rad = 0, fire = 10, acid = 10) + armor = list("melee" = 50, "bullet" = 30, "laser" = 50,"energy" = 20, "bomb" = 25, "bio" = 10, "rad" = 0, "fire" = 10, "acid" = 10) flags_inv = HIDEGLOVES|HIDESHOES|HIDEJUMPSUIT /obj/item/clothing/head/helmet/space/hardsuit/cult @@ -339,7 +339,7 @@ desc = "A heavily-armored helmet worn by warriors of the Nar-Sien cult. It can withstand hard vacuum." icon_state = "cult_helmet" item_state = "cult_helmet" - armor = list(melee = 60, bullet = 50, laser = 30,energy = 15, bomb = 30, bio = 30, rad = 30, fire = 40, acid = 75) + armor = list("melee" = 60, "bullet" = 50, "laser" = 30,"energy" = 15, "bomb" = 30, "bio" = 30, "rad" = 30, "fire" = 40, "acid" = 75) brightness_on = 0 actions_types = list() @@ -350,7 +350,7 @@ desc = "A heavily-armored exosuit worn by warriors of the Nar-Sien cult. It can withstand hard vacuum." w_class = WEIGHT_CLASS_BULKY allowed = list(/obj/item/tome, /obj/item/melee/cultblade, /obj/item/tank/internals/) - armor = list(melee = 70, bullet = 50, laser = 30,energy = 15, bomb = 30, bio = 30, rad = 30, fire = 40, acid = 75) + armor = list("melee" = 70, "bullet" = 50, "laser" = 30,"energy" = 15, "bomb" = 30, "bio" = 30, "rad" = 30, "fire" = 40, "acid" = 75) helmettype = /obj/item/clothing/head/helmet/space/hardsuit/cult /obj/item/sharpener/cult @@ -374,7 +374,7 @@ icon_state = "cult_armor" item_state = "cult_armor" w_class = WEIGHT_CLASS_BULKY - armor = list(melee = 50, bullet = 40, laser = 50,energy = 30, bomb = 50, bio = 30, rad = 30, fire = 50, acid = 60) + armor = list("melee" = 50, "bullet" = 40, "laser" = 50,"energy" = 30, "bomb" = 50, "bio" = 30, "rad" = 30, "fire" = 50, "acid" = 60) body_parts_covered = CHEST|GROIN|LEGS|ARMS allowed = list(/obj/item/tome, /obj/item/melee/cultblade) var/current_charges = 3 @@ -384,7 +384,7 @@ name = "empowered cultist armor" desc = "Empowered garb which creates a powerful shield around the user." icon_state = "cult_hoodalt" - armor = list(melee = 50, bullet = 40, laser = 50,energy = 30, bomb = 50, bio = 30, rad = 30, fire = 50, acid = 50) + armor = list("melee" = 50, "bullet" = 40, "laser" = 50,"energy" = 30, "bomb" = 50, "bio" = 30, "rad" = 30, "fire" = 50, "acid" = 50) body_parts_covered = HEAD flags_inv = HIDEHAIR|HIDEFACE|HIDEEARS @@ -428,7 +428,7 @@ flags_inv = HIDEJUMPSUIT allowed = list(/obj/item/tome, /obj/item/melee/cultblade) body_parts_covered = CHEST|GROIN|LEGS|ARMS - armor = list(melee = -50, bullet = -50, laser = -50,energy = -50, bomb = -50, bio = -50, rad = -50, fire = 0, acid = 0) + armor = list("melee" = -50, "bullet" = -50, "laser" = -50,"energy" = -50, "bomb" = -50, "bio" = -50, "rad" = -50, "fire" = 0, "acid" = 0) slowdown = -1 hoodtype = /obj/item/clothing/head/hooded/berserkerhood @@ -438,7 +438,7 @@ icon_state = "culthood" body_parts_covered = HEAD flags_inv = HIDEHAIR|HIDEFACE|HIDEEARS - armor = list(melee = -50, bullet = -50, laser = -50, energy = -50, bomb = -50, bio = -50, rad = -50, fire = 0, acid = 0) + armor = list("melee" = -50, "bullet" = -50, "laser" = -50, "energy" = -50, "bomb" = -50, "bio" = -50, "rad" = -50, "fire" = 0, "acid" = 0) /obj/item/clothing/suit/hooded/cultrobes/berserker/equipped(mob/living/user, slot) ..() diff --git a/code/modules/antagonists/nukeop/equipment/nuclearbomb.dm b/code/modules/antagonists/nukeop/equipment/nuclearbomb.dm index 910caa7fca..e540525405 100644 --- a/code/modules/antagonists/nukeop/equipment/nuclearbomb.dm +++ b/code/modules/antagonists/nukeop/equipment/nuclearbomb.dm @@ -513,7 +513,7 @@ This is here to make the tiles around the station mininuke change when it's arme icon_state = "nucleardisk" persistence_replacement = /obj/item/disk/nuclear/fake max_integrity = 250 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 30, bio = 0, rad = 0, fire = 100, acid = 100) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 30, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 100) resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | ACID_PROOF var/fake = FALSE diff --git a/code/modules/assembly/flash.dm b/code/modules/assembly/flash.dm index b20a395e6d..9f5b21962a 100644 --- a/code/modules/assembly/flash.dm +++ b/code/modules/assembly/flash.dm @@ -245,7 +245,7 @@ materials = list(MAT_GLASS=7500, MAT_METAL=1000) attack_verb = list("shoved", "bashed") block_chance = 50 - armor = list(melee = 50, bullet = 50, laser = 50, energy = 0, bomb = 30, bio = 0, rad = 0, fire = 80, acid = 70) + armor = list("melee" = 50, "bullet" = 50, "laser" = 50, "energy" = 0, "bomb" = 30, "bio" = 0, "rad" = 0, "fire" = 80, "acid" = 70) /obj/item/device/assembly/flash/shield/flash_recharge(interval=10) if(times_used >= 4) diff --git a/code/modules/atmospherics/machinery/airalarm.dm b/code/modules/atmospherics/machinery/airalarm.dm index bb8f89812a..f757dbb7b3 100644 --- a/code/modules/atmospherics/machinery/airalarm.dm +++ b/code/modules/atmospherics/machinery/airalarm.dm @@ -69,7 +69,7 @@ req_access = list(ACCESS_ATMOSPHERICS) max_integrity = 250 integrity_failure = 80 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 100, bomb = 0, bio = 100, rad = 100, fire = 90, acid = 30) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 100, "bomb" = 0, "bio" = 100, "rad" = 100, "fire" = 90, "acid" = 30) resistance_flags = FIRE_PROOF var/danger_level = 0 diff --git a/code/modules/atmospherics/machinery/atmosmachinery.dm b/code/modules/atmospherics/machinery/atmosmachinery.dm index 0f57bd85e9..03f487a2f7 100644 --- a/code/modules/atmospherics/machinery/atmosmachinery.dm +++ b/code/modules/atmospherics/machinery/atmosmachinery.dm @@ -53,7 +53,7 @@ Pipelines + Other Objects -> Pipe network normalize_cardinal_directions() nodes = new(device_type) if (!armor) - armor = list(melee = 25, bullet = 10, laser = 10, energy = 100, bomb = 0, bio = 100, rad = 100, fire = 100, acid = 70) + armor = list("melee" = 25, "bullet" = 10, "laser" = 10, "energy" = 100, "bomb" = 0, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 70) ..() if(process) SSair.atmos_machinery += src diff --git a/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm b/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm index df76a47b82..e0f89a374e 100644 --- a/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm +++ b/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm @@ -7,7 +7,7 @@ density = TRUE anchored = TRUE max_integrity = 350 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 100, bomb = 0, bio = 100, rad = 100, fire = 30, acid = 30) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 100, "bomb" = 0, "bio" = 100, "rad" = 100, "fire" = 30, "acid" = 30) layer = ABOVE_WINDOW_LAYER state_open = FALSE circuit = /obj/item/circuitboard/machine/cryo_tube diff --git a/code/modules/atmospherics/machinery/components/unary_devices/thermomachine.dm b/code/modules/atmospherics/machinery/components/unary_devices/thermomachine.dm index f52483f1ae..ce532f9ed8 100644 --- a/code/modules/atmospherics/machinery/components/unary_devices/thermomachine.dm +++ b/code/modules/atmospherics/machinery/components/unary_devices/thermomachine.dm @@ -8,7 +8,7 @@ density = TRUE anchored = TRUE max_integrity = 300 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 100, bomb = 0, bio = 100, rad = 100, fire = 80, acid = 30) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 100, "bomb" = 0, "bio" = 100, "rad" = 100, "fire" = 80, "acid" = 30) layer = OBJ_LAYER circuit = /obj/item/circuitboard/machine/thermomachine pipe_flags = PIPING_ONE_PER_TURF | PIPING_DEFAULT_LAYER_ONLY diff --git a/code/modules/atmospherics/machinery/other/meter.dm b/code/modules/atmospherics/machinery/other/meter.dm index 6582dad6df..fd3b82dfa5 100644 --- a/code/modules/atmospherics/machinery/other/meter.dm +++ b/code/modules/atmospherics/machinery/other/meter.dm @@ -12,7 +12,7 @@ idle_power_usage = 2 active_power_usage = 4 max_integrity = 150 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 100, bomb = 0, bio = 100, rad = 100, fire = 40, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 100, "bomb" = 0, "bio" = 100, "rad" = 100, "fire" = 40, "acid" = 0) var/target_layer = PIPING_LAYER_DEFAULT /obj/machinery/meter/Destroy() diff --git a/code/modules/atmospherics/machinery/portable/canister.dm b/code/modules/atmospherics/machinery/portable/canister.dm index 13649a742a..56fe498603 100644 --- a/code/modules/atmospherics/machinery/portable/canister.dm +++ b/code/modules/atmospherics/machinery/portable/canister.dm @@ -17,7 +17,7 @@ var/can_max_release_pressure = (ONE_ATMOSPHERE * 10) var/can_min_release_pressure = (ONE_ATMOSPHERE / 10) - armor = list(melee = 50, bullet = 50, laser = 50, energy = 100, bomb = 10, bio = 100, rad = 100, fire = 80, acid = 50) + armor = list("melee" = 50, "bullet" = 50, "laser" = 50, "energy" = 100, "bomb" = 10, "bio" = 100, "rad" = 100, "fire" = 80, "acid" = 50) max_integrity = 250 integrity_failure = 100 pressure_resistance = 7 * ONE_ATMOSPHERE diff --git a/code/modules/atmospherics/machinery/portable/portable_atmospherics.dm b/code/modules/atmospherics/machinery/portable/portable_atmospherics.dm index f21e005b9a..a584c2ceef 100644 --- a/code/modules/atmospherics/machinery/portable/portable_atmospherics.dm +++ b/code/modules/atmospherics/machinery/portable/portable_atmospherics.dm @@ -3,7 +3,7 @@ icon = 'icons/obj/atmos.dmi' use_power = NO_POWER_USE max_integrity = 250 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 100, bomb = 0, bio = 100, rad = 100, fire = 60, acid = 30) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 100, "bomb" = 0, "bio" = 100, "rad" = 100, "fire" = 60, "acid" = 30) var/datum/gas_mixture/air_contents diff --git a/code/modules/awaymissions/mission_code/snowdin.dm b/code/modules/awaymissions/mission_code/snowdin.dm index 707f004eb1..21c19fab5e 100644 --- a/code/modules/awaymissions/mission_code/snowdin.dm +++ b/code/modules/awaymissions/mission_code/snowdin.dm @@ -559,7 +559,7 @@ /obj/item/clothing/under/syndicate/coldres name = "insulated tactical turtleneck" desc = "A non-descript and slightly suspicious-looking turtleneck with digital camouflage cargo pants. The interior has been padded with special insulation for both warmth and protection." - armor = list(melee = 20, bullet = 10, laser = 0,energy = 5, bomb = 0, bio = 0, rad = 0, fire = 25, acid = 25) + armor = list("melee" = 20, "bullet" = 10, "laser" = 0,"energy" = 5, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 25, "acid" = 25) cold_protection = CHEST|GROIN|ARMS|LEGS min_cold_protection_temperature = FIRE_SUIT_MIN_TEMP_PROTECT /obj/item/clothing/shoes/combat/coldres diff --git a/code/modules/clothing/chameleon.dm b/code/modules/clothing/chameleon.dm index 1fd046babb..609d341243 100644 --- a/code/modules/clothing/chameleon.dm +++ b/code/modules/clothing/chameleon.dm @@ -180,7 +180,7 @@ random_sensor = FALSE resistance_flags = NONE can_adjust = FALSE - armor = list(melee = 10, bullet = 10, laser = 10, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 50) + armor = list("melee" = 10, "bullet" = 10, "laser" = 10, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 50) var/datum/action/item_action/chameleon/change/chameleon_action @@ -213,7 +213,7 @@ item_state = "armor" blood_overlay_type = "armor" resistance_flags = NONE - armor = list(melee = 10, bullet = 10, laser = 10, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 50) + armor = list("melee" = 10, "bullet" = 10, "laser" = 10, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 50) var/datum/action/item_action/chameleon/change/chameleon_action @@ -238,7 +238,7 @@ icon_state = "meson" item_state = "meson" resistance_flags = NONE - armor = list(melee = 10, bullet = 10, laser = 10, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 50) + armor = list("melee" = 10, "bullet" = 10, "laser" = 10, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 50) var/datum/action/item_action/chameleon/change/chameleon_action @@ -264,7 +264,7 @@ item_state = "ygloves" resistance_flags = NONE - armor = list(melee = 10, bullet = 10, laser = 10, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 50) + armor = list("melee" = 10, "bullet" = 10, "laser" = 10, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 50) var/datum/action/item_action/chameleon/change/chameleon_action @@ -290,7 +290,7 @@ item_color = "grey" resistance_flags = NONE - armor = list(melee = 5, bullet = 5, laser = 5, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 50) + armor = list("melee" = 5, "bullet" = 5, "laser" = 5, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 50) var/datum/action/item_action/chameleon/change/chameleon_action @@ -313,7 +313,7 @@ // The camohat, I mean, holographic hat projection, is part of the // drone itself. flags_1 = NODROP_1 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) // which means it offers no protection, it's just air and light /obj/item/clothing/head/chameleon/drone/Initialize() @@ -330,7 +330,7 @@ icon_state = "gas_alt" item_state = "gas_alt" resistance_flags = NONE - armor = list(melee = 5, bullet = 5, laser = 5, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 50) + armor = list("melee" = 5, "bullet" = 5, "laser" = 5, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 50) flags_1 = BLOCK_GAS_SMOKE_EFFECT_1 | MASKINTERNALS_1 flags_inv = HIDEEARS|HIDEEYES|HIDEFACE|HIDEFACIALHAIR @@ -365,7 +365,7 @@ /obj/item/clothing/mask/chameleon/drone //Same as the drone chameleon hat, undroppable and no protection flags_1 = NODROP_1 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) // Can drones use the voice changer part? Let's not find out. vchange = 0 @@ -388,7 +388,7 @@ permeability_coefficient = 0.05 resistance_flags = NONE pockets = /obj/item/storage/internal/pocket/shoes - armor = list(melee = 10, bullet = 10, laser = 10, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 50) + armor = list("melee" = 10, "bullet" = 10, "laser" = 10, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 50) var/datum/action/item_action/chameleon/change/chameleon_action diff --git a/code/modules/clothing/glasses/_glasses.dm b/code/modules/clothing/glasses/_glasses.dm index a439511fe2..0cf375c8dd 100644 --- a/code/modules/clothing/glasses/_glasses.dm +++ b/code/modules/clothing/glasses/_glasses.dm @@ -97,7 +97,7 @@ actions_types = list(/datum/action/item_action/toggle_research_scanner) glass_colour_type = /datum/client_colour/glass_colour/purple resistance_flags = ACID_PROOF - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 80, acid = 100) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 80, "acid" = 100) /obj/item/clothing/glasses/science/item_action_slot_check(slot) if(slot == slot_glasses) diff --git a/code/modules/clothing/gloves/color.dm b/code/modules/clothing/gloves/color.dm index 171310add9..1a0404430e 100644 --- a/code/modules/clothing/gloves/color.dm +++ b/code/modules/clothing/gloves/color.dm @@ -154,7 +154,7 @@ heat_protection = HANDS max_heat_protection_temperature = GLOVES_MAX_TEMP_PROTECT strip_delay = 60 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 70, acid = 50) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 70, "acid" = 50) /obj/item/clothing/gloves/color/latex name = "latex gloves" diff --git a/code/modules/clothing/gloves/miscellaneous.dm b/code/modules/clothing/gloves/miscellaneous.dm index 97afd78c38..70274c45d7 100644 --- a/code/modules/clothing/gloves/miscellaneous.dm +++ b/code/modules/clothing/gloves/miscellaneous.dm @@ -22,7 +22,7 @@ heat_protection = HANDS max_heat_protection_temperature = GLOVES_MAX_TEMP_PROTECT resistance_flags = NONE - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 70, acid = 30) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 70, "acid" = 30) /obj/item/clothing/gloves/combat name = "combat gloves" @@ -37,7 +37,7 @@ heat_protection = HANDS max_heat_protection_temperature = GLOVES_MAX_TEMP_PROTECT resistance_flags = NONE - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 80, acid = 50) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 80, "acid" = 50) /obj/item/clothing/gloves/bracer @@ -54,4 +54,4 @@ min_cold_protection_temperature = GLOVES_MIN_TEMP_PROTECT max_heat_protection_temperature = GLOVES_MAX_TEMP_PROTECT resistance_flags = NONE - armor = list(melee = 15, bullet = 35, laser = 35, energy = 20, bomb = 35, bio = 35, rad = 35, fire = 0, acid = 0) + armor = list("melee" = 15, "bullet" = 35, "laser" = 35, "energy" = 20, "bomb" = 35, "bio" = 35, "rad" = 35, "fire" = 0, "acid" = 0) diff --git a/code/modules/clothing/head/hardhat.dm b/code/modules/clothing/head/hardhat.dm index 51a1131f1c..db3dda1dd2 100644 --- a/code/modules/clothing/head/hardhat.dm +++ b/code/modules/clothing/head/hardhat.dm @@ -6,7 +6,7 @@ var/brightness_on = 4 //luminosity when on var/on = FALSE item_color = "yellow" //Determines used sprites: hardhat[on]_[item_color] and hardhat[on]_[item_color]2 (lying down sprite) - armor = list(melee = 15, bullet = 5, laser = 20,energy = 10, bomb = 20, bio = 10, rad = 20, fire = 100, acid = 50) + armor = list("melee" = 15, "bullet" = 5, "laser" = 20,"energy" = 10, "bomb" = 20, "bio" = 10, "rad" = 20, "fire" = 100, "acid" = 50) flags_inv = 0 actions_types = list(/datum/action/item_action/toggle_helmet_light) resistance_flags = FIRE_PROOF diff --git a/code/modules/clothing/head/helmet.dm b/code/modules/clothing/head/helmet.dm index f6482063ea..b231ac9df6 100644 --- a/code/modules/clothing/head/helmet.dm +++ b/code/modules/clothing/head/helmet.dm @@ -3,7 +3,7 @@ desc = "Standard Security gear. Protects the head from impacts." icon_state = "helmet" item_state = "helmet" - armor = list(melee = 35, bullet = 30, laser = 30,energy = 10, bomb = 25, bio = 0, rad = 0, fire = 50, acid = 50) + armor = list("melee" = 35, "bullet" = 30, "laser" = 30,"energy" = 10, "bomb" = 25, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 50) flags_inv = HIDEEARS cold_protection = HEAD min_cold_protection_temperature = HELMET_MIN_TEMP_PROTECT @@ -41,7 +41,7 @@ desc = "A bulletproof combat helmet that excels in protecting the wearer against traditional projectile weaponry and explosives to a minor extent." icon_state = "helmetalt" item_state = "helmetalt" - armor = list(melee = 15, bullet = 60, laser = 10, energy = 10, bomb = 40, bio = 0, rad = 0, fire = 50, acid = 50) + armor = list("melee" = 15, "bullet" = 60, "laser" = 10, "energy" = 10, "bomb" = 40, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 50) can_flashlight = 1 dog_fashion = null @@ -62,7 +62,7 @@ toggle_message = "You pull the visor down on" alt_toggle_message = "You push the visor up on" can_toggle = 1 - armor = list(melee = 45, bullet = 15, laser = 5,energy = 5, bomb = 5, bio = 2, rad = 0, fire = 50, acid = 50) + armor = list("melee" = 45, "bullet" = 15, "laser" = 5,"energy" = 5, "bomb" = 5, "bio" = 2, "rad" = 0, "fire" = 50, "acid" = 50) flags_inv = HIDEEARS|HIDEFACE strip_delay = 80 actions_types = list(/datum/action/item_action/toggle) @@ -117,7 +117,7 @@ desc = "An extremely robust, space-worthy helmet in a nefarious red and black stripe pattern." icon_state = "swatsyndie" item_state = "swatsyndie" - armor = list(melee = 40, bullet = 30, laser = 30,energy = 30, bomb = 50, bio = 90, rad = 20, fire = 50, acid = 50) + armor = list("melee" = 40, "bullet" = 30, "laser" = 30,"energy" = 30, "bomb" = 50, "bio" = 90, "rad" = 20, "fire" = 50, "acid" = 50) cold_protection = HEAD min_cold_protection_temperature = SPACE_HELM_MIN_TEMP_PROTECT heat_protection = HEAD @@ -138,7 +138,7 @@ flags_inv = HIDEEARS|HIDEHAIR icon_state = "thunderdome" item_state = "thunderdome" - armor = list(melee = 40, bullet = 30, laser = 25,energy = 10, bomb = 25, bio = 10, rad = 0, fire = 50, acid = 50) + armor = list("melee" = 40, "bullet" = 30, "laser" = 25,"energy" = 10, "bomb" = 25, "bio" = 10, "rad" = 0, "fire" = 50, "acid" = 50) cold_protection = HEAD min_cold_protection_temperature = SPACE_HELM_MIN_TEMP_PROTECT heat_protection = HEAD @@ -151,7 +151,7 @@ desc = "An ancient helmet made of bronze and leather." flags_inv = HIDEEARS|HIDEHAIR flags_cover = HEADCOVERSEYES - armor = list(melee = 25, bullet = 0, laser = 25, energy = 10, bomb = 10, bio = 0, rad = 0, fire = 100, acid = 50) + armor = list("melee" = 25, "bullet" = 0, "laser" = 25, "energy" = 10, "bomb" = 10, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 50) resistance_flags = FIRE_PROOF icon_state = "roman" item_state = "roman" @@ -179,7 +179,7 @@ icon_state = "redtaghelm" flags_cover = HEADCOVERSEYES item_state = "redtaghelm" - armor = list(melee = 15, bullet = 10, laser = 20,energy = 10, bomb = 20, bio = 0, rad = 0, fire = 0, acid = 50) + armor = list("melee" = 15, "bullet" = 10, "laser" = 20,"energy" = 10, "bomb" = 20, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 50) // Offer about the same protection as a hardhat. dog_fashion = null @@ -189,7 +189,7 @@ icon_state = "bluetaghelm" flags_cover = HEADCOVERSEYES item_state = "bluetaghelm" - armor = list(melee = 15, bullet = 10, laser = 20,energy = 10, bomb = 20, bio = 0, rad = 0, fire = 0, acid = 50) + armor = list("melee" = 15, "bullet" = 10, "laser" = 20,"energy" = 10, "bomb" = 20, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 50) // Offer about the same protection as a hardhat. dog_fashion = null @@ -198,7 +198,7 @@ desc = "A classic metal helmet." icon_state = "knight_green" item_state = "knight_green" - armor = list(melee = 41, bullet = 15, laser = 5,energy = 5, bomb = 5, bio = 2, rad = 0, fire = 0, acid = 50) + armor = list("melee" = 41, "bullet" = 15, "laser" = 5,"energy" = 5, "bomb" = 5, "bio" = 2, "rad" = 0, "fire" = 0, "acid" = 50) flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|HIDEHAIR flags_cover = HEADCOVERSEYES | HEADCOVERSMOUTH strip_delay = 80 @@ -232,7 +232,7 @@ desc = "An intimidating tribal helmet, it doesn't look very comfortable." flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE flags_cover = HEADCOVERSEYES - armor = list(melee = 25, bullet = 25, laser = 25, energy = 10, bomb = 10, bio = 5, rad = 20, fire = 40, acid = 20) + armor = list("melee" = 25, "bullet" = 25, "laser" = 25, "energy" = 10, "bomb" = 10, "bio" = 5, "rad" = 20, "fire" = 40, "acid" = 20) icon_state = "skull" item_state = "skull" strip_delay = 100 diff --git a/code/modules/clothing/head/jobs.dm b/code/modules/clothing/head/jobs.dm index 0a1adb1dca..37e392b7d8 100644 --- a/code/modules/clothing/head/jobs.dm +++ b/code/modules/clothing/head/jobs.dm @@ -26,7 +26,7 @@ icon_state = "captain" item_state = "that" flags_inv = 0 - armor = list(melee = 25, bullet = 15, laser = 25, energy = 10, bomb = 25, bio = 0, rad = 0, fire = 50, acid = 50) + armor = list("melee" = 25, "bullet" = 15, "laser" = 25, "energy" = 10, "bomb" = 25, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 50) strip_delay = 60 dog_fashion = /datum/dog_fashion/head/captain @@ -44,7 +44,7 @@ name = "head of personnel's cap" icon_state = "hopcap" desc = "The symbol of true bureaucratic micromanagement." - armor = list(melee = 25, bullet = 15, laser = 25, energy = 10, bomb = 25, bio = 0, rad = 0, fire = 50, acid = 50) + armor = list("melee" = 25, "bullet" = 15, "laser" = 25, "energy" = 10, "bomb" = 25, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 50) dog_fashion = /datum/dog_fashion/head/hop //Chaplain @@ -123,7 +123,7 @@ name = "head of security cap" desc = "The robust standard-issue cap of the Head of Security. For showing the officers who's in charge." icon_state = "hoscap" - armor = list(melee = 40, bullet = 30, laser = 25, energy = 10, bomb = 25, bio = 10, rad = 0, fire = 50, acid = 60) + armor = list("melee" = 40, "bullet" = 30, "laser" = 25, "energy" = 10, "bomb" = 25, "bio" = 10, "rad" = 0, "fire" = 50, "acid" = 60) strip_delay = 80 dynamic_hair_suffix = "" @@ -144,7 +144,7 @@ name = "warden's police hat" desc = "It's a special armored hat issued to the Warden of a security force. Protects the head from impacts." icon_state = "policehelm" - armor = list(melee = 40, bullet = 30, laser = 30, energy = 10, bomb = 25, bio = 0, rad = 0, fire = 30, acid = 60) + armor = list("melee" = 40, "bullet" = 30, "laser" = 30, "energy" = 10, "bomb" = 25, "bio" = 0, "rad" = 0, "fire" = 30, "acid" = 60) strip_delay = 60 dog_fashion = /datum/dog_fashion/head/warden @@ -152,7 +152,7 @@ name = "security beret" desc = "A robust beret with the security insignia emblazoned on it. Uses reinforced fabric to offer sufficent protection." icon_state = "beret_badge" - armor = list(melee = 40, bullet = 30, laser = 30,energy = 10, bomb = 25, bio = 0, rad = 0, fire = 20, acid = 50) + armor = list("melee" = 40, "bullet" = 30, "laser" = 30,"energy" = 10, "bomb" = 25, "bio" = 0, "rad" = 0, "fire" = 20, "acid" = 50) strip_delay = 60 dog_fashion = null @@ -165,7 +165,7 @@ name = "warden's beret" desc = "A special beret with the Warden's insignia emblazoned on it. For wardens with class." icon_state = "wardenberet" - armor = list(melee = 40, bullet = 30, laser = 30, energy = 10, bomb = 25, bio = 0, rad = 0, fire = 30, acid = 50) + armor = list("melee" = 40, "bullet" = 30, "laser" = 30, "energy" = 10, "bomb" = 25, "bio" = 0, "rad" = 0, "fire" = 30, "acid" = 50) strip_delay = 60 /obj/item/clothing/head/beret/sec/navyofficer diff --git a/code/modules/clothing/head/misc.dm b/code/modules/clothing/head/misc.dm index 544d9e7b12..0e4acfe983 100644 --- a/code/modules/clothing/head/misc.dm +++ b/code/modules/clothing/head/misc.dm @@ -6,7 +6,7 @@ desc = "It's good to be emperor." item_state = "that" flags_inv = 0 - armor = list(melee = 30, bullet = 15, laser = 30, energy = 10, bomb = 25, bio = 0, rad = 0, fire = 50, acid = 50) + armor = list("melee" = 30, "bullet" = 15, "laser" = 30, "energy" = 10, "bomb" = 25, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 50) strip_delay = 80 /obj/item/clothing/head/powdered_wig @@ -185,7 +185,7 @@ name = "fedora" icon_state = "fedora" item_state = "fedora" - armor = list(melee = 25, bullet = 5, laser = 25, energy = 10, bomb = 0, bio = 0, rad = 0, fire = 30, acid = 50) + armor = list("melee" = 25, "bullet" = 5, "laser" = 25, "energy" = 10, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 30, "acid" = 50) desc = "A really cool hat if you're a mobster. A really lame hat if you're not." pockets = /obj/item/storage/internal/pocket/small @@ -279,7 +279,7 @@ name = "crown" desc = "A crown fit for a king, a petty king maybe." icon_state = "crown" - armor = list(melee = 15, bullet = 0, laser = 0,energy = 15, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 50) + armor = list("melee" = 15, "bullet" = 0, "laser" = 0,"energy" = 15, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 50) resistance_flags = FIRE_PROOF dynamic_hair_suffix = "" diff --git a/code/modules/clothing/head/misc_special.dm b/code/modules/clothing/head/misc_special.dm index 43ea1928fc..fe238f3ab7 100644 --- a/code/modules/clothing/head/misc_special.dm +++ b/code/modules/clothing/head/misc_special.dm @@ -20,7 +20,7 @@ materials = list(MAT_METAL=1750, MAT_GLASS=400) flash_protect = 2 tint = 2 - armor = list(melee = 10, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 60) + armor = list("melee" = 10, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 60) flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE actions_types = list(/datum/action/item_action/toggle) visor_flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE @@ -42,7 +42,7 @@ item_color = "cakehat" hitsound = 'sound/weapons/tap.ogg' flags_inv = HIDEEARS|HIDEHAIR - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) brightness_on = 2 //luminosity when on flags_cover = HEADCOVERSEYES heat = 1000 @@ -112,7 +112,7 @@ item_state = "hardhat0_pumpkin" item_color = "pumpkin" flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|HIDEHAIR|HIDEFACIALHAIR - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) brightness_on = 2 //luminosity when on flags_cover = HEADCOVERSEYES @@ -149,7 +149,7 @@ item_state = "hardhat0_reindeer" item_color = "reindeer" flags_inv = 0 - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) brightness_on = 1 //luminosity when on dynamic_hair_suffix = "" diff --git a/code/modules/clothing/head/soft_caps.dm b/code/modules/clothing/head/soft_caps.dm index 6c5f0cb529..5c7514541d 100644 --- a/code/modules/clothing/head/soft_caps.dm +++ b/code/modules/clothing/head/soft_caps.dm @@ -119,7 +119,7 @@ desc = "It's a robust baseball hat in tasteful red colour." icon_state = "secsoft" item_color = "sec" - armor = list(melee = 30, bullet = 25, laser = 25, energy = 10, bomb = 25, bio = 0, rad = 0, fire = 20, acid = 50) + armor = list("melee" = 30, "bullet" = 25, "laser" = 25, "energy" = 10, "bomb" = 25, "bio" = 0, "rad" = 0, "fire" = 20, "acid" = 50) strip_delay = 60 dog_fashion = null diff --git a/code/modules/clothing/masks/gasmask.dm b/code/modules/clothing/masks/gasmask.dm index e7894a586c..694c290f4b 100644 --- a/code/modules/clothing/masks/gasmask.dm +++ b/code/modules/clothing/masks/gasmask.dm @@ -20,7 +20,7 @@ materials = list(MAT_METAL=4000, MAT_GLASS=2000) flash_protect = 2 tint = 2 - armor = list(melee = 10, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 55) + armor = list("melee" = 10, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 55) actions_types = list(/datum/action/item_action/toggle) flags_inv = HIDEEARS|HIDEEYES|HIDEFACE flags_cover = MASKCOVERSEYES @@ -40,7 +40,7 @@ desc = "A modernised version of the classic design, this mask will not only filter out toxins but it can also be connected to an air supply." icon_state = "plaguedoctor" item_state = "gas_mask" - armor = list(melee = 0, bullet = 0, laser = 2,energy = 2, bomb = 0, bio = 75, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 2,"energy" = 2, "bomb" = 0, "bio" = 75, "rad" = 0, "fire" = 0, "acid" = 0) /obj/item/clothing/mask/gas/syndicate name = "syndicate mask" diff --git a/code/modules/clothing/masks/miscellaneous.dm b/code/modules/clothing/masks/miscellaneous.dm index 446a15c547..c0200d889c 100644 --- a/code/modules/clothing/masks/miscellaneous.dm +++ b/code/modules/clothing/masks/miscellaneous.dm @@ -28,7 +28,7 @@ visor_flags_cover = MASKCOVERSMOUTH gas_transfer_coefficient = 0.9 permeability_coefficient = 0.01 - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 25, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 25, "rad" = 0, "fire" = 0, "acid" = 0) actions_types = list(/datum/action/item_action/adjust) /obj/item/clothing/mask/surgical/attack_self(mob/user) diff --git a/code/modules/clothing/shoes/miscellaneous.dm b/code/modules/clothing/shoes/miscellaneous.dm index b33ac3e688..f4c37b281d 100644 --- a/code/modules/clothing/shoes/miscellaneous.dm +++ b/code/modules/clothing/shoes/miscellaneous.dm @@ -13,7 +13,7 @@ item_state = "jackboots" lefthand_file = 'icons/mob/inhands/equipment/security_lefthand.dmi' righthand_file = 'icons/mob/inhands/equipment/security_righthand.dmi' - armor = list(melee = 25, bullet = 25, laser = 25, energy = 25, bomb = 50, bio = 10, rad = 0, fire = 70, acid = 50) + armor = list("melee" = 25, "bullet" = 25, "laser" = 25, "energy" = 25, "bomb" = 50, "bio" = 10, "rad" = 0, "fire" = 70, "acid" = 50) strip_delay = 70 resistance_flags = NONE permeability_coefficient = 0.05 //Thick soles, and covers the ankle @@ -24,7 +24,7 @@ desc = "High speed, no drag combat boots." permeability_coefficient = 0.01 flags_1 = NOSLIP_1 - armor = list(melee = 40, bullet = 30, laser = 25, energy = 25, bomb = 50, bio = 30, rad = 30, fire = 90, acid = 50) + armor = list("melee" = 40, "bullet" = 30, "laser" = 25, "energy" = 25, "bomb" = 50, "bio" = 30, "rad" = 30, "fire" = 90, "acid" = 50) /obj/item/clothing/shoes/sandal desc = "A pair of rather plain, wooden sandals." @@ -55,7 +55,7 @@ strip_delay = 50 equip_delay_other = 50 resistance_flags = NONE - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 40, acid = 75) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 40, "acid" = 75) /obj/item/clothing/shoes/galoshes/dry name = "absorbent galoshes" diff --git a/code/modules/clothing/spacesuits/_spacesuits.dm b/code/modules/clothing/spacesuits/_spacesuits.dm index f9a53a1551..a2cd5bce75 100644 --- a/code/modules/clothing/spacesuits/_spacesuits.dm +++ b/code/modules/clothing/spacesuits/_spacesuits.dm @@ -7,7 +7,7 @@ flags_1 = STOPSPRESSUREDMAGE_1 | THICKMATERIAL_1 item_state = "spaceold" permeability_coefficient = 0.01 - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 100, rad = 50, fire = 80, acid = 70) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 100, "rad" = 50, "fire" = 80, "acid" = 70) flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|HIDEHAIR|HIDEFACIALHAIR dynamic_hair_suffix = "" dynamic_fhair_suffix = "" @@ -34,7 +34,7 @@ body_parts_covered = CHEST|GROIN|LEGS|FEET|ARMS|HANDS allowed = list(/obj/item/device/flashlight, /obj/item/tank/internals) slowdown = 1 - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 100, rad = 50, fire = 80, acid = 70) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 100, "rad" = 50, "fire" = 80, "acid" = 70) flags_inv = HIDEGLOVES|HIDESHOES|HIDEJUMPSUIT cold_protection = CHEST | GROIN | LEGS | FEET | ARMS | HANDS min_cold_protection_temperature = SPACE_SUIT_MIN_TEMP_PROTECT diff --git a/code/modules/clothing/spacesuits/chronosuit.dm b/code/modules/clothing/spacesuits/chronosuit.dm index 1d126d43b2..94553b3964 100644 --- a/code/modules/clothing/spacesuits/chronosuit.dm +++ b/code/modules/clothing/spacesuits/chronosuit.dm @@ -4,7 +4,7 @@ icon_state = "chronohelmet" item_state = "chronohelmet" slowdown = 1 - armor = list(melee = 60, bullet = 60, laser = 60, energy = 60, bomb = 30, bio = 90, rad = 90, fire = 100, acid = 100) + armor = list("melee" = 60, "bullet" = 60, "laser" = 60, "energy" = 60, "bomb" = 30, "bio" = 90, "rad" = 90, "fire" = 100, "acid" = 100) resistance_flags = FIRE_PROOF | ACID_PROOF var/obj/item/clothing/suit/space/chronos/suit = null @@ -24,7 +24,7 @@ icon_state = "chronosuit" item_state = "chronosuit" actions_types = list(/datum/action/item_action/toggle) - armor = list(melee = 60, bullet = 60, laser = 60, energy = 60, bomb = 30, bio = 90, rad = 90, fire = 100, acid = 1000) + armor = list("melee" = 60, "bullet" = 60, "laser" = 60, "energy" = 60, "bomb" = 30, "bio" = 90, "rad" = 90, "fire" = 100, "acid" = 1000) resistance_flags = FIRE_PROOF | ACID_PROOF var/list/chronosafe_items = list(/obj/item/chrono_eraser, /obj/item/gun/energy/chrono_gun) var/list/hands_nodrop = list() diff --git a/code/modules/clothing/spacesuits/flightsuit.dm b/code/modules/clothing/spacesuits/flightsuit.dm index f515dacc74..fa992d8c40 100644 --- a/code/modules/clothing/spacesuits/flightsuit.dm +++ b/code/modules/clothing/spacesuits/flightsuit.dm @@ -19,7 +19,7 @@ icon_state = FLIGHTPACK_SPRITE_BASE item_state = FLIGHTPACK_SPRITE_BASE actions_types = list(/datum/action/item_action/flightpack/toggle_flight, /datum/action/item_action/flightpack/engage_boosters, /datum/action/item_action/flightpack/toggle_stabilizers, /datum/action/item_action/flightpack/change_power, /datum/action/item_action/flightpack/toggle_airbrake) - armor = list(melee = 20, bullet = 20, laser = 20, energy = 10, bomb = 30, bio = 100, rad = 75, fire = 100, acid = 75) + armor = list("melee" = 20, "bullet" = 20, "laser" = 20, "energy" = 10, "bomb" = 30, "bio" = 100, "rad" = 75, "fire" = 100, "acid" = 75) w_class = WEIGHT_CLASS_BULKY slot_flags = SLOT_BACK resistance_flags = FIRE_PROOF @@ -758,7 +758,7 @@ helmettype = /obj/item/clothing/head/helmet/space/hardsuit/flightsuit jetpack = null actions_types = list(/datum/action/item_action/flightsuit/toggle_helmet, /datum/action/item_action/flightsuit/toggle_boots, /datum/action/item_action/flightsuit/toggle_flightpack, /datum/action/item_action/flightsuit/lock_suit) - armor = list(melee = 20, bullet = 20, laser = 20, energy = 10, bomb = 30, bio = 100, rad = 75, fire = 100, acid = 100) + armor = list("melee" = 20, "bullet" = 20, "laser" = 20, "energy" = 10, "bomb" = 30, "bio" = 100, "rad" = 75, "fire" = 100, "acid" = 100) max_heat_protection_temperature = FIRE_SUIT_MAX_TEMP_PROTECT var/locked_strip_delay = 80 var/obj/item/device/flightpack/pack = null @@ -1078,7 +1078,7 @@ resistance_flags = FIRE_PROOF | ACID_PROOF brightness_on = 7 light_color = "#30ffff" - armor = list(melee = 20, bullet = 20, laser = 20, energy = 10, bomb = 30, bio = 100, rad = 75, fire = 100, acid = 100) + armor = list("melee" = 20, "bullet" = 20, "laser" = 20, "energy" = 10, "bomb" = 30, "bio" = 100, "rad" = 75, "fire" = 100, "acid" = 100) max_heat_protection_temperature = FIRE_HELM_MAX_TEMP_PROTECT var/list/datahuds = list(DATA_HUD_SECURITY_ADVANCED, DATA_HUD_MEDICAL_ADVANCED, DATA_HUD_DIAGNOSTIC_BASIC) var/zoom_range = 12 diff --git a/code/modules/clothing/spacesuits/hardsuit.dm b/code/modules/clothing/spacesuits/hardsuit.dm index ae3fb11fbe..0e0008e2ea 100644 --- a/code/modules/clothing/spacesuits/hardsuit.dm +++ b/code/modules/clothing/spacesuits/hardsuit.dm @@ -5,7 +5,7 @@ icon_state = "hardsuit0-engineering" item_state = "eng_helm" max_integrity = 300 - armor = list(melee = 10, bullet = 5, laser = 10, energy = 5, bomb = 10, bio = 100, rad = 75, fire = 50, acid = 75) + armor = list("melee" = 10, "bullet" = 5, "laser" = 10, "energy" = 5, "bomb" = 10, "bio" = 100, "rad" = 75, "fire" = 50, "acid" = 75) var/basestate = "hardsuit" var/brightness_on = 4 //luminosity when on var/on = FALSE @@ -96,7 +96,7 @@ icon_state = "hardsuit-engineering" item_state = "eng_hardsuit" max_integrity = 300 - armor = list(melee = 10, bullet = 5, laser = 10, energy = 5, bomb = 10, bio = 100, rad = 75, fire = 50, acid = 75) + armor = list("melee" = 10, "bullet" = 5, "laser" = 10, "energy" = 5, "bomb" = 10, "bio" = 100, "rad" = 75, "fire" = 50, "acid" = 75) allowed = list(/obj/item/device/flashlight, /obj/item/tank/internals, /obj/item/device/t_scanner, /obj/item/construction/rcd, /obj/item/pipe_dispenser) siemens_coefficient = 0 var/obj/item/clothing/head/helmet/space/hardsuit/helmet @@ -166,7 +166,7 @@ desc = "A special helmet designed for work in a hazardous, low-pressure environment. Has radiation shielding." icon_state = "hardsuit0-engineering" item_state = "eng_helm" - armor = list(melee = 30, bullet = 5, laser = 10, energy = 5, bomb = 10, bio = 100, rad = 75, fire = 100, acid = 75) + armor = list("melee" = 30, "bullet" = 5, "laser" = 10, "energy" = 5, "bomb" = 10, "bio" = 100, "rad" = 75, "fire" = 100, "acid" = 75) item_color = "engineering" resistance_flags = FIRE_PROOF @@ -175,7 +175,7 @@ desc = "A special suit that protects against hazardous, low pressure environments. Has radiation shielding." icon_state = "hardsuit-engineering" item_state = "eng_hardsuit" - armor = list(melee = 30, bullet = 5, laser = 10, energy = 5, bomb = 10, bio = 100, rad = 75, fire = 100, acid = 75) + armor = list("melee" = 30, "bullet" = 5, "laser" = 10, "energy" = 5, "bomb" = 10, "bio" = 100, "rad" = 75, "fire" = 100, "acid" = 75) helmettype = /obj/item/clothing/head/helmet/space/hardsuit/engine resistance_flags = FIRE_PROOF @@ -186,7 +186,7 @@ icon_state = "hardsuit0-atmospherics" item_state = "atmo_helm" item_color = "atmospherics" - armor = list(melee = 30, bullet = 5, laser = 10, energy = 5, bomb = 10, bio = 100, rad = 25, fire = 100, acid = 75) + armor = list("melee" = 30, "bullet" = 5, "laser" = 10, "energy" = 5, "bomb" = 10, "bio" = 100, "rad" = 25, "fire" = 100, "acid" = 75) heat_protection = HEAD //Uncomment to enable firesuit protection max_heat_protection_temperature = FIRE_IMMUNITY_HELM_MAX_TEMP_PROTECT @@ -195,7 +195,7 @@ desc = "A special suit that protects against hazardous, low pressure environments. Has thermal shielding." icon_state = "hardsuit-atmospherics" item_state = "atmo_hardsuit" - armor = list(melee = 30, bullet = 5, laser = 10, energy = 5, bomb = 10, bio = 100, rad = 25, fire = 100, acid = 75) + armor = list("melee" = 30, "bullet" = 5, "laser" = 10, "energy" = 5, "bomb" = 10, "bio" = 100, "rad" = 25, "fire" = 100, "acid" = 75) heat_protection = CHEST|GROIN|LEGS|FEET|ARMS|HANDS //Uncomment to enable firesuit protection max_heat_protection_temperature = FIRE_IMMUNITY_SUIT_MAX_TEMP_PROTECT helmettype = /obj/item/clothing/head/helmet/space/hardsuit/engine/atmos @@ -208,7 +208,7 @@ icon_state = "hardsuit0-white" item_state = "ce_helm" item_color = "white" - armor = list(melee = 40, bullet = 5, laser = 10, energy = 5, bomb = 50, bio = 100, rad = 90, fire = 100, acid = 90) + armor = list("melee" = 40, "bullet" = 5, "laser" = 10, "energy" = 5, "bomb" = 50, "bio" = 100, "rad" = 90, "fire" = 100, "acid" = 90) heat_protection = HEAD max_heat_protection_temperature = FIRE_IMMUNITY_HELM_MAX_TEMP_PROTECT @@ -217,7 +217,7 @@ name = "advanced hardsuit" desc = "An advanced suit that protects against hazardous, low pressure environments. Shines with a high polish." item_state = "ce_hardsuit" - armor = list(melee = 40, bullet = 5, laser = 10, energy = 5, bomb = 50, bio = 100, rad = 90, fire = 100, acid = 90) + armor = list("melee" = 40, "bullet" = 5, "laser" = 10, "energy" = 5, "bomb" = 50, "bio" = 100, "rad" = 90, "fire" = 100, "acid" = 90) heat_protection = CHEST|GROIN|LEGS|FEET|ARMS|HANDS max_heat_protection_temperature = FIRE_IMMUNITY_SUIT_MAX_TEMP_PROTECT helmettype = /obj/item/clothing/head/helmet/space/hardsuit/engine/elite @@ -233,7 +233,7 @@ max_heat_protection_temperature = FIRE_SUIT_MAX_TEMP_PROTECT resistance_flags = FIRE_PROOF heat_protection = HEAD - armor = list(melee = 30, bullet = 5, laser = 10, energy = 5, bomb = 50, bio = 100, rad = 50, fire = 50, acid = 75) + armor = list("melee" = 30, "bullet" = 5, "laser" = 10, "energy" = 5, "bomb" = 50, "bio" = 100, "rad" = 50, "fire" = 50, "acid" = 75) brightness_on = 7 allowed = list(/obj/item/device/flashlight, /obj/item/tank/internals, /obj/item/resonator, /obj/item/device/mining_scanner, /obj/item/device/t_scanner/adv_mining_scanner, /obj/item/gun/energy/kinetic_accelerator) @@ -245,7 +245,7 @@ item_state = "mining_hardsuit" max_heat_protection_temperature = FIRE_SUIT_MAX_TEMP_PROTECT resistance_flags = FIRE_PROOF - armor = list(melee = 30, bullet = 5, laser = 10, energy = 5, bomb = 50, bio = 100, rad = 50, fire = 50, acid = 75) + armor = list("melee" = 30, "bullet" = 5, "laser" = 10, "energy" = 5, "bomb" = 50, "bio" = 100, "rad" = 50, "fire" = 50, "acid" = 75) allowed = list(/obj/item/device/flashlight, /obj/item/tank/internals, /obj/item/storage/bag/ore, /obj/item/pickaxe) helmettype = /obj/item/clothing/head/helmet/space/hardsuit/mining heat_protection = CHEST|GROIN|LEGS|FEET|ARMS|HANDS @@ -258,7 +258,7 @@ icon_state = "hardsuit1-syndi" item_state = "syndie_helm" item_color = "syndi" - armor = list(melee = 40, bullet = 50, laser = 30, energy = 15, bomb = 35, bio = 100, rad = 50, fire = 50, acid = 90) + armor = list("melee" = 40, "bullet" = 50, "laser" = 30, "energy" = 15, "bomb" = 35, "bio" = 100, "rad" = 50, "fire" = 50, "acid" = 90) on = TRUE var/obj/item/clothing/suit/space/hardsuit/syndi/linkedsuit = null actions_types = list(/datum/action/item_action/toggle_helmet_mode) @@ -336,7 +336,7 @@ item_state = "syndie_hardsuit" item_color = "syndi" w_class = WEIGHT_CLASS_NORMAL - armor = list(melee = 40, bullet = 50, laser = 30, energy = 15, bomb = 35, bio = 100, rad = 50, fire = 50, acid = 90) + armor = list("melee" = 40, "bullet" = 50, "laser" = 30, "energy" = 15, "bomb" = 35, "bio" = 100, "rad" = 50, "fire" = 50, "acid" = 90) allowed = list(/obj/item/gun, /obj/item/ammo_box,/obj/item/ammo_casing, /obj/item/melee/baton, /obj/item/melee/transforming/energy/sword/saber, /obj/item/restraints/handcuffs, /obj/item/tank/internals) helmettype = /obj/item/clothing/head/helmet/space/hardsuit/syndi jetpack = /obj/item/tank/jetpack/suit @@ -348,7 +348,7 @@ alt_desc = "An elite version of the syndicate helmet, with improved armour and fireproofing. It is in combat mode. Property of Gorlex Marauders." icon_state = "hardsuit0-syndielite" item_color = "syndielite" - armor = list(melee = 60, bullet = 60, laser = 50, energy = 25, bomb = 55, bio = 100, rad = 70, fire = 100, acid = 100) + armor = list("melee" = 60, "bullet" = 60, "laser" = 50, "energy" = 25, "bomb" = 55, "bio" = 100, "rad" = 70, "fire" = 100, "acid" = 100) heat_protection = HEAD max_heat_protection_temperature = FIRE_IMMUNITY_SUIT_MAX_TEMP_PROTECT visor_flags_inv = 0 @@ -364,7 +364,7 @@ icon_state = "hardsuit0-syndielite" item_color = "syndielite" helmettype = /obj/item/clothing/head/helmet/space/hardsuit/syndi/elite - armor = list(melee = 60, bullet = 60, laser = 50, energy = 25, bomb = 55, bio = 100, rad = 70, fire = 100, acid = 100) + armor = list("melee" = 60, "bullet" = 60, "laser" = 50, "energy" = 25, "bomb" = 55, "bio" = 100, "rad" = 70, "fire" = 100, "acid" = 100) heat_protection = CHEST|GROIN|LEGS|FEET|ARMS|HANDS max_heat_protection_temperature = FIRE_IMMUNITY_SUIT_MAX_TEMP_PROTECT resistance_flags = FIRE_PROOF | ACID_PROOF @@ -399,7 +399,7 @@ item_state = "wiz_helm" item_color = "wiz" resistance_flags = FIRE_PROOF | ACID_PROOF //No longer shall our kind be foiled by lone chemists with spray bottles! - armor = list(melee = 40, bullet = 40, laser = 40, energy = 20, bomb = 35, bio = 100, rad = 50, fire = 100, acid = 100) + armor = list("melee" = 40, "bullet" = 40, "laser" = 40, "energy" = 20, "bomb" = 35, "bio" = 100, "rad" = 50, "fire" = 100, "acid" = 100) heat_protection = HEAD //Uncomment to enable firesuit protection max_heat_protection_temperature = FIRE_IMMUNITY_HELM_MAX_TEMP_PROTECT @@ -410,7 +410,7 @@ item_state = "wiz_hardsuit" w_class = WEIGHT_CLASS_NORMAL resistance_flags = FIRE_PROOF | ACID_PROOF - armor = list(melee = 40, bullet = 40, laser = 40, energy = 20, bomb = 35, bio = 100, rad = 50, fire = 100, acid = 100) + armor = list("melee" = 40, "bullet" = 40, "laser" = 40, "energy" = 20, "bomb" = 35, "bio" = 100, "rad" = 50, "fire" = 100, "acid" = 100) allowed = list(/obj/item/teleportation_scroll, /obj/item/tank/internals) heat_protection = CHEST|GROIN|LEGS|FEET|ARMS|HANDS //Uncomment to enable firesuit protection max_heat_protection_temperature = FIRE_IMMUNITY_SUIT_MAX_TEMP_PROTECT @@ -425,7 +425,7 @@ item_state = "medical_helm" item_color = "medical" flash_protect = 0 - armor = list(melee = 30, bullet = 5, laser = 10, energy = 5, bomb = 10, bio = 100, rad = 60, fire = 60, acid = 75) + armor = list("melee" = 30, "bullet" = 5, "laser" = 10, "energy" = 5, "bomb" = 10, "bio" = 100, "rad" = 60, "fire" = 60, "acid" = 75) scan_reagents = 1 /obj/item/clothing/suit/space/hardsuit/medical @@ -434,7 +434,7 @@ desc = "A special suit that protects against hazardous, low pressure environments. Built with lightweight materials for easier movement." item_state = "medical_hardsuit" allowed = list(/obj/item/device/flashlight, /obj/item/tank/internals, /obj/item/storage/firstaid, /obj/item/device/healthanalyzer, /obj/item/stack/medical) - armor = list(melee = 30, bullet = 5, laser = 10, energy = 5, bomb = 10, bio = 100, rad = 60, fire = 60, acid = 75) + armor = list("melee" = 30, "bullet" = 5, "laser" = 10, "energy" = 5, "bomb" = 10, "bio" = 100, "rad" = 60, "fire" = 60, "acid" = 75) helmettype = /obj/item/clothing/head/helmet/space/hardsuit/medical //Research Director hardsuit @@ -445,7 +445,7 @@ item_color = "rd" resistance_flags = ACID_PROOF | FIRE_PROOF max_heat_protection_temperature = FIRE_SUIT_MAX_TEMP_PROTECT - armor = list(melee = 30, bullet = 5, laser = 10, energy = 5, bomb = 100, bio = 100, rad = 60, fire = 60, acid = 80) + armor = list("melee" = 30, "bullet" = 5, "laser" = 10, "energy" = 5, "bomb" = 100, "bio" = 100, "rad" = 60, "fire" = 60, "acid" = 80) var/obj/machinery/doppler_array/integrated/bomb_radar scan_reagents = 1 actions_types = list(/datum/action/item_action/toggle_helmet_light, /datum/action/item_action/toggle_research_scanner) @@ -475,7 +475,7 @@ max_heat_protection_temperature = FIRE_SUIT_MAX_TEMP_PROTECT //Same as an emergency firesuit. Not ideal for extended exposure. allowed = list(/obj/item/device/flashlight, /obj/item/tank/internals, /obj/item/gun/energy/wormhole_projector, /obj/item/hand_tele, /obj/item/device/aicard) - armor = list(melee = 30, bullet = 5, laser = 10, energy = 5, bomb = 100, bio = 100, rad = 60, fire = 60, acid = 80) + armor = list("melee" = 30, "bullet" = 5, "laser" = 10, "energy" = 5, "bomb" = 100, "bio" = 100, "rad" = 60, "fire" = 60, "acid" = 80) helmettype = /obj/item/clothing/head/helmet/space/hardsuit/rd @@ -487,7 +487,7 @@ icon_state = "hardsuit0-sec" item_state = "sec_helm" item_color = "sec" - armor = list(melee = 35, bullet = 15, laser = 30,energy = 10, bomb = 10, bio = 100, rad = 50, fire = 75, acid = 75) + armor = list("melee" = 35, "bullet" = 15, "laser" = 30,"energy" = 10, "bomb" = 10, "bio" = 100, "rad" = 50, "fire" = 75, "acid" = 75) /obj/item/clothing/suit/space/hardsuit/security @@ -495,7 +495,7 @@ name = "security hardsuit" desc = "A special suit that protects against hazardous, low pressure environments. Has an additional layer of armor." item_state = "sec_hardsuit" - armor = list(melee = 35, bullet = 15, laser = 30, energy = 10, bomb = 10, bio = 100, rad = 50, fire = 75, acid = 75) + armor = list("melee" = 35, "bullet" = 15, "laser" = 30, "energy" = 10, "bomb" = 10, "bio" = 100, "rad" = 50, "fire" = 75, "acid" = 75) helmettype = /obj/item/clothing/head/helmet/space/hardsuit/security /obj/item/clothing/suit/space/hardsuit/security/Initialize() @@ -508,14 +508,14 @@ desc = "A special bulky helmet designed for work in a hazardous, low pressure environment. Has an additional layer of armor." icon_state = "hardsuit0-hos" item_color = "hos" - armor = list(melee = 45, bullet = 25, laser = 30, energy = 10, bomb = 25, bio = 100, rad = 50, fire = 95, acid = 95) + armor = list("melee" = 45, "bullet" = 25, "laser" = 30, "energy" = 10, "bomb" = 25, "bio" = 100, "rad" = 50, "fire" = 95, "acid" = 95) /obj/item/clothing/suit/space/hardsuit/security/hos icon_state = "hardsuit-hos" name = "head of security's hardsuit" desc = "A special bulky suit that protects against hazardous, low pressure environments. Has an additional layer of armor." - armor = list(melee = 45, bullet = 25, laser = 30, energy = 10, bomb = 25, bio = 100, rad = 50, fire = 95, acid = 95) + armor = list("melee" = 45, "bullet" = 25, "laser" = 30, "energy" = 10, "bomb" = 25, "bio" = 100, "rad" = 50, "fire" = 95, "acid" = 95) helmettype = /obj/item/clothing/head/helmet/space/hardsuit/security/hos jetpack = /obj/item/tank/jetpack/suit @@ -525,7 +525,7 @@ icon_state = "capspace" item_state = "capspacehelmet" desc = "A tactical SWAT helmet MK.II boasting better protection and a horrible fashion sense." - armor = list(melee = 40, bullet = 50, laser = 50, energy = 25, bomb = 50, bio = 100, rad = 50, fire = 100, acid = 100) + armor = list("melee" = 40, "bullet" = 50, "laser" = 50, "energy" = 25, "bomb" = 50, "bio" = 100, "rad" = 50, "fire" = 100, "acid" = 100) resistance_flags = FIRE_PROOF | ACID_PROOF flags_inv = HIDEEARS|HIDEEYES|HIDEFACE|HIDEHAIR //we want to see the mask heat_protection = HEAD @@ -540,7 +540,7 @@ desc = "A MK.II SWAT suit with streamlined joints and armor made out of superior materials, insulated against intense heat. The most advanced tactical armor available Usually reserved for heavy hitter corporate security, this one has a regal finish in Nanotrasen company colors. Better not let the assistants get a hold of it." icon_state = "caparmor" item_state = "capspacesuit" - armor = list(melee = 40, bullet = 50, laser = 50, energy = 25, bomb = 50, bio = 100, rad = 50, fire = 100, acid = 100) + armor = list("melee" = 40, "bullet" = 50, "laser" = 50, "energy" = 25, "bomb" = 50, "bio" = 100, "rad" = 50, "fire" = 100, "acid" = 100) resistance_flags = FIRE_PROOF | ACID_PROOF heat_protection = CHEST|GROIN|LEGS|FEET|ARMS|HANDS max_heat_protection_temperature = FIRE_IMMUNITY_SUIT_MAX_TEMP_PROTECT //this needed to be added a long fucking time ago @@ -556,7 +556,7 @@ desc = "A special helmet designed for work in a hazardous, low-humor environment. Has radiation shielding." icon_state = "hardsuit0-clown" item_state = "hardsuit0-clown" - armor = list(melee = 30, bullet = 5, laser = 10, energy = 5, bomb = 10, bio = 100, rad = 75, fire = 60, acid = 30) + armor = list("melee" = 30, "bullet" = 5, "laser" = 10, "energy" = 5, "bomb" = 10, "bio" = 100, "rad" = 75, "fire" = 60, "acid" = 30) item_color = "clown" /obj/item/clothing/suit/space/hardsuit/clown @@ -564,7 +564,7 @@ desc = "A special suit that protects against hazardous, low humor environments. Has radiation shielding. Only a true clown can wear it." icon_state = "hardsuit-clown" item_state = "clown_hardsuit" - armor = list(melee = 30, bullet = 5, laser = 10, energy = 5, bomb = 10, bio = 100, rad = 75, fire = 60, acid = 30) + armor = list("melee" = 30, "bullet" = 5, "laser" = 10, "energy" = 5, "bomb" = 10, "bio" = 100, "rad" = 75, "fire" = 60, "acid" = 30) helmettype = /obj/item/clothing/head/helmet/space/hardsuit/clown /obj/item/clothing/suit/space/hardsuit/clown/mob_can_equip(mob/M, slot) @@ -615,7 +615,7 @@ icon_state = "hardsuit-hos" helmettype = /obj/item/clothing/head/helmet/space/hardsuit/security/hos allowed = null - armor = list(melee = 30, bullet = 15, laser = 30, energy = 10, bomb = 10, bio = 100, rad = 50, fire = 100, acid = 100) + armor = list("melee" = 30, "bullet" = 15, "laser" = 30, "energy" = 10, "bomb" = 10, "bio" = 100, "rad" = 50, "fire" = 100, "acid" = 100) resistance_flags = FIRE_PROOF | ACID_PROOF var/current_charges = 3 var/max_charges = 3 //How many charges total the shielding has @@ -682,7 +682,7 @@ item_color = "ert_medical" flags_1 = STOPSPRESSUREDMAGE_1 | THICKMATERIAL_1 | NODROP_1 //Dont want people changing into the other teams gear helmettype = /obj/item/clothing/head/helmet/space/hardsuit/shielded/ctf - armor = list(melee = 0, bullet = 30, laser = 30, energy = 30, bomb = 50, bio = 100, rad = 100, fire = 95, acid = 95) + armor = list("melee" = 0, "bullet" = 30, "laser" = 30, "energy" = 30, "bomb" = 50, "bio" = 100, "rad" = 100, "fire" = 95, "acid" = 95) slowdown = 0 max_charges = 5 @@ -710,7 +710,7 @@ icon_state = "hardsuit0-ert_medical" item_state = "hardsuit0-ert_medical" item_color = "ert_medical" - armor = list(melee = 0, bullet = 30, laser = 30, energy = 30, bomb = 50, bio = 100, rad = 100, fire = 95, acid = 95) + armor = list("melee" = 0, "bullet" = 30, "laser" = 30, "energy" = 30, "bomb" = 50, "bio" = 100, "rad" = 100, "fire" = 95, "acid" = 95) /obj/item/clothing/head/helmet/space/hardsuit/shielded/ctf/red @@ -737,7 +737,7 @@ icon_state = "hardsuit1-syndi" item_state = "syndie_hardsuit" item_color = "syndi" - armor = list(melee = 40, bullet = 50, laser = 30, energy = 15, bomb = 35, bio = 100, rad = 50, fire = 100, acid = 100) + armor = list("melee" = 40, "bullet" = 50, "laser" = 30, "energy" = 15, "bomb" = 35, "bio" = 100, "rad" = 50, "fire" = 100, "acid" = 100) allowed = list(/obj/item/gun, /obj/item/ammo_box, /obj/item/ammo_casing, /obj/item/melee/baton, /obj/item/melee/transforming/energy/sword/saber, /obj/item/restraints/handcuffs, /obj/item/tank/internals) helmettype = /obj/item/clothing/head/helmet/space/hardsuit/shielded/syndi slowdown = 0 @@ -753,7 +753,7 @@ icon_state = "hardsuit1-syndi" item_state = "syndie_helm" item_color = "syndi" - armor = list(melee = 40, bullet = 50, laser = 30, energy = 15, bomb = 35, bio = 100, rad = 50, fire = 100, acid = 100) + armor = list("melee" = 40, "bullet" = 50, "laser" = 30, "energy" = 15, "bomb" = 35, "bio" = 100, "rad" = 50, "fire" = 100, "acid" = 100) ///SWAT version /obj/item/clothing/suit/space/hardsuit/shielded/swat @@ -765,7 +765,7 @@ max_charges = 4 current_charges = 4 recharge_delay = 15 - armor = list(melee = 80, bullet = 80, laser = 50, energy = 50, bomb = 100, bio = 100, rad = 100, fire = 100, acid = 100) + armor = list("melee" = 80, "bullet" = 80, "laser" = 50, "energy" = 50, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100) strip_delay = 130 max_heat_protection_temperature = FIRE_IMMUNITY_SUIT_MAX_TEMP_PROTECT helmettype = /obj/item/clothing/head/helmet/space/hardsuit/shielded/swat @@ -777,7 +777,7 @@ icon_state = "deathsquad" item_state = "deathsquad" item_color = "syndi" - armor = list(melee = 80, bullet = 80, laser = 50, energy = 50, bomb = 100, bio = 100, rad = 100, fire = 100, acid = 100) + armor = list("melee" = 80, "bullet" = 80, "laser" = 50, "energy" = 50, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100) strip_delay = 130 max_heat_protection_temperature = FIRE_IMMUNITY_HELM_MAX_TEMP_PROTECT actions_types = list() diff --git a/code/modules/clothing/spacesuits/miscellaneous.dm b/code/modules/clothing/spacesuits/miscellaneous.dm index e88b33e993..79c208f8c2 100644 --- a/code/modules/clothing/spacesuits/miscellaneous.dm +++ b/code/modules/clothing/spacesuits/miscellaneous.dm @@ -20,7 +20,7 @@ Contains: desc = "An advanced tactical space helmet." icon_state = "deathsquad" item_state = "deathsquad" - armor = list(melee = 80, bullet = 80, laser = 50, energy = 50, bomb = 100, bio = 100, rad = 100, fire = 100, acid = 100) + armor = list("melee" = 80, "bullet" = 80, "laser" = 50, "energy" = 50, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100) strip_delay = 130 max_heat_protection_temperature = FIRE_IMMUNITY_HELM_MAX_TEMP_PROTECT resistance_flags = FIRE_PROOF | ACID_PROOF @@ -35,7 +35,7 @@ Contains: icon_state = "deathsquad" item_state = "swat_suit" allowed = list(/obj/item/gun, /obj/item/ammo_box, /obj/item/ammo_casing, /obj/item/melee/baton, /obj/item/restraints/handcuffs, /obj/item/tank/internals, /obj/item/kitchen/knife/combat) - armor = list(melee = 80, bullet = 80, laser = 50, energy = 50, bomb = 100, bio = 100, rad = 100, fire = 100, acid = 100) + armor = list("melee" = 80, "bullet" = 80, "laser" = 50, "energy" = 50, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100) strip_delay = 130 max_heat_protection_temperature = FIRE_IMMUNITY_SUIT_MAX_TEMP_PROTECT resistance_flags = FIRE_PROOF | ACID_PROOF @@ -49,7 +49,7 @@ Contains: icon_state = "heavy" item_state = "swat_suit" allowed = list(/obj/item/gun, /obj/item/ammo_box, /obj/item/ammo_casing, /obj/item/melee/baton, /obj/item/restraints/handcuffs, /obj/item/tank/internals, /obj/item/kitchen/knife/combat) - armor = list(melee = 40, bullet = 30, laser = 30,energy = 30, bomb = 50, bio = 90, rad = 20, fire = 100, acid = 100) + armor = list("melee" = 40, "bullet" = 30, "laser" = 30,"energy" = 30, "bomb" = 50, "bio" = 90, "rad" = 20, "fire" = 100, "acid" = 100) strip_delay = 120 resistance_flags = FIRE_PROOF | ACID_PROOF @@ -61,7 +61,7 @@ Contains: dynamic_fhair_suffix = "+generic" flags_1 = STOPSPRESSUREDMAGE_1 flags_inv = 0 - armor = list(melee = 80, bullet = 80, laser = 50, energy = 50, bomb = 100, bio = 100, rad = 100, fire = 100, acid = 100) + armor = list("melee" = 80, "bullet" = 80, "laser" = 50, "energy" = 50, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100) strip_delay = 130 max_heat_protection_temperature = FIRE_IMMUNITY_HELM_MAX_TEMP_PROTECT resistance_flags = FIRE_PROOF | ACID_PROOF @@ -76,7 +76,7 @@ Contains: flags_inv = 0 w_class = WEIGHT_CLASS_NORMAL allowed = list(/obj/item/gun, /obj/item/ammo_box, /obj/item/ammo_casing, /obj/item/melee/baton, /obj/item/restraints/handcuffs, /obj/item/tank/internals) - armor = list(melee = 80, bullet = 80, laser = 50, energy = 50, bomb = 100, bio = 100, rad = 100, fire = 100, acid = 100) + armor = list("melee" = 80, "bullet" = 80, "laser" = 50, "energy" = 50, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100) strip_delay = 130 max_heat_protection_temperature = FIRE_IMMUNITY_HELM_MAX_TEMP_PROTECT resistance_flags = FIRE_PROOF | ACID_PROOF @@ -135,7 +135,7 @@ Contains: desc = "Yarr." icon_state = "pirate" item_state = "pirate" - armor = list(melee = 30, bullet = 50, laser = 30,energy = 15, bomb = 30, bio = 30, rad = 30, fire = 60, acid = 75) + armor = list("melee" = 30, "bullet" = 50, "laser" = 30,"energy" = 15, "bomb" = 30, "bio" = 30, "rad" = 30, "fire" = 60, "acid" = 75) flags_1 = STOPSPRESSUREDMAGE_1 flags_inv = HIDEHAIR strip_delay = 40 @@ -156,7 +156,7 @@ Contains: flags_inv = 0 allowed = list(/obj/item/gun, /obj/item/ammo_box, /obj/item/ammo_casing, /obj/item/melee/baton, /obj/item/restraints/handcuffs, /obj/item/tank/internals, /obj/item/melee/transforming/energy/sword/pirate, /obj/item/clothing/glasses/eyepatch, /obj/item/reagent_containers/food/drinks/bottle/rum) slowdown = 0 - armor = list(melee = 30, bullet = 50, laser = 30,energy = 15, bomb = 30, bio = 30, rad = 30, fire = 60, acid = 75) + armor = list("melee" = 30, "bullet" = 50, "laser" = 30,"energy" = 15, "bomb" = 30, "bio" = 30, "rad" = 30, "fire" = 60, "acid" = 75) strip_delay = 40 equip_delay_other = 20 @@ -167,7 +167,7 @@ Contains: icon_state = "hardsuit0-ert_commander" item_state = "hardsuit0-ert_commander" item_color = "ert_commander" - armor = list(melee = 65, bullet = 50, laser = 50, energy = 50, bomb = 50, bio = 100, rad = 100, fire = 80, acid = 80) + armor = list("melee" = 65, "bullet" = 50, "laser" = 50, "energy" = 50, "bomb" = 50, "bio" = 100, "rad" = 100, "fire" = 80, "acid" = 80) strip_delay = 130 flags_1 = STOPSPRESSUREDMAGE_1 | THICKMATERIAL_1 | NODROP_1 brightness_on = 7 @@ -179,7 +179,7 @@ Contains: item_state = "ert_command" helmettype = /obj/item/clothing/head/helmet/space/hardsuit/ert allowed = list(/obj/item/gun, /obj/item/ammo_box, /obj/item/ammo_casing, /obj/item/melee/baton, /obj/item/restraints/handcuffs, /obj/item/tank/internals) - armor = list(melee = 65, bullet = 50, laser = 50, energy = 50, bomb = 50, bio = 100, rad = 100, fire = 80, acid = 80) + armor = list("melee" = 65, "bullet" = 50, "laser" = 50, "energy" = 50, "bomb" = 50, "bio" = 100, "rad" = 100, "fire" = 80, "acid" = 80) slowdown = 0 strip_delay = 130 @@ -228,7 +228,7 @@ Contains: icon_state = "space" item_state = "s_suit" desc = "A lightweight space suit with the basic ability to protect the wearer from the vacuum of space during emergencies." - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 100, rad = 20, fire = 50, acid = 65) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 100, "rad" = 20, "fire" = 50, "acid" = 65) /obj/item/clothing/head/helmet/space/eva name = "EVA helmet" @@ -236,14 +236,14 @@ Contains: item_state = "space" desc = "A lightweight space helmet with the basic ability to protect the wearer from the vacuum of space during emergencies." flash_protect = 0 - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 100, rad = 20, fire = 50, acid = 65) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 100, "rad" = 20, "fire" = 50, "acid" = 65) /obj/item/clothing/head/helmet/space/freedom name = "eagle helmet" desc = "An advanced, space-proof helmet. It appears to be modeled after an old-world eagle." icon_state = "griffinhat" item_state = "griffinhat" - armor = list(melee = 20, bullet = 40, laser = 30, energy = 25, bomb = 100, bio = 100, rad = 100, fire = 80, acid = 80) + armor = list("melee" = 20, "bullet" = 40, "laser" = 30, "energy" = 25, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 80, "acid" = 80) strip_delay = 130 max_heat_protection_temperature = FIRE_IMMUNITY_HELM_MAX_TEMP_PROTECT resistance_flags = ACID_PROOF | FIRE_PROOF @@ -254,7 +254,7 @@ Contains: icon_state = "freedom" item_state = "freedom" allowed = list(/obj/item/gun, /obj/item/ammo_box, /obj/item/ammo_casing, /obj/item/melee/baton, /obj/item/restraints/handcuffs, /obj/item/tank/internals) - armor = list(melee = 20, bullet = 40, laser = 30,energy = 25, bomb = 100, bio = 100, rad = 100, fire = 80, acid = 80) + armor = list("melee" = 20, "bullet" = 40, "laser" = 30,"energy" = 25, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 80, "acid" = 80) strip_delay = 130 max_heat_protection_temperature = FIRE_IMMUNITY_HELM_MAX_TEMP_PROTECT resistance_flags = ACID_PROOF | FIRE_PROOF @@ -266,7 +266,7 @@ Contains: desc = "Spaceworthy and it looks like a space carp's head, smells like one too." icon_state = "carp_helm" item_state = "syndicate" - armor = list(melee = -20, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 100, rad = 75, fire = 60, acid = 75) //As whimpy as a space carp + armor = list("melee" = -20, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 100, "rad" = 75, "fire" = 60, "acid" = 75) //As whimpy as a space carp brightness_on = 0 //luminosity when on actions_types = list() flags_1 = STOPSPRESSUREDMAGE_1 | THICKMATERIAL_1 | NODROP_1 @@ -278,7 +278,7 @@ Contains: icon_state = "carp_suit" item_state = "space_suit_syndicate" slowdown = 0 //Space carp magic, never stop believing - armor = list(melee = -20, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 100, rad = 75, fire = 60, acid = 75) //As whimpy whimpy whoo + armor = list("melee" = -20, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 100, "rad" = 75, "fire" = 60, "acid" = 75) //As whimpy whimpy whoo allowed = list(/obj/item/tank/internals, /obj/item/gun/ballistic/automatic/speargun) //I'm giving you a hint here helmettype = /obj/item/clothing/head/helmet/space/hardsuit/carp @@ -335,7 +335,7 @@ Contains: desc = "A bulky, air-tight helmet meant to protect the user during emergency situations. It doesn't look very durable." icon_state = "syndicate-helm-orange" item_state = "syndicate-helm-orange" - armor = list(melee = 5, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 10, fire = 0, acid = 0) + armor = list("melee" = 5, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 10, "fire" = 0, "acid" = 0) strip_delay = 65 /obj/item/clothing/suit/space/fragile @@ -345,7 +345,7 @@ Contains: icon_state = "syndicate-orange" item_state = "syndicate-orange" slowdown = 2 - armor = list(melee = 5, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 10, fire = 0, acid = 0) + armor = list("melee" = 5, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 10, "fire" = 0, "acid" = 0) strip_delay = 65 /obj/item/clothing/suit/space/fragile/hit_reaction(mob/living/carbon/human/owner, atom/movable/hitby, attack_text = "the attack", final_block_chance = 0, damage = 0, attack_type = MELEE_ATTACK) diff --git a/code/modules/clothing/spacesuits/plasmamen.dm b/code/modules/clothing/spacesuits/plasmamen.dm index a56afb94ae..d8c3b55048 100644 --- a/code/modules/clothing/spacesuits/plasmamen.dm +++ b/code/modules/clothing/spacesuits/plasmamen.dm @@ -5,7 +5,7 @@ name = "EVA plasma envirosuit" desc = "A special plasma containment suit designed to be space-worthy, as well as worn over other clothing. Like its smaller counterpart, it can automatically extinguish the wearer in a crisis, and holds twice as many charges." allowed = list(/obj/item/gun, /obj/item/ammo_casing, /obj/item/ammo_casing, /obj/item/melee/baton, /obj/item/melee/transforming/energy/sword, /obj/item/restraints/handcuffs, /obj/item/tank) - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 100, rad = 0, fire = 100, acid = 75) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 100, "rad" = 0, "fire" = 100, "acid" = 75) resistance_flags = FIRE_PROOF icon_state = "plasmaman_suit" item_state = "plasmaman_suit" @@ -41,7 +41,7 @@ icon_state = "plasmaman-helm" item_state = "plasmaman-helm" strip_delay = 80 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 100, rad = 0, fire = 100, acid = 75) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 100, "rad" = 0, "fire" = 100, "acid" = 75) resistance_flags = FIRE_PROOF var/brightness_on = 4 //luminosity when the light is on var/on = FALSE diff --git a/code/modules/clothing/spacesuits/syndi.dm b/code/modules/clothing/spacesuits/syndi.dm index 41d40eddf8..6d42b2d78f 100644 --- a/code/modules/clothing/spacesuits/syndi.dm +++ b/code/modules/clothing/spacesuits/syndi.dm @@ -4,7 +4,7 @@ icon_state = "syndicate" item_state = "syndicate" desc = "Has a tag on it: Totally not property of an enemy corporation, honest!" - armor = list(melee = 40, bullet = 50, laser = 30,energy = 15, bomb = 30, bio = 30, rad = 30, fire = 80, acid = 85) + armor = list("melee" = 40, "bullet" = 50, "laser" = 30,"energy" = 15, "bomb" = 30, "bio" = 30, "rad" = 30, "fire" = 80, "acid" = 85) /obj/item/clothing/suit/space/syndicate name = "red space suit" @@ -13,7 +13,7 @@ desc = "Has a tag on it: Totally not property of an enemy corporation, honest!" w_class = WEIGHT_CLASS_NORMAL allowed = list(/obj/item/gun, /obj/item/ammo_box, /obj/item/ammo_casing, /obj/item/melee/baton, /obj/item/melee/transforming/energy/sword/saber, /obj/item/restraints/handcuffs, /obj/item/tank/internals) - armor = list(melee = 40, bullet = 50, laser = 30,energy = 15, bomb = 30, bio = 30, rad = 30, fire = 80, acid = 85) + armor = list("melee" = 40, "bullet" = 50, "laser" = 30,"energy" = 15, "bomb" = 30, "bio" = 30, "rad" = 30, "fire" = 80, "acid" = 85) //Green syndicate space suit diff --git a/code/modules/clothing/suits/_suits.dm b/code/modules/clothing/suits/_suits.dm index 43b30b383e..1cf1d4640d 100644 --- a/code/modules/clothing/suits/_suits.dm +++ b/code/modules/clothing/suits/_suits.dm @@ -3,7 +3,7 @@ name = "suit" var/fire_resist = T0C+100 allowed = list(/obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman) - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) slot_flags = SLOT_OCLOTHING var/blood_overlay_type = "suit" var/togglename = null diff --git a/code/modules/clothing/suits/armor.dm b/code/modules/clothing/suits/armor.dm index 3e044108fb..f3ce410933 100644 --- a/code/modules/clothing/suits/armor.dm +++ b/code/modules/clothing/suits/armor.dm @@ -9,7 +9,7 @@ equip_delay_other = 40 max_integrity = 250 resistance_flags = NONE - armor = list(melee = 30, bullet = 30, laser = 30, energy = 10, bomb = 25, bio = 0, rad = 0, fire = 50, acid = 50) + armor = list("melee" = 30, "bullet" = 30, "laser" = 30, "energy" = 10, "bomb" = 25, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 50) /obj/item/clothing/suit/armor/Initialize() . = ..() @@ -46,7 +46,7 @@ icon_state = "hos" item_state = "greatcoat" body_parts_covered = CHEST|GROIN|ARMS|LEGS - armor = list(melee = 30, bullet = 30, laser = 30, energy = 10, bomb = 25, bio = 0, rad = 0, fire = 70, acid = 90) + armor = list("melee" = 30, "bullet" = 30, "laser" = 30, "energy" = 10, "bomb" = 25, "bio" = 0, "rad" = 0, "fire" = 70, "acid" = 90) cold_protection = CHEST|GROIN|LEGS|ARMS heat_protection = CHEST|GROIN|LEGS|ARMS strip_delay = 80 @@ -92,7 +92,7 @@ icon_state = "capcarapace" item_state = "armor" body_parts_covered = CHEST|GROIN - armor = list(melee = 50, bullet = 40, laser = 50, energy = 10, bomb = 25, bio = 0, rad = 0, fire = 100, acid = 90) + armor = list("melee" = 50, "bullet" = 40, "laser" = 50, "energy" = 10, "bomb" = 25, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 90) dog_fashion = null resistance_flags = FIRE_PROOF @@ -115,7 +115,7 @@ body_parts_covered = CHEST|GROIN|LEGS|FEET|ARMS|HANDS cold_protection = CHEST|GROIN|LEGS|FEET|ARMS|HANDS heat_protection = CHEST|GROIN|LEGS|FEET|ARMS|HANDS - armor = list(melee = 50, bullet = 10, laser = 10, energy = 10, bomb = 0, bio = 0, rad = 0, fire = 80, acid = 80) + armor = list("melee" = 50, "bullet" = 10, "laser" = 10, "energy" = 10, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 80, "acid" = 80) strip_delay = 80 equip_delay_other = 60 @@ -125,7 +125,7 @@ icon_state = "bonearmor" item_state = "bonearmor" blood_overlay_type = "armor" - armor = list(melee = 35, bullet = 25, laser = 25, energy = 10, bomb = 25, bio = 0, rad = 0, fire = 50, acid = 50) + armor = list("melee" = 35, "bullet" = 25, "laser" = 25, "energy" = 10, "bomb" = 25, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 50) body_parts_covered = CHEST|GROIN|LEGS|FEET|ARMS /obj/item/clothing/suit/armor/bulletproof @@ -134,7 +134,7 @@ icon_state = "bulletproof" item_state = "armor" blood_overlay_type = "armor" - armor = list(melee = 15, bullet = 60, laser = 10, energy = 10, bomb = 40, bio = 0, rad = 0, fire = 50, acid = 50) + armor = list("melee" = 15, "bullet" = 60, "laser" = 10, "energy" = 10, "bomb" = 40, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 50) strip_delay = 70 equip_delay_other = 50 @@ -144,7 +144,7 @@ icon_state = "armor_reflec" item_state = "armor_reflec" blood_overlay_type = "armor" - armor = list(melee = 10, bullet = 10, laser = 60, energy = 50, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 100) + armor = list("melee" = 10, "bullet" = 10, "laser" = 60, "energy" = 50, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 100) resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | ACID_PROOF var/hit_reflect_chance = 40 @@ -175,7 +175,7 @@ icon_state = "reactiveoff" item_state = "reactiveoff" blood_overlay_type = "armor" - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 100) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 100) actions_types = list(/datum/action/item_action/toggle) resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | ACID_PROOF hit_reaction_chance = 50 @@ -361,7 +361,7 @@ min_cold_protection_temperature = SPACE_SUIT_MIN_TEMP_PROTECT heat_protection = CHEST|GROIN|LEGS|FEET|ARMS|HANDS max_heat_protection_temperature = SPACE_SUIT_MAX_TEMP_PROTECT - armor = list(melee = 80, bullet = 80, laser = 50, energy = 50, bomb = 100, bio = 100, rad = 100, fire = 90, acid = 90) + armor = list("melee" = 80, "bullet" = 80, "laser" = 50, "energy" = 50, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 90, "acid" = 90) /obj/item/clothing/suit/armor/heavy name = "heavy armor" @@ -374,7 +374,7 @@ body_parts_covered = CHEST|GROIN|LEGS|FEET|ARMS|HANDS slowdown = 3 flags_inv = HIDEGLOVES|HIDESHOES|HIDEJUMPSUIT - armor = list(melee = 80, bullet = 80, laser = 50, energy = 50, bomb = 100, bio = 100, rad = 100, fire = 90, acid = 90) + armor = list("melee" = 80, "bullet" = 80, "laser" = 50, "energy" = 50, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 90, "acid" = 90) /obj/item/clothing/suit/armor/tdome body_parts_covered = CHEST|GROIN|LEGS|FEET|ARMS|HANDS @@ -382,7 +382,7 @@ flags_1 = THICKMATERIAL_1 cold_protection = CHEST|GROIN|LEGS|FEET|ARMS|HANDS heat_protection = CHEST|GROIN|LEGS|FEET|ARMS|HANDS - armor = list(melee = 80, bullet = 80, laser = 50, energy = 50, bomb = 100, bio = 100, rad = 100, fire = 90, acid = 90) + armor = list("melee" = 80, "bullet" = 80, "laser" = 50, "energy" = 50, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 90, "acid" = 90) /obj/item/clothing/suit/armor/tdome/red name = "thunderdome suit" diff --git a/code/modules/clothing/suits/bio.dm b/code/modules/clothing/suits/bio.dm index bfd4415b3a..bb6a6ca070 100644 --- a/code/modules/clothing/suits/bio.dm +++ b/code/modules/clothing/suits/bio.dm @@ -5,7 +5,7 @@ desc = "A hood that protects the head and face from biological comtaminants." permeability_coefficient = 0.01 flags_1 = THICKMATERIAL_1 - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 100, rad = 80, fire = 30, acid = 100) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 100, "rad" = 80, "fire" = 30, "acid" = 100) flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEHAIR|HIDEFACIALHAIR|HIDEFACE resistance_flags = ACID_PROOF flags_cover = HEADCOVERSEYES | HEADCOVERSMOUTH @@ -22,7 +22,7 @@ body_parts_covered = CHEST|GROIN|LEGS|FEET|ARMS|HANDS slowdown = 1 allowed = list(/obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman, /obj/item/pen, /obj/item/device/flashlight/pen, /obj/item/reagent_containers/dropper, /obj/item/reagent_containers/syringe, /obj/item/reagent_containers/hypospray) - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 100, rad = 80, fire = 30, acid = 100) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 100, "rad" = 80, "fire" = 30, "acid" = 100) flags_inv = HIDEGLOVES|HIDESHOES|HIDEJUMPSUIT strip_delay = 70 equip_delay_other = 70 @@ -46,11 +46,11 @@ //Security biosuit, grey with red stripe across the chest /obj/item/clothing/head/bio_hood/security - armor = list(melee = 25, bullet = 15, laser = 25, energy = 10, bomb = 25, bio = 100, rad = 80, fire = 30, acid = 100) + armor = list("melee" = 25, "bullet" = 15, "laser" = 25, "energy" = 10, "bomb" = 25, "bio" = 100, "rad" = 80, "fire" = 30, "acid" = 100) icon_state = "bio_security" /obj/item/clothing/suit/bio_suit/security - armor = list(melee = 25, bullet = 15, laser = 25, energy = 10, bomb = 25, bio = 100, rad = 80, fire = 30, acid = 100) + armor = list("melee" = 25, "bullet" = 15, "laser" = 25, "energy" = 10, "bomb" = 25, "bio" = 100, "rad" = 80, "fire" = 30, "acid" = 100) icon_state = "bio_security" diff --git a/code/modules/clothing/suits/cloaks.dm b/code/modules/clothing/suits/cloaks.dm index 537dd86639..03f549fbe8 100644 --- a/code/modules/clothing/suits/cloaks.dm +++ b/code/modules/clothing/suits/cloaks.dm @@ -61,7 +61,7 @@ icon_state = "goliath_cloak" desc = "A staunch, practical cape made out of numerous monster materials, it is coveted amongst exiles & hermits." allowed = list(/obj/item/device/flashlight, /obj/item/tank/internals, /obj/item/pickaxe, /obj/item/twohanded/spear, /obj/item/twohanded/bonespear, /obj/item/organ/regenerative_core/legion, /obj/item/kitchen/knife/combat/bone, /obj/item/kitchen/knife/combat/survival) - armor = list(melee = 35, bullet = 10, laser = 25, energy = 10, bomb = 25, bio = 0, rad = 0, fire = 60, acid = 60) //a fair alternative to bone armor, requiring alternative materials and gaining a suit slot + armor = list("melee" = 35, "bullet" = 10, "laser" = 25, "energy" = 10, "bomb" = 25, "bio" = 0, "rad" = 0, "fire" = 60, "acid" = 60) //a fair alternative to bone armor, requiring alternative materials and gaining a suit slot hoodtype = /obj/item/clothing/head/hooded/cloakhood/goliath body_parts_covered = CHEST|GROIN|ARMS @@ -69,7 +69,7 @@ name = "goliath cloak hood" icon_state = "golhood" desc = "A protective & concealing hood." - armor = list(melee = 35, bullet = 10, laser = 25, energy = 10, bomb = 25, bio = 0, rad = 0, fire = 60, acid = 60) + armor = list("melee" = 35, "bullet" = 10, "laser" = 25, "energy" = 10, "bomb" = 25, "bio" = 0, "rad" = 0, "fire" = 60, "acid" = 60) flags_inv = HIDEEARS|HIDEEYES|HIDEHAIR|HIDEFACIALHAIR /obj/item/clothing/suit/hooded/cloak/drake @@ -77,7 +77,7 @@ icon_state = "dragon" desc = "A suit of armour fashioned from the remains of an ash drake." allowed = list(/obj/item/device/flashlight, /obj/item/tank/internals, /obj/item/resonator, /obj/item/device/mining_scanner, /obj/item/device/t_scanner/adv_mining_scanner, /obj/item/gun/energy/kinetic_accelerator, /obj/item/pickaxe, /obj/item/twohanded/spear) - armor = list(melee = 70, bullet = 30, laser = 50, energy = 40, bomb = 70, bio = 60, rad = 50, fire = 100, acid = 100) + armor = list("melee" = 70, "bullet" = 30, "laser" = 50, "energy" = 40, "bomb" = 70, "bio" = 60, "rad" = 50, "fire" = 100, "acid" = 100) hoodtype = /obj/item/clothing/head/hooded/cloakhood/drake heat_protection = CHEST|GROIN|LEGS|FEET|ARMS|HANDS body_parts_covered = CHEST|GROIN|LEGS|FEET|ARMS|HANDS @@ -88,7 +88,7 @@ name = "drake helm" icon_state = "dragon" desc = "The skull of a dragon." - armor = list(melee = 70, bullet = 30, laser = 50, energy = 40, bomb = 70, bio = 60, rad = 50, fire = 100, acid = 100) + armor = list("melee" = 70, "bullet" = 30, "laser" = 50, "energy" = 40, "bomb" = 70, "bio" = 60, "rad" = 50, "fire" = 100, "acid" = 100) heat_protection = HEAD max_heat_protection_temperature = FIRE_IMMUNITY_HELM_MAX_TEMP_PROTECT resistance_flags = FIRE_PROOF | ACID_PROOF diff --git a/code/modules/clothing/suits/jobs.dm b/code/modules/clothing/suits/jobs.dm index e6331eb8b8..08338d1e7c 100644 --- a/code/modules/clothing/suits/jobs.dm +++ b/code/modules/clothing/suits/jobs.dm @@ -94,7 +94,7 @@ item_state = "det_suit" blood_overlay_type = "coat" body_parts_covered = CHEST|GROIN|LEGS|ARMS - armor = list(melee = 25, bullet = 10, laser = 25, energy = 10, bomb = 0, bio = 0, rad = 0, fire = 0, acid = 45) + armor = list("melee" = 25, "bullet" = 10, "laser" = 25, "energy" = 10, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 45) cold_protection = CHEST|GROIN|LEGS|ARMS heat_protection = CHEST|GROIN|LEGS|ARMS @@ -187,6 +187,6 @@ blood_overlay_type = "coat" body_parts_covered = CHEST|ARMS allowed = list(/obj/item/tank/internals, /obj/item/melee/curator_whip) - armor = list(melee = 25, bullet = 10, laser = 25, energy = 10, bomb = 0, bio = 0, rad = 0, fire = 0, acid = 45) + armor = list("melee" = 25, "bullet" = 10, "laser" = 25, "energy" = 10, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 45) cold_protection = CHEST|ARMS heat_protection = CHEST|ARMS diff --git a/code/modules/clothing/suits/labcoat.dm b/code/modules/clothing/suits/labcoat.dm index 7c7599af3d..b89d0c464b 100644 --- a/code/modules/clothing/suits/labcoat.dm +++ b/code/modules/clothing/suits/labcoat.dm @@ -6,7 +6,7 @@ blood_overlay_type = "coat" body_parts_covered = CHEST|ARMS allowed = list(/obj/item/device/analyzer, /obj/item/stack/medical, /obj/item/dnainjector, /obj/item/reagent_containers/dropper, /obj/item/reagent_containers/syringe, /obj/item/reagent_containers/hypospray, /obj/item/device/healthanalyzer, /obj/item/device/flashlight/pen, /obj/item/reagent_containers/glass/bottle, /obj/item/reagent_containers/glass/beaker, /obj/item/reagent_containers/pill, /obj/item/storage/pill_bottle, /obj/item/paper, /obj/item/melee/classic_baton/telescopic, /obj/item/soap, /obj/item/device/sensor_device, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman) - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 50, rad = 0, fire = 50, acid = 50) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 50, "rad" = 0, "fire" = 50, "acid" = 50) togglename = "buttons" species_exception = list(/datum/species/golem) diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index 5a2e5ade3c..154f1bffdd 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -381,7 +381,7 @@ desc = "A thick jacket with a rubbery, water-resistant shell." icon_state = "pufferjacket" item_state = "hostrench" - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 50, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 50, "rad" = 0, "fire" = 0, "acid" = 0) /obj/item/clothing/suit/jacket/puffer/vest name = "puffer vest" @@ -390,7 +390,7 @@ item_state = "armor" body_parts_covered = CHEST|GROIN cold_protection = CHEST|GROIN - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 30, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 30, "rad" = 0, "fire" = 0, "acid" = 0) /obj/item/clothing/suit/jacket/miljacket name = "military jacket" @@ -469,7 +469,7 @@ body_parts_covered = CHEST|GROIN|ARMS cold_protection = CHEST|GROIN|ARMS min_cold_protection_temperature = FIRE_SUIT_MIN_TEMP_PROTECT - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 10, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 10, "rad" = 0, "fire" = 0, "acid" = 0) allowed = list(/obj/item/device/flashlight, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman, /obj/item/toy, /obj/item/storage/fancy/cigarettes, /obj/item/lighter) /obj/item/clothing/head/hooded/winterhood @@ -485,7 +485,7 @@ name = "captain's winter coat" icon_state = "coatcaptain" item_state = "coatcaptain" - armor = list(melee = 25, bullet = 30, laser = 30, energy = 10, bomb = 25, bio = 0, rad = 0, fire = 0, acid = 50) + armor = list("melee" = 25, "bullet" = 30, "laser" = 30, "energy" = 10, "bomb" = 25, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 50) hoodtype = /obj/item/clothing/head/hooded/winterhood/captain /obj/item/clothing/suit/hooded/wintercoat/captain/Initialize() @@ -499,7 +499,7 @@ name = "security winter coat" icon_state = "coatsecurity" item_state = "coatsecurity" - armor = list(melee = 25, bullet = 15, laser = 30, energy = 10, bomb = 25, bio = 0, rad = 0, fire = 0, acid = 45) + armor = list("melee" = 25, "bullet" = 15, "laser" = 30, "energy" = 10, "bomb" = 25, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 45) hoodtype = /obj/item/clothing/head/hooded/winterhood/security /obj/item/clothing/suit/hooded/wintercoat/security/Initialize() @@ -514,7 +514,7 @@ icon_state = "coatmedical" item_state = "coatmedical" allowed = list(/obj/item/device/analyzer, /obj/item/stack/medical, /obj/item/dnainjector, /obj/item/reagent_containers/dropper, /obj/item/reagent_containers/syringe, /obj/item/reagent_containers/hypospray, /obj/item/device/healthanalyzer, /obj/item/device/flashlight/pen, /obj/item/reagent_containers/glass/bottle, /obj/item/reagent_containers/glass/beaker, /obj/item/reagent_containers/pill, /obj/item/storage/pill_bottle, /obj/item/paper, /obj/item/melee/classic_baton/telescopic, /obj/item/toy, /obj/item/storage/fancy/cigarettes, /obj/item/lighter, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman) - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 50, rad = 0, fire = 0, acid = 45) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 50, "rad" = 0, "fire" = 0, "acid" = 45) hoodtype = /obj/item/clothing/head/hooded/winterhood/medical /obj/item/clothing/head/hooded/winterhood/medical @@ -525,7 +525,7 @@ icon_state = "coatscience" item_state = "coatscience" allowed = list(/obj/item/device/analyzer, /obj/item/stack/medical, /obj/item/dnainjector, /obj/item/reagent_containers/dropper, /obj/item/reagent_containers/syringe, /obj/item/reagent_containers/hypospray, /obj/item/device/healthanalyzer, /obj/item/device/flashlight/pen, /obj/item/reagent_containers/glass/bottle, /obj/item/reagent_containers/glass/beaker, /obj/item/reagent_containers/pill, /obj/item/storage/pill_bottle, /obj/item/paper, /obj/item/melee/classic_baton/telescopic, /obj/item/toy, /obj/item/storage/fancy/cigarettes, /obj/item/lighter, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman) - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 10, bio = 0, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 10, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) hoodtype = /obj/item/clothing/head/hooded/winterhood/science /obj/item/clothing/head/hooded/winterhood/science @@ -535,7 +535,7 @@ name = "engineering winter coat" icon_state = "coatengineer" item_state = "coatengineer" - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 20, fire = 30, acid = 45) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 20, "fire" = 30, "acid" = 45) allowed = list(/obj/item/device/flashlight, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman, /obj/item/device/t_scanner, /obj/item/construction/rcd, /obj/item/pipe_dispenser, /obj/item/toy, /obj/item/storage/fancy/cigarettes, /obj/item/lighter) hoodtype = /obj/item/clothing/head/hooded/winterhood/engineering @@ -575,7 +575,7 @@ icon_state = "coatminer" item_state = "coatminer" allowed = list(/obj/item/pickaxe, /obj/item/device/flashlight, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman, /obj/item/toy, /obj/item/storage/fancy/cigarettes, /obj/item/lighter) - armor = list(melee = 10, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 10, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) hoodtype = /obj/item/clothing/head/hooded/winterhood/miner /obj/item/clothing/head/hooded/winterhood/miner diff --git a/code/modules/clothing/suits/utility.dm b/code/modules/clothing/suits/utility.dm index 22b5ee421b..9fce4145b7 100644 --- a/code/modules/clothing/suits/utility.dm +++ b/code/modules/clothing/suits/utility.dm @@ -57,7 +57,7 @@ desc = "Use in case of bomb." icon_state = "bombsuit" flags_1 = THICKMATERIAL_1 - armor = list(melee = 20, bullet = 0, laser = 20,energy = 10, bomb = 100, bio = 0, rad = 0, fire = 80, acid = 50) + armor = list("melee" = 20, "bullet" = 0, "laser" = 20,"energy" = 10, "bomb" = 100, "bio" = 0, "rad" = 0, "fire" = 80, "acid" = 50) flags_inv = HIDEFACE|HIDEMASK|HIDEEARS|HIDEEYES|HIDEHAIR|HIDEFACIALHAIR dynamic_hair_suffix = "" dynamic_fhair_suffix = "" @@ -82,7 +82,7 @@ flags_1 = THICKMATERIAL_1 body_parts_covered = CHEST|GROIN|LEGS|FEET|ARMS|HANDS slowdown = 2 - armor = list(melee = 20, bullet = 0, laser = 20,energy = 10, bomb = 100, bio = 0, rad = 0, fire = 80, acid = 50) + armor = list("melee" = 20, "bullet" = 0, "laser" = 20,"energy" = 10, "bomb" = 100, "bio" = 0, "rad" = 0, "fire" = 80, "acid" = 50) flags_inv = HIDEJUMPSUIT heat_protection = CHEST|GROIN|LEGS|FEET|ARMS|HANDS max_heat_protection_temperature = ARMOR_MAX_TEMP_PROTECT @@ -121,7 +121,7 @@ desc = "A hood with radiation protective properties. The label reads, 'Made with lead. Please do not consume insulation.'" flags_1 = THICKMATERIAL_1 flags_inv = HIDEMASK|HIDEEARS|HIDEFACE|HIDEEYES|HIDEHAIR|HIDEFACIALHAIR - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 60, rad = 100, fire = 30, acid = 30) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 60, "rad" = 100, "fire" = 30, "acid" = 30) strip_delay = 60 equip_delay_other = 60 flags_cover = HEADCOVERSEYES | HEADCOVERSMOUTH @@ -143,7 +143,7 @@ body_parts_covered = CHEST|GROIN|LEGS|FEET|ARMS|HANDS allowed = list(/obj/item/device/flashlight, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman, /obj/item/device/geiger_counter) slowdown = 1.5 - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 60, rad = 100, fire = 30, acid = 30) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 60, "rad" = 100, "fire" = 30, "acid" = 30) strip_delay = 60 equip_delay_other = 60 flags_inv = HIDEJUMPSUIT diff --git a/code/modules/clothing/suits/wiz_robe.dm b/code/modules/clothing/suits/wiz_robe.dm index 008ced69ea..0ac6dba14e 100644 --- a/code/modules/clothing/suits/wiz_robe.dm +++ b/code/modules/clothing/suits/wiz_robe.dm @@ -4,7 +4,7 @@ icon_state = "wizard" gas_transfer_coefficient = 0.01 // IT'S MAGICAL OKAY JEEZ +1 TO NOT DIE permeability_coefficient = 0.01 - armor = list(melee = 30, bullet = 20, laser = 20, energy = 20, bomb = 20, bio = 20, rad = 20, fire = 100, acid = 100) + armor = list("melee" = 30, "bullet" = 20, "laser" = 20, "energy" = 20, "bomb" = 20, "bio" = 20, "rad" = 20, "fire" = 100, "acid" = 100) strip_delay = 50 equip_delay_other = 50 resistance_flags = FIRE_PROOF | ACID_PROOF @@ -34,7 +34,7 @@ icon_state = "wizard-fake" gas_transfer_coefficient = 1 permeability_coefficient = 1 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) resistance_flags = FLAMMABLE dog_fashion = /datum/dog_fashion/head/blue_wizard @@ -66,7 +66,7 @@ gas_transfer_coefficient = 0.01 permeability_coefficient = 0.01 body_parts_covered = CHEST|GROIN|ARMS|LEGS - armor = list(melee = 30, bullet = 20, laser = 20, energy = 20, bomb = 20, bio = 20, rad = 20, fire = 100, acid = 100) + armor = list("melee" = 30, "bullet" = 20, "laser" = 20, "energy" = 20, "bomb" = 20, "bio" = 20, "rad" = 20, "fire" = 100, "acid" = 100) allowed = list(/obj/item/teleportation_scroll) flags_inv = HIDEJUMPSUIT strip_delay = 50 @@ -123,7 +123,7 @@ item_state = "wizrobe" gas_transfer_coefficient = 1 permeability_coefficient = 1 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) resistance_flags = FLAMMABLE /obj/item/clothing/head/wizard/marisa/fake @@ -132,7 +132,7 @@ icon_state = "marisa" gas_transfer_coefficient = 1 permeability_coefficient = 1 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) resistance_flags = FLAMMABLE /obj/item/clothing/suit/wizrobe/marisa/fake @@ -142,7 +142,7 @@ item_state = "marisarobe" gas_transfer_coefficient = 1 permeability_coefficient = 1 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) resistance_flags = FLAMMABLE /obj/item/clothing/suit/wizrobe/paper @@ -194,7 +194,7 @@ min_cold_protection_temperature = ARMOR_MIN_TEMP_PROTECT max_heat_protection_temperature = ARMOR_MAX_TEMP_PROTECT helmettype = /obj/item/clothing/head/helmet/space/hardsuit/shielded/wizard - armor = list(melee = 30, bullet = 20, laser = 20, energy = 20, bomb = 20, bio = 20, rad = 20, fire = 100, acid = 100) + armor = list("melee" = 30, "bullet" = 20, "laser" = 20, "energy" = 20, "bomb" = 20, "bio" = 20, "rad" = 20, "fire" = 100, "acid" = 100) slowdown = 0 resistance_flags = FIRE_PROOF | ACID_PROOF @@ -205,7 +205,7 @@ item_state = "battlemage" min_cold_protection_temperature = ARMOR_MIN_TEMP_PROTECT max_heat_protection_temperature = ARMOR_MAX_TEMP_PROTECT - armor = list(melee = 30, bullet = 20, laser = 20, energy = 20, bomb = 20, bio = 20, rad = 20, fire = 100, acid = 100) + armor = list("melee" = 30, "bullet" = 20, "laser" = 20, "energy" = 20, "bomb" = 20, "bio" = 20, "rad" = 20, "fire" = 100, "acid" = 100) actions_types = null //No inbuilt light resistance_flags = FIRE_PROOF | ACID_PROOF diff --git a/code/modules/clothing/under/_under.dm b/code/modules/clothing/under/_under.dm index 62fd5b5f5a..dd290fdaa2 100644 --- a/code/modules/clothing/under/_under.dm +++ b/code/modules/clothing/under/_under.dm @@ -4,7 +4,7 @@ body_parts_covered = CHEST|GROIN|LEGS|ARMS permeability_coefficient = 0.9 slot_flags = SLOT_ICLOTHING - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) var/fitted = FEMALE_UNIFORM_FULL // For use in alternate clothing styles for women var/has_sensor = HAS_SENSORS // For the crew computer var/random_sensor = TRUE diff --git a/code/modules/clothing/under/accessories.dm b/code/modules/clothing/under/accessories.dm index df0783e4e7..946769ba41 100644 --- a/code/modules/clothing/under/accessories.dm +++ b/code/modules/clothing/under/accessories.dm @@ -207,7 +207,7 @@ icon_state = "plasma" item_color = "plasma" medaltype = "medal-plasma" - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = -10, acid = 0) //It's made of plasma. Of course it's flammable. + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = -10, "acid" = 0) //It's made of plasma. Of course it's flammable. materials = list(MAT_PLASMA=1000) /obj/item/clothing/accessory/medal/plasma/temperature_expose(datum/gas_mixture/air, exposed_temperature, exposed_volume) @@ -318,7 +318,7 @@ desc = "A hunter's talisman, some say the old gods smile on those who wear it." icon_state = "talisman" item_color = "talisman" - armor = list(melee = 5, bullet = 5, laser = 5, energy = 5, bomb = 20, bio = 20, rad = 5, fire = 0, acid = 25) + armor = list("melee" = 5, "bullet" = 5, "laser" = 5, "energy" = 5, "bomb" = 20, "bio" = 20, "rad" = 5, "fire" = 0, "acid" = 25) /obj/item/clothing/accessory/skullcodpiece @@ -327,4 +327,4 @@ icon_state = "skull" item_color = "skull" above_suit = TRUE - armor = list(melee = 5, bullet = 5, laser = 5, energy = 5, bomb = 20, bio = 20, rad = 5, fire = 0, acid = 25) + armor = list("melee" = 5, "bullet" = 5, "laser" = 5, "energy" = 5, "bomb" = 20, "bio" = 20, "rad" = 5, "fire" = 0, "acid" = 25) diff --git a/code/modules/clothing/under/jobs/civilian.dm b/code/modules/clothing/under/jobs/civilian.dm index 6d522a3706..1115d822ed 100644 --- a/code/modules/clothing/under/jobs/civilian.dm +++ b/code/modules/clothing/under/jobs/civilian.dm @@ -92,7 +92,7 @@ name = "janitor's jumpsuit" icon_state = "janitor" item_color = "janitor" - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 10, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 10, "rad" = 0, "fire" = 0, "acid" = 0) /obj/item/clothing/under/lawyer desc = "Slick threads." diff --git a/code/modules/clothing/under/jobs/engineering.dm b/code/modules/clothing/under/jobs/engineering.dm index cd69aec17e..4ee0963a64 100644 --- a/code/modules/clothing/under/jobs/engineering.dm +++ b/code/modules/clothing/under/jobs/engineering.dm @@ -5,7 +5,7 @@ icon_state = "chiefengineer" item_state = "gy_suit" item_color = "chief" - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 10, fire = 80, acid = 40) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 10, "fire" = 80, "acid" = 40) resistance_flags = NONE /obj/item/clothing/under/rank/atmospheric_technician @@ -22,7 +22,7 @@ icon_state = "engine" item_state = "engi_suit" item_color = "engine" - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 10, fire = 60, acid = 20) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 10, "fire" = 60, "acid" = 20) resistance_flags = NONE /obj/item/clothing/under/rank/roboticist diff --git a/code/modules/clothing/under/jobs/medsci.dm b/code/modules/clothing/under/jobs/medsci.dm index 553424de71..e506f726df 100644 --- a/code/modules/clothing/under/jobs/medsci.dm +++ b/code/modules/clothing/under/jobs/medsci.dm @@ -7,7 +7,7 @@ icon_state = "director" item_state = "lb_suit" item_color = "director" - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 10, bio = 10, rad = 0, fire = 0, acid = 35) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 10, "bio" = 10, "rad" = 0, "fire" = 0, "acid" = 35) can_adjust = FALSE /obj/item/clothing/under/rank/research_director/alt @@ -16,7 +16,7 @@ icon_state = "rdwhimsy" item_state = "rdwhimsy" item_color = "rdwhimsy" - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 10, bio = 10, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 10, "bio" = 10, "rad" = 0, "fire" = 0, "acid" = 0) can_adjust = TRUE alt_covers_chest = TRUE @@ -26,7 +26,7 @@ icon_state = "rdturtle" item_state = "p_suit" item_color = "rdturtle" - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 10, bio = 10, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 10, "bio" = 10, "rad" = 0, "fire" = 0, "acid" = 0) can_adjust = TRUE alt_covers_chest = TRUE @@ -37,7 +37,7 @@ item_state = "w_suit" item_color = "toxinswhite" permeability_coefficient = 0.5 - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 10, bio = 0, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 10, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) /obj/item/clothing/under/rank/chemist @@ -47,7 +47,7 @@ item_state = "w_suit" item_color = "chemistrywhite" permeability_coefficient = 0.5 - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 10, rad = 0, fire = 50, acid = 65) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 10, "rad" = 0, "fire" = 50, "acid" = 65) /* * Medical @@ -59,7 +59,7 @@ item_state = "w_suit" item_color = "cmo" permeability_coefficient = 0.5 - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 10, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 10, "rad" = 0, "fire" = 0, "acid" = 0) /obj/item/clothing/under/rank/geneticist desc = "It's made of a special fiber that gives special protection against biohazards. It has a genetics rank stripe on it." @@ -68,7 +68,7 @@ item_state = "w_suit" item_color = "geneticswhite" permeability_coefficient = 0.5 - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 10, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 10, "rad" = 0, "fire" = 0, "acid" = 0) /obj/item/clothing/under/rank/virologist desc = "It's made of a special fiber that gives special protection against biohazards. It has a virologist rank stripe on it." @@ -77,7 +77,7 @@ item_state = "w_suit" item_color = "virologywhite" permeability_coefficient = 0.5 - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 10, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 10, "rad" = 0, "fire" = 0, "acid" = 0) /obj/item/clothing/under/rank/nursesuit desc = "It's a jumpsuit commonly worn by nursing staff in the medical department." @@ -86,7 +86,7 @@ item_state = "w_suit" item_color = "nursesuit" permeability_coefficient = 0.5 - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 10, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 10, "rad" = 0, "fire" = 0, "acid" = 0) fitted = NO_FEMALE_UNIFORM can_adjust = FALSE @@ -97,7 +97,7 @@ item_state = "w_suit" item_color = "medical" permeability_coefficient = 0.5 - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 10, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 10, "rad" = 0, "fire" = 0, "acid" = 0) /obj/item/clothing/under/rank/medical/blue name = "medical scrubs" diff --git a/code/modules/clothing/under/jobs/security.dm b/code/modules/clothing/under/jobs/security.dm index 0fdb155526..be8a113f22 100644 --- a/code/modules/clothing/under/jobs/security.dm +++ b/code/modules/clothing/under/jobs/security.dm @@ -15,7 +15,7 @@ icon_state = "rsecurity" item_state = "r_suit" item_color = "rsecurity" - armor = list(melee = 10, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0, fire = 30, acid = 30) + armor = list("melee" = 10, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 30, "acid" = 30) strip_delay = 50 alt_covers_chest = TRUE sensor_mode = SENSOR_COORDS @@ -35,7 +35,7 @@ icon_state = "rwarden" item_state = "r_suit" item_color = "rwarden" - armor = list(melee = 10, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0, fire = 30, acid = 30) + armor = list("melee" = 10, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 30, "acid" = 30) strip_delay = 50 alt_covers_chest = TRUE sensor_mode = 3 @@ -57,7 +57,7 @@ icon_state = "detective" item_state = "det" item_color = "detective" - armor = list(melee = 10, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0, fire = 30, acid = 30) + armor = list("melee" = 10, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 30, "acid" = 30) strip_delay = 50 alt_covers_chest = TRUE sensor_mode = 3 @@ -80,7 +80,7 @@ icon_state = "rhos" item_state = "r_suit" item_color = "rhos" - armor = list(melee = 10, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 50) + armor = list("melee" = 10, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 50) strip_delay = 60 alt_covers_chest = TRUE sensor_mode = 3 diff --git a/code/modules/clothing/under/miscellaneous.dm b/code/modules/clothing/under/miscellaneous.dm index 1fccac5c43..18ec26a9a5 100644 --- a/code/modules/clothing/under/miscellaneous.dm +++ b/code/modules/clothing/under/miscellaneous.dm @@ -144,7 +144,7 @@ gas_transfer_coefficient = 0.01 permeability_coefficient = 0.01 body_parts_covered = CHEST|GROIN|LEGS|FEET|ARMS|HANDS - armor = list(melee = 100, bullet = 100, laser = 100,energy = 100, bomb = 100, bio = 100, rad = 100, fire = 100, acid = 100) + armor = list("melee" = 100, "bullet" = 100, "laser" = 100,"energy" = 100, "bomb" = 100, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100) cold_protection = CHEST | GROIN | LEGS | FEET | ARMS | HANDS min_cold_protection_temperature = SPACE_SUIT_MIN_TEMP_PROTECT heat_protection = CHEST|GROIN|LEGS|FEET|ARMS|HANDS @@ -617,7 +617,7 @@ icon_state = "plasmaman" item_state = "plasmaman" item_color = "plasmaman" - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 100, rad = 0, fire = 95, acid = 95) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 100, "rad" = 0, "fire" = 95, "acid" = 95) body_parts_covered = CHEST|GROIN|LEGS|FEET|ARMS|HANDS can_adjust = FALSE strip_delay = 80 diff --git a/code/modules/clothing/under/syndicate.dm b/code/modules/clothing/under/syndicate.dm index 0db0ea11e9..34ba1b8bb1 100644 --- a/code/modules/clothing/under/syndicate.dm +++ b/code/modules/clothing/under/syndicate.dm @@ -5,7 +5,7 @@ item_state = "bl_suit" item_color = "syndicate" has_sensor = NO_SENSORS - armor = list(melee = 10, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 40) + armor = list("melee" = 10, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 40) alt_covers_chest = TRUE /obj/item/clothing/under/syndicate/tacticool @@ -14,7 +14,7 @@ icon_state = "tactifool" item_state = "bl_suit" item_color = "tactifool" - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 40) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 40) /obj/item/clothing/under/syndicate/sniper name = "Tactical turtleneck suit" @@ -36,7 +36,7 @@ icon_state = "trackpants" item_color = "trackpants" can_adjust = FALSE - armor = list(melee = 10, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 10, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) resistance_flags = NONE /obj/item/clothing/under/syndicate/combat diff --git a/code/modules/clothing/under/trek.dm b/code/modules/clothing/under/trek.dm index e4069a7fad..9564d03909 100644 --- a/code/modules/clothing/under/trek.dm +++ b/code/modules/clothing/under/trek.dm @@ -19,7 +19,7 @@ icon_state = "trek_engsec" item_color = "trek_engsec" item_state = "r_suit" - armor = list(melee = 10, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0, fire = 0, acid = 0) //more sec than eng, but w/e. + armor = list("melee" = 10, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) //more sec than eng, but w/e. strip_delay = 50 /obj/item/clothing/under/trek/medsci diff --git a/code/modules/events/holiday/xmas.dm b/code/modules/events/holiday/xmas.dm index 8986c6a44b..ce6c167dde 100644 --- a/code/modules/events/holiday/xmas.dm +++ b/code/modules/events/holiday/xmas.dm @@ -37,7 +37,7 @@ icon_state = "xmashat" desc = "A crappy paper hat that you are REQUIRED to wear." flags_inv = 0 - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 0, "acid" = 0) /obj/effect/landmark/xmastree name = "christmas tree spawner" diff --git a/code/modules/integrated_electronics/core/assemblies.dm b/code/modules/integrated_electronics/core/assemblies.dm index 362342942b..510d7da94e 100644 --- a/code/modules/integrated_electronics/core/assemblies.dm +++ b/code/modules/integrated_electronics/core/assemblies.dm @@ -21,7 +21,7 @@ var/charge_delay = 4 var/use_cyborg_cell = TRUE max_integrity = 50 - armor = list(melee = 50, bullet = 70, laser = 70, energy = 100, bomb = 10, bio = 100, rad = 100, fire = 0, acid = 0) + armor = list("melee" = 50, "bullet" = 70, "laser" = 70, "energy" = 100, "bomb" = 10, "bio" = 100, "rad" = 100, "fire" = 0, "acid" = 0) /obj/item/device/electronic_assembly/proc/check_interactivity(mob/user) return user.canUseTopic(src, BE_CLOSE) diff --git a/code/modules/library/lib_items.dm b/code/modules/library/lib_items.dm index 7ecb0529ba..92122411e4 100644 --- a/code/modules/library/lib_items.dm +++ b/code/modules/library/lib_items.dm @@ -20,7 +20,7 @@ opacity = 0 resistance_flags = FLAMMABLE max_integrity = 200 - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 0) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 0) var/state = 0 var/list/allowed_books = list(/obj/item/book, /obj/item/spellbook, /obj/item/storage/book) //Things allowed in the bookcase diff --git a/code/modules/mining/equipment/explorer_gear.dm b/code/modules/mining/equipment/explorer_gear.dm index 57754cfb45..fc26fac0bc 100644 --- a/code/modules/mining/equipment/explorer_gear.dm +++ b/code/modules/mining/equipment/explorer_gear.dm @@ -10,7 +10,7 @@ max_heat_protection_temperature = FIRE_SUIT_MAX_TEMP_PROTECT heat_protection = CHEST|GROIN|LEGS|ARMS hoodtype = /obj/item/clothing/head/hooded/explorer - armor = list(melee = 30, bullet = 20, laser = 20, energy = 20, bomb = 50, bio = 100, rad = 50, fire = 50, acid = 50) + armor = list("melee" = 30, "bullet" = 20, "laser" = 20, "energy" = 20, "bomb" = 50, "bio" = 100, "rad" = 50, "fire" = 50, "acid" = 50) allowed = list(/obj/item/device/flashlight, /obj/item/tank/internals, /obj/item/resonator, /obj/item/device/mining_scanner, /obj/item/device/t_scanner/adv_mining_scanner, /obj/item/gun/energy/kinetic_accelerator, /obj/item/pickaxe) resistance_flags = FIRE_PROOF @@ -22,7 +22,7 @@ flags_inv = HIDEHAIR|HIDEFACE|HIDEEARS min_cold_protection_temperature = FIRE_HELM_MIN_TEMP_PROTECT max_heat_protection_temperature = FIRE_HELM_MAX_TEMP_PROTECT - armor = list(melee = 30, bullet = 20, laser = 20, energy = 20, bomb = 50, bio = 100, rad = 50, fire = 50, acid = 50) + armor = list("melee" = 30, "bullet" = 20, "laser" = 20, "energy" = 20, "bomb" = 50, "bio" = 100, "rad" = 50, "fire" = 50, "acid" = 50) resistance_flags = FIRE_PROOF /obj/item/clothing/mask/gas/explorer @@ -33,7 +33,7 @@ visor_flags_inv = HIDEFACIALHAIR visor_flags_cover = MASKCOVERSMOUTH actions_types = list(/datum/action/item_action/adjust) - armor = list(melee = 10, bullet = 5, laser = 5, energy = 5, bomb = 0, bio = 50, rad = 0, fire = 20, acid = 40) + armor = list("melee" = 10, "bullet" = 5, "laser" = 5, "energy" = 5, "bomb" = 0, "bio" = 50, "rad" = 0, "fire" = 20, "acid" = 40) resistance_flags = FIRE_PROOF /obj/item/clothing/mask/gas/explorer/attack_self(mob/user) diff --git a/code/modules/mining/equipment/marker_beacons.dm b/code/modules/mining/equipment/marker_beacons.dm index e93e3713c3..b1a4d522de 100644 --- a/code/modules/mining/equipment/marker_beacons.dm +++ b/code/modules/mining/equipment/marker_beacons.dm @@ -72,7 +72,7 @@ GLOBAL_LIST_INIT(marker_beacon_colors, list( icon = 'icons/obj/lighting.dmi' icon_state = "marker" layer = BELOW_OPEN_DOOR_LAYER - armor = list(melee = 50, bullet = 75, laser = 75, energy = 75, bomb = 25, bio = 100, rad = 100, fire = 25, acid = 0) + armor = list("melee" = 50, "bullet" = 75, "laser" = 75, "energy" = 75, "bomb" = 25, "bio" = 100, "rad" = 100, "fire" = 25, "acid" = 0) max_integrity = 50 anchored = TRUE light_range = 2 diff --git a/code/modules/mob/living/carbon/human/species_types/golems.dm b/code/modules/mob/living/carbon/human/species_types/golems.dm index 2fd9812340..621eeb609a 100644 --- a/code/modules/mob/living/carbon/human/species_types/golems.dm +++ b/code/modules/mob/living/carbon/human/species_types/golems.dm @@ -696,7 +696,7 @@ name = "pile of bandages" desc = "It emits a strange aura, as if there was still life within it..." max_integrity = 50 - armor = list(melee = 90, bullet = 90, laser = 25, energy = 80, bomb = 50, bio = 100, fire = -50, acid = -50) + armor = list("melee" = 90, "bullet" = 90, "laser" = 25, "energy" = 80, "bomb" = 50, "bio" = 100, "fire" = -50, "acid" = -50) icon = 'icons/obj/items_and_weapons.dmi' icon_state = "pile_bandages" resistance_flags = FLAMMABLE diff --git a/code/modules/modular_computers/computers/item/computer.dm b/code/modules/modular_computers/computers/item/computer.dm index e1cc2f3cb6..2d50d4a186 100644 --- a/code/modules/modular_computers/computers/item/computer.dm +++ b/code/modules/modular_computers/computers/item/computer.dm @@ -31,7 +31,7 @@ integrity_failure = 50 max_integrity = 100 - armor = list(melee = 0, bullet = 20, laser = 20, energy = 100, bomb = 0, bio = 100, rad = 100, fire = 0, acid = 0) + armor = list("melee" = 0, "bullet" = 20, "laser" = 20, "energy" = 100, "bomb" = 0, "bio" = 100, "rad" = 100, "fire" = 0, "acid" = 0) // Important hardware (must be installed for computer to work) diff --git a/code/modules/ninja/suit/head.dm b/code/modules/ninja/suit/head.dm index 7ada5de3ea..a62f871f56 100644 --- a/code/modules/ninja/suit/head.dm +++ b/code/modules/ninja/suit/head.dm @@ -5,7 +5,7 @@ name = "ninja hood" icon_state = "s-ninja" item_state = "s-ninja_mask" - armor = list(melee = 60, bullet = 50, laser = 30,energy = 15, bomb = 30, bio = 30, rad = 25, fire = 100, acid = 100) + armor = list("melee" = 60, "bullet" = 50, "laser" = 30,"energy" = 15, "bomb" = 30, "bio" = 30, "rad" = 25, "fire" = 100, "acid" = 100) strip_delay = 12 resistance_flags = LAVA_PROOF | FIRE_PROOF | ACID_PROOF blockTracking = 1//Roughly the only unique thing about this helmet. diff --git a/code/modules/ninja/suit/shoes.dm b/code/modules/ninja/suit/shoes.dm index 4cc0bc86c9..df8caf0291 100644 --- a/code/modules/ninja/suit/shoes.dm +++ b/code/modules/ninja/suit/shoes.dm @@ -7,7 +7,7 @@ permeability_coefficient = 0.01 flags_1 = NOSLIP_1 resistance_flags = LAVA_PROOF | FIRE_PROOF | ACID_PROOF - armor = list(melee = 60, bullet = 50, laser = 30,energy = 15, bomb = 30, bio = 30, rad = 30, fire = 100, acid = 100) + armor = list("melee" = 60, "bullet" = 50, "laser" = 30,"energy" = 15, "bomb" = 30, "bio" = 30, "rad" = 30, "fire" = 100, "acid" = 100) strip_delay = 120 cold_protection = FEET min_cold_protection_temperature = SHOES_MIN_TEMP_PROTECT diff --git a/code/modules/ninja/suit/suit.dm b/code/modules/ninja/suit/suit.dm index 4e7ad477e2..ff539b8c29 100644 --- a/code/modules/ninja/suit/suit.dm +++ b/code/modules/ninja/suit/suit.dm @@ -19,7 +19,7 @@ Contents: allowed = list(/obj/item/gun, /obj/item/ammo_box, /obj/item/ammo_casing, /obj/item/melee/baton, /obj/item/restraints/handcuffs, /obj/item/tank/internals, /obj/item/stock_parts/cell) slowdown = 1 resistance_flags = LAVA_PROOF | ACID_PROOF - armor = list(melee = 60, bullet = 50, laser = 30,energy = 15, bomb = 30, bio = 30, rad = 30, fire = 100, acid = 100) + armor = list("melee" = 60, "bullet" = 50, "laser" = 30,"energy" = 15, "bomb" = 30, "bio" = 30, "rad" = 30, "fire" = 100, "acid" = 100) strip_delay = 12 actions_types = list(/datum/action/item_action/initialize_ninja_suit, /datum/action/item_action/ninjasmoke, /datum/action/item_action/ninjaboost, /datum/action/item_action/ninjapulse, /datum/action/item_action/ninjastar, /datum/action/item_action/ninjanet, /datum/action/item_action/ninja_sword_recall, /datum/action/item_action/ninja_stealth, /datum/action/item_action/toggle_glove) diff --git a/code/modules/power/apc.dm b/code/modules/power/apc.dm index c68b2bedb0..fcc0d3a7b3 100644 --- a/code/modules/power/apc.dm +++ b/code/modules/power/apc.dm @@ -116,7 +116,7 @@ if (!req_access) req_access = list(ACCESS_ENGINE_EQUIP) if (!armor) - armor = list(melee = 20, bullet = 20, laser = 10, energy = 100, bomb = 30, bio = 100, rad = 100, fire = 90, acid = 50) + armor = list("melee" = 20, "bullet" = 20, "laser" = 10, "energy" = 100, "bomb" = 30, "bio" = 100, "rad" = 100, "fire" = 90, "acid" = 50) ..() GLOB.apcs_list += src diff --git a/code/modules/power/lighting.dm b/code/modules/power/lighting.dm index 022b1f7d5b..719aa082ca 100644 --- a/code/modules/power/lighting.dm +++ b/code/modules/power/lighting.dm @@ -43,7 +43,7 @@ anchored = TRUE layer = WALL_OBJ_LAYER max_integrity = 200 - armor = list(melee = 50, bullet = 10, laser = 10, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 80, acid = 50) + armor = list("melee" = 50, "bullet" = 10, "laser" = 10, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 80, "acid" = 50) var/stage = 1 var/fixture_type = "tube" diff --git a/code/modules/power/singularity/field_generator.dm b/code/modules/power/singularity/field_generator.dm index 4f39d34954..4315cf70b5 100644 --- a/code/modules/power/singularity/field_generator.dm +++ b/code/modules/power/singularity/field_generator.dm @@ -28,7 +28,7 @@ field_generator power level display use_power = NO_POWER_USE max_integrity = 500 //100% immune to lasers and energy projectiles since it absorbs their energy. - armor = list(melee = 25, bullet = 10, laser = 100, energy = 100, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 70) + armor = list("melee" = 25, "bullet" = 10, "laser" = 100, "energy" = 100, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 70) var/const/num_power_levels = 6 // Total number of power level icon has var/power_level = 0 var/active = FG_OFFLINE diff --git a/code/modules/power/singularity/particle_accelerator/particle_accelerator.dm b/code/modules/power/singularity/particle_accelerator/particle_accelerator.dm index b7808abc1f..9f7c3ba05a 100644 --- a/code/modules/power/singularity/particle_accelerator/particle_accelerator.dm +++ b/code/modules/power/singularity/particle_accelerator/particle_accelerator.dm @@ -27,7 +27,7 @@ anchored = FALSE density = TRUE max_integrity = 500 - armor = list(melee = 30, bullet = 20, laser = 20, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 90, acid = 80) + armor = list("melee" = 30, "bullet" = 20, "laser" = 20, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 90, "acid" = 80) var/obj/machinery/particle_accelerator/control_box/master = null var/construction_state = PA_CONSTRUCTION_UNSECURED diff --git a/code/modules/reagents/reagent_containers/glass.dm b/code/modules/reagents/reagent_containers/glass.dm index 9d26b65151..f8a01b16f0 100644 --- a/code/modules/reagents/reagent_containers/glass.dm +++ b/code/modules/reagents/reagent_containers/glass.dm @@ -230,7 +230,7 @@ flags_inv = HIDEHAIR slot_flags = SLOT_HEAD resistance_flags = NONE - armor = list(melee = 10, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 75, acid = 50) //Weak melee protection, because you can wear it on your head + armor = list("melee" = 10, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 75, "acid" = 50) //Weak melee protection, because you can wear it on your head slot_equipment_priority = list( \ slot_back, slot_wear_id,\ slot_w_uniform, slot_wear_suit,\ diff --git a/code/modules/recycling/disposal/bin.dm b/code/modules/recycling/disposal/bin.dm index 71235045f3..5b9212339a 100644 --- a/code/modules/recycling/disposal/bin.dm +++ b/code/modules/recycling/disposal/bin.dm @@ -6,7 +6,7 @@ icon = 'icons/obj/atmospherics/pipes/disposal.dmi' anchored = TRUE density = TRUE - armor = list(melee = 25, bullet = 10, laser = 10, energy = 100, bomb = 0, bio = 100, rad = 100, fire = 90, acid = 30) + armor = list("melee" = 25, "bullet" = 10, "laser" = 10, "energy" = 100, "bomb" = 0, "bio" = 100, "rad" = 100, "fire" = 90, "acid" = 30) max_integrity = 200 resistance_flags = FIRE_PROOF interact_open = TRUE From 482c21b296e77165a1abbdf87498077b9cf0d69c Mon Sep 17 00:00:00 2001 From: Chayse Ramsay Date: Fri, 16 Feb 2018 12:44:23 +0000 Subject: [PATCH 09/94] Slimepeople Rework --- .../carbon/human/species_types/jellypeople.dm | 124 +++++++++++++++++- config/game_options.txt | 2 +- icons/mob/human_parts_greyscale.dmi | Bin 56853 -> 61257 bytes 3 files changed, 119 insertions(+), 7 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species_types/jellypeople.dm b/code/modules/mob/living/carbon/human/species_types/jellypeople.dm index 0299d64621..db27cf81b8 100644 --- a/code/modules/mob/living/carbon/human/species_types/jellypeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/jellypeople.dm @@ -4,11 +4,12 @@ id = "jelly" default_color = "00FF90" say_mod = "chirps" - species_traits = list(SPECIES_ORGANIC,MUTCOLORS,EYECOLOR,NOBLOOD,VIRUSIMMUNE,TOXINLOVER) + species_traits = list(SPECIES_ORGANIC,MUTCOLORS,EYECOLOR,HAIR,FACEHAIR,TOXINLOVER) meat = /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/slime exotic_blood = "slimejelly" damage_overlay_type = "" var/datum/action/innate/regenerate_limbs/regenerate_limbs + var/datum/action/innate/slime_change/slime_change liked_food = MEAT coldmod = 6 // = 3x cold damage heatmod = 0.5 // = 1/4x heat damage @@ -28,6 +29,8 @@ if(ishuman(C)) regenerate_limbs = new regenerate_limbs.Grant(C) + slime_change = new + slime_change.Grant(C) C.faction |= "slime" /datum/species/jelly/spec_life(mob/living/carbon/human/H) @@ -103,15 +106,123 @@ return to_chat(H, "...but there is not enough of you to go around! You must attain more mass to heal!") +/datum/action/innate/slime_change + name = "Alter Form" + check_flags = AB_CHECK_CONSCIOUS + button_icon_state = "slimesplit" //placeholder + icon_icon = 'icons/mob/actions/actions_slime.dmi' + background_icon_state = "bg_alien" + +/datum/action/innate/slime_change/Activate() + var/mob/living/carbon/human/H = owner + if(!isjellyperson(H)) + return + else + H.visible_message("[owner] gains a look of \ + concentration while standing perfectly still.\ + Their body seems to shift and starts getting more goo-like.", + "You focus intently on altering your body while \ + standing perfectly still...") + change_form() + +/datum/action/innate/slime_change/proc/change_form() + var/mob/living/carbon/human/H = owner + var/select_alteration = input(owner, "Select what part of your form to alter", "Form Alteration", "cancel") in list("Hair Style", "Genitals", "Tail", "Ears", "Taur body", "Cancel") + if(select_alteration == "Hair Style") + if(H.gender == MALE) + var/new_style = input(owner, "Select a facial hair style", "Hair Alterations") as null|anything in GLOB.facial_hair_styles_list + if(new_style) + H.facial_hair_style = new_style + else + H.facial_hair_style = "Shaved" + //handle normal hair + var/new_style = input(owner, "Select a hair style", "Hair Alterations") as null|anything in GLOB.hair_styles_list + if(new_style) + H.hair_style = new_style + H.update_hair() + else if (select_alteration == "Genitals") + var/list/organs = list() + var/operation = input("Select organ operation.", "Organ Manipulation", "cancel") in list("add sexual organ", "remove sexual organ", "cancel") + switch(operation) + if("add sexual organ") + var/new_organ = input("Select sexual organ:", "Organ Manipulation") in list("Penis", "Testicles", "Breasts", "Vagina", "Womb", "Cancel") + if(new_organ == "Penis") + H.give_penis() + else if(new_organ == "Testicles") + H.give_balls() + else if(new_organ == "Breasts") + H.give_breasts() + else if(new_organ == "Vagina") + H.give_vagina() + else if(new_organ == "Womb") + H.give_womb() + else + return + if("remove sexual organ") + for(var/obj/item/organ/genital/X in H.internal_organs) + var/obj/item/organ/I = X + organs["[I.name] ([I.type])"] = I + var/obj/item/organ = input("Select sexual organ:", "Organ Manipulation", null) in organs + organ = organs[organ] + if(!organ) + return + var/obj/item/organ/genital/O + if(isorgan(organ)) + O = organ + O.Remove(H) + organ.forceMove(get_turf(H)) + qdel(organ) + H.update_body() + else if (select_alteration == "Ears") + var/new_ears + new_ears = input(owner, "Choose your character's ears:", "Ear Alteration") as null|anything in GLOB.mam_ears_list + if(new_ears) + H.dna.features["mam_ears"] = new_ears + H.update_body() + else if (select_alteration == "Tail") + var/new_tail + new_tail = input(owner, "Choose your character's tail:", "Tail Alteration") as null|anything in GLOB.mam_tails_list + if(new_tail) + H.dna.features["mam_tail"] = new_tail + if(new_tail != "None") + H.dna.features["taur"] = "None" + H.update_body() + else if (select_alteration == "Taur body") + var/new_taur + new_taur = input(owner, "Choose your character's tauric body:", "Taur Body Alteration") as null|anything in GLOB.taur_list + if(new_taur) + H.dna.features["taur"] = new_taur + if(new_taur != "None") + H.dna.features["mam_tail"] = "None" + H.dna.features["xenotail"] = "None" + H.update_body() + else + return + ////////////////////////////////////////////////////////SLIMEPEOPLE/////////////////////////////////////////////////////////////////// +/datum/species/jelly/roundstartslime + name = "Slimeperson" + id = "slimeperson" + default_color = "00FFFF" + species_traits = list(SPECIES_ORGANIC,MUTCOLORS,EYECOLOR,HAIR,FACEHAIR,NOBLOOD,TOXINLOVER) + mutant_bodyparts = list("mam_tail", "mam_ears", "taur") + default_features = list("mcolor" = "FFF", "mam_tail" = "None", "mam_ears" = "None") + say_mod = "says" + hair_color = "mutcolor" + hair_alpha = 180 + liked_food = MEAT + coldmod = 12 + //Slime people are able to split like slimes, retaining a single mind that can swap between bodies at will, even after death. /datum/species/jelly/slime - name = "Slimeperson" + name = "Xenobiological Slimeperson" id = "slime" default_color = "00FFFF" species_traits = list(SPECIES_ORGANIC,MUTCOLORS,EYECOLOR,HAIR,FACEHAIR,NOBLOOD,TOXINLOVER) + mutant_bodyparts = list("mam_tail", "mam_ears", "taur") + default_features = list("mcolor" = "FFF", "mam_tail" = "None", "mam_ears" = "None") say_mod = "says" hair_color = "mutcolor" hair_alpha = 150 @@ -121,23 +232,23 @@ var/datum/action/innate/swap_body/swap_body /datum/species/jelly/slime/on_species_loss(mob/living/carbon/C) -/* if(slime_split) + if(slime_split) slime_split.Remove(C) if(swap_body) swap_body.Remove(C) bodies -= C // This means that the other bodies maintain a link // so if someone mindswapped into them, they'd still be shared. - bodies = null */ + bodies = null C.blood_volume = min(C.blood_volume, BLOOD_VOLUME_NORMAL) ..() /datum/species/jelly/slime/on_species_gain(mob/living/carbon/C, datum/species/old_species) ..() if(ishuman(C)) - /* slime_split = new + slime_split = new slime_split.Grant(C) swap_body = new - swap_body.Grant(C)*/ + swap_body.Grant(C) if(!bodies || !bodies.len) bodies = list(C) @@ -718,3 +829,4 @@ else to_chat(H, "You can't seem to link [target]'s mind...") to_chat(target, "The foreign presence leaves your mind.") + diff --git a/config/game_options.txt b/config/game_options.txt index a3c6399013..bd39305cf7 100644 --- a/config/game_options.txt +++ b/config/game_options.txt @@ -405,7 +405,7 @@ ROUNDSTART_RACES plasmaman ## Races that are straight upgrades. If these are on expect powergamers to always pick them #ROUNDSTART_RACES skeleton #ROUNDSTART_RACES zombie -#ROUNDSTART_RACES slime +ROUNDSTART_RACES slimeperson #ROUNDSTART_RACES pod #ROUNDSTART_RACES military_synth #ROUNDSTART_RACES agent diff --git a/icons/mob/human_parts_greyscale.dmi b/icons/mob/human_parts_greyscale.dmi index c65a2149328567735b52297ef7210bebf0324459..63596ad09461e9e46b7d19b24283168a339d5405 100644 GIT binary patch literal 61257 zcmbTe2UL^a(=HlRMDZsG2q;n%5s<1Vy;(q!u2gA3Kv8<{&Gw^5W z0jZ&Pqy`Kngc5S*)&KXc@1DEvI(Hq`(uCwK``vr?%rnnCL#Vdq&7-tzv?vtn=q(kc zJ1EqCbNF}V&_Vb_LxJuU3bn7(N7v9z>AtI_%OfYZM~)6Clvfh|O|`?&h2uA@7te=S ziLy!N#DBXwamJhaalwi3ya1ChmrglpVzaATHxaT$&otnPja zdXiJTvUCgYI2HZ#J+O9D#_rl^VsE}Uv1|Kx<8-m)!n@_=Y*WjTk8}%#gVi!4iMKd< zzVG|uiV3a|ugLN}yh}UbYRen-VZX*_(>xB1bRC81(brTV%0$1~3? zUeD8}g)FU)7v@nPbj7camlrJ#UPe3d-)+Hh{7ITO+k%hYw(U~KZK;*3+@fWv{eh-! zSn4f%ROi`&RUNOg3~idrzR`EnTvGoK`z)u4nFF^7gJFk;O8xyMb*((s-zC8)o$hlQ zpA$xE#W3et=Wl)8_vWtp*Jt)i^*+AN6&E-5|3KrKc9s->T6e6t=wP}n1Zz9;5~_k4 zSusshtp@EGp4r1!41+{1%BcolJ=m3L;x`nv-V-o1j634lmr!%y8t;&z_3pkySv@GZ zvT6@j@&k5-5*+pTg*IwZQ-Hyld8(+zAK$-MG+EC&bY3w;Ma{pbn!sO3xHKkow*AxR zmIkTat=E^^A7G#CzI;L@Cc8bGTP;83jM>6d zDq*DNN~AL4J00 zaVy~C!=;Nq)_zFywR`_c@^yGy`ZHjqVZJ3&@)bJWKBT4t;WxvdhBE z&dy%%WgiP?-#tFINZgdEVU_mc;6kBvU+nuQhlMUUuck&}XD2P~OzZT4pY(*G!9lCp z_T-dl?d`peWLdtLn3$A$Ov4^_XSwoz;|q?zU!*FE#*3mQ24T~`bFsTxm;G9EPf2Ne zdppjL8=Eo}&w}RWuCA`W;c_VWyS}5NW2dXE=kn{45(!H}wL>80?*ThR{H4A<_+QY+ z0j}(_IpTTBc0USLAaUH>@Z#*WWK8pM`L}Nl1b@Gm<2ISI)L;1h^WldIsqt&G9jC%Q z_jbLTXV)4g&#wo1U%GV3WqDZIlF$xAhF=;csZc1-+d=pAdg{;`&w4+wQa?7}<>L$I z9gbE}@>uFmt3Gs_`sWJ{SsupF{*J&J>e~kW+*|>qwCOePM>aN$4AGxH@xtX-CxW@y zLRVFvFW@bIopn?M+EZ$vJ8*9>!>O-VfrzTU%S&yfNnmYLpz9pV`~n zSA1is=i=aqZEn8x$jGK~xe9-Hrc#ipRzGC-S9zNd~#f2NC!2jqX z^2X{+D>8kHv`0`VlN(h3>fKiE|J9a=ELf5E+Jm$8@t5|t)@El0i*32NUGRhAA7WOJ zJC{Gd@=1r&8*9D4D5EB5_dgp3M<%CMVY<-1oL0Kbo?1G9rkS z8vmUo`;hC`uivo9!N-DGC=1rYlZwg7332;GeK#PKI*y6J=u=H9Jv1a7M}=5L&0Z4- z&Uiu&2bmtVoQB$u8rGkmk7?I4oQ*Ryt$!Dm+A({-`;!JEU7#}!b8FE@ZGM&O*PjwC zdbTERf`O>;SnTdUHcN9wfM$eiU#zUZZoNm>2n7tI=utOsR$g9l;DZWEZ!i~p($&+$ zGux3GPp`Q9^WlW&O7*6ZtjAJ;>re6-Z7FuTI(v~PuV#JHbI3SbY!NjBsz4xGrEbqs zCSRb&r93GlRB&Lqo%ZAb#=U8SZ*AX6bs3sPEp=b=hO*1(qDK6d&h97bKp3O|FH|+x6#W?4*W`H}( zy>|n&k)a{~_GnMu3Duc3Z)wlv zr05tG@EOy?<*qjzcP=U_agvxZ#H(UzOT4a#oP#Q&VftmE~3`1Hz4QG3inbL zcEG+Zao590mirt8XcVh(u_xd(n2uASpE*nG@?u{&yO6gxY9p|{?~zf&$&gp!7F|O_ z#_OL)N6qlKt63zllP{$;S$Pj(Pm7pU%?(_=9If(kDet_SHebQp(d{g`^`FB2ah@xxk z8f63bs``esGJ9!aBojQplSpNKdIdHWvyaY!pP5zN$suIW_1}&9=DDYZLY1Yvt#XAb zMdT@nOG*x*W$7&*Iyey5xol#nqgm^5ySsk;@vY6%(;v^d*q+PJ$x&0PGh^=drTz;^_S7tRa70Z@3zq# zSME(7JDvf?721?{t!a8;2qpxN&ljLUeZ5X~5OwJFDM^Q>Pa28S4UwlBEaGHIS1y(d z&wCU)#D6$dQBlFePA9tcfmTe%VYKReqJ;gcL`g@s@PVH{kGZfIA?EFyD1g#qFk(Yb z>)-49`Ez_w^(#F3T%_daA!_@Ls|KUs&(cgpSeqm+Hs=xP7f8lOA!yZRdpp~Qymjj9 z?Y+f+{1x2j{cN?xD(V=9?$r4iWs2iKk+PDKgu^g@nzjnO7_L`oPB`@oc(&>3=)@5A zL?uU8YIYo^a)M9-H{mf1#ba(_;-{3U3Wje52T1)pT6aD|u=)FIBy>cTo19v#p|d?# zsJ^KfRE)Tn+$LDi_~Qy-rk5m6q8+;IZNwDhXFz338so5KUN*__D=)TbNs!-z6CCe&`+KRUan3S~p!t3SV zD3iMLA*dj|lVIi$ap6U5yScK0K2C+8FUQna+W`^e+eCq$(XN-XfDsSldE;jZ{QE>q z$_hT>HJHc2U%E_uqh^SH|5Q|+{aM;JHZLzP6SZowW2>X1bDM5~jG0}$AGE=H`ND;9 zcRExMs%%7@mzOuttPw3j)6Im&xM({k7q-Y}$kv1zY*#On(xut&YLEQ~SUlVJ5Aypz$fUu~b;JSv|Nk0+ zC2+W)`%?c!HGlu{+Q-`BjhoywiuIcnC!;w%23CR_em5~h@l$=ru?iBJ=Dk)(;bt)_RW?f6XMOG!^9h|fN_uwIf8UITj{Q)wg1-@5+{(#G zTgkz6M@(G&T!vO^U%=6@OEocBBu(Q|huA#hQWp7)9hrCgY3QEmR*s3#Cllr=#@U4w z+}S_F_O)RY;wJJ8Pfz1cqAzkN#N)cd%*rOk=Q|i33Pq*ubL=T= z#xb9hT-@Kke~(Mu#+H^E_}Ud$yR3{>yKF4z?QH$}_29O0VY>u>7p4_h3C^<+U; zV4k)<_^f>KZDL|Pc|bL<9F>@wN-rJ$2hut{74XvSOyA2C4r+g*V&LaK62Eq1+~!>F zE0XQ#lT3hZrDjM{dL>rYY5Yo)H|gfQxOoLV_xVWC)p{1C4fk^dQ^8v9=tIWG02-po z@`uIEd9!*kzkdA^cl343`)kh}NkeqKo9&kK?#2$(xs3V4A>IK23hNE09G|(An>4jC z9s52}u<`ply>aKm9@^mVeaRI1mFM5@2{MKn0)QxpOPc-lEBE2$Z2ZQ`@gb`!)o0)D z;RbI;VpVt;-w>=TqLKn{KE0p-!@MBudGyWsg$mK)eI;>v7Yt}Gj0_GAe$2~jTfD44 z{kcOSW?i=tSao(yT>dERRBMNn3$R*?S zTbO3yk&zK%+nZhi!*hOE>WhHw0B252+{5VHjXruxBBUuVG^^cq5}cj&?%T@w`A2{; zFSEH812o2S|A-_4;w^HXy1~GZ0JvdoasEL?RM|2U3iYN|-2C4ke?hMBMlo(Hw+@MC z>~zLpPDU;cc6R?HD+Z3**w~1T@?I_bT9RnV8#2}5#)SZ5xOg7K)hiM7DAX~zwzf94 z{LKoVjqJ;kl4>IHmtH+h#070tpqLJ~*Wqq?wj=T3bZ&!JeH)Q}l61))7GQca_BNbr zvQT?e&n?U1M~{S(JJ$t<=qSa#vbil)+S;GBwL!+^R6!CD6BZU1W56IQ^xp_JKZ5L{ zYk1gBC*gU2|a{WpE_E!waJT)nzgHDACV4Pf@c zg9fi*K;%CGrJvl7(mn%Q{LniU9&QM!DRmAuHWowa^cN1IPQUpd9=C=S(l=R(!RV!A zYh&X?!W(#c8(Z5;Ctd2@il3)8a#^BKPlEUT6NJe+i|H-I1-KC=l?Q74EA7T=Mw+Zh zKN2o+a~HYJYR)e%UXq|P@Gk`1_FiuHN+d(+(6td8bC^9BI7Jfeqj6$C%>OVATuWH8 zaQ(Y~a8*-VEAh86`b|@#ypg9snAUn$|FE4+8Q;+@4xH8>;0!um; zi!N~(5dfnkrh>-}+fK-5*WIo5-3$v+@$~fUoEok6EpG7qbvuuYSu7qo{#p(vm>fuP zuM&YQ+fk3YztFNV7Y-Lm*oDK@F0+Y?-I9XwF-P8L{Z#-%JS(lPq0!uzXN*^bKwWWt zP*3N-z^_| zJpEvY#(6iP?!*DqfzIqB1ulXL?c8+-00%HpX7p>_SPvo(?T*gwzk`OMpE|D&<9RC9 zc`0^weEc--R9spP`Kj2RI^s@4N~ll=+TbExq50dR(-KuK7u{!_AbkIv@6I@v*cN9> z1)kewd;O7p%pL39eCkNp0nXc9N?22G+>`x6A!P#sNG1MFGQ~gWoTg4k~6& zbsYJ^fI6*WNM-yS33A|J2bc>?L^7&Lw+X%32C%N=;!qNIYiV`pq}Fu!wH_-K}Dyj<@gUS2d_r=Xg?RGL-mh z1118668K7MNL?jIeOsv|KPbVevX@VXMlsX=F0cLsVm&tC$o`^KEk&|hW@)M9OM8n~ z#(1tCg7sUQjM352pWRxDcq3!L;Xh)A>~f#4v2e(^c%(eDsnB@h^esIR&sF!w&)Xk= zMxc@^+^7F|M)T_B^kLdJhZj!xV2RkQp<}2_PMCYf$Q#v~mdfutGYfSrG)kNI$UBh@ zInQ1Y>AOgmMs8kx#QH8N>_yt=y%qaD>H1RkXVNWrCN3`ujJ#@{iP%m2m@g|a zKiwR2V@mHEo=884oVW1S>vRYLp>nplR1K~|B%WUA&AB0Z+yHkC5);;$w4Kw3HbyaK z)kf>*lp-pmEI;!1JoEr*i8V~weg zkZl9*yuJ|LmR72JM>=q4M^I94yLgdLm+8=s;B% zB}0+iyuI|fBcfik?W>gu_7`}JKG9jak6*uDMgNdY+6=qAan);HQ%H31Tli+)*{Cr6 z+T9Dkm8zOQT>doAt~y2DKvRlm?Z=t1)5xicSX0O4Qormrqe1NZ>r!A1K{jc0cL_|Q zYZIvBce~F>|8YjO_DUaapJZoWmx<&yn~7&BqBS=a~84~cv{E*}0XK zO_}H1WHLF0z4pPv-sgZwOzwTTzn;x=ywo-yCco@Vad6o|1T;G($T$ypQw$UZ3yVW*MlGoN59K;35AyJX#N7^-wlNr^F3sdMeqq^G-k zXo!k|K|CL!cgM3qvU%X(r|r}6t#<*hlYC7N>y&3n1=!Fi{(>#J8!j9|mBzcvDq>jwI8hUtsem*)nngM{zm%v{ew9~`G zNy!GjzLl_O!ds-Qqg7rMh$sH$M=XL&%ACHYjC09(X%7w!-M6r~_JUL1sD!_h0nL1O zXLBV!hEHoS%2S|y_}yr!4;DxSB_%j;28Z1%zHh@A@axCP#RTh=Xt*f@10W;i^7#-P z1xCeDum8=4vn7qzX4Pei5?6L4-B`Z0liDYZCOG`0d^yq zzzyiQ6zninSp%e0Od{qKi7=nHF0&PDSuiue z-tFVWosVfYL;%O8si`SMzWWXinzriLbxKo{%56#xcf=lUh%#t4tX#47!%D2LuI`y0 z|M6U)fv$WBy(L50Tl5-vmy?t8nfCb;pil4Vb=?48eGIkmr4zVbtr}TbS^VPfo(}g0 zgF?h2>sirX0$Dm8eaJUl$~*Edsv z4B7Y2?b~e`LXZ5J+d0DA+@dw4_v{LOWpmQAIGN+L)H}9%&oYI*z)dt|d`VDmfCPj{ z`+8ePmBbam|-1-r9MI)oT|e#?j}=h z^-WSnMgaT~fNA34vP&LN$GJ_%%Qr48EZo)AWnr~inbg^NTb7;)>OR-NU)D?ToG8%Iy6~vDx_Ax@i~+$L9&YTDXpinG#kRwxPUxp%~M1BG+w` z3Q3NXz+wzIdK4p)las+lBI^ud+PZ9O)tS$vs}6lTU|pH0&wspyh;7e{N+&4C0hS`A zXQxp#0tyQC7oM^u_xqH|ap1W=5@usn8+ni`M#uzx%{kK9YPx@#xtQ@@n1P@u)FJeN zK?)JVQvjy|57*^$wCCr~m&{R(%2tmkjZ;u}i2t0jL)pNgB^ev-W!C6y65mYgpX%%r z)OjTP+_Zf^>RrP2`bdt}Q(qq+D}d>rV?{H-eSE-=2WyR2&r!CweRdXI$Sb?$w-y0Y zS1h~}bS$nfsjfC{Y{i^%C=S#HDAn#^gzrbDd-!&m_RD|&J;-oZ=CJ+4hrjJky^RmP z@Mc=?@dv3Lw9*pOA?3M1l%a6R>3vtO2$fD+S)9xMg5n?9%dEUo<~;RpAI|gXGCR48 zvY=qqe(l*F{f!r>-N%S&ek)&im+8xxP%unAS|M7+TD~#b%25oplXJhLE7CJA(&vxUD#ti6_3%^;ukpG% z5uawUCpjN^{$zb)<2j%qxy8U<)^+R_JL&*hS^c+c<@-$2dW4vqpr_I>w$OQv1G> zANL2vU7^-D34%nyt~pCF;G(qjBe`D)q6Xl0Dhld!sMBToy2$rGpkl)4zEqiN_4)1q zHW14$?NYZruN7$XQDwJYG~ga9+GIbHG@GaE`_WneZ1W$^KEQ?GYiQ4%Lz5!3ctA}p@cmgh?KR*P1eNX1-Bf%9EI`F5OZIOtcX*us z{)de)UGKvR!II%Y-dmo7Dh~5CuIHCw0sm+LiXXRJotaRk+ZYVIwC~v}l;9>E?`X%px)Xpo-5$t28Z-R4U6$LRk<7b6M=L zB7p6gi1XaYP;c=tx&Ub0kuG&TdGcg56Q5?2nrO9^A{>1$kPNV{Ih2X7M<8O+$HxcI zQ!{K?xwRj_>$nh??(WRO&W2R+V@AeJHNWUp`_tSh8`zj-VlXGdQlVO0{x@L9jo?NK zmt?7x^i&Ra&W8`zMNBKK6vK{>u{GdH?e@Wd%ekXNzLb`Rhae^Hu)!-hkIUj)Eakm> zPzYj)Hm1I!kSf|DnyhKN_!OQ{WIoW;A8WF!NZIPJxElw>Qh>aZ!>=+wlY4Pma)f6i zduE#yxYG0{mQqa~OBkgKZ7JLb<{p>+e~I$A2TRUm->M#bVl+ru@HUMJwBAKPt&x$D z6{G<05>Y4Gb`Q{Ee{<4XOG+TWifh@~4dR zR_2a=f3sMe0KXYchO698JIhU^?T-^Sw(|4yYwmDwnq315(Lsx(N7tSz>*~>+BJX>x zbTM!wCXg8oVI?sH-4aEPGDn~k%20oPL%5ykn3{o!o8wgw6}6Aj1xL zg4?h4pB%gEC;MU?XBLtw?b-nJ`d_HGW~4tdfS3WwJQNTjhk{?fnYUg&?mys89>AR` z&wLmr3=3cb%J#&^Qm}80rUYGGT_HTHFsp> zHe8bldbuxN(0LQ;S@EgL+zfa^Z=ZqtZ#94+K+r;vXU6jW;r)V&ROwHi7nXD5y7pdw zNJ+`ekDx5=M{??PZO6FtAEzbavJdGQUtkJVQqD2|lcb|s-ln9Ob$5)sR^fpV?4^;T zWqVOZ#)j3;MlYZ7?;&v^jZ;u*ts1JP`dVe(q#FC?_mSr-N#Q)n$w{=EY0XMcPoMNC zo1*Ps#9&2$27uizKx=MvnJxAvr?(OW%Q)Q1@^TzR)F`>tkT@Jx#}2y)nKF1S40f+V z5EI`zGaY@C^I}OIhZ1s#)#rgfgnUph%x~AvpQpL&GmeFYT)uqyc=DZxuS%{<0o1OW za()DJqt2`2d@KfFV8n|TgOU-hIuNE+G~B8UecB#;Zm`VP=Z%5+V+n1X%HMqsIfj^w z3|q+NaxA18ffs(_aMsh@x)40%~;Tn_Nw(+hf2UNir;a=nr2ha4fICF}yf(7gQof+G zU9DMelE2isR^d@44VIPw#&O5)*P1u@%&fTs4MQyE++UMO3+>V&0Cp4c*Nw-_{Qdp; zIiq}&!Pgkhe#*$e)B7(jE}mnHWD~4Sx`~~2k>2Tg4UdIaHUu;a>)LuZD6g0_eOw78 z_@2%HM!-&_VkmdNpq-}eH1m@K6{LtjZJFefBODtOWfh8Vn(13z%ab4rI4g)ofca$z zdF_e-xh8j_z|sy0x$pbfyzg{ObHDP<^!@4Z9H+|1S7U6)}MJ))%;aTV2j zjx#E_C)H(a@dX6UJ0+-Gw$F~AvFaZWnxl{UXKt(gduTjh|MJXGhzu5>RMX9 z9;;S>_@)}8)Fcvn1Gc+Wek-co?M2Maqnfs7voIq!{I(zJJqDaP(0B-59zb# z`k*a_*?%QId=Kp7zLiy-*D%1OT}~cVnPei5gY>7tv4K7SvaC~4PzA}<1zle4B0IQM z)H?yEqcBVV=eoxKp(=96naTs$D8#X3LlWGcBy9=yxCjs@F0nZlo*Z^yA?#N@0|SHg z%zy_10p&MG2+9t{l{U84JBu%jMd-UhNd<*MQ)OyHI2PPCex(xB9Bh#-K%m)%#)f;7 ze%}MI!HootbBv%dg%m%8hw(7@;et7VC%U_cHv$CmHx|4Cw+qQ0xS=l%22ewV3#kI% zM>YY{o>-=7wt+2S^^6XsrveSa5J3dD38v$4sV4UZiyEp% zeuYql$5N=*5JAc`TG{dA)nC<4L6@@w)%VB}qWtk17~bqMbAXcR_1Ey1z{Rw$Yr7MPVv zN=fP4-r+(8ZM>gkzOWIs4AV^fc3p`F_PAKWk0ND#2#z5718?zBFaSy0`4|sF5D+nn zgjh8=8She3$;#y1O-|L!C~kCmnkCmg?`A$&$75=L%{abM>Hx}oqtA_Y5-$7Y%a?xR zNjI?BBasmiLJ7a4Uc6{&Y6^k8>5*{2B*E(;nDSmtX(?{c2i_SH&T)HGCh`ZweW;}L zEnOZ3t&T(@#Bzk13htL=&LSd@`Rs}rzEdkHTM4*>j^<8v$|UT|545%5{WMphiZZG zfsJFm#2N0Oz4^SyS%?C3fcWLhRvPN+hM)z!Fv@G@Ut7jzlbh-Mxes@zboWpTQfUFF zIap{JjPOxeghyfu$E<7>o_*)R(6Xoh)gzLtKOcqMPHyPmxtTNUsCPOLuE7j3-G)e9 z2EN(N{`y|KXU$m{a!OK5mPab-F7SQ8WaG?4<6B`jI&X-(ufC505Y7X~tR}DcHG0{d zZt8P8bW>W=Vc2QsT)0r_s)dDe!(CMN&P(Yd3?tOgBv~mm?URaEbcsrP=>gYl~b3W zvMM=LZvt6=uKs~Ss-y?)2OQLvWRRr2C+^cb^(EbQs0OOFFKobYBDwxydZysy`lAlk z3=j@y8Npg?bhebHi1zt4^T9*E!}VCr!vvlssVB2Y$jb`@R)!7wv8HBplz8vS8Y&F@ zv7^SrM~^zqo@Jpu+V}miBFsn$*AkV&340++;Y) zq#xD`nwwR3c9ro`7~=#3zy)XS`>C5qy7zMH3_=KqW*VP$_wZm7L_uuzKOEBBs-^0x zU0=XTsD3y4xq`PRa`40CzFZ^kyC@Jw>3)Eqtwr~)oCD*~+|$`PF;6xm_ppM$Yp^IE z7|T!n1J=tP0p+xK+;56Rn0f`w#9e=ZL8e^p!KYBQPv#IxPr4iHtXq!`LKIIBY{87l_SxWzk2I#KHhgGRVe zFhsMAqFf;FASp(Ox#Ra>*+DvBixbI$c%;r8u)tGmTIs<&GeH9xBI0#@c5;k0knEmb zegY5^$cVaZG1dC()do0)*lYj?0OF>cd-I~IUTS8@hZ?`gB6^m%i^RLy?>+}*v5EH? zWTdtDLI61M1A?>fZ`1FbpJHwDVE~YfG8CjOpas>r2J3#aM$d-b-HZ3dg1g>)vdmGO zslmjN%<4qqZ$1+Fw1yljOgCYet}Afge`jb+L_n%%v)Ss-4o7qK3yg~wlqYqvbX$B@ zoB4D=TNnU`ygg*Uv$u&Ajk}+oR6Z9#$;K-y?U5Q4dG)w5XWeGUgGmrWRK>-`vkcEO zM1vL(U#PZ5>Wm6_4U!<@rk28%l?@0w9s&b{iZ!Rs-8bQ6nBp}V`a0xe4H@s4p`P0G zVKQ*VckB`;npy7X(W9&6l|aSf`>iYk1^2$sDt2M_rRifO?D|g|m)J$G1X6agfFHcA z{HDDh(!cda#l4FIqoX2P@*BFUN_UW#Y~U9EjL=xx7NG0?oTyD7L}Df?&G#L}H zA!tdacu(+s{`^_&(xtPYfZ^u8F)8Rd;vPR-<*l=@uz+Y&U#X@?Yz7L%zJhzHn3^Ud zUoBTGidYihDf*u5vx@~O%#7pSFUOD7)gvjp3L8B-E>jIh&k_<76KCK8tE0Xv^`qXi z$^A53e#a0dFgg6ND0bIn6~1&?oo?=*oO~}wUhhWq@(gV`r)@T-kZKf+zZJd#=1t54 zuIIfq6CYDCDdRmtDK0KXl=@Kb3pq+p-`F+pW(Q_q=*JK}w);!68PrN%wZd$9|OmMB|gsuEgcg;Ob8sm;%yQ^Uq<2C*pe0%|Zz6Fu{z@P4vPeh` zSvh>^*b9I1BARO_ibA5dv>y-NqYz86$v_5P%gxEL{Si*;9sV7PE`U}0g2P_I#jFa-lRQ(jPT z8n!edf7_al(Q*qmef1Pa9vd9oUV?%+DU+3;oc)>7dwUb0U4`FPkvjl#+k5xEg7dxc zV#>1tl)tb4d<4^awYjANb9 zWFzhRs~mW}UB@(SuY7HOIqNcteCW!L4{SSJL0BlH$$Nq^QbxcvxL)1msHHuD8vZ)l zIMn*>+Y_kc>VxPGMA@y-Do|e}G>^x}wk1loV#!0;&==Qq>qU>#ib+WDf@cF=9N>~B zfcr~>#cIHVeW~~SMR>}!dj+)f{D8zDn4}jM>zM^?-OqDYb45JkOiQew2OZLzQT6-V zkwF)29M=tQ25~>I2?8r|a)UQREQzMN#Tz-kCpnXg-AS$J zJ#NK4LR2yHJunjFf;BZ}NEBQ+#PARjfIry_=;B?cX8MxhHf-$dNOKP2#;Y~0dw~oy zr_ML4765OpMk~6p0n(r125bPif&;1DBfiu3NZfY0gQVl=Yarv`9-tFWPfNQBVI`}Y zrWdznwY6@U2BS#x_Z+o$EviM;t?V!b(=utl8N7N94xmR@oO149# zj+-)(dO)-UF%QDINa0^YBeHr@m;X4=aj~^~PL`G*ki7$)6MpNRH=$NA)53h$(C`8y z_QQwoX5>tOXMjYZPfGj_>bwEQEOv0vXdc!Hkfdc{;NDuQB82(?188eI$4-|MF7^uS zBgWBh>eT95DrNWX2m!m@i;0WGg8mT?ZWBW}8yyl&FERXHArtA9THS^r#zO~?Fs7O_ zljvw;<1(`$)Joe!T2qx`mmoU6OGM1-IT$122M`+?`0^;Gin6!UH8_~F9SI(bdHom_b^lcf=REFApd~GzRvx3D%PpItX9E1bS1*n+Ts6ju;Q3 zd37C_6woeRMcQ2ugb@7(rbQEI zO^6ig>PkE;;q}lM@^X8ZY^#|4W0BO`L$T?d$U&2{OHRmSR&n{voe{=V0&C_C{VAsY z_>HR8F)7kAex-{>ge%Jz;R{nkFSI{_QmV5=_jM~gq&&$m2MRHf}s-om`1KZlh#F$z17l!I@KT-kI)KljzQx~&?K6Y6X{Jqb>^0bg_f(`LqOoeQ0QK1|iA3Qr3JmFC z_2I%-$VpYdpA45dUk9&xA10I-c~=9OaczDc`0X>_SRh2Gh~rccI}3F(G&$xL7G5Du zq_w~h6$%HLK_?8AZVdQ!pS3p0VzSv`0B3VvrYJ)LeV3M`_QUURgke8{7wTg7*})tD zH2g6f@`*499AfIO*m$X1`fx0gB>`x;7-)&HRerF$`Q0AII{?k{1#wX1NX=VxtTlq65;p|l} zqBamoMo^GSMz?-oV4$kMqLkFbge26qaLqjXF3aE6Y$%Grflq~@XXn6`@@6y~n7z)l zWfSHoMx)s9r$-9jVWuqok^ZaN*`ydO#vgBcYxYCvVdz}a(jhqBEdK5jKBGht#jtI2 zEz%?9HL42$0J*uLRai@!s~6;%n00TR7hH-dVf7Y9;X!UP_VpHpuWejKe^O@j)F}UT zaag#Ac6LHpyp;3O&EYV>K1UJNRii++aG_x?e~Ax80K369mJqyVq|_}~U?Z6Q`RG9! z8o@9wwi73uE=eLwB2qR&#jhF5vQIEF5K!yK5EWZnNa)t2O$lmiP6`>apW5a6{}wy% zLhIalYeMm`s|;y|1?BMTFJ)q`yzBNm1h@G(=lGwZKuCg+UgPuR!EoEcC(vsTWBh#) zJ9=nH4Yp!Kn4(@tMepd}>qQBB0xwdk^n1VPXr=K*Q_)%^%Ixi|7$Yb*RyEzEnqLHh zJU}-#PRaK7F4GBSMSl&IKL6v90PP}*3(51Pd+3n4CyBiHv&?9H<#U^ z=JphE&?WXmyinkX#X;&EBkDh|whCu;$Ks5m5U&F{?joomt}y>DB8Apl5V>^QH});{ z8lYn#<28h?rs04`#(*^-3%tl`#1RXR& zI3S|tDos#)>QZ6CxfGKF9u^4?N2JfN6#!eY1?a;XV_1$ydTtPTI}(@{y|(Vp`zSh8 zy3B-C?XI@kwo8IP4%n<5E39xmg~S@g-3fZcWnMiAUgWfwszFVa(P7`&WY1SA2SmQF zpJ8{XPFbWjL?9vf_Q5b_@lG<9vZDyWQ1;W=8!yX8_9}KR%|X$FA67ibqtH+t%rFL! zZ}Zo$Uq8;r7Qo9i7)B8mtC(IR!GOb0HrmG?e{7^*tFEpR(`+@D7R>3R>zQ=grILL9 z!tNPZQ~-^A_2I1kuH!dh`GAwCrU)OW?MP@j4_`WB$wW$6lPfR_4U;lcxV}CGKJE@A zr=~34M}LIG1bUbHAQ%xZB8z=3?e{QTV0PYDzZ{Bfx=hwz*V<)QguL68{5FbRXWCl1 zf2@-mhku+|GBZNCLC;1Pu#E0(%FE@mDf^*vA;#tkoDPixU}wPVm)Q);A=_Ss94QWx zN?*pYdE~8~ge^}W#N1b#!>&=$hMtofC(3*_Y=B&etbux5pCrc7#YAKefKKWLcNBn$ z+0Dmok9UHor~seMxznokKp4}A96+CgXDrD{~US=IKOp2y&N*6 z61xHJw3h?;dFzgpSXk|*hd=Hh9oUHEx|>}|36f1JBtwWcOw(@aw;4)Cs-jnwsSX|p zlDQAfZf5x=<&*9*%CJ4~r#>Xg9Cg6un?ekmHXhrK3w2WSTQnX6BR*T{fnVjR=?1uJ z1t%%37h`=!08--|R%`T;N79C>=(sDA?M=`J@;SUS^Nq~UW!SB0jZNfbDd*VAIUGRPQBE|7B6UeqD0h~dOo(?OrLDWjW6SrWj zcn^90mcUEWC^e)+Y?e`w3oO%#s4b|@u|>@X_s_g}NHIYB>-k3XS|G;?{7;G6->!)N z+g9TLYD7Ma`K73t(H$3}BE+Hwj%{b_KcOlNikG1;b56#EV!@T^LNp-n!emW@l6!DU zb`6?0w6a!ucO)5%>qYTTp``?fL(+8(jW*W>+W?@mj{PHOMx_(82S4vavB>3PI#RW= zxSQ>>=Rhn5ef1zi8RYf5%nwOG!zX>qhI=u&L*WUWt^e zTKS|}-ELi@8)r7jW5?b70^v;1_Neq$y|B!nqRLdqm%_qAo~dKdg>iUY+}t4Fgdjtm zn8j@er&(8Z;a>zmn(&3?UYP5UaLu^K4vqb8g1&<|J23G>(8&dV0AK(utLW{n;P`E6 z$*%M4I=F7oX`TqVH3}ZAtIldkg#knOPn? zh;zzO0<7IJ7NVt;xfk|6#cdiU^i#r;gNjX4P;xex7F3|V7_IV*g_X56`PrL0&u>E$ zE(B2PjgL00_wMuEH%msrNF!37WDeF&m*k#K&iAOixR31iCGcfKYJ3?BfC_WNUfMTP zKL7ZxV)C~xIFD!m&T{aieQzMhX=al8P5k1h`Ku#}&iRZ*!Ys(q8!UAlNAhJAGQwr3 zZgbS8ajI$ExZI{hC162RD(f(iPdz&LQPW@)K*txD2kWQ(yu2V_`%~SN=<3vLHx@Z? zUl!Vws_kMwx-!78Z7)qhCk>!FY3)p6`pJJZi5hVW8SGR z_pIF9C?3L$jg5)6U(Xm0AP*hB##J`3ca=TR?45m(c{UWeGWL$r(S@mWhKAgbiuz!H zPUKhFHQRMEVn<0*6E;KJlUP|GOx@p|ak=PB>x1kd;9XLp z6ic_w^#sjlcuAj*(2GK+qKJry3>N3Ha!GL(F@5IzP>jgJXyxM9w{#Qm0iq`P1HAS% zw)P$q6(RF`9#$163@zY{8c=_}_)qs}P%X3_Efl3}C;mZI_tU$f%~v*HXy2#RdDzw7 z&N3;i&<-8p$;Uf5)-k2^aaG~ZpDU{#QNQNtDGKRCa3TT((IZhdOnU|QcHRgo=xe&)=H0NJ4LN;^BwyXBqqX^$UM zvEKQUG7KO7+gJYIe<*>c02d@J>UGKgtQ@xffBO>$;9U-7UtuwCKYLzT2@r&E4AT{C zy=3y!u}NRhLpH)Y98$%2BIIOztW{&LO6p*b7D40Jcq7TI6pKUNx%+F%=7Z*OY zAy13s0A2n}*W9nm_5Lz@M`_K8Lx}uC6<3(eVQ)-Vok`s039z$MZ)j+ERe`yBJ`(dL zY$c-f$C{C=_DZ0*^n8dG#lV^Zxlk_6V}V+wFuunxdg(3y7jJI@P4)Y}jc!wfOqrS} zQN|3VQZgl_l*mk`B$+}|BwHj?QW+`@q`^E!B=cA#WTprqq0BS;y*~Q=|L1+z`>wOj zI%ln8eb+a(ZST+iJkN7K*L~gBbw6R**#q%T)!~ zjZ92jy(spw6_V#&=yo7DD0B}*Vr25lB%aVLQ~Yd)$k_!l+`(KGdVkIOb4(GholJvm zJm~Zsj$CF4adni=OC#W&@5n>}=%ulh_6r$eedR)8VVrZ7A|a3%5Ah2Pho zE!I67-{;UFNVIqPn$}K9jeeWbsUI-XH(?uC1BiK6SO%Z!6LW(BRxE&=t)v<6d&5 zYS2|{=hj4;{ncAe{Pmk|qeQ29C~V47f0mjLX{im;y}C6SCpBD9uQ;%xq3!VM%GX%yEfEfq^`+KO2MvNQj8I8|6Wp3Z5XJun?J9x|BPEd zrt!|Nbu{(bGkOTG7WTVE(e`p4j~G0DwGww6O|#4#O&w@Fk$ZSfhWaEhRh-bInR+nv za_~e0g%snTS7mUIMOmweU*F>pA+e(k%9C8>#!#-jT0Rwc&X&5PyF1#&E9GEnx2D1F zY1Y>VrY{lgM1oGK?kP3&uBVtWd{tfRO+lRhWb48LR!4{P)fC^_r3t#2#^bweo97S4 z@9_d=if{~(8b4UiT6DeObuHVR+GY^i8@fUm=%yNYvp zd5CZI{PA(|CG}reEFqU<{3+0ic+6W;$CW?*>-yDZ8>Fjx;~|gayjNd9FD{n)&f*Os zY8L-?W zXhD(}**u$Fd9ADN)t%jSa(v7-hcvsde|WFiZJg8Pd8Tlt!!E<6|G4XL%eqVXKrIF!JHqwY_gC zooRXW$P`{?`?7tX_dxhSevId2p5G$%b#!Ar=u76f{RR^XSm^ zy?=@*Ud=muPDF~|2OD`d%dV9LP_iuRV&jkTYhzGc_Mnv0^ok)MB*d@8TuDQNxh2`q z_tdik7As5hPWw0Kt}F~UvxE|2Ar^lcv~@ZPIzQdIc4K*Yd9k_FR>Yv@wh_v^?-bRW zmDh^{0s_4J8f;XNHQkGj4uxo%wg@#0^F13gV6xy1QTsLRq1!h+?J?)6pz&OO179fp zfoCiU2?;i~wkik=7JD}8hOm;>u3h`_%NI3EO97OqEo2_2W5`~;c~jcsMD)s-_)+4k z`=0*-zI8!G#A5FgVn`op>^Sz|R(ZK9YIEDSZBq_O_xjIu?HKv?es`N38#}vSK9`u@ zM-ZI3qwhM$;5_S#G%%k9u+~pmD>ZL(k zVyDf_LZRG{U-f)HXdI@>Cm3(pU{2Fh} z00#6a$wjxVn8u-d5fOe63fsxxH%Iwz=m<+n`fq*8ngi=EsTkP;ZjnytC7H)kXp0qH z&P_|z-`^jlQP@s#_&^Dy4iqzo<=WMd$l~1_Vvq3dwq_RRX6o`7mLNPV*M29&?RiX+ zG=8UHiYZEnN5Uf_EYKG2k;07wZ%#d{UYon7!v zM?VLW`U4#Y-}5z*pD>vFx~^?Uw&qW$Jq~=Imkocs`$B2oxOqp`MNigvqCwd`Gx!cj zO2lyIbl!jVEac_U(BA%sW{%FCZ%Nw)@Rb(;?@_f~OR_TFKw)uYw{V>|Y^jI!^te;s z4{TIDa>N3)`bW~|)QW>+h^L~YO*P_n5Sg?8)2ExuD=L)Txxb+Z9LFuzU!DdgCyPV44>Vvo z{k!?mzDv(-86t$8Y-pHdzI1yqMP(a9mr$g{vSw7U8@?8Llh^IS_nXEBiW-&okgy~`xtkm?y2U9n$4N zrCKcQBkFK|pR81@tOTEXEnLKEd5h){amJC~Q?srG%xwgs5a*@*Q+hs5n zh?a!cpdxBw937mTAFDsiYVkd9b$fx>Or*T3>Sb&!wPQ{vSvYW`b4^W62EsY>1{vBT zM~)D2G5uT>OL=8wFJ^CBww-=(@affHB_OasXPU-?Q0Mkx3$`n#58sJEl9`#gG;5u3 z1X1u>|vDB?3yKMj|6341GCr>B2YD zG^GroP zBp`r6x9_N`Dwb_bR#p?a`(atnSXy~P0bN7C%ZoQ}D#>g|Jw4_1QcVyl8&c06#0$u8NSRbwWyVGWjFry-Bs;f(Tv+0>SZ(|iS z^-j*;d-5b0t&Uz|`Tz{Hy}!H@B2Q=ZLTT2I`E0%0($X>=Jx_rYi*Y&e@eJr!bK5jc zf0Q$RvUIb8Sr&^R=Jkos{!I9i^P)AhUV^=qSi>K*D2q|A#+H^aJ4Fj+08 zrv&19eU3g5yu&L^4b)hQYtFD~5U>Cx{;{T}ELgHI{u8&V&=))|ZPy}BJnr<~gjd?~ z*6-OELSA2*lvc=yZ3)+m6+k)u2*E?v?edPWPel{DXU}4tuEUOo{eTMqKFId+`Lx#H z&!07ja1RiJ&LkXy>M9p6itv$_#>I@Neu@OBJ`~|(J+iiPn_z9{HUs~0+TAO!UC@9* zs0B;ZM`6Y1JAKJrO;v}QOJ0+kJXhuirJmIO>c|!&#USXDyf^H&j?Y`5erk3zO8Q)- zW-rE`%lhpG0x}TMK7J!V$@KcDti{mR*Xix{1{s!g1j51HB@xBAJ;s7_jnOND#Lv+; zW;W<08&Ex|y^S2CH@nsJjI2L+6-Kyx$>vhLM0BJgt>6bnfCcD~HzMCE%G$5MU#`J9 zfTT11%+_^=;@o@(4y(R;5$urBXxVu-zFeP>R8W&l$jj44{xjFH8+%RUb$d>pJlShH zB4;LXV@Ch73DqhP6Zp!&Bo!;g^SSvRY`ZpI3qM)uzh||dQ9kT29emC^ARzv{fj6-o zv$J2kMaQf4sPB-u1JmM@fB@nA4AS;IW@2ulC4n&YiyS(QPZwbBx0E{N%T&4cno;GV ztWg$OI8@Pl^@W74F$y%KwV|DoeTIRG+XU0ox*E%jVuTywHL~+|9u;B4GI*)}dBE?O zu-4nN{ zRd6Bw@>T-(2-vQ_#>%^T;rG@4=a2CJ^&w`7`A{S!VoW~XSfF?#YBa2rLK;IwB17$m z>~I`z^0kRp#|c27$~my>I-UK()X)SfbYlQ1eJCW}60aff7Rtf5p;h5P!=p-UFaD4v zeYD-NM3~V5RPN`X0(PnM-O1GW_C2E(j3%2^tsi4%HKY6WXs&Hsv|yzHPU6(bBr_*?4l_C!~xP zn{YQ8((*>AH693l{s&wE=zv|Z8x}(-`vdR-Mesf#HDJ9&p@TOTT-_^zxP-;Td|QVr zATG&(JW76X~)uB;ugObr}3B?5B>UO^EpbkCOWj%+P9=W_UyBw-za*1 zkVnMQc(PX_rd78FDYq1U)YU7+hKBe~|Lhd8O+sc#dqB1ApmQ%Rp$I1QlT;TeNTLpV zp@5Ho9jIiI+Du3q{~I#X7nt&ogd=VWm!EaZ-m1<)Y~9#Kh@=6_cpVzQVw!DJ=O7SM zP!Qwh1Fpvktk$hbHY?&oK8yS`7h7UOoF+dfC+AiL1=H+Yo(FvH@!Bdzl3*D+eY;x$O_ zMMOlXiY`GagsgyQ6_%Kqb$d4wk8Oue1aoNnhpUWLT^2%5-;D*F#+vBhb zem>7JWd4uYt!Gs0%IQ8i$Bcumn{k&akTo`84;y=f~Tx;=G2ft;X+N zgm90Lf__WqC6|Evxre+v?zsnJo&2OmdgC@^f^4m^X?6vsl4y@!Utdr1FT07r6PugM z3sppV=V)TuaRwi6AjDFeJ=7#XGk|Kx_x;>xdXcp8!+Q`_-&|@WkZR$%B+|=<06bNN zje4JEgy33aF%`g2)NUswJOOsVgk3CVa#3a@5*ETWK~>;rx1E8S&ugwH$xCs;Q$c=d ztc+?)V@mUSP5GN37BW%@aIe1>vdR1r$~EM4E}#!yv<@$Kmbe~xMi~UZmQYCNJU`LD z;-HIr4t&2)VR`Bdq4p*+Ty9CzWZR{|=hsj10U4tgX%G}J{BRvA>F9)0>adJUH}JBb z%|@DCL*!hYqm`3&ilLNQ%8J=X^1IK`ie_HJDLLjckH>KPY4;35OH$*r)%?%5_xQYz z4qi=tr9%7FVy`B_o&L0spyvuru0a}6(&u>lH z(P#aANxUnzB6!535K_=yw1>N-V|RsAkKQ$vjabss-}zV+R)3YvSox8=EWvSP*fKjPS4 zhYs2g-|wPhfAmi^Ro84xK4?~*aPPgljT0kr_xf;X0o03Qm+DvqL#t^1VZmDdkeGqB zMK>pMik8=DX=zD4*3d85qQ^!Hst^=X4-rGWWpp04+;9ah*3s858+Ds3v=Xqr&+VYR z1Xf4%sG3?VQhV@|!V(fkfN7mUVSoZc0{er!GDy~0Tw{Z|nEA=dr*-%UM$gJn&Dwg$ z0k@HWZ{JMvK{iKuF7CNLWA6^`B|bH^5;f-~`un`hYmhSLBM2{X-w8Z< z<^v-gZ>mAo7l?R(6C7ScvrSX*gj9PJbQSeW?b^jcw8wbkSBIj(h4-ncEXDH<(#Xp z68kjXzZk4jjG-|BY%^>62__z}B$N;vhYfa{ekPc7+q(g{t?sx4Q)QAO9qscT>h{O~7_ z2_UirHwD#bd32;!5x zO8$_yI-T>TBQTd1Lzv(v3h(XHqQ&9c=dz8sv^p$4-rKgKyFnu2;lnZzt@tUb@J}!- z&%(mON~WfK=)a&Fg7hsUKVKdwg*N*avm1rx<|dkdG%IK6D%sdF<&|W%U7e%4rsn>= zdok^LQb_KAf2sBtiCzY+ezI2-#dpNYKrBbHLWw|)48V#Ljzs`=NZdG#xI^S$w8{+V z;`pB{UM0&_x7lLf%@kAzr9jWf$hfET&#Ybeq8X4D6%tst5rgIn14thUTNB}+11HdC zzn73hM(NNJ`f~fX?MO{-5-SZ`(bdzzpt?hpeb@A$SabwPYaC+Cq^~U1S1uJy>oITK z!vK&FBK1({(K0Ko8?zG~!Db25Vs4!Df_21s;-`A9$u2km5(_(=-y?D(`>O}`)=nq*phYPyu>t{p zezl}*I`v#W5M80;z5X^!s;jFjqhYZ*Sa}qokn$7Aed2-83F;OWFmK6AfPgRYr${yt zPKCwAnVb5J#SL)DUd-vM%srzrsv)p4RKCAF_`~J>Qe2uJHD*(3sS0>WT`A;d>QU z(w)ZCY3~Q3yeqL530z3Ipv<;Z_ha2{^Jzu4IqCXddg=9;c7SCOJ%jVLlOMeraU08HJ%zpF066{H#65DPzrKFO+V6Pqrja4K=k=uG3wZ zxUc`%|GnKnqA4xy!9s0M!%LncJB!kES$M85leY3*<9{3`bH!xsc1HfyY&+I0JS=Rx za2O?!{4B_4_xz)|)`VY;36cvtXDIFO_RIF|i_`TyLMdNSTr9}xnvV`%DcqRR?J-E+ zCAL$5(IKCnm@{6wrsw%cG3Fh8ZO)eT&!cDddru}QKK|GwzEa_37Cc8fZE|LWGOO@x zA@+xc0^^%QEI&N&$G3=vYnzKYq?W^spmckqMc^?ZaiW&@i)ZV?*)DH+*E!eQj<_Z2^Kxl2tOxh~p(l;Fc%~Y$ zpoTFKvj~Aq?zyIuD{Z8Eaw1_L9tV^%cV}S~rjigHf96-q%PWpLQxx4J+@qeA#+4^r zZQhQTnND4ZUMkcZkMOCIYKsXD38zAl z_Wxr58jgrmXsRh+TDzb8`<(Mh>94(wOa8H(Gjgvwj+;!*(OvM$r=-lM*;W=wg_f@K z;~?ERwdtk$x8VMJTJ^>qr}O!+t7X^@q>tVAlOcUJklSt*d`QCOGiFVAVIA)?=jP7m z@9FO2z6N+T-0qzg9=Uw%02=$lX*1Zc7v;X;^}E3`G$A^9x^3`Y zDt9y8(xT%(tCl~SAh<;x$zB8JY3%&&>k_B`7*pzpgH ze39`sTs%iy;e_Mtaa>`*2D*aRcxX>xnugbIMvoKA>lYXGe^Sed6q;Z-Pj@IAay9sH z)O`3ZCaZY=%)08t2brbZzr*Dt@@XV+2|SJ;3N~6a#1pHEQ@&Qem}FB(t!HxP&Ygx0 zc>`kR8(!{qwdE1uspft5;>?ad9^*jmu*?Z-e9+ewaS2A7>GFQm`+VJXbKv`*hy~Z* z*H=#Xlk62~|1$(a!eO;|kxfCZ6ni?2l7h&7Tt$Gw&KTrM#1pVC^}rS1iNm zkyOZW#locjO45d_J=>Yi;|`L8&*y#={w1+t%_djdWFIaJ+=nscvH!ji0_W*8+*hJp z6eA7saMh~JtT^5@YO`-^H{JGqv0_Q}6}YAP6a;zad~*l8L>b)BMvi_ai$_woOYK99(szscLxwmWPZ3naO zI-ZcU>AmFxVx~sVi`$m=d<^ba>FLj;cfd()oNXF^ zxnc&=Dq}OG2K{x)!*dT~t&N38Q!BI6R41L;K1ux}Ilw6)$VQc{47lXHNHa z?!Cc?lU&NZFLn*ZP?7mhyhzhi(N~$TIac#%e0)4UA)y4|R~j!{>!=N@9YI(AqP&N3 zJ*ocTt1R@V&i|dEa&bxa(&9}TdX<{B_4O|f`<3~#g2Z2Aly$IpR&ngy2bz*aW}D}S zg>91ll8>Y>6wO~Z8{Qo6U{^@p9N8;IcdGIi^Rvv+^xQWFjio!q#7^i1r46{J&oL_M zySftXDH{NJl?GiZ&^kQ`yrJ!0b~?83z*avHhuCV_r;4tH;x}j?pc`fY7`#n-ouy%q|;hjHz9DKmk50~w~`hgucWR0 zporB+gtJm0+Y4>m=?@mhy7M7OD?h$oYar)q_AZNBe`@q*Ro_}yK7DjrQwqLxE223L znB(4D@IKBUNu|zlr@677dmG4y{aLs`ocTOkLtN&WGcVgkP2#hPRFY;Xem?U;8Xg`8 zyzA$fZG!(&2L9f7Etz#UE!hWfaPFcOmEM^%G*4>RkfI!O7KDy#?ZNRENH&g!Jt{GE z*IwAlDco0V{Wd{i1DZp!h8MC#jK?wPMGLQ2mMCQVu}Fzi={fPpyl+u4cmJBefYQeE zJm%H=9AAuuP%4DU^GUj#BI^%5spW3!O`5-TFnosqD(;D?YlK_Zy}slbA)Ewxvac~& zYHMqserK}8k@AkVrKu?fXdoo^(H zD3W*72ebQU$-?H>+1UM}xwjl<-D*S6vb0f1QnqMa%Yx|>rhW|Oi%gEI+p;?qIjg!W z^q%|3?rJLBC(YSeBqz~DsinJ4cVOGLZLi)%XIIQBI(cnI^@di+ZIbJnfB>W9LtSs; z72Mt3F%hbu6l(sGP(h4~u`#U4u0Q+x6J*xf6i#1)ihvg-C7fFs*Z$M4E8l&h_$JN$ zhYxvNDtJiHA{k}RTvAxUJ?E+oPS4NJj|m9|*^%^)>%m`2bP`HM9fQTh2?t_gr=U>T zHZE7+(nTSr!o=hx)l)OB6`b4DZ(i{C{kr=B!b>JIj0W!Rawv$ zo%-8tHf=yurZB#M@4CTPUJOVdPMFjFv(8>Yp{c%zOr{(<_F`(`<~!+Kb1RgK8YJc6 zOFuk&BA_cmFV;2L{2ddEWbmUtUs*{$Glld`A7&q;_O*?6c#S0yYz1Q9?GV%7e6%`XhLA&y5wmqfg zE9D=S3s8ApVqOfj#^SR>*SRAiB9;ZVZk;L8SEq%n0gJyt208JH~IeG*kXXePOG>SYgdaQp$vaB?W|y z+RF?x=&fMNwcfJZ`cAwX)mGdIB;G`y29o#3j~~4t?#UGIyGhS?`cR>Ov~)(ap!zbv zIj9(^YhypIR)uV8)eLSUNx|0Sg`TutIWJyN?Fd`@KydnmhK9}|FS`-)D(S1r`4tp6 zaRMni)Cug}%T0n!!VSgKiyTF$I)e!k-nHx9NOw^;)|zEtXz1)OY48%!6+BjFKE_sG-)eCtawce zYE6FlFpw4T)iQHj%= zbT8-j-92ap&K_c*U`$ZKG3# z5p&U=6M@x&3aUWZxhdiI)jvcY_@gHSe zejd}BE>^U0Sgzyxr`Ta5rYJJdjNII|uQ=0HCay7Io)O;UzH)T=|2a5lj1FVfsH(@g zvv+LFN~E?Y;1TIjhKpJ;y-!pt%LO?(IhCH*U3?X3n|dx2;I4R_X~J0>%Q} z(H&g3y72C`hz18KanoEJzX)KJRqe)j3%ErNDZ&?^%ITpd9$-0LZ)t0ocf{9wz{&DyMLYW9hdgwg5cSZiO=G6nFwp zln|-VcRuO7N@OD#8m6Q|nT#B2+l_*jYP{vRsod&?ov_obsy{QF354!qBe(td^fJ3d`sfhUo;rHQuc@5sAxV0vAfdh|mv2?dFtIgdmu z^kX`TG~)`}PUkC#S4PY1&B`J!Ci>KkGD~|xqR7Z?&Y1~RAEWW6g61#%!DltvPCNKt zHddM+9{14QSys}O6(!FS#L*S(@>!KQtM4FQVYT+9S{Hr>o_q9_+{1Z z-dBT!>d^;l$2NNhZN6_QEpEvJVrHKE=jv)7OC9|a-KMy8G|kQI_Q8~@-hszY`cIDp zpRP?xsZU&Pufv@tLWQvSXFQdqLh_u7Y}z}Oq?rqf>$PHtY(MtiL*%QRj>6%;&rUNm zF%C9s>-{>n-SWQlfx}_GMyNv3{#Z(Q3!J?rX8D|U_-4+M12JkfGpw)2c}8Yf{iKg^ z{#mWT`h|Q}e|+HlR~~yj_w2x{&-XqaInlY2AtA`}dac@`|JOMhl{iV1npFl4-$DR? zXmg{wub;6wzk@NQBYIgw^=2ud{t?!29_G0ia_;W0-zYr`#HIuIn&I-86D0KgHZcli zKVO_Zp^_otqg*p{;R!|9pznEnw)uav0z_!y{2CR#p!YYC)ml`sQ9hbUGp^C6McQ|K zBRPG;3}Tu_{RBlQXr6icg4XOst#@Ia6xeSQ0k;&Yad9A$ytF|E2U57#cDd92`Mf zE^_Xa`x*n`$6hteF(mDh$4lOz)!OARzfJx&+aEGZB>l`!)i}N z82J~S!Iix4t^E)yyz*1oQ!h!kano+!Ezzq_j(?pRPg;LOi%-_JsR^+Q1p_5ETGZ@x z3yDol#D_TKEtFr;D-o4}e^oeDt#HFztLt1#*lwI#_4S<0lUhP82n7mc!CI!K3e%;! zBC-Lo!Ve!l)Rf&A5)c?z0{X~&?-Oa;CgGF4|EQd^31WHl;{WGeN3#CY*=oeUg>`)L zbKjwxTGawKNlHs=y`5W)8mjueL99JQjiIiNUqoHI2qa-3`pA>ECcbB!F3YZf+yzYx zPKFC6n0a}v9D7*vTJP8@aESGOA3Nxc&GPEdS2`T8XnEttAwon6g0x1Iff_xM5`Nz> z0Fml1UL#YuvS62ypT8NF!M2=B(b@U=PwAbps1YcRedy&%|38L(W-CV?S?69=Viy3j z78n>PEGn9LXS1BP&LOGQJJ+C_*GoMDc#H}LN;{yup^koMn?Zd(+sF^D!lb%EUqAxL zov@WPvoQTws*V;8%4{48*Nj$>AS(R|(VA`to@Gv4Fse|zHWp)|qa&!Vr)SGuxoKmg`*DSM=0#4U6(bavezGOX0@zT<2SOl`{e0pkd@l@R8jgUn} z;qfPf4cv>-0V=`Y9m#0DL4ML;;~5=IrOJ6K)rQH^c&bc#7MD5)juaAR5SBlj_M?W4 zN>T`+%0-w((|LnqZFsM-ekAuJTpZl<_zF@k zCaS|JU}NS+ zX15}bQZpK##CZ^(BU0hULb#!Lqzoyy=k}&*;?v+PD;urdj>6@al9nZdVwX?>UbB#y zNNBoshUs5ZracOZz7NImdHj0eol`W?ziIhfqHYofgN=*Jk5C~T+yV~5l^5{7R%c}#l+O%U{&=UDv9_=}*F z!0KO-FsP1Bs)Ya!f>@ueTSY|~A=CmBKi&KGJuV(aIuvlpPpT>_V-ph8n{&6T-C=_X zhMkAUA6z~aX~)T^TR^&mI|RQvJuUUfyo$cVnu4`u31xDk$-#O|b-#%Tm*&*JF7KV- zGJqE$%(!3|@oOr{ma>aWbSLnw?v`0q7$~SmWDHaEh`JhzxZu}SQFI{{+wUbxuJ}}K z`R;FR!#IQr8*FZ2G2oYkQu=NC9Y~PN1}76Xnh}KpViBOWgR1?0bdaP-ai<9Trx9{D z=*$7H6M2eAMDZVkUuG`#0|i}r5(M)-Z=N`+K)AG=qz!%(bu`J16jYt`4k^^XTQK81 z@*XYQ5SiD`Wj9;FXkb&nRadVBiJL6?V_m@MD$K_ggJXreovXH3>|62a!SFy5XP4f% z6_qCOVk6-lJJz7BHBp%6+KJk=a{WNf4~(+w->xl)mRKXyB%%U4IC+snQBJPCXaV}i zK#T#ZttT0`qU)0cat6#%Je*)S0#AX$3>2otP^g+q3GX{^K+q$EZUgo6(1b0DyLV5< zj-z|3ZYXP3!AfXwaO2P55GAd`cK}eCg zG%s`1@|I(&oD8^X95+$Y;}nD0f`a#coDz!4Zv4Vb4pU#J{az&cFVfRbPtKv^3!!xu zR1XLW@+s?4I&#Es$2e6C<`m{y5gm(n5wC6-;&JP6HqKo)qzZuk7L`;^oS~BfE=Nz| z?h96H&zR9^@|7#uqOH15j5;&0>`{H!!S$i#?6|kdPLrx=J?y3a%o}`QCLt=H|2@aI z6_`@Ot{3CxEFXCkIi8f5NR%6qYW9A-zx`KJLfDS+5Vbx{J!M2d+(cNoWCK}AC~8Bn zj2$H^HJ{{NV$Rmr+glzRE5JlDfO7ES#e_#uQHh_*ihZ{fNlX_t+j2oa>gQy9Bi$&a z6mrguWBDn1Nua{$U*Oagi`E@Rj5>?{!*h)f@Ko5K2Kd8n+KXX1V`pu*e(P6zdCd{6 z@X*b2vDI(cBQBie1DCf;M5H1AWa$f5d@zT-PrkLaU27hFDSv4a*KM(TC2L1etS63F znMVV5i*_|)JYWEV0Q475iGyep^=^;p->(gkYLAAdH4d?@U+)WthjLo09f#TDYc-k7 zAHK8TKa|!DJxMFqAd(pE%%LaM-rbrCGZnhnizCFI$6CSYp2z)&+N{jaINs?&S+CUz z*6k*;L-VG1t&&synS@WH)%3c=h}-qzv=q)9#0fNArYiEXlLAO_MfYCwgDTJ^q@o!t zo-4n#)h;A9HWuC={*gVY3{2_Vw%vt?9P@^DP+E54)SjV32G(!e`MZaw7y9g+sRc-s za^uGV(emyb+`)8eFSWwvisyBCgDZS+c;bS-Qg~o)2fSnA#1XhK>(Mx^bonCuXXfP{ zI2ja!oosj+g4Cnf9(yL|(?KMd$GI3H!@h%qiQ+v@pF)G7zcdB6;D;z3oTRfqssqgi zQB6a;5&EAVDJN0&gVJLhU090nX@k;9c9>M5c=hn`@R-6vzP(S@K{-}^%fJC)2pS(k zqz{EZf{?3gmUW$l_Kq&xMjVQ$hVCX1$zcE8u`kFtMNgUY2*8*tuoJ$bo}n|4X<81k z0jzGzr}j-j9v%sE2O>~Jw%?pX0VOcrftX_0^veDyBJTfbcv^io$3Ok~}r2VL4W1aK&?G3Iy$UrI@`(d4`*qzqdQxQ=NSM(m62$iRj! zjzzl}JZO-QkIxG%`c``;bE&?!xMGP6Trm-Z2QD8O^^6Go1G%vu5VMJ_<*m0$IYiQ! zf)fpHo$q_@uc`NYLv!#ozzA$?>H7*(LSJuRqU|<-gRn z|BLQc%ixUTJ%>?g$iU;TAQ|Jd-t~0J?kqFyL9fY2ic6xlkIVd|v+t%XUCxN^JicUJ zUTDC_GZ1?P#bnOsDEDdcvLhXlbNQ*s$kKlysaZ5@X6`r(Oh6onHejT7GWvKEkRiC< z3kEu1bjwMTCa>k=oixSJ86_X*7cPo(V|l?wK}R4i^qPn;5O7+tF;A)LCfZ?&##xB; zrK3@2qdf9UPiMM2!k{_VYU$O4yX^8i4TL)Q~dwYqelU#_Zv1ppEKhn zSBHy4Rdu7QWHweGasGN+Qxk1kYtm+>R-!-L12k!@h zB~~&oK-&?vD|of$TdXJKMDU^5wNMl}y$BO0 z(j$nrsFcFyf>7Ei8Fd3`M2)o-D{R|Ei4}&Q1X@G5k2b-R_ElT~goh$=$*O6seWB!~ z?HudZFNbwQUp&Xp5&sU1Jk%jCKy+oILFWl9SRn<4uIONHbTP8IvYO51!1M_^I2L>K zX?HGF!(}v6D+i4R*%2U&?+Iq%J9i=Yd_x(faJRlA0W{^0Jj;Q+GZ<|pZ; z7@a=^30~a-xjcY9ah4LmzTK;Zg6^#)z{`7vu;^^JpaST(7ISO~V&*KU6q$LYiak0V zax7rSXn}qXX^Dhc;kVyzgt#_Z1`%{P^+PJocIFn-Pi?YaY{s!x6%Z^`cEIt71L41v z*zB={uCE0W@zc$l0b$2rGc$s7&H;HaktBOSZ#IMega%ma;`k8mOZXHVin6lV%p~mN zHCaJvxgc;WpvqZFrc_~cJt(0Yb`M-wF2a-;hTJv@yBWLIa0w(4ejECwZb7MRb7)?- zS8-*ouNRs@JA(dfNB>3HP(_E1J^X@zya(DWhEg=g2~MXDQw+fqt(Q^r{q!O2YQetDwBfjd;-Vi#qN@3xU@=&u#37a&VOM;cZ^VqePAeVqB*Fp>D+)%|ow^6or@5pyVCp z`?FeN_sa$B2e=0EM(R_B|E%9qkq{W}KYa=f@2y+33s~XCv1HXNdcf>vr4SULiEKMGZrV+)kO$XF^vDDADGo^ z0DL25Wc8zcwwN`v5IK)KG+^Lj7?JZh{V1k_VcjrWK!c5zNNUy8df{%<-hS)Ne=hp} z*F;nB%m0%^^UPa`I9p4C;p8kO@?#tgjcNn(cL5)@j4Obh>-wUo!}*Tfl#*sj;{~e#af;aGFqS}@$uUj6O6^ToJ(dXQ_(JU z*vdTC;N4?$Pc+G#sHh}o+4&Iy7A;<+oyuxzYoPNcS9}_BRbk7Tm)VbD0Vi}6z!ti8 z^s;~?bKWzmT=UeanKUnqjsQm7qrfzb`WOnJObEr8RCw5y`#O;!9vUmAfrJyH8ZF*Eo4H8--?r?ESYD9*y68*Gj=>O*GMW zuyr^*HSY=if>wVAs4F*W5G_-~NbmqdV9NJyYcn8>%ebCn$B%y%2We0ap#eL1pZ}zW zK*i01czEfPXaK^mY1&a+TTyhKrr10eDayRYmlv$Z|C}Grl?~^t zbWr&JjCX2N#F9)wjwV)|_I)sm>@czV%0bs(-Z1UKGE!2y8aJiD|D|IaCjt%b0#E?7 z?6|JZ(V42&Ay;CQk%mAAC<|dy{&~aONHFjp?uWPni7XERIN$&c>A=-L$?79WO`rz( z_#ix7X8^>|mMv!^iFB2H>IGX-%B*7cu2o4LBMlNhqGQF9;;`!hf?u%NW6RNPzqb!; z2Q>*GitL&FXFm6y%y`T2G}3p%2q?}SY@NoxzliZ%h5?Z=z%WhYZB6ft6vYq|x;i|1 z9Xu~5PSn5%EGy#Uv*mwzL*(`_M-ygeAR+s`o9?J>#~)#H`Ddwk@PMOj)D2ouOclGC z%{$K1l@Cr5Dax;}ubGgat7Psl*dMWds3Q!{><(=EvO?1QFaYPAz*nVuIhe1?mojxr!1yU!ed;3ZB2#4c4p#5=>m7}ag3R4@)cN1Cn!z5 z;g!X`DvrUGZL>X}ZKlq>YP|8~@w``}&ex~xgF{0KHVcpcG)llb5-}dqpG#R;)Y8_b z#*HLS9;rT9cvDH~I?kVsxwsK0dW_)&87+?u$*JU|zD+gv14lK7s=}`qGcqwz)cWI` zNMJNq2H-L|D$adoqyDdvkz`3>Veh)Zw}ORQ%F0wYo*}$^0n5?k(!))sQVQ2#+3Nir zzh>{ej!nzsZJzIiE1ugjHcwA~<>`Ks#SD5rJ~>%uVkeT~V;fhE znQ_uWR5f3|+^%`;<}n6ndb0cCL0uvp!S@mpG$b7zoge5tqQ_Cw?;^6v;R$0J6;Y>g z*?5KnVioyYWfr7HW05Lm!T^Ncp5rhfBr@##g1tHjP05L#Ad%(!@?82E(bJyvF^TNl z<+T3}{&2%K?aKdLcO?di6a%3PnzhqQwHQ7uu>A7tmoU*vhj1?u2X;);Dp$xP6N-L# z2Z>+Q#1&JWTRVn>nu%UC@JhB$EwIv3N7)!3?2%O>ZtAIX$En?L_}}hRVGoF71gg(< zY;%(l{Y^nF;p@3qL9HYrm6oeb-edCj2P{T+8nnPJ~nnOZONj!bh7*-ksbcvgM)jk<5K(&j`J- zy7cs4Uz9M>vxY&T-Q<%WW;>ruCpZ$Xte2OmW61GJraely@Ypquu=MO^uKjKkSwm;2 zj>KLW`8kx^CorFxcgn{4k++=5o{h`%s0#)GtLL$9-VbWctWK^NAKNPLYs72b!nuRB za|V9*E4)a>=(d=MAxah^e6M`zmZNsN#I@X5?zSZEY<9#^mEf+j= zhK=T?cesV2;oy}6p;c%8x_zMR*v!(JW}I_(nz*NL-gh|jRh@eN+?DZ1Mp&G4c3*z@ z9QpmqU&6DBq+%PAg>U-0x?G5LH;YUtSG9XL)r|kR9XD3tlXfB`EJ%{ua|^5Ewc`tR z(RUFW)rZK{2hy4~G>eIbLXBbGN?T)^TU(#FS7$kcMMS!eT?r7)=^uPvT_Xw<=LbX_%Fr?2>i62ZXvMUM z$jDxVeW`N?Ot!MsugqMcaN~R!16T z$L0s4pLl%f>N54j;S0F7*9n6sccM8)+5Du-Z3?bQcsFqr65&>z5*(J?yE3?zoc7{H z$9V5B*dB?eXO4ez< z$jRAvu|2uv+c)NO4{QhA&%aC3eIor zMY3Gq*=bkpdQ5tuxwA7E$4fodRW+7AM3t15c9lrxAjEm|RI_mpJi6hHzuzD?BMxM~ zB8^cH4k7vj??N&~oNJ%B)3`D%dSxmOKsObAFiejtrsU^;(=|2y;{k(nm;wden|~K= z-(Cpb^Zp9m9U&zUxOy_vX?RvPFvOvrNv-saF@QvPR*f>XpC9uq{}|5rNv&k$O-|0$mMfX)ZPj^aL*VzE$EQ# z)Jg&$tbgUobaGwT7qodf3yt1YB(3l9{mGOhTn0|>NWp_V=<-`d)D=S_t z?Ck1cPo5-EVlQN^L7V9nc8PYnKrYSnK~yB`}VMJ?SE+jtQ4>ooXrw7vcA5k=3-k< z{xdqN`;MZA)t-bCRCc*#W*WXuNchCX;?K_FkA7Brk`|;UO%k!L_Pln9DrDdNIvO)X zF5z-qY(D1F2XwAkiN>T*6xe-t{o}KgQy*3W0>0LwMxBLDaMYx+IvlmN;M|vijQS!u zuI{Pa%M^nQ70q|>bH9@Gog*f?f4LsgI zwB5TO8Z=p;V*}x}!b%@Nfs(jd^mw-akH+2tD$2fVA00vgMPWb$B&8*!R7ye}>5@jeL68m+WOx*nMjDh*5Rn#; zR4M5Y0YOrf5NVNS80PF7-}n9A|F{05Dk9lzN7+Sk4=O)IM(llve)VsK_) zZXMr)i0v2&zPeESd1S=cLR%YTzZ@V?1VI6BZ*RV^P0%f>se_WKN@1SSy%VPIe2czK zukpP*8kudm!x;Mpdt2odK&6` zKIqm|8Nc&oWnbzNqoSjc0{m0^9)(Dd>;X6jY=nfuGL;8?ViOZDy3)xNz^6GrwJ(79 zPUqv_V`vN{O#GHJ0|Zdf&Mv1v(1z|72y5zXZ5@^V^$B2}#u6A}>C{ohw(cWx1$IG=8f&`v%TVyLxvc_1567j<`cn+}P~s-yk@$A)ujs2>b@^y|o(E3F#A4UDBEA_DO>adsWhP zh3g$NFUw%JG5&{wVdSQ-Z>6)NqcRllp6+BUZAbP}ojBnH&+k?D$13Td{Mk46yT7{n z;7wTM2R)6hY&iorTvY-B)Myb1P5_WWcKUh6Hv$HQ!FS9R$v!XabadX((+m0e(;lS& z3rD}^DliW&pa68~>*83iFfk(-v}qYctKWk9K$dsYb;)*gS$VlxtTHJ?8Bc#L9m~>9 zOHW^pt5Av@T#HXcgqGmqP{D9O4Sn8yC~Q9sJ+9EcZ~e6W5sOcT1Tdsj z{5;bb7B(Vz2tK60lN*Jb2d#}z$Vh3)Z`00aDn#t?TjyNWuPHW*vHn5qHeUMh`1@*K zS$^@tWysWs846+^6ZVAHzCkHi8^m6HxVTE!g%@!T`FC;sy%qW6|_fj~mD>cdXY<;i+B(3Xh&Ms%cA`UP%#HJQ$n*~X;+ zoZqGZY;6Uix%={6J>%3!7A)!xct!M$jD!JEhI?(~zy{J+h~WDFv3bQ_hh#2otM!-W zPd!7@hi5J!w<_1Z8W=vG4pi!&llkOldE2MuC8w?ZIWyyY!693?T4RkbYLKdMivkVa zEG&H)kJ}b733(1-O=30q$7B|5wYVRM+8o$^__j9N;o7?1ZXrW~ESiZ3w}b!sHlY54 zzo~;m{!F(zEw>f_bVLZRNAvvjw#7hn`sLeudJ3_Q+(RFf>mq$P0!|geaqZquUiX>% zij0@%S%L=5X_``ELP2F>ulXX(Mu9uoKF^#SoLDT_^1EfyX+7zlE_Q$o5*8s*iYGrJ z#!E<0(3T7t%i!Q9WGp!?*u9#}>c|0nqzZ#b5@iPu&1H12>KGieY-aw7kN0cx@jnnUPS%I;bACziOB>u)C+BLl(wNE?=rrF0c&Zg zAfNHr7fStr{MS1gt#V{9xA1mi@e*IDLd+~LDamnDTcFSG7x zJp+_O>_@nRH5>DOZja8?aU=oy{XIEgwY%nk@WR_}zIq;8M#GNg75zqkye^td;&Nnc zOAlX96u(MCD4*BTSd|t++h2~CADIQjH?tB{YVoV}YY&uR+MJ?1TA^QHK!gItMTYHh z=r?B1IDYiO(@3sv1~vw@TGE&{aX8^`p}WWvU>*ORaA0IW1F+v)2>Gxl&B!WR&Oi!wSTa?QEwB;S=x5rOyU{ToqYpzJd72a6!F4gq__{1$ElHqQcMVcT$abH& zv?z=Jb`wI|#rZ4_)j)s@fD*Z-%VIJ-olqgGqhw@#0|O7>Zz{Xm`QWEQckJO*+#Adb zZNAy-lIm&=wweTzV8DmpAuF~#ZlrhPWc}KrgFKEA`2}K~*pGrep%@T)Lw0KAy+GI+ zu}X@8oT5_>X?xX>AaQS-gMPs~7&R;s+yh3ZIXJ{aUoIk!OrBbalrZ4E5YI~#yO7h& z8M%5K1Gc;HIV~k2c$5M<3h-Y2*I6@Q8>_y9Hg*MN$_KPaOrrx%)s5 z$|^6{UEu5Xt6OKm&)IScx6awAs$bUQ=77v#FSj6U%}&!_lxE<5+=rjQaY+X95{a{D%Pml=XfF9A4r&67Y4)z$&>TZBKiWX zG-$grI2P(jWo_aJ_|Im9bexJ(L`Ny+v?_!B!Sf4nQSR`j>Ne>6TB}zQ>=-yGyO5;Iu~ za*iw#gJX(ZzDya@mW^fLjVp1Ngl{?V*Mw0XxO){bEQ1>nBOC%{bc z1EN6yd}dgHInT6M+x>;+wv%=UoSW4hzwoNfzN4q-;c$FmZmxsDc55wAsJaCh0U?Mb zMvyB6ID_E>vqCNXk=r*JO3iI{0LDNdeFFlzY@B#;)*2VPa|)mpiT3lrORvub}tv(1Q3w6xw)%v zijzNpS8qTf3uVLPN%ihtXP5iO<&V%E4C-z~D0*RYq@I`4Qm%_<%Bwwy6f4CK&>14S z;v8*Yb2^9&ei+5`ZLq3nOhgpH+!Q!}eu#~Vipr!`Y6qcwpgg)Ps3q5I;lO;T1=$8}tDa$f=u|jdTT3E~7e`jMfb^6Bb-JsKzirun zpM(-}|KRJ?4-RnRLcYR9{-r0W6LR=G;MsGShCD!CLD}pZ2_A*%a5)HMc9A7)m_v?To`R+$ru2k$DFd9F zsHEg;uDaCaUJ&v`zGy{!>!>1!+U{9Y+|uulMH{aXHFGQQPaO~IFa&m{T;ZJ~0I889 z@rGyUIwW!5KZYB^T97M0w|2*JoLBQSPJ|CYiZ+uB!fT~25Mc$? zTWB>wVQ0-~(skzay;`QOcHMuuU6EobEFTh-0pdL5s|V1`%pyWbvD8h64-{h^|Lf#d^OwWMC&|ADN#_g+{^?D zuJv92`;E^lp+gbxp``TqpnQS!OZS!oaT2j;+ra8}c3GK@d=PNe@w7y#^#6#~t?51j z{T%K!1nK1y=jO4@$;kmWbm+nRLb=y#tOY<@n^#F$AnjH^$7|WzxqbHoaMwe6=Mai* zf<2;&dYy~r3fydP3*S%_`4(K|{-de-*#SH)4^Rt2{V~W^c~2znaq=@!YZU^eJ(wB=$Zj`1TdZBOw<%`UV(J?D0TK}LMVNdB6NZ>Rq+N3!pPUsU z$tRk=F#ca*8QHqRGnL=g59(Fc)4t}<&5vSBSNuu9o+*K$)KUwz_1x4O#P;f>P=!RH z`W(L`5NkXR<+g@J^JppQENBh5gZgas9F&(sfC{hjfy^q4TRBQ^g2YPjL1LyflTDW+ zR&?*VXGk9jDSEp!zHfT5XmwLV;Zr42kk^EkOMtBpH6^; zwHhhtBER;)5xv$V1vDnHRs7GL%hPpwWz%|Wsdk?IJ$Q~A$sN(lZuDXclPX^`_3vl^ zI1rywhV}yGMu2se=hG4s>8dCZC1zMGXuBnyJ0SwceGwHF)*9iz1J%yGX#mraI|tt7 zCpC_SExXatEw8>D9EAK+42h<|0F5Iyl-p-278cr0q0UtK z=kA9+oh7lnaB(^hw$aa@pZpmPi_m;+6v7c7#$BAQkf7TlD+;Sazl{;28_(ZiVNMH+ zite);#FzRO{P<5#rSK_EeKX}!;-XO*J>XaR7}p}^8hM+iFE;6(MWV4@g6@~i@86$q z7%ApY_xy$Tdh?yH4jm3-#__y^2N@X|)olQFUXx@t@XfwsW|pp|?uCxfdcCwCaG4c? z0>PVamD%ve9)IjS-6YcL^4qql)$?-dO;v*XXHz~8ppeC zB+|s=>Iv^I!D{$kGwt(H`=NT>68XV3nD|NY@km%Kl?Ad@p*qNOByQ})Kc~t4wz;vv zw}^TVo*#!Y{G+3SsjOV)?>grn`?_Hp_D??7m9A4P>*|hPndvUX@|t7wOW_#pPC6O) zjSLOvXgE&*BMaufUY&ZG(SmU^*%uy*`}#}(cl^xC%_RdQ43O^|Pf?{vdLJ5U{|PBN z`7pw_E!0-jCH(KFL^KPOw3qx{meRM~+MK7N%I9LwE!!_DRBb!|xSK;WohxFAKPyVEUQ8P8} z%FRa27svzjzU?4;R|%%YMYuCww+!ha!$Gu)nX0%O6&LU?D2oA z$4|9Yb*X8$vqg9mz_&oB(%91a4^$xmmNUNs8!HSFo^0l+_b~K#-b~SLY;Ml?`U7)} zp8gq29P;Es`_(&jsasxyyW2nvw_FlfsW!qsr($Gfb(VE;ENXnp6z|tPP6^#Kw_tC? z?i&$Y?~z=!EYvI^2I7+c0XuYV>%^Il)indN7x0L)2n1&_&88u z=x6iu_WmVbps8>;%-U1!-yX}Fpos$BFSC><1}m5y2+_v*=?`}B;&8PlJw$by6$_IF z*ozI2Pa~CBykDi;%Y~KN`-pxrE zfN+*0&p5Y1xCpf&9dK{DiBYDWh!_mfy~+-#@*$qC)@O-Oc=sEk9L! z*ZJHXg7AW=y&wlis{Mr{v0udNMi3_=l>6=cCwwXkg^aS)uLvjRgD96tV;Lz^M!-X6A&Ug8`q- z1^u3-yVNDdg9KsT8aVd@LRLY6nkr5v@4(I!dw+)jSx6R}*VS}tH1~8n`i(lQD5ti6 z+UNl-XQX2T9vQB>Em_ziW5b^=@_06b%(b%6nJxwsIvX5QyfC}hn7o99--3ne$Km+h zgY9~^QRR?d`?{Xc>5*_ZhyKq(CC?XtzFseHX|@n6 zNXV)?@$N&}u+!Su?9qIsGfxEp*878X@CLUPX%$OqJZbBrIx?c+3ed%QI-lu;Jwts> zy6g#{Ylsqgk(XBg!{8&Lc}1Kxxq`e&qHgU3J?g@xORW<)lE{hUUxtSnwgd8^s>$tk z04IgvqKReYy;0_?k>m}z&%kXnGqYEbS3~=fq2?T~s+i|~3;)aqk4EQ+^H`oN16hr) z5Q8DcD<9U)w6%jF4V{9Xt$xGjV|Dl5bybr;=mWSw$e2j@bOeNokO=VYV!V+vMQhFe zoW5#k__aC@3-`~UUj_G5qCTu+lz^DpZisP#Cpd#48^38?pmAr=gYpV+4fzVZD7OWv zqPh~H0ja|W1Xy+`MG6TBb7<`uCFL1Z$A2LHhAC7IDGWWw#bc5$ca{Ji(-H-9cBLHX zGMhiwVafZ{KpJV!<*|@WM`L(RuY$bI)~@}OuOp#(kXpQgQqej`Qv4o>cl$PbmsuQC z5!Cz{Y3Vzji0aHH?2*mDm?(8EdOGFUa#0a8A4ZY#06bd^3yO<1_e`O?E)M+~rZ)-0 zvpv4L$hM;9XFq1ky>J6Y4ihSK7j+Hit`|hGN6{{@xob)}@TZrEa_B@*qhk-NwlkUq*zyv2KrvfLyBozyNzw{Ar`GNy2&oAsrE6A_ zr7URD02&W71cb;FE3nXF(l6Vv^jYO}1ba%U`-9XuogekA2RVPl!t2T40bjUB;+;Dv z&tBh6b@_L&`J}-YV6riwb9k!;k39bZRq!+LFk0c6zJc%+nXYU>J1@$1vZk@Xuzo$x zg*>}rM5^CIy&%<|tr$0~ezrxcSm?c8Qr;*X*q&l5z|T*^Ao(9;x!3tkHCZrluqcls zLdoMBd3AD?>)y@=jK&15UEJ8bwKKc!AoMJH7kSao2@kT2-I05If*ap!luQznXLE!m z2h0N(i8eM{-VpL)L@rB*6L85_^6aQLsoLEZ=kGdoZNFXp;7)Zc!nCt9LG#}U+ezK+ z%=(ikqnj7V-W{w3MXE+tEV8Y(-On;X)iqe)Cys^1@)+Viyesu=Ax7B*c*woWRrP0V zwf;to+F$LJ3tmtEn$vb_b8-N8gcUEp8q4Y?eXy`<@cd1C&deTde;z*d5P6XLT(QnN z?yu2^j+f1KlE>3b zleZVuVH5t;#-mFkIoZp&hw9A)+cOGg_SAS-Ml%ny^H>ry87xkB2hPauF7HnCZ>_iR z?ZYD$OeUzN^T&?M{#s;O3=ytgOp4RofunuFysxWcICgwCCOB-5K63dsz3c}I1yj!a zxHsO8Sj|I7!ZSr6v*pd5K2uWy*KvnWCu}?jru*0Hc0G!*Vq3=eiXf`uAp7Nws>T;q z-8I)f@)AU;NHQmy_TPPp<}{U;IK8Sh=lY}kdP9T5M+W9N6J9ogFnw{*rAW_ilIK4< z9kv*c;09JN3YuRq9J$c!eT!fmKK4xd-&}xYlA+Pje1!C!w0!-!*g=MDz{b*OF;j8= zdCsv(^E7Qm1glb)m`1+=s^P6E9FQ{-{kFzkt9a^SA|sV!>XFqAit87?`zn1spKf|1 z0}v*Z0+fz7JWKK7?+)WxM|%jSF%Iuwn-u{3EhZwCTt9scSckWvfogiHD_TJD_;sbP z3(Z=AB;>L~|Em7t!onH9_b*?P@=H%bGdd2M_}W-3 zz`9H?G6eeDRn-g}@@0Os&f8xF$Y!IDsuF8oRnM--PQ;hzC(~AyMd=&vh7>s`!^Mmc z;SPJ=9JI)E`(qDMjCZ?T42D5T4xW70wcaK#~Tkpx+N(X4BZKEd`P&02>>iu|)5tk%QEUgRpdY)Xq><-NhB!UGM13lt7|j z04Q~iLa4KgKd81r_;64>N@)38O@+TV0NpdU@L&~c-_`EeUJ>m*PGb}p+MOkpeWWc3O&yR zfZ#GwF*BtiCo99ku!OwMW@^;iL}<1Iix?*`hW>RI9> zh}yfi=vlCR=+l!$%H)M$8$T^Q4r=lUOM8P0!v%xU&ItT3g7&-4g_bq7)_Bj;6vGJu za|fjWF+K7yxE2L>z98Vz6COH(sSIF$i}0leh~-hBd&TC zp4XFmgs9NW9eXc$klbqzo6lK>*?KqSO3&%piIE(ZnhEXgp#rCl{Qyic6vN?o`!?V` zjhl;K(Z?RX6eblB6Pr>U8ac&ct-sv>1|PPjO@NmWgAu!`&_{SDlnO4M-z9FPX#&&C z_G3)+^#ujTf4DOMd;?J}u-BlP^lM?EGi3|-(F}%9k$?WV2@V!l!MhQkd57v%-m?(PGh z#v?n5pR?=_ElP5U@oE2$Rb>a~2$=(ZP@){7OjrHnwR)kdrQMzk(C@-n{wJw<(_60>t2(z+Umy1tMBeeQqm`-PFPpFry}1t11E5#+SBD6QMxBPSa`1 z@2i=g6N);bWy1!b?S!pScnxP|jk~JUkzFqyh#=ZafqOm`CoKAhy^h3&lV)I^tM@_> zhs{z)P_H0>x#0H#G*nWQ(Obt@IWg{dvR}3!aa#`H(=290~y!n@@O-plJICV2XGa_^TkpJ&c z22{efF9rFYPcIH8{XHf&;nNBGiqP3@NQTnU&cs=?%XfM>o-f#6j0r)IT9Uu+ms?U z?cw1CNrfk7YuU;UE(>3Jp`|#OP}TA3$fJ)|=Q#EA5~#$R!J z%&5#Nf5D`?^4KguGNV;V`GKYV<|EeX54#l;VH%C;V$z=uU#es6(?6Y{X;5p8%at!3 z4AxyK04IYcJ*L)Y|8#wZoI6&`AVxvs%UWrz_`!%n<`3Xa_0#i1Z(`vhkdNb8?61N? z4r4MwsOiP6JRi|n%|U1J2TNj1^jV_Q`>x{0kh~-HMNZE3%$01v#(Gd?Np}+x{Cd%h9%qEqDs*PHmvfSZ8Z>T~) zgQ-Drw7vd*Y%JOk4!ZEhLysr02^QEz=sVVB)n!4}G$=8sb}HEN80zZA4<6R&I5;}V z|3%XOzqS`N{U!MSUqPw=spcFGMVO_h{?@}V=P01i3_w)j`Nu8;{^|USP3JdVlRYKr z{`N0CMboAK?vTdi)BI!Wp~rjHSN+bC5fATwQNKJP2d$Xcb7S-i?TxstB?NTq$c?L&m5813IMZ2?fZL`mZIwEWYz zS3O-8+T6;Z#AVSs&94}|A0!VHhwQec#l?@0=}N%1PifR!`Q2M=?GN%pk%K5&AmP}M z;YtrC01W-Y)@Cgla`h~?9s00(bRS^r%TjyC+}nmdpo?gYhOO)Lv4>Ez*d%=eKe7bBbN|3;at0Jcio_^Tra@FQ@A@x&Iha3u{v#RH zRe=8eSJ}vlPT&a=l4*r_d3hx^_j_0yO)4(* z%TBAOtu>BT<8kVCU7n=d=md#@zCKtU-d^Ar`MZIMttU8v7mPDBS|08O1_rNE%|M_j zYaN`cp&@oE1L0KM{oqm0D^LgZri~KVg4Dw@1LuBztD6skLECxhBltWO92g}uf?eh6 zwwl04kP#4pmM$k;OmsBA6TxnUlicC?KsQAQ&m#BXO1g> zBrSv$Q1$BP{(kE{sR5vgh60S)1#JvB&H$(VSy?tyM9a(DlusGtPe;sKw6^g}@aT`M zRn<~Lg(^kdLDTd-;`Nwl1G9ti>p`F6DTuT}3yzOq-aB46RzKO>bEo5y?ExYA>@tl= zW8@7H(Y+QlD+kA7DEIRcvv-dWmnd0~+2aOgu*QNcAFa@p+b35_?Dnz)OclMW5ZStM-sgATl`E^=g9)v(nz-V zqdz{PI4qY~HN+Jgn}2<6iPf;DyPftHI6#r@-abD69EX~Lv6}ael9Ez9t6}3Ef?*l1 z!Ip`E;WPbxax;G;CztHciH}QXhMcP<%T!c2s$C}#-1@4QSGnATD?}KMuC9uFr<$Ne zI^n(2*bDqWrOrTfrUuDZ3ZxhYE4%L9CGf?V0#vsFn&0mu#b5$UE?XQ6QmJZk$PgED zs+BCG_#xh_g0tj?8w7krt&X^pvE;VlvF~#?AF}QHul|@EUC}Xrgmr#*{NVjIDpE*Q zG;aItMheW7XNG0E79rPM$QRdlMM`WPS_M&O7jEub01psjkW^c23gHom3{M|S<~d@s z=EcrO+B{xY=gJ{eK;BSEAes9c%jxzSgXZpDXL#9bSI+4R8qud{&>iA&+ZP_aJA;mB zfx%8)`$wei-9p+Q&p^LHsgPoXo$|m)@X?QA#rgE#h@Z}i1DU&rEiEDk9m#D)uXG9d z%^Pqm%3E7zFU4Oc&PYz?m912EU;p!GgY@!Y=|I2T97Kj5R0%8$V{FywlwIbbHn4)moV7lA@+7}ATqf)V zy1l$KQsun@FB5`+#xoXlcLbSiIXNu}^X~Q;YIK9QxlYS^=&(TI0K_0f?Q8Fs64VDz zk5zxa8W0fBe^~uPs#-8$UX+w*)l3L~EJkmr^oq?Hr z1XW$~zEChI%U0rbfif}CcW4&t9o|}9TpXAV9~9B2EwCVN=+9Bxe0W2zLcR~vOm@Uq z#!$>D720Dw-%b2G3Lmk%aSHN#5WhYr6kp0(n15U*0h(URy4bDZcgA<|BQI8#wT~8D z3I=*3aE$VEbCoiW<=!8ra^_lffueof? z;-?%k6C-D2g?y+kWqHq5)}kO1)MZ@!jz>3qK%`ZsGv3i-Nmuf8sR>@%)s%tpfz9r}gXm2buMLmotF^U1Aw1J3Mj#QRWRNm(tme(LKwz; zrLfGt?L?``&6^vU`o%|iUu7EK;5BH~R7|*LfM@D;c5xGcvSa(P!=h!(@nGs6Vp@?h zS-62=I8%t244oS$E|FZUes4u%q{ z@FaB^ANOPy@r_|b)l^kK zfBSa6LK76x--ap57CKVVZMs!09^MRK+0X{Hf4tWKeHj0VD*xhx92|eCL9tO`0dDp< z8UC(#mD%Ur9?&s+yR2=VHM9HUA)!Z?ngwsWU8}y8mRfqmCaohQ-t2V2Dy~%5m=Dh) z7ieSxo|NZJtDm#c#vlf%_`P!JI=*XDqWY!FdPl_%X-H3-ycKWiaa$TBG#W)i43AVq zRIN1)qMOS^C^(HVxrn|IDi{<{vcS_AwGpChPxFLfQu+FRN9U7sYdt^zjuOq%TZ8!? zZKI>332pxsWG@ZZBhUB!z%Ex{ zBXGsm$DWG@aU`w*4pfY#0AaPb42F(sUX8SJ&@4oL3>r5&oj4%Ua~S$No`Dbo^}VCd z5TQQvDp`cd6!Ql`;kRB7WLLELPSKYfhOMiL9v-3)8}A2URdsoC5hA+Bx2Y-X%R}`t zuC(7_i_qq?HIU4D*-ZYqBc8X^f8CD=^-Kaw586gwlq~d`wG{0FV@W~$4)47Fb9D+- zWN4#5r&__oKcB-35Hn#J-F~6^qM2jMJv=cR5AN5GrFq2o~>0(>NaWQA;~~P7xJ5-LgNQubov|` zg&=U&uHAW%5)Lh^02=`v`Ss%=#Kt#o9zy{M7jl^=^Rti{{qG1|yVJ#>q`^TS z!fd0UAUUu|3@&Yc4Xt-~jU!8Bj01Ujtp4WuH)&|!{JV^8-lF;hsdmSU=u@P49H|7> zD$tp2fG`ZPsj6XP7ib-Cr~N|7_PLQ54_7@U8Fj=U}h|YZfAnyA{~RYYCCo%?oD|50oTf{%h`pX!uG+xzzzW z2g`iLJ*d2*d%l2$%Ej0nxMyIE_^X#i(p@3*?%?F4a1Je>A{)=MDQ=o8Bk9^uOH$!O zsY!oFZIBvyH>C!5*gf8=x?e~jMAwrEN=VQ*42NsmPwoogwvBe(+AO74G<0s;T?d@C4Fv} z#+JvbRr=D9EKo^m!xgiqr7f;ryY}GA5pvAFtxB>ak4#V&^qvYtIeZnvYQ@yYA}g6HCccDZp>)eSkf zZ@p&Y6_WF-3^7btEI*tIDI@NAXkSSL=QDNrDs_mUR9KGa*33}?(vjFqGY$`gHmIYH z&{^F-j_EB(JC?MwHz0eyZ-r391b;(puE)102wvNfpOP<8q(sg?ZZHy~m0M45sqhu2Uk+{`D$Z~wcU82fwFI8Xg8-^aE<#9;;q%m7>5l1qbS7k6w%$J z?#~~uS|KV>< zsmCw7CAQ>r^TZXjwzgI~YYQF|kMDEPrF{c=XUEg6OUCN3o)!apU1fd^ zVn6QNJvA#3HehCKU-4KX%#y(f{m|>Yur8HCqM&O7eLXcm|H)1=rMElz@TyMddnAAG z^Q+=M9&hAv4>%(f!0S)nC_OgyK)FEfiF#Vl&NLf=0Va3c!MFFo(=?pwU#DH}!Pr)Y zDW*9{(=2CbSS?+(&m9kA2^z7xB-6(Y5*Xp>GJXs4S{H;=j>ft(uKMZFVPV-XPE{}0 zQJEFnPe|QbnTSAE2#>GUrb0F0Fvq)hOp8IdZe10zyi0h*qo$ze4V`H6HyHJJ< zXhq^$?obVL#$3*_a9Dl69(}aig-s41!g6+lbV`TYNpeEEE|jd07HWv5yGkV`)W3G~ zv1~bIc7r~+_QPKDqPgedMYTowQuUyEHr5y=V;KPYV63Ea-`*nPEK`NMXR{sgOvt$4 z_UOeev2Aon`6YoEXT#JXqz}$sIU)cEE-jF+84*hf1ii`!01K7i+H?-_nFc%n73|O5 z`El$MyZ|+t&}xeux`z_z$IKy|A_;u)N|rzXN(-f6i2c|;x*nYt_LT&Nd^tn`Pq}T# zU^!DYeq}i1?~q+sNcopky1&)ArIJJIzCrd7S?Icj)NY z^MdslsU1ku{rUal<4r9sDmd{?n^sRji@G#jMESGbyF;1)_QVui(e1W6fr)k^GIF#c zWS|fqq2|415wJWtRR?EuW$#za{~5Q?KxZtfy@u`oj9loDVk0KCWq23+>&4@Rs7ZY; zc3N(>{3$KPFAoN+fptUeK{fQhLl8_*P~Ao!JzAbof9-k}Nu)-=DGMYzffiv+Y1w{3 zSnk_E*A59=rmabADEMHQfqlXw2s=;>Ak#|Hx;j;zzcV0P+==`Ikd;n+1N3chA=TS zA?d7M2L$>*A;@9hacH-muI}{0%1SYPM>Ip&{K|@=pP%1{rGV!&)5r6tn5H${O>Z#* z-#ABI*NXV32nPiXMd(g({L(kdX9(KE2BpdK~&^QbmZt3e2hq#5X}p5aljIgc6(H zH0ii=BK)B|_yQreId(q1NOL8J4w$f9802)f=C}6nC=FTyjZRP6HytYkQJo6?bj&MY0EMKRfrt#FbbF=D(Web_hsxS*PoHVYS(yfnFi;4)aq>1TB zdz6?$dd5cL(k1@X13UFPny%;8XODGWZk^p;*4!cx5SdEF7x~I4)bU9b%oV)=D73x> zEm&tz@SP)6kcu4=kZ(;%pZdy8IG{!MdA|$;;F z^wLRxZN2p&RK1R;&G`w`)~#<+4BO)5xphiu(xB-uc}H;Nrl9!D%Tjo+po&7+lHyPP z1aOC*4UZ4cb2Q|oS&iDq!9>neb|Q7jm#|87>xV7d!-CCUPUkd^vsY<)iZ)e4y~amp z&ajZWW4?MwwBR7>Yo?Jc7`uepyNyDqx4UMmC;Zs;EtU`jE=d+DOCbMQjk(M*(rj*{ z$+(Qh^0uGJI_P1J_2}P3$l9dmqJqODel%;%wAjGsLD)7}9~oi&x*ynOhDSLV(=O~? z-)dZh4`{Eme~4tCV&r=KJymig_kMy^22+;!=L9FYHu#u}?N z9vi25;*I+*S;x`{$b~@b$(-srBDG3pS$6EMzZH0kiD|hV<4uT7yXL(F3Y6y~)Wl@% z{SJ6-TH5_U%Ir@{9`)C-R5tQ3Dx#%N;gzE157O?cVK4(1fr(*@3(m8glaP{0j!IM6 zXG63+K$GJ18dl-wp!HRc<5ibL=kOqeI+A%33x* zvK?sC%6El}$AXV^!_e{@P*hExT>T2#dX}BL%~@)iDK{Oij~U&Qg~GXbPFir-OEp0a z!B@=%3aE?v`<{5~eah@-AG7)xSBeQrlm{sBehY zA11&BnTqXbFb>!SbVuCQWN$>$wVs{4W5eu;O)$rGTTe4 zAY=y3`+AQx_;r;UFgTM^d^1QNn_jzitupVpC(mKE@uXEQnp|My1*_4~#o-@5V=pLY zOb^o?=7#9Z>T=p!vWZ`hj6G{-{`<=&R}~1(DhkzsE=pUhEI0s^zS#8i+Yy!8#zzIl zq*Fm~0-+`Pn@;nGV#Hezq@levvMXxrHtE#_2goOH>=@OWpCRx0~Ak12$Bt1Yon6ram?KT3}fN1 z#Z5vjBe&)M-l&5QH|oK|&Ye);CuQ7EDO|6&?|G^)6&fk%8(C6DY0!qO&hUY1=ZM68 z57@vd7F}$2YN)Qlhd-5t3hNhM{rjqDa43{&?WYoT;57B@o-niV8q3<^{L_d zO{-id#N-ZMIB|O_>|^+qz5^O%YN6>x2`u%llk`gJC4%SAM@I;m*YjD_wn`*@yd#{o zfHo4P8#E$=O#KP#M`sBMOAc&5b8CzQKWcNDz(v~yxl$Ii1 zW`0jsXhe1mGXtSUd+E|ftIejId#Z9|;K-HQN`kkd-15uAhs48>JJEmJ{%idJ^f>XD zq(p=+MNu&1EY;ywo|X42ynZCXL~zp>EitYpheRes!5A!ieaGU_-2n@m+zJ zHaM)*!tS+Pp9R~*cW@gjTt>>+q)RpR#0n15@8a{g7L*lbFG@%_gU_mbZ)fLTjqa=U z&hzDoNN7C6nc16w0%P#`+&AVek)ieOFu2jhTyv+s62N!enqA`wds56xy!o`|Wo^S>4~8gE zC~}TqA{2@g-GD-&?vq=>zgI{_P^e&bx1!@H^RK&su4cq21wP*Y`U^1w3Z+0zLQtoV2VMx;Iw2?ez4Ua}f@G9Zu|W_D9WzAs^WV9XKlN zyVnD2(*t|p-+FMs3ZC=!L#e6!CPtxlj$f067u~0%Yq(W}yP#oqV&73TWCkbqb~s{a zk)YR=y;xmTaoc45!1*54%@QhfEj#d{aCU|4pvuIT;GodiGzp>*V+J=U=CSNKn5mK9at_U2)2_Iih zNa3z*=*CPeZZd!{PlO8gphP$5s5+T_Rg0mjKX-3vYm=$czKe+b!wHMfVFD{oiwcE` boFl0TWG;;@$}@m#N2y%b#1vn(y#N0ID=<$6 literal 56853 zcmb4r1yq#l_wFD99%)p%L=h!Kq(o8y0|cZ?LKWfi9(^s@7|G9L!k)Sk^fE* z!#ksn#8xQOv3H&tI#1-xolPHGJ3g^?ut%ZXlak|V>_@NAqbwIMg_!X(ie|-py)kvx zgD4=MK9rBM;`A)L$36v?Iy&vT1(~CS9-1LN-V3wwXK+tGDW#`hX;@b!<8#wY*=qlk zQdurt$*xm2Ma>U`RV-W48|6^Fv2o2{tx?^d(*@V7^~65I4-bj<&0m@J@eGT|{)0U^ zrI=?C+@JE%e)NuF*GK;nCH@xLa8lz@`u>Lk4`1S5m3|;__VjBH`1p_LwbG&x0*fjK)qI3VzT`zzoJ{RmFTJ*L-pwl-q=`pcX*@gCQn&86{N40&l*M6sT>iM(PniSrHQWoydk3>ZE=9g6 z=7;HYoT1al;LXtxAts!yuv(I_c!tst~$obRvXYl z;<(=DENpkb9L3gbO}MG((U2GT>?u$4S0f^xj_S3E!tb&EZiV8lPmNF$3Z(Vl2Jeox zQJP~2str&S?Zqgz##F7hO9Yg^8o$YkZ4?!WjJ|Uuka$-_ej=|$*I;*xTk_@uP^zYLalA7%q%>zxvNlzJTNyOhxFuNt~|KW`@|1z7z z+a8|n`NCX()j=X#37#H{)Ps)a#~sd$k`Tu>$tOOXb_j3vyW8X8IZtt|dWo3P(CrPA zf#RD3>CGB(?HA^ItX= z6gYk&!l<69@=bPGV3tPjK<4bVQM0NvYi5@jwBae3S9%X4QKZ?G1V54C^ z@MX}R$xT#Q+r^A8M~zufUA|khmC=^#8ey}0$lYUPbLRDeV`#SSiVCv8t`5oh2~u>V z897nkr$RBAhH zqR4br+Rx2Rl$eCXF1(I$qt0pO*3ZGg(I3w{d;Bod@(*e}HLcmGsHyo#J{k9>n^E|p z-c?k1be|cHW|l76Mfo>3-{Q1e^Q`eSHJ!=cfm1#W3p;6!Szht0nz5v1L*+ZqE1MtI zInQ_NuJ#WOn$9%8Y~S|}39+is@&Eobp2RQVW0$9JT}OG~SeYtflDn>tQP^_U4$%sw#o&*T3+xQd39u!&%Zp0`lljglUTtH@Y$~ zGbag8Zti)*iDIQr&=JY__(*z7rDAZO)bq`Pl4skadG4I2xyZ*ygnAnj!x43765dgm z7H{a!(zZO4^x?w?_)Ig#k6LB-$;p`Pd|2-oQ-YhMF$y0fl9Q9+yYx&(NFos^l7HSGJOqS%A~)Awoq9=^(Ri(ABg z>>>{@Jn!t$^KzIikCea@wv3e6M4x7x+oj_-Y#bV*M;Y7N-up8t7_Hz@NWOb2^!V$x z_nW(IW{myE=_Pdr{r<9oik}e`5n*(@*?5|lLZ)9JFPMRarD?dxGJ4K$zB{>DC>t#5d}*BF zz|hdOMG9jutLx(81g+x~I*sUR55bl48HyJ#Up|EUEr0TdX8+*eLyOUJoF7La4PwNV znVsV;oo-W|>c`B_$a45{MAat<+e~ixmIhYmF5bED<{~%uYr_}u;dnU?g4CW**kk^C z$3m1S@4&SlIiP zl(@J!mwDCdFB8P0-aGwcF<|QV?%mUwcy8MiELIx-;w612Mp04m<+Q1>F{*wE+c9>+ z;h2RPIl$E(V>Q1$F;u{;EP5k`%9_@zq zX=Y<^8nZ1p>^b%8jn<0^)ERu zt6ShSZIzO9BH{X~Mn-w>Pf)u_byiJ|XWMnmew>zlrTZ-I;2KS6>xn7P@IQXE>~eBX z6sOtHoqq03JB1|m)4S>4?|kYjs?{zzD+)<>Rm!)j05-1y7! zHD&vx;MzCmCI{y?E>#`e*V3}^wlfTQ0RLZlW=0ZC6u{DSn>%{FamI;^f?}cmrMN&z zNeRk$>`c@l88hnl>gr%eM~AAO-XmKtNr+51obPPYJOq&f*yfor?Q-(UsK6r29!5&S zm?kB0-Y{I080U}NX*4;QT{YoNIk{XxDJgrmQ(9*VP`-n?2DdP(`ugGUpqF%?rB)mk zx7O+S=a`&A6(x(i9V=Ho@wxioF)V;-WvUfn6jK4}EC+{nd_uxk@RuvX!XJ1oN`va2 zwp%lZhPxDr=%tmG(i-Nub+f6y`g~PV@};oNfU&2io^EG)I!9#1cZhMq`}&#$=fm>D@^}PE1dVr1<;;CKeXW6nv*;%7bcmYRjIKXqJ># zwK1Y_xGzqcP)KqNQFrA2L~CQ1$&9x(&Yu~b{HS&*a&WO5q8Lc%!{fvp9FGGM zy9Bfab_>LD-gfsT*NU>pIda9cN_Wg!=rC97Vp*h%$iJA1XOhcxG>L=z7PGrjK3_4dBInfDfh9$jZX&4g(S+;Pv09LBIv_k<~*zeSH_qR*IyTM3z`Bi=CsIch!NP7)H|0 z&Mrm>IV9wlwVhqR+v+Pup)?L6MP@KeVzsQUCHr`EQal@UdPnexX>{CC#FLYw;3BT#Qb|eL z`tpcM!iZTDQeh=m)zj4s>~{Z0m(cdTqPQ)uFRluFm8YV~dVf z_whA>6UU9oZfa8Cx-dljm>EpD0Fgo~*6^ckfhONgBkR5S%R0zX|8kEf?Oh%UYVY3V zX?sdal{c96N$ryB6=Y+m`G%je%KiQe+mf!kD7bn(n6Eup5u}ymr1?iKL-jNrUD5q> z$X>Qj$JofoVQvh|b5PGL0+?XZKichI-lTfZq{PI;Y~CrQ-uP*or8h3`FGlpPA~c z6Nlwuy($>@G1FNJ9m72By4Bi)Cw1sNuNuR{0esLQVA7S1z0HG_Diwu9t_v67Gydh> zvap=16Kd`?h8_F2ll-JodxYmx7ntMmY%bsSZoq;ZuO^&6cIM2P&!0c%S22)2KHPVC z5gC~QDan(!-$%{RFjr_oEyTI09mmGT*0QxY$S0n1?~C)V7(9PyNJ!E%qL6Q}I=kLd zgSME&*jN%7Tzxit*&~&Vl9K0T+39qZ>;*s)0a&c}xjf}h*KY>~1}cQv0ZNWGYXH#W z6_UwspFqr2)phFBDNk$b%&dJmPM!nw%lT9YD%xx;EVG1n;7YVsH{j@la;Hf+w5h2n zMT47D@L87bFy3AQub~J~e0tiXDiL`kM#RA$$VkLqin{ZzsHl&+DGg$XsKdmI!osWO zc1VCUHO(m4@;FbUIzgx07F5A+wiCG98GG5_rk`J3&U|WnkE9V6z&k4ckeU54PcFe( zj&$=W=U3pF0*D*;zK)KL9;QuXLVdQhtWAD4&)U0w!DQ`Q)EOQHSQa zuEc0E;+|A#O4LxHIcY*-Vl=so{ADDRXR#==cT;B_+_WvJ_SmpMQhU2BKPhsmnK$1< zLzr!A1ENo*h#TJ?U0S02G<#FtD``8PAcatlhk#A)4qQu_b!ezpMEu~Jb;bQ&)=xeb z{`06_h5AcJ?)5)~GK)6#dV(OoIp@JlaMj(k9|==UX^;V??n+QFgoib5;5wLq_USy=PH7}Utn*c%bnUK|;e`3UMO6si2$L%{(m8br zbgj0f5L;fxnH0of9%&PN`9j`_w_MiA*>jV1nvZeK1zSk<;7pHxu5#1pDa1|F<+e(f z#kVV8%?&p=KBi~tk@O*pJ5=zke8bFFvxeNcRAgzWK=v+E9KJsq-#OjaW@dl<@#b&U znxZ20)VR1SxYm#vi>v!+C2+tw=K^?F+H><_&s~mKV}imHa|EeFIBl|9UDB}(Xy%OU zY}<*{Obh!Cg)sAGY>&f-IrPgw>ESBslkrSXzmsci*D>`-N4rzdRM3&WlBXg}-OKgw zV5JA|Vdzt8G*A}g7ZYb-pVM-4yLCc%i9cMOA&n=L#MHD~ z-x)S(wk>z1xo z6(#evNo!l%C+4Z2%{1{G*?%D%wV-Q_BX|BvP&1RX6lJ zmQaMFFwCIp^5r1(s`h{(B%AXQ-=Tzpl+gOyPc+#tyo-9(pSR&r&9TeZwkSflJMjzM z($qN=({71NE}B{ZWfgErG>a6P3%`HgXLPufz2aAP^ewOkZXTX*t*x!u!l-lS&M9PR zR1NrtT)Gy2>(;Heb{&^W4LV(0ZZzGrn)7p+PYux`!5nle=_`k$BMW`$Sg$$O_x1KZ z>}WorrJVN$l9SuaUfB?{)5!sj&_5z3-!Bp0{E~|b=hG&b%!rgq*s5jGTyJd+SvR_c ztYwH;)E7D#L3~k8DfU$F!c9`>X&P*!~Lz+Wa4p-TxOrG(>2pVx9S(RMC{DwLS-~ zvnn!1%b4UJ2#DpHfNZ2qML4lB-?P|YOogH%Betx`Jc1_@AL3r@ekpEc-b-^A{1>^B6G2wb^>LIL$tG;-mbAv_wZ`y|1GDpzs{ z`X`73=de5nOX-r+*eb`Vr%n@lhrV!=sP8$f&syMS$17cKv2AW{8beY+E%o3b;uqMB zii~-!)?9O*Bb&yQ&m#BAdUUTtRc`$0y%#B1B~GB4QNJe}0-I4fA3uJ)ka2>*|L|ak zus%Coj@YSW_<^_WXld8(UVS}kdu2S!j5~(jJG_>}-)^+@EIrvY$!+<(!{cb#Y#ECQE92sA}oQ&l+5-}urmysc> z=e@zg>a>$lSV)7qA|fJ^MQLX64_%VN2 z4(o@VVM|-Q4x|gL#Opuz=cL>>dvCwQ0YhbKYP!3X=VynNw7(-GN7?{o&@XqB$v1b- zqfm#3hed`>2Zbw7L%zzA6^o0DTh@f_!avO>rU3TP)6>`2*ZT`lY0H!C%X?#n1A11} zbd|^+HBBGvt@G;x&yC&YefZAT) za0hM>eh`>EV|N8VHfF(NhpruWF2Z)OV#9Xp$FNx;scoTqTpW5Ak$rFJC|!L0&gAw* zXDp=6FHWMxq!qJM|3+UOG*=E<-lr7!8>PFCED+{rk0w=80 z*OaR=ElhRdqQUXiM(oB42{j+_Q5bkEq}2BWWo2dM-!l(vGcVe{_yQlLC zX9z`4)`y1v1JRtRPtttM#o&&3Cq_QetTb@X$YXE*G=eD}^D6ai#>CLhbcfS>Z*OlO zD|fp6@xzBE`t$8!{KR$O^Dke%Y<^A!4yiUn3a}XSZ z2o^!#xsAQ|Ep+Pm#%2=0ukc4$SXgbwLS0?mw2{Ogc2R&ub3|t7(jFyoV9`2%*!?*_ z%%0^@(Hjv{(JJLU$>~L1TRuX8g44+=Dt2V=bQ*QMx_9AaUK9I+dpAxJ2P)(~wMqC$ z5_n^V;@R$-oR?arIBi3mE>ikLWsp-+@-NP7!C}9bmWpQ=1RYKDd5Ej$2;OmXe5_!( zN_31M@}uHc(fQg9-Xo6W(F_`1*?5qMYe&f&bvhYaSO=st#Pgz+!Hpset9~ zStShczs)N`Vli*DrR>hbc|^{Hv|_Nnbx!@dWVMeTJ(}D(h;F0{%;^+n|3W+!fA!!d zk#k*E%)JXmb4GJN^MLgMBMeJzTmE;Qa?jGTXSwg1hzt*)hU6cFYBlBZtO5g)mz70$ zMHG)fL^%$%K^Zv?YDuaSsJKMD3_H6d&U-8gZ%)UalasTLFq*@|nQW4tKVy!=vh^;o z=hlu0;91HsydmA)%A+gZanZ4{Jj*1hJ(dUarRVTLK|#%f!|M*X3I+S_I=2dv`!0)b zfK6znXfvacmzPJ)QFw=kh1n)PH=XA&i(X=!B%Q+&UU7YQEDrxc&y|2CvL(lg1VOCT zb5-kKro+7FP&&5q*U>#WBErI)Tf17X#&3Q4g~l?!wv~>3$T{aXte%gQ_y7fd|NadS zh2*UiMG9O|i)2I7@@x^+E9+X)T<*(_`v?_D&UI92b5>n}{Z$cS?5f0XUnq5o|)%_B3fsMMy>kfAb(iH$It?V4AYHJ5?Z@b<;Erl%U%6Ju6 z2UTQCbaC4lCCc^>skl_x__E`VJxe!zxjI6mB2157?aRt*z9rh#)x`?F3NhVX;_{&w zl?BF~8L0mOb`2td6J6W2?ILj-@4k@FmBZq~u_<@Xo9N@@FT+xnHE0rrToDp7b30|> zr01o@)PLCHeTq6WR;*Q3a_uT5?kXv}rk(0ueDc8a&T{VX2-`qE)n`}niZhkR&O;%h zjY~FxI7QFEP{8TROIyU5`vz(l3Meqt86)kJyp#|8qC)P_ij%SzrX~}8SNK&)LcM?J zTU=H)I{rd;>5&RAt?cdF!FK9KNorVlm#2n&<^4uaF7pyn{q*)u#X0-KCXIb_Av%Ey zshC$T@Y=E0FFjX!uuwFPA&Q=tm0)%I32Q>J6oHgvD>LoK8m*nzf}cO%mAS=~DZvJg zG1D!Llt`jZN=FqRp$x>Oaixk&y~>&i2?>r+bbJsXFm`mj@6wt`Gar$#{qC=@VMkkohRyy%{}{l&6Y6a_PyLX62JyAP;VZ)fxpp$}2+ zB!5ZHxu}XYtkx?3@zwv(Riw3q>DD8KDej-cmRuhte552J``u=y#((jmqkQV;^I7=u z$GA+b`}f~*y}1jRQpS=E9z2SP_cN+jNC{o$kh)Z=lm6j@`~rJ9BR1#SSeU64WpHqC)V&LK_HY{N-Y!1(lLKnB zaYHvW#WQ+8+W-}%>+`j?J7WGUd|c6`L`vnfRZ&)^t?HcJJ37j=NKw7$}sHpgL5|fb+*BoN{q!T{=@vTG0)Vh*x>_MrFLMcn% z4hca?{gWJGKmAg4!XLeQTUIu3TuGOz4jp;0TE|xS@nKlN#NiH_e-@a-RwhOh`Wx~VU@Do157TV+<b zi&gXPos7zbH%-lX?owZy*C8o>+oD*%sFasgtWSFM1@FQx$^D_3j3$q^p=1{ zOa15rvfP+}y4_AfLc&tI`Z?$NT{9sTn=46qiw5Jr+~0si{fN%38`< z8nSwtd(=d`wx~dmL$7I4fNP4jUw@(Lhlh%V7eWOlgm=rT6Itm<56qOlKCtb%03T7U@w@|)BtV!#y zyw{29A>cV$t8|Z0`CMh@wK$UcFSIjZaf^d_+O+E5g_Mlyd}~a@ZfwXr&@u{{xjrjM zC_$24f7JAN8~xFGA4<{}M1yb}PV#pQ43aS=06E#IUR7Q;b$53k=wG!G;+DMNI8#Iv zcmq`rvG!nxe93*p={orEh;&FkjPrFNJ^oFXHhZ`5vM)-P@vyTt$}W{qqq zV#QlX>tDijIcYTNUF0eSwmGCVleU`pymLOfua9seYi}OnWtsQc2>Rc*GgL7rQJ=H3 zg+|^bgs{B471b-!alpt%*x4WBBYe?w;9Yu`ZSO& zfNO)&Oh$;Ysnl-NakXY=x-(udhAzNllHWD`;^oWDkTX7xJ?G z?`5?8>8Gy0{D1~PA;rAzAzNgN?lXiS?J`wW&xdsWg5x-9dlgNIDhi`vXzaIe#vnC! z$PSeM`EIL*oazNf+hcmH9_|A;3#av8cV{HCMt=Z$6SV9`3Sr@iQ-sDS_pN?yC&<~> z;%cyfu(DuP^dyw5$59W;9UFG{*4C~}W3DkWGQMvlDcm7IjjlUfsKO(grWHoC{M4Lv zDD;0VlfUgcWLGoVCHNAdn#UvC+Z9mtAl%3`s3M+h?zhs_{@OHo3Iz!=-*s6JB}!aB zeL2L+NQkkdnzC^a;V|yr{Ra-Vs7_d|ZcR958G&z+#!*-1ew)F-&3%*LRJ6c{=dt;0 zs%GGqyYX;p-@`>CCO?&}Csz>D6xCg0p;C1Z32?QvoX;MV;}BR})m6IZL_-sL92V!w zl`F<%jhfVfzSKtEu9MA^51LuKOz!ir%JiYp(uCPKqr;*FjzyV4)q%cGKWCOz0kTP(4OO(b)3M)KHu%17KZ_4wFRHaV*l z+*Ki=XEN;mV8jJHG~m{jSc7#;cxz|WdjCsANc=ylhd-sY!{oSH1xjQJNL{}vh zIw-^bj@Nf?o=#&kFuCApn~p&SYUPANIe>}j7_^SyZe}!jePeY`B+Mj+tMt(}{vho| z=q;#i!9qnodbO7?R=#qLgQ~pEmSm%@azjO~_%-j|-QRNWBf#Ml6~mq8mB^&Lyu1j; z%Fhh~N+6>#Z=wrC10(<<-c&XONS91Z5I7~&2&P<8sEa&2Z&(NKL5|4I?%b_~-aT|r z;d*MO*E#V91_nq?OEqU?kNdzfcC&Ca(>ejk5&&Bur_`VENq^mm$D1<`E}uMka?|W; zCIWPpGMY>YZvLV%DHDToi%iPq(W4hG*QV#M&V=hgp19_^6o(N^?ctKFjoarEkpglH z{(R2NjA9f8w99x-3iUQNmWlGu+cSOtQ(0}KjL;1`%cGWC4?nyzI4&wAM8Bt1FxO)T zduHi@4-cmlioHex7kiJ#8HGYNu8^CPE{`YVAI7tXXDy=~mxct2i;Fuwd$1*BZDv1q z^~k<9oqlh8<@2xDI#|3b^g=5#A=1MmR>E_BTeC)uOpwqv%L^aWdh6<4202qNW&EMC zDD?C6NAT0wH$F}cIi2%UYis#G(Rdzez@f3_{p@nH?40yu>CkSA$?BJrrncOj+3vQ~Ip$Sxy{kPIgQ7u~{kVxisx=FU7(HMP;CJ}$w3=_m(4%H6m(MEj{@5XtRShhcXULP z;pX~AM{SB_gP?h*qOGkxfOP{}r=mjl5gH&^q>e2`XLsE~@|u<`uBqQrTzWxA>>c=FqvBBw1(i+@uGyG<4i%(?7HJ+KzZ~*D0|IA!tiJxWg+` zy4bE*DvWZa)=t+fSZwzKT(Y>Zfa>h>GcaHQH1boJ3ZNb3@nfjDIccgBcOs=z`(OJ( zzw{Z=i73+0tUOl(4{N|epo6mm1rqYy+kwzLK6D<9!UGQPb%IUlZoiP7>L`turchYO z7(bxR&!11!j|DiWsz%xMIW9eTmi^j*(7PeY57kVefdWT79|#HV@af=9U}3?T;|5Po zkO5+;X!WiO(ZD`!XGU2n<6le4q$DJ~_Vngywa-vr=TDI}VGR+)uUMU<7BjjUF9+Nm z?4giSQI!}eO?cA_B`Vsd@VMb|dDls&O_BegQZ$cL&M8HRQrF5t~}YO*Pfjm<<&p??ok>2e>xFmr&%q+ ztpyRo-`!luD#%~#<2esB`)y#__dB>*BhSU(>t=lRg&kxQ6WYVX&a4_G4a}mjlob`j zAn~&8sB0zK$g2hZ-TpsJ{4bih2BSISSA_Y|{DNrMe>xj!kn90j`Ct8Dx-raGFJ{-Zv3nq* zv-Gn)318&k3Na-8iW}FM2kO?N^Ew$F!&ha~URi!@2_LGZAmdhQYau51sYR{Cs*(ctN6LU2}(Pva%T&&S}l2C>_`ZcR~ z5sTl3sNbn=&zk0)NXcy-cTkvFi(Bm-6`fWA)rS16KAXK){MWQ=*P|U_>-aEr+a-CI zBKe82Kw$0e57x0>22R+}aN?8nYd<2rvBTDm4p~UzwYaUkU?8{H!>Hm5;HKwA>-LmB z19u)NjdQ1$*~PT5QEF>xO(SpL*{&BA#Pz92=Sbid^Xga`L4sLUceuQ^yL(M7^RyJ- z@wap6#Vw9#g@@kW%xK(p**EC%yB}^1e%K+<4M!@4UOrgkL*%6R9Y4J2$4{RyyEBmp zSD#nCeo{|Q?>%LGWAsFc&EPTANmA0NH*W|H1~L74zM6l8KF7y1{Fd@7*h` zUP}U+X_z6?$f>odZ_pHAT;JFb5ERTfpWBL8TLM4jNDq82Xv*s01N*9F5pzu2^&@o>ExV{F zo!^$WUl710)3qJAannbS6z*a{L2*w>X{u&tBFlF^+3gF+y8;(Lo5NtII<N9$tS9K~?1a8WhUcS4CtD)fDBHqpEZlI;&dvhY zu7#weq%3rIcQ058>4CcM3kZ|2*m-G6*zDWR>vev3-#>e3_+Jv%58m0`>+#Dyk2m8x za*r~qlR*;ry;MAd!lyn!%4y*4#{(O_@9vftUb@0xv#Dm~>B$JXPd6ib`^$ho2Sl%4 zeF`A@QljtruQw{s(VmMr_kDbP&;Tyi*Vos6XGA`aV3p)9Ay2#C>b&{8_dB!^86nhu zg98>87Y`=j3*XCY0%0G4;akWCF~EBrpAw=ajv_|W$4_ALUToQfoaRz z7QgLb%Wok2>faf2Rx!Gs{JdqRA?n=i_hsjpDHc^EFmgJBF2CmHrjc*qrs?X2cJMef zUVVT>xfOrpA}T5>F7W+S7L2wtuI>7f-p(qZlQ20wo#WZfG>6OxX+gn2>BBzhGiaWd zl&Dni^?$&;z#aqt{ISL^XxFJ-MUe&FWG$e*z|T*)x3{+oOJ)|F+((QlG1w#VCub4~ zS&jE2YTPU&B%xrBx?>ELhugRdU9M4GM8@q%#$|Qtx~eKB!#p~3bMqtkiXMv~Ve_Vf zb`v701_>tydGfmj9)Fpoi{UC|JM!0)n}bN{UV&fa4TiV1-Thq|0az{@8e9CeyXkK^ zWE!Ei|Gl^v2-?So56?m|4b6^xmqjgrQHtRX_ARGWBmzLO3bFu-0v$3Y5!-sqOiS$P z*ng?5x!&<{a)UvnOaYNFU<#!FgQ5y=dfQaD(Jda8m>3R)3BB75(*pX-Mzy@cxKC~= zuarLtfVdM@27n}VvL*vaSap5~>ikRWbs-J9OpTLo-XJ>ao2shRCI$2h3k&ykbuXm^ zb0~pW`!Sfim{=%Mq4j-KLQ;^dEFmQ3DCJKdno0bhK0O9^lU`dpF%+gh=<<92hlupd zzhvG9@VyOS)T-_%8FTXwm@VjO|J;RZ-NF_W2!QCDq3>N|k9lHB$}I_2L=x)cBmkPo zD{#YKzI@?iiTo>5RHa3%db;tS2X($IfOP?b5;&TkLdFP?7Au!>(yLP3&Bh)Gn?Mr- z@)^iA2nTBcz0TQWWyP2L01X-3#+*og{1Jk7JtDy{6@2=^_^A6M_v92bE)lXuSvkU~ zZL|JKXwm^;`1I*h^Brg-A;+ZLyAZvz zrIy(p1z^a>rv`!h;T!7aFwnuFw+EYMnM08I<;&GDs%VTfc1;$M*l)~rxdRpEG-_9N zDKs@UR&??59baE5I2eS*Rqto`_96uPS) z0wqPsF3aOX@?xD4YRhBhr6{jh4EL8&2I$)XQ3-{Kun)r7th@%lgAN`fWqQzPg9U!u z-&&m7*n8Vp_c!su1`7xX1nBU7Tw-9aw{(*Mw_lq}beQhJV|%8yJgF&yV~Ys~U(==` zkXM6_&Hl&O*iylxE4H%*T3=+?>!pygJQKKX416mcO21Fa$!e9%Y46^l3Uq9>u#{4} zC|K?vrolJQ_CTyf5+u-Dz(%?yQ{_yRLKM|u!c ztHmc^!p2p!K>&EjmpZ%_9ntg9N`qOLEDG_weowF4<}=dNd%tqZq*N2wpwXL|YLEDOJr5V*d#rAc1-!SPO zpc+U|o_xXuI!3wTD`U@Ntq6dF+|osl3a?74L++@otbE(@vSkMJGVL?RptvaEv={lZ zj~*L@mNNB`){;YyTPg$;pzwM-b=0Q^*75%taR1+NyTx6iJAkP33~Rm+e&;u={_M9q z73>M`@Y(ARlmn!OM8}^h?T4F%goJgt8t*L@f3KF;xAgT);wWY+m~8>3k$w{V*3L83 zq=iwVb9lL5yg+8~yFGb=bpRyXfn@4H&pUCJpW9&eQatf8)$F6U=T~z z2)76b$~L4 z9;XkOz_Pg4wrxpgxpD{_MetS&s~6dyCnLYzppl^>wRfCSV$J`xA9lIb51tIa?SLOx z_@;nKUiH4cz`k41!YT{1OTDW?qoTDK@{R*(fKreW+hud<=?CFypz6Yb|=dc+2KB#@*OZlgKuLwAJZXEAZ567k{%QuRRmyvWO|q2`UMckYqg$;tEG%DVGG4dyLP z)LcIUj5XT-5xX|#+~cF@itX{kZRpN`yjIrJd$M_)1hiQB`BZR<)~+ti7(y94oR1Wn za?-V_gsj7VF&AXfyJ9%dXhY3&adwC&;5Qz2NHOBmVr3R6NI|LpzR&td$bPxtJ<{tp zef;=G+_B>*Hs9T}59A#e;2APCxZmD6e-rf;0Mj*agK}7X;L1;{6%a-xV+dgOCIg-h zdUAq-f(XU`>(_Z`bu4`+j^4vVDffX{TST`{6-*e0F5WYHaf0ZjyB~EQAmn&o->KZ3oakEI z*MBe@>+2TdL~T7ix1rjCFKRv`d3PBP&%Xgx+r&(1RuAG3HiMTtMp?jyAtCG_+PvIF zr1|Mrmg2`91c{f$ZR}yv8?9|k@L(t(H+6XD66VQ*pr!^S7`twJ9+RC38kfUBN~!x3 zT=uO9Ct+F;CnX|Mx`dq=oPRAwdogMcvTtVk^WLot=?~0X7&ck-)!@ zj~)g$VTdy8(AN)2tY#SS+K2m&wryB^wwu28-Gv2$DWIz>>uF)hdtB-LFtuoUxW9!k z9!vJ^PbHuVE{BoADe2LUo0JH$0I|cCK9cPPv zC^#4l)jo0)Yz>Oh@CV?OR$0l2i2HK=!vj9sN~Pvi78DfpfIhNZV5j`kr%(J*cP?H! zwiLmCl2SDU!Qh~XS75tkWeI%O)=>UKLfFv=Hfeh|b=qHzp{I7?f#2JohJm?u7vqg< zzSwK(0)Qn_BuHbYC|yN^9$57f-MM&r{n@vN2nn%0 z>d;cPTAO7{$BP0_@Bz33{$=l?tlXV~WQaTvp1{pI2m=be4Xc;vP#X%9m@MFkCxX8z z(6)~x`*G;8+yur2D1u!5U_lt((>C;wA6cD2iuQ)q))On0iV_c?PY6ep^Lla-+ZV+^~{JgJ@(5>sN&3I%*WjFpY6 z!&Dzq?5j99B{B#6fZ?$4RrFLxW0d~n!TAgN)8K3zn<>aS6>*~Yp(SGO)dc`oJtA5^! zBeWmNCjd^MM~$-NeVi-6%U8n@_b&>ejWmA{Yl6;^Bfb9;)U;o|w69on7Fzdxlmy$- zVswVNU@y?O!hYun<$edh9VvG@2Nhmb_RME5ZxIBt_0oVqadiBd7^JvYZ!%mjCM$nZ zg-Jt$GRyfH2mx>3zUB4W$G`qp_mTN-@w%s{=aPLhFBnGdIs-ebGNQBvA#8?Ft|L^M zh<^h+Wia6MuXuzxr?BvcQ`PI}m>3fff>?J#B6#@tv6^+~y*F>FW#kS2qXl@=;frJX zD|UHY4C!NPrD_#|b`jh|{fugr#O~K1QW#u~{Sg=Mx;z4e!DZe>`oAM~tx=5>?_t2w zsfTDJ|6w4;_l@%?4iCluihx0#YoqgOzm3zLBP;!?0bkMmJ!^5M5K5V_j7=>w3j8O)+utudNq z4c32u5kQuG;5Y^hFD6_)-%7QR+}Cw=f~C8fqbgxK%Qo=T%;-4YwFSuOsu^IFbwS#| z7w56I5ybC(7RE#bPzereAGmQ{A-+1+1)XvDy`1M*PQl0spu^^$zK0voqSnL) z)#kOs*!(vLMrtGtQ2FFREfX$PM!1nW{-_P6TcXY&zjpw{04hdCMt8`z8>5G6Yo#`~ zwt~!hZuGq1{~YEJA=-1GHp(uAHyJs9PHLm>I`kFf%+AoV7hjya@#@b)Sz&`w>5aH? zjI>=~*xE+3T0hCZ^82VW<)pNHdROQ-fm@8L!w)`xdamUj zqxD!ni;`bP_xQ7Nb5qXfd;9j*Ml+(vC^q!Y_q$CtYDhSjUy1115ExM)sb@%9?E=YEp zGHY?&7#FExyH_>BSB$S91z{ZD9WaQ23Y>BR#fO9igYP4wqtPni)Z#tn!~gK`o(zON zjH)=7yt_0^+~j&D6%33=3UAN7;Y9TNi2Qag|3e3}jXAA>xHirJN5_N?&+g71u7bP_wde$u8(iTyRSfF z@{IApaJ*j?DFug~)X^Qu7ge2b{6TSt`{3(}FWr(o$%e`=d&Ix38m@kl92O>DNOqfW z>Ku6Yg?7PWh1i^{Uw_rY1Q$B?Qav9zsL`1~YNw)S3XTd`V6kjO+3u{2Kin8BoVo53 z%%T}+T(GF_A*;V2KGmtuUQ^DW$PFo_eEgqyI}iBH40yWw4nU6lS@tS`nSg#bB3@gEjBV%TN7dUtI5ELW6Ikmu;bGbB z#XTLK*X3rY(bVHgq_BYrAV|I~%Ef;Ry#_|g4Vht@VJ*Ut5jP&%5o&H|H)55PISsmeeSxpN-CR@sFdemR!i$>V36%j<+L*2{$aM<~;5H!Rd zfgag=cYr*@7m?$6Qy& zLIKWIwU4Zgulj1EE1bCu-KU6{67DJEO zGw;ZH@UIrIB4KD#U;HL`g&JI`mop+gci(F z-t>Tvp+Ug`1HjP0p^!M-?E5jgw%Mn$h{%_LH8J$Y$b;ksITU6i)M@-a%pL_+>Zm|T zJa%Irfw?nY=mS>e-h3^qVmG$3V*WnqQCTc9jN-aKjz z^7~>)5l9850^Qh0OEA!nj6K6Xw^LK&!9tt-EMDhe-#_cB`k%~(9oD{jXDRyxkiBd5Cf2Tub%@0@atP> z>hOoFTXnnPb*~C9Ov47&)LQplfI4~Vdzvi#Zi|-AP9X7k5S9YY(t5&1Cvd!qc6r+x(%3umd0h22um=7-1`b)1p+7+*0>FcS!40is!;5s5+OARCMbP${5IhssMaG8HHj%M=d_E!)VJKpySfJN#1q z(Xrqmx*wC0l46?%f&WPZC6Biv5|h%SSN;cgZyt?h`@Ij}W}+xcDnmsSnJS8mp+up9 zC_|=1gbWdGNu?xGC@ND*$&f;Kw~vEvOq&+WE9 z1Fz<)jeJ!IzO9as%R~MWF;Z_y?371@I%Lv|C*l8 ziUaIna0~9;yEn6nrDcrUS2!^?p)vX4?b~Cnh(~MTe&+mX%Y5VX@`3NSE9;JZQX%pH z@RYr&RFyfLrrq-MEEOW3GnZyQ^JtgptXsM(tVK)S$3xL&Rs{C0>;=VTr%Z-RtzmJ( z16dYpkEN5J!x&QLx*bstZMoLzU@;1IOg}FDB@D3DRkAzG9GyKxUNwQm|P%K`GyJcv;7bwPE~R2qkb9w)cMQyoG9adf5rgS z?QufUf>GWjTUd|kYlx_ir2O2k`OKA@Gc{^Mf}Pr{V~w)rj0~#mr`an@1)bB*bkm+5 ze`n!DS(a5-?cGcjn^c*kOBkt=|Cc-C^!ne@1-Ej>e`*-q&V9O|>PMUF7H7UhhXNq! z)f~sN&)iFsqK{Ug7Hz1NO-M{!Un?6aVVvOb*SXkWpI^IQmE`GcCI(tw4?IiJKYH{s z5&J>3TXTJ-xSKY8-@AK>90I#nBhx8;=+GgO^dz?17(3nVzY%5v*T+7QV*vAy$U&9@ z{E7G%FP39{Yrs&+%F0Tg>(i~PuX?!a+~e?Dw=QB+e|{o&1*-mz^-ivYlD%9k3+uuSf1PFb<0@Na{Jb7tvUbDAuX4A*;NL-p$UbH3;>}O zRaIryvg;)!503rg^|;Nn`)~}yX^Ze%m|ZU;vm6L41mig6!bVcedv&bUc^iJn(GV>jje<0QVgNUf-9$_xrnQ zE@#v#Fx6T}TU6cPds9=RZg0P3ak^UN8xWN;a0BAK=%xMU&!6ln@Twu0)stAiHE@gD zprO|H{y~bn-8|q*L!3hflrt#)618y2#KGIi02k#==JV71xG9HZR&%@tc*VudeF?rG zCv$o3I@iVd8E7@#-Qlq6w)E1%KQ-bt+v;~SeEEDPuG4An!Gp^P?)@W{YSxrz{>tvw z23C4(-YmhD0apdQSuyeye-sa|1Y3gaI31)8MBOB2%HQn>s#=VI-}wV-@Il-OMr4=` zA7;gBd8c&>?gN3z$zr;(%BHt{#mFbSE(|NR4SC#Gy08jJTu^A})lv)G4U$AAXZ!2d znFCX$1*27KYmh=4fn-yO<%=(bC4^x9gX$a~|9v_+;~HFWUgw9POgge33*T zlbi-l&vHIKFS9w%!H-MjVwMK4+WO)7I$Y}gOazdij8QMXwJrnpOdvd?rn|gjW$aR7 z#WQth34sWE^Siq;3}j)gk}`V^Bz^pe%4Wd3)^9{TO`^ui=8E-VmDih#dV7P56_I=H z2Xn!}S9wma#l^)BkI&DGCX{@QY3PUp*#IN0&%@MH9ayB+`rF|OhC8tU6{5i(>AA3o4yS9a;CI*A*Oqy=}Rq$$?Fp`9Pc zAN+eKNhivZL=GxcWz1O?d=@v3RO#tNN;E#_faaDV5m3^-C(C42eUmIsp;}o5&)+u$ zl)S${$)rUhTcWmTGD?^&Q(~i{;#z#@vat3}_W_=wg~{XQ-3?`*bI(O!lz74MM}Fe2 zg8P>2v)wllnD=-V&pmM3Ye56jc-Xf7VF+W!lt;rx&bvqm#YX+i#KEz(R)Z^d*FCR<)5^ zAv1Bgb?|b6n6ttI0z#88kO=WLO+$xIkvxN4D(QDqH{ikDdzGDSi7#Q1y?i_xqP6k; zLnZc0r4&tr42x3w6W}xKbp6h1ZG1&oJGzSH%UU0juY#M+ze?g5K4c-i+IjMqF>J_z zZ^~ouw(UpCG{bMfoA{>y-?8de?{XC;dQs-I*;Zn zsXRcQ$m%@8h*1nC`kwyZdg)KvY74k<9ET>!SP?8xDlNS zz~FOe8hmlyDSi5b@Uc`wl<(6TwiBOQfI9E8bKSD}p|jL-@Tn+jTwf-<|I!2jv_se+ z-Ife7G8x3##`i74ardFMI>H`d#m4ya??ow3Hh0i$RXE|RF7o*%21aUVE>X!8qfDYWR6 z5q?-3YZ)4@0vzs)Q0u@qh94`!Fliv6MUUTjJ@N6lj9r5exIY_YWDH)u<_)*u15jEC zm@F8q5fY{$vZdQCpjX1pwIdfpzYGz^TYt0T?C1L4jV`UBuY=iXd3IF#o-ScNT7@cA z^-A)dAFGpZL|($br8q(CJg(RUKD@+<*V00*XY|g<#f-dH92NuPBcOHAhF+aVYbS&2 zHKgN2CCmy|gQBOP6)F(&{JDf~jNDR>e15RmT!{w_vdkNgyQ1v%F;ryQ&H zSEsSJlwo@uogGZK8vRxo{hJ0a0y`&G#>CQ{MrkM5u=a6(^m7=$!)~IurW6XObd+n? zu93ylF*NB|)4IV4n-^@_4McoE-xHyR7fW3vwDwWh0zx&4ZYjmO+IoMd3q9eoVIE)k z_|dRiwq*H6EephgT$;<%3n!!dE|r-t3>cjUGfnzTn>1o94DWJe%qy>Pi@sVG!Yz8x zV(?=s7Ka8T0>G%c!Xj{y=pp z;y%IdGYOnhZGSU3QP%H$ZjcIiM{yM_hAfal2>ADSh8a^i) zm_fD%vj~j$DpW@kd<#|sXiqgi3}y zHYzBz%MX5WQ@HiuK?uTPJDYvYk@}5l zTp6yt`{xlgv;B1MSgXcGU^COv1u^Xv0^UE@A5dv(5AMd>$8udo2Cs|Vkfu8g0x3I8 zJ~(Z#PegmfDQ7L#wnx5c6ytZ0yem=r%83sgO);F2i%p5SmGww$3D}C#w(nMBufgry zh}#d9)2ch054#yt9k#ELv8myCZdSO)*w{Ge=FKaOb`^JJtn@+f>pyhwpHz?!EPWeN zYfibntH>y|y*$MUn|MMp$`-SEh(-l1ysgMr5zB}S4>U)i%%Renv;Z!T1okC!YEH)x zF_MJfgJKZG6f+7UJE{;#1VI>fq9F5pVVA!^xgw_ESD;oa%7*OfvG=oM6OH2f$@i2z z=H8^s1^Zi;c5r;0_+uF+sbvxGO(aZS?Zd->$m$C@EU=ZtM#IzD#Q4fw(lqag_Q8XO za73Oi?YkG8~g{L^l1{3w1)@y90O%2}aE+1>+(guQxfwcj7UQTp3)M zFuyoeT%7P{5&sxTtP0*xo0)0Xm=H$$bTK<;Id_;GX3;c=?w1Jw3#No7wlcEe`M?X+ z=Mnj`)mZ66`bh)Wt1Hhw<>-T+F)pZ@zuVt67j4wi1DNP~1`+GBb%%G{3+VzioWZsRLeIF9l#H8wW>Y|j!m^PB0VMCc!P zblkW}$Pt-k=;dA4zP;(>w~A{;e9PgGrx(pG!JTNDUKPx=={6h6u#0@biYk}qPMlaF zF~RVOx^Wg6nmDl~mX?-oYyGP#DsYj{jbHW^Ed6QX^K*9W{B8(9mWams&|fVlT8#+Q zh+mZNF{Ey7{mAwOosg{T3LF|rk%-WKWEEHUG$t+RJ>1QPpNCZ`$1OtI3|7>|#U(F` zdg8=7YvU@wU=}$YGCtEIV>MbDZb`p96k)Yp5a#(0Z*8jikfejh#;_W5kx!VzXX9R` zr5&6~jL+KrRYu>;cjBmqre^6GIrC9hRW&XPxtQfES6)VFv_n;-+34B#et#UEjBsC}`q!Kc!4OtFGu;tiTd*J7c&;Jggw=O3?Oz0lFhh-jq?*~Gi9 z9P%)CS&%T!)Hs%5anTavDXC-D(XMqL2GV_|38~~4DAX-joEesknmaZ^32XDuaD%ePJtowyn2)Y24Jd_|Ep_*}g>NfMH|- z5FpH{3YIEL{uDAW;f<-_Ok7A4a}kV_@^w7qt|R0rA2z+m6>!YZS!$1+s!Df=oY&;H!FFPstaI}`h= zpWe3%CfgmZ*Y*ZrO8|56@17dvX@Na)?{Y>uIGA}Ohr1opN9hPN$Y6eIzM{Iir#H&{ zW7Yz7D!+R(;(5yZI$iDXKpJ3K#~i_Cn4}>#0A1wo!_p{=zewmUr@Q|`ga5ldNZUzg zoagq`^2M>gI}C|XGvURFa54SW-c6XSc1z-g_ZrwSbOj4aqV}$$XBt;fz~5mpm^)Xw zO^8TNVU>P%l1K0$R71dJjA8T2dVezeNzP;?CF7Wck=frd-C&-A*s$S_OkFNQ^5gF)HA@`ZGF4%!8&W3hCLHb|hvxsH4(4YT7-o!cwcNwY6x z=~*lu=_(GF4Q$zb3~`MC!8M@5v)Aj-ThToU+jh@)!qmR(N({?cjb)S0(Z zzT0OTA&9{b8(d+ulAk{$|92icc{SUqb4_zLqOHH!hhqn`TEnCO4yhCv`vwiZbhe+BD=3 zUsYe2W3O6BH~KJjxVgv(sBE*VTg9At>X=0r?U{Ig@W}{&xM(m!K8QB;?=*~qxAFaVR# z;3n=aqJ|wIy>1FJaFYR6Y)gKrT+UXky=Le-;AicQWj!oFaB;V=AU9>psU}_1P zD&quiaXWLo>JSS)60LF>`%QX$wtMop%F&E=4Sv@CTU=v{D&}Il16k#|Xr=B+zS7TE za2ZE_9X^?nB=RLBG}P4Sup?~` zIf_gblI1`cn0NFq!919qqMNv;Ber|AaP>q~tfBTrg@(=W?Ct-2Rr$h^WL|+1jA-Sh zhUsgUTrfLgAIs{Y{%rCZAfW?u8aqGJyqDO<47X>o1D*bf;o0ZIoIF+hQN4E&m3mh{ z6khNY78bU^UZJ*mkC3fJ`t)iuB|Z*jvFizge!;ODYh{txX@nor8Cmu(>{OEb)aRS@N}7RqzkyS4$86-HhhSv#kFp(W5f1_ zao7!SBkx8KfC;Z8Kwoe-i5H!k)3v7Ax?#w}syW$UwSt=%qG)NWDvkpKYK6ZsS!L{- z#jsSimYoQ<$R<`MPT59h-@bxC%>yWv2SpevvSe%#l5Q* z6YQx|n=V@}%r*5aPVxTYdjpo@m1c{AjW8&=e(>p9<0>X&FBYCSdCUJ@^bQ>_@No&| zF+SA6TRdGU1xII?~zXCogN#OjO_yGH# z8us8p>gmtG$9qu>z=jkWVCy1jgb*3z(lF$BFij8mvCT^P zn!K=Na?0!9M0Tp2(&}&#ojWm3d2Dco)<=Pp4&Zrv3YE6_1S@7lPaQ63z(*;==f~nd z9g^;%sT_f+dR2cBI_=_}`JOD4UmZD8!pbZP?F&>Csj-1(&*1E2=nRi@f5z`Q@q1oN zf<=zOuSZn~h~yFoPKU=I=p)9^KXL>Hi~+YDVP2{AhinrY<0=6EBgoJ5!vp|w&`LBI zYvMw>Dg)YZ#Iptl1}IKCrVe{+bk)MkzXA~oDmFAyigqe<$X`sPfy7_lKU zZr3`_n6hy3%fv<4KWrCorcQ~?e_(jOutA^t6{H=ZZQBly9Yfw{8YaTMbFN2l+nsPu znu5XH)m4sR_wIRhWyb2y%v`+LD0QAjleW!h&qoD}K1(rBcXoS4x9@XQpmSx&uJ|&< zT69h!Oo%cSRL_vh_?sRwsODa!1I88pl6@`c|0?)vfNa}TVOi6hzW#B4&9$peE3+>1@YykwVLJ8GtGhLYgLiI* zPW5x~nsUL_PG5BY(rqqh%GLRU48T6{#j{;dVDHy{-@B7nt7VdFEvz@4TC_0MkDIBU zdSc{r)b*Rx zpVOmVwK^YHJC!&pHR-GLjX_o0_uBCAr92KT{EFE99SkM8!rCdutUF2%4W0-|jXX_Z zwp$)a229MN{f@tnN`~BdPw!ru@@1*YrkA!qGw1h)kc(e;>e?P}ONIRdIt}0LKe*2{ z`oCr1xZpbZW}uZRi>WOlpO=!+F)CkIBMnH|rn%FTp5pY-tx!si!a=pzskfatdI@2z zeQJZRU3%^WwA15suMAW1-Mj~7kE%|)?ud`erW{CnJXVx$Z332)LEyScz~If=}aS%mCG+H6tOMH&bOIy7q0NPs4SLF^L%1tcw0!R z#`)yD(yj~N*-!b6>z4iL`?0wvDui>O-zr|8aJLe&F*~9(_~$vr)`>CvIJmIosg#@xE{bu%@gJB6v&GG$m3_Eiq z^lN1$sONL(DPtesv467O8!Fp}8*AUed3U$}llL=?nTzG|G$w|*jms~K|6Us>_vuh3 zpXQ}yYj71;-u4?yhsg0=XXf9Y%y3faTU2vYoLz(39^6&(+MVVo)zE3)_a%=+A1C7V zOVM}wU6#a9{}^ol8Mj_ZWlSsX-XXBn;Dr6tL|Gx3rVtEpc=`e2B z^=zI|UwsW8xx4=QF}erq%lykOW@3bx-)}8nqrX%C;r)k6IzH|r@^Q{__wU{BkGaKG z6_@d-h|yjtS#SMBT-Bf7<28$-nWxo!|2%)65vY)L-#(XNtC9>qucYE5+7h>gtH){V ztD5YZI0dx0mS2|jOFkSkUGGn6@MV64!!T^(l*UtzySq!`CRFFu$@An(jlp#qcG?fT z3|RP0mc1`?DM@Xyc$eQK&N(1Eed0r1ucXSBunEDN3wnB3uZNj+1uRB}V@f5tmp3MT zVNo<);hxc}!jPF{J;rIP`fAOcr>zI{bf+qhoKnRKF0zsFUbdu#FO2Ro!;aW%ucgyw z&pGgU&Xm`#Y_hw3_L}kQ)wpgs4Ew9QOqAT}L@oVN%yKhGY~2V$ zaJ$9>I)m=wgx}Q-=a?(Dw_CU2#*vwhe;zk(S~#VOIk0{kLqa2^j&^EE)RTq9UJkdI zWZ!qxZq5f%f6rfPb@PHn$&A!nkqt|1bXAiNkV_#m36rD5BLBBRaudxvwQ({u_TK%c z7ksEgzRVg&&wI!A$+k{GT^TeJ?(M<_+-CET=C2_ene9uJZ zJ`>+fSUvkwZcqB@dRuzGk$N#k)iV-;wOoybb5)c4PVZIJ5+{@Lt97K<~*Etn#GZp$SLq(Vre;Z* zmZfLeu5rw>^C=7+7^lTGjxkEono1-MS8Yg8)sH$CG-qVhct!K%i&s|jnWF&;(=C>} zY6^CY1%}Ut$NBWVKfXu16q{rsm&Wb;>=}h zm4w{h&QGZ(i>6P3nCLDdCTUjL)Jb?etVU=>#h&BJcGDim>ZYK zodsbF0V|U4alQWsLTJ<^uP@G-GK`ko-X=tXWsUJfdfyC&|Dq26KA1Hin}bkyZqatun(pe!TSnT_F+ag!xq(KA3*CelIMR?Cos~9*#x- zCF6+v+dgEiWa)+_dlJNEyVUJpehQ48J=MX|_)nU=0-;?UrVWr%5DouOn}=II zeq8n`+cD-qs9M;X?lW?8-|{=1I=`jZ0A2pj^Y-mqP+6`Dv7%kbR0n~l-LKIA$Zby4 z3h_Q+zypN|QZEjc$k{<-+8Nr-Pm2H+n5M{SA$bf!563Rly&&Uy6?pT2fM5w1lG}(0 z9bh+4XPFSV6YLx8DfDn_Ld~a-n50aTM|(9igyiH_p?c|Zi+$xI?b~kGI5QR$z2~@> zXR+w229*VhUElBFk$t|J-?I(4299t=SX9&s;dnNZl?H=!VPe;7ke#Twdv`TO)!O;r#X1wF@V_m+4y=N$QWo>H05NZ^6e*Vny@)L(~ zYZ7?zDj@U&cWk`gK&h+}NfAne8`u0o7I_G8*_6D4n(a*kN2e$q z<}C)Gx+E8V5#UOYPDm>){_*g_nE;`n>j`bjP+KslSE8WUDRec0|4S^Kk0((y_yNow z*!;ZTbZ|Ubu5b!ULV`LT8RXZ!k;m~}5{gAfenoMYAskO6?$)Ej)kaClW#|F%0-@nx z=JI<(-7o(6Sq@y|i%)0D5DuInm6p@E>uU9-Pu9>N;P7fDeXjM~$kXVZE(ym@oVXu- z|2_x8W#B_Wa5bBD|9*A4iFo&okObVdix1ULPmyKi*}*xlgvt*7tc7bq?d+Q{7prVv zvT18;hnl2*+K<)3=h4*U(X8xu+k(bhM*#e+)DGu)()2W$ z_Sk41iY#I{pZ$)GsZOvaE~v%o#c(a5^a2OZt2FG1-R*UVE^eKY_mN#lGfIvw3{c%& zTt)}LG9Nnl3&Ip6)TrA@7WO_*nyx`Y2wCJeZ%7UWDb+_$o+J{ewsK0Uny|Y;Yl%nX3YCdH zhYqbkX{P&e`l$u&Gs!6_V-fLi=-<433%X2#*cOt^>gnk*ICku=z4ZLlC)_VB)SZb? zpv+))TVr<{F0j#{LuFm$`RuIw_vyeQUE%`Vhopnkie~K}J$i(cs6~lC-D=dbgPTm4 zTy;G}^XXYintHL{0x4A^j0cRG24r6QMvGN0FAWzi9r7q2@<;@Kl2o-pRC?}G)E@hz zS3uk#YMKB8^3&Ia3!lUSjE;)W$dGn#h*OIIpD2RjJe1XHhz-c>(q?Z2T0+wL&G^gkzyW(GKzBG`LKA>copBZUH^v`<^RaXV>Q=sOC5=*HCJ z@}Ni0eDfS?KiV`+v3PL|Gi7#ii2cjwCQnU+II-DOe}kTTb+#mPDI&szE3kZFx2g%V z59&VGQqeXp0yr}UmX1<@3?s!Kbf^7WPYDL_o3}KQ3Dpa9U@uZRCF!Y`(FDV4cDz68 ze&D}n3FZ_s;0tQs;uj0!CPD)}z*+G$r*g&yE9Y*W%W99%Mp)FgMfGg;f zbA0T3t@-}_OJKX68>Xbc@A>wPw0%1L8Cl055NN?qt4=mZq)G+DCu3r0@!B6D6Ky{0iR{ zZ>UNQd}X-0j6WbjY#)${-7^g2gxo+`L$KU>;@nb-kg~D>)M}LwkoUzzG{`P4mH+JA zIF0{Z>Knayvtc*8{vhJFfB*I2eortCKqf`%-Cdh<1or@0EX)fvdV-X>AwBedTy~J8_0|W;0e&r786aX1(kiKHG583TiXc;{yaZ~W^U;^mV#mf zmzJcocx%&?{y8g5Bg{Q;9Jyd;QOmgu#wuEhmMaaQnJ>?C_$J1;vj^qPgwGXeL-KQ9 zo#P%q){2^@=pR1JfaLyhdd8Bd8>h8lkp?H)LE>C@S>v)(ZR)g#Q? zlp99di;?fUJ!n64DC(rl-vz*+l{i|UB!p#9B&<MfPO44%nh#U9`cy` zww8ksXA^+E;J5NBj94CCPbhK9LFTjEZu`J0L4T=-pm(aP(^KL=w#ln-I&-E1jcg8s zYi+h!dj)vJ;!QZ+T>>q?;TZs0!cB|U@kwd9PE_Y8 zpmX_-O1alfMI2&z2&ye62uXC>+dp$sQE~pg*$0$XC_53XHO||FK4QU zGS?_1fY)!`x)cMZ1>@`VV(Th)7{K?z=sf$ZUuXJ=T+9KOtc$h1>PL?7fS$|$6IRx9)xP~`;l=W=jiFvla=;8b-+sxoa;?kHYZjvTSOChwb= z*e5*AtAyUKxJq}MWi?nQPi7Lskoty61h#Yf)msY1yQ1(I-x2R>qkdx=5FT{|H@RIJt-wjc#AafEuFj~K1r`<}b=BJ{>Yoe-15$kS5` zDQs_mo&+d=nbcFwrVV>|ReoHV*EJvCz(Sy%GJ}#xizLyF9PjE~;7e4m@U{Diw-ZTN2KG#~Z4z{D`sly*KoA#sY1e9C!w7^5(T5Ydyb zdCm`E;Ug>$FF%=@SrqswI}1^tx3<7#=)GqA`+xePt^nckU3!;W;}vcg`VvI(3_r{a zC+y2=0COTmHeJ(Zu={-C=Y#;!Na{UdZVtjC7mzH zVKh|K{)sGpEPdUQ?kE@2$0Egq=;I2g8P{O^;b1RkQY!)P&)K-u@;^t@-Nd~~@1ca# zr%Wceh#J<`*80S2mGGcmpGX^~Jsr~K`ZwXbz>2sBp!6tcn&Q|+ zGhe>Eb^ksQsaY>BKA0J`K1*cr|K$G*!<@kD#g>rb(3#|P+*VC4Gd%i2?Ql!k3bBN&jOKQhm1_4(JCc~4Yr?< zrxVAT?a3d&tbo9E+8H}L(u{n2XnM4=Z{9QrU~TYfj(Z_$!gyQ!xwx;3 z`#)TO?{Bk#a_8i7_$(*Q8J0KJ>&pl1-Me>B`uCo)>20>}xQd~e&qket+=O?~k{rUxZQ%Xoi0_4-c zN{KtLvfyPQI^`X?x6NJqD=J;!1&$&aK42pH)tM&?AK04nIRH5%Ld!QgqJl+=G(J)6 zz>b!Z@ssM!t!Y3?dQtGByf|(35tHDq-Pj6=gqx4x&0>eCLS!CbdPheVB>^YgTaJQt zMpvAz@cN}mDsBtw^hC!ctp0e^JU|(Z?ac%TPic7rTW$!dC=0bZgeD{;pnW0_87PCb zST3_97(}@X@Ptyy8j-iq7sVajp(M6JQu5|piJt~2Mes`D^{J+{!kvX0+ZtqQ=yJ_2 zG!;{+$f-%99&O1stYyEzI$Lf8PvuU62M-@^S}8@F*(^w%mqB`|0UzBeNlPrV@j3vH z5+6!`U4XknN)}>&(*oZ=P_%+w$oO# zM9o%w@V>=60*+xX2t1w3EV3HynzyD=eG(gAuPGTg3(C_4=?-xf}%x zE}Muw!P{rs??WZ|Ky*lZtn(cDSa8rf-L6fX3+QCQ0G+XYxl4GKVk+<#4>Jt_70!b9 zD~rS`b`EA=YJ^UBAOdr-{mufrW9rDHzw)m3)WiTU()u9XMIBQSZSz$%xDz(O(CqOy z=*(lho&c8V?zYOEdXVpODj3x=wbIhmBm#rT=~+%J`XZP?Lw87{l} z$z6vqkHc@@cE5J?`0=%}3{GUU{u+77()c}BrR^HxEO>i%Q-Ls!ji|rja_gCErh1JEk(3Snp^dj6@IIwhfMzjHUy$1>_GotRBZ6>Gn znE_$j_(seN0hF#|o1yr>N?r&rHx&LyP=w>WjR^uEe(~RJeM2HKfUwDVQ zgF%69JeKA+1SX)=`NZo+wxwX4c;$b$|NmA7p8LcWWERu;*F8vHc>P@DShuL)1`2LH z_jud5huWDhC!D{Qr7P~Ax2PyOwo6hXxT}|R^G+CX{S?yxOSMGPKm*H$xB=e6>j`cF zEQrnmTc4bJLyDgsNI~lJ5Hs6zBRKf5)wPn`#Pt&g=>@@EHc(os1)l;ig5}}Ex6}ST zY*QZ}m-}Q7sT`=ZR6{((sD>~_6$*9-LWQlt3&w}JNnIGcgNn+^lcj6HJL@TQB+@CU#J!6S^ zR2GXhPKDGQVkJFKd+Lsg-#f0dCaKcJKOo; zLjaVD)FN$2;<^RrB`@Fl*nqFzYWo@&)QACH`y@YI|Ni}Cq456DX$-bH?BM_jvuNmB znFIi^f0ZBwYDNxtCpyA)QK%%+ z)6q#`^as;?f8n$_(6DplYxLhvj^^!T^A5# zU>b`zIF-irV-`8h(x*64+LR!y9TXf~j&SraK>aDyk^kW}W&VO<2jg+fjQIlwJTCA< z5Pi*uKD)5zcN7=WmHUmZ1OheIThmwpUDO5VHB40y=GkIyQc#*b{~ zgR^Kjt>Vw9;F_ZTv&-6#32?!(fB*iyO;|es)q^0f0-Jm#)}a@9q(KF`|$S%iyXs#%5QQze~o=mU0%j*xYjh1PGYf{AEOdW-m9>U||S##49 zCkpc7;wl?@CYMDHhjwY98&Wz)q4$J3w2y6V^rr+XtE-_1DBWT)J^Ydz z7!dmV?5B_^w&~jWzX4!kHg)H_i~$#(eCk|`?&Gj@Zl%*lXo{PYMXun5Jw$&MKFHG_W?8!C2%1Tluu)pg zE;!l%ckRXT4rSd~yJS?+el8g9@MN3S#iHk%9-jZkR@biPNKI_~nc}I?{nx#nH4;>A zBtBY4kAWZ5o<+_}R;s(MhR46G3U5$>2j0ulhWc58}Jf>lK1)$x_J zP_yBmth=T)B9Jz}q#8x{XTxw;WWUpqXn9qvnEVD&ikfXbL(EkTmf1L)C@B1fst+8w22w_%6E1g107vu1QeB^^%yE(lf;P_mZmRE zzRF2>pw|l6gh^0Jtr1v?G!F&n6YKDREC~rw(65MkWN;c$U$Nahiks?i zH_{i7u5j1>#h~e{e=^HtN3I{**SmlUbs()%AbBFa=+X54&DU2LE=V22!JLX2o-SBm z;=ncnd&34IgyO4i-zk1%*S4E4o;yj}FOY?TJ{Nh_>B-6dfBDZr*RKb_A3zsh$x%9h zv8eVh&tYWsm*Q&*7rTDFbuep(oLoBvO(K^=$CnErYk zwnQ7&8X(w!^!cV%Cp|L9T_1qv;0?RYx6PIVT@OYf8Hsq5$Cer}`X~zwyoS2J!*sL&sz5*q4kN!WR#0k3A{}CmctkbOH<60sPLxeS=iG&b} zkl-_c$CrNG2jy77XQfvYu+^ zL%{g9u!qQrI4YLV8NmP{fs)5kZl5*#?E)&re3TBB(0^Hb{ux6f zf*ZuDaH-Uzra>Va*G_CU&13fW&!uS))qf0bMNk4OHbm6A$7N*b=N!%;#BW11F@JV;WAPA7+f$UsA}f^si*=Ob z!40Y{fZKom{5hlJY7=S?0eqdF^nwh6AndGKYlI+W`-~UNSlcdGI)YF?N=iD3fydQ< z*qRN;+1U7#*Qkz;&JJI;*c$je*hp)Vvk6Ypa?}k`2WXi7yu@Ze&H=6&de=vu5 zu_ah@=p3S4SIhNlmXmzetzuFX3HVF@GAjD7{7YBdC;u;c_rLhy%@ef7YWzd1{+G?+ zV`*hYT4#xD+N5PbD`=zspbdjB02}(;d2_2gQ}%1(n`-d0 z9vR6z(Ji%OhVn0x+Ng687MI{<*-JX2x2!(A zo9}SMn~O&b-s^H6+$FbTt;%ETnHPI+G90RW-MTZb@p#+>Grh@yjXB3ZFYHl{>PY=~ zeDLA9;h{ypXGg-Ff*1K8oRd;0zEEFFbQ}abURbf9i_LY!;a=6fTfni|E-F~Ou)j(% ztchR#_*BwwFaD^LowM$3c{b%YJgtu2)3MZgrLW?aHb3f{@F8|b#`~!GY-Sp!T#3bQIn_% zp7VL44foQhpY|A#pCLVwZ*-rUGb1zJ?)}G9^Q)t^#Z5Q5Q^HR0QKWOfTjil~P<`>N zbB%+o*TB7EPrj>)&yN>N_6$FKD16r@?|jv35586Ex!Nb@bcW}i`8^CVUwjb0mMa!D zmZXp8{XZsW&kp}Ee_FVBF<*Xth08sSfQ{eyXexHTv^~~&+Uv{J!7V* zJJZ^9fc`ArJTX`#EV5{RhUP%zCje*HOwS@HcAgkGYB6W7bM34|bz-Q}6^N!w6wMST zRYj-NN2=V|>$&^p_Zp9s-~jmWb|7SLQ(_CBC^{(bH{;oUs#cIx#6bx2z~Jh~I>n12 z@)j5k_AO=YIaPXoAzl2YxVGxMGW0~m znGzWi2oID>-JGxA?AfL9qi1ezaT!q?2KU>&Nl^_NB==-1day_Gafc)LJhET(7u3Al zK}&dy`a5|)xuk7E=Qf;qto^z(DsS}XO=MSUe+9n3T>qm99Y|TX-M&oD9}b18#40QL z@V=fL^Ts2uit#p@T8`AxroOytrA;lyl75v@9}b$Od)7>-NK1#wtVip=f<^uSV$|yF zDzC3xLxGY!6QyCU)M3^kB8DbKDd8;|VWNbE`(p<^O&Jd)r#b7;U)}eTd)ViZrz-h{ zC+9qkE*Z!$*6d_tq!b;?-&{Z~W9+nTWcjflx~h+ndu~FQA~dkimY!bs;TYx6 z`#GtPzbTZ3-FF%f%Af6Oz9FNrOP2q5keVk?5*s!|H=+icNUmw=$rfdd6(5{C z2XFRq^>BZGDRBA2D>zHfKY#Ls1z5@BYTggSd21BSw_H&bDeOJ(R?T@>!J;bDIJK~l zzv^K0yozs7e17xMK?k$5Z%ZVROqxt&DQesM;Kno=dOEsp;H2FK>3DCo}t;% z$IUWLwN^@XNe9uRAq`|H13kGLf<(s<@(Y6?Lq+_VF3!tq zKWb_^z{kznhzoe>V0)%p@boH24lOl z*bl6!D5m0T2Ob;_54O&sT3IEgWMniz!+Bx*sEkeL+gaZs6U3?)jE+MVn~U$7lQ0c;koU00_m z{)qWjzza1flDS)xAFKX2Kh9&Dv~N`^mjGwoL1q4AU%U}fK6jZOIr+4; z8`OX-Y|!*~+ef<~p)x*wZ)DbdbrW|O(p;(e`NxARElqTEY6A`i;RQ!@ug^a}`YoVa z+z2@`J48!OXo+-euZHjeKpKk^sNWb5)lILxQ}n0BO=m3HF;7$)=O|;E;rE<6J8N+diQSkNnM2--L>~=x86c4Afk%9wzRzkF{Omp66+(-EJIg0axBypw*R78 zFyr4fL{bwkgBK8eL_PP2$XBSSv=saG-8=QDYQ>o1V;ze1d)ga~i6$8{THiJ$x*4Ey zApqc;e(xtr-`3WQC<>A5U2v^~h(EeBT|{wi$3Oy?!Lpdtb4ky}++jR@d&PTNtqal0 zol=5kSDS}LyY?2OcRoE>_D?V9@MABPzUogfYP?fK;{x|_#xvpDS-!(WOp_nOt&{xe z(trTfls2wMtH__*MwB2HftWGDsdwM{s_0sf?O6Yl*n>0rHhB?gN7DQw7AMdFDsy6r z>^P8A-27r&MBNrNO-sW`pkGd6YO15!#L2!3PhDrnPbc;6_MLs@;O52y8OR#TQ_+EG zHE!ajPtE9Rr!O4e#n$=ELpr#B&L3@=TU$PSNVwO+CpU*H29fZWH)_RGk@xDoMY5u^ zt=)57Q+FypL+%8aWs2xp;03dR?@-vZKbAEQzF?HghTRs9PgIoHUewwf*luD!sJ;97 zBZYpt-@j`&DyNM6(^2q{o*YoOOOQ5MM?t5tr_`;%rs>pDNm!D7Ui6k8nI+%L1;FZg zg*%a&o?b7<-E|z#R2D}=&)y6TrJXo>kGzXOq>$~)4=8dSTGhIm+L)lJ!ZI>OUOjDd z9O0-PG#%S3DgwvPB_t(jt`!tST|8}iuMYK;L8Ol|3j|La8ydbG+Vx#S*WN7OV=Dng zaScWe4k=x9hh7*3y4*8XoBZDG2J4wNE~iH_@)9kPtP8RnkKYV?n6I%T2t)exM-4$uW~na z7V!10eZqIDR>JO2Mn*)G{unb}(T$yxqqDPfzvV)|9<_aNYA&K8I;7=CNyu9HN$=eP zHa}GN?76ha@*7reWvuCy)}$)=#fzO##d=k3twY;$wsKi#KU?Ut?gxLOM(;bEIm1(Z zBV8xt>}M;Dih4KQ?D4_w>kjqHY@`{c=;FO(((+F7Vs}M{qV~gHmX`ErUEi?X!KvcH zZUGb`LOGx;e7gV0172i;4jZ1#yx#HyJ;SpVSO5(7UDs2!GuwXPu-w;kX@vF)@t!Rq z;L;G@aIenAC8VN?l#U)bVy*3yh%5_^xaHbWwC~1U+I(%t+LZc>`eN2Gqydwi@-$;$ zUlQ8Xd!&RTsk%9qqi<@?1*m9}OjBo(?^=)5H+e#|A{?1_papfzGWmKiIud>%(DWiQ z#V;Tfm=b&|0ph2UQSCEEq%9zk9^7u5hg?bz?CgtI92A7l%svRh_FLwjkhIY|Zd*=% zT1-(_)$U-$7DaUR@>okvHOboFoxH!rUX_sh6ciLjQqTJ8XujTDG?98XJ~5Gjbn6ir z4M{UAylySarfRkjJjE{{Am@0y>GHQ-su~)1_}|mT8x#9V*30

d#Jdtjo2Y{)Y?j zKn^CAXsP(W{ZnI>M@HRzrp9OlH}tDw_sq>MwMagris|>BMX1jWN%!d$kL0AI-^5)4 zS!`Y~iAj~6ZaNM2{J^W!2P0^XwV~$bf_J#JPE|?s^10xORP3 z1qNVz^;qRU7n_FmD=D=&PyBgVe%vL5zJ|sj{qHBcpL(m@dnb|7GI7@3$9P!u_U)Se z_{^jB=WP4XHVacpcWlNddis9#yv5X;D&4Nf)Fy`y z;%j$w`gSvt?}$rDRhN{gR)ze8(O@6Vd$;WFi**!)Gc$!E?^G4xuHK{=iwB2m63RkiTt4T2j&c3f)oWHLF|)z^uOQ-^e*ARBGX69y z0U}|Dj4_MT=Nsth{i27R0?7bo7yuMlrwT8E+CB=i@MOLSM|6P@jL0Zmwu*)6-;vnW zS->5J;=|UNu^(Bmx&zh9!~VvyGn3FH%GmJS#^pbePHrs~U$vR2pUjby#1P(UvMF31 z?~)vR^g+FDxubPd<@LKSBQ^^5Jc&{}`hT?c<>64r-@juiDOr;g(PYUIp~X^0Ol6Dg zOO~=%%D$9gR0?I^m8E1SYe~o?`;avup$yr{zK*%)L*L);-sj#w?(^I`Pfv}^@>$-? zIj{3Nub0tO$Ie;RCbl80DtplbdvBqb_t1hpXbuks%!|JKK7|5nGSzZUn;;CBo$`o_ ziRrUq21hJ5P5tg!vxLAY=c6*t*ulR}oAa|=T7qEW#j^LwI}oo!kRt%j zM&1M963~qm)Uv?={}n1LWUxh14u#|cwu4+iHgACsV!6v`2-FkK^g4AmK}q(#oX3nE z{5SYccOXQEEbE4@W#H0Uxj?+s4(!_-ZW4cn0fXs?2t$0>m#&$ah0Lh+OMYQy=~V?o zNTB$`$ABrHwiygyM0+qU4gnzFtzJGFDmb#>im^?)`FYmvv9-SIyLS6zyR_SwA0Kmd9~%DpUc2>IF-t6L5Z^&EFRnztTfv5X$1 zy8Sg466Cz%aOs23Yng*Dr^WJzE2B#L)(#Bj+~8Vw0S$KYB$(5K5SL0Q0rWa)sUHSe zpNhGfKGGE1y86l9rUdy0I+!9K%J#UR%MsXILI~obS_VLKYcU_p zfDj=z*!zX%U2;HPAOCBuU=8ya=mG$=RrHc>C^6W2OyhxNRjk*A-_t`E`JOW2U zS9f=ihG=0?Yx(});W8N^DZNL|tPYqga~*2i!LI5g*6lnR{Tq7IJHQ{r4_WDf#|804 z81fWioG&1v6@89^Vdvn;IPYc%yssj?0#H6k!y_|N9Hp=TuvkO7nb-6gBnk#3U+4Q) zNe)amuv4=H%+M34{pxrMgezm_&(rAiRLs4f1}O6v4r!e~ia0OB9n}uW36mc;uH~ER zg_eJQJdI0Qtu6S z;>!3rY=?QPUT6Ov?YWg3Wru{HejY(@Uz6|O{~QLlPH^`GVD`>yM*Zfej7f35ze!56!H=tIr<|U3@98Fj40MBrDF)Ca^^1-J;M5tXz@t zm`NyNFRi(K4Nk8bh7v0Clf)UFjhtuVaqU|(yMTF<>ZCe!ldrs4oi^Y^@+Y88Ar_Ff zwzkAN&+LGk=Y;*u!RWI51#3B9Cs)n2Rd)Jy!o?wz0Lelpj{LGzKM+E#`tiF zZ>6f-|H*;x@B_w}Na&pp>jvIiX-yxN1&RDfPRgY^bvAz@q#(f3-*g7Xy6C3`6A*)| zAl=Par~8(Szq|%@>5tG!#iGR+=56p(%%lHdV@n42)87FyDB+&0Eh#NfQL{%5&e}6D zfGZogk_e`VJQ9uHtjA;T+!28;h_8%Ng01Hl7!a97ROFGz z!R1{J)b35w)j;}LGz}LA<2+z4s6DsMSU;!jw#7MOxxqGq&Vw$V;cIZ-#?TuBy0zIn zle4qu+{9zb%4F|?QsVjwjQ5y(As=B3?pN+-xewV+p`rSNc)$`*C%2yCKg;WYKV05L z2!FO9Zd&;sqm?&=KnVVDzgz;#Ns=IJt{EsI_s11`Mbj1g_Qp@L;idXcjU|WFiA^bD zJzTd-xE)R`mgvYTi!d<2DfAx>9R=l62r#h!`Bgg?7*z{J4nD4WRTMb3c64w;(h#I7 zv~e1W2z%tkr4t7_K*27ZYj$c%w}bw4ohBbE$gL1b9PI2j;cOn*v+#rsvK&k_w>$#Q z3yUi&#}5Y!2evMs%O}gwg7Hp(-R`=U!NR~#Ldkb--8`7n6hXQ{ z`|PdLO=Dx3KHdFsI8-F}5PZjjX4jqL8{KaC{CW|tSS7SKA_N%7zN%nN%)qfaYH6{6 zPXZXdMto!%pQCxGKs=QI7}L0UvaB0%aUM?pEwD5xl>mcKjNRxGrX9>Sq_!t^icy+} zLN^HSLTlG}e$xcQ5&tC+u9;K`n4skwjPKoA&`=1f`eY`)>4SlKmEdymw6%+&}jiiRvjSI3DAVQ=`yKNslx zrK^TPH97sDz>zx1hPch)nwI2dz8b@NM3^gxImFh6EH}5Q)9A@aEJb|V8gNGWkIqO- z+dY^21z#z2N3jWg*0@kkZ$$U~TySSYHa;T(pAAbM$K+FZwNa6(LQs>h(f#iBL)YtM z8-`|ziDzQIhAH!<%I|VA_Rh3{^I6&~rk;c`*B}G0o|67{(I!6O^hdp1_LGs^eS>0F z-w2T{n4G@};56XOcn_<*GZU;5eGyZ(p*#{S?$G4N^1L>+*0Ezk)*?-q6InzLK0kKw zxskS@h8+#(((JnhO}7dKUX+vByb2PplIQ3fxB~d)6BVL>UcL%rd0ZklD0V-*G<6|# zlonp|)n3TFV<5;}KTeDBbs-o@TQ5W*Rhzb*hCS(r>tA<*q%9@>R&ckOU z;`I~Rigs?wV1>IPN3{qPuof+S2m zgTa@%^#q0EjVK!6&9Lu@qA?6R=)0_wh5PI5d!L{8^DvK>C1AEKbcJXt6+A0zAht(q zTm7r3@IF)3-rbMI=2EM6EP>4hbVc2ShiKI0;gSXfB-|L#g!Onn+{se8eCn$OSICdv z-mFyhA)(UJwKu}|9&o}!fkHig{5YoHSKElz^GI))f82rIfG|375F=A-p5&Nu(f~r`>!zfzb;&-_Z9Ly@6Qso1)JEN z*_0htW+=KF>`kFMJ5p$i&e@vw+$tmo+8vXI7HC*|*gdAyqa;c=(wi_ba7iOg#nyMCud<^Jwy#)2Jj{y=osyp5TLW<(#GmSl+rO|g zb~*Zp9kLCGaMTvH#*5oW zFf8igLoF#QyBFkSP(qD#r#`YoN?hD-GC>oqH0YI29dd;z7!gKC9QJ@06g&TbmsvrY z>(3^zk>T;8J;7l6rjv*Uz+4!cnTgTKz6Jg{hM@%8)}v5szG-K-2b#s&@actxTE?t= zLk=Jt2HiI&5NC(UxbnUDhs41M&7 z8mKJMIpCYP1nj(eTwUz|09YRd!L~clLKt!Q+$TirT|-C-%p$)@7LWx4mkF-p5nH{}?jjDL@|vi< zyLTFsTqHB@otXFLjS}#iUMwzqsFIt+GD^2DB{l_J!t!-i#QuK&Y!1^0=nD-Bhg|abM%g`kr91w(0RQGp8@W$M!}vN{vaIOLX3*zvdD;#x2m{O8F1i)mR^5pYio;= zQE*2(ox6c{e|N&m_(DGapiI`5bpjrX{n(&IA8<`uTavU=)Lils5%fH$z8LmCkk9ht|+*_h>&dDg9;EOr&>UR6xaVp#jaIGtR1Sidr+ zN;&s{Rk{O?bR^`E#zGE(>_BXalUFgRi`<*>4Z}OS$rj{xr;Ax!q(uTvyc(jaz{n$? zd$+fUpLFMXiM`f5tp(^^qXhhY0+~ooB2JQ-IQM(_7gM>ivRb^ zE%qbxGMBNpWrV4yeEHR4nkP%u^#{lTlZE8zD?x;FcMOv}c|s;XJnftqoLUGCIAI_o zMkPV4XS|V)sX?sTih?Y9zp8urX3p@zjD#c*+M|q&HqMD}Y7GexO3e zTF|~1TfYKY{MSCJd2bF3V6TUnt8e0Fr^S~Cm>0x# zXQWEI{M-i+*CnZ@8~%g!GgjZj*(S~1;}Z=51RCdBqs6+)*A`Xi|D@+|Ii}kh z*zm5I1iIm`7DGFbZvq8zMWRHshfwcU)^z^FxPKvo#UNXiiboa_)fkHz$z4I9z{YuK zOuS7Y$5Np_KOZFUx&`#?D<|ZT$2gd7Ix1A>Cy{H4e%s+!`d^i}wxiFJi?94z@%r2R zK{hIOGkT+Q}PlIDQh`l-y{Rp>4rZnnS3hPDF5M+?8Ut099twg zqP-#Kj8FwwMn3$)dmlnw)2ci~xAj{jF6_|cXAEvvQ`0PJm4Wg*zgsovbaC0NyzkPT zSem$>&nN5s&kBiGTQ$p}d@1v!;L>j{IuF#fDB%xV|GuScTpXYKGlbb(GG1*mRc*l> zi~RwKH8M~;g4K@xbW!@c|JO^7y^fYOG&f9CD&kEj9!xQp-X6JxU$CIc3spA_x_n#x z(-ubWu!n$fE9Q-f9sWwoc1T<1;Z5DdQ}%}M`@H|muYo0c{=#$}-O>Z7f+00}QG)r` z*~G^AjoBNuv8+PY5l1_BFC}Y?tkDhYZ!GK_0Bf?Z;bTn&fjN5RWx(QLQ{`&(qy(#5u;*#43E)yq7K7f^*ilDaMTAURdE67_lH83CDww53s|^ z=fwIy?JM7WEtl>=&9R^IsRW)HZnX{5+Liy^xNwLoVaiX8KnaP^7=sUM!&X#P(Qf*z zX)0jJ`|6fUo;Q59WgZR4=Huh|k*tKso;5h-nQ7h_dB$IQ|21kfl{ zxcWfOCyAk|_mkflDS;uumUHO+99wsVF6R$c6>W44T&cY8BsoAZuXsEu;@dt+3J7U@ z8yQN$bL5%wTsad%-R8Jd=AHCtb7S^Qu1O)b_f)RQZOX1`nvVAN*LQ!GwimsR)2qY4 z29;#`!>#&Em$lVK-*Yx15>G@ev4sKQ_tww?SR_PyxI-_GfV^O&%J|&M?BFak{U+@G zIX%{!7AZ*7F)*M*0p=WSCRT#?0rnbneU$u(_6=yUfsIxl>R>z^9w~Zmm*r$--@&e_ z87MB7=V{C*`#|3V+bNfnf&=c7_D~_Y4>jzt4F|{H98fBN{;+gdw>4zUV25H))PyEI zZxANe32_*x;1r(mOP2G{XwtRKmU~_I`>Y~xCl|{H?J1l0@E6ZNq<)n;FwHgiOtMF) zavSs)A>MEUC7LHMy4jdXi4G)g$M$2<-hw|oNBcbKOk9=qTIfONq8da57H63tc*vUY zJ1Xm{ya7!#`S`*9{@^FgBk>|76jQ(t9`#LsuUvkgKR!r-Hs+TRHyz!dL2L9gXoI}2 z{d94V0(#nqjvg%$^^q^ZLoYWphKmX*tE? z@iWhw5a%DOpyctqQU)k^>c}Re{*q_$7?SC&;xrF=svFQ|1V^aTL2tb=>amgG;e+~h z$9&^Qlw8qAF3g2B6lAckQW-$tVIM8EP(3u;gaSflJ@+;bpF_$JQC(Cl;hcXG;Z7wVx_4YY!(*>?R&Fj9Iw6RK5MEf%W$2igQ!GBOFS?VEtEAF!aibWg(DC0K>b`yu_?J3PE?I%F9 zK2>x8EO-Dcj;=k9jyRUH%TG;J)e)RfreQ@!2+I1}=$pUq9%1u%0jArqRJ2}z@;g!s z($-gwxLC0Q&)xy*c%iaTUAO=lCAJ&SL-NP=JZsf=4R|Yg{(M5mZxbMoz@emie7Qu8 z=tu(GJXw$7dBiVb{|t)ozu=fo0F@Sn*crle0BWB_th%2%eL5<_5m1EJnVHH)8_zwz zj4BmaJ>f@3SeVf_0HAAXk@1d(7th{8y$^fel5#M z#nFunkk+sL*n&bE0L4xVf35;f4m?u`7m%+54535ti$J7`L3&Hf7<2Yv8W=FLY1IVW znlrpg`J|F$yekB(seC-2trVf=FDzoOx;Zdl21V~`(BXyJ9B4gOS62h>{PpFsxQNJ0 z?WZu_NYKw7J+K9$3^P%`@o-o=NqgB?diyJqeeGd>yFs}U~g*DYihH8*)zDA zLBik?;zfyaocw;0{g^Eu5wWIJY*ba>o;~4yt2lX3*@Qh&NJTzquDq;_`FSl01*p@l zQK@+KGD){pn1KlUV0^B=zCPppT~_+=XR^!$LLphN_Tb#xdlYrR=IDKH>zwaRbgT65pnnSgMSm%v1!DxwEn8RvC_E;|WD^?*8a7xhCSO-0?tm1W9# z`u5Q`U~7n5Y`;SMK>_*p4#bbl`%p~wuo8o~nz?Ju>ZfMsLnN9=rH5B8Uq&gY;9jSs zD7t(!K~(2YaG-ucVO1*vB@co9;ZtiXOsIQufh7d;ff5LN>P%#5_Px zU*95q&FA>>;~h_jpq1b*w6zv*{RA#Yn!BPDKaYrh?q|4J(E_~a^lUz?>z3{9$2dDk zINrkT^Il(p<~o!kg#T%Qt-!{}r&2(Nw}qNk;*5UG&bXJSi7uR^#7iJM>366(Yez6S zjT+&03(P9FrbWix-E^(%ks>D;bwna5Q?6klHL3t)y2*`x>gY9QiP{1J)MBc@2mww{ zmGkV~A5q#LU=g#RUmiD$Jm?uxXmzqyzI#~w$TpSL?(%rzS76u&sRTY-?XA$*SG}ys zpX7sz^m5AjLDx`97hlLwG}Nd*v7N=XzpMFj+=iUcIW#J_U6Wk1x3a<-f3i74p9mY< zyuZ_slZr~9&x)Kkx?pM*eQ&+rqjye91;6)|Y{|3eZdyz7^71m$1q`C6x$;8ilYf{m zNBSeKZ9*;=o6$)=4Y;Bj1SQ6vK1rhew#fKl&dVtB#^`!ww!y_BXEw9w!pO!{wJ93D z2&Nm(El;Ecd@j3hs$113H^R2n-rxV$p1opb=3bfzp7@g#xE&6Bect6FmK&1nP@`%G zS7?a%@(+ zV?OP6)=i0V^FOn72s8~O%$oTe@Gk9mYHNi)`%2zY#e6|EPd+l|N7QpWEv>+cQRG29>DVPz=}kSU}_&oak;Ix(fV$1 z%hnQwIy|O=y{IdiFKU5)fDQ**BF(EAB<@911=U(~L@=@M#9)8;VKLDa^S&LsimaM} zSY7|CuO)x8L^P&O!Zb);ikn!4EoE$CLR)*cWNZ$&Ax}sm4RI`5N!uJjKqR!GZ3+3G z{}W{WzXLAYBRn8LnR7dkgIWdy0+jExL)?WbT&CSXH|db3Lj4$X~CO%XFg!Dw*c$0Q9o6A!I>GLK8if#rd*67LeD)X z{tnlu0j5w3xHr{vfzX^FhoIOkGVUKrrnMXBQtRE2)T5xl7$L~JQ``i;4&un0mnR0W z{3LzY)S6)3>g9cb+m)Xj9CE~1nd1PB0oZ#H?kNiBKa=@cs;D6Awe@a72#m25AY_8h zT~bjG+UGwA_Mwz^yYF+`gSX$#nIE`e0 zG|>fmtwi5p)=oBNSS0x)RnGcdvg*S0MF%t-25g#*?E-v_8QA_9G4CKSX zK_Ouh^1ecrpLZF}1&{2ZrG|9`YT|!4$bZ*xh!yQup)~sW{p>?BD%fOCAY@Tzi1tO+&y`9O~z<$S7`kkeDk7< zjikH$!$!H;FNl-C-Q6D`LnV7@?FPnx0x$1d2GBi+vTa-;Sx`VA>K(;DQ&D(rKjq3K)Suf(@)pDrTC68pTfk_iqRD$Wm>LBvlv8KVJ_VKvO5yZj zaQ$w~S*8-ky8iSZ}Is*M`90&oG!Qccz$026o3)QB4IYt7J@f;c{IQXh3 z-fL%R;b_#;9A`_W$!YmzE;nmn_7p!|!Shhh7NxF1)X00F`k)y=;gfIeI|N@p-#-T^ zcZ~kok*~CNTHQm&kdpnUf=>nIK%G1}_UYv3>JDdiLY5cg64cB<|A*TF2+le!?#Q`h zZe%nb_uDnQuR&TpSQFfvhE?(&>?M8rs=Qst+hgv{HJJM`vjX`$;BOaF&4!Z7sewMx zPi$onbclZRVTg@f0$~EGQ}KQ#8s9A&mn;nnEuMT^bq^cZLQ|PSb$_u3U3DG)P4aza z+NSpoFD7|`3bGDAWmf0l(y{60sbMA8Tx@|iOurRwc=2e#`1$q&m@6qAEsg5K7@0X3Ms z#{F|;ER|(ygZpUyj)~|tO3KTJpw&xO!2EPEgC~UyQF>Y(-BkM)1ezcz1pIE&rAr-s7!H*+2NBqyt=#LZ2!zgfBTVjOZ(&G) za+;%b5W@BX%0WyGNA*2jMgj}B0@PHX;S=S%F`*e#iGWWYVi#3qi6)kQSEA{uiX3)Rut8Ze$P$&rVIKD{ggSrJKXgE9L*UARaP@|_Y zH$|1CxxNz!3AtB*DKy_A*f$soYrE(j3j7VP3O8Ab`gXz4IevTxeldyUPQaj6B`d-7 zHlt$MdXviYR3`7%=v>DTO`AWd!TrP0?5Mg#5R}r}JF#_7y@bI1Be}T>!qQw!T1(+{Y% zfSoM?MNojZ+qXd1vPFWIwRPHES>H!v0g#qJcZ0SHD_8?Of;PQzr&{OFMWko^cD1t= zuyZwyQX#?$bqm!~>l}pq!o;_AaDZJ%2?>f#P$F9;`{X<)dH#o1DHWHebj$xM)7uk$ zt`gAJ-rm*4|6T*`%)9ZK2iMz=3Qr8)8|8sIPA>D_C+VLWtGpHdg#K52b`08{;E}5S zoj%~uK3kic2_}q4@KyXZE%{B6xK*rAtSRwgZ=*0(q2=SgLUnlUFiy(NUC+%=s#dF? z{)44?Q;2m+?^iFz0K2h&!PmM|7n@^{U_zm2!XD()ZClhuNE{MLg&s*sDCxA03&Kihe@I5HIU16;MA! zwIpNmlWCzoxq72o4N}sGW$9}b4iMJJ_xxprDMY276ab9OE4<97jglD~5+3=Ap`i!XN6_!WtrZ*(r`3&U9}vU7;ZZstxieLi##2>`N(|aJ270 z`fSn=h~==Y{snt$p=qyx*UIwAOz`4%JKg&@xbO`7lKdFelW-u{&_Mw9JniF)-2lli z7CwQ>p^zXV6&9|Zf=BrOpvFWEF(|+>;o@Whn5^7J6@UeG4ao`2-iAOV0%Ewa$w?X% zXk}eD?h9B2{+N#05l+tVqvlU@lYHA2o4GbJhrAQTfSoYsX|it04ArA4=fkr;_dl7z zeCw&yfa_S~Hb1O#)pZlN51=))*d4+x_tf(|;|)ocuyEQ0P~T+>Y<0z=`Q+$@g@hhL zJ4NIv6sR#0h3|crd#z℘@}aGvr?N=GaT?In52%oZAW8td-D$U4)h$T;WBFNP&xvt$!%9&X!5H*=a$7SU8#8_L6s>I5!ks6eTxv=&t{XlF zCA4k+LtPm#X^47ro;cO{WAOgwRo5@MtML(xPU`NPu7L3D^I;O;6^MK%Iuqu4GBB|3o;w&1`OVYbq_dg0!#C+LYmJ%*H;<|-@RcUyo*NN+SGwUNW8|RU z?i>^3)|O~Yu}Q>tYJL239&Sc7h>uM}bGZ^Ms>@2toBJf%ap~Q98j6|}a&Z-HjTPLY zGq^3zPT9Ax#UGNVFwCB9Rjm6f^7;Of!}3~eU~U;iOhq|}=k0>*y@TO~HKaKqrMHsY zE_(%dBYuv`pV?p%!X=x;!txun;&z+dB>Lgsds+>A66Rk&SdCVe%~e0|v+!~-_1i_T zKZsL@Dwcpzj$Hgnq$b}aG~oq%K7>Rn_qBgVL3JYmuL!vpzrlqka|1SN6E)8kfJD^5 zXalVvUm6+$k`_}n8_Yohr(!UaKA;gh+S=?iZxLuzzVP4^Olj@IIyKjgd;Q?OLJ|qu z6yJn}R=b^`0`)nfq~${(h@4t6bzX3~M&|qS%-YlX2DL?zqqP0RMqo&4@2rRt5Kd1Y z);lb9IM@Qh6bKd2BjiL~ith{On1TDds&|!(-nx?!;)bZimzT1Y(OSd>a8^HT#^swJ z^?V?I*!PuOB{DAh7EeG)3BS=dcpKynwA_F*5OtDtZ_I+u5rrs3q1JM)1@^Z+Ecbd8 z(29zhdc=r=NgzbPochS;;O$MWuq?kSe1tQuSHe=z!Ci8)A#h2&yjha<0<3d_Fo-({ z2UP<1TG0ABshH`_f%NV)(dNTK{J)H_oxx_pH>c-u^~7pt^s&AkWG^b>)8~eyh~JxV zs8GTN(s*gElBsbMNRm}^lDlIc%pjTVK`jp7vQH0cW=$WAva3yEKB+%cKtWN@NN)Jf z23z) z0|1#y;rq*LCqas1hv%Ut67ByXv8nL^DpA$42w`g=07AntPr9Uzkp(tsw6hqJt}~+V zv>tI5NMgc5-wS-^!OuNZ2fPa6u72MT0}<(e6p;BISfpU70+kHaA?1z=eFIQI=v8!32A+GXgId`#MUC zUbt+V@q@mum=mVN)008T#ysi{qPLz3S?6H*y=SYIsRk|F8}9UmSg z-||{F3DS(pPcQ$jYx-Ef9+~^QLXJE_ma4l@frVwSGc<4(ZrDlhp~SAaOPn2{SX5*|TU&{s35>IG-bp1JP_GIJ(MyTueSEws+_F z!;7t>eUYu^4p>BkXgMl%i)xsM=Ob1S#;Tp2odT$hby)kpwWBQRHNYn22;A@CGg=+c!-{WdOP$@its!QYwhs&g{_j>w}UZ&JxECbG*SMu!=*D_ z40mH}IlVQg++}t^zXX$y*ZwM`wkeyI@KIHtTx=THd~TMure_WHYH%0LXN^57H@P05 zlW?hQnu=BoG!kO+ysX@$qMY%1tNltUnqN?<-<~|Esy8jo25|y|MsC%bRTV0k3NI!FZ9y(NOf-!>6yC)NiMwQYn zh1Cr>*7SE1O~)f=5*4~`-_Xcr(`z;hzMCE`9yrQ-viT8PSn}qupumC0b`R?0G)24& zY&JPbPQ|mjU*A!bWZ5GfJN;i#b#^~z7%znL7FGEiFjZH2I9}8&KQ@xguG5~U!MAmG zo`Q$ajvg{ul{H@NkzW+q0A;>M>FMcFt#p*`i{pj18^=@ULv`2BtcH&sw=TrY<7y~0 z%CZu}4JwHQ2;dF+62AI6#GcWYJ0 z|0y%^I9toR6nr?Yk zB9ZjCg6ir*Ev?^)eHP=UT{-xkHOzgv*x&>e6HD;eephzF1)WC~PZ394?W7%lp|&|( zaV^jR8&#hW3Y4uE>y#o-9>L8)n@fFQ3I7{fQ#`@dJGx$A^rZ*2wz>JNs`-OhFRC!% zPV&t{3r+=*r`#t^%f7|n8KAhcy7)L1CYNJ#8zaervuJ=qhgqfa`TLm1P+M@eVj<*h zAEHkpCbeP>L*-CFJ&D+I ziPY(jte?4Y38k*%+R%`nW>1}6M53(ev_%cR)WkH{Yp9*4)w-7vgW-tNTCu<4B{8Gw z5SyW0cRwpT=8lHB9gy>s*MbRft8ZDfAiWXhK#E`vKg-)vuFF)Z4U1bMyRnqDcA%OaT;X z&hzK|IwG%$ez8v{$rt8;)PRi!HUsu{cqG(E(bh~Z32)!Mw-L)TE#nhxe&smM%B D(6>tb From 28e7e980d721696331c2e32e318871693f9c8a1b Mon Sep 17 00:00:00 2001 From: Chayse Ramsay Date: Fri, 16 Feb 2018 12:46:56 +0000 Subject: [PATCH 10/94] Correcting a species_traits flag issue --- .../mob/living/carbon/human/species_types/jellypeople.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/species_types/jellypeople.dm b/code/modules/mob/living/carbon/human/species_types/jellypeople.dm index db27cf81b8..1dac05cbae 100644 --- a/code/modules/mob/living/carbon/human/species_types/jellypeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/jellypeople.dm @@ -4,7 +4,7 @@ id = "jelly" default_color = "00FF90" say_mod = "chirps" - species_traits = list(SPECIES_ORGANIC,MUTCOLORS,EYECOLOR,HAIR,FACEHAIR,TOXINLOVER) + species_traits = list(SPECIES_ORGANIC,MUTCOLORS,EYECOLOR,HAIR,NOBLOOD,VIRUSIMMUNE,FACEHAIR,TOXINLOVER) meat = /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/slime exotic_blood = "slimejelly" damage_overlay_type = "" From 665a7f0a4ba56c7bfb09b92f992b2adaf0f07c81 Mon Sep 17 00:00:00 2001 From: Chayse Ramsay Date: Fri, 16 Feb 2018 12:47:49 +0000 Subject: [PATCH 11/94] Correcting the roundstart slimeperson heat and burn mod --- .../mob/living/carbon/human/species_types/jellypeople.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/carbon/human/species_types/jellypeople.dm b/code/modules/mob/living/carbon/human/species_types/jellypeople.dm index 1dac05cbae..5bf2f884e4 100644 --- a/code/modules/mob/living/carbon/human/species_types/jellypeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/jellypeople.dm @@ -213,6 +213,8 @@ hair_alpha = 180 liked_food = MEAT coldmod = 12 + heatmod = 1 + burnmod = 1 //Slime people are able to split like slimes, retaining a single mind that can swap between bodies at will, even after death. From f66931142c968ab4a29ad092b044d95661131617 Mon Sep 17 00:00:00 2001 From: Chayse Ramsay Date: Fri, 16 Feb 2018 12:49:47 +0000 Subject: [PATCH 12/94] More corrections --- .../mob/living/carbon/human/species_types/jellypeople.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/species_types/jellypeople.dm b/code/modules/mob/living/carbon/human/species_types/jellypeople.dm index 5bf2f884e4..53f0b07dd1 100644 --- a/code/modules/mob/living/carbon/human/species_types/jellypeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/jellypeople.dm @@ -4,7 +4,7 @@ id = "jelly" default_color = "00FF90" say_mod = "chirps" - species_traits = list(SPECIES_ORGANIC,MUTCOLORS,EYECOLOR,HAIR,NOBLOOD,VIRUSIMMUNE,FACEHAIR,TOXINLOVER) + species_traits = list(SPECIES_ORGANIC,MUTCOLORS,EYECOLOR,NOBLOOD,VIRUSIMMUNE,HAIR,FACEHAIR,TOXINLOVER) meat = /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/slime exotic_blood = "slimejelly" damage_overlay_type = "" From 8b2e073841af348f6408ccf06cd098c381bb33be Mon Sep 17 00:00:00 2001 From: LetterJay Date: Fri, 16 Feb 2018 07:53:54 -0600 Subject: [PATCH 13/94] Update message_server.dm --- .../telecomms/machines/message_server.dm | 185 ------------------ 1 file changed, 185 deletions(-) diff --git a/code/game/machinery/telecomms/machines/message_server.dm b/code/game/machinery/telecomms/machines/message_server.dm index 5a892cec6e..239bbd5c60 100644 --- a/code/game/machinery/telecomms/machines/message_server.dm +++ b/code/game/machinery/telecomms/machines/message_server.dm @@ -1,186 +1,3 @@ -<<<<<<< HEAD -/* - The equivalent of the server, for PDA and request console messages. - Without it, PDA and request console messages cannot be transmitted. - PDAs require the rest of the telecomms setup, but request consoles only - require the message server. -*/ - -// A decorational representation of SSblackbox, usually placed alongside the message server. -/obj/machinery/blackbox_recorder - icon = 'icons/obj/stationobjs.dmi' - icon_state = "blackbox" - name = "Blackbox Recorder" - density = TRUE - anchored = TRUE - use_power = IDLE_POWER_USE - idle_power_usage = 10 - active_power_usage = 100 - armor = list(melee = 25, bullet = 10, laser = 10, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 50, acid = 70) - - -// The message server itself. -/obj/machinery/telecomms/message_server - icon = 'icons/obj/machines/research.dmi' - icon_state = "server" - name = "Messaging Server" - desc = "A machine that attempts to gather the secret knowledge of the universe." - density = TRUE - anchored = TRUE - use_power = IDLE_POWER_USE - idle_power_usage = 10 - active_power_usage = 100 - - id = "Messaging Server" - network = "tcommsat" - autolinkers = list("common") - - var/list/datum/data_pda_msg/pda_msgs = list() - var/list/datum/data_rc_msg/rc_msgs = list() - var/decryptkey - -/obj/machinery/telecomms/message_server/Initialize() - . = ..() - if (!decryptkey) - decryptkey = GenerateKey() - pda_msgs += new /datum/data_pda_msg("System Administrator", "system", "This is an automated message. The messaging system is functioning correctly.") - -/obj/machinery/telecomms/message_server/Destroy() - for(var/obj/machinery/computer/message_monitor/monitor in GLOB.telecomms_list) - if(monitor.linkedServer && monitor.linkedServer == src) - monitor.linkedServer = null - . = ..() - -/obj/machinery/telecomms/message_server/proc/GenerateKey() - var/newKey - newKey += pick("the", "if", "of", "as", "in", "a", "you", "from", "to", "an", "too", "little", "snow", "dead", "drunk", "rosebud", "duck", "al", "le") - newKey += pick("diamond", "beer", "mushroom", "assistant", "clown", "captain", "twinkie", "security", "nuke", "small", "big", "escape", "yellow", "gloves", "monkey", "engine", "nuclear", "ai") - newKey += pick("1", "2", "3", "4", "5", "6", "7", "8", "9", "0") - return newKey - -/obj/machinery/telecomms/message_server/process() - if(toggled && (stat & (BROKEN|NOPOWER))) - toggled = FALSE - update_icon() - -/obj/machinery/telecomms/message_server/receive_information(datum/signal/subspace/pda/signal, obj/machinery/telecomms/machine_from) - // can't log non-PDA signals - if(!istype(signal) || !signal.data["message"] || !toggled) - return - - // log the signal - var/datum/data_pda_msg/M = new(signal.format_target(), "[signal.data["name"]] ([signal.data["job"]])", signal.data["message"], signal.data["photo"]) - pda_msgs += M - signal.logged = M - - // pass it along to either the hub or the broadcaster - if(!relay_information(signal, /obj/machinery/telecomms/hub)) - relay_information(signal, /obj/machinery/telecomms/broadcaster) - -/obj/machinery/telecomms/message_server/update_icon() - if((stat & (BROKEN|NOPOWER))) - icon_state = "server-nopower" - else if (!toggled) - icon_state = "server-off" - else - icon_state = "server-on" - - -// PDA signal datum -/datum/signal/subspace/pda - frequency = FREQ_COMMON - server_type = /obj/machinery/telecomms/message_server - var/datum/data_pda_msg/logged - -/datum/signal/subspace/pda/New(source, data) - src.source = source - src.data = data - var/turf/T = get_turf(source) - levels = list(T.z) - -/datum/signal/subspace/pda/copy() - var/datum/signal/subspace/pda/copy = new(source, data.Copy()) - copy.original = src - copy.levels = levels - return copy - -/datum/signal/subspace/pda/proc/format_target() - if (length(data["targets"]) > 1) - return "Everyone" - return data["targets"][1] - -/datum/signal/subspace/pda/proc/format_message() - if (logged && data["photo"]) - return "\"[data["message"]]\" (Photo)" - return "\"[data["message"]]\"" - -/datum/signal/subspace/pda/broadcast() - if (!logged) // Can only go through if a message server logs it - return - for (var/obj/item/device/pda/P in GLOB.PDAs) - if ("[P.owner] ([P.ownjob])" in data["targets"]) - P.receive_message(src) - - -// Log datums stored by the message server. -/datum/data_pda_msg - var/sender = "Unspecified" - var/recipient = "Unspecified" - var/message = "Blank" // transferred message - var/icon/photo // attached photo - -/datum/data_pda_msg/New(param_rec, param_sender, param_message, param_photo) - if(param_rec) - recipient = param_rec - if(param_sender) - sender = param_sender - if(param_message) - message = param_message - if(param_photo) - photo = param_photo - -/datum/data_pda_msg/Topic(href,href_list) - ..() - if(href_list["photo"]) - var/mob/M = usr - M << browse_rsc(photo, "pda_photo.png") - M << browse("PDA Photo" \ - + "" \ - + "" \ - + "", "window=pdaphoto;size=192x192") - onclose(M, "pdaphoto") - -/datum/data_rc_msg - var/rec_dpt = "Unspecified" // receiving department - var/send_dpt = "Unspecified" // sending department - var/message = "Blank" - var/stamp = "Unstamped" - var/id_auth = "Unauthenticated" - var/priority = "Normal" - -/datum/data_rc_msg/New(param_rec, param_sender, param_message, param_stamp, param_id_auth, param_priority) - if(param_rec) - rec_dpt = param_rec - if(param_sender) - send_dpt = param_sender - if(param_message) - message = param_message - if(param_stamp) - stamp = param_stamp - if(param_id_auth) - id_auth = param_id_auth - if(param_priority) - switch(param_priority) - if(1) - priority = "Normal" - if(2) - priority = "High" - if(3) - priority = "Extreme" - else - priority = "Undetermined" - -======= /* The equivalent of the server, for PDA and request console messages. Without it, PDA and request console messages cannot be transmitted. @@ -361,5 +178,3 @@ priority = "Extreme" else priority = "Undetermined" - ->>>>>>> d282c60... Quote the armor lists (#35668) From 1983e62c1be967a0c26738794bc4fe8120be8eb5 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Fri, 16 Feb 2018 07:54:03 -0600 Subject: [PATCH 14/94] Update durand.dm --- code/game/mecha/combat/durand.dm | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/code/game/mecha/combat/durand.dm b/code/game/mecha/combat/durand.dm index ceaea0e9d9..caaa3e3a00 100644 --- a/code/game/mecha/combat/durand.dm +++ b/code/game/mecha/combat/durand.dm @@ -1,27 +1,3 @@ -<<<<<<< HEAD -/obj/mecha/combat/durand - desc = "An aging combat exosuit utilized by the Nanotrasen corporation. Originally developed to combat hostile alien lifeforms." - name = "\improper Durand" - icon_state = "durand" - step_in = 4 - dir_in = 1 //Facing North. - max_integrity = 400 - deflect_chance = 20 - armor = list(melee = 40, bullet = 35, laser = 15, energy = 10, bomb = 20, bio = 0, rad = 0, fire = 100, acid = 100) - max_temperature = 30000 - infra_luminosity = 8 - force = 40 - wreckage = /obj/structure/mecha_wreckage/durand - -/obj/mecha/combat/durand/GrantActions(mob/living/user, human_occupant = 0) - ..() - defense_action.Grant(user, src) - -/obj/mecha/combat/durand/RemoveActions(mob/living/user, human_occupant = 0) - ..() - defense_action.Remove(user) - -======= /obj/mecha/combat/durand desc = "An aging combat exosuit utilized by the Nanotrasen corporation. Originally developed to combat hostile alien lifeforms." name = "\improper Durand" @@ -43,5 +19,3 @@ /obj/mecha/combat/durand/RemoveActions(mob/living/user, human_occupant = 0) ..() defense_action.Remove(user) - ->>>>>>> d282c60... Quote the armor lists (#35668) From 420f889c9d22695738e9ef61df68f1348b8a41b0 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Fri, 16 Feb 2018 07:54:10 -0600 Subject: [PATCH 15/94] Update phazon.dm --- code/game/mecha/combat/phazon.dm | 34 -------------------------------- 1 file changed, 34 deletions(-) diff --git a/code/game/mecha/combat/phazon.dm b/code/game/mecha/combat/phazon.dm index 4a4c33704a..15b865c1e9 100644 --- a/code/game/mecha/combat/phazon.dm +++ b/code/game/mecha/combat/phazon.dm @@ -1,35 +1,3 @@ -<<<<<<< HEAD -/obj/mecha/combat/phazon - desc = "This is a Phazon exosuit. The pinnacle of scientific research and pride of Nanotrasen, it uses cutting edge bluespace technology and expensive materials." - name = "\improper Phazon" - icon_state = "phazon" - step_in = 2 - dir_in = 2 //Facing South. - step_energy_drain = 3 - max_integrity = 200 - deflect_chance = 30 - armor = list(melee = 30, bullet = 30, laser = 30, energy = 30, bomb = 30, bio = 0, rad = 0, fire = 100, acid = 100) - max_temperature = 25000 - infra_luminosity = 3 - wreckage = /obj/structure/mecha_wreckage/phazon - add_req_access = 1 - internal_damage_threshold = 25 - force = 15 - max_equip = 3 - phase_state = "phazon-phase" - -/obj/mecha/combat/phazon/GrantActions(mob/living/user, human_occupant = 0) - ..() - switch_damtype_action.Grant(user, src) - phasing_action.Grant(user, src) - - -/obj/mecha/combat/phazon/RemoveActions(mob/living/user, human_occupant = 0) - ..() - switch_damtype_action.Remove(user) - phasing_action.Remove(user) - -======= /obj/mecha/combat/phazon desc = "This is a Phazon exosuit. The pinnacle of scientific research and pride of Nanotrasen, it uses cutting edge bluespace technology and expensive materials." name = "\improper Phazon" @@ -59,5 +27,3 @@ ..() switch_damtype_action.Remove(user) phasing_action.Remove(user) - ->>>>>>> d282c60... Quote the armor lists (#35668) From 8b1e818b2d6f7e946d14e25516391f0395581a06 Mon Sep 17 00:00:00 2001 From: LetterJay Date: Fri, 16 Feb 2018 07:54:19 -0600 Subject: [PATCH 16/94] Update singularityhammer.dm --- code/game/objects/items/singularityhammer.dm | 115 ------------------- 1 file changed, 115 deletions(-) diff --git a/code/game/objects/items/singularityhammer.dm b/code/game/objects/items/singularityhammer.dm index 9c120dae5d..365395f1ee 100644 --- a/code/game/objects/items/singularityhammer.dm +++ b/code/game/objects/items/singularityhammer.dm @@ -1,117 +1,3 @@ -<<<<<<< HEAD -/obj/item/twohanded/singularityhammer - name = "singularity hammer" - desc = "The pinnacle of close combat technology, the hammer harnesses the power of a miniaturized singularity to deal crushing blows." - icon_state = "mjollnir0" - lefthand_file = 'icons/mob/inhands/weapons/hammers_lefthand.dmi' - righthand_file = 'icons/mob/inhands/weapons/hammers_righthand.dmi' - flags_1 = CONDUCT_1 - slot_flags = SLOT_BACK - force = 5 - force_unwielded = 5 - force_wielded = 20 - throwforce = 15 - throw_range = 1 - w_class = WEIGHT_CLASS_HUGE - var/charged = 5 - armor = list(melee = 50, bullet = 50, laser = 50, energy = 0, bomb = 50, bio = 0, rad = 0, fire = 100, acid = 100) - resistance_flags = FIRE_PROOF | ACID_PROOF - force_string = "LORD SINGULOTH HIMSELF" - -/obj/item/twohanded/singularityhammer/New() - ..() - START_PROCESSING(SSobj, src) - -/obj/item/twohanded/singularityhammer/Destroy() - STOP_PROCESSING(SSobj, src) - return ..() - -/obj/item/twohanded/singularityhammer/process() - if(charged < 5) - charged++ - return - -/obj/item/twohanded/singularityhammer/update_icon() //Currently only here to fuck with the on-mob icons. - icon_state = "mjollnir[wielded]" - return - -/obj/item/twohanded/singularityhammer/proc/vortex(turf/pull, mob/wielder) - for(var/atom/X in orange(5,pull)) - if(ismovableatom(X)) - var/atom/movable/A = X - if(A == wielder) - continue - if(A && !A.anchored && !ishuman(X)) - step_towards(A,pull) - step_towards(A,pull) - step_towards(A,pull) - else if(ishuman(X)) - var/mob/living/carbon/human/H = X - if(istype(H.shoes, /obj/item/clothing/shoes/magboots)) - var/obj/item/clothing/shoes/magboots/M = H.shoes - if(M.magpulse) - continue - H.apply_effect(20, KNOCKDOWN, 0) - step_towards(H,pull) - step_towards(H,pull) - step_towards(H,pull) - return - -/obj/item/twohanded/singularityhammer/afterattack(atom/A as mob|obj|turf|area, mob/user, proximity) - if(!proximity) - return - if(wielded) - if(charged == 5) - charged = 0 - if(istype(A, /mob/living/)) - var/mob/living/Z = A - Z.take_bodypart_damage(20,0) - playsound(user, 'sound/weapons/marauder.ogg', 50, 1) - var/turf/target = get_turf(A) - vortex(target,user) - -/obj/item/twohanded/mjollnir - name = "Mjolnir" - desc = "A weapon worthy of a god, able to strike with the force of a lightning bolt. It crackles with barely contained energy." - icon_state = "mjollnir0" - lefthand_file = 'icons/mob/inhands/weapons/hammers_lefthand.dmi' - righthand_file = 'icons/mob/inhands/weapons/hammers_righthand.dmi' - flags_1 = CONDUCT_1 - slot_flags = SLOT_BACK - force = 5 - force_unwielded = 5 - force_wielded = 25 - throwforce = 30 - throw_range = 7 - w_class = WEIGHT_CLASS_HUGE - -/obj/item/twohanded/mjollnir/proc/shock(mob/living/target) - target.Stun(60) - var/datum/effect_system/lightning_spread/s = new /datum/effect_system/lightning_spread - s.set_up(5, 1, target.loc) - s.start() - target.visible_message("[target.name] was shocked by [src]!", \ - "You feel a powerful shock course through your body sending you flying!", \ - "You hear a heavy electrical crack!") - var/atom/throw_target = get_edge_target_turf(target, get_dir(src, get_step_away(target, src))) - target.throw_at(throw_target, 200, 4) - return - -/obj/item/twohanded/mjollnir/attack(mob/living/M, mob/user) - ..() - if(wielded) - playsound(src.loc, "sparks", 50, 1) - shock(M) - -/obj/item/twohanded/mjollnir/throw_impact(atom/target) - . = ..() - if(isliving(target)) - shock(target) - -/obj/item/twohanded/mjollnir/update_icon() //Currently only here to fuck with the on-mob icons. - icon_state = "mjollnir[wielded]" - return -======= /obj/item/twohanded/singularityhammer name = "singularity hammer" desc = "The pinnacle of close combat technology, the hammer harnesses the power of a miniaturized singularity to deal crushing blows." @@ -224,4 +110,3 @@ /obj/item/twohanded/mjollnir/update_icon() //Currently only here to fuck with the on-mob icons. icon_state = "mjollnir[wielded]" return ->>>>>>> d282c60... Quote the armor lists (#35668) From 84f12df08e0de1536162633ef66d4a21289af91d Mon Sep 17 00:00:00 2001 From: LetterJay Date: Fri, 16 Feb 2018 07:54:39 -0600 Subject: [PATCH 17/94] Update weldingtool.dm --- code/game/objects/items/tools/weldingtool.dm | 369 +------------------ 1 file changed, 3 insertions(+), 366 deletions(-) diff --git a/code/game/objects/items/tools/weldingtool.dm b/code/game/objects/items/tools/weldingtool.dm index d7dd57fd2b..61b44d658e 100644 --- a/code/game/objects/items/tools/weldingtool.dm +++ b/code/game/objects/items/tools/weldingtool.dm @@ -1,4 +1,3 @@ -<<<<<<< HEAD #define WELDER_FUEL_BURN_INTERVAL 13 /obj/item/weldingtool name = "welding tool" @@ -19,7 +18,7 @@ throw_speed = 3 throw_range = 5 w_class = WEIGHT_CLASS_SMALL - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 100, acid = 30) + armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 30) resistance_flags = FIRE_PROOF materials = list(MAT_METAL=70, MAT_GLASS=30) @@ -358,367 +357,5 @@ if(get_fuel() < max_fuel && nextrefueltick < world.time) nextrefueltick = world.time + 10 reagents.add_reagent("welding_fuel", 1) - -======= -#define WELDER_FUEL_BURN_INTERVAL 13 -/obj/item/weldingtool - name = "welding tool" - desc = "A standard edition welder provided by Nanotrasen." - icon = 'icons/obj/tools.dmi' - icon_state = "welder" - item_state = "welder" - lefthand_file = 'icons/mob/inhands/equipment/tools_lefthand.dmi' - righthand_file = 'icons/mob/inhands/equipment/tools_righthand.dmi' - flags_1 = CONDUCT_1 - slot_flags = SLOT_BELT - force = 3 - throwforce = 5 - hitsound = "swing_hit" - usesound = list('sound/items/welder.ogg', 'sound/items/welder2.ogg') - var/acti_sound = 'sound/items/welderactivate.ogg' - var/deac_sound = 'sound/items/welderdeactivate.ogg' - throw_speed = 3 - throw_range = 5 - w_class = WEIGHT_CLASS_SMALL - armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 100, "acid" = 30) - resistance_flags = FIRE_PROOF - - materials = list(MAT_METAL=70, MAT_GLASS=30) - var/welding = 0 //Whether or not the welding tool is off(0), on(1) or currently welding(2) - var/status = TRUE //Whether the welder is secured or unsecured (able to attach rods to it to make a flamethrower) - var/max_fuel = 20 //The max amount of fuel the welder can hold - var/change_icons = 1 - var/can_off_process = 0 - var/light_intensity = 2 //how powerful the emitted light is when used. - var/burned_fuel_for = 0 //when fuel was last removed - heat = 3800 - tool_behaviour = TOOL_WELDER - toolspeed = 1 - -/obj/item/weldingtool/Initialize() - . = ..() - create_reagents(max_fuel) - reagents.add_reagent("welding_fuel", max_fuel) - update_icon() - - -/obj/item/weldingtool/proc/update_torch() - if(welding) - add_overlay("[initial(icon_state)]-on") - item_state = "[initial(item_state)]1" - else - item_state = "[initial(item_state)]" - - -/obj/item/weldingtool/update_icon() - cut_overlays() - if(change_icons) - var/ratio = get_fuel() / max_fuel - ratio = CEILING(ratio*4, 1) * 25 - add_overlay("[initial(icon_state)][ratio]") - update_torch() - return - - -/obj/item/weldingtool/process() - switch(welding) - if(0) - force = 3 - damtype = "brute" - update_icon() - if(!can_off_process) - STOP_PROCESSING(SSobj, src) - return - //Welders left on now use up fuel, but lets not have them run out quite that fast - if(1) - force = 15 - damtype = "fire" - ++burned_fuel_for - if(burned_fuel_for >= WELDER_FUEL_BURN_INTERVAL) - use(1) - update_icon() - - //This is to start fires. process() is only called if the welder is on. - open_flame() - - -/obj/item/weldingtool/suicide_act(mob/user) - user.visible_message("[user] welds [user.p_their()] every orifice closed! It looks like [user.p_theyre()] trying to commit suicide!") - return (FIRELOSS) - - -/obj/item/weldingtool/attackby(obj/item/I, mob/user, params) - if(istype(I, /obj/item/screwdriver)) - flamethrower_screwdriver(I, user) - else if(istype(I, /obj/item/stack/rods)) - flamethrower_rods(I, user) - else - . = ..() - update_icon() - -/obj/item/weldingtool/proc/explode() - var/turf/T = get_turf(loc) - var/plasmaAmount = reagents.get_reagent_amount("plasma") - dyn_explosion(T, plasmaAmount/5)//20 plasma in a standard welder has a 4 power explosion. no breaches, but enough to kill/dismember holder - qdel(src) - -/obj/item/weldingtool/attack(mob/living/carbon/human/H, mob/user) - if(!istype(H)) - return ..() - - var/obj/item/bodypart/affecting = H.get_bodypart(check_zone(user.zone_selected)) - - if(affecting && affecting.status == BODYPART_ROBOTIC && user.a_intent != INTENT_HARM) - if(src.use_tool(H, user, 0, volume=50, amount=1)) - if(user == H) - user.visible_message("[user] starts to fix some of the dents on [H]'s [affecting.name].", - "You start fixing some of the dents on [H]'s [affecting.name].") - if(!do_mob(user, H, 50)) - return - item_heal_robotic(H, user, 15, 0) - else - return ..() - - -/obj/item/weldingtool/afterattack(atom/O, mob/user, proximity) - if(!proximity) - return - if(!status && O.is_refillable()) - reagents.trans_to(O, reagents.total_volume) - to_chat(user, "You empty [src]'s fuel tank into [O].") - update_icon() - if(isOn()) - use(1) - var/turf/location = get_turf(user) - location.hotspot_expose(700, 50, 1) - if(get_fuel() <= 0) - set_light(0) - - if(isliving(O)) - var/mob/living/L = O - if(L.IgniteMob()) - message_admins("[key_name_admin(user)] set [key_name_admin(L)] on fire") - log_game("[key_name(user)] set [key_name(L)] on fire") - - -/obj/item/weldingtool/attack_self(mob/user) - if(src.reagents.has_reagent("plasma")) - message_admins("[key_name_admin(user)] activated a rigged welder.") - explode() - switched_on(user) - if(welding) - set_light(light_intensity) - - update_icon() - - -// Returns the amount of fuel in the welder -/obj/item/weldingtool/proc/get_fuel() - return reagents.get_reagent_amount("welding_fuel") - - -// Uses fuel from the welding tool. -/obj/item/weldingtool/use(used = 0) - if(!isOn() || !check_fuel()) - return FALSE - - if(used) - burned_fuel_for = 0 - if(get_fuel() >= used) - reagents.remove_reagent("welding_fuel", used) - check_fuel() - return TRUE - else - return FALSE - - -//Turns off the welder if there is no more fuel (does this really need to be its own proc?) -/obj/item/weldingtool/proc/check_fuel(mob/user) - if(get_fuel() <= 0 && welding) - switched_on(user) - update_icon() - //mob icon update - if(ismob(loc)) - var/mob/M = loc - M.update_inv_hands(0) - - return 0 - return 1 - -//Switches the welder on -/obj/item/weldingtool/proc/switched_on(mob/user) - if(!status) - to_chat(user, "[src] can't be turned on while unsecured!") - return - welding = !welding - if(welding) - if(get_fuel() >= 1) - to_chat(user, "You switch [src] on.") - playsound(loc, acti_sound, 50, 1) - force = 15 - damtype = "fire" - hitsound = 'sound/items/welder.ogg' - update_icon() - START_PROCESSING(SSobj, src) - else - to_chat(user, "You need more fuel!") - switched_off(user) - else - to_chat(user, "You switch [src] off.") - playsound(loc, deac_sound, 50, 1) - switched_off(user) - -//Switches the welder off -/obj/item/weldingtool/proc/switched_off(mob/user) - welding = 0 - set_light(0) - - force = 3 - damtype = "brute" - hitsound = "swing_hit" - update_icon() - - -/obj/item/weldingtool/examine(mob/user) - ..() - to_chat(user, "It contains [get_fuel()] unit\s of fuel out of [max_fuel].") - -/obj/item/weldingtool/is_hot() - return welding * heat - -//Returns whether or not the welding tool is currently on. -/obj/item/weldingtool/proc/isOn() - return welding - -// When welding is about to start, run a normal tool_use_check, then flash a mob if it succeeds. -/obj/item/weldingtool/tool_start_check(mob/living/user, amount=0) - . = tool_use_check(user, amount) - if(. && user) - user.flash_act(light_intensity) - -// If welding tool ran out of fuel during a construction task, construction fails. -/obj/item/weldingtool/tool_use_check(mob/living/user, amount) - if(!isOn() || !check_fuel()) - to_chat(user, "[src] has to be on to complete this task!") - return FALSE - - if(get_fuel() >= amount) - return TRUE - else - to_chat(user, "You need more welding fuel to complete this task!") - return FALSE - - -/obj/item/weldingtool/proc/flamethrower_screwdriver(obj/item/I, mob/user) - if(welding) - to_chat(user, "Turn it off first!") - return - status = !status - if(status) - to_chat(user, "You resecure [src] and close the fuel tank.") - container_type = NONE - else - to_chat(user, "[src] can now be attached, modified, and refuelled.") - container_type = OPENCONTAINER - add_fingerprint(user) - -/obj/item/weldingtool/proc/flamethrower_rods(obj/item/I, mob/user) - if(!status) - var/obj/item/stack/rods/R = I - if (R.use(1)) - var/obj/item/flamethrower/F = new /obj/item/flamethrower(user.loc) - if(!remove_item_from_storage(F)) - user.transferItemToLoc(src, F, TRUE) - F.weldtool = src - add_fingerprint(user) - to_chat(user, "You add a rod to a welder, starting to build a flamethrower.") - user.put_in_hands(F) - else - to_chat(user, "You need one rod to start building a flamethrower!") - -/obj/item/weldingtool/ignition_effect(atom/A, mob/user) - if(use_tool(A, user, 0, amount=1)) - return "[user] casually lights [A] with [src], what a badass." - else - return "" - -/obj/item/weldingtool/largetank - name = "industrial welding tool" - desc = "A slightly larger welder with a larger tank." - icon_state = "indwelder" - max_fuel = 40 - materials = list(MAT_GLASS=60) - -/obj/item/weldingtool/largetank/cyborg - name = "integrated welding tool" - desc = "An advanced welder designed to be used in robotic systems." - toolspeed = 0.5 - -/obj/item/weldingtool/largetank/flamethrower_screwdriver() - return - - -/obj/item/weldingtool/mini - name = "emergency welding tool" - desc = "A miniature welder used during emergencies." - icon_state = "miniwelder" - max_fuel = 10 - w_class = WEIGHT_CLASS_TINY - materials = list(MAT_METAL=30, MAT_GLASS=10) - change_icons = 0 - -/obj/item/weldingtool/mini/flamethrower_screwdriver() - return - -/obj/item/weldingtool/abductor - name = "alien welding tool" - desc = "An alien welding tool. Whatever fuel it uses, it never runs out." - icon = 'icons/obj/abductor.dmi' - icon_state = "welder" - toolspeed = 0.1 - light_intensity = 0 - change_icons = 0 - -/obj/item/weldingtool/abductor/process() - if(get_fuel() <= max_fuel) - reagents.add_reagent("welding_fuel", 1) - ..() - -/obj/item/weldingtool/hugetank - name = "upgraded industrial welding tool" - desc = "An upgraded welder based of the industrial welder." - icon_state = "upindwelder" - item_state = "upindwelder" - max_fuel = 80 - materials = list(MAT_METAL=70, MAT_GLASS=120) - -/obj/item/weldingtool/experimental - name = "experimental welding tool" - desc = "An experimental welder capable of self-fuel generation and less harmful to the eyes." - icon_state = "exwelder" - item_state = "exwelder" - max_fuel = 40 - materials = list(MAT_METAL=70, MAT_GLASS=120) - var/last_gen = 0 - change_icons = 0 - can_off_process = 1 - light_intensity = 1 - toolspeed = 0.5 - var/nextrefueltick = 0 - -/obj/item/weldingtool/experimental/brass - name = "brass welding tool" - desc = "A brass welder that seems to constantly refuel itself. It is faintly warm to the touch." - resistance_flags = FIRE_PROOF | ACID_PROOF - icon_state = "brasswelder" - item_state = "brasswelder" - - -/obj/item/weldingtool/experimental/process() - ..() - if(get_fuel() < max_fuel && nextrefueltick < world.time) - nextrefueltick = world.time + 10 - reagents.add_reagent("welding_fuel", 1) - ->>>>>>> d282c60... Quote the armor lists (#35668) -#undef WELDER_FUEL_BURN_INTERVAL \ No newline at end of file + +#undef WELDER_FUEL_BURN_INTERVAL From e0cb508207bf66a05d9585ccd208def508ee533c Mon Sep 17 00:00:00 2001 From: LetterJay Date: Fri, 16 Feb 2018 07:54:48 -0600 Subject: [PATCH 18/94] Update shield.dm --- .../antagonists/blob/blob/blobs/shield.dm | 36 ------------------- 1 file changed, 36 deletions(-) diff --git a/code/modules/antagonists/blob/blob/blobs/shield.dm b/code/modules/antagonists/blob/blob/blobs/shield.dm index 87dcd7bfdf..a83f4294b2 100644 --- a/code/modules/antagonists/blob/blob/blobs/shield.dm +++ b/code/modules/antagonists/blob/blob/blobs/shield.dm @@ -1,38 +1,3 @@ -<<<<<<< HEAD -/obj/structure/blob/shield - name = "strong blob" - icon = 'icons/mob/blob.dmi' - icon_state = "blob_shield" - desc = "A solid wall of slightly twitching tendrils." - max_integrity = 150 - brute_resist = 0.25 - explosion_block = 3 - point_return = 4 - atmosblock = TRUE - armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0, fire = 90, acid = 90) - -/obj/structure/blob/shield/scannerreport() - if(atmosblock) - return "Will prevent the spread of atmospheric changes." - return "N/A" - -/obj/structure/blob/shield/core - point_return = 0 - -/obj/structure/blob/shield/update_icon() - ..() - if(obj_integrity <= 75) - icon_state = "blob_shield_damaged" - name = "weakened strong blob" - desc = "A wall of twitching tendrils." - atmosblock = FALSE - else - icon_state = initial(icon_state) - name = initial(name) - desc = initial(desc) - atmosblock = TRUE - air_update_turf(1) -======= /obj/structure/blob/shield name = "strong blob" icon = 'icons/mob/blob.dmi' @@ -66,4 +31,3 @@ desc = initial(desc) atmosblock = TRUE air_update_turf(1) ->>>>>>> d282c60... Quote the armor lists (#35668) From b233e05bfee6f7fe2a71cd4735652c82808cae94 Mon Sep 17 00:00:00 2001 From: Chayse Ramsay Date: Fri, 16 Feb 2018 15:06:13 +0000 Subject: [PATCH 19/94] Altering coldmod to make it a little less ridiculous. Now back the original value but with no heat or burn protection. --- .../mob/living/carbon/human/species_types/jellypeople.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species_types/jellypeople.dm b/code/modules/mob/living/carbon/human/species_types/jellypeople.dm index 53f0b07dd1..cf7df00ab1 100644 --- a/code/modules/mob/living/carbon/human/species_types/jellypeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/jellypeople.dm @@ -11,9 +11,9 @@ var/datum/action/innate/regenerate_limbs/regenerate_limbs var/datum/action/innate/slime_change/slime_change liked_food = MEAT - coldmod = 6 // = 3x cold damage - heatmod = 0.5 // = 1/4x heat damage - burnmod = 0.5 // = 1/2x generic burn damage + coldmod = 6 + heatmod = 0.5 + burnmod = 0.5 /datum/species/jelly/on_species_loss(mob/living/carbon/C) if(regenerate_limbs) @@ -212,7 +212,7 @@ hair_color = "mutcolor" hair_alpha = 180 liked_food = MEAT - coldmod = 12 + coldmod = 6 heatmod = 1 burnmod = 1 From e040e5523fdafb8e49cf5d62a997f9c473701282 Mon Sep 17 00:00:00 2001 From: Chayse Ramsay Date: Fri, 16 Feb 2018 15:14:31 +0000 Subject: [PATCH 20/94] Requested Changes Part 1 --- .../carbon/human/species_types/furrypeople.dm | 110 +++++++++++++++++ .../carbon/human/species_types/jellypeople.dm | 114 +----------------- 2 files changed, 113 insertions(+), 111 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species_types/furrypeople.dm b/code/modules/mob/living/carbon/human/species_types/furrypeople.dm index 0e00975a5a..54cf0598ba 100644 --- a/code/modules/mob/living/carbon/human/species_types/furrypeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/furrypeople.dm @@ -240,3 +240,113 @@ attack_verb = "claw" attack_sound = 'sound/weapons/slash.ogg' miss_sound = 'sound/weapons/slashmiss.ogg' + + + +/datum/species/jelly/roundstartslime + name = "Slimeperson" + id = "slimeperson" + default_color = "00FFFF" + species_traits = list(SPECIES_ORGANIC,MUTCOLORS,EYECOLOR,HAIR,FACEHAIR,NOBLOOD,TOXINLOVER) + mutant_bodyparts = list("mam_tail", "mam_ears", "taur") + default_features = list("mcolor" = "FFF", "mam_tail" = "None", "mam_ears" = "None") + say_mod = "says" + hair_color = "mutcolor" + hair_alpha = 180 + liked_food = MEAT + coldmod = 6 + heatmod = 1 + burnmod = 1 + +/datum/action/innate/slime_change + name = "Alter Form" + check_flags = AB_CHECK_CONSCIOUS + button_icon_state = "slimesplit" //placeholder + icon_icon = 'icons/mob/actions/actions_slime.dmi' + background_icon_state = "bg_alien" + +/datum/action/innate/slime_change/Activate() + var/mob/living/carbon/human/H = owner + if(!isjellyperson(H)) + return + else + H.visible_message("[owner] gains a look of \ + concentration while standing perfectly still.\ + Their body seems to shift and starts getting more goo-like.", + "You focus intently on altering your body while \ + standing perfectly still...") + change_form() + +/datum/action/innate/slime_change/proc/change_form() + var/mob/living/carbon/human/H = owner + var/select_alteration = input(owner, "Select what part of your form to alter", "Form Alteration", "cancel") in list("Hair Style", "Genitals", "Tail", "Ears", "Taur body", "Cancel") + if(select_alteration == "Hair Style") + if(H.gender == MALE) + var/new_style = input(owner, "Select a facial hair style", "Hair Alterations") as null|anything in GLOB.facial_hair_styles_list + if(new_style) + H.facial_hair_style = new_style + else + H.facial_hair_style = "Shaved" + //handle normal hair + var/new_style = input(owner, "Select a hair style", "Hair Alterations") as null|anything in GLOB.hair_styles_list + if(new_style) + H.hair_style = new_style + H.update_hair() + else if (select_alteration == "Genitals") + var/list/organs = list() + var/operation = input("Select organ operation.", "Organ Manipulation", "cancel") in list("add sexual organ", "remove sexual organ", "cancel") + switch(operation) + if("add sexual organ") + var/new_organ = input("Select sexual organ:", "Organ Manipulation") in list("Penis", "Testicles", "Breasts", "Vagina", "Womb", "Cancel") + if(new_organ == "Penis") + H.give_penis() + else if(new_organ == "Testicles") + H.give_balls() + else if(new_organ == "Breasts") + H.give_breasts() + else if(new_organ == "Vagina") + H.give_vagina() + else if(new_organ == "Womb") + H.give_womb() + else + return + if("remove sexual organ") + for(var/obj/item/organ/genital/X in H.internal_organs) + var/obj/item/organ/I = X + organs["[I.name] ([I.type])"] = I + var/obj/item/organ = input("Select sexual organ:", "Organ Manipulation", null) in organs + organ = organs[organ] + if(!organ) + return + var/obj/item/organ/genital/O + if(isorgan(organ)) + O = organ + O.Remove(H) + organ.forceMove(get_turf(H)) + qdel(organ) + H.update_body() + else if (select_alteration == "Ears") + var/new_ears + new_ears = input(owner, "Choose your character's ears:", "Ear Alteration") as null|anything in GLOB.mam_ears_list + if(new_ears) + H.dna.features["mam_ears"] = new_ears + H.update_body() + else if (select_alteration == "Tail") + var/new_tail + new_tail = input(owner, "Choose your character's tail:", "Tail Alteration") as null|anything in GLOB.mam_tails_list + if(new_tail) + H.dna.features["mam_tail"] = new_tail + if(new_tail != "None") + H.dna.features["taur"] = "None" + H.update_body() + else if (select_alteration == "Taur body") + var/new_taur + new_taur = input(owner, "Choose your character's tauric body:", "Taur Body Alteration") as null|anything in GLOB.taur_list + if(new_taur) + H.dna.features["taur"] = new_taur + if(new_taur != "None") + H.dna.features["mam_tail"] = "None" + H.dna.features["xenotail"] = "None" + H.update_body() + else + return diff --git a/code/modules/mob/living/carbon/human/species_types/jellypeople.dm b/code/modules/mob/living/carbon/human/species_types/jellypeople.dm index cf7df00ab1..df80b725e6 100644 --- a/code/modules/mob/living/carbon/human/species_types/jellypeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/jellypeople.dm @@ -11,9 +11,9 @@ var/datum/action/innate/regenerate_limbs/regenerate_limbs var/datum/action/innate/slime_change/slime_change liked_food = MEAT - coldmod = 6 - heatmod = 0.5 - burnmod = 0.5 + coldmod = 6 // = 3x cold damage + heatmod = 0.5 // = 1/4x heat damage + burnmod = 0.5 // = 1/2x generic burn damage /datum/species/jelly/on_species_loss(mob/living/carbon/C) if(regenerate_limbs) @@ -106,116 +106,8 @@ return to_chat(H, "...but there is not enough of you to go around! You must attain more mass to heal!") -/datum/action/innate/slime_change - name = "Alter Form" - check_flags = AB_CHECK_CONSCIOUS - button_icon_state = "slimesplit" //placeholder - icon_icon = 'icons/mob/actions/actions_slime.dmi' - background_icon_state = "bg_alien" - -/datum/action/innate/slime_change/Activate() - var/mob/living/carbon/human/H = owner - if(!isjellyperson(H)) - return - else - H.visible_message("[owner] gains a look of \ - concentration while standing perfectly still.\ - Their body seems to shift and starts getting more goo-like.", - "You focus intently on altering your body while \ - standing perfectly still...") - change_form() - -/datum/action/innate/slime_change/proc/change_form() - var/mob/living/carbon/human/H = owner - var/select_alteration = input(owner, "Select what part of your form to alter", "Form Alteration", "cancel") in list("Hair Style", "Genitals", "Tail", "Ears", "Taur body", "Cancel") - if(select_alteration == "Hair Style") - if(H.gender == MALE) - var/new_style = input(owner, "Select a facial hair style", "Hair Alterations") as null|anything in GLOB.facial_hair_styles_list - if(new_style) - H.facial_hair_style = new_style - else - H.facial_hair_style = "Shaved" - //handle normal hair - var/new_style = input(owner, "Select a hair style", "Hair Alterations") as null|anything in GLOB.hair_styles_list - if(new_style) - H.hair_style = new_style - H.update_hair() - else if (select_alteration == "Genitals") - var/list/organs = list() - var/operation = input("Select organ operation.", "Organ Manipulation", "cancel") in list("add sexual organ", "remove sexual organ", "cancel") - switch(operation) - if("add sexual organ") - var/new_organ = input("Select sexual organ:", "Organ Manipulation") in list("Penis", "Testicles", "Breasts", "Vagina", "Womb", "Cancel") - if(new_organ == "Penis") - H.give_penis() - else if(new_organ == "Testicles") - H.give_balls() - else if(new_organ == "Breasts") - H.give_breasts() - else if(new_organ == "Vagina") - H.give_vagina() - else if(new_organ == "Womb") - H.give_womb() - else - return - if("remove sexual organ") - for(var/obj/item/organ/genital/X in H.internal_organs) - var/obj/item/organ/I = X - organs["[I.name] ([I.type])"] = I - var/obj/item/organ = input("Select sexual organ:", "Organ Manipulation", null) in organs - organ = organs[organ] - if(!organ) - return - var/obj/item/organ/genital/O - if(isorgan(organ)) - O = organ - O.Remove(H) - organ.forceMove(get_turf(H)) - qdel(organ) - H.update_body() - else if (select_alteration == "Ears") - var/new_ears - new_ears = input(owner, "Choose your character's ears:", "Ear Alteration") as null|anything in GLOB.mam_ears_list - if(new_ears) - H.dna.features["mam_ears"] = new_ears - H.update_body() - else if (select_alteration == "Tail") - var/new_tail - new_tail = input(owner, "Choose your character's tail:", "Tail Alteration") as null|anything in GLOB.mam_tails_list - if(new_tail) - H.dna.features["mam_tail"] = new_tail - if(new_tail != "None") - H.dna.features["taur"] = "None" - H.update_body() - else if (select_alteration == "Taur body") - var/new_taur - new_taur = input(owner, "Choose your character's tauric body:", "Taur Body Alteration") as null|anything in GLOB.taur_list - if(new_taur) - H.dna.features["taur"] = new_taur - if(new_taur != "None") - H.dna.features["mam_tail"] = "None" - H.dna.features["xenotail"] = "None" - H.update_body() - else - return - ////////////////////////////////////////////////////////SLIMEPEOPLE/////////////////////////////////////////////////////////////////// -/datum/species/jelly/roundstartslime - name = "Slimeperson" - id = "slimeperson" - default_color = "00FFFF" - species_traits = list(SPECIES_ORGANIC,MUTCOLORS,EYECOLOR,HAIR,FACEHAIR,NOBLOOD,TOXINLOVER) - mutant_bodyparts = list("mam_tail", "mam_ears", "taur") - default_features = list("mcolor" = "FFF", "mam_tail" = "None", "mam_ears" = "None") - say_mod = "says" - hair_color = "mutcolor" - hair_alpha = 180 - liked_food = MEAT - coldmod = 6 - heatmod = 1 - burnmod = 1 - //Slime people are able to split like slimes, retaining a single mind that can swap between bodies at will, even after death. /datum/species/jelly/slime From a8dcbd0dd4f78a429ef485107f6fa9750e535b1c Mon Sep 17 00:00:00 2001 From: Chayse Ramsay Date: Fri, 16 Feb 2018 15:26:00 +0000 Subject: [PATCH 21/94] Gives Jellypeople and subtypes the ability to actually SPEAK slime, not just understand it. Upstream oversight corrected. --- .../mob/living/carbon/human/species_types/jellypeople.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species_types/jellypeople.dm b/code/modules/mob/living/carbon/human/species_types/jellypeople.dm index df80b725e6..6a260d520f 100644 --- a/code/modules/mob/living/carbon/human/species_types/jellypeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/jellypeople.dm @@ -18,14 +18,14 @@ /datum/species/jelly/on_species_loss(mob/living/carbon/C) if(regenerate_limbs) regenerate_limbs.Remove(C) - C.remove_language(/datum/language/slime, TRUE) + C.remove_language(/datum/language/slime) C.faction -= "slime" ..() C.faction -= "slime" /datum/species/jelly/on_species_gain(mob/living/carbon/C, datum/species/old_species) ..() - C.grant_language(/datum/language/slime, TRUE) + C.grant_language(/datum/language/slime) if(ishuman(C)) regenerate_limbs = new regenerate_limbs.Grant(C) From 7565f1e1f10c4e44f2109f0df9a75cc4f1aaa871 Mon Sep 17 00:00:00 2001 From: Chayse Ramsay Date: Fri, 16 Feb 2018 15:36:20 +0000 Subject: [PATCH 22/94] Undoing what should be an upstream fix --- .../mob/living/carbon/human/species_types/jellypeople.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species_types/jellypeople.dm b/code/modules/mob/living/carbon/human/species_types/jellypeople.dm index 6a260d520f..df80b725e6 100644 --- a/code/modules/mob/living/carbon/human/species_types/jellypeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/jellypeople.dm @@ -18,14 +18,14 @@ /datum/species/jelly/on_species_loss(mob/living/carbon/C) if(regenerate_limbs) regenerate_limbs.Remove(C) - C.remove_language(/datum/language/slime) + C.remove_language(/datum/language/slime, TRUE) C.faction -= "slime" ..() C.faction -= "slime" /datum/species/jelly/on_species_gain(mob/living/carbon/C, datum/species/old_species) ..() - C.grant_language(/datum/language/slime) + C.grant_language(/datum/language/slime, TRUE) if(ishuman(C)) regenerate_limbs = new regenerate_limbs.Grant(C) From 47e9b2fe632734c2d7d30fd332da39d32a7a6fc1 Mon Sep 17 00:00:00 2001 From: Chayse Ramsay Date: Fri, 16 Feb 2018 15:52:28 +0000 Subject: [PATCH 23/94] More Requested Changes --- .../carbon/human/species_types/jellypeople.dm | 15 +++++++-------- .../carbon/human/species_types/jellypeople.dm | 2 ++ tgstation.dme | 1 + 3 files changed, 10 insertions(+), 8 deletions(-) create mode 100644 modular_citadel/code/modules/mob/living/carbon/human/species_types/jellypeople.dm diff --git a/code/modules/mob/living/carbon/human/species_types/jellypeople.dm b/code/modules/mob/living/carbon/human/species_types/jellypeople.dm index df80b725e6..e73427d43d 100644 --- a/code/modules/mob/living/carbon/human/species_types/jellypeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/jellypeople.dm @@ -4,12 +4,14 @@ id = "jelly" default_color = "00FF90" say_mod = "chirps" - species_traits = list(SPECIES_ORGANIC,MUTCOLORS,EYECOLOR,NOBLOOD,VIRUSIMMUNE,HAIR,FACEHAIR,TOXINLOVER) + species_traits = list(SPECIES_ORGANIC,MUTCOLORS,EYECOLOR,NOBLOOD,VIRUSIMMUNE,HAIR,FACEHAIR,TOXINLOVER) //CIT CHANGE - adds HAIR and FACEHAIR to species traits + mutant_bodyparts = list("mam_tail", "mam_ears", "taur") //CIT CHANGE + default_features = list("mcolor" = "FFF", "mam_tail" = "None", "mam_ears" = "None") //CIT CHANGE meat = /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/slime exotic_blood = "slimejelly" damage_overlay_type = "" var/datum/action/innate/regenerate_limbs/regenerate_limbs - var/datum/action/innate/slime_change/slime_change + var/datum/action/innate/slime_change/slime_change //CIT CHANGE liked_food = MEAT coldmod = 6 // = 3x cold damage heatmod = 0.5 // = 1/4x heat damage @@ -29,8 +31,8 @@ if(ishuman(C)) regenerate_limbs = new regenerate_limbs.Grant(C) - slime_change = new - slime_change.Grant(C) + slime_change = new //CIT CHANGE + slime_change.Grant(C) //CIT CHANGE C.faction |= "slime" /datum/species/jelly/spec_life(mob/living/carbon/human/H) @@ -111,12 +113,9 @@ //Slime people are able to split like slimes, retaining a single mind that can swap between bodies at will, even after death. /datum/species/jelly/slime - name = "Xenobiological Slimeperson" + name = "Slimeperson" id = "slime" default_color = "00FFFF" - species_traits = list(SPECIES_ORGANIC,MUTCOLORS,EYECOLOR,HAIR,FACEHAIR,NOBLOOD,TOXINLOVER) - mutant_bodyparts = list("mam_tail", "mam_ears", "taur") - default_features = list("mcolor" = "FFF", "mam_tail" = "None", "mam_ears" = "None") say_mod = "says" hair_color = "mutcolor" hair_alpha = 150 diff --git a/modular_citadel/code/modules/mob/living/carbon/human/species_types/jellypeople.dm b/modular_citadel/code/modules/mob/living/carbon/human/species_types/jellypeople.dm new file mode 100644 index 0000000000..5e3f58e26c --- /dev/null +++ b/modular_citadel/code/modules/mob/living/carbon/human/species_types/jellypeople.dm @@ -0,0 +1,2 @@ +/datum/species/jelly/slime + name = "Xenobiological Slimeperson" diff --git a/tgstation.dme b/tgstation.dme index cf7f7923c3..a9c2075554 100755 --- a/tgstation.dme +++ b/tgstation.dme @@ -2568,6 +2568,7 @@ #include "modular_citadel\code\modules\mining\mine_items.dm" #include "modular_citadel\code\modules\mob\living\carbon\human\human_defense.dm" #include "modular_citadel\code\modules\mob\living\carbon\human\life.dm" +#include "modular_citadel\code\modules\mob\living\carbon\human\species_types\jellypeople.dm" #include "modular_citadel\code\modules\mob\living\silicon\robot\robot_modules.dm" #include "modular_citadel\code\modules\mob\living\simple_animal\banana_spider.dm" #include "modular_citadel\code\modules\mob\living\simple_animal\kiwi.dm" From fc7dbc8322ef2f11e6041fab5f8ba09e21bac8fc Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Fri, 16 Feb 2018 11:31:52 -0500 Subject: [PATCH 24/94] Merge pull request #35702 from DaedalusGame/scholar-of-the-first-sin-edition Removes secondary --- code/modules/reagents/chemistry/recipes.dm | 1 - code/modules/reagents/chemistry/recipes/pyrotechnics.dm | 1 - 2 files changed, 2 deletions(-) diff --git a/code/modules/reagents/chemistry/recipes.dm b/code/modules/reagents/chemistry/recipes.dm index 9e73f12f10..a4167a19df 100644 --- a/code/modules/reagents/chemistry/recipes.dm +++ b/code/modules/reagents/chemistry/recipes.dm @@ -9,7 +9,6 @@ var/atom/required_container = null // the container required for the reaction to happen var/required_other = 0 // an integer required for the reaction to happen - var/secondary = 0 // set to nonzero if secondary reaction var/mob_react = TRUE //Determines if a chemical reaction can occur inside a mob var/required_temp = 0 diff --git a/code/modules/reagents/chemistry/recipes/pyrotechnics.dm b/code/modules/reagents/chemistry/recipes/pyrotechnics.dm index a430d93fba..0fa4ddd479 100644 --- a/code/modules/reagents/chemistry/recipes/pyrotechnics.dm +++ b/code/modules/reagents/chemistry/recipes/pyrotechnics.dm @@ -268,7 +268,6 @@ id = "smoke_powder_smoke" required_reagents = list("smoke_powder" = 1) required_temp = 374 - secondary = 1 mob_react = FALSE /datum/chemical_reaction/smoke_powder_smoke/on_reaction(datum/reagents/holder, created_volume) From 238591128c8bde1970f4585cd23412ad2798cb7c Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Fri, 16 Feb 2018 11:33:04 -0500 Subject: [PATCH 26/94] Merge pull request #35697 from praisenarsie/patch-34 Fixes addiction text --- code/modules/reagents/chemistry/reagents.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/chemistry/reagents.dm b/code/modules/reagents/chemistry/reagents.dm index c8686d07f7..4ca1efa4e7 100644 --- a/code/modules/reagents/chemistry/reagents.dm +++ b/code/modules/reagents/chemistry/reagents.dm @@ -94,7 +94,7 @@ /datum/reagent/proc/addiction_act_stage1(mob/living/M) if(prob(30)) - to_chat(M, "You feel like some [name] right about now.") + to_chat(M, "You feel like having some [name] right about now.") return /datum/reagent/proc/addiction_act_stage2(mob/living/M) From cbe47342163a5792dc47b1d8c6e136aeff635524 Mon Sep 17 00:00:00 2001 From: Slignerd Date: Fri, 16 Feb 2018 17:33:25 +0100 Subject: [PATCH 28/94] Changes a number of HUD icons (#35704) * Updates hud.dmi * Makes clown's nose big again * Updates contraband balloons * Changes HUD icons and HUD-themed balloons --- icons/mob/hud.dmi | Bin 13298 -> 13261 bytes icons/mob/inhands/antag/balloons_lefthand.dmi | Bin 934 -> 1013 bytes .../mob/inhands/antag/balloons_righthand.dmi | Bin 1006 -> 1021 bytes icons/obj/items_and_weapons.dmi | Bin 119243 -> 119323 bytes 4 files changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/mob/hud.dmi b/icons/mob/hud.dmi index 5e33807ec7987dd1926bc0a9921cc92a2c1af3a9..c275e66752b408975379b4be80318182bc3b8a9a 100644 GIT binary patch literal 13261 zcmch72UJr}w{K7o!M~z_@K+E}0*EvPq>~`hds9Hbi1gl(5)#FVh-fGQ5h4Nt(t8IH zsi8#g`2{Yho6`fr;&d@1+RcCs`oV&p=R1B!aZI zVnaM6x>edspv;LTleTt!l9jU(7Hq@rigl;O?TV?G$BwqD7MP#QC(X-?$+C6ZU$eq; zxXPmM=PpqXY;t~uoSo$o@Mf94FR*#)*Cbz?gbR0?;KujY?y9gR8TYnIO|An2zGmut z{DnUdNVLZrlImgX@bKivlYEhQyq)14slr5#X>(p{yfGoX;q&alMi>fT#c|k}+;-s3 zj?Z(08#haS+i6Jpbs$?CTTIo8%_B`R)L|X`!W=@Cn^YY`k&UOs7hl607+aTJZ=x7c z(*erGiJ#fEU5NsJ{8z!Z#2$aKO&Vg7>gtttoQw3um2qp|swzyBY>+~0x11S_ zLeJ+MB@a#qnuuN+8ca&#(6Q^PP;=KuHF9XEaT?r~G+9;9Tm3OLu1>o3_(~w36$@7_ zl}u%>xs}$p{oaiE-r{>ROZl4kG98l%*}u9vf29_2bH&e+ zB%6@w^h((Vv(kK<*q;&ZdFk~-Xv zxJ_P~aqn`yR7wy`S2Y!CFnJB(y6t$Xbo9feu7`J>uZN#aezyK^1>^L`QVXxv>&Iuq z8mnnu+VA%N*va|L>pvPpzC0nnCdT>OYf~~owYsU4xyo|CV>1Kqthu22!L4md;&g-A z84-@QPo8h{$23x(Auen*U+&?0TKCslUha;d?9$dVIE@#W>-Tu$HJFlhFP%)4KB&Ji z%@yw$8pv?^d-S-fPnmj)a|YNgg-DtI^)WTK+`s#!L*J42yI^+{6>FVZozBs&`Shu9 zHmQ?Izrz($Lplykc%hcCM%DYVFpM+(1k5o%Wa6hK0t6BO>1y1u2>HA*iG*_!pV4;? zUOZBi{dv_j)Aho&zt7)!;#HD%5zMtpTF7LvMBZac(7+9j3?`bC?3u(VuSxA>jOcV4sn=MrtK+c~(5N5Bz+`O%mbtIemJe6`+1 zuCsnOndCXEt99?*u$HyO{ocJ&ueBTId1R*^^q^RHz=Y41GPf$1_SOWydV2!@vX4o9O5z|{NjH|ef2vqKp& z-g(GSmt|7P8<$sT$EkfiujQRuyR_tZCtT_F+{Gx39=Gh&L_gdSaqVuOlq8>hTW*2NB(n5;e)m#aMCitNq2iNZVdTcit+nL~st0TM#Vgx%KGa0(mXmGeLT9+8 z3y{1Mt31v{w(m+y;{0tAoou)y9>n{NCuYCe>!|kBhu>Lr;u*k-;A)Fi4{<_DUPsTB z3YPOm$^z~+4#^RANLwznnwz{rPTD{>P6Xl{&<$bs?#oMPFH%oyxD1fvw@&m*mh*bh z=42xY_c8{OYckSOI5P{2c=6QfQo}WQd`8MQ#68Q1bPIXvGT$00Sp{x*SS6s|i43OG ztg9|D1Th;=)lGCRw?ApSi2M8w0q0gpTXNi+t26Z0f;MVKb17b;9;RI$Xz5(m_E$cE zGSgO(?9xUViRs0&t#_g)Hc918%#JhHeDn6O-j&*SfZmi82`s>ff&Nf}nCVgpphq+> zi4pBpW9apdf@m%Yz4!1)Y^BQWOl|*p4%5PI9&)BDL-@XNlIx&JfyHo{4O;wKN zC#G!mKX0mFkGfAPeDY&yw$$c4db*ks?KaLeik=3`qo-=018sEQBlsvA>;?Egs*+6$ zCyFxM#^k;|(jU*Z$0bEdIALCSIj~m7M_jIq5gjwz|5ud>|5nNMzdgAT#u_ZSJ=ClZ ze5+5Ni8~Jh8JVboKqA)#KuRsA|hdP3XG zxC^20|Kv;UZ3@DrJ@2I(JzUytYIuStk;T6lpT#dhbxV%W{5mM38=IkO{G%61h{|Zn zqhQNLcn=XlvRnL`BtB(ifl?Q+l@^==VXz{vO4Le`S@SER>WC6+wxrRdc^NZLEWRJhVa{? z%G>m{cT~#XlFh(eZD$(A7K1>`vReOj)B1m0Bn?_4t@#NdEUA~agrBNwUt4cKqJfJB zNtgu1WeSe%8hwP?4NY=b@1XI~n|U3y6@b~t+)M|@Q!a|RvmLGRpB{vqS=Jn^*@}^= zFC*(}=X_L2d>@^5wG-brNn;mp=(i&s6MME^ zM^FkDI66xe`J!8u68K}Zl!<;%4awpHR%KT=sHR5yKU3QWrkaL2AA*XVF-&`6WmV>P zlVL&qnlF`=LN9H+FN_-XQA(z#NOmn929OV*tdC9Q0@BsGGCw_ki-qBz3LCCAsa-g^ ztJ|*1FVG%hc3noz4^(P+ck`{=JXsJYJ5Np3f*1Q!56cW&oG;%#_k{EOhq+S*$sWPO z!`}}&*qQk8_&sGYCWS{`wq;}@_t09V%tg4TH94~aKH84SBLVGO-tz_*t|&L!qRO2R zvp1H%y#4j=Fm@{Ro}s?W>oE2kf6I*XQj?=o7no!5cxFpdVJuz~5_kS7??||#?ub|2 zs{7r(t)PKq)PxbDd111s>3kSs`|$aK;J6}Uw6AFmE_@ZF=xJ$JFh$xL7hR*AP}q+y zTBRD!EN&sFOjrEYf4{?pr3QX`F!Cy;DX&n@ftE-@KTxE3lFYvHdd}BTC^9Eb_*-p# z6cU9J$*1nAI0rGtNA+CzfE<{VrVq^PT<6vjDBQioz@XSoG@hoNb~R~r*x0-?cA0@m z8`LaadHci;hQ7zo=()i5U1vTUN|z%XH_kukK*e*!A_?QtbTbb@0p!rkF1{*)?Ro>q zGgfT?^V;@rhFfROb@*wYQy$GUZr)HW1@B!lX^gxTXL!W9{!k>z=y5N*Dr=>%?#c=I&@-L87sF- zwe8#-g<<7YGt6JD<>blfp{ByO<11r$U@Q%c6gb}0(#sRae1=pe$?pJ>dHht^Qqs6E zymS?=I}kuLOh^B=4Rtn4^ulr?SPn_14xGE}rnJ%+3S~-Af1+UT%p*VvGso>0#gdww zXj!5-&-sjkL-?_Dn8xtW2;|WN5Asa}B}6wWZu?}>`tbLAdHGIDwbQ!LED-PJYcIr# z&cJ-vg6I~GOZ+6RrgCBHd*1Mc_H$lO2zWq;u8>KeNMV}3PM-e71(l~pq_pEFd4q;z=m~uIwy}C8@;Y4>NQh$Zh)^|lsp$9N&Rm=bjrrlYhmidBB)2+B zq#%@=w51xN*QNS}a_4#Goqg6Hefzt1z7gYws5q>5GQlg+1OfEE@wVM%jqf+0HWM)j z&&lVg_?_&BI1z?UVC;PXek(my?!z|<9waER)K$|1h}$Zpk`?HO`N-+0CQIGfu9onl zlCp?mQFGFmc*drQ%1Q>m4S8Ny>)(v>+2%it(iJjFD$H)KO*^%rgeUG|)_~ldx?Y#d zl`U>#W(U=@)1VFsiZJ7UML_UBzg+YB1Gb^UgKgu|X)&q3sjvqR5^o_pQLXcF#x(mh zdi}$WB)VH_GDka-eA~2)HvA-L;x~d7LVG;yk-oIlm*67IbYH`8w&qP}8o2L;-3bI@ z=Aq{#mXZ<{#?6;BQ!Hn+8Wx^R`~4;UzX1NKR;)tN!-< z7IOAA8^3oDKZWWWN;r$)7=timAx}<7&g`8i7me7PQ{R5g&rP1Gf6;dR7QyWbb!>5U zttbP@ls})|UE2`tI%IjC#rp0*_9Q;^+ zQE>0^kc_ZbYSy5A*vgUR9Zz2RktKdO=PEtPf5lKQzTfRGd4)UgXHOscIwr6Xc@&Ud z_Ze>I4rKvXRUaLld0#KYj6dTLfBo}bP~u_x+U!~%KSNe50<0`3U@YBxtfWs=&!XUj z&L?Qh+F&s~h;lv-!bC1lr*iK9rI1?zgsH^^HrV zKgLhB^XMx142+ihkF%lHsiLp&fC=c1Z}p?zNDtjidYHiCD$qp-I&YL zv77GE0v96zdo#ywSjpFsIko|Ybbza9a6>Qe7Nw&`Uy^LUIP3+@A zlJ5Fb7hhFpZtJ@O-S=ccsV2Ak5SfEKjn{O;au3^YK-W&I1}})HOQrYUB^c7<+H_Gz z`x|1q6O9pd;9L@Mm`kriCMzpTX@ATiXf{d&_%wvfoo(3dRen(F81<7zVY_UJn_)p< zS5YRrA_muQwY)kz7$uUH)BKz{ucXA(Y*uls+>Jv}K)|yk#1M)x{R$lF?Ek$_8uJ|M7Gpa)y;#CK+@wpztOGgT05hyIFds zOM{B)+Cpw|P^yHB2BZeI_R~MC#j@PcPqk_L!SUr~uA+FkbY^C)a1an}L`ryX`1m@$ zZyB|75h6dMg&uiqK$nXu=wI+nn=1!J;S;2NxeA@ynw5)U3KOhzaN)bx-g9<7*-_GA5)5y1g{ad=$-LFBeFiG_*X?b zJvP9;aQu~Fik$9f#Dh`zW`Mh==g@?G6c#FHJ6UhZwtQFD%yU&kcYtg>q=VX2_Io$v zX)p4rDwDIf<5kIh3>`{ecV0o&S(ur9otSvgDwG;B8)X}L($m$`)53b(q6Y(onSK30 z@tCRngCK8QzWJpIoSU0#%?-Ez)UZu^zGt=*Ykq&6mqB+xd8% z+99Jo&j;W5R>JzR5Hes=?_y%(HyV`#Ltk8U_99Q77aKR5U27`&Zt&bjTP^0EQ`lUL ze0c;pnDumVI-ofhFJA0)N|BTQbq=^b9+38ZwS>s(@DqEk1l)UhOi0tBrx zi&gm%19}JyBtm9!Ypg_7Bn>$#;wr!`d;2zzE-<6WDpDiC*$y%RcmDPC9Sgw&sVbs8$YEJ%DBBn&<2$W3JUZ&}>&*qx z*a-6e*@hRCB`60^UlUy^*-AXIc4XH<^y;+l@Uin>Ft@WyEiKH?@76=?`q1=IL-a@= zF#Z620n!AgTzl90Sh|f-@AQwE>(**#t$nM+CSl@Vd-$Q*-0n66GR7UN)+8D?< zadVzikGVr)a+c5J$@%)dHY&gTz!npOLjA3?HU=%hREo@5o({wM^A~}ASkqaaf9}Tq zAK?Qo)(#mh)40P72QMG5HP7vd1sqlw9|3u~+0liW-{%}1FwMAKTKEuUA@Bd9{;VHQ zKT0LQuHQ0fm|M?$1OXs@K$P@~YALTeI5ZURhkeRW^ASM&%00)WiCcJRO=V`LhS>eF z4(8u>FKOJSF<%$a8IX|;?fJElSV&^#JVBF(upr8H#Ijw3v>Eo^c;009l`MxBnwbyBvEqV4%0R$BJ}Nr})Shdusi&D%LkMfl>AJ^ca;= z3A$IP`M#x6%b%0J3V+Kf3x86$+fP)N63BRysWD?PUTkD8m#?1~+a%%1Mhn&@@O_{s zRWrwj3mbmQTwGj?@BbiCsQq-g9(Y<(bgFj!8uXgz>~;Q`(+y8mTI1r_c(-#Xo>QJARMbHroVKgQwU+gmPgnqubD-CtP^5rmF| z1KRbIt0L9{S0?OPgA)HtW3cNX6sU~%TELF{@L`tk?laz{My62gWK}a%{+kT0c6Eb4 z+rp)1*_FqqekXX_=l;VttUoFYar>nJqZLdH>;PtD4%)ok{q+q?rrw@$g0k>O?M4hBx^#HcC+w%^04nv3vjbdR&aeiD%5E)g*WqCV#BsLia zHDys?lc9(<%F^n_Jd#}X^3v|w=u3Y&yt$$Fxm0f`rdqeaX`Up~8V9u#=8d7wn` z1c6DvedP3;6DK|lR)(gr#+atx>Rj+jlx$+Ext=Oulf|LIz|axe{IkRkQe&k8LGZ{u z{VXSs6|XMNenbX5qp$;F%)B__7?iMoTc9Aw4 z!hc3&5i5vV&`|Z-;P29qRb2X_GL-fd!Q_S9U6@St8u1q~`W#PG3^`hHO5fCWS`goz zdCk9?VEItj8VUru5wjc^lY7Id>5JOecFsZRJ0aj9id7d8xJYqjMxPy7Sy?SiOn!UY=<7#6c&#E)a^IPgsCe663q8A)7B=Y6ScyXr&Z}yrjmO8LFHLp0%*A*z zWG<$5qY@_@ylxe7IP*Gv^RAq})OO&~%_m6y?Vc>3yYE_KQvM zT0z#+_s1ZlZ)p9}z)10TPi<|(c0;A7>KejU8rUGe`E=VqD`|v-8xES8!>TN$LPwnM zEL3tx>8Z$hCJIlj3($XYaFEWP{iM)OTh10VXxY5Rsp1{u|)ssoLonGWTOdyJN(K)e7^w;b%YeQFp424Q0w} ze32Ae>2EjtGG}t(WzM+iFtgC32g;sm?sz^T+Ju#X5Xr;P?88jAWrq=xNwBUJ= zT9TP_vlAu54g`830CR^<_}xCTXFLU}X^Ar!S?OJLv8VS^MpAu0vw@0ZVOp$!K=}Va ztp9+v0ib@muH|-V{lxG(-bX2?b9-ljOe(SaF{FW82w%A6LAq7Z7u)r)G0I7SmeW9q zxCAB71e2=(^mAhaGgo9hZQ_*vRD~l-L)ts4UA3%_{rir=H@4W(khV7Yn%t<%Jvkp| z7rev-Z%e9b0M1ika+{%$r5 z;V6xq5!|xrYjQR#ay({)Z2B-kn-@AM%E*I{L<;UqIC$4*va&s_G2w!VIG?3#f#&0# z>iq*(hYK05fAmA~(KhhH*#)yqVPd~ZjhG&ld#i7O9d= zEw=^`p$#)zsLZ&x;Yyvbx~m_d&haS}Zn+3?U8R7etmr##wBOa*sKDN7J|hBbEMXZV z6JAHM9smG6MLo{pk$kXAV?W!cJb>~PdJ!DCaQwy?e(01tq8R@8LI!3( zY}_5eTTe>;7;<04w9{EG^)gohCA3IM7`1nRX~|ASm3 z!n3Qq$|%0TI{(q63+NtU#rTz{IOebE z3x2tKz{3eTe-6QM;@^b?{nTvxlM0^qCj0eKd%Nui3R4`_KTiJ(X7c8lb85X|^E?eg zx=>113iNc++TZ_*wsdZ0cq+J?4MuQJWk^vcchahx|5djkD8B|a&{N)DvYsF{*HbZh zJqlgprM16yX`Fwbh`8TYR%OEi;5y*rQvwxf{IY_xLI+NF{?G#MAiS6G561+Pk!zKz zBfE64RCXUzO&b5JJ9F+miNi}GQ_1~dA!q7Gys!xe9=c7zWj?4(fVsC4U-V_07#h;B zFz4_~r2nDs{|=zzo>O>xkoM^QGj)IL*tbqCMJ_!q84EbKD_COHJci1f82o92T1T;)msshszBM-+ynD_6LZ7LF#2rLAoQN3jn5CJ0A^68@(&xNvXzMEZ=yR3s3vE1~TJWn;n_wmt z+xkuTnz~aEuprbZjI@Zg==oldzW^ca-Kk0HdzmhpIkZcl~27yXiLH@zH4i z4(h9)amgEEQK6&r(cH{z*JQRZw5c#{uJ`TyLT(MoXBAIR3XWaL_&9Be$ zb6Ra-M=ZCvZrzWCax)@-`0Xe{{-!ejr6VqTJFC$r{i#{EYts!EzzeNSH0t&&-(5Si zTzqq_zH&j?GI#}fh0+-gjB&*He90SKQ3f3JDl<~)0AH1g?fqT>uyIG5P_+T+vey>-BY*z*>h(n_n+4bj z9-I>aw5~PW!*-=saoW}_o7em^$?Ldx+`(aPZq_3dA$>0XeG(9^_k3z{Xb&cIis1VpV_oP> z?5Xg@{mU z-4G*|XGWpY5{ELr-`ImU1xoU)C#Rpx!Vc{>!nB@ihcCvLanNZa`W&%U(8Q2Ghwa7t z`G(7aU#wILz0kH_Y0gFOZfPlL%>l?cw|?n8I*r>tD5%1@_j7KtjLRv#>u?0g;@-X7 z(o(a8goJ18tgwi?&jYa%xoe9(=6Fa%{=AgCRp#6hFQ(SJ_nP6lOuruD?%f6eZW>KM zkLDR;8iNVk5(A&-%wv(gUo}@{`UiGK<#V)hjnzUUYL50Q_DHayFLSY&)JpF{VWYpG z^z_$!0~alAKl(KoB36dmRb&G5_f{{j{1hE{>7g=MTv6~YlHc4?M6)YP z^!C6&5Ld7n7i$iH#J)UvYS~)K*d@6ks(plb`KG}7VLV}npUQqiOzey*)Cxk&fT;tF zL;4bVL1s2L+iVo?A6@?F&N2x>GB_e-#uKrN;&F}qVenEoV*B|8(KQeERbq^fRfmrR z24k$JN>jupjw?_cNt8#w*vv*ohenrqSm`X=SeJp!R?#)IM2f`9=I`C2>RDFRz2A4k z6nvScv8}DOvv0-nY3G$p2L=-oLeUw(^RwXm?zaW3kW4i^&Laoralv6<&K)xJx(Nz&x3=Ug%iyE>luP^U7B8|Ag~ z($VJMvi4!s>38&nBFqK`Mh?943cdq?|M%~X4u8VOr!`0_6|$y~Sh>qvxgoREbO#RH zAk?{QS%Wmj8OCs1PVRfY=l4%3bYWe0Z(2%M*SGH_CAZd>gKZOHi|XQI!NahS^g)Uf z?7^Ze-2;|~KY+6KqZ1V&w4)-$9$2L~C6Db6%rLyXAhXmg{DxTELFCVQ7$Q6D zO}Eoxd#+tJwaq^Y-DOAriCpZ76aRDa(|r}g=tXfoTmLg-N-lYhGh7;eJExB|?wfFh zZx^GEF|sv z!&V9kd#4uUJIxqKU;AZlhipGe`G^|Yd{Bhs2jFTJW?F=R4TW6~mR&VfirPY(94U=Q z87BgX{%eeQI=~#x#tFqYZc6BfPajv>z(Cl%?}3PEvR6$ji<)w<=fU^94dWIBAPIM& zZv5{&4=^B*7W=~P>ZeLm(>bL%w{n;7n_hI}3soi?luGV%^h%&1W6??fq^+Z%^Yd{S zEUEA?BXxETr`L}39QzdJ)+=-z+!RYtgVYc!fqP#qa6l}h&>fUL!15K~B#pMQIt>4R z&)G%6N0mREIl9Ps8A$@*u(X2iri%KA4Dc0m-#=_rVslXCKGWnS*a_d)Cs=ixBGq@j zv2sNKWK=Va>D4Ku_t47=s!T!coV*7uk7&2(yR&Rm_7fmTq23e})?k@ej^W4bl5*&$5lfkHb1o-KUO zVSdurpxF=Fok*`rtn%4&+&mY+?|Xfko%hem-sui0j67b&$fq&Xc66hEMwoq6re!KI z^OplS&4vW}pqb5j-3l`BSE}z%oL#N?>o^_T+N~GS765W{oZ9Zi4#Ghli%-wwM3A}@ zel1kJU)K%qt^msBpR!)BfKQk}uDsFV-<(P%B$)&KwIaApz7ck`p&jeMG)>(~c|Z6* zRar<^Ie2pj$dnNt2pBJJ9?zY_H@L6>X!+c}2bb;QN8?!nPX;DJzkYGaizrrX4!J|~ zRDfa#cWyX0H>XB4p0CItG}CtUmnON$<7wTK-?E6{K|(wAk4GzVv4U z48N~9H897EV_claaXh>uZ{HfpWv3~1b@@CKXd*A1Tv6g>pf30cUW9%K3P18u-@YZS zUi#{q3tcWsm=7?t3Gyt8HF**9~xC>rJ_box` zp{l#xGM51?he(0?G-^H&mPp$RO-SgvLvvn9v?&jnQqem-snurf`}|aDF+nP}s-RD~ zZW~0$T@u~OGPe5i&i^%((9bb2>O

pcle)&9m;vpB?B;Rlc~dTb#4(xSMMnp*Lz9 z5W@wWwJ0r>olB1@O>o=6f_g06o zN1bTOdxEGyb$|(yO~)NsBWccH3Q>Ea$p)`Jk**7-aG(-&e@_3T2A@qJiaXVXQk9_3 delta 12163 zcmZ9yc|6qL7e7A4TiO&#rA%dHr|kPkSq4#*eMx0Ema;GNl9cQj%Y+z0WZ!otN{q3E z?2Izjv1G>5j4|^YpYP-M$M^fkYwq&8uXE2mbMCq4JkRZSCON-{uuLZj-D8#7OLB(+ zTMZAQw=aK})STh|UZy#7`dy29ob`Z|n(owNu3y3J2wY|JnHgko*xLJtTVQX^TECN-$^4&!0~qoRE%X|0j~l zLJ31_cN!N*VNcDzYc}2ba?&m(%dzJN`|o;Z>4c}A);<$v2MfIZc`+OGga>y*y&{9U z+j#Hhba4tF>&VFT_@lX_BiB9iY9)bZ!5#BpOZM`uY7Nx&${1Py>(M+BGL;w834okX zu71u~Fzgyts8ZUM?PeE;_&TeC|4n|Kuhu4mXYbrs(0?-VNlyQS4A`~ho6!>M>2swb zr@#1+<~x<4uOnUu=WM00mEF4Sm3wS=`0lyG+sMoA#$8{(CHn_uSQPP!>Tv4+*NwH= zJhzf#B2!d&TV42lbBg<`(KJYy@Vjsk;Deh@&Ztky=&QDxH>79ZRaVq0xg~rlQM^|5 zg%i);&^APonsRaH+CmLEe*a|jMA9N<)=Cy<+j8<{K1M9tvyJ)5?bN&>upiy(mVa1A?>;Ee85%B(5 zpNQ8$d3o!XV=@(KwkljNo~faKUoALO+;_F0-1CK~b5c&N>&2AhXjOY@36U$n)G37!WjDhj&E)t2J{yDroobGF2-Q0U0KQUdckWc!-xo5&8+{V}~E*GA&ntj`7)Trj#B zCqKz+Srx5v?C{3aYxxXGP{5@zbJGP~mjV1S3Qd_Q?W-8{7{<5yBV+$iCb|6B9U##D z3RhUo;4hR{;;)7A!buFHs!~gFS|E{ET`H1Ry-!rJz>9*?nhnRF3kN&v1t#VwX5FiN`|~6tmlQUZ42PI_2;1 zUhSt%F=-@-{eJ3+jL~EF&XsvX0S~}Qwk7@aS(*K-6Zm~H)>&AVbG#4Pmm0D(_dPkT zxVSjJx~TNylH>H4rBwN5vOHtebxS+jJ{b3}lyY*@jys5+p{(oF54NllB+&x!D8?jg%Rwj|4&CoLy}?UC{TfJILAkab;s z$7qkOE*+Bb2{q-)Hx3y6cC^)weXc-!-oRi*ak0Y4=ljVJ+hF`t*f5XcM`2iTdHJTx zo<>V!bK)h9waOv5Ux`M78fGVLdntd!==kg&%A9fef6Qh4F1&K7xoorUYSMD|v+PS| z-0ko%IAOc_Zg%f`>hiwRYrjea2c^X>d$vEa2RCn^w6&9#-HQz+ zF0_j#z0*L@{&DjpcGvkV{HWc%`}WjBA0HnAB~NbZO73H1{ubjv1~%Le6%d96+vnXF z#An`dev9VcU)tqUS)Q3pqNQ>nas;CS@P&!}(_4W0jXE-(3$U$UOg~7AlA3-&J#T#% z1y^Q#X&rL3_8hGCz_kXEwNUUN{|61s9`2XlQ1BiJvzbgJ$NCQZtQPzaL{Wl#cFZxgorE0Uq*DLmoz$ui?1y*>r|8s9%i!ErTbnjaYa*AqU|n3$Hk+P!pl#p#wWzD2kRZiUQC5rbP)HgwtNDF{Yx` zRX#GlezN5Vqwl;tL-eNGVi^B&1~GY+)=^}y>E?rQGA46;o3^z+8A7)^xf1CRa`;{j z2khoTR=EUt;aH6B6SL??UztHx|6^J^C@Y-Z>8eAM|y_cH;jA%!_ zDaX(-0rdw#&ZlNEThoVFytTjclD)qbm26RU>)@q;@7~uo0Ke`HNHPghEWhz~w;u{5>tUOOsJ#&pwAJzwb|IA~sU4ZfG%Cit9dKeB2 zZHFLfLI!SJ|A^ps!_38=AF0}kA88w)Ofl|rK)38wglwrVnU$9Zw5<@G;Ymvc#_hEQ zFJ+2Anj^V8Ede8gTM{$q27th{e(=38n&cu6u3GtAVz+9Fy^YOG?%*+xDR-8R4Eal2 ziN4i*n`%kh^a7(j)^Pa{$sGGk^{bbAY0b$}Vl$H+IF|r_qgKRp2MzCUqS1|>?#6^2 z)Sp?Dwj743g6_S89S4DgMXrIud1j8Ssl3?8Homz@0V)4TzLCxn1024GUw+|iD2V5q z{Cs_jDEH@BDzO_4zpOA)|QZvr!TpPJYm_ zakmY3QaZuMyc|KeJ5)LO&jtH9&vC@sL#CVk8AeR78 z846MD-l9?hvIZe+*P=FTtV;p_WkGnBJxCXDP1cw=3#XSW+KshfKIXEVH_ks~YY!SI zP@x)Rj<(87(X!m#{U(0Co-W-d=V{PAC??fcJP0i`2H?!bMySjd)E`Ey?Vm0R?3_9- zV%^?fa#XbZ)vA{2-}su$AMvAo|?d_urU8gQ;$_8GKz*&$(5<#o~A&eB<0ZDD_1u8mpsG zGaoK?CE(xCOT#7J872=m&@7AM7sGO~A0uXuh%dHi&}{|^!$BY;Z_YFS_l89h?kn8% z$O{@Kd#vBXz-syi>gv{%Ki%u-=2D=|>C+o8CB7A4R9o6tA)z5VTzAP{wv^qEJpqTb z>EB!H`i-f*z87=28OG>xcE}5^unaQ8 ziR_%nbl8@%tC0C9Pa7#1^&8k+$Bwll6z{xwsf5|(DFh``_R%5O0rJ)|N6n#QCIwOc ze4kiBvCjU9{pS1qF%bgWf`+~z{_rCTO0z)m0pA}3M63M{E&2{lH*@gJR^dr;zQQqe zQ@?D;YFG1*9s`#&HQC#^dhM8YHX7~eGhQ#{Uk5k^68W3i7;smNdMBmoNS$GlUfC~Q zr|OxyA=F=4BdFXbt${aClo~(c4EnKtcuFIVU(v{f1fk7S)vfA1((Bf3_|#Sl&xZrw z4lDbmufm!uU-(QN)U)Hh`j^AMuog3PsBfuWdO;{BMBwstQ@z<1UB*(TL>$+HF%b%NdM=ghsb4Qq;uN=zl0sBC}qT^u8o1F*Zr}A|}v7zlF`2 zSZ)2_uZ*=f8$<|){c&7`Jog&lu0G@`+Tg)RTc~y5eCnk-Y&D#tf5Zd)D3xt!BO)<% zCg;iL4bsU3nhgQN_=|Pj4<~V)djH>qI0!mD7|^lns0cHXYI(CbEs-0Fy}$jBDfge@ zF~U=Ei2oj`Icx|#m@sauH)ch)oO_2}{xh8EHCgRwRWA|5?eD`_&Tt4KJ(C5lVc9!) zfJ7uAHEMsC$NAuisg4C@LL#sHfm(VV*!q9~`$3Ug{}z?~Os4S3{*{N^lv7G*qHAS& z;hmO&|7mys^f@EELbMsViJBADEVL7;;2nEJT z%Y*2OwY9a{WyDmitC)CA0Ij1!9lJS>254|?Gy`d;;2fuN*Gd#?EQ8cBkS+_Jyl1Ob zj%EP-ial{xe(ud6El07YQwZz18+JO`WU4AoJkPge%xc(+}yly&SvB8 z-=9vNw?=juZ``G_0o1`fssb>rsgbaLPrr+vU0xXN2s6R)nMsYkNsTq#s+ilcBT#Jr z2)wuVPfx68Gp5r4TBXCc(#_Wxu#|CohZpO#a893>=Csg9%Wwt91cc3T`rn18(2uC0 z1^t9jLtM3Ec{_bdJpGBXwh;8CHdRPTRYtn4>EbJP#z@p@{?D-Fo51RJ_tj7#6#|;g z7JbUWd;*L2<6ImbN8^^E7BYj6vQYK?Or?CRNsk5(=fjd;tnq8=V@|zy@7^Seb#J)I zoo!_htZ?eLR2{^H;yr^-me=^I^hww<#NNd(*te~!$6whQbVbeOKfjcv(wK;-l9-}} zMw74vY9W-bxfg3OUQnN``69NY0yE!Z{o-%iEh}s%*2Xy+Xq9TG)6P9uTG6eRWhFrt zLNC`6L&rz1VTIA50hA_<(+Bt;r)APjD~+$t=sp|_PqsS2JaVU-ze^~AG&ggP+zo(@ zoekuD1K0wy&VP+$bZA>rU&pqE2)IL5XQJ)Lhqa-GW%&A+v2Q{LOVdryHakAouJKUg z$op?GN`p~i$M`;se&v6_V61+M8KPl+4Kj^7A{6FAM+(&m0PoMdOL2Z$^}(}g@j_}! ziXPI9dD!jG28bu=iL50*s0^K>0YtDVQE^NdqHV9`zI4S^>TpuGIOzAYEHlPq*l>w9 z^dTiZYBgFMT99;J^+rEfUIf3R?o$f+60kLg%!g0c!;l$s7M{70YNl3J#d(PuR^4Er z6|&l|h#zg)YA<0wc|l~2!C-mjKCRy2WoO6jO8>VlFH~5 z@GE#cVPm@|nXTtSBw*Lv_w$@>ebBQ$W7_0u1V4`7{?^+64A8983 zIfIXTI2B!ugt}w7vnXIjZWG>G3YI|yKiloxZ!aWr_|+g8f8Vns^OvC6AFQ0`CX1Ut z-S{=Gn|at`(4LR1(UaO`?#&LqvxouTY;Ga^!Hwek#`!VfML8F0|o?s8v)P# ztzF0}b4&9zSO^wBxb+DU$8EAkF|IAGSbcJsr~H z%2%L&O(4;Ip#)Q{a(WugDU6*urG#f92N?>2Iqa`*pkJ+!3mv$ws>u1RzGSL=GlPDB z9H}g{*HGEvCzN-aSxo{R!^71>H1?BA)>!F_VGb?`a<6kKVSnwHsvK~z2Up&vwP@Tq z)|69Kh1D~`Ai`Su_EQxPNe`E5z8$>r46Q1^P2v`ll$7o2>dH`nTTM~d*4(-lwtI{t z*z=_2qOOL#SgB8JD2;864BlOXQ}?$jnwwQlgEiDPs+b~A0#NT6w5Y0W+CfEfboaul zyE-(DoAu1&|JihnU%!625_@}lO9_gHdl(^D*dW7cEeyEylZ@+@?hI6udS;jt3Az$v z!tU#^_^0+X(-=F4Im_tYsozm&WV%r|09Enq=H}+1Zkr@H+kf*zX$q_)1L2xD59}3| z$tAudxM4bKj@E6%(|Sr*lqIUYmi5JBHCvdsoG-zZuX!%(qt+^@slb34pPYz5%{4L> zbe7t#fua;XJH#>rS2Xb1;aF2N-zQek$N2__W63OMb%0JSmY^R+6A;FV1<{(Q!r!Vu z*{j9|pt*9yt4YF5>O!^N1d(_PYhjp`>eI$nc~1VHNVS)T?<-b|rPDr_9j+&Kiw1GW zQ7b%yKUY=V_BFsDnv%e=U9~PhZ|rVNE7sNL=if6(o9N*fdaO<7dl((9^u==9-Eka zV%ktqfkf5*eVmA;Rvquz_jxzKEJ6A%-=;Q$O|VIc5OvDhS{j`3PQ}io+G7r}FPwo` zG@0G4c_{=Nsjw+N075HLX@CAah3TtqdrkxO{rdh7;BdHGQ-1z;tIhAxJil53yo9?? zo!B}+*5{cxNmzP(@?%{;Pc51$3+jE}% z5mWFvui6r@tOCxGCb7!I!1ON+gD78oPechK;@z(2L&vn@E z?)g=TrdLqZBz+Wk<4N?xHjMsVbRoaGvfR!dgqv-61y%ekIITk5Knp*1?sxIx_iEkt zpZ7Aedw1e%T_ykiL(G3%E?{=HE2NnC+ww@rpm^GC`pKl&(?V>he~$TpX2RdrKef7F z%VM#Bz%b6>l!;F^a?fr3k8uP6C;q#*n#>tzsCN0nR4Tj$mlrZB$c;t?KE~QP1 zl12}3_^$dS>GpPQh~|4ItgLJ`O>1ti-Y;zxm8igs#$@F3+TdA>f7UdXn2_Zgr`m?H zng^QR#cku1d$t-#D?4DBTs8!cGNOEMBSap9#bC+3ro^lb6TWI89R73gR}*^0mWs3- zqf14Vf~VLr4bE)wN{#5XYr+o{CVA^=O(|vBsP=&xa*C}*Q)7R#bMZh8QW7RB>lmh!h6wy`I_&n#MMl}Yxb4C9`WH! zfI%5vvixP};`z(TR&#EvBWVqhUhw*-z z%V0L(4_*4)+Irl$6E80eFjO}X-=4d+zUwEpX*{C&GA7h!8&@d) zDg3N5pD_MO6Tl{oDX6-|`ofQLAE|a}t4%FrZV=n6q71rj7Jq7MzTI+4!4j6WtueP#9enJ&=6Z|U6OM|4^=nJEWocfsp3UlRQ{ zh7Z7qBG1{D!m;V0nVA_Uf~;e&yql+If?U8vr33S1xcZy2j|e?dYi5+VlZn6A%#Zy! zNGTKAnVCfrEL%?Pk98{Uezr1LX_-}eBdKs zBiB01Wf?#YIRDH2m1iH($!VkDIo#-*fb5G(v(iZjoOcsL8&EFS}{<4`gP?XXw{Og%)aoXi5+D>xJrU@&tl!#`RLHZ~0_eQgNLVKDKW zdA-PU$3fThU2EneFt?S~t1p5;Swi-1s#8AlR0p>IKuzD04aY964lH4d0A~cwNNIor zG|??B$PQBK@X`V$KfHJ$S@Yro`0sZUFcWt4xwy=2m&`+J1)})g-r)AQuyGjX#>_Zm_W~%zppj7Wz!nqQ2I8j)VTj<2)y?&zFElai2v*@1oebESz)$Qf-Tnfpb4 zHPIH(BV`*C^8o3dv^w|k&*~}^7EYz(O-+BBpuO>^qHV*>5REjaOF@f1gU<)F3{tE! z+09EE$DJ;GH1~uvf3EB!dCv6~d>}ym-*6sBLZ>B_Pi}5^gHc!6_7*`Pt{+E9Tu4^P zLEfHIM=JkTN}8p2p@=eRn_GbCa)mun%MFi1ecZUv4oA~DyYYPrg*H)D%8M$7=AxM% zrAAF>UY(-m{1JTMwtn~jLT$`0~tjJM$G}+n;VJD`%km^95S{5peY&VdmZ~BrI6tkXL&vE%T0I?lk24i%>3Xj>D>g^ATr(<@Ql^K z>-{Ko>EB0jMbj>)Tc}Z-;$V^`I!R#bTloDc_lir;;&y4}-n5QxBit5i_c8-bEnNc7 zPg^2yJ0-e$czBQl)7G!Nj=uElDc029+fv4VlOq?S@iLSbY=F&)JaYE zp^(N61M21~`!j^<`{IyzSD=6VLzab*qaaf=ys7vqoX?kyBi^oGQ0a8KIAnt)G-yh zf7&vwz`(nM#97XtGu2arFV?82`}-6rEGPsKf|zb#`FRfcOp8OG0%gYGmd%d>bh2kU zrO}%0KO|C5#|C?6Z})n^+By+++5qHJ6|3<10rOF{aS|Kowa2(nonB01wB z$2i~6bq8uw87@E)*cb&={w43fJ11C*zV_#KvKebVpmm1syNU5q#kB3`^;UI(f7>+? zc?$(+jx8o4JV@LmImKs-Gikfkk2IZPP?!Dkb--y-udXV>tNM72ol=C!FdU+GJsEoG zx?46x(l&#J#Vi&AC3t=Dsio;=wt!{rAZ%$%ntnk|G6j%4AQQ)DGO8J5H%Jw5YY$8tL#zjIh(q1sL~q3N`M8!mOs6%VkNp_+{*GiGn9|^bA4R%E`6B)?f7zsikL|GU-&D zq&Tjs?BdixshQ0mJNE$p9{!NbP3p5re?rkqv*Y+Kw_bkx^pqds`A8*85(ANidC}rse8FjEZHI~IFmI7u=z|i-A-ii?@<%uhA=$V+ zFRU_E8iqQ()38c%GOFHW+dhzTwnQg?SR^Jf||akkC& z15Y9D?C9!9eFL1Kk53iEl?m8?*<}JVk_L`9d%2G@}+e2CGw_Tu#rhaad8j%aJb1M$N9f~l$0s)0CDN` zmBsYrL45=bfTM1Lw*qfa8aIs}ZdjJ|=xT1?)3O#eHnXqM{c%z7YC%=9Fp(QpzlLYr zC@n7^t92cbgHP3Ja%vAsql=5h9-EmJS69nC(E3?YQi1YplMkC+pInL9eCja2KMnt$2#`|%KVUJ4{KCguco{b#yUB18z>pG^pkrQLAz(i0HE zyo*5nvFVk7Ov{|a*7s>uOV+&i!2Pc&s-HME?w*@(Y+yA(YKPZ71|DP2J$Rhz5f>uO z|A9Fn-%Z@|_J0fNnR@NeK*JXyOUs6rQzgKeH>7izh;3@BZRzLF7z1QR2EDwxI`-Gl z&{;oU{_@`L@yETo$Tg|Pudeh@($X(77`qkY8;7rN>?~?0Bw{v+Mr1z882Z}Xp>Y`j zxHwZeH+y?W+j2wz3JR}K_FkbaO9CuPX-9wz+*-I(Z3jb<+9WH&fm9<9CTmU{Wu! z_pvF;hf8m9&C!9YyuDeEd4Nyjx&IyHNMJIBkMK!YU2tT>fASM5y=wg-&ZvLJ9YYs(vVX=q^@a30jJq10_5P=H9zyB$#xIVPa9dla9M8H1}|b}@(Ov0a4|^F zT|Fi;LJlQ^!g8O~7!fB;D>i3D8HYu>P@TDW-Sbz-c^(wN3$c9Dcqv$W_FD|s8L{(8vzt%+P_vQQ|8sCo$ev72pz=VM0u6N&ld~T%d zn4gMgy@MFXamduEvQmkrI%2`MhDN59^Vq+}%s(LNCe? zATReOo!z?=t^xxjM)kH?YO2Q8Eg-K~-yn-{%t7mzMMoGh5#<}Lj#s#N02#tc2 zmba&rv7x((_M=>z^g8-r+hIWkOu;w;K?(hR(te0M2(57V_SSNcf%{=ypgl~Bwtryx zW|)?oXvYv?(zUVH1+?alZKeko{J=-K7g)muAy!d zE3CgPiA4DOWGy9xPFm5yik^>tmo8?pSb`$ z9HOV1xL?2Rr@GIktBG%1wBPl0?d-)Wet^1-iVzoh`Y>J#Wn(zu4~)?t@z)n?emuLZ zVB@y$r#UIr<(M|yo|eQ=T@cBcSxAiZh!5=~>Be6!khHE>!X15=L1{uW0~EIfo!Jj& z8rw6Ug*^CuUNfsViYDtJxwz{@ZvG`u|F+}RoB`E&23Up{4JzH=F5;d?NV z&(_NUs#FX)gima21$gkh$&N7E7o#pW5Odzpm$_zn4Aegq%y>hK5 G5&s{RN-(Pc diff --git a/icons/mob/inhands/antag/balloons_lefthand.dmi b/icons/mob/inhands/antag/balloons_lefthand.dmi index 06f68a1cb16bf0c52413b4eada43c5e7c4e2895a..1e1171822c21f934f0ab5fbde1b7f7067e198988 100644 GIT binary patch delta 847 zcmZ3+{*`^g=6YrwPZ!6KiaBrR`sUqs;Au^Fi~B88I?Xa*zRLmgl=< z%GtMfW@WtI6PI2R_rCVcUA|>zy3%IoL{FFPmTBCZp;sMSzv$X`f#}11+w`o( zESahV)fqfJ=P=|ij?jEsbwi?ZOX8a8!&ER%=^`EcR*14k zy@`18;a%(gr2l$JeUs;}k2T-7;o`N_<4W!c`daEuZ+0B*R0wBuV_)?(&Sl=(S9y%x zI`{rQxb0A&!C)c6Aj8GL$6C+O&eY({IA=rEZ#AX!Td!4jU*F==!B9Qxq3n#Fhmr>v zU!RmdU(fY@=7D~*$J%E(($sRaW;|(eh8qCUe_$cQg8&Aoxz~R)y*iv)JTJ2D-c?($ z2kvrjKMxdh-8c80S$5st7%$DG8Lu{ZFF3oqe(K>Q`Rc;`#xI^8|5LvFc>i^f^HcN> ztz-1-f3G-=>D^jTsCLACP!gE4p?YIGTmIa0kWjhUeL?ZSCQ!I3RS8O*!bS}^`_*B z%8SGc`(MqgdlM7hW|SLSrc=c7uv^{ul48bw*25{)V^;q z%a$t^nwAPgAKWTkD)XbP0l+XkK DMPPX7 delta 767 zcmey$zKngs=6a^Po-U3d6?5L+b%r9AA37a(NPmfs~cYKy! z*Md#9)7b*&kjkkWv^q_M}lkIm; zDayTjsq)>$6B}Lh&1Ok!pKAU4mdiON`uSWpzQb`_Y(+RuK z;y;cHrJHnX%HI6`{J$*w^`6To5^r>;F&9X*`7K))S^Td&c=5J#8zU>F^A2x*f2uTl z!NjGR_B(iZ`WQJts2)NwHq6YJ-Z;xL?Ed7PjA8N-5)H-|*%loAw|<*?|GOVq%*+fB z@WA8odWrY%YdUN1pIr@dV6MKDoy4Z|_v`-7S@YwEVx-HGb?1HyTzNM4)WVIum9y+6 zzx=EEd-L?|$EEi&pKN&3dh+nX>DK@MMe&7z17dZ3+=sab9{BVzOmE*3JsA=@tK(+O zXYzW!eJ5DYtJa^I51y{o3&@>YE@c_@ZP8DLD}OedKQ{&jcf_|QX~$L9%9T$9ZDDtI zsjz3*lg!YBgc8(lr7HBd_q$Zv#I!J42cjW$eOP|~d92sYZFw(kzGpm%SS0=|o4x+#JU=B(+YnGB0-eco;9E%$ zIHE%JbFQW9uPwhV>X*6|in>kWXW1JL|2Mk5;_5$lHXj#v| WktF$(NlJSP$k(2(elF{r5}E+-!f_A) diff --git a/icons/mob/inhands/antag/balloons_righthand.dmi b/icons/mob/inhands/antag/balloons_righthand.dmi index e417c1cfed879313011c436c702be1a02711a8a5..3d026d516d05ba9b180ddb2c16a7504ebe3571b4 100644 GIT binary patch delta 854 zcmaFI{+E5imU|9x~4bUBn)OPDJ zpPb0>#Dk$og~3v&L8hM5p^qivz?pkVJ^kCyUG#eUG&_vp$|7%t`1ARleGH-tY89hW z&YxqcvdcJs$6Gc!K*ZsWy%f_4WHUfUD7Z6CP-X-P^C-3m%=bI`GvW8w4Y%hzPXBPN z^-lk_H-iwcyIt;rD?@$r+4nY-`)rm^uw7AR?l?7n!Rtf z|7^Sd&kYO3FRw*UW47pO3rniy=u6;_7;svppJEFTCTiTl|$V z4ax6Y><;u)uT19NV#i=fz}E@(YHM5Mq^D0xnLp36zIA`?e4ApqhfhJ?nfK=8*@d5< zpOrgi*uq!81RNr>-gGjw7v8BiyV?uozkIy(`G2{--Lmg)fknFBOlCOwkm-ZxO-oQ3 zTCDnei|VI^>st8!rs}PV`I#zk#R@)q2Gf!Bo*dT)%x$tzu b>2S{8OJVoipT1Fv3_#%N>gTe~DWM4f8DW_9 delta 839 zcmey%{*HaZmU>lB7srr_IdA8B=RGzMaJeaT-R^kG?B>)7!Yn%vuoQ31Den7d<#zs* z*BX9Tvo#SpORaFA08ajp^_BW}|X2y(xJ&ZM-YN8%-to(+ex3W$Z|~Zlbj&T1 zY`EA_c&759k-?&U6J7_d{QGGAeQ8-c`|YAXnq6uYuP+Y!{YaqTjO4izUXUpong6>w zBdvPQ&sv&%|9t&w7sXfHJLPz9`3gH;-<`+5CChxi=jNHVyMF(ky7lgy4*e%lS2C_A zD_C+dAftLqt^-`}{^h0hZ@+fY>+R#$ISc{5(;e#O-52`GAiChLfNtXaxtu*U7v}90 zmyZtMY1mP3!ZKko15PwK*z4q*trqfc{%yKF-x1`+b?&Rb<$Qa!|KFZ9buZ@mo`;6X z!?O$epJ&!TZr`rGYPTRbTrSS@?zNi-37B>6Ys+dmRh}qcBi{v7pU<`28V(> zBTl5gyk)O%6lboqdFrCt8^v{v^|kgli{&1I{q6Gm(Y=G|e9MEqWWRZUy&d(o^3nr7 zuoKsQJ3Zsf-}>wuW!87D3WI#$_12joZ8y(_yPNid`C@OKy`Q{W*Rt!sQG8(Jk5qvp zWiM4hY2)GoTYmMlUA!e=&Z@h2WUC%6Zc%Gm*0VLcwt;uuP3|aphc%1PBWcZpgnYL7 z7k@D*PniFFyNj&@YlgW)%Qbe1LVde!4zHOfELLogVa18&{68pieQj=7TOtDxc)I$z JtaD0e0ssKhi*Nt{ diff --git a/icons/obj/items_and_weapons.dmi b/icons/obj/items_and_weapons.dmi index 43a6a127cedb5f12731f44dec0f8ae7137ecd882..2787cfd8e01224d406af2db99a7183213499e649 100644 GIT binary patch literal 119323 zcmY&;Wmpto(=Hv-EnOl40!nw6q=?wR|ZiGHuCOz@26843yt!8;X&4=5;T9smAtu#m50^Y)yfpy1&8 ze>Ct^u=e=mZtv=8@8XPt;+s`xq~Sp;N+`JumJ{?yF->%2!O0RVpRj~mLqN+u`(aTV;F8?(t7x|=-r0Wpc?YDI~ zy(OXulD*O|=7QuVhyF=X>(H=+5MvXN-gQJ+uOvZ^itpFRdz_cjbc8ia`<5;eakE(J zk{BssQSI$9_MVHLOJRx;E?#L)_?0IE#@qL6Be80zh6{9g^KY9c{^Bp?kAV37W7YM( z44&4liz@y|AFXW9Vr8j|eg14XH?G#udACT;v6x}4wEx=u`VO{I>G7@(AB!TkvitqF z{5?O$%$=EWnY<%G{7aJ?_QiJbMO(LFFWD!I)orAD(Mw`rWNTuCKmHMg~&Y5f5BX%14_y z@(Nkpk4VHTZTA&4#}}@e9dtH?lF`xUrzjwbwZ8bAhRv=^ro4A`7FXD2a97f^f5D@^ z-LQC3k(vp!O=aqURe4<4{=W2(6k{L36|su+_ph-so?%i6Co{T#(J_QRUQwiasGSfZ zXIDs%RiOQYow$)PqcG<$Yv0!_mTt4gyAk3K@+*)JKUH*&1Dl+qN?0o%3SJT+N*l+Y z^F8Mcp~cYakgTGy9A^0__^^^5)+Z~k!WL%I~-xOx{v!)%L+m9jXQLS$NB+;VRiE)(D& zaDrtzUZZf6YPl!CcoJpY9nhunJVl|!kDW?Ybijs}GRyl8d!_=-o&;yxZ z1Q!*WpEL`vy)?Af_$(!Bu6P=QgUWA3rwPNi;8cgQ(-kx&9j z%lw_lNo6e+tw23FOMW%Lv?GqS!dH(-)(jheDw#QT?ZqrEz;A zr&$=Ey=vbq>a0vEAZ}#hBh#V4*u2-nz62*hrySQWu02C@A}6j!fmYwwNfJwx5vtR4 z?=g2|6wEc+C{4oXHICZ6iOZ-l=$I%9=D6ll-NG^QNmuhFc=hAQ_xj|IZrixtF;n&P zF+%Uuk0}DN*XBiMWygrE^60H*FhW<;OL*TEOa`-`g>k)|GaPL&Yy&LN1#*Q_G|ss- zh8CDNcB4x#wv>GBC_lF7S*$<3u3?)`xj%7lS$TSng*ew_`m?!1pN(N-yJ;RYyMFy1 zyWV~rGnq^$jl()R#8=xAL5^mWW-_qAheK}R`nr_seE~}7(O#J8s$u)5@8;f{%bK4v z2r=Tn5t99QmB5fp4Uhc_Z}4ejU~f|St3T>qz8*2r6kuWDncNM8E*2Mta4KTRE&}T* zn4ZZd_jZv3p2;7fu}}f15DR~lk77f{8Ap=bo@2x>6YgR)mV?p7Z{lps*&ES>!p3Pn z@Vu-}S9VS-?H{iRK0SM`OyyYBANP0o#9H&+FH91~MT%~p)W#freU^3arnS_MvLwuW z^3#8rajTnbRNh?^cc_r_^WVik+k<89&mzmf!Bvnyg6^FAQ{{_L-jnDufkVxDw8)L0 z(bBD)j|~&+_`kG`?;-> zp?nU#d;wUO`g;aFMIN*2gQ92(3R);}BJrEI+aXr*<7e@!izCk7!YzX%fkG|0MZ2=q zEj6IU#qkk|+nO_2pa3(5#)hX@Ch-09Z{NPv?!LAa+|$f?QIRDc9WO23m0_EsHQ=TG zve2;zeFAfUA1+a2A%HUH60Cuj84o&Het2?Na!iNO5Wvs^pn_d4!7b3-Y})om)0St( zP_IHqTYSDHFbVaE7W9d|yprPfFi#$4#^$M$KnnNx)_SWYW*VZCC zCjHP*sI&2nZK!k1PSbIpsMTLrLTXMFk8K~rjG6iFT)`&TTVf4hkz<1e=I`u4!OZx_ zJg9{SaDPz0raS2OKomV}a{G3%DYYLPhaFsB8_deLl)L??<^6zXNVR+`&6)>wuzk>f zMVg?5Mprz4llAS{Sn*#Jna1uFy)%1H@jBf-qkwm6;op+r^P|aVV9F2APjCS zE=qbY9{dFDNm+lseOr`TAv4VmaJUScXUhs)NM+pEcCZKHLoNP2I1Jy!vw#OzpI)2= zS1$twnitv;)X_}fn>y(T7F7Ee9TQ9?%_EV|%31S+@~y*DDX)C?tC8>fcn4JFRP}6=wYU9SD%JW}r^bD==GXxr`$_;0TKR-Ne9!M8=(M2SZ>i)Z*WR z1MJ2{4w%&N_-+kh)d2qCRTYHbCshQV*atsT3?w{5I2oX1B8 z)>9ditBzM|IJ}zF0fVXL$&g%=TSVjPG|732Ol`Qp>aAoVzQ7ku5kgqqE(+bl;QT$A zi~x*yQ)755KPwP(Zo8kEG1U1qB)LtKG-3`Xy?FJ6mo1lk&4sdE4 zqH5qQa?-JelhKX<>TrLP_Rku{L6BTR#~kQD2vCu5aCr0MA($zdjQgah5)g|MUXHGz%dZKXiaUDflllz@ndc~pPT7@ zC^M^s#OM!*s*XO>Qxd2N)_L@MyTKmz#_K^?9?0#7NP!P6{`WNAy@SoBGC#+&ETb{) zBGfD>!V4L5Zb&}i76%t7kgr<@t8T>#$A719H4!d)&Q$WB;JBXj7NEc{>KH^0r(LZU z9PImY0NFrl8l*{l?tNB$MA9ug%!JtM%#qsLWz0xxIHV=q29eIs7-chFZ*zq&!lXXD z2R`<&F``X31e-tuPB^ER0f$2%qQ!^Y;~VThm2jS`L0;o8ReA-lP`n|Vw4>hu_*bj0 z!|x{xOligfd=^=LS6_~@{6^uui(r3KmaZKb{Ly$ABIb$H5(~_IxvIFGhoce!O($A6|4?CY z4e@6HRA?Vsg=Pxuoi4eZSM`SQeY`qZ656ka8VQ?Ik|>4hzzy$!^FLw2ZFzL_dM0@z2cW3BE01w2KUZn0|^^F$tlGR=p`EvQG zL1FiHNoeO)=t1dxxoOl3SlrKeN$BuUM(AvsmkIKtaZ69!X@Knp>HnM@djKM4=BfM# zKw~I}62bO#$IxnOEMJ4YV1-HT2c z8BedSXg8JtP_Z?U(u&y>J(JbDzq9~qh0u5BU(RkUhmMpxZD6wpJD%Q0VFo6m0Kt~#*xnf==9BVgg0cR1W@n6wQK7RZonypD2>KOSD)xTL@} z54Xqw=h5fWx%DQ2d9pwsM@av@*U>%%VS>WP&yU);8O0Clk8wetkZhr4*9sh^kj@$u zKdOK8`AVkQ*2e-trD$bs{Xtv1S3fF7)Nj+Fq@=_E>`YIkkvmq0SK(Zb0fBAFz8zdh z1fSNm?g?hVcXxL`=;(Amo-qh2%59|pYM@1$*_=S{?r{;*$uYXf=W5eW%sf ztef~M+2MD!J;%h)o;_0l0;O7f&Qkfda)FWfP1FF-#!LgOe;}a?zc>0*^uL2>ZYj15SZ|Cp}hOx6t_Ya6=qyt|)WKQ~Ph$ z8Hq@3-nn{gHz2KPTy;h{4ZeK^&a~11zJLkxgO3%cW2kuN7<|`JC&6H?P{Bv(QAEow zm&g3XMS%E=k^7RPY|gah`6AqITk&rG8+t;43J@4iB@+xBF4 zJO5do0)pzcd%>Ew&4i!lENy{cz4H$bwYcMq6}Js%qCqGk$k=Peo^y7tg-g9`qa=c&x)t!Q(*UUprjactPGKu|nIGX42 zLc-zU=c(!G;*yeYbQ7U)6{v%aRL4*Xmtm880g6G3x06Q>O9{G=aY*+piZMs0U)w#7 zsiSp@cZusX2=G)zms)ua(SJ-H(wc=wx6!IHdg6YcIV$Cr|B88$OBvS& z4jMm@Ka+yti_8x`@zV6YZ$sKFadF3I0|<1Rs6H!OmP5W9a%R~CBJ8d`*sDQ$phPv& z>v55#9x2soT>AL=?PEPTOC(f6~qugm5#U&&2WzC=1UWEpo;BU7NN!A~Wi4O&P^8XFE zjwr<7=1rBbgyE}N_HIcYg}^Nei~OI5Y(!%IqVjrrHZq}J8>2%*R!8gr{?At(FVkF{ z1d8?=nwyu%Vfbl`YX8izW*>S5)nb{Qk9kp=cOKnmbg&g^HB#vb~JaraqHzef!2)4}==ZgrXwvY+itO zgA9>7GP+1qx*xP11wJZ`ymtFa(MH}`kpoeIdEdYf%S@W48VFl_gc~qI0gs3JBxf<4 z9g2#IOQpeQ+?1xKq(5gik#&WnA5AD#I=R^devlGqGa|ZjOpt(#t;+E6^A}*HV{f9&{4#1g*vi=bK;E1D8w}dUI)t$ zGk9*yPO^!p_%;Y}cg9Qm#d~jEgGv5DlHzm`_Mw+n&Rxdo;_ATA5WYlxfVXhFmpyBr$G#-7@W1wqEu*D_+CHfY8DTTKUfVSUY$Et%)f~IKeVzkB<(b=c{Ho z%#PA9G(Ti*&QF`R*8-k5kEEu9#^2OApNM6(9S;(v5Vc&&?@$f2lx-QM23qPoTz<-0 zTbR3XQBZnFYDEk>2Qwd8K0MhfA=}_Je%gn84J}_`f3u7z%qH+@_q`EY?aIhPUl3+aKRIhxqs-Iz+300K|=${``gjfvA1Oq4q1l^Y@Qm=+Q zedS*baB*w$ernD4`{|v zrah1~j+|iAH{R#{vhcZ)yN?v7jp}X*Qy<&^3lZHNiz@<|8Z_Kwr}eJ;ZQya9fcC|j zPDAGUi}SLdW0H~J@>5uyc<@@Q9}6#Ud}3l^hm)kc|J~E*=?0@y$MZZGf=UV%Yl2RS z+1t+ZB%@bw-b8-hd6mVc&y&O?s-8gKNU;=C=;p~kJSHpER5cJ!eX%d zBK>P3sEe+R6|9n3Is<-){3Lr*WpX9dLHR+LCI5f(G)}O0ZSZ5La8P8!EzvSpP%{R) zNy|F&RQmJ6HKQEqP+91jUp4d@u6rV@?A>UoL(|?A^S^#a%nLfpy37pr-bNhTN`IOy z(cRwJdF!$!FFKJY6;u8NK?pCrfqAr2Z%!l(0H6 z$ijno(7k6Q5hH^qLK*?n;%PbN3)f%w!V%bTpdpgHBKGt1LuqVtrW0|+!8X(APS{0Z zp7l}ULeu7|D{+Db?&f^2T_i8v%?;TUhZzN+eS|J22mWk-+)4%vuOSS! z=b;C2WB{NB9YUGqs!##f%yI+n^r8J$KoV?Qe#E8Lfn}on_ z65k>ECrIr~Ox{q<%!~oqb7B2j)7A1f5;NQA+|tO81HaG*oF+su+Sjf~-mb;SUn-2u zgxf8#W@{FS6#eefUw-&ZIB)7t$Ml}8jL7F^`)IZCsRfXfnb3)BiMdJ5_kQGAE`+-s zo7B8@&Ex?`cU{X1Tv+9`HZ#>gGnv6Dv`S=yh;8F&;@ur=P)s7Ea3}wR`Pz+3 zBwWv|WvJ(7Pk9iO^*n_C@J5Qr#5&y&qykO&I*Rl*IICO?I(rwF!KJXUU zuvA=z{5Gr|E?6C6JH`qo^BW$yTZHTnjvuuKT|Nwgy2KLOunn->u2E>;J_AuhAG(+L zyek$5;*}XK?unyNa^c?(wB&|dF2FWl0cL&-*ryD(4|e1)_lA=pGVOnoT($!PwpoAh zz5}xEeu{@dfm;m44G*IjRp|d*BQoCo1l9kn$fi4H8gD?``Xt}27%=51NiZ9mrf8#8__F@>sG&m)S@MzJ zn2)su!8c5Q20_w*40z;lgN_s&R;}5-0j<)Ox(YOemhPz~0fO6)Z;(73DRv=4uL`87 z`f;2uGr+WKF+u(;LN4#UjGJ54!1%Zp4axgg9};ZlQMky9`+h6N%oHgq4kaBvbke%C zGIy|dR?jQu*$L9kkva!!qm{ky=|Fy_XR1IAqII1FW_gLh#L2~#R8f9+8}^qp>-a&% z%S*7JprBe`KJROGcZP@y^A|?yQrER0v~<`;rDBNkcRCK6@to{8yheF;FKMkoAuM?$ zPr1o#l(L#w-|5A%{+gL99<8@NV8ljX;{Ey*klFnR<>r=tmWp>ikignI)?~`T$thQe zA^voyT#U_`l1m3GUc(Dqy&b32cpNZOrX^vP{zfi$jmAaF5Eh75CT@q|+=tR9=Q8aO zyJ>}!5H-U!7jeY*ysfuOSh%)W_$=>SJL~3E2lZfs31H8I52KKlI*gy>Csj}VY^#`j z^Fav5gz0=`_4t6pT;;^m>!ZNCjVQ~ma9nLh9YaI=K*!P*%7mqh!6f#{0KcTFY_1P! z#X3bsoHpF)^$nu2%~lu(R5H0Wfx)>8_-Bwm7V~@8+N{douJF9E_N2e1zIwz=#jVr^ z3adwQ&~9jb;=VqqjD0R;V&!%6IiO-lYb_AjF|G^((yU6i*P+9_L;>3dRhAJ2*m|bG z7Vmd48%_An|#j{9jp##iZ`R#bACB3*W20K&*hS@nP z(C|36$KK{+E}|-^yA(b%Mx@A_ZCCMJIT7$ERr5+&D6}72ZkN8aQ(E?JJRE!P_8UK>Xzk%+9lv6Xn+P4UACJ?_=99&d zFav1?N;*q86J7HNn}M(!HiUAY2b@16G6QuSU2l>wg!c<~jtHlukkd=5B7l#tjn8r< zkq{c#cTU18bBA$juR(_QZ(d_?p)@@q;S)7X$d0rZsLMKQ?gjHHP zH#QbuGgnH(-=BsjjkaMv?)=#bk1$W#@GWS*_XyNJcD~U~{l*;SXdblJ6HOLNEBqZ5 z9qW824Ul;1x_)io^L4GcF8LP1yS;;W1f-(e?OfWUFxS$jvKeQ(B(H^rhBl_zt43;2 zttTLJ7n$od4)Z)pscDx*RR{lqQ92@=bLGW65$s~wq!j9CAXO$I9I@6d{;4mvQh8F) zVa`tP22DQfE|P4+VB27_8Hc^|X*mtW2hAak$Fx~57>>O9r|<^|g25YMXa8;@I9K@N zOpse*R;|!gvuG3uGR$(j$;pYpY2)#zvQ>QR)zv+l6!~or0x5rCF!@?DTP&h~t02Hz z2#GJ9d7|gOtBsG6ZD#S~IxIvhG_|Sz61L~{SuV09Zi=SsXr{O94i&5r**&8#7-iuKCSJZ`N5d;V84T zCXr^ou(u7{Zku-0K_Ks{qb7VPZ^b7BEe(%WkXnve!lvi`1OupFG4sk(f`MocU!+LZ z8+joZc#-Zmfam775N#{G4gK+qwgW$yvqaoj&a)1jmN!Lp<@Hiw^IgfQ$>&>)h@TD> zO_2u;T6>{*Jm#0XqvRA6RsEk~b#DM^fc&dN%YdB}{YcZ@f;2NUyIOStTp^8+6nF{T zYEU?p>pAb?+nkQL__wcVswBGbZyEq{HhZTVXPjqnTiY(wu+X3XOwCu( zz*u){DZbk!cW$6<=tu9;$3DLHCt&~tf%I|00kIKw`vC)kgBufh@}7q?9InPr8iG9Y z)JwGocK7#4jqx*;iR%~N)22PgG(hQP%RR5ze6J6(370^?FX_ZQzqSWGxbIIehjg3; zJ>2XZmVyZV1Lt4zga}*Hndie9q=6=bpdpt!m_?6w{?n&plAGKW_Kl=9@#v{b2TG)m z?`DgWEP~5YAXc+1pc!zS-bXor57VPv1*|h~b2jlt z7$|<9&GOtlZsAae;a;IIBBIWu8kX+|HDbO6ZY`dzwonyKQ%^_Fy%ykZ$HjSZ!~E%NHia(X2US=L@{wP!zrXiK!h77XH89A(dKjcBD~l?J(-+Uk zcOjJ~~6}FoxJI)c_5knQ< zPfIh;l4uA_L#FF!t~9{JZzttT##(n25xVOWY!AKN#T<$G6t!7T&mYm6)6D!i4&U32 zk|OyNr!@6tw@GacNodb)(4$YbD?gZ8fd)=B#g>nu+$>E2JMSh!eN&_4d&@1a2&r%q z{b<%d5w%6TRN6Frxb;AzaHnbaqH9u>@iptMxHDG#O?7^CD6+cV96uy#)dwmRX{K9g zxo(M`>~_dHRQJbH=eJ$-(W0%d`alR)r0gbsb(|slU(1o7Z|je@ls54Dhk3z{{;L;Kw(-k9hf9f|~luw2Oe5hgR-3yijrd)2jdAy9(KAnN`i zQ^@Jr%I>xQB!+LeUxCHoYp_@|1|aBq_8)M`-a0K-vmI9J1A@Ggpm?Li>&)_z|Deo> z6AW&bkY8!&qPXxYPvuR?ZH6&lx8DD3Ka;<^2-@-`oSvIL5tH{szmWH2qSGqe814a=(6A|tyDJg--sP~9tEEQjQzMVOl`{vBZJV#~w zMqupP3^|f(^>+TJeTt{#@QAgny44xuB=gEtp7(vcH^(eEEA+UM!7@R^Cc0O@U6|~~ zr<2GcV=VM26rsm5PLsABqa#>fsQR=yDh#o@IbOUvUL-U1kBN!lE+!McX%~vnZ3Ew{ zU}u19Wf3KY{l38tCy$utjX_i;ei96|0t9Kp1QYMEHm)C!NElifHd5+T%PbXWOs|YU(^1M z1mfzr+??`zleAsRFKc8BvU^@-xvcc%Z$*X8)Sq`B_4R99AX0s?)ad5#a1}gu=F8UR zk@FY${JFvO<%v?ThM=IJNH}`@JbI`M!5cGP24>3c zKet47s!NnLXJ)Ws76KA>wafJc2KhxA2ykV)sR{GlO~$`|T$23!w84+xey(i~lcw2^ zC@GkNQc2y}YD#}#;|4!0;+CmH70j=cQi7-{o1pMoRSRA zF#+xRDe~giU_FvMm1>VY&2oK^ndMTgy#<>AZ%}3Pt^QsKwx+}S5vIw#UNGgTSVv<4 zEzD}tY8}Xx&$`Db)y*Ds3_BDxd5XvKhb>ECOAngCE1P?L8c} zwSx6XmdNlssTvk_A*E`rjT>Xf$pF(p`G6347af6I`5mvqYm|noCipctGc(Zq4Hb`3 z?Y?HsEgpo}ih8CEuGRcqdhE-CkIu=p`QD;0vdt4J6pW*Qme#oM41KjG>RV2f1)_eZ zpwIvFCp>F~u9bnex3?GNOZ1z67=&_veHJypg$bhCDsVz(4?8Ps*!_JZ3FG16p{&eB z)us(7%@LNI?Lr|N1XYe_nDxItWK)WL-uWLso-JNCsx?B6-2G_b^=~=+GQBj_5Q%3B z^kMYg3hHQ&sX&7PVJRt~VNhA1DbRZ72{TJZQe^+u{Aq`PJkL zeXvG!rRaWJy{Y&g4{f07$}k}L?6*Tyz3ljGMzL4Zepvyk86Ukndn>Ys-~KLsYQEm_ z#l&k?H`S_V`T=hj;8~a^WtTzuqCL-=NN;C&vy8{~!mD@wqpt2`UJ&+DgNs(%uwrJc zXRBE!Y%e#yd!vJ^b!L8+wRP zQ%xRwzre`VWPu3E3fUvlRwMyJ&cq7_dGC0AhlYOt?(*@1{Wip22wKpnjrsGjeMmUz zRd+shI$gE;d4!8mK=8(j{Q>q5-=@}D4UwKlpuefyxSj2w zjkN9wP0fyt+aW>%Q+`=lERv|9OsX-BG~@6jOel*n-Sy^;TwN5epCvph&M5My9yw#_BCg&^Ri_fTs1eJvb7smTvXeb8<)Uk9@p&2?C zrs9IW=jO=u#)843<3Rd0rvt_jIol=vO++8du2-C|;cuQ6LnwM(GsdNpl4mzDD*e!7VD|_(ybx55hZbg~>z3MIx{c7Qm3(Ie{ zN|JnHpMxnjrp`f`pEoYa8y&u#_n**xel9#Yghy%qfffGtYPs+~EWWvyN}h#*dd^Z8 znb(TqXiFVJ%(D}R#tArDh zV7d-kr$Lv7^l4XfWA{nvhPOt>2t5xe(TyL$`snQrAJBx;W%n1r2@3T{bwoCph*l_e zTpF>`BlzyMRXswt<>od++_GcRMXZkX><@_C_N1Cm)Bo@wBlXMPN=4(c&3VuLN$Odc z-u2UA4}WCEKUcsUSVRo3d5(QU>Iy_r$hR46Jv4%K6u8Y~XWxFiZ1y?|RcLM+=P;H) z-uUk08_Iet5mHv=@8s*WZ@WfPCa8B9|81>=xLBcZwLjBGHUtnlq0dgeR&Ys_4gWg1 zfEFW*GnWz)&5$@tTBle*o6YmYe0Uzm@xOVr=-Jbm+V{DcS&zoDtSf)W{1D=HgJ-$E zW>&D{+de*ngaHz#FjrI4(>Zh(c1JVW3$=2`LQv8F)n>~3hO+Aq3hcWH>DSuKp14Ap z+TBqx6uHuP9Xs6>JCC=J_yxNw=4$nE#!c}-Q!^2D)u)QgpjAUw22p+0r>9k6^f%`F ztRJAkRW0}-(geLXa3)KMcf3ZmDkjy|=rMZjhewZ7yjNfP0N3@KG3(?~u{CXq0kOc~ z(i8}WGeYhwOQqLLjS@K}I6YXGbUL75QK!5GwRU zAF1>SCF;u4sRz%WD4i6dC#$2wC_inv{JB?OxeoDivDTgp+1gqnv7=g_ZAYaCwCi)W zrs3V-TVx~}qG(C#fg8St?r2S4`9yK|eOxMOszVnku_*VvLMMh< zF@y=cBF$9UAu2cfY#jO-Av=;O%zG||tYYKk4Qm;-Al*C_o6Qo``Xd&R2$not3bgDO zQU^uP9&XR5{&64G5Y~jv69iJ#c-H##1s$6YIpsxKxqjj#FMn=~VIY5m;)x2ymmbG~tnbt_$OzOT*A&=D58^aa=0WdYAr>y5oeViq-Q_J*XvKjOKS$k0nI5Q7lj^lp^(Fa< zhmVDI2X*?U|L<$$5>)SY8q~sD%5ynXrho4mb9QJ9@}BE(UCPfDBp~++z&}YZo=oGn zFxGAnaCimn$yY2e9C&l3s)T|ag7~QKG0MBgKUyL9AEV?F_?~YIn`jwF?{NLH*Vq;B zTCvddc7!@SDj|0|jdISehR+gRG^}>FU9`8UAf|fQ55$_P3y%|!M&}-bms!H08+g2| zEjsKs3rYWVlO+Nt0W!gOG}(1;n;)o#@oy8?L?(X_B-3hdePgK_KFteud9)>iWJ;tC zj+d)@ET+0W*DwD505ENyP@&JZx-iWz|xEyvpR26%!<{EUnno zeMSBaBd>0N*Wf)mT@l=fvx9GE{vZufoa1>4AAiY-1yS13h!GX%r#+uVGydv&zvC0i zo?YbawDS=HgI^UZ58T$*u>unQY}O;EeyNrJPrkfEP@1sX?)BGXSzyoIol)EsgM3?4T@-U5%K*@sVBFCv4c+ z9>X^35l;wN42Q*xeDJ5vh@`tu)*O4IjXx0Z4XtgTfz505fS*t2Clc!qZ~kbie)~B% zI@1&W#S{%ZoN692U8FT^77=c_fyo;Ud>pr!#M>$W3nRDCg4>B@axgMqt)~HiehV&i zdSwO)&zFrSOZ;9;3-{fO>Xy5xpQu1vECkdSox7hYBm$Ua@W7&@JYT-50WrH0ncrC5 z!Vd+(jCEdapL=fY5F^k0PsJ@`;9`$dt=x_0%YjoQpRv?8!gS9z7pkIc2?Hy(^(R@{ zUtOZSu`o}QajA4f@@uvL3er%Av8NUk5#M#S#nQxN1>_j@ROglD29aU9<@;;uLsOo` zQc~f!11_uxelMKb!kq@Uy;9;jn>3j}wQwGxWXZspx!&8C@zw}_gz`a&&#Mt}yeI-m zupbe(t;s{pU0GaAi?Vv*etF7Ar@Nn{l44uFcZ6)Ys}JRQZ#$_K{@$ZIZ20 zQ1-G=d-iiD5XELEJCC?ENF}RQ4~BW^5Tc_8j1vT(6*O^VNKgtn6AXap|7(=`gSymV zR_9=qy!nw*$=X^^C;r`;9w)dPL`QiM5@6#ZuchB2yQdKNecbH6Rkv+dfkjw{3~!GR zWBow)A>`)EgIKLbQmx*3?kZ28i7(l#pdfkLpVQ@1`;4Cpv_p3kf!El2-vEWDeU(3u z(tt^sL6uzQ+fPahTay`r4g!yFy+N6#vFQ>zSM+WhYGYqM-B7#a3RJrUhfpD4s!Kly z`6Ck7@0x_UbYhFxgld2fXC2=V&01F z&{IjjrNSHti56(P8IS#9FDxQ(aqB@n@C<_Q5=_bKbJP>v0-SseOX1E%I{K2wWT9#D z1hH1)w){F|QnmqtpbQLf+|p$L?!1|ty8h}3;8eMr+-etFj_|;SUX=uW$yq0(n4RK{ ztjSOaIuq0&lf!YcbXmBfP(LQ%z2sU?vr!g|e{qCd+$ys|l3L5#(^ZSJ_!oVHN`K*z zYd&`KHfrvBqnT9mH$kwSG~-#fL9W1E@6fqv`Pro%s@KmkyB3F|y=Q>1xMUaoagf=i zvFCi8)mrUO#>VKV!+RGkir)E$x^?F;UCE1V3+FxxqdSp_)U1&25QistY z?cb0D;pOp*AOcGJ8v36BZ^P*0Qq%7T{&qYnweES@Px=q65hk40eCW8Ujyf*WY`xwf zvC$C8%y!k_y)Q#twN94_2(El*-1)Ir@m-M z>XI2G`CmKu$0d+Ef_h2unZhnP1P-5gvIRsE5@hR#F-gIOF)3C*0B^KI@Q^F2etx2I zIR0V*?q&Nw%b~P9kncH=k<8QGt3vKT0hsYq281H{RJ=>0RcSWg$6)Pp`Cv@BcsV${ z4MH>ApoDL}V|wo7Uc>s78H>MC@mW;`KL6u26z?UjtE}u7`8@&c=st&XsIJ;}*usDs8A1Y^c2Ya6sSzZdYAI?RqWf~OOg=ay1ITKSN(b$AyKZS>fPdbn{_k%7qYyhtd(gxQ_S)@Z z!2Ol|&~Q1$x|QNg%k#5iq7L8nKEm|Pi=~pDg(89%N$^lyw6fdQp=3bI<#i4udaM6@ zH>GAH!#MqZbGd#FPIGzb+>|-Qvznfg(tYTeVS2et9{n=6S|$0!JS8MW50@K>5Q~P{ zB6=Hzwt8Z9UO63)bzTfeoY*pmFwVf3pP!fS|L)zd8gS+{*yj8Ox$&WYgVMeRDdK+T zi1lvi(qVg2nXy1Vicl6gS)Hr4pMJ^pi7YfnGQfROk;-ko1GW9>{^-{OvVB!TJUtqM zfo*^499Cx<2F;HyKxn}Lw3RhUWzXDI!UpV>>pD;Ipl>c?IFuj|k=UBlMO#gen}B}- z?stE>E7eO=1)rXi7O+o7M;>mwdst+eIH25l?m}#Fo66`_NAcWc>Fqt5I-PW6uBm7y zS+LPqCw%~HV+Y~nHR|$fURVIk$DhPOKlWLB)a5tyto+>tpL#bB>NHy;63mZzuixtg zh`qmD<}C_S!NA1=;}oHg1qdfg?UQD`X=^7o1D>2d5~KhGAF_(+#JywVrJsJr#>Oh$ zW{Y`!`}YKScJB;o=Cs7qVt!9t1PjKw?EI-(o{g4biR0tjH`W>DwXLPnjOyS*L8Z?= zY5dh~7^rJJCNhfpbX#QH%fTn+B{$t+s-xk2t1cl}XX0g1=xgB-*fu=)3Os>^s#%u< zXq&&COiz0g+>5v<!+}0e(QIkJ+}yS&_k4H@XX#(y%u3!E zsi_owu8{hReJ-lXNCgO?UY=UzQw#8+bF0pXMWvD+c?-|ls*WuzU3{zG+i4A%7GQZE ze1v9RA*Ifwi>>~s6Vy{AnSOk@)lZrdAk$X?EAqIa*yS$9N!3lX>q`Z_>rY7Nqu4tx zs(%qgbDNuf?I0AFB2h^8}(idBsVWyGEf$|%I4eqY}X4M|<}C`uOuPurNiUV7U9u+|DS zlFZfgks37*vc#%k;_4k4fXq|e&nw<}ef4XLfS|93GttVcf$41S$|buueEy!%~B z>pTgwU3w(7OJ#>p&q~o4n^kBhN7N(I8#zS5Jx}MiJ^o5)sesV7oc}^!A1szrecs+8 z=Q7RS_axHbZ}Eu*_w|oV1uNC10rl*@S9t!{n~n_ z{(L&d|C^9g2GHdB_Ml66V9hqwZyeXZa5TT8xr%ONnI-P>hSl*0_cjG@g|-kgu6o7a zG@IR2!c6J-*}Io%7ae~9xIP1OiPah{b-v&A_lPbX39pVOs_nTU*0R-e-(+M;2gaCY z)=x-^XA&*>UI)Hu+7l+(uHitI*NyKK8hZ@_tTcMgQ3|Op*$M}^^`Qo9|A(vZ0Bfpg z+D_=bNH0>Aj({K_NC!c>^lAWU(n0BvP^A|EK{|*??_GsZl-{d=5|rMgw-A#5;PXE3 z_kDk^i_4tkxVtlFcXoE>z9(bSMkw+1zTQ~R6d-gMe$Pkrq$52&t@F!%im!v)_{+45 zNJ$AH@)MgwTDA96ThuBo*FphqpzN=6Td!g}MG)_wvb?YRH?|CeCZD*?*GC#w7y+L# z4$Z2-t~rrOw?Ow-jjeCfY;85-|F~x?ALfw8?65k{ZnN>HyWku-C&V0k)ef@{-fiz- z?@vQKzO)|{Ql?n;IEs^PKX{sur+wA2?kLt?_w923OS>7J zh+!w7f3(F(y74tRJDX0J3`^3qh-j5dU@G#$sm7bo?G7Afx}FMgOh(wDN806+eI4%I z)llaZ{h5BUz-t!P$tQCRfkJ6eV`Md8!teii@sK8yCoa_CzxEBf_Pjb z_wAd+L|?z_J(x#N4;t|k9rvqO`l{hq8h<6u;$Iq?ggKNw9;Esff;s6%Ke;DR0-P_? z;4c?T7(4q#He%*r-Z}ed_NbrvFzuw3;`B4r;~_+guh37Ov|j^%y4JIZh611~T~3#2 zGZhR%^>-dUm5m5tCiMCI)35zmMcy+aB(6J>#C@NYjMx8S=>Ek(*yFq86Fk9z588y_ zWH3`aid38=CJF6Vdkb%mj=a=S@7s4iG6nfAuoYMzQ^}(%ch?@Il-5ARX=rG?jOCAm zh1aw(2;WS(TN*4L%?)y@v1A^zg-RAjC;IlPUp2EAiHznDaM~wF8eJyoIMx{n-?@*HT~+$_>f48YYqNM|AL3d{d@Vi*gf; z9teB4*7V`S9kyoyTV1W5D_^k}IsY!qPwmHL1w`F{|9s5z{#pV@ zttr$yMBh%_eh9CVM7H{t36#=N`}ipwMInZlYR+YM>SA4y6?_t9RuaGOv>+-B8xoCp^o(;L0BVYQ(CGsy_^4*qtC`1e+S=&4vRIz*ARN=SCw|y>wND<1 zaD{(~ykZS7S#UH*u5$S#UCi)czSqTxJcV`%bsi21>GC@I`+cWTXS*C39k4s!$k+Ee zsTKDc_W%90RDoLVJk0foDNF963~`)v>`;mw&+$t{y;e3ZC-YY2i>%G8x8E{9efmIY z1)u=D!-H2)y^ZpXPuWhML3Dpt=r&@xbzJ-W;uGqdXd`|V#ij35uSYH^P_-M%68aMPbbBT`$ydE7xb8SlB&7m)Pza* zx}-@bBF{ z?D|l!?O@GlH(f5tZSmnh-y;V8iC-0}-EFkZH8(F*qZg}E`g)~FKMcHgGysV1)P!mQ zQ{+z@aWHo{t?P=SuIJm7hv7bNPp9ZVJ~FdP$@DOhovYqGD^c^j(*gs!ijKHtMJzI0 zOGh?Dj)qit0#>GEXt27qU= zR#4mD0}hUpM43Ai<8~ESd(OgP(I|D9%ZoMRg)5=r>j$!zi&;Ydt9$?+?BbKp+Y#0d zJ<7kWt+K#?AY!*o6-a_PDDMz)q_1(TxKf8%rh6>wGD6M?pCm)$UA{d+YrKH{(m^+` z4c#zvI1FV`M-{7m+ILzo$=+`QQBMJ7CG^xgh_eLUi5IiZu}*xAT`-gRh78@js+tU0 zJW8Nn^X+l`JoRP@&5?_89sJ8Gzu~w?D?nEUVRstZ{eVA4#*&AChJX%EZ-l(X>Wm|K zvRuT_%g|hi=6e-jCmnr<)n`pL1>tNwe~VSQ6oAT-T_9lQ+c3LExFa`A5GA>2PX@mG zuf&u^sNN|wCiyKdo?(9B(ptUKObXp!!9V2P2)@%91lAV5Y<*v^;{kX6G(=#- z{cq9kXFCu zD9uAZSHo@tB>?{SIB+FF0;luyeg{))@OXhjC_+O+<0koDX}LlD1_8gQiTr{39iR>M zeze&!=LR1<@+kypo`Ws2@Jp=9e@OvP*x;a3*ZbcCP!*ks3{Z>j80AlgmYzMZZ?ND` z?fl=_qG8{5cEZUzb%OQO`m>+Q<>44s^P}L`+Ng0wwl^qW z)FBbiWB0qr;d-|F{lGJqfV170d+q5NPd-GWwq5+zWs?1#e7IrDA{J2VGyn5IQu>AD zZ;oNftYSB(u!#qsi8nSJfLa7hMOTe08KMhus`gD(D)2%Fg z@!Mn;QWlE@ix%fRp+0zRKNrTEs^SjY_UN+-jV<5Jb3Cp3-yn#N&b{<>`48_lYQu!GjOJ^O}4ar0QX z-k`8hXO)^0HT6;lzV{CH|2(ufi+h$+8F|+J=@;8=)yIs9saIuHVVot-p3TlW_CDP5 z^7i5j5~|~q7Ji~vE2Xj_EmI)owMYW+-?LTsHyDx5@vd}VmSBa_YZ5{!M><;C@_Kx# zbIhC%GwoRW>Hfj_{K4tIbYQHqR&KV(j+H9955huc=zXud3fLY3HTaa*wgSqxEgqfK zBv^><+@u zS$DAKd%bJ|KdFbs}V1(j@rd1zeykE(=<)c16Rws`^k2GX-m*TkeB z0P1yhhGMsE^S#s|uvUvWbH73(u;wY>38ys<>g1p{mSUYPHOFAP5U=C?>!=^7Z$ni> zNmV!;O=}WPva~~e4KEqOQy~6(I#XfI@c2~t@Y$RJ^nSlkr_8)52WC}bb&{>iEhBF6 zHHrO(Tbu^TZ(9HcXM?&pl+4wB=D$XB0}14Jh84HK<~LY@R8NlBPwX6eeAXA-2*=Cs zY^(rr<|leJ55+XAV00DtE*}W59pFnm+Qt0b%O`pMr9qBKyN&+gt7x@5gur3?Lv8JN zwd9TEE)!gsGBfMMl+s=@X@wEf=s25yzU z#QA^&k@fReXCF#SH%&j+Qwd_K1+~jAuQvKefL#ykQaleuRdziv+Vbf-@KJ{;Kk{U2 zYO`Yz>Q8(wcjD2VCQrg}ALlt~t>GQLtBg8K-+*n;J`-SOjW1*JSr0i{0jk&2XV0{s zJRt-a&dsc-zhChoMp4=BaLd-gA6K1*max!={4XB zm8lf5Sk32u`KLF?DN4m2m@J{;XBUSnZKt#5T8rBCE%05yKYJr3cFPJVO$2&@&-xFk z-uQ?r^9BOxG0r0C!3IF?MO@7Xme4oep2{}GqB8xB)2Bwy5_F&dez$N{0eFmMfGhQn z^G2kiPB|sn`Hx=+Y}xe%I3_nfCGf!;Jsz;p-*#vh^B=F6bfIhm*meEWMY%`yNibl%1L3!pje2kX`*B|aE?bEzd8aRhWB@o{yQS^M5Z4R@?lOHwp0vA?zZ<0D zRp=CAE&`w%K{qX6@Y-4 zUROg)&!h@#ghU%Sfo8St&A}mv0#__M5y1?e%d(DZJ2-Uy5?C5=)5hi%h;x5Zl=6$Q z*aIGLGl46+0x9HCLK!K%y!>@}xe_{Dfbf#=Vy?wPXnij|VF|xJo3vw1u3-cix5Die1=kju4M1|5frGWbnq=MBDw>h9o_wGGZ z?`_ohL`r82TVARf$A)>^bpmAX6lfo4)kV&+<7T9Co;&y+1p{#*@k3ifK;IG{uL)oeKIQvR>cnIy^*#Kkk*X1rlU#W>agW1c5pQKmeU44{lZ5qp^jWR z)8ncIG;%;rwBh;qfUjdVQ3Hp~?~bVaX=w1!X(+aTC3oifz5o08U>c4ieel^7R?_(m zIhEZ~mSv;FpWLrMUW^nMDNhUx77*V$K|Z|xny&d*SxaH>Q{ST2C!aP$y?qcpI!=LS zf4&{A!8X0NJ%)#9+)cw*hA@p6t3smxTZHvwfxmsk?jGlJ$WBXkausFB@4maR8{e~s z;NTyuxS!LE{;_P`n7K`ONN9q%#31*T7;%#3OCf}=YfrlV1U0n4J?Zb}0#6hd&oAQ= z8s)aAX3~`CvswaFow`QaZKx{wTqQ-$LQ&4HmxcYZ7~bEigtal7M~inGIN!c5bZ_3j zoJ_%Uj|^eJBs!=jyb6oncxboL7e|A?{BgGBVWz!n_{Te)+f*sH|2w%SY6Gq+R`P$K zW}B~R1i9aXFt~_P+-!)&*g#Dp{?GG;J!4Ze*WhRp9S}76ag-^z8oQ`q{eQoM(^N_$o$~pGk z40kxW@1A=dYH-;7p1mt({jWZ$9+NCr^;DNGa-Xb{cOVDTHJQp;501z3!52;}dygmw zN28{f&}`?xgq8^WM^5D>G+=Nk0n8k6z#kyajr(L#djHGw`7@m}RCJNN3)E94nf5|j zRGQUMpvVZ2!N_)?##7$40dFqx)y(#dsT+?Y4cIs*V5TQys19%&xjeM`c9s-{I(DdC z{>9ydd!dcP`ey-gp^$rpgJ(6iH4(mIXBQe5_e#W(?EK3oC38T?x=u)T+wSYF?$OkO z-5|BSJ#sGyuvt_z!==yzBRXIA;I50}BRru~AGN3uu#MZa^#Ga9w6pQWRD|IzMiE$r z9IWy~PUH0H+qlmMxd4?|@=)RB)md^_5nGu}Mph8CEHr_cValk-1FfllAU$ioVm zg9M$0NiY&2wQHmB4zZ``1LY}ezE-NcF%$pQ>LMC@OvZTk>NhbdGFbDn{AWU8g$koMeis&8L>t_%^#8?p_v>Nb*E{<$Jl{ubCEcAkLOt-wS@5nZLaVIorv|bzeU- z?vrb~jA^}=_Syd0`Erc35%J6+KVj*Z*Cb?pA8aQOgvs?adGH+X8hJ{EjYm>o-r^Rz zu{BYI4-otX%o=&BU8w{iV>55k;Z19o*3Kb4r=8nhbz%Gkc1qBJQTJHoWJrThx8p#v zpuGhS8!(m3c2v{~>HIc*po1LCJfmszw8DD)_Z`YL4M$)2{37HwW_6u=`^>!@?;?NdARHTg zVKj?!^QzX#xivVFk8Kmrgd4SR51AcL!#jZ)^g`crJzp+-okTFz@zTc?cFo^fUY^xC z0D;?FCrBVZ0@JUV+sI5Au$yI^U(%>CU&2FTL#e27GkUG@`Wn<9M4)@Fdpd`hD1Jy8HRrT#dZFr)$Xb9i}-idz(ih%u;5zB!BO7}4sY71%7^ zzsDi!rz|ToAvddff9ujlKZHACe7d1E8Jc%1DmTybrlhC6|#8Fi1 z4|cDgcb0|A`8bHq?{WnW4?CphZmiTLY1un$Jjfp#9qu@j*&n;oH}h#z_53p&|1|iS zOC+ah=%0nx*X=qk&3iv|)JJo7Ja03cE zOeH^neyQxsNJDllVJa8L%n(#2te9(&97Fv`^+~7)_7K?p5sI#Bj(fB< zx44(48*mESQwFmx&-@xMYLuuj>hi2~6eH5LLv~;1T2= zs{cB)nsxVj?9+ASsZ8kU;XWz$9+FNCX(LRLxMB4eP(@c+ibh27<(fM_Rw<8Hm` zn*PQ4Aw0wto+FJVo^q>{=NciA$xy_6nb|#o?0P?zW#umCj2DP$=s?%a8WXUjNp*tb zYg%;D7VrHoIDtFo1v}Bu%(mjVG?}eAaXSak;sjoqQVCp-A(4G%5bJ{?dMjL9+#1Ss zS{q7h>#Bd+OG6v$(qHi4nJE0{#a^oG6+%OeCz+dDl8KJpbNo4G0D-_G%b{AWog}N!*5H1B%Hbz;HeYUM1)>m2Q!+Y7ezC9j4TMiwQ?v9WJ6p+Q zA5Rp|{3@Y}o5wYn@~zySaHBu%`{87x{q_gG;DGjW!(TS9AtWkJkUjY4}*lw)o zDEdtdwC{~!8hS&^;E&z0%vaz6$iZg&;9*$&e#g?|TD3MI;W$eu*9#A*F4-)7+McnB zJXJZKVHv}gssdFtmZ9jU_|l@n2})hkq9g-RlB`0IouQVDt)y5TXy*Rp{~9y9;Y?Gd zZ)3 zzrn~GKhuujGSOBNu)CTooq5IC2X^BtX?!8p>}@ODrCb%JG7`GdIPO%8aS7aVo~eCT zwOq;QsI=;9bw`<0Bbp{h1=qC{1qZ3MGSY_ABvdH+2AI( zGnRjNSW{52EEfxAiMW%%gw<(}m)c9Ju=qCnprz*Mu7uqLaWhrgB3d?RjffWey9&Wi zyn~ zL+-fG>rSVp5TE{hEStypjeBM$Rm_f`Q4-R_<4TK_uV>U17Hu=gL(Uq|sCgDl*C0S8 z+B=$?O&2uB({ajX&Ebkz2PN-(_9-Z$UsfP;M}zuppt+`+ykK`IcwR^C;ey;(r?)l@ zEDD;m6ozyLcc_grHGRp0!x@xaLt-O32ifpbHnrFou?>{5`NNrYCtYwR7z;W0Oc*Rw zo>($DXj6WqHvURms^-GrD7^52QQhkE?w|cK{kCfOT~S7B(ki6 z*!t;Hg1N2EhryUzAmw63hd^nkigJ&&BRkYf7=mh=2hT6rW53e%#2vDhs{cyP^gh~W zom15JVJ5;dV*J~!EGw=(U+qY?BTLwf6KOmx4T$LdFWV{aP3K18tUaU|9+I71n9;R2 zJfa`gTG69uE%sg3{TAQnN7Izn!rObuBLv6_akCm%R`MO(+?b1dT#+B1MPB1G;WZJy za`3vk-xq#cksz2(o+HHRd$>+`bar1-38!jO?~h1gYq87%Qetd}x&l>BL%w&PKaCg8 zJ$HO1rZ+WJx7I_xc(vGU6M_%kN#8GiKJ|)>iU2hC94|3XZrx<#bVhoM3TDDF6jN7T z5RyKcpENkAUhqNLORH@W!GGGt0V8`)#N3!eYsuH?^i~e57z@AZ0gk0pr<3&ucS3~> zJYey_mny6xXDd}QXf^Q^%7C|}kBtf5kzhUlE70N!Y&5qnZMq`ar=4*h(;PZHl2Fvd z75mV)ck<+^*%!>>f`VPx1;IX048?-+=MCD=DjthUadTH}IT%E40cK&gU8e(m5=gIh zhhK~Do;`e75Es)m-YRL5^B&Ikmgu&ipreap$UP1$%;y(W23hF6DnMGv8)=zjb9DaX zHYGHRcSP~pa%wS3;28Ji_LaRn8qXyaqj!bB=(nOG7Ei%~;afkne!Xc%w_piig>dDP8F`GG&~N>- z27eu5I>&C63NJ`YNF;u=tiek(3k?V>GNgTU(10WLPSeBLnV(kBOc{V^ZX9|0_L>mU z-sL)*T(H#VbcRqV@)V~HYh#mHg6&Jd{GdlX8`}L59Tmh*fDc-atNGKuZ z4HS|yA_O8Jt)YI)_O20ONkh=Iu;*-}lmIFzTqcOjR3H=H!)c`;8tqhr-(K$Kk(9AA z8oUx-=&)JLN*W0O(u&s!r_49F> zkU{!uSErrrLxH(D~i*YEexkA1l!I}yS$Gv?N?IZ@S z3+b1^WH57h$Rn+qMCl~TjlN$ziPk7B=bHul$|Z{o#CA&JSUp_B-2W3T-o$vYJR3V* zDi9L;SkbPDgZfDIgCUo^inp$*WP~D`qM)2u*Hfx=m|0Qg({xNF0$kckP^w8yqGwg; zgl#aZTN)pK0(d;98)M5CzBHFr51vxHyKZ~7S3Mvdef1q+e6~I4@_L6Dn3yn0PJexo zM%^g!z*U!<_nqyX(6RN0`|lL%=k@Fh>2bJ06qb5)Dh$59awV)0?6NP z%5{R+`1#|=818>Pgfkzk*C2zKd?pbTAemvr6fBTF8?%GCGv#0h^C?^W9m)qml37kp!kQ&Yv0Wjef|J@qBO53wp;S>Mzr^&jKuFO< zNQ0TR*b54lS=TR3H`WtewLs)SZ3N;|lz&8@wp0Volk(=1@jtRn5(Ied@F>FXpM7g= zbH~hBYcmm_K1qQ(fl4R=FN!~YoCGjmlg;9buIJ6o;=?%)QwOcXBG;4hQNNZ<7XvcI z$~ZbhZJ}$9@bTqaiXZjVbzsYi2V@<7Qj^|ASGATFlV|SMbc#(u8_hb?C!-ng0*z7u2=@tyy;#ToQptRFd4^L8(~GvM#f!e_dxv!$7#(6I@aN*=v&)yh89HBeg+sPRjs@ytx zngAwP1Ne9NbrGkrktWsz3hSsT|1PtlyrBKN>5y23+XiIT z1@=^$jPl>CSU_Zy1&^sT&E)U8`Xn(0-!APU(I+UdNyhGECo*sk&bhNp%Ls>XgSX@174V`g%!1(!-uz+$_ zxTjB+;OVcuTgwvy=A-*vM}JE9-JvK_8d+&J+ws*NT_TfRnj|BK#Fqja7;*DykPEnQ z_9GYl$@N(B_ADrgNqTm|^9!N3cor_VIGEc7hVU8^eDCuLf&{KZwap1ZJdJX3WpdAZ zNz@4nMMOki0qTfOO7i_;WNaKYJ#AoXYik7n_5FZaS6ep~zf#WVje*IBXF}kP{(3Kz zHhSH7^sJ%x78ZpzX#&lr4F$L%0{pf7buZQ{5uR|n7@TMo(gcQ0n}fyP`_ydq55%|% zG|=({0-hj|@&b|nxWsVHKKS_Vk^Myo+fm^42xA|HXp)kaF}C)=);6E4HiiMqOTziY1Cx%hjfxnyEU z!vY7~H}TIXcH7HWjAw`d{$cwj8M${Mr3P#)L9}lAY#iR7Sh!w&?SIqiy#I{4(=DI` zOwF&L?b2--c>bF;j+Px@K_@bZ;sGSwmoD70vMf)YJn=(rm9$GextbLEs!rj8WhL4Z z$+125P9z+t5W_q%F#!tM+;rUi(MF|_E}&p(dHeUu%EbJ941ii@7Z<11($aGDd~+^p z+fU)1wL_zLjQ@&B&YC)H40d~Woh})E9SQ>cnf2+~Qo?96D89M?UuhMii5QMDC+rrF zNLgXCqt(PME-K38d!*A`4+PjF29!xY=o2?R#ns^9{Evxyg(4oQ623(O@;1c5Zzjvr zbI7x4G@;--mS62X^C7{eV5EJ0wr=mJs5t&(Ayzj5?-UQ)AfmJ1Guj{ya?5T_%xWs; zPb0qXL%0scj>}&}E(>jAP7I-o51~N*-cvdxo;X*B8t@S%;I-R_V1wS8CDiH?OC~OG zeK_*a<7-iU8ucvcnC_lr^L?OL81fKx`40bk{AP?68P&~&Fk=D_KR?x;?XCuEps^Ik znBEppL_|_k7!(B%S1XlWTq;fOKkLys+zDDl(1cH*>fPX?!$%>4v?c~10$jBZyGO#= z)}L3D=QVNd#k${v3*LjQh0}r5yaoY?6PF;o%wti?nh@8j07Oju&mj)44;DnU_Y@() z9zpUc0De93LW~1z(>g?2rvLOLqkPurYeZyWT`{h;wYB5^u5znU-1ew;DS<-KL^MGH z9^K+qZqV>^0`@csIN(!<|Af|6eX|aO3@3er7o?%ECruX%vY|y02DO3 z7zQ9P?gt}JScd#KzW}8M;-lk~KB%wxjWWv+G52*jHA%7LD2Jy!dH_2gU3eTmk5Zq3 zI+&0GkKk4{UNnPI={u5eZYffE&DyYjqpQ{^Xgsa1$g~at*udTg`GP%U!D%kTGB5b% z2u_lS!8XrUyIlM8S>}pd{Ny5k;~Em*(<8@|YL~xy!_2XDeoC3hD*al!i1JiWFtP9O zd0%Z)DZx$U^wj|P=Z~+00`?fq78fZ$&b)tGqgwhnoH6v0)VN~8R_wQ?MjWCk9JrmIJ^2MtpXmbya=evG6Vw(Jw6_3<=2oWy{-Qz>G^-oh(PanKNWN`}0#{9WdZ> zy?yVvP1d(Y1LLHF(U_#eI$LCr6LxXh0sh)q@D*}eT}!KYU|`^Vh5|pEP9XDTP9{*U zVOVJA44;v<0yjqm`++1a8lN_fA;*;X0S{AfDq+r>LTCnMjzW(%yoW%$hHUA^Dl^>1 zj9zvGZHeaXH{bi1!Qatc`lg}wdWQX^xnu!v#M|RW2@~&CrVZOf%Z6)`g_szHA4)Oe z#o-#_VcRGvGOxGH+jhSl)t+ednhMNX?v|aUc^q_Qj-O5NP5n^)<3KL{Fcqzna>j(u z#@+irqREtaKx7dVx`|58FB?=Tm!YJ!FA49^FG$%7W5{4A;=Jfa}4u)1_)xBz=#@@drJO*W*V}79u6JMcndh5y+f8aqB9vV{gwWE?r zowpR<*B*#@`~aXvbu9P<6^c_|E=6-N)Ft%0N(JvAMti>a?oiWW1rJ7|(Q>Q_-Of&V z$WUlQsX`<5CVV0O0$Io`nYxe;ogb8!%fX&2#v;TYAC`yoh3**4Pr|eRCz!BLCi`1j zfe)-cz@=FFoFq|($#YG;WuIQ`U_D);yZYHN4b&=o9L4hKw_7I@WTwkL%>Vc^bWf;| z!vUP*UCArfWAfxW76iH4;K)K@FOnz6A_N-+Q3ufFLOhWCmWHU~I&t3}OyaC#Wq|>1 z+yGGm5LYmq&zOH!0{Zmnla;54$tc6`7!4yUC9r?ivrcy~=!)STys}atD=TYo8ddKC zgVZvjn*9!c%j$dwipf1$(24DMU$faTWlWz#p;+pX5~pO0B>v>B8sgu&0xtm-WF6`+ zU#Q1tHWSk6RN|;|D?YdufhP?ihU0cTcYT}1Iczp-S#}<^*C?ExPy!&ERn9R#eIKf?LENu=`(lh)GDaz&`o9=dZP<5qN~$pMzGE;l6zIX-|lza@f6~ z5kVv15b_zit_hM~-z15re~4wwU;X|h#kDi;8^?8(i3()G_+);IpG4d5_{uT8YSbOG z?*S+C-PH=g+DL*E{yK2He>;ukyxl&&q0REG)~0#iH;FH!o95<}_V>FU*%DM5Rk%9Y zzM_Nwq5@rhg1??MYK)91(61riZ*R)u!IK1KY7mgJo(Ctrd{!J5d5DWuavj<)fk8_E zo9W@Vjr?;HSuRm3RD9%LrIBj~M|KgqLlO7DOFsG=b2K;+dfcLwS?G5w?td=!U3auv z5@t^3a2h&o#EW`t6jV$Z#Ms#h;-WVVU&NIf2zz^XeV+iU^V-{1c6zaAfYWc`>0j`)awco#Gn1s99rtF~F^GZaMZ9n{{QureLrvd3 zh$5q<#%2Z`Oz7l=+TeV%VQbE}JIUB^`eqofsiA*D6RaXfa7sgM;<=X}w+TZ?-!2v! zp&#ePi3O8U;Dv3ardYYdfvS*UVcqf}HTVLmKOwwN%jJc+#*ZzF?b%xL?WiwoUhv*a zPp?lgzG*GLupzMk41%vI>>+X@HW{)YM_rb`&{bs|V}HkR@JXsqg-zG`HsKp}$Tpfh0(!ir@fve9w69Q#&69JJ3x>##zO;tM)s-N^n^cHEhYx9UJOiu zLV#{^K6`){eRhdkbL?l|P?Vh%|AEc6(D?^lr~CrKnmgMCQz|5q*H-&5;A~zs)`Pq_ z&j<~;PSuB$Vg15KWXoi8aos8S*h~vLs8Nb~_l`o505@c!s2249AcHkOyk@Mbg#i+&OL-wDw#MIJnLFF43j;!R1J%ck+KAp(-J8 zWbAlN2ZzE|L7%OyF32xvO?_7`i2jP4)rbD+L-vUA`4^o)>~C`I80-KQ#aT~P)jsBT zST%J^ltYvF>@JK1NCdor+g7h&FAH^eJyu+u%qYireB z{J4w1aBe^L(YT^qH(=`)Ptz%wJ>m$aL0FTTt-V>uFOD6wNyHY_%>N^EjC^IYR9Qa4U-bDyX9roEB|k&oq!^IxXHkbh(klEHlDnh>g6Eg|6I7En z0Ydn1RckFUUuVyG@%{9{h2(J8Uh1pojGv0S^bV);(bH9zxFNrP+vr(X?B17AB;wkg zPspE}v(iv!&Lbqu6i!JN0VTgnW-F_%c=VjMtxq1auAk^cK3Y5)@n$3R*j%gC>bWz<|{f4-HvlK%+y4ee}18y_;dt8c6dWoi@)!v#*; z6=KonIE93p?jFhCi<2X`*kA(|S#aBXZ$)o?HDe|CgU0{f3?y2ouWKwYt21*K$X;Ie zY%qxL_c7NO8ymnG-brW;GW{)6ci7Ua-T0Uy$E|sp$D!*%%&C2ecZuwyEZi@ald#eK zdy1PjT~Z~4g%4%(c%E=h^5%~%LKd)--mOoWV(v<;XXpgd@7@fnWnOLwb@yc%J@&nv zxYnIll-~gZ@T#x+r%C;ee9dVj677T^)?s|br+^7m+WY;`r0u1gY0MvjWYHjxiSOEoD_~raNQ#jBDt8P-j_xChrh>pe%vWc z7yf4L!+2m+r$24{n;NJk?^PzncMFj0#borW`6-s1)1R3Ld9}dSohZ4qHJdwM*gk!d zM8?)eOY3x3V@rZh{M2xrgLU4NV}k9nriy$Hnfsje(i9hXzjqwCw^>!~Yu28^MZIpa z+yJfOM)~J2C~{tQ><=oci_=i>eUoq9-iPI<=hX(UE}EIuPB=zLwbkN<7Xwq#h7uQmFs?|fcCzh<+c-f-Zs8s6aEqkD)5w%gq-zo zS?GxHGnxFbxkq05=m6w?#=Sa7&Nt0atFnDUy)$^pL5rpDnZDbTK|Qq~7On~fVS&^C zWbb9!v@ra0a{i~mqmbp1dvSV>q4FA^X>zONqqRTT1G$*N7tMMOsFyYULd75EL|wMX z6nl1DUdyn*P?j=ORXG#RS6o#KJW!USm}FT8Vu3w9J%w@cX$F0kqsCx%gLrdKVEf_( zMm5jXifbZIK(oRzYzCM6@CT+tvCdq*>tN}QoT4*PEi(D9nP#^+hkIS88Y8%|1;jpg z*$4RpoO$rLhd5-O<9GArlY79V&PH^vq*0$)#7LHUt|qR|U(%DI!ER?^+? zoR_}*aMJ_+Ny+PYE2cyENMJzQ?*^!~nar+aB}{*3X3M!#iM?1^lWKPa8Kj-_j_X}< zhxF<;rsKe_lQeF=6p#NuXbK2f+D?8D5~>v`fFH!D1lb}7S=E{JKQ5vK9(ceP9rfYI z#AZ^TK_HvHYp*HS^|umT?H=ds(t;38-e0UG?P6bn>9_?r6=cT)I{X4+`FiU=&PrGb zW>^6H@?&s8RTU|~3>2m(F{!tW*|h(WI?>UQMsSPR_ior%fzYpdkUwbOCPd|q8y?kv zMg%Jm`Cbk4+QR<=_|xX)<^B6oQqj`KL(hR>0dM;S4GmNB*%AtBO{yF>>kWG(2Rz@q zWKbwxX8r^%TeZRLMtvw1FQX)A*!+&$dNgmZA7e9&IKYrz(+p=30GgWOS5a9RAznDx z_osh}BV8z92xRVg_dsw=;z@iu2#zmZ0LLxb2rDMCnh@)M$9CTY7~3{E z0XB0qs;DjZi-}nR%%ZvrKcT9%*AtriE~prow?|_g+Fo57pks1KbCd3(|Sf1!#H))>~z)u+8_yIqV zvEZ|Cxy+H(mRw8a%5CzBdRK2Cp`lT>KLL@&e+TosLT^{Bt@6Jm^T#^A%!yxb5DJFo z%I5+!)h_R*rgzD?S~?dOoLqA5ELBw%O0Jf<#&kju1UGH>)A=TE@5HzR`6-7POtm`u zfThC})e)^w_lX2lX7m4GXMT!|*8nQJGQiVP2r{yxLi)tGro^?xwu`k_<9+Rd#|Y~+ zaF6fUk921K#AhCgSl4$l*@^3l*mXe$yx_GNX%@?T@eK9u7bm;C@9m+NboWlA<-_26 zcTrfBpHWFA1Vs!7!W=|+g1dNz`01@fC|ocfE~|F>VxktyEs%W$x+>6U$OZdVf^bn-|OQ2 zceurd{2X02mZD?Y^?sz8AniNN6jdx!)o1v`>X^^H4|S%dHixYy9JFd%@*i|fVk!Y) zH~E3I{_i-jkDV+y8;sle6*X8UM1v}|fH;XE&AwU={@(A3xH*To9+~bmaD86{AUj*I z**UqgQyT0_P=Ui}Rl{Y_?iF7UW^PjRn3)F&P%M_Z7FHW(|LI2^LmotpT^TaHOL(H1 z>wVG57?ZDA);XYO-gr9eLX(?Ch(hXbaRS@_KPN2eFk(9ji{#Xs(~e}r*Qbzkp<+`% zpaa!aL$c!`J;*;8A@&Phj!p$_V0$Av5fDiS?zS&dPR}u)z3Knv)fEMty8fQo9$B?# z>%HEw%PSuK39bE3hZ`9h`}&lO=kE)LPqE?BPu(8Aqh>9iOIq{!I{7(-ni`K-9p@i7 zQWx$HVPSBlmhqRThJ59RCw8nK7BV_?<9!jDLLo)4L^{Q-e2|r{N{9|s{V(beUQoms z=p(o@JZ-7h3GugoJTf%>nEZTHpZ@*2JPN+I?A~;@H!}DifA2lP($&N^(#A$39cBZ2 zh!jIRrC9K^a4uvN#WlgnN?V^~XXiVhtNma2jjM5{qky03yur4R%b|n;PTQY4m%hZ? z&mjBP5Atl3pM4Ws)>AGH?a&uNP3-aawecw1%Fr?L!xMiC{Zx{`Z;4+Pj~#=(WkAcD6Gio` zj$PFNu%`2M6f5){i?k030(#||v3qy$8fBANID`LKKVP;b_8R+uRoa-XbLmmVDw$8pri5csKCidLX^U;8@zR6l z^jgVa`ZYm23kb7F?8hf1rBgBm230?6XVhhlptk_(eZ2CU^stbCJ^~fAUNB42)UHtN z3!!5>Zej;FzlQd#BZvVgN1J#oBQ2eso|a}ckaG8#YMB4aw`<=5)i2Itt-8O8XL+d> zpBub=kCS&EX|fmGv!&V}pdM4n%ivRm1&RcD&Akc~Xd4kC(gER4B?msnHow#CCBK6R zKL2@-bO!+O1T9np6!Bj{^Oyd|rQf-}8&02J{)%A&vCVItp6}w@85mHz@$z~?7ek^b z6f=TggnCq|o+}9r!a?6Xe)v6?iH(bU;~U8Gb^)h;Rwpl6zQk5L!$6LUt9NZc6%_H= zU&ruegX5mj$^14yj(9bRo2RD;JIj(b9f#QS(bwfd7v~pQzB^l0Fxm?n=;ist=3gIm zzKUIqE>gOg4+c4c#E+d3P>AKX=shps?~ZmHW>4gegO- zu0IRt&O}m7OyP(i!!x+hU9Q)$*4;puY;&M+rC`EIzPnNPg-gl3CKJ~&X55K#1=7b? zy3esV>e1X(^^~+Mc&Et(rQJ$kP)-*P1(wOf((b0(#!ZEXWFd@v6i-hP1G&-t{RE{^ zq@j=L$aFgwCU7aRoaz*-h$GvoahccT3tkiPO`Q0D95ww>qVUk)D&xaklGU6;s0H?~ z9Ia(0!{YDyhTDcjuMPa1bv2ehAuJeldG+~n^z}ZlQ1@p;zK;Mo<@py+zUELU=jmYc zu*tLUC3do)kU)KJEryeynLj#)Jt1l~A;%fR#lXf42HpC-^3GXu|_pF-g2fVt-tkD)}J2+malIJc?`=X)7BKtEF2lPz{ z-pBy*av#8DOCYqX8p}p33`$v`J~hrY!%iz8da%>JJ6w~k=uw{7$dqyrx&2`4BfK~DQai2F|X{yS$Z0AadFWP1QKv|a^eE5t#>DyHF;*g&W$aW(0-5NyY*?$DgV@gy^sG1$(Lm*!liu6cVvBf9+&G0qXV`#%kRJ_d zD&p14#{4TGgk7&Q}Uo@3N^uc@)|6`)yyf0%vw2GJt> zdWnq(b~W%0*l6AZksc9U{dcLMCJ9@q83ezAI5fO!(u$qsdcOY#jY5U_o~^69ue9AK zqGawUGcFJDI~=ncXOQ7z%tlgvlMf*zQe2FW&OK5!w9u+9t@+X{oC|X23?e9!wG}O# zem4p`?d$9!N)FW)0ERbUJj+?V-P45-6mbPxb6?5}!{kQgo6>H|tGV!Llr&7~$*rw- z5BH;1oYl(5-+rtT@SA5F@eAR7lm?w9b*&Sb+7onhaLo!$ zycn3Mg(*NLO--%uQO6Hs1d=|+>6Ub9Wm9JH@Ye1wdezFwEL@RwQvmMr!;kgMeYi#H zM1>{X_&$l#fo$C+;X<8;Por-|U@C{43@3L#r{AE+l9 zv*Po?KU3E|sPofgTgWBCOSC*|wzZ`tqDDyP11urMpCfGM%v8|^LXxZIfEyx#EKeNW zs3e(RPYBJ&{_Z?EE&r9GK0U*jIp$qt-+pnP_)nYEmFnwEF_CIc9uTfaow=%rIZM(h ze7~Y5i}!ey-ZlmNfa{e;{%obCMiR61L(9#k;uc0lM896mt8UUI(|s<5#f##kHT(`n%*8ev8{w0@c-5TuLA!xvPQ!E6LfOK zV?Pcvl8vpn+?h5lV;9fKw0RI_p|*Y@C})TrEf{`LtkZKjYoizbBjw-&^d~i)>MH%k z;KkA#H{g}V=3#d6KpMnjdI$iOSt@B7Ho;|QQHX1@UU)S zb1VYpCeFB2ZMemslz@A?%8*!T&Yl5%|bu#ocH-#c?epgC-Y*d8nNtBn(|Sn$CnooF}=R}+1MDsIoRh0E`8 zUw-Sx1qGQ`5=Qd#Aljz)%{bM_nGP$kfc=4WB!;vV)2b5Qpmi55*E$oBI*<>^3b)-0 zh&xaZyu@hPwOSeJRx3dzOIfF%?mZ+8_cKkbCmkl`T`D{%T z(jJ_JwjZ$(nLWXi=H!f9S)GX^I$E?UG?|pGvhGs+oZ|7g^pNw0CW5&$)K7*5lRv3U zv_}40sG^SMWZ9RDRW6JHbc#Av%Oqb^Y6h?~j{*@2LQdy^78bzEXu5FkP6e`aEC&3& z>0CM~1YGQIAzu}#+_))Z7j~fBU3_<|^Wfj#&@?Ne`|w#<80p`+txn%nV!j~r(}-;M zP#nE5;bqlsN>}9-?5dvHe>n)|GP614{Y_dMFP&xZvc-OdDB-P zE1DV_{$_bWm5o#V0wbfWVS>2xsE}wQmph$8s@Y35Vz30L6rA+a>2?!f4pYn5$+|_W z@FzwR##Cvd!3DgH{Q$6W*G~rc{qyIKerU*_MARy(!ZXmSHO@R{P3?&GJFu1mBA1!r zSca(ini5sTsu%qFl`;1mPHA)H1Ju@(^j3aF^OPM}+f}dtsg=rs9IO`X>5vkBSgnFV zpH!dj*1k@{uLEmT=DZ&nP&$vnXUxdE*Nq~*L}znK53#xw>0)I!Af58FL+|vwckgv# zRrr`wbs+xR&8$ciR^>h2#~;v6ds<_~$Bzj_oksqAdeAtP;DtfrK;PA?E60=Hj{?Ao z4x0*xeKga+jLln(8reBQX;l&q z47Omma|Z=LHAPBqEyEkRPJT=)h4L!=)PUevF5opBz<9^F=+2IIC_@vvX43^^Fe_Dt zf1%p+IH{zI#$}%2h3bCjrz$lDl|2XP+T+f8fu&sduLaX_UB&lF_GTo%s!vPA_pVRs zDf(}AjD%@WwBdm~oZZ}1fvtmB?Zo{K+u1+@FYwM#hG-rKOa<3P=o@p5bG0J1&&;;q z+~o&4G8OUlDX-lI+I*5@uRBYP*|#LNO!%h2NhJprLrq52-ek!}F%Xrq+lLs?#bKZ6 z_Nd*`AFHL3zUJXQWAFW|+RoauV9}-!BIfs$qqwL0@2BNWnJgPnv%TbK&O@=EDgz1H z2FV7INs5c4ptss@yD+0y)H|1!OqO9)#18^CX?G<$!(xf0FJn0wSQ*y-y@JvL#zq$h zf;94PAP5JTVfh0M6(;r3B^&U3r~uqW5wAOJntmH|J{VAH)DD-{Wem4F7KBxFzT~Vd zf!-*Bw&_r#Av+EzwL3(kRs!;<>(%QJ>+y8L{D0x9AWBwjsBU2#^-o`IO`@@3AKw0y zfOJ-^{x6{G!_(ZR9pCqTzzXWE_P|7$L;imO zSXUvrYUOxspAFY}?jCw*inH1&2*KL%Qn)4ypFa;WD(|KT@VBtA`@El1@@Egua6s1D zWI2@;f99m$)Qk?R`}l{3R{!|iZns4W#RI>LYX#3-q|RPQKFmSnFNgMuno9}SDqBxz61-B~? zJ@d99{A7%8A~1PmH9BXyY%7r)nMXCJa|*ymOUr$ofQeCQ^9OM5SmVvJ3DqhiDVGC* z{C(VB{dr3bUtX{Pb-4BSOSv`R23!ml0 zZ}$DdhT^nZO-HSEdV+7GC1L4W1I)DSxc5KSEO$fUm3O~`f(pIF5_9nmKR`R53{!y! z0>~d-9Pl(vGvRTjkx>4@@gBK-6u?^ZM)3lB5l!B{NA;h#D)z?JZ}~wP4xu}z6rjp# zK@6Mj0td3dk)OtVk*`i}=43Sqw7jU>LEdf!1x?O)H+gh4*3>BT@>cNq?#J{4w~!&= z4eYzZRcWL*3}Lbrg@J0!^cClrf?f<_k5DZ&$JIg}>?}b<^SGaKnmSW;{=nRLz8j0MB%UBnxNOy2{;Csmy6;;mcqYK^Dhmkl}PgkEr z;#@w3i5e{pF81TK_DxAAx~NWXu?}i~yt2|TGEish=n#b|T^|L$b>?grF3!n(YD!p- z--u4fHTAf294-1d0yu!X*q)u=Mc&031!C;{`0+#8O~L$NF!B*01Bex|H%g*d`xIyx z0Bn#yDrdWb@5P)GBYru3vnoVE5b=RTvr&wwHQ8SvIMk_d!vo5!_nz&T#de9p~?Yi{8-K6KaKGODQ+NqOf3XB=2gDh)Yg< zJ=|l_G-^7mZYG_qpIm6oT2nl45g*3PI^90@;mm(qUZqjdSueN-3j@qUzs#eMnkS@})Q?g_VzOJ-KK&!oOsWmjf-MG$Of z2ksuxxSah&@*!W+U|#Z&aOOq$j#1=G$En!-tNPp+LTELb8oE9F{gEMnxa&#s-^^%$ zetYH`fpb!>2zTF3>y`YG~TC?ZBtJ) z=#Lkk4skF}$Fji71r_e_{?#MiXL{W?e`VkBYbF}=&<@d&Q96(_WxWKXXAQO}SWztX-Z;-ZE3 z96l5Upcz14QNLFe8qJI^j*zthXh&fsxrVmo<3E%SoZ%t9@qqHK|h6U9FPGQAjO! zxC`NM*k3dK)dgeQ_fFeQj9-pF+1V^**aXAz7*caj0$sp39nd9Xd$R`-&RR(=ixV!L zAMzcYUH82MD~^Z^Hl8g*&JOs{r>FNor(5IEPul$`TNM;zCY=(MOLA{Ye>@2&$wmJ1 zgtJUq2m(}#o^UEL+HT|}UOBhCYXuX!9~T|%2_KcD?cToq!M5=f(yW9nV?q}f7ns3z z-2IDANS)Ab)BfO9MK`S^#_eJ>2}(v=QO@dED_2)>e9VYOc0~{EE{UAPM}{u#LS~I< z4raxx0Nzk0v;!`Bc6s;2g(o3=S}(kK2R8QwDi)1PT&u|Yq%Wytd-m#6hz-rfB2mE> zXpsZz?evxwm;U3%scsQ%6DN6BPI={+tC+KCth@;MjUqT(F>60y%eYwhw<-<5XD8a zZ5r2OCSx&*1~j+Pa}LiJ)n<~I2&c&4y}*N)e)$k;_1f1!3WVHN3U9a*^!9x9k&C^= zQPJv{E|=cWDenSM1!r9m7XJ~a?wrR$+o~RhuU>0jJD550t|C{ITUw%EM6HWTLKf7(JIhtevR$YW3py{jN4v^P_i&U(V z))reTSlEE*1}p9Eb@TLr%4&(=+T8gSS?}}o?dCD8cCe#Wl@hGC(vu!}FMP^N!Lvnd zA{Oiu?6^c62~M&^3&1zR#)%>Zi&pPCp?%CJk#ce0F2f%;wzZ!%?@c_RKf*T3i3()f z2v${AzPwSOKT5hbfZYI(Dh1$Jvz+@)N_mh*HZ-@w{)xP23;a77`WBFeIeL73VIf4# z!g}}Ck1OgDAxH-(KKFEremr`VGMSO57Dc=HC-h>G=P#7}*+tep4fd_BdD}!o!eL{9 zn$LJc5xy#Jhn=l|j868IU*5kLC|MN5Nv|pWrSO?1^T)ExkeJ?>jf*tx>!D&zwzGpw zer6E6wDf%lc9F<=mPu&+_xmWIUu1fZaQaWU2**pa4Wk| zRm?J6`kMG%v1Ke*D2p?EHVHEYNLPXy%hlsP9#x+R7l6|P1^GBY;|WK%kaZ$a*F-yg z)fb|ml&R!3!1SyaVPI~~9Xe$`?o>_%VpnqxyOo4}3DBx%!y7^2E)z;U5SS^shJdT6 ze_zXDZ5GF3CMoJQXy#Ulg_2%@@2e2!Q^dQ|N2n!U|I?)kNVsPVKOUK5oLAr%_mN_> zuuwL_k8{KWDklkip~Dz)ET{-tlM+3~jFU1eg6WR1_xDVhfMm?yh96hW1Iaia`$+ju zD6&UmV&|>a(<+mXNCe=cgL$iRS=w#Q;&t*s4@;Rs0uvqFKa;n}>D^CE-}vk}29ADw z^h$NZU7*(9&AxR+{g%mo7rPFy$ZdSu$n|Rst4oM(|M}|=ttH1|Z|m49N3_D^#j2^5 zIygJ`fzKl;aq-k13MN9#1F_e>dAmQS=>a>5r(r;`$$F{Y+`?qrL^?D+%4uJ-2G0~m zYm;7B8X2hpo=WUxn^(U|CM8^ca%CfV;1|GHbBN&)Gx`qNgAU{Sg$I3`IU-`BxqFjI?FE2_zuE{x5Q4=&M5bLlrl-WzR)bv`#B{uVvx0 zCOLfL2@KN0LLd7n_<1ml1;^5rOF zxfU+na!TbDGXaD^D+XaRm8N5tHws5x$Fe5dq(Vo5$n=zF4sN`xzx>{1kh}o2sINa| zt@7rEsoaL%ls}MU1rUwrTR-8&SzapEZ$u?ng43$n_8>7&-N=+{y~XNx5gmZDM!)$w zhteNa+t{>22_i4Ebo4s?uIr(0yE`<9TKIJjJm@MQE9qpBYXJQJHCgX^Q;z!KChs`> z!cFf`zJ+Qvb^0^Q>-A%Eh8z?%&Y0cWY5P{AY)ASCfC;+Lom$yX2*3peE217;N>WYf z4rG?hysY1w{Zt|B^M)>ti_NqY`EoRw>6oGG?Z_hh{%>1h{q9xRC*d^AR7eKEB_ znT4VCUH#fT7yGyWxhK3=D=$f0ud*mK>3BoiHu>xxr-3OF#LW3j4P67=pI%(BQ9izZ zkG@Gr?pNpY+ncivzgFacXyM_0Pb&4XRy~gOHlxGV19#f zM=Bg#th$NVNIliE$y9FTfQB@UetJUj(COU1m-brk!w0j<+1H|LLUzW%sWP-63YsbSP0^#7A@d|u^|bVWOt$|onG|b*w6n-DY}*z3!NomR=S52ff9FW+)#{KA zV2x(u^VL>iJ!|3i{@oprsfo#FU{GxdhC91A3c5MF|Ed4RY($6q9RyM;66s{!eZl?Q z+Xe}G@+il%Nf5p0)%pQk7vAdb=&t6GJA8jP8;J*-B(UxJ!vr;`Qc>xlirm?O3j!zBON0Ux8WGt6Fj9gi>tKX+E5U7 zmK_q-Wr>S!LXKml8zw@JkOf18f%|6^MEFReLnMzR((*^@Nc};g2-DJ!UP&WjI4^Qs zQLj?0ze+ISY#E+T^`tsiOeE{7$V)gwP4Pre9{RT~51oGN0ugSQpaDG#Z!-BZzorY^ zCX2-UYb8jLiOgV?;DEb#3G3=k+a6{hYH?KauH0pT$fNiD_>5>cr>kk1e)ZzFFKZt zexkUTQ(r4N^D}OrJJ@-l*fij?HT`#-1e$;o5B5GRqJZj=Y6D6+`J@H&d> z8kwk6Qz`2V(bzi-cm33$)F&Ru*EG0WSyS^V3_h+=2XvIJ2VTRBI$^sH-uI8j3rOGR z@O=|1pVT+p{Z;nZ8#RhOYFqge&#JPLDPC~M_Mlz++b@f4ipS-jIY736s~ml@kHlKs zfZ_-Ayfkykr?>s4KRjujE*37_yr~meboh!SEE>Yp`*bLy#1kMc$ znjfIJREE45mNg(d{4WbTg80=3S93BG}nUC`Ph@Qxk zXq9gX!2~YvuUEP_#+o{er2+8}+I_BowftGhpm7oP5G!PX}rePjnk(w;r#rPD zVQ0bzqiM}9kXN!SnQdOXcwE-?kSQS9*2CRZ79cwfPk0GaWqwLPw;ZyH3~i}VUAjE^ zA34PVIk}d1S6%8{>5ku9XGK|Y+SIY_KieyM+3nbw3fo(@VGJo#iCz4fGEX? zIOkTbJf~zqGCIB?=iwDpt)AuJ}=t&rzzWMn&PhX=Ld2Z;@)UGSzM8ZHua>Eqb2H@Zv7 zFq+rB?+I*qL%)-};E=nkx3mPkB+|A72Qq+kb8Az(Sr8lLZafM)cV7=2B;8IVz5VVr zJOz<(av3}U?|jFabjNG{I+i>T?!BFuRsVYZ{8&yX7q6{O8&V=`dS9LJYuSm_0cVul4qo}OhAk(SpD%7Xr1zd@)@!~=ua`fW<*k;uE=DXZ zEj>B`U$pPo`(>Ne$&5V2UL92?D?i-qGEo4vU5^Ylc=GtiU#|pb5MQWQ;IDe@pAiKc zTOFCCvx?T*U#k8_jlhOS+SDh@+1OMTnB^9uu7t(fA*x(T>sAlWz8w3oijtVB}& zSEie%f5S_wx%&DCl+|4bqVB}pybWr*a6Cw})fPqv99e|522{@bKS(QZBOAQ+p|MNs zIu+=M(;m4-S=@#F^~|hJq9P#^*LgDYqcHzZ*x{S&21dopDjeSGT*mA1WbB}6V74@T zXV?p`Lspw&V0H7L|I9~9q*!nrn3R-Iqd?^s-b{4|M*~w=^PV#Zp zyJ@IrBWe8RMBXi`55@?!gm9k{o|la^*A>3H8BS^*32a4k&KFN*sWCA>H_MJ!6bX(*9ko zKI8b$1@CGmexfznA$9fyhJ85>SWqH#qAt9agi`D{{{W`dAD64d`vk{+13-2sL9Tcz zObjw1Wb@mQaH`wY-mbwoPbd9IwrKeRGT`v7LJzn=0gdczdaY3o zq0jze-_m|(khG?7NJq#h?Ec6VN>wS4JqwO9G>ad~bXaJK@V=|a|WbM=a8e{W<4){IJ7Uu&MI z10J*0^uhS!@HJxM@7Q7LOKiktXI4UYwzM|%#ve0)cof6gd)CjKkQA42`vV&@XzdfJ zs(Qay{rfL}qav<7?PYj7dr-o3h+9-#NM;WLIb2qKOwgOU^3AMn;V`!bAUS+v67>P` zhW~u_pXl}n*q!M13_$c=EX+rOTNrOE-(k z|7x!!R|dY>e)^j%;3#E?-|j`-dZ2q~sgu{zF#jI}{O2wte7s^MQ6Q^W=D7{){Jjpg z#%aDVaVaSfB&`3Ge>Zz8n$piaY~)9^y=YU+V~6e&Df?ta=ykzhadrk&uI^sMyG2(z z&ze4)d55!KlHZ0-GH78N3F_e7|1g!)wqd=GpEuf=85_@cp1WUnvqZ^t5e*1IW4;-G z_0n%1?&Xg>f2Ie@2iUAM_CfLn*Wc(S>G+)PCK-Lj4o#I*u*!PzztoFGyn^F9d6JOz zC#)LSp51hX3bwds?#}^cB7nq0^+Bli7CwdazxLqjiW`i zY>g;3I*>U$JUBT?dapg4d%(0>PCqa(00IU2`U=_ikf$Hx1ZYLz*d8|P?Z()3Q5TNe zni-mNv~AhlULA>X_t!>kR9UwkrrCmSw$RNO5Gg1RXe|@H`hlCg4Gqgd z`ZiKfBK-(H$O=+QKdWMSg&G{JSS1@F@)`{NfTC|o6P&XJtS~*pdsy9?0)-UG zl^TR$OHaWQGv@?AJKp}O9Q6(Xui305T@dDp13J*Yq!kP3TBADHc?n5A4~-51##^2t z`h!2s|7dXZsl*UBt)BcgpSXu$7>m_YAlvK8<&{p9x0oE(LE>D)i{GYZ^dUrP3Hko# zjOU3hSPxXx6ITAB(jjcjX9UO=Xqnvimbqt;e@_9A6p#m%n&A7tsoB1}hki;4Nb!0A z>lrK=H!#TiG9Uoc+O#AU0^J~P7u&*r8H6pSg77-vwYg*FUGW@Bh052ZPr@(=*CAbN zzD1l@+?`%+XM_@-OLGNb+9Y&j8f7r|kk@eyngW}5Y(syA@|+h^w9;jU69dRnv`x>n zVqC=#-DTI97ABD?fL|E0t0$n&HD!2OB|XrP~-oH z`Og>QKY(CP4ZK9`73sq?yn-lB-lP>f|E>KtYA%}W(LPwr-r zEz{4{VNxua#+yrWI```h4oIWP-Nht=EkhXZhuaLuSp%0Gq}>Bn$z@hx)}TD;Ih>Mo zfcOZJtTcL9CT^v7a+cXXbeBfrMLeB+@N;pF@o!{*ef#;KW6)3WiD+IDA&|X$64v>k zXudimsCnbVEQAO&y%>n?b^F~%MK<)KtB=;x4TU_EiJ*Hv^tg#-Z`4Vdd4u)1BhWiB7GVO*(JX{{Z ze7D&a>tc0nT45CR$MQ?c>X|1U{4yjXjM|1yDNwSIdyhBig}yOd&%I8f zcG{vBdbZC?MES{UwyJwvK2)bridfJc0bC7vc2!xvoC{wVu;*$d*}6XEzts&&eE;74 zD)0x%k*SY+&)Z=)H@Abicfv1UaLTZ~1}uY$;f+(E(7bn(@f2yv_L>UId)^FF}y z88C+YbigZq{xdk#MA(z!EoX-ZHD~23tHb`#AL;o!>HUI5R}_J1Sy_vRCx(-MBM*;2 z-n=I=ZEbQj>(LMp2rQ2D0qq({DI&?7otQ}}hUEM~m}d1+@c}CvlXcWO=ea!T zjz;es#_g;oSx}mVwNJqP;p$IsuwTU=M0#c)mB2SPbj%;bZB}0raM^CQ9%f+k-}?X9 zUtP~uA@B$mFX7%X&Tl!CM)6f**oeUKAs@|pp=G1(A8kSDZ^nlD6dn3M{NWG(EciFR zcMxg@wGs>V;JJTJtgk5UZhCw~CE`O4Dl2!pWvI1Y8>Q!p`)w3q=~A?qp? zZ2^@EYp3+Y$6JoQ$0QR8h5XaGot~-YSz&|fYFV2bleJ5;q zjcZER4aQw7r*+$5uKO$)Ea>fEaOel(GOfsd)2#*FZ0|@_uRQ}DSDMN8!o6xv|42!P zL`KG?tj8dHzcHAa(=0M|ECY$Z>Z0!DFmU<*Cp|f+*Q6pl#q+Vv`OCF|f;kB8%}zqY z8=Xl}GQIaHE%bBq|1BI?doz84hv|Czu(A0I%7Td?>Js#mN9f*PQOhP7dD0kBIhtJ! z^U)Jz?#0_Je@jR&!JPWDeXUaY7fhBZtMy{H$ivMWr5}6=M^tO`$OPhwB{76?Ll&V@ zSNs~VFu+VZoJsdTYOZ_IC>t@}gQ74w-vK61T@jKhz61)qJ6=PI_K&e=0*RxVoSi^9 zS3oN75lxkwfd_Rr-}vsLwhP3kL~LCDQD5TRaScOdn6N^U{tx+I5R&2I+PoiYoZh|j zDCJ*Cb3i@!FJ{g9Z6^McGf+@0fZuxZuO)$bSmkW%+zltiRwG_H1&H|AMdHWp^MLbj zL!0NpNi(QPBnEfrk7++uV)2t-@`oIcADMl^7Tmqd*QaNw5=DR*KQf5A|F|jM-}v9R z!qiW;${6NG>dMEomkC}J*>$@|NqY_D83}T6>z1l1G$SWJyuqJ7 zBfc0uLEWeVUyHoKb-xh_Pz)m0hS54=hg*re=nL*tP`Dfcp+5U(+?9k)-gcXX{#erp z={iH-&^a0q@nM*Ks|rH1Ck#Q@Cq8=OG6Vxqd!K}1X79p^xPQs>;e&8x*|?3Kz|w`W zpH&e3Jt#Ek7O?W#@g8E2iQ>^mc<`)t^T0gr3v@73#&`YoUf?hiMl__2Zkd|cQ?K=o z{NC5+Ai8C0R6eJ0o}>I37x?Q!`hO^;1~?FE4A1*dUON@(N-lnUdd};l@Q;NQGi9&1 zzIO0VK;H?O;Wk-gR~l;I^XPvbXh`36>V*4W|M-B)viTT8Yby)H(v)r(uRv+#{9lU5 zhd5uQ@133*hPX*pMLnXmCE7GK#A#3k{{l7n?q0IVtj=RG{2vVsI!(# zAbJ@P*^{rV#X^liC{^!0TsOhiXA=ZCHvrJ3-8fJqN3M_ zYI$T<2o;5EbumXvF+S2br~aesnlxc{EL4tAqsI*@w(` zNcFXp^5b)GE!ye){ryV;n-7c1&UsNMeFKYx{e9QwUq5^<&mE>_XH-gNyXL(tz5??G z=jUhlG#?UlK<7o#MhTL}JS|q$Tp*q4S$_-ueh&OVzZQvPuY<1YU;cNMfQ5mJi3wf1 z?-nUPFK?lPgF_wFu7cN!oDA@p_eEfK<_cbLjoE+^v5Z`4?0H|@W0a#NXYPJsJ>< z^4}Muprnk_t=0gnNCEh;jJki6NjctIyBXH9*+OU)>$LIo6Mo+A&S;|X)<7>c|Gg;f zy>##MP0h(m*}!9llXiy_SX%1Jq>xd_yg#93qvmNVGx64oK6{m2O09nT*XqUmn~P=e zzDpc4AQCAaE=u3noV2ov(EoDU?6Om_Z?Z;*Jbi$5T+=mv8sDHTE`=I0OtyY7Woc^q_O+vVObzS|Db` z9v7y#b&2#z z%S!T$sN~Dn_qpLRs%|kRZqAWF)2euS3WQuAQ-Dg#Bw)IiA^Ivx<8{~1v=I)2j`{iL zgPtjK1u8iS&CQZp5;CwtigEr?o36RuQpzFEckc>9Ka& z=_n)MqAB#(uV>oYT~j|^2m@#9d@tL+vOd>+s;f)+DfxlLK?*N3f-H*Rk)kZj?uBhmRHCS7wY2Q}|}TgsUJce*A&QEM z7-R$Zj?g3Gb8>;~w(_3Pa?)KkdZSV=c3d<%+z&`V?ys7@y zvd0EzV_G8aA{IF6f=*w0gkw#OjUR}K(E!eB^R1$on$xoqopQtJM&+-W0nfkDz_`bt zk;JMFRFH_;XPdmgH@7?Vp_NtX2RCljd}7deQ_vHlF`LsyhzZr^UStzV{)x;DMgS?* zF`N6=L=BuZkY09_UsXjJp&Z6t6mv%fg1ucGZ*C@Xw)*zEz2qC+=U^%KFu^F9GS%z_ z3S{Q1UEhhw7RJ&O>u3obK{M$l3kI|9LxhFpO0%GNOuL6#Q7*KX*XJ5OYn#Xdjq%hRd+P3feFQi`40sKdvsF zhSN4=>HVXl+w!Y5ubK;M;IhC@_$*dYkP=e7NRx`AYkJxBd7c+1{cy9TV(> zklY`CwlF2SHtF1;7Pn8SZ-@ZRMW1Q83v>-%$%)zsOuL1?Uey4C2~Q{T3)9^Ty;cN; zogC|4OuHgAPt*)@;sI~{q9k-13M>xVO15X4?2wR=!4tvIw(wBat1CoUQ&Us?-NoN; z-@ax4=O{qo_E5BcGyQB-@am!1)a-tD8bgymoq*L7MD2}()uT%seKL0D2v?*S%0Ppp zwX|3dk04KcWhVKS?s>!uLqlf+1L`M5%@V?-pUlA?TiWv%<(0FzfHR-FnbNWPGI%$w zi#yMBo~gZ3dHCve>*U%uw;a1j``xRmn3iLO zvgK)FxnK63sfh5bZ~;FH`T7ufKNn{J_^e<)+$`tR zv6P`uo!0iRGi8aLv(Gaz43s)_U0y)irO$}AosjlxbIwx(IMQkC3BA(-{h_=(i?p|w+ZmSdKfFv?k2GW*yH{eo-Z%_U3LXsm8E-Z+zm8 zL!I_z$S!4WMw@!3V~OB!}$+I=BLWVjPa+Hh2`cu=ADuOZdE_8*1@43^YU zd^03lFL+4Ocp(#;nsdK`N{;+xE2{4$-qT1*F8D21PL!OUPS2xHBuJI5+`+obvDf&d z^Sfq>d%`jBx8_ZW+aY$`-+#0GD}(CgtfbnPLtv==1boJT4nOH{a6G3=N*sJlmdZMh zlOrX}P6OY;T@t8{&M7V1TB3Ao6LX_$2VWF_KPLm}$%~VW%6Wt?&)R5*qJA;nUY|&! zp?*KCZE6~cfuNd!*U#Ad*IQB-=c6Zahj^;B2CB^vUTw7?V1O!I4f{#f`;oN}>#@Ew zUf8?)IizcKTqc5!_Eld}eoyE`LB}xL;|T)Sk(RDJHLBFy*C8pzXy9T@&wU0 z1JdVs8_!b{R{Y+m3X@0m_pA|ouSW4CW5-*l{(1xBP#ch7M)iA_;p4`ZW5%#u3A20A?{4VpY(-Lzlpc#GpVl`ncu z>TLAK1J-GCev#~hO__p|{3FS+ELSGao*~?<=e8;YQ*=l?$0qyc<9jK z2JIL?@ah$Z&W_ahfQXuVb(DUPY~Y@X*D7>ay}8H=1=Z+Ba#aP8R>aP%QtWrAO*!O7 zY8X)N^S0+%tlk_X;dOTs8*H(E-PK>G{kSWciKQ|I2H6@6QH`sBxR#)Y6ykZW1v{gj zukz*g>}3ckE@?Z|0oc^18As_A=Ci!wB$w~hc`J!4_57|&)E|#KqpiQjeaR5^eGhW9 zc6ehgD&w?@RBUb8UHA8&4~qWu9czDM8goOWMJtaZL|*GkMW|^<{8ni+2R<+zS9?H2&Y%<> z9qq9KZEU1d#M~5qzwNA>4eX2}D9#;B;}>nsHoJ?8WXo@8fJ#xWfr>UKJ!}0=k2a(* zeYTSxglzI3WgAZlG%X(et6ehC#STn!dlYhygH5}Dh>E4>HAh@mPHuM(G_ZX}pP-mF zPBh|OHCqG^u*p)>&=@~FWPV8V^5NMZkjICM>ZI?>0}z$GYRYA7Nm@k zv1wsrF{S_IrQ>z}&#%E1RaG-%xcUBJPwO(^G?BJ5k^wl3J*d=BiDqEulXX7NdVb(q z?|n@J`G08o3a}`<=k2AtOIo@Gr9oPxTe?BIyLTx;RJuC^k?xMAlnwz2>6R{ug@yed z-rxV@Vy|m~W%qgJ%$YND&pk75aDt}7`c_6!!Z6>y_kU&<@ZdwWCV}2hPstr{^~>x_ zAJ?Li7Z7B*`}w&&Mgb#%uc7b!HF4Xu^T_dd<-8W%p0i9pu5++>RxQ z3l1doKkXv*K3&bd{`(7sfdMaM4``|X@ynNi&Vb9DRSlK&7c8<^X3frqOfZ`kFCiQd zSRRuW)q;VCE%mJ(Cr>w0F5TZI1o}d$gA!$dt0h}t^66%L?gwGi8R`ybVm&ozyBc0k zxmrAd*s#c2Ve6?fY0E+Hvb-f=pCD=V-;tDF9M*}lV`3XT1M+i`Kyq(EaYx|C4;Br? zbjv3D`q!ulV>BMDuy23SU)O&QyHm%6EgiGQho$_WPNE&2+4p8eLPukNsmMotPw|tp z)~u9YFYM~4ek6u;vqi5i;-sLk-q};dhY+<+X zjNfZnSycXkfmvAYYHG0terw!SmI##}CFWo(#V?REy%^S3FWYm8DG;r87nWvGUtS<> z6j8ixzPz`I58)lJ=WkLd${PxclAV_NdVEPqK9cnj<#TgHDj8XACCL1lAT|Xk_y_qa zpBZR&PH*#PEOpXpe2GeW67a|h49$e&Qwd;N-GC73+Vv@f?ZEe#$jQ3C)~}&X9b94B z59$i*yKf6Gng3GKFBV0Ne*+nh@P-bxlLdJ^#Mo;p+oYSfUF=Olk{9kTV};2zgV@E-hfWWm|xM5@lbSIi^&1a%SddWjSV{ zIZpM+*iHv+ZetxS*O36Ffk|%3$_g?ZFLS;tvFBxqkuA2}Xc`(~NtsKPZDnsYzS}~} zK1Rqyj1}Ji$J;_%@+m}ABsFn$=PHAaX*#$F`u(4Dlg8vHI(_xjqUGFm`agHYZ#3eI zkH7!y!49t?N<8QcbeRh&KPE*f$~1ge?89oT1S6w^#Kc5s8ZPqv`ctvf%SCp7 zV&>W{w?~|Zt0VLAh6e$i4C;Uijx?H!A(?<6=d8X%AzC+g){q8UB<$sq*?J-hDJt?;CwNOcbo;rs=@$?TclAU=I1qr9!%{Gkg-nVA<)(X zSLM31vMKMO;L(TAMTsZNbw7J&jv-Oo&Z z!XzDcPJa-3QQ}S*K(AN>YI1TP6M2H`sW}t;N~~5d;gt>rc||^3hd+k>fS!bX{1o=h(>J9_6r;V8pzWpU*39=B_-3|dH!Z`VD3>Hsqu(v zqU-SVELr8NxZtwx9_`~C{v11>{)~dUMq82lPwd5yN%5C${IuJC^hOY5e@&3o&!GRqozH-8JQ}8^foAABKCPyK!N>LWs8vomw2$jQ$FnhUaQN?oMnCZ} zAZPm~==>uURU_u8IIB-yU-%G9ge%Y}^)UoFXZoVdyPL2?>MwiA_nK-M7Z)CE<n$2E)Gr42ia|E7IlOq{X&aAD^00s^-HF1^12}Hk7t)k)?mc*Qs%GRfM zHXbrICsUE%r^*`G%3q*>K?jYbSG02O(x;T=I`hwOeQCc@P_#J0Y}iBKZN!yq2A{O( zxBDuc*63jJ{YS1zzf#~MiKo+=%0fsB-hccT-?v&M<6bzim^-T@SaYs@ItXs<3w*s$ zbWz&>7};0&M3t46q^(iUzl1yndrBcBmuFouaR{Qbv#I;~aHUq3m)F0&GMRN0+}zwO z_+>wKBDduVHZ5U%&PnEKyXt)I>++^w$*u1kO!DQ>Aij2izmJ0_UwN;CN~|bcuT+i} z?Vp%*iS~xGuMlJG9@DIzE_>&PC><{`%t4Mr&%1ns%;|26oO}FEB{suT@l>1`+j&u8aYMYBn^uCbmCymg=%4D zMv@0-6;d7r5Z&sJW;MbO0>KR+dr70%C9g-+tM=bXJ4WxqDAVM0tXDe&NEVLOoIX;Z zRk6l`-9E54AxvW^uyH;=647ivC?$3~DuB_zm{-yt^x_$MyIYgZKWu)Y^2VBC&{Qk9 zc*mq*`q|piXEOT!AB&W^h}(^n%=!7b04L|CQC@{tv(lfpTW0^{isAscs@nWo=PRCd zL|0>Kxld>s=n7O2)m=a(X|BR6Ed@VAp%nEjUU8dp)(jrqh@YOG9;-h6a}{g&R;5`@ zWcY`}6ZZQ`Ws0h|+KsgALB;|0PHaur!^_J_gfdx3wYtdc5{bQpl_MFMwKx3mn~&ZP z3VZI(#;itLEIm&|2Qie3vl3m}3PtWdo_98{?6=MU>ASDe8s~%f(o(z<*q%-WUN`au z>1?iPWJS^GE!{VAUE&X(=jk2SyY8?Z#h7-Mi=bMm@_|*t7toxky2*!*?ruia%a!GL zO&mfA8C@-jPQM{PWJ?t^UG@opPr*;JpSD_>kcnI;82f0!&|v~zlHA$ZamT@RCghve zj0F%s|D8#<%>knQZ#HDuCxAQgw^C}X?s`(K*Vfi&nr$)_ zzZpgNKsIElA|Bfxo$s9i+SdiPx^eKLK}7>FPdjE^n@d1?{?T%iz6$(opofZ8u8% zC7c_t(eV5>y=29kn3$+$=7z`qv@u)AyO)}bHxtc{l4k=hcYoL~HL^V{Rq<&0kCPFoWz?5l>k z#&L+%nxFhyX16XM(K)4f-v{2WzpnwU`(kO9$s?xQF_6}qK7RjGoL5%`en+T&81+R& zE?62d4r4^)}Pf_o*{btwii8K)8u17 zeh`*8p$0B+!+H!y9pYU!Aahvj8O3zGWSaJIBcrI6clbv@)<<5+Gz^8_+$ z|0URtk#sMG|I4TSm$Jh@*mdjkkWZq|mqxNc_-*11^9yBZf)vNo+%~b)QGyXFDoRQ* z`-j!QSe@>8QJOezliR>oXrYoC$Lpu!FHmbhEmn`O_u^TJeA5^nLMoW#uT%F$PaMo$ zv*G0T!t$d31}Xq(T%!;=9@RS!03JV%r55&_%oX4Bxjoxp1E$p7-vKCfv*y0b)&fED znlZ*TGU(GKjC-mY{S?WyWOjT{GQOc=G5PwEwKr1CP?mC<8FxDDkqW|fF zmRj6Ofnjr?Pyi7or}vuqrbhj*2J)a%qg|$shKf1`v}dFZxL&lQrxkHu@4_NsJu>g~ zKX;Q~`YSY6`9}7VD=e4tqT8<-1EvN!?tQ!YY<)lKyA8z~NbvRhChs61Pj8ihx(3MU zJ~KO4{tjQU*m*I?dSat03~7LKx4RH z75coOo)iupBRI{!!}%I9X6AtgAZ-coyWaL~4<}FJ(ugFGQ&1@E?d|!|zj{AZs6Zbg z;JDHE!S78F$c2y<`r)^)gg$7 zoBL|RhFvR5%fb`j4vHa&$Hww<&byIRE>VE)-W)xBF`6I?X6o>?IomY8%F%BqeEScJ=wd+2lUJ9N#dGvN`R(uhzL4-lhPtmq67tG!WiEd&xb8 zSSqr~?VG!+!}SX%>XPkwVvZ#`&&!KSv*MrHieXX8hi9aa9J-9CJ+@ht`0mK^MvdIN zV0UJm`0m-wV~2WVc)z;reH5#Ksh{MU`-Se>6za@r+Ls*W6QtWxx?FZpWw) z;bq;ITm`=fn4Gp6UU<+nV!&)%fV@#45)C>Z4XAtVeDPg# zoPKDDonFy~VB5ZT1gZ{ax4X~rA0HJ>%_%QXLUJ;Sl$2DZQCsUYvCBSz?x#p;GCO+ zOhZN{kMx|4EqbA$lP765Ra5UOHxuOinx)Fw=U|p&d1Zw*Gcz+FGT|T+jFoq}H(m;T z9It^1x4t!z0e{%Uk^VPQqv=`2kO~s#EC$TpcVO&dKtNkR@sabK`zbH&AG+-Rf-5|= zo;djF**M0irn@D_x9(2Dr8(XYen*P$OrepRaDz%yPx6`<`|(XG6Ud?aH>F9KViI$c z8?;@L)l6!?4#(3>eRML1_jF^ir;t{xWog?_E2zk{4}4n7wF>RJ7$UIBDz=wCYl8ES zA=GO-xYBn&KHCDjYHba1V%QNa+aTZfuj&oE<&N&v(>CEuN7cv@7-kj)uwv%EowWI? zmFlKFt~LY{=Rw_N6SEGQ|DKc5vuh|i(uvrimze(%dp3m2r>1uL!U+Z+4J&x)eTS45 zk&*FC%=MshDX7`yXe?5HsI{!Yb#P!{s@Wur{2Gp(uB7!~v)tx2`2KZ@Hm~f*lOKC# z+Fc#smsPhMa);=x<_h-`nS;N#^$!y1+IE+>Z>jzfM0o zq?4&}qc=l?ScEw>W`z`jX3I7VbtAgPog>9HiUb ztJkm3W&D}2Y+Z=h)N_B{o^RDTA4vS8O;9w>eiB$roC@9N-}E&y78V6cVhf%dSIf&L zz}WD04M+|bfNAGWYC0m;E`JM@gQ6u~QvymC)@!Y>(f@1X+YU&z9v7qo;!H*D2!~_m zL)ttI(ft2y?}66OZp0<;E6(qlzdfom$2kgQO@zPJkqrF`5*w|>tM6yN`Qg9rMj6$N z(WCjWVh@aM)cf+4Vs*hpuw^zYzfvA?WbNLEdCi!dxTISrEobbEVSP*jBM*hB?{2=%t2z+N?e zjtx;QE*Fsy!}Azyck|uICP=ef3Y25HjhUyg@U;K5cpUL*BFmH)|K!viXW*_iE~+rt zJ4%X3&y?Q>b2#zP^oBCNvIDZYQSNL=#}?Jyru7 z;zXv$$N#?iotj$IBK@vQDpX86mWP7_P@3mY{S!}DB|7gbDsd%P{5sus|N5-;yC|@X7~O;_yoG z*CFB7TMyl@uaY%5G{x4mGSM|8)1YG$@uuV&1Bs^ z;(g@vgKV=AmPkdGwCFC_nNUP^Hxg2ybi=t!TK<_(F~Jz#m@U z{ry@*x94D(LaK)XOT}ZO!FF)Fs348gv;OVq^LcxIky{1UnQ`;LRbYSoRJ2!VE6e?9-QK4mO ziU)x}NXf~wIP0~Gyt|3VRPCP~;PO#y(%Ey{#jq(%;kX?!95Md(-8tsOo3c$Xxp4wd ztsryyKF5{TBS=WgHJL{3?d=6T;2ww312E!E67jG_sBpj=483e z8;Htz#2#IgYPoQI=IFN56CeLX_+D-3Q3WL!GeRfc8&<&obVvvVg;M_LeNcmDm$!RJ zp93v&vH4ASyVvNqVfdKv-5^poA-LJa91~w-q+qNv32I2lOXToAO`~9-VD`$h0g~+J zgM)V}Dwh(Wz8@T9(VtWI2s9sVN!+?2ytq8s=&ZYN!V*_{L5mKvIVJ`s0{(%)D*I10CLWmkX60Up`MuQvd9n%^b4>a z=Wu#kqjARrn3U%~1!Pb*qCMtQ08MQo9Uxljt92nk**C_+=_In4xtSKv4!%4zmR^{u6t669E>J)i}Bvfnq} zMTH9x>tgwnSjVqHD15OO7Q9}bZ&BQIH@`yZe<$72%l-l^azQFI*#pa|zP>(o&=(p6R1A@D<^|H!%a}hs zTg`O^x!+V<_lvbN9z_ZZEgR~{lA~kSZEB57?xEw^6gOFsPawT+_ z9oR-Jw(5ZW1q|v-WAbOu*oR}>Ws?B&JKsyTEsSQTaq{Dz-QGxE%^QN+gn#pN#V?^* zOh%J64Td_LzCDY_4xXeRA3dTDPLuSh(kL))FxqUaaZhf732(=5*hTjj+-WMYM+uc} zbs$V>01&fAQ+b!2?>8yXkXlhxUViu64{)yhkAwEQsWg<8 zi=vTokZbKG=~T0Y#>?)#P@P=3uO$)AZ5e||6}9+uFS|#im}x-x>14Yh?(nIW)uImq zy$|;{O2FikGA;QER?q*>1@Iq7mvh6p7`4zH+%UyWHFsi?5QwhD4&K1q2ZEW4Cne2) z=03^xlee?Ek!EMDSAi^y_HX>)kFiB4L@Lpm6jS9-2fQ6Qd;b|XnF&S1#Zppbo7ZSr z!;-a5sDgS?H+`BRk7AEaB0NX7fy(%XzKNS^e?fjMM?|1P}ib9PG?oPG^yFB z{l&G_cDpjzOR){nFYeP9^W$rxj#)IjRK$C~5V-tI;AnY`ds_n!5fIJK4h~}UM-wQ> z8c`uJkiNpMt-4O%&4X;Lea3R)=fggIxAnt0_j{OLg0i=`#1&oF<(2WL5j5&Op!OvK z-u$K+SE2{6k4sOK`9zaR5*gzcr zm`3b>Aj7ENICNqM0p*g{wlQ@QYU&>y5(eBT+utrA=#8dyc>JSNL&1hgO&69NW=l&@91+ zg`RbC?^2E?>u)-eyup1A&e4QEUo(;&j=p&`ZI-S!;aI;|3Z3R5^xB&!;o#s{=xC7< zL;CpQf4BaEt%nAsN()SBrLq7_QnPPXCK`Wd$a|=qR25V32Frma3a4VJL`gx4AC+qPMf!X&t39Hs>LzRdG!3; zB-0D}0Br#h7@;FhQZmL`s36UI^sjd(WQ(W<05HE{-26kIy{j3V-ht7|)3-BE!`h?9 zPy#Cb_HDW==*DV1OEBpaC#Zg4ADa{-tlBO`6;4bTgcllA|!3SPvJ&2i{ zxNEzTBnv>4ex!9bkh!0BSZCZ;KfB%_^~bpNNX=Vot3ONN*=SF+2OS#Jx_P9i&`th871w zM4a8s-Oi~YH4~jQGNaLK!U~0qf*x(1qwNo_Rl~!6UR1mza5uKLi+W`ZZ!ZEqiFA3_ z;uzg}P+7RUi|PNar>JU(SB?`4J#=VDadvigJ(?+6_0Y@9OG{guF%vM5r|jB_wX>Sa zSarbA)4vV|xT4QdC@CqKB_&sxdFNOgEheEmVyxZO-mhE5=n7x5E8eRnhWxPgUs~^3 zGpIoIGUBD^&QnFQkoHENXf1$qsu@>;mIO&?6at@Mw2Cxd7ygS;kuCu~VRR6|0?8AbkZC!<_-ks|a{8 zo?c#R6i$;;*~pm>Oy0o2^tb#!Ju0_|s8CoGLhbkGkLI@L>*w_+NY+JoBGlYW3J*V( zA9l3Cjly(IOj%UE9B+_WP&|j7WBtpXzdSp;Y#=26QwWsn_16>c|9hZh@&423@DC8p zdpFT1PaN3H$3#w(ZcYJ@rnDu|l3VVef`dEP=N2EQvp4F`u=y0cpMd3-*CBM&%_}l) z&?OgjFl8k%7AX4U6VQPr=$d;X&&N4U_NA8C8d32A;y8EiAKXiXX6avmBgQXOg}$%< z3_3DaTUnmoi&)6HBZ7ZE%zQ+=MG0nu$)bvzQr*r0EREGE;#%D)=n;UYUG82tML_ei zLxDn+yB-t*_G^Ow$}*y7RvqZc zEO_>vJN++%4ZQ|iO(cz3PkkFF_txYC&U!J(9%{_@gP&0J#vQu#D1v+Zo0CEm(3>}) zsU+m@4!YvQ^yusL@?e@-?|fC5LIF#zizJwbl4-GdVFV*iF=;-*$zQcOA0m1KZ3+&E zlcHb|6x7uMl5F`;7l;1G7Hwg(U&;SR@{X&3_nS~kLm=H!ACEhGX_hqdi^;1 zYS(xP(XV<~LMX#SX?=6aD=)ZU0*-E5e@uV81(a1sXFvb(U#V~QQ$b7)`ky?IG3-oA zisKnTGUZDK1zg}n!nPoSt~E-?HbWSMrBhq<=u7ud>H6S^sd{WTok=LbAz@k<%7>uE zNx|YF6!Pr(0Cp0&{LrGj2P_Q!U`{hz5BiuSoL(H256e9fK1ytxz1`p@o8KjLvGqnn zu;!bY-g|^FW|hhjghKN157~b?(x>EugQ_uL9sX@V+)>XK7%WV~xe3yB&2BhT))XbH zwmt10gQGZHF{wJ+D2QM-UWBNxG ztC6#w4m)B-MomzG^hhuO`~cNU^iW#ZX5L5E?~+{Cx3NnFLt7NjceYwspyO3K*d;qU z|69d{Z!Wr_O~w2mR1A!*-$jxlBAek?1dy_ca5qLNhnY-L>9*jlE#aKV-{4E?Yv=-# z<}-D$*W#8&Ww3FonLY_Xo%z3a5>U&|#{3FU>AZoCDxAFgmWGdSVog zWbtcC8F1hDnT(oNII}yg2uYAp<#+Nz@1-ykSmxUeT0uurd>Rpp_KBy>cke*LL#QVO z50ISn`w@)wNSU~G-hf?Gh0T||2DBNI?~c+?Q!4>V3?zXeC}hb1Jt)2V{)L49ZSDS@ zb$_(=#**9RH3pzZ9-(^XNUpjU{g9xowXIpL`E=Ds10*HN27Gn5ozyFI8sMHC+ z)`p=0zE2JGnhLbOzR~aReCy84%*rS#nt4HI0lZILz8+6cm29`aEXvEdwd}3~HRYvexFvVng z!QE0h9fZ21Ynb;dkOTmQjtje4&3@OyjQ=vQuT#4H5gp{M{;2?@Y5rBt#Us}t;MZ?$ zLprI+Js6-IpA*+O+4?l^`T;%J48G*Z-WjG~m??t`VIH=jr6ik|TukOk;D8hrRp0o( zXV$(sO62+zxf4w=nJ$G`^%&me--P*Ya{)=G;Jr&@Q?yn<4*_<7vKDL;Rwc4F?CAda zLcUU(s|$ftQ2iFiPh)3Q?2pqnJ2)*eW$;hS2jqJ#S=fB{ zXF!Hf>`8p)wt&r3Yv{qF5*bnr)W~@qmMiY7EQy-+U*??!=;8HaVMvihIBaGjQ7716 zQo)&qc>Vi#_N?S&ru*#fvwriK1B#~$7R~QvUijl~r#<3kZ_kbf0-#y{pdjn3gWvTd z!1>Vpu~iB$ppCMAZ^Wk_=YI>QlDSq1Dg}uAfD=ai0{XPip#Xf8_m@#XAm#4vt_T1e zL7KX{AAmhS!Um z5!vy0uN>u|C?HAp3eZ=PsB!X-DJi5z@7_iJ`{&KB^?(+7xi^^%jLhjT7+k%$7yj?& z&6Q;3~b$M!rG z5y6{ZLHa36bpN{y8X8g0NJ-dsvIPL983EYErA@%H^4`+uwBK6E%awM9%Uw0IhaJF- zkxzX`3)cmks)3Q7FY}`U!^L$gNq=4jfP*H|v!41^&5YZ!%xsIs0iJPr|hOjqn#lI&Mza(wh#-y}>H$ z|7Fp6N)thQ+uMZt$-rC8_$mRW#yt2O4b;zP?b$-}U(u%s4a`B1zxU;ZBQ{{8_Fyg_ zOY^~002j3tf{+9ay#QDfPbZ)PxH1oQube%EnDBq1!!|e!)8+wO*8l!WX_N}`63JZ)&msJ|2zhE6pAO4^PdyaQS|!?c*)a|=n;bXv8Bp~v{8A&Wy76&19{9r_#fzH z$chJE3S?&-csa3U${L8eLS<)}yhI5c9KNW3d=Fh3mx7ptzU>E=#U+vMxxo5+;?>1F zmj9%aNEilxYt+`r_2hXWfXw`}l#EcB7%XKsd<9Sq$m`E*Rj_%75DAbR-uh26#Fp~l z58ET1JX;^;IsUeI?()MPMiuCp9yWp68Q-1T8a9hrGaxsv7HTl z8#o_|q4+U&gjWs=rpqk_xQ*VLR^gd&fVxNrK@9GBx}uk2F_WyTMP_s*ju*q7>_in` zi-xD+t8STJMvU^7h9u_aYal%r5O~*Y-36yB1QSKwP}yBZ|A_hprY&CiXIW>NqEaic zkg%o^TVb9MV4MNxOmeHb7~K{Y7XM5Sc@fTx+!;eCMuHWauEgG}A#s(G=?;tyoj*Q# ze%N3|<3o>znxl%0&e+P@0MC;95PbHz zpcuFaLDw4wJ+OcDI{CxO>gb2R^I;i}s~3T0GKme@yY=i3Fgq162Rr6=hy(VHeoQbc z)IlLGYg<_0b4{Z1<&1Gjd?egSn!FO-X( zUSGF(otT6AjsnF@<_z~=KfpzG2n=lJW`qxo#RI+O{Jdv!9JKdvM8R;8*J+p zV3N-$xRPE9oO4$e`u8s%E*-a7nDspl7!*1+rb+78@ww-4gZ;1Bd*7AO7CJx1(G5d$ zjGF+zL}H5Y&Tz)!*jU+dg*~--Xy$$to6!Ei9|1!LynM)0bv9okeXUB_JGp|zgf$A# z_Q)^9=pVZ2IGP_ZI;CnC+2C`l?4&iI;1cM{ah(8uxcdb}*NMQ-TA+mn1*#iNZ0sT~ zwwnkjly{b>R}ObiX}*Ei;clAzF1jeK>W z(i0hkiHRxgP`1TXs+upE+iZiy8acIL3YuN*O@*SkxRjeHY+Nh}Wr}z(s?otPff=q* zUUqStNGm)k1;k-s(mmeX-dZG-gbY3qF#5X~=>K~Qv|@S#Imx_@8u;gWB4nl@JRYEZ z6wFYGoR^#&VKbV>08AAdjHfRJy)Q$~-b3K*+!?H=wZb-T)88tn4xd41KNah+bj6R4OQ`Jd=Tb(^OQp#|duyfNVbFU3+(>VE5cv zS?8^hG9^Po3a;W1Ys?ldu~oK+FU=_ff#LN1y_{q{^Qf`Hg~*N1e$vFRUjb%SUak^> zt2bS5mP=66cRp!S%b=13GJGOeripK`&*~ytJ;jZ>%;$t24_$O1))_$COL9u!bRJ_? zU^bCQ+FE5LH`4RZ?%v)4t7Dj@gM**#Bf{3YAxY>;vM57P>?_#G%It!Z{n4mPWthv(^(M)GQ1F+C2+up@Um zuiY`C)s*$Tp_*Wbjf~mMP6ZgjTf*!Q%tbG1ZOteuV#Hb>Ok(Z^Jx(e-a0e4fooM6s zP0I$mFvseJ&HedfDS9W1OculXrBAS@RCOjtm~nJ zD--f#N3Q&+S9GbvdGVFU_7D-)(I(d#!8Lbn4#Tx=a5A%Kq%N|6>~kbrC0R-2Sry_# zGl`x*sWT4M$KBgXL`Yy;IJ=0?kd3MN0pzsn#w>jYD7~EW5NBfQ_qYd0AhdKH{^wS! z!Ix^^)N}tV)kcKtF4l@E5ZA*`IFVm|5vMA@SQ5<#-<4$maaBQx+IyIUr$50W!wwCa zTJ?+Tc9sS|kzUlB;DruiSc_X>X0ev>hW_y$LDjxf67lChPj6M5xnSG{~dLhc}yZl`^J(%}09kelgZr9a(X~rj|Mm$Ly zzK6dk?{8O_@E$fUS}Xm_G7_CJ!W1m^@K2`>{1EtKwFT&tGgo8I`}9bO+i|Jxx;Fad zSoh0&-6u=q2zA{`UXZBp?dDe|+EEbjMDouA8c1I?`)FFLy2hIY+QyVkL$P_94snH6*O zE2IkhzqKY=+8W-4dF!v{hkurD8JVV03s%d%UO1nJX}nEc^LSa@U|B z5_r2_AWq>EWpeR+^t9e)bil9sk~V(L%WbrV-&5LY=|>k5kWd3uO~Xy>lO$`=(nA0b z$`LnI{CY27Cl<1ks!!9h1BGn!J_W-d|BGQZ!**{D0DX!x??XJ^K)Z;#QReit=qV{w z;olX1PAGQRH^jXBgnEFiFkZ9NzLE7ni+z!uo<6ueY>H@Fr3W@uKQKIwM|98#3hpv! zupKY(@A@Z(XW;QZcr{x?PS&`4SfR4tlhWLo z&m40Ql|5N+MywYy7+xNJ@hX$EvSNfh9GZ)#h;1XR%NB0!ksY?SLT}Jawyx%TS(To* zKPsm=3j8Hu>{v$cWbRQO;tf?VwO%6AKNEBxw95~G3*N6s5cnFfx!E-t0o5PpdS2{O zelpmYF~MS%Uv|3}1`?p8G&Prhx;y03mQU?^8rY6)2td^M*bZ__LY~*cdp*b=?sstv zH)!5=wWGWX4Gqa`8gGY*KLGxsQQ-YaW>Mom#+Ee%dyT(RD+_Q&5li(vX=!4z#Q5q) z)#|_)$93RP#taMxGQ=I;SKP{+^w(kZgoB`C3j6O;9%D5hcrw(K65=`rzPb z4;dEBB-Jd%SUI!bT6Bf&Pb+yJhxpGg z#R!Ah)$;j_m}6Uq#Php1Q|Dz~KoVkH#dlLwuKi3wFI{9!P8zG;&-xf|PPrlJDT9%k zO+C<@mRupHpSW&gqK!(cryTEZM%PGoqYm!F?xB|zKdhGjDeibaxQ?kbrAr=hA{&NB zJIzrnE=^W+$N2AI2CjL?fyjfq<{qc+prr*P9 zfn-v5hpoPP3Vk}UpX|m0TaZKYTDp0FkK!D>ohkn6>6ijQ=&TpZAoFU}o+K|rWkS~38UqL&Fa4i4GFk^(E(#8Z0g z@4zq62e#2E3K%p3H zCjW7JVUDoCYnT}2?}yZB?HyYw-8&e8U84{a67ei^;6L@JSBb#Pl}8g9eFm zzPIG7f!t#>8>C>TjDA1i=6Cul>=$0`E7#@`QWL=G_GdUJjVUh>E^NYC=v{GGJiTZ~C`9l8j0_cw)*y)d>#HjaNLfq4{oc*=d;2bplo2n7t`I1(Q z%s>g->S>d-Yvo9D{KeF2TwJc|vN$xLgFmM z34j&cNPeZg^~A{Fq!jOy&iP&}$oFZ_Q?9fAaF8x&Y{!U$wY1dAwMp}xwz^}HsV&&& zkQ?ZZI0T42U^~j;O(azeX4Cxk+-&y8e9w|17vwbwh&_FXWh>$HFhe`5HzBwJ2Xz85 z_@m9_C|DF*?DVHbHrf<3>-EmR=4W)QtgIH!piH+jBPtd&3Qp%7ph^bB7GoDkPv^5~ zAd+h7ar%O4<2Ri~^87wW#|;fG-ntEl0zi6MH5^ihsUj#V(R~-(?$6<+Bd3itb-^&t z?w~zKR-pGkBNR3mPv8Lap}+J43JsD>2#%aMSz@H@n~EuNN{XtM3r&(*E7!RpQ;w!8 z&sBF_Z{|yhG0knj^EKuKEvqBxJ?V$@9m{@)RmX@I-LTzkWx?JL(>gzX^dyb_pyba| zt-Ajg7Jg=LMk2&SMnU~Ze1iN8KuWa>43W%ANeMd|F?;PnH?9sVymO!KBFmUDaxK+0d@lWo2z0^gvZ<4$U)eBg>1vy1jx6J8%1)PdlOZG!v}(1y8<*rIySG1a5^* zZycM~C^3p5?@k);l5$}WHggG78bXLnIiG9JeZ1R=5x2{23ptuNHa%qXt ztiH$2 zC!#0$_wP4v-rPQfGT{`I-gm;_UE_27SA@^@Q`@c0F&_twTh6Nv)3jzuH=kXPW#0Z( zjLUn$EGd>0GT8mzGmsNFjSXG~RKaEF(2BMfe2GiBy%Q}0sO?}pqRlJk86)AHC#6gm zp&hsQs7cAmA#-^nAC=#leJmDfLUOUDP5fO*o2C|n$DA8iXm5ftvC_{OTk>M`r`fe` z9MG-h_3Iq6wY9Nq0wF@aS0rDyOp4Q6^A`_8hV9MW1PU~UL0cll;VlN|?=b=Yq${u2 z1(b(~`T!s4yj@c;?EFVnciex&(ss1b;aANn#G0kDLx!RbMx1#meNm16M0NXb=6LM* za`Jd$u`{6IU+!rz&|d1D$WKt(VR#pPm6L$1MKZI1E0YXn=}`^&cfm|?#X9jWVhi(O z-X5<>iPE9&E{5Lott3d`x%asa$O(EL*0@zQ?2}3nTUeD=-VgkVz)XlIPDQ@S95fK8 z-blq1TN;Md74uSR{Dpo!svj$~yD$0ZRyH(}a2gJ~l%J?Jr9l;PTRlp8IK#NOyq>#+ z?$Pel2hKx%_3lP}%Hp#Y-qJS_TGRX+$1m=e0{?32`vt`U znFWvJzH!^8hT3t&RnJXyTR!gs zWM_8f5M1ckOD_m%UL)VqxevP>5(x;AH?O=v?E|pG6Q41pz{ksMxG$MG7O*EMUL++X zv07Od(b^E8yu7@R&R>$)IOKQXn%H;n=0>wOmNau4S#P>daLIkeb> z^KwYMtBnNy*D_y{-pw{NL>}O00gVf6A3F_cTtB{5VGz7xebRp~6DkU>awWAd4DNlw zs)DS5pjVul5Klqp?x_C5W9&%y>uftL*FiO~pmbl}-bwacvd9C`TA`wis$f`??;;-G zUk++51#NkO@j#y4GfsgftT$<>mM`tgzLa~zQY{@kR`lgZen_@hZx1Ct!$rqMM*#s4 z>$6zeWMD$-@Jmu76%`yF9-al~uKZBzf?NcU(ng~XgKoDp+$zt(N3J?EXFLZwq+V=M zBPfKQ?@+9-nz!He(t}@Ml`ua$vIg;*wv+C)uLGD(41jTOJD+huY37CSYcCdxC-RHR z7F7g$x@nFJ`A=H6;^^G&r&V}47Kqs;bc0c+;wC6rSjUxftX*Aqj_T0+iXxz6S;>ka z5wQo;V9JufOR|Kw)cf_s?3#qQ|HEU+MX?F3KZ;y})F%7*zb`6{cZbfrF^ zSpdd=Wm73!{Hq%H>-B3tb12vnSK$20M)ap(jj?<6R@2sU=J-{&Fjp2$i(6pVgbj?k z=3g-TE>H<`Rc6-0c7IIp_!_~&!p1;$&vJSAvYYoO46Or`t++S_uZ4C4A~iwfesLHR z1mR!?#APDCAj;1@iQf`%Y3r~VOV9au=grb>QG?Tr?k$CD(Sm&B1mj_6Pk0+k^;^cf z^StB*JNudA{Uj}S0%MYO-m}DK7Z!3|&o4ivtbC)Isl@pZYvlF0=_eua6sbMwn*n)n z1>1c`Pg>H^97Wz)11KVsi*$?7UtbkIM@FKinKV5M8NpRoF+!H- z%BP)Rl9F1h*gRCtMuqN};BUk<*GGSsm|SUT6~3ppuRkPk^AruCMUF+-Ja$Hf-bz#sW;O1TZeV|p`g90RW0NGFkKwqU{B~l6s zE@87RV9JsxkHWyuHw}SIl{tYK`p{>h1v~n0)7BrFY6G&FUExgcgJ8=XpKCh^gZQJ^ zmQjYxN$nWYqJ^9=XZ<>$FVGguGtJ#TmnY4Vrc0r|-tK&1>s{1(0G$>TUw!S6;7o-Z zhBWX+O&~p=2kWn+`D9+BhUfWM%qqm7pJ1%i_fCEAxc3ViOm|<3a#-sq+mj6mw;H#W zzkYp0u)$M7xMW~H6S#FhAZi03F^vK;ng{}WkVL`K<#Nc{yLMWT4&qw4b>;FoKk%eQ zh7#eg)+NBf*tmwcI1>4PM7;+%T;KOSJZgyEqeUlCqW798QG^QkxdyLd}~Lb(D~ zVr1Npc|V`m`?J;lrk0)@W>O(tO*OL(V1v_?O+5`Gw(Ban2d9E*C+BAZal=?8GIV?y zze?k?D;4)?62{_7+1S@=fqB#YHAr>YE{?M$OoL1od#z|3_bXmhlpd(7ltH&w$XHLD zmaJqu#=QJ!a4q=WL;wlJbWxY5!JKf@4c@tus3mtLVqpKWzq`43l^gg0z&!ogmsCd9 zvf|oK(E+Mo_Q#krTXU!@tb8$7}v=j>OpF3%@c&kuu;HD^GO`(hOb;;O* z9gH;Mdu@&G|Ee;+0}iXWV<}Wd8)|ro6<8;c$?Proi6RMxJSxoOgR}dQ4h@<_)y0@x zimzUU1}+Ew75nz-%!(3y5;sIKDc#>tjDdlxsI|3qdiQ`IJs?s0!tcp}NyR~>e@-2A zv+|iHu;zlnTXT6Q+k`IudEA!2J{iR~z+MwEcmP9fkihn2jkDfYD~R_3$b(r@nIR*^ zG{c$9)69HL43xFf7Qnv?F<+G&7i(yc#m;IJzlmb8@nDUeZ8!+HQxgjBbl20Fed62Z z+q6}D?6`?EE-=#GXV35iW=sVuf7|Th0q26Jp26im1<^!%WbVar%e8w4pXI%je=3AG9CS! zcNUmfWq+pZF!coAfxjzNR&d1HcQ&)WU-jY6Jm3F6M9KS{%Tg_;;DIJY2hp zEbEQ_*&HHV*X{GZ&VO8!Hu+n~(qUL5-h{InZ0^_)LivLx^0b~_DG(>Km6gTws+2cM z>PQ)=XaH9q$M@Cr(O#8g)CxX@Y<{X-`Ts6_t{MEA|85?*ed5i}`+FWcsgekr`FPcm z$N&E~3N;`-k}Yk&(wwQw?OG8E|MzPZ6-%0cI(5|cNZRd>Uo$EYGO73P7PSOB|GRDZ zBxJo!)-C%Y$D5FyX(v>OW+hN@49&m@yrZed5&D1kHJo61|J~5Sw)8Xdb@FXH zk)g$ki+4D88_=(d#Br`VMITQ$G=iZH^ z*GDLRW5bm{3XnXPw%ZqqpS+!-x#5t=V{W*~RHZkofWXg9UNc;rKU@4%tr^jVvCw{f zZEfun_67}&n)N5j3yh1b%~Zgju>$_gZhQ5}fS6j{*=DJF#?Q@W&QA=Qr?=7Co})o~ z2^PEE<6BqbP3xccQ=%5_jp;+N2vvM(2Jy!jMmePDf4sJhz=Gx~7KM z<3#&+cPwM4(Hu@vm|a650a15A0bSNuco-o8O%gN9XHiz=SlRZ?%5sppam|krcmdJz zwbsgX`x32&>Mpq5ge&8B$@ih?Q_oV1meC@#rpOi;?6CY1Cg^d9Zd|)L=3d2r_@AhMw zM5oNxO~RoFZQv@y(EA}_3C~NQ0mmNm=4J?YIZ6X0T>tJe4j2GyaJxq#nLO)q8qF%6 z2ydUxB@bvw9=1auJLRY~tWg#2Wi^KkZP(g^D;x1dQkz#3 z`fo`sMpC8NH8ap(DT8QPRlZ}3fDAKqaESh7p;|Xpoc!y?Ds;-e#Ko1?)YNcjXi@k6 zvtU4$%@rVV2~>W&wrqTpfE1R53e zkFF1zv=a)B-ML{u$LpM1Pv6+E5c92@Lxcc8 zw=eObAKMp4m%BfG0})}oLtem9=p9Mm-#yQW>kbSgTi`7%)aV$#e$(2J_U^VvWWq2S zu!yVk7JLYDF zd*Je-!ca(G-`#9FS{=UU&+U7StH>%QDyshukgp8`8X+5!Q(XlvPlrUoDx#tali{x5 zp#DirIYn)z8}{vc&nIywR6ItE7Ni#W4gv6~_l83u8oYI8<|32Beez|>t3kO{OxhrBgLDlZ;_O^yzBJ_z zR!f}tN3XKG){2VAZ=Bnh9?gC5%f)SrnRNcI@3~*5uBkPC9NkeG&p|~^ zQCsr$f5y=<{4^o!4zL@4emATKI!SbF=^|4y_${%`popr<%CqL!HdKFKzd3(XP0$0x zMaaBnN)Sz&^*LJ?BoaD&yp{s~z5Z_S6oC*JsnV;iT>$y>JnIw|$+FCev6}I@1ewtZ|)1~{qGqJo(G2_9$pZ4G>^~V`zkgK^>C@UAvLm_-r=0^PsWe}BI-3qClMR*$ni%s8WEmLi`7}Q8a}sVZV|J?4F&6$ zpKpvze>q5gzikUWVW>4izFd5A`)XZZs&v-N;7Sr}^Y#{bdwb{oitbOB(n804fqR5# z@b$q-_9EoViMi4xRT^M&jV6B4al}R*VQc3K!*A=Ak#;Psr3r68<}RL)Rown2crD`N zs7x*x-0UH?(1=*|$lZ@xPeP`&0O(jiyGI^+Y!GCmuRj0_yafQWp)?3QKxOVM*0I`h zw@i{cr?dzNm3hb7T)PYEuP# z8{aA?%T3Id3v@_j!8qUv*V)l$2Mj4g&~~vN-U*8hvd%k!f&e5Rzx$4QpJ2`SiTGE7 zg#}17!_{g-FWdV{WfVsqD(C#@_Lwi|D8ObsTLn-`iEsvnhgBy~I;A8)wrCobD zU^DjeN@{Oz0%OA4e)7mn z>?w7BNb!UO@u1ptt2m;(O1ebo!&NxF4*8R0#5BmV*nD(hl>9(vo8mi^Y*#RUVjz}IGJ zQdif!jtw%=541!l3}@y6L9#)zu!p!$aF)$P7CGfRnQKJHRoMCHcidM`tG@%go81)2 zM*YCj$kXmPVk*~2r324Sec^XZq&i}{wibRC%>7X;Lb=bGkTZI~)|bd{`&>WpN8(~5 zzH7&{O9*h<9!&dm0ysiR^ zMK!)0_rHv-x(+!-oKKf3uLWS^s7C(pTXXc@$h(8zGS!3GdlbmeGI8hyB=qAG9 z%PNRs#aSQNwrrQY{H&K^{QI1*G;*a3LEdib+P6{F(525j#$T($6KU7>Ap>dktt$;( zJP>a;YXCds|7%+E`?DTBi1k;%g&N?q8zXeK(>c5_7kxFKt-$k8#bbnxJW)3$U%Y31U84}$HeUH zgEWAm!D*tM1ZKw?=zaX0k-WlHw0}y)G}(-8+Z%`o;*NDRU%UMNzT72!=Kpu?B^7ez zhdqF+%l_?5Mj?5Bp#aS4XN|+H^5nEM4magLkiS-vFHRT8kh%g8P1jUJf4>sgCdmBB z@Ns0IG3)LPVndHW>$fK`e~)VfMJmo3(=#b5&~!J6px5XUmo}77KaQ+kFKMQl1+x*! zuBTtl(_if+Y&&lOYRpR`0xMu7*31EPIJl%1mE`e9v`F#b_el&;2JtxArY?k&e*b}b zD(MviaP&peu>IZViaD~23JOAi^S0LOa1nOYUp4@TOzIRIqy*eZ!t%D$G)kARTm&Ft zvRh4+*Q&OV?Vl0aMM}8Lf}rCWRO_@Y+L3BN=Y3TJwg(+`mvQ+?geEGN@M^Q_6P&wZ zm8NpeH!rX+Z<oZi`uxd;8ue^&2E=AIWeQjlXC}9xC2C3`_ddc+j`#Drupc%15N{A0h3FFuJ;o6 z7mv4le?d>~p2NqB?obv%0)2gby!dI?btoEq>`QvFwYQ{9Y05tGq5f>0r1^=(mw^64 zK34Ya&B&=G22ED`Emb>BkU>9#7KaDL!-h*2?a_(9YS2F9(c1{ojQclk?H^WJO-FeD zoJ_dTN&CH1RZ$@URdvA*y_n+9j-XQz6g9#Gk`gn!k6*KD_Pb`>Hx~5c6(cLIj*g>j zW@*3vW+gs39quaW;zP1C2zIXK{w|yk09OI~@`B6hz9}}^T^a&r1<^&tyZ;h}ysvBa zG4iE8zY;sXk3nRhTD@b=>~X_jE!4rkRN{o1RcGlGK2ThRA0FY&%zPWxIu+;l5ThhB)GiRmM zYFib^D-;eN69XWh(NT3pMD;TItxdcFz?`g8*(!wv4Yoi`wU`HmtVTSSPC&E;%u{Nf?$`hOZHY|0oe^tur-x2H zKj62L-sgO7WG{N?$a}A?@mgvgaP;F<$aQvk)=ttMWb!q=0OybbWH}IbVJ`_ahLl`) znQ+kqnIJuCr)3H6I%2tc-M>)j0e=*7EQepaoKy<+y8xAXQ_hn!1l8QAEXRLGevH|4 z-7k#JXgwoldVkm@0<_x|@*CyV3lGC`0J%>hZ*w!FoL)~?fdNS=-}XF{&!)HmBeQVA(HG!Kjjy`o^} zzm$?gGCO)gsN#?oeZsc)sO&Ecv-=^2n+{Di9hTbZGCpQbx|}y^?)B7JV@ei&H2w2- zFX$zQ>S`k`ob*J3Py_xLJ7K#n$d$%3cgl%8jV@mVJKfGiCYzUyQF@TjLYZ4m#%Zs> z0PmlonV)I&gvlVV_P#_q^|ZJO`k-U_y`p0 zmIijI2~aQmqRgP7U?pZ$g&o}&#j5fIAMHmbk3#$xvzhM|#pB}z&k9%0AO8;vaQsXk zoGQR5F+?DQywJVWPX&w6{g)~PGLqMBLoz;^#W|-{&o#Np(DX%;t|lXfBQAo2Hq|8W zs1Wy0&qeQJ-PtdI4YZMdG_86xLyR#FmveaX5wc3RhUXjVTe-(4X6m&*(P|R30=Kwr z6*S7c6xqR3T4I{lje*o>n)j2?(+JwS{^)!y7MA`}5<0psW9&5xm=ZaurKOaiq4+pV zK(d52PPJc*IkXPNYbYb4(i>0H6K(8`WIGdlzfG0jSb-}-hw+@Ym&vPo{L-G?AQdV< z?VS{8CS#MQ`1ILH+W47ffIjlj5k)!4<1$^Yz|zhHCt7*v zkO?x%^SM#H$RkX788U}ukcv31v9tKY`6W8;Z#2sE>eOhpC6L~2isY{PPFQp%QOZ^V z&5u5b)x6edN|{tcgXc+Xhyk}A(30xqOKesZX6~6UA5^i|S(2ZLyM~omlJ-S_Q?AeR z`2a^J3A58-4X4H^lwgDS`?$@$HofH4(Z$CA@g=SuNyHH&_yPBF5AlHU90n@A7J_-3 zK7gFBvcRJLNeQfzs#=bePSTT}kv*64$fU*Rhsws&vW%B(9fkZ!*1(_TF#sG8bJH~h9g`D%Hm;UVTJYDDQm`fuEkh=7wI{$Yfa>Q8vS3oP~oKW5MLd6=bBchy%dD0?rX8vZb=mQ z1ycrc?}dA{vyX7PXumg3(V-U$4Ku9$5TEX4 z$lZl4J;p;x94cUERw1el5-Xn07miH$j}7`o?!XL*~$(FVYoN_-w%KgWkMU{L(>H zectK|$lKYn-E9gquWIB)84BGr865m4x}?`eqp-C#Zctn0N2Af?-j65vel)aMQ+pnE zLP2kX*{f1}7pBWO+dGAUL&;U0&Lt2sUkOc=-JTP_ z-H*=%2RAs*MM+0f0i{%Y4$Yf$B#}CDgK4eZOzM?#C?e=a)q-f3ohk#HH=cT7SULq4VsM>Fhtl%pqR5Ag5F7MHQu3*R1 zx-&4sfQ$4M@ChQ$C3sz;R!8b0Y@g1hUGg)xZ{KYx~>2e5oAa8-Wh&pK28$AglJyLf2v);WW*tS+{^5g{zqNeuDr6UXu+cY3AuXk8%+Yz$TJ%^zk%IlAEd`g zy!4~?QzHUQq$ef#@8NeBZ>TBHc&_AYH#dHch**@@Xn@!E7S9*cTG$U#LA#^%E*p-^ zm-DleHeC|O;ogaegFWtczXuYQSmx*IRWkC)sReu`iB)1A%x4+3%dcH{EgZQ zIE$w4lSu(@_VcyO%#gd;<3k!uG zkC~F{Im~%+$%TZ3NQv_YY{-5zW-k2+5*89}Fyq5yR3S|YF2zpna94LGXa!*qr1}A^ zyK1Kr-|gh}Gj?gEfWZ^zjX=zV_6$Bwty=Os9htrH%s*k1Ybh=y3wbGXG|k{5na<0T zE~0%PwyYgGlI3g~&pW~!LD>8~KEnw>(}5Ycm0!`3zqOrP{ZebO@|0gdc(ev)ZYVd3EtVRIR7`YXMbS5Wk|TgP924{k2v zmbO3JzJI#8ccOZ7oW}5XNK7;ccA*G8ten^c5m_Tse9zA0fBM_al z54Iev4+cpSl(MUrvY$)v7{!KZ;MCwc;c!-dt3|&7(c5HE$OogDs0mi3%my5kXfwS- zns8knENrqMQvgiFZj(FmZ5=8Dpf+kVdkL328!4yHGA;8I!OJeQ*L@<+KL}yJ*#YxjXrJgT+ z1}ItT!H1wfPqy)E+!sEb)x|8M5gt&lmH#&AkIBhbNN(LOO=M9l@9W<0>-%}IQ2$w} zOgfU*G81xJ-hTcc*)T-JwH6`-!1n3}pnynfGY8#ID9@z3N($1|0!)am%`_hQ=q zun&0Eq58wINNFht>;IvE<5bihx%$2bUQl1pUI)DVD^;$WRY=Fwhm0UND!BZ+_Ks#; z%$GSdA0Vmcd)P1sFn(@tRPzKndtO3v7Erp89wXZe8@+7|B(nBWfUkxYno5aRz;t=~ zC`V7t-BD1Z)P_~%6(h-0k~k$6b9{c%`u`{}PiP6G))(<>ZCkBYL1u z-hs<5{dhp4?`0Fp?}_dF$cb~IrEO!=ijBwqH_XCud4gJf*OB`d0lk=O zc;VnxB@icOBH{p`yv*6Y#L%Z*LR-}#mx0l%m$Kf?I&Wc;WJ}JE&Pw{k$rSZZ{b$c3 zyQkAT@2D}ZtBe<|^_9jkB}bq?2j2p-(62Gn{RBgYqlAx1_|xCS%Zu@)3-Xq6Q3+<8 z;2N_}(bwZyG()TH5)lVBv3OpIi0eT!5c-7?acF6(9=;#FC*as)c#@~gYOhSbg1juD zGX1=sh)i*-M!RI~0>Q!XsqIBD^%|{G965qBb2`HF!` zM{BD@1m?q8-owEh)YO(gRz+>M_Ex_kl1u7tULtig=cVsDH4JV;pi!mwZ%PsnrFvWl za6NYC=H}OKLkQkDMZVP?lp7wr*$Vd|Ujq{LlpL4NiEj>;n8nq~dAH}JVSs;7ivt*XK);IQ?I%Goeec}D z{^VlpCN)==5hkVnMadiTuQMl?)q?FE`}kOFo^hwxE%mhX+fBbiQws4eGgmu7^i-9! zhindh^w=G7J9=EZBZohYZ5;|)`u;TVhi;EL+S^xv1>vx$W0~`eHcX7TQD^{zg~`W37b_Eb7Isa5)=U(1E&m*-nS=R7oEOj0KajQqFsvOw-2X1c zEaS9WkT5bw%$HM?yDe&R(sdwkoRk|tG^}U5Vc-DrKu%c zYUK2GVJa~Ac=+jmvoQj74*-uqCH-PUbdDkF&W3D2uw^Gi+SL^zB%C$nZ~?@(=~>2h z4F=8UeQwL>Lo`&QfD=k?QuB7j47!(6GM_(ZF}eS&NsC}fZrW0rs?K=ywboW z_3&Ud%6J9r&fqqKL?$c~cU>DiHlz3$b^`6K_|E6)x#`ONL zdK=0Vj^XPMmcELG%J7uFnb?lTU_ibP=mNr_7b!XMji8>QokkA&d(_JM_^mULw_nlt z;AS0XlJrm{XXDdG{PUFxsbjsF$STVx*X?nqxC9aCh~Q!4!I1c+p(7_{=EqrKRw%x7hvZPg{nF{Nq*AR zoS3K(f%S9JiAf7;d3Ayp5Ll6$SX*G=9IB0L9#pU~W^swhyNUOv0jxLhhU-DknnenRZT2 z{dSW&fAchbfdi|FYZ3uLayWMx=L!&Y4>=~baD)36RJN!ZCw{Y!@J*TvMV#^;ZszyD_YzmLEuC6) zuv}V)b}+-mGZ$c^p!d`#{NUUjnL2cV9mu8{iLZ$ zx%64pVAJ^8Z&BTS(a3e8px+I1E`XBG27n6cGUEdT?YiWNqP`j7GErvpreE)9oNgQOzu61&+FF5 zrEnN3+mCFBU+0SVTJuNJ9#`fJ#cify9Jg5$feQ`bZL& zZ77w(JT&DiqL$w*ra<~^DfN)&oA^c&8qjJ1@;->wU>qBW8wXCJH{(h+eZ9R&bov#5 zBoIlJ-Ye+rPp3xW{OJVp4$R;$#2D7Pv2-%-L;I(A%d;XwpErDxz~ElqHml=j&urbT zk@T@=#gvZ0yulUOG7Y&vUg+O43h=zdv`*s$ruB8io$to&aXZW1M4=+H{ZH0RB8F0x zGM0koboPon=jjHM%$%pTgg9~rRlPt6H`edQSX>baDoRZK>&nf>reNxZMG||t_}4Es zTrS_E3;pP-5QXkEU-L4Fty%UI@A55Lu}D@*ALnLsJTmLq=typAD}ARK~b}`V-+2) zMun^XrL4O6E0N^h^)Irw-E4_h=8s9rzNOzbckCQb=TQd&(&OW&cnR)iA%AUmNLZ(| zA%TK3)YlKlTTaMjx`NwE;X?b}kSXl?oA<*nj|frBd1}o~l%H_`fIYmKA~{TC+kD*} z_Rha_PWnvpIe+YmKb}dr+^2inAjuxXa5QFl^hg~3H3*?(K)(#@SJG3prGpRNu(5TR zboA4vz9Q5{$zE*R#^q8q8K?>2W}El);Z%)R?CCA=ejX|cn?Ce+n=|potzU@QOV*q; zJI=S7-s3ai{_)2Hcqq$7o5sIM!g03m`Zi_Ou#oUwkMq?lJ|R&{!K_I5scKT_CtOnW zq$Ho~^@u>o(Qn>Wy2>WFFubzVUZGOs6_liR%&@Q-brbalYu-@iie8MdMXl^7>7V0k zfjg2KtRm9BxX}Bd<8uWuE%e&amqSDI|Lj92le^H7t34so*g-eP!ex+eaR8eSIZb0tWv zTDgUxK@fmC_^?mkEwni>q^W>Nb4cQc;o+wrQL)vQn~sN9J(j9O@>Vg7n| zr~r_GdX46lruq9>w(8?@_~yv9PUrirrpBsI?~Qk;w6^ulv$x5%<`#W_JhEn+F}x>y zgIL!&xu8QdU31-k)sD3A_=pb9;bnr>`~bT>szi;eyBOB3FRS#&d*o~t3hrHi9XsS* zwyDa2q6azkgFWNmvE15%Zlyx)n~28Ja18&;VAcX6ocviQY^DP$QTEjU!3+TDMn|V! zsW-B6_e@c%c9R?aAoaYMR)CfN-4>P949Gu8vu18f!dv~U1a%_-6U0!2Y+nd(7G0m) zim@6zNAbY_U$yY~Gz-Yodn9OXv(40_fTYw#Y}l<1ES}=4a`H5(f@%Q1p`}i5V*T#z zQv?SYsXvh+1PyZ@gpns*U=ap6G(Wp=WDFg?SbPWNX^oXlX z)XgRmV@vwH03k3Tu(0>s!s->bIgKEgT=(Pmv=a4}X^yD))+Zv)`2dy*i|Wt3cmLlL zDsVvJ{;}8dF}%69FHlZ6##gFeRb)4%>|w0t(|a|4E)38yDx94ZI8>e#7Pd>&^|s>cx+E*oc%-%6)Ds% zgqtFY)_@YjHG+<_&6x<}7t_;{v5CupZC@Oc;~oRjkd z>Z~{+ycHFygWEg0H~kp^h9XWLp#wBaEV}e{2+`ph&6C5OprZ z`4uwOW3EGi=o-MAV?nXObNckR^%eU>{|AYGPja6Gq$~f`;!fy$UIkM@UY04wE|uME zF_!%+)&9E#&7l)e3qAeFMh@?ji0?&dW(3eaX&D&~JF2LAe`;2&Ruj9py|?*H^z^#|g8#QZ_i zTtDIjC^5Hx;_eVE)$}$z!jpd+{3sK}Ne`x6{W6K!Z(~J9k{Qg|#mNb?23l}!+}|GC z0v}&dtb0XO(gF#d!wtFBT63WCtk`#ZAnOXMoLz(lo zF1%&8degusr!G%Vk&f%f*BFUuxk3ILs}rWw#))>~50{%+M7M3yoSb(BvZPYQn9YL7 z6&VUj$og5M*cKqy6ME?uTB%X;78nGDWMxG+TUr6@ z&kpeh+uwgki&6!r^9TCDvAhQHKmEc$9`cPBy_L`RWQKdAl`NHUN{(9wTt7)n%3U{* z3EE+$a)i^Qa+t9_5tex!;D6EcV*kEz{h{7_$4w&}$?%{~`U-@WD6c@S^-`Q1OOeay z&?uUs*TK2re(~GNFUz32+18G>{mTzcizbdsCY92YUdEN4(T^4#9Ov|AE)@T;GLT-6xY-kt>bTI+> zk>P^?!qz9_OtWyN>8F8|pL#Hmk+9RMV{|E5)U*s*bcu_p7VB!ByTcdnupkY%B-yuU z?Au)b6YozGPnC_XE0T_#$%$*i&ma)1ttw+>YEeRtH@UsNl1H5Y57F5H(a{aU+iA+t zdMM}}8DV(2e)G&#O|3|t;4c@n{T0yn6a=Dr@xId$+VRUV$WA>290lB9T642l9iVgY z3#F&0hYsrQ=~?-OsUIGe;9aIU5CIM%Al{9)8ETS2pqzhMT8uRpJQSt&!Ti>oKF-7{ z5tR1cu@jxb?ioxRXX{;H4XvU7-6C$dxyJr~_hmWY^kGw42J00cymX3`I<&h-%dKLH zX&=$(O#2T?o62n%3Mf|FjQwETz*s9nW~ubI!5IYv>h$k^V`5{I!q=X~JP`oFQ{D?+ zJM|`@9Y{U?TnOMVgMDATZ|-!}-~)*~4gh-Pg+)YIB2TwJBoo$JEC>kfjERzH8Ai%h z8-0dfq2B@ZB6OgJbL_Quc6A~PKX1{}`WQ5MjfMAO_M*f4%PxO;iuNE~;N_P~&6HZ zUvYNq2y~2sDLdDVdHxREMmG}^h`)T$T)gKZ8R|$#d?Lu@{xPT=i432HV}>FR2QRYN zo(LX5KyoJ54e~<6!^1eD!}xT!|HA?-w%HgFQ!@Z)`+>|5hkWFf<;j|DnX(IiS4c<* z>x&nJDW{a}5BG?Z^XVX=Yt-G5fXBq(zthv}F59D769ipQX)>E# zi@`*vo}(tZKU>Ke04G=>A0Q@(0-9L@EC{7VKm)7>UiQb<#wH1%uM2*{CSb013QOZQ zqFWax;t_A;=re_*3#(bt0d+Z+%4JlOVdIRTfl8*OV zZAD@Ro5Z?0R?={2=AutilCZvsJ3p&BuBLm8Zw0O=F{9|#0HsqKtM!CZ9Y(E@uH9>;>>?MGj&CP8(uc=b~kY3RI5!RL};$oCG^~x=gbOU~&UZ z8RdL^#oJH|^|m=5b04lAU{9vLlp`Fe32unj7VUA99;LC!{5Y2fGr)OMzuy?=w0LTr z`L`cn!tU%JZES9mh%!>vE0q*omeLsxG%|jWlxSaI2098RZlB8 zv)VoC%~rWuZxNrEAH#Gsx~O!F)^}a#~Y{*htVKp zVjkNDtrDCU;`{}0{Cog#eQSH$ldnBk=2g23LIxzKrIi5m{sj6XC5~*T3);rr{aF04 zPalmnPTLokD$z54R^`Ifzaz@QQPv{`D3qrM=?j2bbEWdI=yP!;W@bhK+FHy4 zZIrrf+s%O1Yn1G}-y%{*x<`{|+t2=OOm9t1;{bI@CZGlg$bFarJvs4(dzPQM0xDq{ z5}uqOpchq?$!p*l8l7VpgTIrBg~Ge7%ZF?lmf7V?#UX0Vu&atb7M-YZ*^}OlGH#Q2 z1$KUA-!HVp(NzeSo+jDD;8NY_h@+hNlf>sffF&{|s_+3e_#GK|eyj!p5iLtktVx5~ z&nNK={I?4Y?*Pns1W;o?h>avWHgFy~t0tl1J3wEXnyRTKGwdV6LJh&yx9B3a_4LV-bJ z;^o!Mdu$#Gh-P`2%DIHns{m8-uL}+a=wnNJkC1-?8J3k4&N7-A8PUVYmI9jVI&>~ndO9E4 zY~Sp>=OIn5)2083cFT(;lGgD_US8fu!VPJ>V398e=!d?YGjuvHz_3wRE-*iY^b%J4 z>>fj4gx~AMZ?xGZr}Ph<`o29p)?CjV8 zmey-}|H**Ii-7&CPnn2!3#tKD{V4RqoUH?U2v4M6`n~s_6 zj^{zaaKb}ce-NlxH{vvNX`W``!{9Jya9!gZucdyP_vUKg6@8um)l<}^F$pkI7zvHe zX8A$!aT60#XZSx{)ElBh22!Jpw<_Z?tP6XmuW$Kqf9G{4EmD!^ z`8vzS|8Z#1c}x4;<%G@0w^swMwVYU?ju1qqe(Y=;J?(ZOum=h}31_lQI;UX#_H7jL zu@2J`*p%C|h2g-$;E<0XRDAR14O9eP7j%c`sVNgF?SD?SY*=qY9q^`XZgw_g=o^~p zEWD8lm_k+_o><{7po0o17*N&(54RnBXw6_z})5ikx9~n8`fHVSr z;2TZNCdY!i?-PXB6ltl>UlmsbMceou?{eN)D!B3=F$5kZe_`56X}YhQD5ax~RR7tP zZWA{ww+y<=S2czs!e`?%t3wDuz&hd&D3`f@HJ6;zMh5!3oNYUAPgPA(yI-uH?KAKP zi1w+W1|(9G4h@ryx|UoO&9UX?1qXM;KRw6_mNNN${+fMF+dqCw825!SN7qrz?|hy% zBconVRK&KA3uaFc*zzk?n$Rxnl67G$F!qR zAF|9U@%e<|pvBzT71AcmF4SV2^r>bGhOsM$dI zgCE^uUeimx^Ew_3twhsu?EQU=2)1|ICCriVGw;g-`x-kE(Hjk!U$xL##SMc%g8|ZR zhLF#9F{R=MGG%amd5t5*H`Tm3{ldTc0k6T-XPs^5_mm|Re%*am`QZLre_8nAjlt>r zyi%}f+0<+EA?Le`w7pHdd}@gt%1_vzlcS1;WL+tz-Z5|wJ_Zn6!O zogP$TYzJm7SwQ84Wg?K9JIi|CNp?g>%lAME+}+)Q0sFDjFhZVgmSB_dGQ;CUM=9DJ zmco(}ZZErsSy~HPRI|Ib>no{$xl3+E-u4a-%r1=?(f|HzxPaBLlrp}jr>FGE1Mvw7 z!C)Qm`sU`B{e3$^DypcJl@%4- zZdccDudS`ZQ1L=!m?g7g+l=GTypHSvI&Ji6KHdA8vON}%j&0eDq9Z=^dXJnX|$3J79+j&Q;3aWjfOQNb)Rz# zE`(RLwoDi@GV&V}{gVT*n$&!#oyCL{U?Y*Lx5QVm`xXQ;aU%o7Pf*JY8UsNXf{eWU zf-i2NcjCYX1}?6g`htHW&pZ}zdwFCz#Kzk#A46rjRgg~x^JA51pbva(=eO`4g=~9q zbUYFdgf#5)q;ZW=Bi{{j)B1X`d)$4+*`V3xufau~!)(ae4x1fK3l&#_i$0uKs8UzB zFBxo>rmI>_CgtTCV+ zj9}1CHcQMe4t_!F2%24xgJwu&EnnJcs8W z1|79;d{d3r9+-+wHsqj?t@|+RJM$ji_IE)VnU$C-8z6%>wGyZ}FJM|;+02(~f&rZ5s&w1;r|e2%0|I+}dJfV;gc(Err6k(O_5(+BngW@-{L1o%xNRY&e>}ih%*u8->w&URqjO zu|WQ9YYFA<|VpV_G7MVd5%B*nw zBH;2lEtPOL-OH6H4%{b1S^mzc2j(45FwW?vm9Tc5sO=ECkR!PJo${tuF;|$fG`(;T zXrx`%dT~GoR-q-Yra-Y#vG0_;&AryRHPeocJgsG+QaL6_$jF!g8Kr56ROc}A_DERK zcI&f8y$^Qdo1V-ETZl~2UL4JM3UA{2f`(zv+lp8Kyvu@y*)B|g-3`D&Pg#-nFrsz5 zVgCSyuuM(yhB}^tLA0!v>yDIuUC)?nufm$f3xkuC{tlQKu_9&F-Ag%wd_<4A(7RtD zqxf&g;R`S5R$dhr@md5&Z&jitM**&k<=}AX|uILi% ze56vjDs zj(-m)H^)KRf8>fLXb=m^vOBl!pH9--{crz;`D?xTyF%*H{A0v%cRD{kQZ!gW8$6m4 z9bydzC<0(}N?>@T-u z>vUst3;fsO;Qtc0i6mP;$U#SD0)Zqm3JWh}zfFXqoK3w}D!Z+^euIIgBk`Z7<6viS|E0*S^bRlaw_ldonxxXq(E%?%@&Ilr z%*}q}0cm<)_ehm0ZRxArJDZP&=se-+^bM8}$TvZ?Oj%q_OLwc!`T2rGZRe;ci;$fA z1w0$Ir%|-)KVlI%d&reFv5m62WD%sq-+}&AVDdF2?h^{-PyG(}ia7we!&UWx7KLbE z@5iv>*10dn&G1Y+iyh`C(~Vu%0%5`%WZ!I|&uV^c(7P+K2jA{X1lEnzZNWrFj(wD9 zj6c|z5;=lJhGrT66RN~M5s+Ct_jkj+Nh`edZgq8ul%bMXjrY_6%DU(H)gM|7_QLF} zhg!~NAjPNfB>gBTF#q!-Lgy9{cC~X$6_&B0dYIAcutL;M^8qlqI$mA>`|ER;zlIz* zGL{oOi|}7RlbRb z{j4`~yYV5>gc?ej_2Z=GiAQYD$;n9kVPxo`ecJHwBUaj%XC>Qy0d#VVeh6T z6NP86ddsqnb&#c~>hNF`A0abmDFC#dpqh-|sYfYu!Y-&*HwV;`)=ymyihi~$*Bv5g zNF&RSKSHl3`NM|LygITK2nnfB6qTIJ#&wVY%TrZdUqGzUm4bYCD^{+yP4ZST4}h`q zQ&u8+-LGzL{(?Ym75+|;PKw{Vqt1Szcj5O2AA(s{6zE{#1YoZ0fq`v%+at}=k!*r9 z!rK$HG@lT_nEN}wVw{v^e|an9J6iv?)lUzoelugF^X+~y?RLisffP?4$2?keod>2T zGHC%B)_PTK z_Bw*MM?Q12cm3a(hq6cmF)_QoMfM{!hua1G-goEwS7Szl7do=(D8RGBH=4qSNs=>!M%h9%ljoN(ylk;7r8)Z_Y?) z?@wGq?v3wsT7D}eaG#M{oLR<(2+IUsBmO&5`vc>7|K|i#pCL5`TxzG3)YMC+2++$S zPcg|Bbw|3-Q_~Ufsl%K80z|AVwE>&dp|$N zWpiww7ODFCW)_X`m$}`c`boAI)cco9=7x{^qX1+-MAVRdJ;%v|uKoYe+M5JIVhFS{ z0{-b$PLv7%FaD_Z-{4k(@zK?EJzDxeHVzr_8#L@lCIEZT(N_vdCF4(bn&+}vfo_m* zFVCXd3!H*lo?N#ZO@mfifOyZl0Zi%*|UpB*Sm< zUb8K@wyO)iLVDtObon%OWh2bUgF_FkTJL(D7(4#$@m}r6S3l}E1yxn_%n@}X=(R=u zRoR=Ln7GGhGD>hD7;#J+e0gG-+ipN4a;{F!tds)Cr>}@7Cz`^PKK?t|s^XG=n;wEd zr}7^8aKV5A;_q+)P!$UORLK+GgA>&Sdmj{0uSjPt5cDJ<{`UQ?1ZNPoqoK5;u>_uo zs+)4r+HU$OvL>Mi13%l#EK{;BKasoRZf08S?qehWX~P9t_@n&$9b{FS|6wQid{9?b zwjI4Wb9I9Sc+24lWwGrg>of!W8>@P<6vdT&+h zepVRnFg0NFJoX5zz9J_4Odk#(V!_L&ll{Bcw>&q z7B>A9r1EB2US8JmUlWR?qy&IvLIPVT#P6(rr57j2V8xIga$FAI8dW%MxjpJjkB?`j zJw0rP6MXsj+Tm`)GScZopHV1+bbtSId-D#Z@!j>}1Gp^|+rn#oBhza~g|zL%XQ1%a z+CN~z@=P47qRF}QyMt7(5QygHwo$|<$J?3O;-QfbXz_z33wxaMjy&zefgi$*{O!3q zc#8Kfm%aBXs;HW?T9-RfTqhX7lOqihF$_afv0a(3K2E=XWBfj0z54tw8g; zZZ1cN+)%mMrW-N;WcB7{CovmgC|Y+rG>fhI!)w}~`e7qth}o5s&L(%U3CbpSI53ApzAjY`;5K zZqi4@nm$jVU4g=;!CKz^{k1l|&;^o1Ydgj1XIfc*3$e2I39lFXIffn*jmtZOr|UUQ zdZC|{oFpY7u6xsLUS3`+98aG;f7^^TM8TVWDad#X^q;43q7(;sG-o^-`l;qBlbw5i_08S54SH+OJ)HaBKLw9Y(EW+?k2dGwtP_MQ z$C+kUv*E>Vu-W0&M9k~ndeP>R1!}+aS*x>shKBJ=_#AkUK)a|h-!3lR7&H92i^6ZB z#Ax_@5weNi$HHXtvro)UP?YR*ufeZfd=a3YC*3t_Vqfh$_kUP`mS!^^#GN%g zD7W!(aT5Eyc2#e40}6U}5kVfEX}$3Dv&L?Rrg=pBzfO^`XlKWWw#NJVEf3w|qeAml zxBKYPba*tt2LXd32b=?-uXVs+fmwES4{psUg1YE;ve;Phimopjy7}^<8t#w*OGD6Z z{pyk)vb`sN7s{a-6jCu`T=jw+``e$f%@Rw*V>E``v`1{Lvl)vR*v!7N{8~#vM(dWEs@t`aNgP7dJsJ}uz z?r3=)_Q!SS_ZFP`EaU<%C|Y^XTEfl=gey^Wr>#6aO|LN3?`slI<+=Wt%O2& z(+r?jtLPv5+8?4dSX963<^{Io1o&kLc@qjF?j1oxgV*(IL~@i$SbN!jwXd9X*YgW< z3o+V^dDvQAUpr3Dee>n@mVVYia1r+U?B2AjhaTEw+zkS-K7nF_*GsoN;-j zwU>EQ%f)hp&ch^O$q+~KQ&z1wOd{qEP;CWZPUl{p=1uYAQ|2APST4@w4TA_HdzlBl z{;oM>)qnwx!^0-wprhWSw>PZDEkutN(f-nS)bpEIHz$gsAQ2zrbkjXb0Hj|>1|+C> zHd~u%{52lW@>yol5jl;#W+Exw*ItRI-1GbWPT&FQR(v0@sn|z{6&+f&`Ngnqf_kW& zy9_M%dc21dE{YR_b|09x1@u{oFJ`-C&aU+|J-YAItuo;?tNcPKE91Lp;1Q6kVWK@@ z4DHgGr&({)DXaL5>A`&Hd-8gk6ncl^XSu7--4tg6r7q{F@s|Wui_xm{k6(JoKg%Rt zPs)$6KL-`xNL}8?P^KAo2+qLSaVlB|%NgfDRX|8Jihh6VO`ft6Ody@3zBfTHlE*N~ z``r0ZiwgR13vZsh@RZ$caU*;!L;{TJl&s`+W76IbOB#=EX=FJDUvO+=-Q3mr>*~Cc z%p`g1Ua3p;^XN(|BLA~IJ-7&@7=_J(PcoX*j4j8kah+5-+kxY*Q0{(PrJi$2Hai-p zvp5Xo(*>ecK4?ed!!^ajm7qQ?XX`_+J6~q$$fNIgXblA&RICH={c=Gu{!BL3Ar|+> z9CUg2N~8+me9vR$;Gg&mKMrwVnxUL7Aam~Eeu})#bBFTV&!c$X+XJvzV>&=0Z<;K{ zSk_!4HUdGx4?V=-j|rZR+*g8s3mI(w&h2NJK)(AHPCg$f_Hg6NSmO`A<4xHFqIQ?0 z&`gdp#iWcN|0pr<8hm3qidl4gcaG!U`p1jCuA6`&X!_rPM4bca#vM+x>*D@;;RC!B ziw@Hr8ZQG1G*J@uf|}4QV*lJLXC|xMgoaccWzJn4Vd{5L6%KP19SsU4`yRAEUXr6n z5lgqAhu3U$tNs4z>#BTKd_3F_%A7M86PH}p*fQ}sqc0sL-&;3ZuRjL-j+C%nU`5v; z9*F~(;cGVl6?%AB7|p&oBTA=OkaLwniistIU^e?IJ$JIt&~ zj(R%!JvwJ0;088Vw+VhA$i?VU&;G{@NEES8t0wmXfXr&!XrX>~SxxJjzMb7GOgy}; zp~v^No5gsP+^WsYdY=rCggZ?6+euH~;4c@{;ibquXE4j9U{4J|*~J3evX9Dc{u=@a zY!lwo2iu}hNhj2Io+ZP`C-J~JeHbST4+{xEiICtac1SgT0^j`V=x5o5FXeREO1@q# zKWx^8WfqKre*XM)fpTT}!n&{wbtUEXI_N}z2U7HE+5hpYrJw#W4Oh~(o<1Ol6k78= z@B3}9cE`0s;q}t7@>97Rq^%A7K@Qd9r7Q67;F;&wp-1J~Kb zWjK4w@VIT1xQY_@P90EAS?T`stPIcE_y|jLc9%uW<-~!3oh#XJ36R$md}c{I0W6FL z{LECt5KI5KX)PGU1Nx(5f1?eCYa$}j0b7C7@|i48(9`MR(0!p()39~94}3v_kB`4i z^CBXmN8_ahoL0d-fE#QUCRixep%@?5kkVOCTbl zN9OO*7CI2;?Slj`$5P7g+Xsf>k(=RTH|nUHjosKA4pZ+ed-;JeDvyGysxJXOL=1S2 z;jKt?7nm@WDQr$cd^x1}Fj6u(6lwxVrVAK}8NM90RRW!mM1gI{>;NszvL8L6BIJFw z3G~y8wxZv@j)5@Pf&^px+dRTplBbeI>JZ=q7r8ni(Se7s-&GuaPu~LN837^LZ0D?A zRYq)mz3f0EYarzC*(>8qPbu2NLinDEj0w{>SU3bDK&1y}r5Att4s)|?7thNpFkS&b z;vD_kX&G2~SuKR0iAET~Qlp2H%}B=pi}yNd z#>CqC1)r=e1W0)Kl=%GIL;tdnfbooZdH@T{#s;4ZAC{j)QvETBofQ1G1FViHEP?=? zD4qc(uuqVInfpwGmuwI}fra3IrEu0U>ue2vX{K|Ov0}P-ANnl~!H;aTKqkhhwSIus zGdDfz9(7uY&5$#A*ecwXc+~oRoPvl%4@#8669uY?K~fGQB@zy!R~fc60$DuiuW*xA z5r3sVZ+X_d6BBwJDuYLHpnwU17`-djw6d}8%rAWYijD18uB@!ukO5t{b#_N z$bH+YoKQS<^UKwb=`oP8oel-RY}>}@R@xcqu0^SvuLQ7$r%`V)is!p~mD%~d ze>e7r)}7bF+p}oFl{!B87bsWq>zH0z!BX%yj~|Fs+y{^5de2-nZu2(`w1%+Ls~KZL zF;xcmO$@VZ75{Z#R`>A%i63z-2lj%Q`Um5G>pcjx2^GU82;j9dBH5p@uWa|a6W;1i z^ma-4%4;v~+6^TE>0*XzPC?MjZHQqHW>hR$=dx0GEF#fGQ9Tq*^U&i zhaDd_+}nDTHb1Wy9K0RIc`%4VDIboSYe${w?xL@5fCP`yz2O&}y2@*#U{ro}tLVoI z(3R+*p$t?sre|)3qIiG(B6NRwo!r@p0^}PcVr|tV6OfVF&1|PjjS06gk}AF>;~N2` zeosm|;KqlCmw%zQS{IZW+^|ryn^bNfo4@OAp6tLM5m9HaGpknuu4wS!(5^lsN(

1FxmR-Dhbq`At)Tit?v+N1-es1d5gVwpgy2* zTn-jw>^F>IxBcyMvEG*INf2_!cXM;Qw#;oAM@@+(>nBQ6UesBTlf(R=n~j!|W+C)& znJb^0Q%Mle=~v+j_up^BYZdge)Rv2(Dmrpct-3zB-5GPDuL4@xqcM zuTNS5*uRHE*>&n_01q=o3(bTq`#tjb69dsIB7(1$(i6o<$OL3HNE9FwsB><8X6iHu z31Odkr>{RCHepo>^R|lNh{VESsP83M#a1Dn)vTH2=Oyni3I$KH(d`DAl}v-MZ%OM>b9zj9K_$Kbktn9jEF`bkIV)&`>H z$Ek^^2n11S{!%E2_8imE#9h6~ZY+XeAankhxcsHf3IUM21F@%Nm7N?{&E8<1x~q+@ z9=u>=5$sB#7W4j+D&j!3kPm7CS?1~Kjs4$2EW`W`;gSCedi_-15dhn{9Uq0TKKAui zo%)M6wTgE>{$9vTzm%`T8}=K^kZUC&XfO-`;tYO+TwSS>L1+ZpoL#+}8WZidMB@u* z*MD<7XG}l*Xshndf*M6>pH!}5|1OBjz+SiCZA-!x3YQ_of6pDR^9Q;kYm$vDIaetf zu8@kEse%i6%}P=<)Za7KOrBR^AsG?WAV){gNEwGX702!H7iCK0>~=}_Ps-bwezB-l9+~$>yXT7>-T1n;{iJ~>{2ce+5r`TR4#71Zbm)LVOxtUd~4eUN!dj z!o_=VErt5%6Q`7grLARThJ&Ncise?K`DuagR|mp{nt+aq|uHbZeHc&g&{r0 z{;d&KRKd*lSeN5WCeJ22px`Uy>~27g{b$Ku^XLnGtL!CU<*uu# z={MGx5x2LkCUKgc9stxn3Hj|tkfx6VD=o~?EXvk=Irr`Y+%zFON20|%$Rmo8Gs$_` zJ=)Pvf_5h_{}C*IxKPjW2$l~GMN=xwz?}MNd%QS7(|Da^SF?boaeBSibdK$r);fK( zd*dsuL1VSfpKbhUi$Cq32}i=yE%NeCMoh+YB!W+YHO1Ku4k42Z$S6WGKNdfyxr%>Z zA9avXN`pkm-#!e0s5v?cPJGD;1H7qPvy%28dV2c8(o)_l`h((KX?y$9fH#|EeKg{| zhdp2Z5-P>BuBN9A$~kazeWXYB;Z`aUBjex?vHe0l*cpWW`;Y&&qjOoGB$xd>&&R)G zW^#p)eX@0zMoHoMf1e3EJTqo|RKAH=^AGhGKNE<>dyOyQXP(=6+VLANhfdy~ng^Q2 zsY^@1-hWNTzq|X%9c5Pc6}Ymt!zivpw@pa!IBKGLvk2qN(6d}g$(Z=g~!qIkQ(=3G?IA7 zE5-?D@rphtYCO&Xj8Q*EyFb3_k*eRi)_`lbRYu&~BbcL~Hq6$G?Ha_!jXUh@=uO4l zoCV3vp}-_|4Hc zt+ntYQ9UuX^hVi=;Z^{$vpDizolL(GtjCgDUmihs#7segL6`VMW*Phnjj-+JjH` z&4mt+rumpY4l_igR`>sQtV`#~iV1b}^9(&X3sjjv+U7Cov2S#bLJx034aN_5D-BN( zpah$vTC_uF+OoAU<8_dv-01$0q}T8}E)P0sP;Z}sH@@jJmm!XNZYthZP}ZgT_*rva zV5=s5`(QPX#M=m4-v0Puuqy$^sf3BaP4=YmXiyjw`6x-pQkRR5r(GbY+V8<;OOwOJ z#uk}O>e4I_YzJzQiVwdDAJgq%vp_O_2P%-d9R;xZDH7ZJ*3V}9yXnG`#bmhKY4yZ8LV9T{qn|b>1Fh#eTo@LG9uY`O{WbQc`^n zqy!wD;+YTv{?)E?@q82f{~qPW%BSU~0bj@6p8p~4@t3036d;u%-mx*yrCi$Qkujmg>+x10FS?nFL~ zMFtX{tDIkcO7;))JP3L#Ra}cddzX zI{7_jR=TK!YL>j_rMYyIv%VH-(C!!Aym;~A!(xN;<0dL7U>r<_wtl)aJ2LX)O}Upp ztBdlr%*;M}!)^wD%%oIVuqk1GN-qMa;Fj?H%r{e4)y z)Q_jq&aJ4gg96puy;#B5(A~mIAcwy;}0otXOr?wl7CyEXDns9zgNvnY->i3JF#D!|~jN zM5_G(a1kC{-zqqAn;8!bd#hN<`|=51ViE)BWJIH-AEC^Ucv~cGR-&DO35h83HI!4V zlqiW<@-=KzQG?UliMuf8%R2wm%uDeS+U}wmWHJEbxeEO`T&eD6z}il%bpm85v2S`o zWaC)aR`r8;d8``%-dj&(hVxZSeW~>E6ZWS&tdsc8wms@{Fj1vS~&iB`xiU95gz&RRS#DCm~1V-}nps>K=c6{WD7KPzkU0w2YqZ+G7Z0n*i`z(X5B;y1SI4=p7l7zX>`jF%GiI8nuHmGT4^6v*8DGjIt!Oz4c~MSy{W}C5??u`bjE)ioJMg{)sRs#Ihp#!()meQZC9d)}DM>2{iqmGm;kdxKLf zpf1HY65OHZFG4)$-FS{3D!aGrWJ5z@XJ3vz`@U`Z^ZHyRy)3KYA$#Jik?Gkpu#|m{ z;JrkYZW=Zd$5gUVx)~L$+O_G~SaG(k1rU!;hL8O%C7?v!wIlo)ObhG#6ifm|?iCXK z&4U#q^I)LLt3V91aI*NFw17+#kqT7)$bo1O%c@`YI)CI$euh9!0A0fU#caQ$PQuc& zSK|e<(pl8CYz5{$)BL=Riruz%KQ=Tk?4Jy=*RZEV+W`Gl{wOJO z@7w=0NBu*lh50sjb|`?Aym9wFl>WUfH@g?*oU|M)1%ZNYR?Te836A$wRa~LCFwm{_JaJ$)DT)vX+7? zH7YvJAvzLCPjB`QPG%l|jcn-2&!X*;An&?-=F7cox++nNAHVO7!!J7DZg)@w01E^$ zX3K!9tCQflvgg?X#13Uslyl^wwF2O~^h{lKv)rMioFC4%#yuw)w8a5?@)Rh`cUz_l z`y#+Qp_19=D@*cC)Qn#xT@1c4IMd_C|$N0o#x{qE|nMF%Dx0MV#4h)bXZ2X zD2yk-7*bI0GP2w*YJ5X!O{xkywRMQXe#G&5GyTOGQZBNa(9^1!f!F3q7VZ+(OYr&m zdE7B04eF)sPv+)!8CZ73TqvWh^zqi2L3!odSw#dMB)#q=4IgK<{^N3`N1n^(+11R< z&Mpgmnd!uK&3QqX09xR#1o6^6{CC5V`ya<1u(c~h^3A)A{kNLC|5?wr26`ZmyjLs=hXXOBx7=GU$yMM&9YKLc;7 zhr(ap;qctUY|~t=oKS5h;LrJqL}A#bO6PqYuaQQe{+`q-VPfQ;{}jAAyt4ZL--;*28NGRs)ZxR zgd}6O?FQ4?#8T+N-vPeU!xSuQjX-+^#%ty-d*cn)Z15L18nT?_p}DKXRFnW(lpg3m?=!D@bIH?L9sl4GZZGtj@f!F7}W2gVSmODRc)x!O5y^U^ZJJP!@H z?9&kQJl4BRVegSwG_pJbb90*^H&k%24S?NT6{>a7%^z+!sbL>@1#(*LLItltNkiz% z&7S2$*XU|%0Us3mg9Q;8;M_;eB zVQw9;zj=k!n0@%;GnC5x{sF ztb2ctPB0qM#{DlCEV}U)Bz?He7hBfW9TUqq@!zOL8}ZSL{$}dBo;={E>a*G$Tg-WM zEs4M9M#n$^2I4d2kmJJ&mdSzwbY3D^+oM{)4-9|Se_e>gP3kSJYu-pQQ{yu9!qWuX z!6)dX%AmnLI6Aj$sT60wX4pYx`iPS72^@M4%diOwU=@p`khjtcuI%IuO@G)+PqV8c zo@doK1lR>C-14ZsZ#M~ALWL8w}-dx0N&quys z{7oG_1WIM@`OpUDc@m|7^!@$bR=iK3mF7)9 zCnH+7mxQ7W9m7DF#OCxZZ_J>Jyf5;+vYjP!@+LN=e00D?Afl_^DRlh+-pf=l#3K0X z8MT~!u6uxWv~e1PX<0AFeTJ|=@BOckpWjLsgg{Sn(`1^z$1AOLZ!dC~p(3Jag442F zXk}3lkhogncEa8ANo;dw5de!E>Keh@ea5x2F=|eo7CfhKQaovC2W3VVXJzuC5 zQts}tR+ua-(;d+$O`z}cIm`#AG`;z>0H^h1@=B6Mq=yml42rQ?da2vuj9cEp488qN_??_ z8v`;V*m1tiD8hAFwCvp1lhe*m;O&H%8d4Z*Fm^iQoPS+f>gS`f@M2qSK58?66crYWIfRNq4-9Z^yB}j9$ajYwdI@`)clGRot8qDM?P%vg^5ze-?9Gx5w1T#7w2tird#V-~fATXx` zpCQU%XV+J;Uq4N=2d%dTyyKqIh7Or*~Ei-K>poYlL(@BZ0(!U zI*aVW1B*A=^4ou$x{{`=T_Nk9U-Lbzp@;-{(|t+Hz)g&us8ZGvE+dhFR{qg!(@SSY z2+ZB`Jn=+0eMAolIS3Pwkx{9%IKfRwzDEMop09h{JLtLG**|;sI{xbRnp_jd3hd_~ z$gP-+JkN@&QZc(L_U zwE1Ab(}xG_kU&7Th#nK34<0!Dm8WZ+oKX{4gBzF&idmcFp2hGt-zp?7$BOj}+(7Z_y<D8Fchd4YlV`jBFfo9Gm+|bqM6V^K>WPv;GuZoKqdRbql z;%5@4s>+*eg=w$mOw--(AYd|)hPE$PcH}wNPMq-LQS>(03d;-$ha)6n^Y1#)C4Bu` zs70UltJeMr9;av{NWRH!3EMq=qssL&#ta;q^TOA4%*t!65gX zoVd}d#HA0D;RKHv&;SVJF-_+v0p&hJC~St z!`-oGQ@tId1vR+~|)#*Hvv z$i}S(9ZHs$e;k+>zUkPS3{7Fy@k_A?koJ*hF1{Kg6>4lGS(ff4G_=L)Q0R!$s?o#% zF$b;L(ga{hAq7a3r1F3Od%7G7{JU~JwR^ECCzm@g=3+Gc%JRkHus0a@oA?}A!SeD6 zY#AmjWH!HmkL`rl5udr}6W9i`2HOl_0$_uhCtETd2jS7t7Uhb*WNK~aOVskT{`#zJ z0!>ogU@{V;zLy;+_2slZz5$wit}CurQ)jrO-BR?aKUmu*-_p4!pq`8Mchgzpsy;r*5qdf4!D> zfn-Hae1n0By?@+o_S?lRnBDG=e}I!Bbn4a{qc2SAz^h0ig2o0xNN}IeB?`vy)m6szvIR zjNP-yo^XE%#I@nmZFR_N^WHe{^SF%~=`f__OxWdC4nnbK>mAW1q+yJ}m&T1YrJC;* z`A+T|-u@Q_+S7g_NMg=+BX=vLK5ptphUxGKh5$hzjtA#w|0os!KioS&KDzdzfVU_ZxGR{fhVBjxax$*>MxadW5WX4=e7 zER*`)J*n-EKD3{9T;A{fXXdr~7r$fTAOPp+s`(vOhs3%$J#NqnRoR;NtDq+rl!tS= z6$B=SqyFHKz&b?YtU6gf5QP#^B5O9-NzJx#l1A|X%=%^F&~gQ*?2!?IYuTNXlLFnu z23GoJbtH;v6!bTDBD!+%2`<>kecHx*oE#vfetMZI7jbQJ4bn#RM9~Rob=l(0@g%H< zhl5r>FOBp2hX;{2>G_`4);Vl>XQ6@WvH>n@GR|7>Qjq>q3tU{!9dM&H`0>R@B!3@n zZag6Di(b$q8&32K`;Plg?WfYaJvB`UG`+ZVt>?9uXY9%gi!J{C87&iEd91%MZ~4t{ zo;Q>k*{iDl6JcQz#53~FoQV(AwXE2@OqQ;O;sRI9dSQEtP(h~C#;bpS9A$mb|GBKG zJxE8~v-&+rDt}6T9Bx_}F-l$ZfxCHolxF z>23Xyk0zH(kj~Auo|Q@4$JUTzC2?2Ij-Rk_6U5QpvxkamCE`yb?gss^6FY)Snv|C0ow2j5w=i^J(zLq^nwPXzpsKhTgFDH~*R?oCa1rFlbR;hNP&-769qa$2 z9f7p*hqXLIOINp%g`fYj32buV%mO=-aqKqPDoG@*Zb=|}-u@-Z=SPn$YVEMe&=JSc zrX{CD(#Vr$rj{Glmk-7}F17U~Ud&CAmJA%)>Xu;2cafKs z5WFy9DY90StMfplMFXRlXS}?#qD2MvwyT!%dch957{~S-v~T|1zthUOdv|fYrS7VT zm8P#ZIyXmtTw9k|Z|h+F?to&cPc5UwHDzjmG!`Idg`*~wCjH;G2Za5uy9{O)&kw^ z?H{#{h``%QDsr-jz6#=LBGYKXz?m2L;2yS6|BSJt z7HiSHSAK%C#YeN+>fUj!AG=$fiwCvlEOv)}+W<>Z7w{AV6kjW*Ov2KMaop+3EM+ z(9jR7`V_$3N^?VwDf0@nmbv;Dga6T1U*fmRr9Pi78pcjtY3ToU>(hS*kF$KLm)E0G(CUlgdAc#~I5a~q_=|zw# z$U%BZC?bk9ksgxJL8SMNpn|l}K`8-2dKHi=p(7nb4TR*|c+UHN_t$;ykNZ4<>}*0Z z_gZt!HRf1rj|pgSVPxGg#B|IA9D=iam8v%kzPF3bz)Z*nE+41HV!q@CcocK46tbIE zAE_@8|1jnd8_A4WO(Nd*(wS^N1iI@t>^E@3;&`|zx_+V6A@cDTS$V_P^sxEXB;GdX zzR5~EGc4`#{I|<1Ij@IuFfES1$#&o>@J$)u*7^*LbvPizOB&@q1f$WxaleCODSUy;~ar+yuu#X9WC8*x>4flR7o404PBAu<|cKhzTxcbTm@A;|3vgWjT?rpOzgJ^&YA9d zb4c+#SX{oYynb4;{LDsF#^i7T{*W5|-b5;8#N%$Cbf4nKqw)nLG9zq0(Z z8<&v4kOU&dYPmmt{P=-E)$~Q(FY}uO|E;uxsfG4((IK=P21ZJFATd1hs5f3q>yF_Q z?#xqJvAy$?-AcQEijqaw0#_K;0y{m}D4u$1)84iravxq?jYdfqLQE_Ug0O^xU&Tn` zXeY=OPr1?5)YK7?kt(*f`Iawe?X%&_X9dbMTWIk{a~S&0Jn54hUgJ@)=HjrtISVXlG-pn=lSVwnRVWJU(7Jp6YY z(UTJ~ySd+C0tXawht66s6@9z1E!eYmpq7<#%H)qj6Y-&=u%_7uLd3xRs&V8*Q+6k=!Q=5~zW&E-oPif4wnmE&!G^mz|`*n6PLi{*ND^CI^P z+^Oh?l}&V91J(ZSgFP9sXXdDxXkfvSuf=yMc&O$}+1*nsa7+EC)upob@M@D!kRT50 zV)`iXL{}l~3S40RaDH_B7j41F@8aR6q*O{%q4IlO0Rc@LrMe5&uH#(EQ-6-Ed(3>X zUx_alw-ERS!1X9V$0S^?7qNR;BM)%BhrpEM2}e+^0i&CA0av)PNq-YJ(BH4-=_w^~ z?_Rr~r`+7zo5k2o!CV3K^s0ZIctdBpj6XujXZ&4MEDQua&e(2@P++F$t+P54wy^tcy@Be4GdNwsm&YYe_!njQa`LYvvw;JNWdB zV%N3iDqm9kv$;oPe@681f@vdqq|wTBUTrZEthy1CL`?)>G3pSw(GrN@jayZHIZt|b zhY*DQtLCnWcYS7p?*bbz2Dbd_G0lgg6jcB+I#zSSjmcu7Npne&C8s4R_}7Z?dhc=X z?f2n(+D8IS3C)+B=nn~3I%b?HZi|3h-1=EkQUur(xNg`>vRZKm*KpP{QuPK`yslwH zA~ob_C9?`Xk(3|YrT-QX9lu`)bFy9?SXlwJYEaPr4ps{13Q6vB5dkP5 zYEC`tba-U(J>^3EtZvrLnLn1+);~OaeN8C*8V?H|S>b@!|JVh{Ip}46npW{C+Wr@C zI{pQmpuCC-x7vT;fU+M#P!*K?DuL${o*}s;8Bd}N6feqz=E(b2rJDY2(=|uoT=TWY zG+~nf@n@`V^B$G~{_-udpR9LLO0UZ9zX^DzK4D@k@1;>$Y!;Z+{}VIQ;D^L@#p-13 zD;b81&mpr(QgKybF{N_UwPqYIC++VOSWKGWainyvN2G%F~!OR*Yn_t*pc>geI3u!@yL(Zx%Okpa)WdNG6U#gWos( zdlh-|gn0bv{?DTe6+w_|1NCOEm3LBTJn^xtsxeew`41K^XS&KQn95Y)2rZ01K~!g#r7(3c^&6}3o$K@R)q)OhG- zZ(rr8*`M`|9lA`nJw+wnz^8jB5BLcqj(PQ$lQc1i+Y&5ALrPK*1pboiC0xJ*_8DEW zA%)}Fc88&yXh7WX1b<9ppWT-5x5<_Gs(fs+}&#kpam{_`h&j37NPR?s$zXc$9MhBsXu8DB8X8wn!5)g)c~ zhlHhMFt4R;se>Z5n93D06`Gs3Ka=Rv$e#*kw@?{}sjpD-v_8ZkK*6_iZ&C#T4=S!^ zvdPpfE5qgoMRIT@kCKTM!iQlK!sN+D9#%i&UVFw+WJyW;JtAu$y9?>E52d9-tB-wl&vvsx$j;73fE-rCd0A5v`{&QVmcK%g zUq5uxFhjGfari$l{RIwA%2_`QGk%lbm+es@@0auQS5}unE3!NFN-qX!1TY>rmbKXd zR#5-yGqd_%&QmYe@K1)$j#8DzOmpS@Kh>`Y3h4Bat)PzLMeUnLPiLpB`M#rygp8ge z`BVlj$Fds^TZGGVzmVmY zIjz^iY8Ji11uTLFhkAQ$?O-(M3H4*nS3^9_GrPSrIh^-}Y**@yFxgvQX6>aVFZV)z z74Hu2CqQo9Mb{W%tbX$n^CIwp-PHh5S9gBa*az)c~3ejCQO$1gI_qR+XN zaY_2P;M-_@@ahNtQ}fM@jniw8Az0sls8ms`|r zieXCdm->$d(D~S8H{7^UZCiXYl}A(qk&GXpRay%1FXMLapv~n8>?2qUJEdUOvm2l) zs??;UBE{#1{OE$0ob5#!U4Y{Y3FLCU;bKE`#71N2lohW;4Wfe;BIPC%GggL9ylyza z8g;Aj2glEEou8X!tmMKaI16*%O$ZT38wXAfT&f*#nQs-_KIQ9EJcj3zz+5{=%jY1^ z=qseZtn|rGprvbOo!0+nFTm0|d@DhBkdCv|arw^JcQ_$_9g;OT98ZQNlB%8Lj9 z!RBRGrYWKVf&lYc|Co9y8H2^Xo)|)&GHmgq;@w8i4`_7e6o=w9Eh`+0u}n&ZWbZ+bz3LPGYSxVSjv(UBJ*>-Tk8 zXMh0F#~t>^x^5}kMA@|TxHuZyk%ScD{Z-MPyC^4hGXG2fksGN&0bf zVLmoEZSbnlFMk|zklq}5_7FktGt&M#3R^T124BgMo1q0w9)*-aNJ_Jo=gT%WA0uV7 zuQE%Ke=~&Rj)A!ScsUg@^r-X>whw(>QiTz>f68RgZf0dcP4dfSD zp-D|KtP`THErztdE%Z+i_<+G6o`L-pTv?$tIy%~guO7U^*XVm@VP|)u_dwRWZsw3_ z(35mwFoq6=-HfdY^0fYLDh#w?+V>w8ieUF-%u>po$1BIsSHQi`{OCpo3(6$?#$e4$ zfeVu}0JodahG*j*TEoG(cbmt3r9SBXxB1l727vxP;G-9_>-4R$LD#7kYT+5_wx z`dD|ErLCh3y~&am=6jfK?R_JYqM6bFE1~j2$eW(mnKGZNfX_O zT~9BS*NY6xupw&{BXDl!0r06~lBX!U@A=1e@0m^?`XyfG@}-!@N2)#6*;ROuSx zgrNo*y{_P>A5YQ}$l(hmH1XjQC1&GR`@~6Ze%x1pPD&)m%lB4UxC*Yh;(F8gU3nGGA!?#qx4-vWc`Dj1pMI{g(_m2 z3p5|RM7RFrBg|7;q$;qxbnWZKRPBNQEl1h-G-g;-6#XIq#B$U}4HEDlY)SuwDm)oy z-i?yTT}}n^5M1-&PYbDdKoZ$sslVyE@wOrqfqQujKI=1Sq@OfV)YxXG0#4K`p8zMw zzd>52g|85><1T@FsVJ|@YIkwq0kE+#V)VxkOSC_M-UKII+nE%ie?tt^WAT5Vh##rg|DzbYYhI!EmbUkp&}oUteEn_wM^n0l;bPeinVkx8$R4T)~!TuFM3DL0LoTcF&DUPBR%$ z4^yqeS(*!mc31T>1#qOHz_(L?0M$#NM5x-!m&JF0XeMe7|NAY^Ta1CRj($q~_;<{w zg}u0q?u7yQW4u1LBo9DH|7^Z|70e4ME3q+9Trq_I#wm8?fp-dqS=re9d&;mIuD#Dz zR#pJfVe(-jCsdg;^uCNq%dq;zb(8d?n#M7l(AI!!=7_Gm&_+sAel!OMhYJR{JPE|> zmjIM7T7~d`EWU#VKw2sZvJhzX>(lonlQGg#DVWc!eY;PiSGNyD(p@Xhp67mdfv=boIsQenkys~JhrCse}`oul4wa$CDlvF+e%+Mk&1xtQ``_`u~4<@MKd6p^P^9DmiL_TB%JOgt}rH9o_MUx{**S?7ir;e`Efatz^_;;rzK+;PH?rk2xZDr+LK5BDkIt+R_B%IilB^nKq6N zZ_lxeKc}yly>nF&euOZ71>>bX7An2maOuKETsF7cnm$KS@udJZz(V_d?fD{u2VQ!d zJKU=9fR!kqG$}5BdBUWnI|uR%K9Hn4NjG*W@$boc6zpnj02i*fP9Z59njqAsJVp8^ z?IJAz%6hC0<^E4+a#4`526yT^UJfJ7I^;22w{tt6ok(6tGJ#iD=iTW))ba{Y&~7;g zv}3ln1etl!b66m-)L#GqVaNx(Umq|T{XGT5n%L%8*ewP0Grly*{bOu8t?SOL)_*R; z)rm(6mz9?fI(Leq2!4dw$;qN=7D0M^2F&Tt%|C{h3`Lf z@wRYh(<;&KZm5Q*?6tM!`TmHjV&2}|3Nkk)2C_c)@{*JGpz7)ighr1(Q2`JQal0p` zN_U3gDqtJ2eM~Ru*>qS*_O>A6v?Eft4?(n|e%xL=h;Vw-b;!CZ3J0D?Z({{Fk*k0B z9SK8@y4?y38<&|?w6v)E1_!;YMs%ZsxmFB;V9;WYgZm@F$L@~obE_bq+$&c%sNJ-a z0$STD$`4?sSfI>^sihT14kkTpWgk|rI%Zlnxo6J0(^5tUAhKJrN|_Q4G)^8zr*MGd z{EAv<3eJHqRvVnbi;BDze7K={$mE$pYVW%O+2x^~-g5JVI#AxoQq zou5+a;vKPDc%=EwI$)N}`T9l&wE|@4*8TzQX6NL~?vB9p2s#jM=v}8@0O&02gPPIy zupWk{JZ1!(o0JX05yM)-bdf;@2s4T{$uW2jxF)Sg(_BaUtae|ucX)m*d-68uVtCZ{ z9N$4}=O?TdrC9y*&o{kn*_BhP|84w;3kx0u_LI@o;|2b_3Y{N^e!LcLcaSc6lDuHa zgt02PIaO-fqU=JXO2spfUG?o}=d0|MZOz0F0teZ=1@UepTn3WP?*)Xf^fKz@1RR+G zwLP4?fR)t0ojZ+Fi58eohPsYJTP%ffNfeUj0UiU0v`gh*)+%6u zv)JMIlt);dD{AO@55xs?TD~t^^WfxS%1~U1>ZdOzDec%Nx$*KXO1iw|$yy5P(}^Fq zpkSYHZb$0P2*NjVp92MlVXPA*>8bS`3uI zmLmm-9hP+*nTi@k%PRgYi$8^<_g=x@3FUe=fO^gZ0|1VPf?MG~YUfEf{20VYrgB9s zuXHH8xx-`XZSRi(lKtJ|1R`Z1Zpg2P_$4FVcN9J-pos8-GC`PyZ71s$-WMpFH|Efi2t@8pF zkoR0KOaH^87%*xe9kgnfDFc>n*AuuJuN_n?aK z?xQKyox6%^zv>~-r>fiujEiEPtIg9bqWsJI$~>!#qzM(qNF8nMNg#Vyrk0c`h{f^) zOQF=?&z|HPD2j_MU`xogaZJ(wCD^RXjXfx;PCctO+5Y>I_p_5kI1pD$T#HDZroaIN zOG`Oo{Z_Ly7XvouAd9E6G0o$3WH?OEWc*u($#PjKTwcn7^NA6#| zSj)l{D^Rp7Poxu5?kR2YwXO^`#oiEhfE|8^@PJs99B87XI`WGJfm{4=ns3>{j&-;U zw{gc=Jh6Y4uv53SXgpS_E{I2N5-syBPZ>K4a#yYH5OpBGuKfI)5!CvlIhFJZ_pM&M z{_cHJP)q$S>%d)>R&3FIWZ8UU#KM$f^g9 z!)TucG;i4nth)zs-$;NYK;nTsw?Ncv@ZBe#YpcI2oHuuQL8i@%@S}yfe^|QCsjSx6 z7Jj>Qv`BdR1?494+~=rr{0gTCF^1RnUk~E>bzvmxax9R#*)0b4&U1P*WOI+G zMhKaIA|!^2`sfat{VK!OW4O$1p2bx;E#xVCj#o85yaA~l~NjH&xEM;D77hx*cnnOYp zkqp%bQ*>xo6oN=?c_$5#;7WjNXhoV*w*b5gkaH!arjmkyJTXN3-`qNpOoNjL&4a$Z zGGUO@Q+jHDjd>~#*7Mj=!8J@on?6xRb;{Z-DEvELm(MCEcTc{8M#6Ld#$`N)!A!oN4u1uHxMr~eL|S$ zh9+RU_pg8N>SaKX6N8;d>}=SXb(yZS7!c=y>e~%=&?*p&d8GgsGL~y z$#YGu*LltD6o#;CuTn&s>Yqoy!Ik=(zJ4m3#cW!?>QC^EyVNhCzJe6;c}ri22wbHZ{WlM)+8S(y)wM{ zHY)1l$P7Y=i{{vR=S~~IS-ERfm^ZArHq1T_Qfi*rN`PL)&6K;R&I3OEg~wDA9@9v6 z!GFo?UopH#TuGw*#dAV;^g%~8bS1S9M@~-eLo;KQ43*l)c(3yPB1zh9ZcmQQ=(0?n zcWeFV0o?2Izc* zrKms*TI0eGb>Xp(V~S@3Sf`||kta6oV%+J0p394gQYhQ$;u5!$g6JRpC5YaHL=X4# zrY=)eU3M?@#~A#b?KxqUgh?*9Y=!(!|AR2v)=_=IeUzyH=Ds{% z=jR5Z4dXnpyXU_Dkv9mbe)i}n0orO7DFikwxHKV%c^IU==C56`hiB(XhN|Fl7)sR@ zm2T<1Axz9@++I(~VO)FwQ!~GdbEr<||9(88!R6VA(%=e6Dl@C@&UkNXv2U5kH#lD3;U!$X3BA)MTBo@w7 z>NkzS6Vv%C4Y)xC;E2b+&2ki93xO!%M$j&2li!n0ME3(k*)8U8G3k~(WxupuamF*%$tB%D;WQ`s?1nw@94mG>UTqXp4bKX?(fsAdXM zB%o58rC`F8BT$il>hC-iuDRjpJ%p)fJM`H6@llfmDv>^Hb!2l=+$yk(=r#%3mp@5O zNm0qC*!fz^DAw zb~uA21X~hSnt_16 z9X#ZG(j&#dmQC@1=cb53`OVD(>_m5IrK#WOUHl1U!CrgG8=DgCc%YqLif`Y#UrbT) zvHdC&Wts%ET7pGXmi~=H5z{)ONNz4z(^fZwB=6ZEJFcVVR@`pc>2Dn%{_mXD?v0C# zVDKYOL@H2u?D?o`BW;=tBk*|c;o+YGPW!VVXfq_e1&p)uI?B;ck6+KUkLoXN{qjB* zB8>y?WXhW&#*t0VwB>RwM@2>P60SCB;_`r;|1M5L#{tA*&UiEFyk)_Dx!VVTNFM>jY6BZ_qoOAe(x(z3%?$hz6ExC73CdZB*pXo zs4)>r^I+6LElE*68*(u*=<{xgtrerBmIQ9vwjfS>Q0#-{Q|kJI-d}%ig})d zT`#WlgLB#90(wxd%^KEQwj@}Nb~XI`{7|Jp-{+O;GOH$IEjZyUTKe)}Mprq5 z^K<^sZgHxeVRpGyAe0C_clXK0fo*sr5Y7 z#bNg)vr+2xw!PMoQsU|bT&e$Cu{>#5|<+57nQ{5KD*T~v&{7=*GNTHkk(%Xqeh00Hl}d(ylr<=IO`d9QjUDP{jNE;3Seak~)F5`A z`S9UZ2EdfYa4Jlf^{y9(4Q5d*?*xZdt1H*S)RQNSXub51j#gi8i6mFk-#p&HcOG|m0PL|1Sh7DoArW3u)11q~Bv)8dADW-Gez9;)Lx^I7wwi`Zf z@C~D`{`73g=L`7|*U63I!J3T?1s6P0Tgz7B~gXi?L#*ukh-Vfaz;7jJKud-`O{naj~Zz@v-mI;LJZPU zO0Qs$nW}UXqrNW(t$fo46>D{=FZgO5UdJqWzf2FBD5^&Rnr&1b+F(V-9vRPvhBKO3 zRnu{BR3h7uYjruT7R)jpyY9?3$5>-bT z3tMoe=fr)R;grW3#bZ3`&*P?COuIL@aEjHnbAw+GJzG1BwN!=Nd^4}fttw?)L*$N{ z!fU%t^gO6)uxxcQt?!y!uDQ`xqRPrbZHRE39b!!j3WVaHPO7S=B2hy6u0B6~Bke%S zfckqvj!*vcquo*cKE|6_*S|km4qvln0pf70@Rj)6TmXGXdP^zI;5jTnnb`njS^-tj zETcAGM(;FDevd^-SEk*iHt?hHcrMLO7bd*xsYTCRSoslMk~oL=pd&@5eRwM0T%hN- zq(8Ow36c{Jzci0PrJ4?Unw_lV3*lLYmcAEUpC`T(G;mXqkQKHna;>yGE3{Hk64Ayr z+wUR(XU+izq5xJZ9-`iI2V2rjpNX#*d6Qban9bf6#x zSBVB%Da#7y^b~#c(zM!_@VSa!+_v}HL=B}$OZE1x3*^!a1sBtEKIMf(pVJqSu)n|p zS)o!KHekUl`&XqMC9{wz5~%aqAW#)7PTbwC(`LiC#1pEjjZV*U^j`G&S5@T5O(3NS zNdqmiZzw={)%T%irv{}hbsColM3qqO)8#$p8MOk zf6ljiyh=!p6CmUOqM9s5E6n6g6VA#&P62xtp6hv$GvJfAZ)8le*bs+Kh0Sr|}R_oU9%6_shUB zj@X@_UiPjq=2eVRa8d8;8aP3wbVQkuer@v2Z9UP=#~%*yr?$Xc`=gvm@CMS_BhWW? zWA@N#d`hv?I`@`V{g!#}nXwir`yag)0b#P8y7+c? zy?b_xGxMi1q}hLbqD-7jB+?L74ER;jMOz}4Mhm&Ep}-g?3aGb4)KNYoEJul`o@#KZ zu->C6jCNO@=9J&RtawWGGY1Cn#Ywn{i_G`Wh@OyTt0UZElH6c#jT*+p_QL9fQ1z-xPt?Jt_+j_CEt zqPYqYd@@9z#Xq2&=T{Z=2g0eCkQN%F(4D^En=lB<-I%?sE9>B~OUa{^fabIaSPCEQTxen|bO z9oCFw(R%E?I|xM0tEHy$G)`=jHEomaX0)!xL1FGUYm?Z01BQfG1`%wjw5G3qSJc~_ zteu6PpVezJG!Egajj<)q2uSq=m!q!$qvttvk@fFG6mXuHu!?Q82{^|7;_@eCx!h8p z^ zd%4KFzBs6T{Fqn!6+ABP-mtY98`?xK>|rd!r;=GmTDBjl7{}WneS2BD|A65lee&8E zM1i`Plr4g z7rWOY;@U~OFY-Ooj;ZLpoKe4-)f|NqO~M-fy2Aw%1<-~&_2Smt7eglM0(^H5CO+$% zh+dEKyLPYw%K=Tq>q%&Yc$>I9wG}g)?c!2=lm6`ZT#6Qh#ieaOm)b$T+mzB^~{xQS~NwLQ>ER8M&lTwS=hXT zt_gby6uk`W2)@1OM(qah^Q1_iMD2jygM7e;$6)!cIVTv?RG2(oT4$1IbpfZ=KTw<` zaMixYcMlLZKFOv1c`8M7Uy$bkRP0gP6|Tz~r6KpuoWwpqZjDThV(vkqoM(81%sVQa zGl9)9lDQF@`N*8u02%XuEnR>sjKqZ?#^S8$&);W3Im7K@QInzv^mIhK zGmSYMt_X7U`Zo~6RN3HSuACV=5ZV`~Z+N70fAT1)x8ujJTZJ5?LR1FR#5M2Ny-dkf zbf8HnTipK}O5}DI9gUe2qO-s4gXh0RvsvxRAkw|0&c3hhYDKAq?r#Wclx(1kacUhu zO2}19f|Y<}O`bKz={9{g1_g&#H&=)q_TQq)%C2T2az`QxW#y!LCfLg?=xTsIX3q6M zQeW))yGdnxck%e2?uQ&&`9vQEfaV2QWd_+YY2?4V0&l9RlIUKrzrg8hJgt8ZuBfT0 z{Qq`R#p;spzHt*BR1)a|G6vlT(IA(bP^Y|6?iLNw|HS9g-DFf2L^^;t2Av~Fu3T*f2q+3+TX5`$g;u6AbqA_r*cQM8(aHRZcs2FS-GETq%A0IY^;lTA;L_?A<2 zfwC?YQn}8(wFIe;jA+J=FM0J)*hvR}9~^#>3Z=}O*qn#9_8AM(flnNIY$YjPV-k2m zo$meHL=h@T2zaiE$zS97;#=6|{Hvsrba>wty$9JEz5!OlIghr-bE_97$lE*mM7G(#6TK%us7<0=~)_S0)@ddmmg zO0=kAc?{tB3jt~FEa=Mm~*i+@1=lC5u$mE@W)!2<7)x0oEIN!{I* zM}71D$V0V3tQpYS={-Wi_q0(=^h^^|D&KmAtP-;cD?|JTX;s@1P!t6X2eO>BNQ>l+ zY^x0=Yi8h%%j5t@QQdR}ZL6UUb3w}xC6X-dZ>QhR-uvP@cmFtT~H@+5#4`#&JKV*lF%hbO&O2MS~e4z~%&-<*N zGVdaI0IC96a@yX%aG)z>;$(lM$%DqFz*fc$%hF%ITLCL($j&=?bzqhhvN0)=N5Qj< zG&r&^Pbw_7p|#G)&>jmmf6fSJFzZqvU31px@ZEZq8c$FHSsKGFt=Dx59kBm=IAY{E zc|$F2!oVF9(?rI=Nz*)5WmS^lpCTr3r%hxA1@uJBEGSwW*#;UL19LEkj6sH{DVp_y z#>UCtc#~4QWA9Hgf`hHC*AD8D10smP9uiAKN>kbQlzH^L|1F}h_?sf(OIgX1Jq=~!>;Xy+H?LfIhI>%%OaSDtOB?6dKheJ#ibHPg9009BJm z#E@*!$yEOm5~YNKpfuwD^Rc!kjPpff*S<{8jMGX=k&cX1;Z+mDiJfYsm>g0X17)2k zq4y&O%GwgcK8g)8?bezRF=2|gIQt!f?Zvu}Ik@xd3aTd3DIM{)d zr=DB<|F+J8{uAMMZTE$482qV3TGR8~>Bb~y;f>4b?yZ&%ZUmOQym{DSs(!cT;kR3j z9G@CYdAeBN-(!6S{wdR#DxCdVs-cW+hC+nSU`64{w|_3yW-T?1QD zyKFy#Q9+lBXqM9$Y~nuT{IQerRNfHtC7{M*T&izqfX6}}0w~)MY-#_ljaQaq^#Oa_ zme(6u_TP1K(24cD=QIgC@5dHeGeN8*@sR)Z`5#o8NEs(-TYBUI=qq^gX6y~SxS7C1 zkhzISJN?s1pq3=3vH+5K&7{zS?I2Fyry6A$wgKHq{GTyXMWu}lzx_WEGCmaj@1hxC ucSl^%e{TwkxU2bJ*o}zz|9*0jNckh`X0FxX7Er++1kzI1Q!7`62K^uB%%v>= literal 119243 zcmZ_01yGx9&^C%|aVw=blooAqr&uXayoDAEE`{P!AOv>`E$&hZw73>0xN9jc!Civ} zLUNwI-~Z2^(#62Q>iBmfzylu1 z7U(&_z#t&>ef!=+$=co0&ECbs-q{HQ<8xNMp@uty1gXp-R6)c&*(AY{QwX2gi)X(4 zu?-4~m}7D|b`A&Ms-+xp>1XF(M?Do<(^9DGSlr>fy0-QW%8x=^!eA(4Fk)lzp2y9N znpPlYr+@l>dDrn6xLZ7WZxT^)1iw%j`s#XCbEB+CFhCZ2m3k+2AkJq>dvMnhp5MQB zo%n07BTSgm=wn86eT2VOteW4=V%XI^Ugn)t4AWIiYOk+^!zcVxLSexW;*35|^H!g` z{v)@`Mw5!vgT0+KzsrD~7rI{g@4~O&n!I6)WHlHy{H$CllWsEo*J8s1$3dp3UQlV} z&%=_;i#o96b*GsZH`dNu&`YM^@Hg_fg1i3p@^Uwarr)UAotxXl8~5Cuj#xJ`@lKvS zm2nxux{h8|&|e@6qu418G83UT-uF$6ScQk|1sWMw>R*P1^vaOry#5>+eoOE~?lEcY z!mfq0^p|P8H!?WMk`e9gG4>ww9t$DLVa}eZpB_{l4H#|Su8hR0V}6)>oIm@bdE)1T zg@TbvA>Y_H`ay%o^{W!fU(-jc+Oyc%>SG@g4d;HT`{1-)tl;>IX{EIP((UpFu~g-* zTK@o#Cbp_uJGx-UhdFcW@3>8qFSuEunDmyZsd?e~=kd4R4O2)Qf=z|eI&b-}_Th)D zg$!Z{0v47)ST})Zs;!DAERu1{m$Hc zScE&qZu@`abIoP`L|X6H_;RW6!3OpD=9BX6nUn@q67fZ1@^*9|YG(S}tiUcWqGiIt zGo#@vk=f3Y+7LmQD9M8-l4GGZrK(p?_%wc^`*NugWBAyEsWH zZ8EvN(zoZ}f3w*ze^!x_iLgy!=|EJwpV@vtcbAdm8X*+73itJ`wKDq4@;a2t@Rp-v z2z$JuSZ!bDTcCnn5hGrq&Q~t-M&^v7oS*D{ky&irrj0ivMRkE)3YBK5LUy$$nkw=(G(iu+sW}J8Jbd|(O>%M-g$JC{DK1L{972m`} z{Gd~}vNh(J6lOIA!;|2&t4_&ho(B=U81$!7bPMrjch}yO3-OK1H~x=UZ87nZ=O>fN zOn(1rx&09O($7Ko2+w4^R_Q9mVn>+yD8i`Quj}>0WTh4#E;==}9q)`!oPjlTw4C&H zD*3BxCU%7)?tp`loKXH$h92}Ar5DjqtD z&&iWnwJt4d37Ux0YFQQ;UEeo0%lJkGTVOYyGHTF{h!E>}Opq0qa;cd4U7hkeLpQvL;z3+Tdj42Re0aj;j|UohptvjSS6=cMSW*MzFQo@> z=jdf>3V0i+zi*Rgz30gM^P=54Wmn(kbiOUP=hC+R=V~hp@ypkW3M4B$B$vOg(m0j> z8cRS24ZoX^8wJg)YM>)g{yEk0JM_a6=W9nIIc<{g_pqN8=17MQv#a1;xp|@<{+pJ= zC*F)()XxNfPy$QM{GPx~XDu70L_axAeKEkYF50CejQfEj6~`1p@FQhgC3J zvK{x;4>}6*Np|_4WHvjT79D@h{iz=H|2*YunIPr&Oz^+Uj|vQ&Bt_6dWU2|VTblje zkaBe=l09ARzsALKb{aHF|706a=#OI z;l=#q8W~ws_9JB&u{)w!b@^bD(8W>HFex@E>w<+f;?C?YSKw;fEt`$gNO8fOc5s9~ zOU#tzoz)|qm!okMlG*oPD3yt2O0qkagZwyKK+RGlJf58oW@Mju z8iiXw^Cn6!(1xi^J=VtEdZ}cl(MD?=!l-f3=0#pckMo#?rf`O5HpMj*r+{*~Kw7{c zetf4-@!-0RN0pVXUyvDo^X8BSjK4A~F)cqvZk5ky^%p02IlV+cwQw?k>m-Ed#mtA% zh7WC^xyN9hV4B7m*T&#Nv&L?0x%rlo$d2+u^Pc(N$CtI7v&pwdZY@iwhj{2yO_m?) zTa4K_Hn!_#{?n_M+W5ci$8nRW^irQ$M+JV?u|QK}8KxQ!%n1@uo4fFq@@N-g1Rv~# zm@I#2w~RCMT3^)sm_dpYA5BX2_31aJBzk0QB(lM~jft!2^-qIQxAN7ni6%dDbC0BM z2z>rmQ6RT6j{H32Hw_Dsd{S>0HHb*@0E>+dM2DXHp>hx#IL(0M8h&Nf zprt_q^%DwV9+gznvne|HZJTN(cvAET_9;I{y@+}zj{bm0i+9t2w~p{rh0($R#W-sn zGx;o6l?zi-R37u?Ui z*wAvjCw>}p*`FKq5>a1+;-Nl^wJ#|(7AYbx)Z-v0eMcag}gKbA&I zbo$gvk3>VHUy={{MT-@qC)dyGr)O(zWPck%fQ?g*lI<(3WppHdb=~13b>0Xeb79sxs4H#%rUJQhDejppI+18-sqH;5!)%o^aa&(xS3r~t z^T>6@RN5mjtqD1qQ#K=-ZZcAt)4^#e%=yTScJ$&mSZH~`pLn^!OMyJz8Rh`Iu7OIC zN>F~JUNDi%(~`%eIRUmTa;&%mD@A%B4_+P&sX)*u&bIuMj`#BnYZ07q@Bv1)4aahG&yP?am;#&17=>CN)~pPcMJ{&lEV!H zFB@L!f}eg*f~A21zqj6G_+q|=FIIqiz-X0c(4scm-l$ zRKEalsPCV$zD;Jfx>h-mT;fwyufbF>#I8CiP=8G5g1_0opMqd)yy+8`%i~ppET+b% z9ivGHDxaM|6F{o{xtq6i+9}7+pu}N$-Fesf$;RaGpO(XE6UsP&F_%2%w`U2oMa z*PV%m_)NbF87y*rh-b}_*KuZ%5n0o%+wnWS zbdNEE&+7%A*~HcJ7<39V3bp>-}apx zH=^yXJZ%>0!~-?8Vh*S|$c;GWhPt;Jbn8x0Qk(u>IY^(}uR@7M)|sk4K=r1kME*QP zzNgR)+(8Z~=Vm*V_`CWL+EDKbq6>jtnqFw5{ zHtsUpAXQm@#@2Brf*<+@@hP!#a~2*`>4?yV^E99aWl>hMa`XMUya*a-+;Yk&7l)oX~_4Kzk7n#OV4lMWqFGyZH`c9sRDwN1CJN%>}kk- zKB#X4KFgCBka#w~@!)F8WscP81@ASo{0_F!Xm^RzG!JuH-oPb9I2!6KVoW+ z`uFZmZS+i?8GsB_}D>V@Pw!O z@XCxum0*c&$X?hYilyQfjdk(4>a)-A6wg-X zQWef1344UFR<%5XXWmx4OhAU0qiu!-1}Xz;;^pQqwXV+SN>G^`P^^if2SJ|r=0oIp z!lGjZF(>zA$gfmf`~D5g(k`K_iuj28*qT-o!%*xkDnldFJ8%N=aH>#{gI)7Ui*SYV zMYbeYQKg763bkOP&sZ&Fi*&saaEFiPnP5T+wQ@x%AKWMzaHT!$4?*_TErw7OXIe23 ze4yO#nId5uvtmp0nF2uMuvvFlk7JJ-wkMK_Mp)fPdhs|&ri`=?6L4+k=Y3kn5T5x!jw>h>(Tc# zRl7!{KBB%ez+bEgF;%1y6V*`uq4tTLgaVO^vU1ofrwW4l5~Jr>g%8a@XjBn@Foh<> za`~t;at6!JEYb66_O~R4;P2nrbc~E*$b*+>w_m`s-PE^c({fWY)qRx13h7{G2>qdm z7jj|(snKvEb%A#IbG{@pOO$0M{PSTK@LaLC_YG>0jbHz-i<_cH6JXC2rPqm>C`{iz z$`r}=MBIbVHTBDl2O}wLvA(y*wk?q?q>ZiZ z)ZE;_R4G}%l0rc;?ERKjrlTo!yCwG-@X&ss~-9ZE7F%zd@rN| z0mNR|O|bm_w77j&rRSRCnfoAk%LviL!E|2E`%-!vcAv6zTf7fl0t3$L)gE;zH}_79 zyuiTm5RSowU`+cqMx#vUb`sCD<|mi7ad7K0{AsG`S|$E8F#?^LD~C7`9lva29*I)^ zhS6AX!(*|R5gqy4AJ{OPKIIYxLPJ%xbI$|o#?W$ffQ%DbJyI!Q*d0P9`%~urV#=b2 zARfozHX!5Ldvt2;b*=pz_dXyk#N09N6*Ec}!C|6ww`y_0JY@jF)fbk^MWg zXTT!!FQx?i8?wc9#)DxpoyR6y?RR(AT3hF%QvTy|t`_ER41?lx>U9t&r;gAs5?cnJKn0LmJLgPOMaLU0kR0nblDC?SBggZE?MAH~8Fp zz9^q+rcjUOr4DYI9LF+&9Grz+K9bsd&QWDLT3$E$D zWP1x~Oo6@M#_p*iR+`v}e;ueu66$dBqS|7!P)|v3^hM2iI043oe@ixc$uZf?Q9UiZ zL65^_|ESLCFFgN$0AH4Xc~@r(;^e@X@^4-}>w5KKxTxk5}Udsh@yYZIuQrNT(-2m%`2615D!Sb*1+WD0X3 zdx>U&LG<khcp74@7H+(j5X^sZTIVs&fRfBmvZ09!nc(Dq~Etb?kGvY$Alnym6cPr z@sq5>N5D8j(b0Tkbf`PnKC*ZAZWhY(LYSA^Z-gh|G%hg$NE9<1HwztF1!@Y zQMDMt-zwRR!w@E>9T~EE6wgz^%e_AIoedPQY^f42^qf5#h*|!Nq$96)R)g5vJDpp+ zlid%01`t25i$1R|=$~(G`YT4WP?F43kVAIUMiSBJ3pZF;c5=~orsZFrKlYk@4v|m) zeYsNI<+?(DA`RVcK;n&RF>Yq=%$9)nOjvxc?2oKU8nEyWc1mH}vzMJSO*)3}w(#o@ zTUixSVS~qb<28LhT>Nwkwg6WXe@vQ@X)-6Q%0BrxZQ=CsQ|L=gAQ8{GFPnvur+~mg zSu{Kbg5m<>3CO^jk+12MmCx(ldez`~Mo9t-#{oR&*jsc1O}|cvn9zSSZi_9ASLTLp zot0kwFWQ?|d1_;Rf6eD+{uQ?B)BJagB3PjtHo@Jm!~4bYu(Blph6#JwI4*Xw$wh{4 za5h^6aJYA307BqSruVH))I{%xT)fd6Bx8Ov<`Do1+pSkqGwYS*h74u2U9)qJH6OGS zo^J1i0vuYa+G9^Q$M0BzWId0#XIajr>h#N-eQiTB|of-bg9QWwT)pM92@< zW4wK)yE9&yI#v7vgvXhY>C8S-bhwmhW?)oELM{^gKArgukLCZJT7ma-qN4vORKDk99I%JM4`H zoMBP=$=s*T38Mhe`wO=SgAgG_$AUFnot|-$fXrpMgD0x&Lv7EWLiJx|Wf#jS>B)PD z^ly9j$DI%Jeb97Fn0OP8Osv1{A3U7Ml{#rn#N69s6=HvcGh1wX@VeB+Kj=$2l;52F zCMoD!{_qK)H>@6kml-_}$&&yLm?F%Le%xO2?l-iWUVOFf;&DZsE95=mlK(^!o()&4 z-IgHnKATQ8xYUF@O9sKsJt3JfmEJz@PB`vttiw~th~eFXmF=yi-U$KjM5~-Xk%rp; zUo5s}zuyYP4l`6r*_B`HQ9f`15_r3HJT{>*>AX0$(sK`;LQMm5+wI|7_0oMf^xLsQY7UOJ&vgD)>-pSz+} z*q}Ds2cd}|9=N>b|2jhCYLFMMK9+VSGjmm~u6HrUBh$iAesbTK$`xF;AxsxM)i3j6 zEhZnpo+@$dcsLEtJY?O9aTlivG_)etB?NUhAEkuJjWT3&>h&|W{!gcnDX&!K(9KZa|QuC z?1n}T-^vx1z(W@B+K5BtA=X}gH_#o~jnve_JGadJxG65aW$(p5_1pY77B-M1IKw%y zb`l*(PaqHwg~{=0C+MeJvvt=1E+T$D8~iNLY8X1<0QB-hb0Km?s849TQXaAhg+v_e zFjNG%;BW-j^(CyYTl~xXwd1m-GIx&aTL*ty{!El}a&bj`TKtVUv2MpI@r=H~WzCIi zvU`!!AYdsN#%p)pm@9WlEjmggDD<7^-=2U%$J*ZFT|DnG!cZizQmaaKc|JF#@O=3o zF7Z=CZDjyjlhEZjt=a;)Nqn;&Qs2IK5%zo?_k>Wt%*F}~X$g`7>U7wUyDdprBi7?r8Yy`0MtVG|) z^H&|{Bl@YyV!crL!Aj7FBqTTD9lUh2L29VdHLT$ZNRouq%N@A@!3ti%%8W#q%99|< zAZIvL_f~T%eI#@Gbs-1WOcx&B7%!;;TAjGY z^P}D^hDoMb#0Vouk^yo1=YPa)%->tCyPHH4w6upiB8;>SiAVXgSq*F%y@G%Jf&QME zcfeUo-|}8OQXw$^T`(qKo=)$|Ul@kH-ns1>_=HKI4gYaI_kzt?YO5jVOfV-D$V}G5 z5eXn5xL%!cwfxf+>p*EEni8bP`VW@B4DxC7JwzaEz3ghulNcr2QnkFtEkoOvbZ+Ama>}LIHcxQi$^RhPOignt4^*>AupC^_31k768a@*7vYQmi{rgM&S;&X#jV5&cW! zOD`;C?)_7n5S^aC8Od4{ z0%A4|eE-SI!3sbzL(MLMDgfKVC~4wQUWN9raca&_6$bwiXH1k{)>a%nPhX9Rr(YEY zYv@-_sBb%PwXa}6^koWYKti^Ro-wb0Kfp_Oh7&+Cp#Mbce^>nn+3U~f`|B`SGH34* zgQwI)VG6A2fFYilz^I9o4|iRd&BDI7xB^cpjmi1GIJF!fVm+Kfs7+a>trRlH+)`Lh zLlhRa6o9^0AgKP`0z%RpvA1SP`v|V>M_-GRuf>HZ$-Of5I}*_`G~`ag;AtkZko)cu zcY2?wgEx=ptoni5n3wm`*#C0c_53?cG--{#7bf*t41asgFl*x72^5r+l*G}BWAOIv zt{l~^CpTrtc>rr3`SwUqdt3SF%$AWpMEniiYH%>tSuY9pQvm^$A{>WtS)NO!LO2yW z^v93Q0wri;gypeDh_WBrDs_@u38QAXpem)LgnM3D`)QX&l2%}{U%5aCKdcY=d5@H0 zTFqth`|wF!{V8xkac}#kbXQghTjb~JcWO05T1iOT9G_R%N~)@Z8y$sfzuVBLyD;y& zP>X+Wpl@S?v&c%zFOlU^39`Mvy|jRD4w^UoDlI+#M`g~QNqM5AI5Fsmk7$P0E`iTS z<+Uc9ThGFOap{{t@PBYBS9#iWsk`|7C@e&9H1d4+wr0s=Vvr>W_ls4S+)5MulyS4c zjD9_yBQu$hVE56k!>NINDcD9uh(DD$wHCKQy?e`R0^AqWz1OklvF;-2B9SGYrD@Dh zx4J!&PFqr1BF@7{k~*wxsfZo;+$b0~XJ)#oql?d|(IZ1ex|0Wr_*RZKdxdI-_00;- z7ZJETNBHxisr5j&@r44Wsks5mF4z_;(!<`ZLnkYUpj{I#N$$SWfnoG!yX^7WAQov^PTY%7smL&R($6i$lOXTUEH=%mbf8yN0&%pNzOCL zFQYb==iBJ72?<0Bt8Oha>j!S@Zp{G4aBVRWCu#8MnF}*&bZNnLYG6opVKvUdwb7iJ z)`8qSXAdV6D_;u1BRuQG2f1m=V`g~!<6~OzpH4c9JfWsO?M>k;s&9RjfJQ7DNlwG1 z{jLrp4R=5g#8%`uZV|z0ASU)rKs|0*db9Fi<&ah+*!f^arQMw)k$0;4%hP4c9p+(;mNi3!-mNKEe^Ill$jOs=FFsqA+)+sEDh(M`vhU*W92m8 ze{lwf5K=t>KQOk^Pv15LSLE3W-VbS-oh%dg?+Mwd#Oa)Pz3?{7w{vt_LyJP@3$JR~ z+Fc~GFLozme*ECTBY70M?6h;SH^srlwdNx3+MEq=jXjrj7jbF1Wzv*;OZuHGcT#qh zIIHQBcaLR!lYnwV;5T-a8fTbn!Y9!s{&UUA!oqjp3my7^fK7_e>x8*rew_HPPA{%Y zuV2IKk-NFGPuqHXd%ww!T&G=GiEm>WYiqL*5fRPRSQGEe%=k9T0A+22$#d8ozAhbB z_X#WElY#Jl{N$ah38T+3F)@l>LC#txP*(N~A zF!RdFVq;?;z}zJnNgW3VvwoI;@$tcpEE!Uhz1?MZqIV@$7N9*FV2_XF5p(*{+WPoY zKj~D9R9do}-<6|z(h3cae&~F2GKLQA8i#n%e^3-@W)G$C8T~9T2cjxpMwu+s#H9Ug z`x00&rd&%LTVOS)RzCFOJ;~*b-Otj}g2u-8hsXDyC+=cmDD*ESNT|&>K1J(aKsrq7 zX&x@TK0W9lHDjMBlCbFtCG4eo@}@B@aAsZmK1!-(>dGsJK zeo(sO6{5VNLLXiVZ*hc>SDTcgg~l+EBSPbLK=^`E$6v^*r2#dk7x0UMzqyjM7rFCr zBcoYvx=t&xs_{zKJ0;cy6f`PurLyhEj~{bJJdqqauS!rgDEUBfs;o^MTx&*9L74rgPWPl}vkc zb4F#ry$y7yZt*BfV(N{0Om~u?+*uD*#sfq>8+yjb*}6BHrWyGt*I;;jd=`FwE@GEG zy$)=7=Hf`Po|<9LgV-ex=>%(U8y<=WYK=!#wB3(8ZfCnEFUXD`h%G&jDO3-Msn}^3 z8;!=3)|F!6duF9x3GrhaI;k*eQPR-(a%l0o5ZKql0K~oc$hNQgnR0aw4O_tPkn8}d zQ2z(*w5$72pJR8)QP5Id>yl9JeH^3I!0@n;j6k5Bif->Mm_rKo*4T-TKLWeBJ7{XJ z#js=6_Z*f~-F72$I8&y8QkS`r%Z{_xcRYedM9X zet^EzDPs#>ca)WP8%N0!l7{g^$F`}8QdG=IDc(%mCc(U*Ue7Jn>Hz!DpB>i!6*1M! z#b@{xfWZCZ&X^^k%Q*Z{j+>iX$;qh#@AQwlz}aax*`5FBCyI3;*0iNkI*fh>X+09b(7_1npxt5gH)b>r>9xT3D)k5wcNM=6id6W5!qqp zNO}^L8dRPw&;0q*1qc^caSNE-eU5~CPmcfHk0D^!K!_$_O%t})ojVF8x67bC3v41K zuF`>AAI>ZK`1o`U#}8>8BFXQ4I~UtJ7q?h<%^J0_H@o;UCa2|ZGTHy{EP$O>Fx5MV z_t669tGLIi-y1OSFJ?u?Zt^UV%gv-ac()`&`8$U#59PdYJc}QR`xm7PKxG(A4IMu^ zy?aMfSXjs=CDk%YIdFT_%#s;;GqSi_zcxbuW%LJPcxC>{ zalyo^&~8uv=U)zovt!eDx6hlY=8n96pDgtkXUaa|A*GinV5P0pzs$J#6rC(@u@kvLx&iz-crB)q5%&-m?u?#_@O7 z+Kz7n2luMQ8R##WGfM%K#cPXBlBL74FO~u@c+t>Fh!|H)G0Y_#Y+AdezU2)ATL!EE ztaW=lH{ch4?YFU0@%1;`#wI3=Mh#A!3(qF@6B3jbf(4KMHNf;4qae8zk`_CCrkZ^MPpAI)#pq-1*V@rq?cdX;x&zXuN~v)SJ?ckyP{bRm@l^H?9mtciCvUKN1g z*>TH>pk?0!H+T2R!iMkPyULPD!R3`l=K2SfD_gqfUY{nQA4MHkTcD-CQCN*xIYA!* zPRpm-z2<^d=N01O2Wbu^ZczV>*Nc0B2?0C?nLD-Bm68>@cxRklC^b+SCvWDD-vNZ3 z?>@%w6FR59muk^fdmSx&C0ja;DD5#BXZ-Q&*Wlk2n5$wUCRac@OdVXh8Cyg=DY4N{ zj8SXE^bT@8CN}V~1$zk#uPe+iE^Xq^63zwdJk#e)&mYC}iv!1Jk}6$;&VG(_Rrz1$ zOx*@K4S8*1#E}I$Re5E4JF5i`1BNX)?)~ zW@_~hbZv1Z3?g@e)%3r@tf;84S#P46zd3sa`&68%X{l9XseX(st6f%wVAD%_Jbjtz zMArE`D#-m`F{@-70NjR{}C3zq{*nbqf4!$c-5Ly6jUsJBylROp^ zPRDnC70b{ZL98|-xIG`Qalatrhzb&lZMykjk7$T@Q}mCjLpF^ggQkf03%44i-D$n~ z8ix~{=+^KWaX)bKAG&*_05s}G3E4#~aGJQHktu7v_ebpV6ECaG=-8QL1Pm4xUVSMx zHL<=tslRLooK3x3cY0Z*iIwr0#*+|dH|_RSi6_viG>QUE_p7w1w{n*p&k~Ku8T^cN z!-2lfpM=NjFCle0ZFm&yuF~CV)ePP*0 zU;-)Mz5a&{FpU6!!+G+>3^mP!xc5N4U9}e~P~2e_?=Ds>N9;?yM;#R`wbo4a9ffRe zj{9$u@wTGxmiX<_|G<$sCcEDo=k=HusX*F1UZOonXHv*lcd6PND@y{IfU%7Nv7Pli zvViF1dTzXef-)>FPvpkzjOU{5%HoN~sja*+&?r3YC+})^_C5(Wnxs6MovXIIN3FE` zw}kC|dZ7xzd|zXwI^aasw@4`u!Q>v|`B_%R!6QZ7Fgywf0Sqv)`Qbu6ao`$z_=Z; z?gI=z@NCTvG^mZ)?Zm18Qy52qR5}*Rc|4$Y1Bmt30i1^iV2~dW%}B#+XJg9w=T#&R zLKd-7-{75ZWB=Cmz$WBsy8WaUY8kTfQ7TVM(10}B)U5LHrrFEf9LV@|vb~$QxVk#l z(vO8r{?9u4`hCFrkNngrxY-ti+UvjRDTkU3~7$%%^z+d_dxF?HoqG*GMf=-^N|B=8wu`toF4W8(zNS$#D` zjLPe4(ldnhM*ahP#0FiK1|b|C5pVP|s^=bk2-NZ444;z-DT0+2_a_AiOsrf%ulTv5N-j2XKR~#=yVYb~RE>O@c3BBn+MidFP-xzXb`mO#)FPK@AO!Ibnu5 z#~kJ7S(;j@_^Gnx>E6+Gfgf0as375c@$=+2AR%f#`OyO%HWFHT+J8X7VouC%HWRfJ z#&D5?T)8;1Mayu!qvUdR7at!91CW2cFha%~`T3iu8O9zqUez%O{RbroO`Y@VhR-TnAJ zRsLoE_4ThC+PsP$mW~*UwCG=kCbh9A{e%Sysq{yWVyv1lGOb0fgTVH^mz|)Fuw_Kn7@L8@-z%0I-r+} zl!XT&W9d`2PoF;R;57crRLTiB43muCx|`<p~aUviP~;Xz{zYx~y-i5|Wd9$Fij+ zxo9w6YyNgWmcSLxiFP{t3+S!Fq2fa@_M^Zedj*0?n?e~ViOi+&dQJG_l%K=LekW~Q za5&uMqWTyI8wEd~kwfLnAFMv*F~szJbqJMVKf;NyH`TVF=d(49&O5@o%)a&iK z_OY}fXX)?iRTKr}#s4Zo;uHkB=r4kYnF4cFeB_I_u&2g9zHWYqo&gl`$NbJCg!arK zV^nU=0@p(Emq)dC82A-6w4_3tdS30kGi4t(4Eh%pr-U6v8ALPD@I_!4AWPge7^oaz z1pfImjwQtQ>R%`zdpRXs-geDZQu9hsAfhN>InmRr;^)dc^V>1t!w|2m22zJkWD)rU zS!_gR+Zv#aBTh7dS3nmK+&C6{B^PIZ`r$miM6FN_`a;QHZ5QPH@_sGrI_KP3Uebe>ITP;OXAk3QaY zAEMQoN3cfPr+@dY0S-214n4cY2ZC((w)58TMCQ|x2WEW+Yur%39q&+)3v#_Se~OU$ zkGQ|RJbPzg$FH7aibj8Glx_FTHGds@Om@VYkJ^zzl&429WEzQU>#4iN>^N+p7jFu! z?|cAgE&lva-Q3zb+s<@`1Ggs^evh4FnPd!sFm<<_l99pvZq8;jgEKlh`k{myN2-Ze zI_*tEncK52s1dXMfDV%6Mpu=fO-^neZ+3hZp0_2TcS1ZH}!; zNWN>|j9MbvEI!VF>)(Eu4<(#}l90@w&L0ThE{pSyi&5?=-=gkL=&mx``;eUI)pXmO z$%`P_iL26;3RwcpHRys-?^=3HqoO zV6%X2`;(sO{TRnyT8`|m+-~@^`0ACfWSidw#%j|}&Jh!QAVL+*W9L&>?ca;Vn~!7bP&s5>Et z8Qy#}&$DN$yR#+Q9D+Lj2{j+dvlJ-CLz_Fe40#N^t!67su=0wE`YO@R2F}x8IG5W{ z(5nT9_F1`)f1d)}y`}d+|G$FzB*}Xy#J|D${vA&7j~`0)C~j(##}2YhM7J3BFXPr= z7C|qGMZ14DS*Np#fGF8|9;GaA0i(7+DL%g{HKVb)D&c?2()Qqb0B0yGEdO%|4nc;Gh-n3~CxWKDgBy7BH)k)9#+67} z)bum((p2aAudq#-tH(woq zYVFc3F{^eGp-5xMDBY?Hy!5Ohee%4Q;@eI#>>AY;cTh|#=y`VVSkmLG!RUjc`Yo}Y zS%DWj>+0{@8e(&)HMe^HOuyCFulc(P4(oCRXql3}e#)cBAKFi;T@}a?A}FD3761Ub zE544&!OA8qULD9~3T)VTQ2O@7Gwb0wi|0AhD$g(az+wTHDAjr2Vdt?*kVOqo`c6ZV z8#kKt7y`izS(5Qb5GmJL6|!KIFq9p4Fl)z^@qUxDibNIv1nN5>5*yTKcVP;5YsQzT zr__X+1PGJEw#5tnV%AMDD~KbmxGzGalB#Yq1=P0Kja?rh;dSspcSoip@9zWCin-wi zQ*bzCB3{QHACwAmPvp+uo&=kD=ZbnqcYXr8kCXSmt#ustiiVt%LpfANG4dm$%cy%c zb#l&d7`$c(=Ye+o?S=ikawO088()nF%r9c`P1|1I`e8F6wj$gM)m(UMo!b%Hc`)%- zpvUZ54W%*3g#GxuJ%@5toXymeN*IXtFH~z7Piv7W@I1 zch*RF?k63x_27CxfV{&vT&~sf(xFVyhA*!86De~@PYEc;I*BXBbhEZR)u9SP{yu}g z*9@Ws?hMZ6J)1FMX|6|(iFx?lG!};dPEg}_2Ks4u%W5rgU-e-Eo_T(d+L-4p*M7LR zIvD&b3EB{PE0SCF;+)qJ>hm6GoqhC}JX$Oko8a!Gzt;=Id&buZVzk{EZ3yV>uN>bP z>1DTt+@oLaCnE|ZG;fHLfqRXB*K4%RsH_U1=X)ZZX<6w#}2ZG`fcYW^u=k_ zW_8gh$*YAmBa^p~ewZNtCgJr++)PS^X+cC7IIcWkai-AJUHV&caGGEDQw(5)i16ZS z8JPP>_@UbgZIBQ@S@#hZ7IphkV+3up7$X0>LTNK=zst>=>s08>1XApAyF9&;BqmDe{4t$ zHS%(0E8-az=y@L)^MB@epTQaUVO_G&+rWllQXMLU7SnqXN5>}XZkxq zXPY6pS$EA72vSBStRVjWry`ukNEXWR4TFKP!mqLq#~jyh+UNpBtqIDc2=u}`U`^wpX>s4| z%AuZ~p1@2=3@|)^+Xe;7;eV&oWhk%;6G-Au32pk8s&T`4k#lu{FGn@L+Soi7Yb%xvqpAl=~ zCpX7p>#}lR&a$6I9Nv@f%L?JXIl1~eDHnDv`gnbR5VYoUX`hP|f=p+5^oRlT9ItB- za?<^xm>i?}=U;Z{0V&p*?-BA|!Diphs@vwl1YN(iE2%J zHrw8UeI50K4VaOayTwL;cv?=^2&tD}Bz5hU5OuS$@ozIMh?}l>=Lw|rxr5vQ?Q{P; zBPX<#+Z|Vd`t#iom|0hqRkg*i>M!{8?kC)opdXej?{VpRR1cgP5Xlp_4oR^0HZYfN z67v(IX5s2ox{{wiS1<4@CtAFnp^MkxO@t2+Z9h7U(yS^e*NLYkiD3n*c64sMTPG`K zSO-3`k?pgg9nZ05PrW)fAu?L(IdD!1j*rPkKNQ9 zKs%hc=aLJ%iWEa6DYqWt*W!#!)#uAwU1;U6hbAte28Bghz}I3TExS`fQPEVI(Zsi^ z-&RvnXm=N9_ur?Vv|-fw^>v&t$}BUnv>OIc)dS)hn7~obmGwtDIeh$RvE1xw)7OXF z)YN3`vz2@}UmLN}AAh%;nv*jYNx}ZU{v$B7Nt2*9=V`xZUR-yZcXE>6@nJ9BVl~!O z++@|!p6&kPnPv`!^i6*ENgBF)_K%XtqmV?L2oq5}E+4!}MmOJM<^+x^``{4G377M^ z#V?GKwj3Eq1uk51yW!HX_u08Tagl$0w17VQwR3joB&@AxW!&2ZnEbH*mL(l*`f?0d@6%+Olf#=+m*3=RS2V7#@`XBmFbHmM86k z0%>fNeo%FE|MC1ShfYW~vJVepoW%im#A?96nftT$UG`pl?(Hyc21)CQ)@_vDoSyE4 zu#2eZSDEKD29{I}{vyh)w8brac7x%F|)R~~fFBR<2(Y;=|bQ+oGA z)tOI9CCW*L5BW@j%fG_JeNOx>#HH^7uMzvps3qU&XHe z{iUZCEEUL}x6H;chkc=`VQWWq!6Y3CPN<$wY_y(p%Gh6<*n0x^y?i3Vj!SO!Bkq-y z4*}m`kd!CR?{Jw$y;l~ce2S6OW8%Km8@nGa_T3-ZMK(G{aYHBMF^}W;pu^iTgO|VP zk(L`D`}A{u9FE=1-yui^Yicx(&PyARq<7OXZ-yU@EJ}$AwQo}!1t8t8D(>e5U_&V& zp3SK=3ZiR-{hVxRjGd9tb0D11R%r{#^u*vuWohzkAglJV)4cOCD;KflZ;^(4fonap z(MZv)QwwD$b#-DH-;3u`PmWzKm^x~#hZim|@wA9t0P#JD?Z%l@b|BPY-efcdi{u|Idu+s_*3;3+#I_ZY-j1L-2ufGX`Oh1@>zGp1!gM3C} zXauR$8eQ$_EkGP!{6g+c;y(7@$(2RKTIa%sD>GPqS5P7=cYVu`0%fPV>&jTOB)y*! zKLL%l@vhz&@pOJ=c0hc=M>uM6JLXQGov&S=pW4cOv0IEIC%a>%)+c=b)Jn}oPmk)^ zlWWYl&3iEXKyG7gHsIropMVEqI>3S)l#9GSVJmTJ9YY79TV9`LOXT49yeCrh^nT9H z<4FJDeX`&72)*y+{uWn4SU4q;EP_A4B8NG zoOwrcG&OuDG(XYyqmxw5x3;`Y*1CZ(6+_df9kY~D#s_tOZ+_5a!WYRTvjF2K__HbY z7E-oJ*F{)m=di+KP{sk|SOtRNt=S>u>^LN>QttNa&E{FLFsLEoOKG)6F40M)b%8u& zbocyDDCox z7rXr-kI10^4_n^>4OiFoKf36>GeV+wf=pg5G9z=B6^7yM6Zc11QA9} z^j@Mw@4dH~G5;&i`@G-(TkE@PS z2Jq(MG)v`&GtC8EgGiT)$su~t^a~&V;?M0aABma$TYU3SGI>w!7#HM#nk5irW(Yq^3v^ki+papyhMnmGU$`cD{9#ZXUntnebHAa?;bX@1#X0G-`P+a zMjDD)@vlN>W{J6=xm2Rr`qj-_zH6Q6fV&V(Iv+=ln0XDl?DALRGF&EL8$@75`ApnK zQ=!l9wrS7L3rP;Ul7(6yz{;AFl0aogja`k6>x6D>{e?$|d;nXzGhw8Dc4SNE#L6{o z#j&-3UpIeY3Q}#ePcOHLcZ@go5k7F>-kIz(pD=+iOj$4=%}BkA2&_OfM!NhMjGxhi zt%l5d!@b@Tv}^S+x2EZn72?I46UXx+V3$?NP(rSj#g)m%AC+G5w~hfoVB}HV%QKH3 z0-&m$X2){mGrE~?ukL>R-UEb6TKx7dKMTXxV^~QZ8VB=pCPYVbYXX}B|Ldy0L5Xcm z*M|e|OA2haJHG+6k!NH7+qcgNmydpKli}B(uJ<`E23WrQ5d0CZdwT6wjcF#i_R{O1 z^1HrVkHo^k&+esfq1z{sFd($AL7wlU(0!@n*5^w_aNJe# zy36k2?{qb?gQOpnEPV5i5NKp-!-3DYMCaHyno9pi#+z-IFfNfR?vWFrWD3PmBwjD` z_RA^LFJ>n#6jcY`27SC&arI4LoIQ1?*`)-4YT1*lBW@70O;~;Y$hRXHwPnQHI?8Q# zur@<~c(^Uo@cKICX_^S8IqFS*nM7WN&*#0Nl9{t zBaLjP2kV_nz@h$irJf`i4h+{MSvcL>A3Y=0j5Jay$5e0sOj_t$0Rm!@r#!~= z^3u!Sz`vLwdCCNIa#-##Kel5D?cX%Ai|mUc0W@C+N5>%PH0rv%+5e!1gPRK_{R48G z!3)1iK(Ra~vhrH-^_o9UzErLk^n?Agw~PobhH=Ql=H<{HLr6B%KKQtIUI3^)GV$eE z2}mI8kY5DxBX^0(k_VBUWuBJ=Eq=7^=dHV>1{1HYp8EEN{|1N|6#i~$BV_n#^T`*R zBj%5gwacu-tNhI^+`KT~D5}y54tlFwbU0V%>zeNFZGBu+u#$u}L2h8L0lz_To{AE#U!)B5|UQ ze>#xGVcF&N>R2nDixV?q2p`-|c~K-}A5pKGV$Qnk=q4(^p)tZ00ooR9d6D~8*6}vs zJ4H(3D8UM#xk@f*T=2p}Tycuock+a{aWgS{M{}@DuSU6Dh{gL}$_Mks(-1v>fsR$%jg#iO2n%QNK2YSD8 zVex!tmUIvVl76+{6pEjZKl~XDc6sx1cI6*e8Q_x|Gu$D1*G;GhPoRqI{sAQGtBk_| zZpPlJLxkt*hit1@Di9-=ww1e3jq_q~#`e9K^ChrjljZT`bdo8C<`47cDHP~NF&p={ zX2@&;!VoszsY(?Z3D=Hm>^D*WQ488a8>&5eiw1zQ5h6w$E!dbqXQqks<64&6=PNF8 z&`tU*z+VU3$4nnfXw1VIPlXqjz!z*ryoix`xbivh_XnL^3vT|-IkJs_ zKVNwP2e>KK=m?1nMD(FZcugS`2^Q^}D7Er`GkU zm`xhpzljBQxHi~H*?u&+-%@KS#YuorsX6}k% zj;@lD=1n82-4!38cM<9^8FmC@KZS!xThevx6?gYe5EsQ?ZUaDknuxIQRFDSb5&$j& zkbJ{#7lIY~7C~dx-p{L|oPTFH@&goDb+n?C=9}E$o92=L{Qhn>3OnEara4Y+B*x(B z(~f6@B%7yz`xWq#5h;&(yk(O3|8EaLVSlQbdHsN?7*~m9fJyh+Gi3*d&s_rpg|el&&`QKRx91K6vzg z{?-LKRD*iloQREF8Ik~*35y9oTiJ{uZ0iOH)T63%C~r7&t~;+47*me>lwAF$dHPstxmPLuUM6r zIKA!fZteZnfJ`zjoAX=|+E++N^&+L(oSZ-n;ikmUP<+q5+0Dj3eM0{%2u;YfRP*9sHv1sg7+}*Q(_a+Fr!Xf>iv_V{E#i`!vFG4{)qS> zp@v5EM|tbHmt-Z(oK6aDFY+rb`+ULU9zHN5K z!;s{amW&73Chcsqyqs0z$+vMoy*{!0rAL4flIh2k%Z*q(XBD@N%93}PZw7J#!WIuP zvHi%-$o(?%w^_7MOgW#708@GfE`KoXC3wG#>a?FMD5*69wX5o={AZJHE1eZ}T~<5m zb9%Sg%_tuJXAr{y^Z7-xrCoP0HgE8_o8V%VRor`_z^mbSO9SM6*mRn_wtaK^$!@Bq z)z^dyt-h2GS^fqtKuf0gJzX`A^R}>ufrOgi570yu$No~q3jOg4y?MZSP1-J6X6hBe z0u;*9x){3VthzBT#aP5lB$OT^2?}l8dd*!lvQ)Y*-0Ss0;V$FnZhLvsneLAM_1dh2 z8Jy54byZN-uESm;3OkBbW@3MTcc#v3ZL^Jv`xGi1dG{CQX2{diPvIwOr5tTX$hrx9 z=fi3~%x6T|kqvXN`Lk;r;il~r#LB2YFnQGi;03#0Ddf>-uH0FHi;S3Pnub<|(DqAJkx#|WlS?#FYf?1+wh9|=^=pkAfV zPB||UY6g*dUJR!@+nn+?YSrVqe!&ai8%|iCp9dQ_?mH>~d+*vaUiW_^5~ik#oMOF; zG09*IYtwI{+aZMx8L-%AFw_d-;>C)MC@1FJrMn-#<>Gb>_U`_H3X|MfJ7Sibx4s0* z)JOxl<0D&HAOu=?c}e)|b!~bUutg8P2BJH%t+=}jp9N)*5s=5QwkM0ZH!>*o-lQSs zKTZHpl*@qgcm?>8__|+lawUwuk=|4vJWT?YS5`Q6VC}0Ww*jebGYM%pnlZ+Iek$w% z3+fVXsrYojyuYu#Z^-}%n##4rU)F2&e(?X%7!<-AZRJC+-W zpuRk0-(Lr{Jt4hf9CmP74nT&$MJg4X?3l)9R600?gi?mq{4ty<8`BH<}?0KGS=y} zW&#ZI7wSlg7|4fe9mRgRgY$Aifa35e#)btm%pUUb3#Qy*+W0188-`kc|M2sF{JVVo z{GW@9D^dR@_8Y7X{$H9YSn7y4(oTl+s@R?9i;S+jXSiyCgScXx|Ncboik@3UU0JrHXKGK&D$ z)8oD@2*eio`0P3*1JL8XlRImR0KP@+IL{-!OFk&@#9c^^&u;CcANIq4Vxv~yDy;Y6 zQwDfSq+Q3UcaDHj>S*n17}#=we9!iN`C5?s#1Dg|EWPCbWBl|qdRI

^hcYY8^6l8BrcfwIHPC@1M87QVPD{3|;@~|BI~qu2bYr1x|mLlsl$( z4*DRlLik>-@ZTn0bsYF1{ITy*$_l+WYD8YAps#G!x4X(QRk>BlHS*|MHJNrWb~;KE{bR z!^mhD%3$6kq1592(fUfER0|B^79PzPvnwR%I}|J5>RT>q2d~?cnk(>BNd}9W=TJIZ zw(IE)m}q)9n&ai^+t(} zhJYOcbMN$N>HTY2?E}wJMUEDkg1CJpHV0x2RWQBqe+Tl$8fbgyrtP~Bmg)+4L|0X} zP(ZGG)b?vdPfC=x{aQmV$|z$#0JjPAi55x#pyVd5Csnhy6Tv0RIjQRr6zS=0qr{n$ z-}Zk8I?p2>%e-M<`o%hRg7wWGvv<-7wS{@jW2&Ku9ltmzMn*CB6Xv@*jQysk4PC(& zE)k1AB6497z0t`PhnY}AW-qbs=NW4al>U&cKWuqI+P6Sp~M7}eGq}ZbV zF)!y+d_&mM=Q>2?$@b5>!=0HMMr8Ukr``Pa!5IyE##q+#?~5n^7^ey+aK%?N4=f>-q8LcGeG{S+u@!U zLu(~wfCW`9(Ho;>$%(?r+@R$|!K*WqkOSLP(Bh2TS%)Qz% zeHVDnCX|5u`vG6e==$&%;+!47jX5NEr5QGLX}be|bDfY59z?>II>IfF*ZN_D{+FvM z$XdRN7fsVO=W@fxkBANcHQpj|5YSLTV_?~l;nHGY1iaNNUTY_xE%&kv9Ip1OE*$TU z6_4LYvzAu;NBA~k=Q<@db%&qie;@eSEf=h-1~VcdO!#KrwC+v*ob&*hRTjN_k~3q& z--D9mVn55(+xKk@|3F_)li5H{&*-Py_FwQuU0yX;VozNTHJwAc{DBP#?BbjGfUuoo z*80=$hu@$k6yS$9&(12l;vpJq?5nH30@-_(IZ?vNK`PrMs z@9d6Y_27I1i}55FamYZ7Et>$DFxLVA#p-HL2p$FtM?rT3?O-DV<)2Of&JWF(DSE=# z|2Sg^EKdR91>Qzi48Yxvmz^2zpkbWI{TCM5!`6ag1s)}sYl46KKIU0!A9Av zhk>N&a@pc}d3F207fqU}571+(<@m_A>q(>p#t7``69oe3W4{$ujnZ?ts&w@x&PheU zqgpvUvKA0(&0v?r1%WUyx%k76M+bO{SS~DRyZT4%5J- zwmTU6VFGxK*COdBV|ABPF>S$dMl!a~IVdADyR5?A)qkm+3?Kh5nas>gLniWASB3du zQswnQy;!>`p`;p%(FEn$4GpRO$TJ7z*{&1PT66%4?oF4ada>aU?!Qd5eT=2F$Wk++ zoY51TzK3fDAUNjPJx(3G0bWQv;-)OjiNK%A%j*B{fdnS4`bRK8UYx^y{R8HKb=QlZ zi?@v|~%c-UK^jneFxdr%vtEur7rVbV;CL^ScHTkFWssO8>r{g22* z*#pN6&gRxS!h0YVSNsf~JJ`l90}&#dEf46MV*7b2tsuc|jJ{J@R)DA}kR|~3(AAjO zRfP8NKm`N&rNJ)dX4?@9^W---4|^R>s+J;-_mKG+56m~88pgAmfGq!e#vnL>GrM); z3(!@6EZx*3q!VMe-`Ad3eAI-I9sl!OCN3_H73YqC!YvCu6_$j0`8#37B0}OZbCje% zV(6_UeQc~vZT&K|LJk`gXI0h*-ZWUyyyGF#mUoRaW1vo^AiNV2va^{#YLamtyXVN4 zv3FwdtSF&;@c3l(@tZgB?N49Iug)r9>t3i}t0t^RSjlTrUPsmk%N6f+-ACvjs7B#I zuHUX`XYR1@WYY-0yiBf->7v7@CAsHcfP^ws2_-sHb!9xfzan(qk`#Z|t_+z)X1zf^ z-$oK|FVC|+x58fO(;n$?>(Zx`EaIUj@` z$Ysxm*;VW(eAw^1)%6DDf2Nps+*UXiE>DEk-Gt{@>ld57d^h`TfYPeU{@RG^jeOD& z`T4coAK1iIrnx_g{HLolrfPy5e_|3sJ0CBAtx5QqhV6+zmy>_;+WB`UyWF+DDOhKN zd-bmd!QJI6IjqH|xjF88CURwW#<{gm8c#>ZW_MW3n76J3kWkb2PyCL^3y4c8QoA!A zGESPwP&XuS^S|}${tVtj4}M3Np85x#9_~ly_+1m@q0KD-UF49po1>+jG#O_OH-tFQ z8=n(OQGrojopf`a%MR1%4MU*RS0RscDy%WYGfrS!>sT5>Zr!_i^m7zK*KG@AIW>t^ z2OoCgMH)`pn=sGovTB6|aId7|JCZF0+{)yB0@2n63vtk%JeJPxHQV?)@ zs?#a+1?vo?am>#ycMD{gOWOQH$D4dRL3~@-PvlDAD(emWGRWKb`Qj2s)GT=GYH?~wVm zzZM-O-NaStt@E?5D!cF-$ix4-RyQ{9x7FZ(&RNzdy!z9>FFL;e1u3qN9@sYs0aook zeBu`Z@SI0PkeB+tG%?C5eQ$znd=NXb7fGC2`}z0?;$YY>VSB|&KUb8Y`sCwgU6yya zrypadCSo@|sRk`e^=;PL$RXc-^f*%-J^>rmIQ&TubH4!bJV;wxXy zZ?OI^AxDX8+78FS{@fohsQdkUo(OEqs#aTr7xPASflM<{d{O=147l>X2qfM;Nd%E) zZsjR&#m#OyhiorHmG9C3)y%4a{&h(YL^#1`OkqKn{GGxMzP`BHiCHZ2%*_)rhEdK}rQmer?$RqucDozoZu<$Z87rLW4yoB7dn5pkyqnmUH|99XJ)LRZ0u}EMF|cb zk6!U!4b|@c2pMWCs&WdXojQ|4_c7<|hWWBqb|H_l1akXa!7d^oS}K?+2|?hZAnegZ zSvggjEz1PzNnh<$%oa&8ZVHiamd>DJ9d# zz?<|PFYy+yTH@7y(}?{+pG4D9L{qYa2Sh87-4Xq$P^03iM9dt_qC4^mdpNa)l1vic zPH$wEfXV?&mGGr8KBduLG8n;_#W3z;{vULET=i{-{3pfO#_C0KvvPK1P0f`QYt3>> zot?LhD+u=8NV!0SzjEptnYBnsi)DQ2z|Y9!6rvpi-rqX!zl>`>KQ&w7;d{)qXD%o9 zwXG9n0IE?^p)U1C{wYwPSRFtxMbmNd69fd=`*eC_Tp6=!(!Fnv34|%(YH~FmvQzee z_tJ{hK1Q9PwK!-~-g9vgaRonuUNVDrW(MD4#O1E>B8aGXS)C`jQ|>?Ad&N4zHI&fJ z+Q;%9>qP4pIJ%M`%ji|q*sO>HRW$Q`Dk)m}c5BH;^t5<$j=S?}F~J2D-W5Q=goiGyK%idJ#VTu%>k8~G7WMvGJ0l{g|!)_ z4|~oExeAbJ*z9=ETlOAgvlDw8Et2XIJ%WNy-pWS64{(gi4D2PCe3x05$%@;L_0=sz zQ-}OEsiYNKkQ9keNDnBuZ@02t`|NKws`0`ei*DWlWgo62#fzR1enwev7#2SRym8DI6A=TWk^!+f z3o;<$V6navs+M1R2ZB*2z!86XZRdfa7t*e`guT9tx3mkX{Qyj@$K;yllc#ZN=ld4A z%zC!?qKNv{WRsh;&*!Ij%gDS^ffds?w577LVKI^I7#LD;p$qY>hcIOT7c^A;$n&^y zMsCftN?6gv5Q?z7&ln#U@bR}1upL`1s{)QBLAXEVSb6S-g^SG`3*0CB-lewT>)U!? zvs&sY&chDMSKBE|DJO0D2@LLTRA4ip5evV7Ey5*%c2PwD1-b6N_b6XdZ`6 zTu!|3GJZkx-|@Sm&LdH6uVCqYG~?+r$PAbCzIJg|&-H-}HmypkH7{eohikSrx9@Y} z{Bd?>i2o22Lrm|wKK8l3JO>LoGYtypaSkG`-uX#i$-G$oXlI0tr0IwrYjVpYJ7mF4 zgP3P<#!3@6EUXebD)YTBJ2AkO#vqc`AoKmtUrrK8{!5CS{QQu@f`SJB-HXHJ-v~Ga zE1)}pdz6w>MH*v>-HN)Gxzkp3k>@X?w6<@!FBde)h7_JUd7cWzDwswDuHRC$<{%OJ zLT(yMNdsDCTv_;e7PP(dW<$KIm1T-_uR6P;{$YK-w(F_Cr$0WUsOejodM0t1e?&R0 z+%@=0SxnYzBFL<92B{3gJ2t784wRJoUB~&&{f-!wYA%y=wM)tef#*LMR@0@B=(MM^ z_uufHynemm=oBm`MAn3lv!oKMGE<4ko6)V6r*&Dh+eW9@>o z%gx$j|wA2kECt#G`Fm_acV6kz-U-+L{iMLI>QF)W+skLzaLG!Pj#3vKE_ zR;`@56r#Vs9~1y6L|Dd*j7O3BIsak-7*Bw}UY?oR+034qnOXhb_w8aTE~A&%A>H7; z^y9?<;c!#R1zj+H9 z*?PNQWIMC32SJbc?(UuJPgUWxN$#MUeq31|&&IzcqNl>&?fMVvq}3an4r^s?#1`-}suM94w047v%7 zwyZ7P>3^0LpyZAt&S5$05>P*rvRI*M|XV5&Jgy)CMk8C=EQn|W1P#blJ}GKjBmFJA|MCDacp8_-h%dO7J=36IrH(aB41T8EuiA zauxTf9I=-8$RnUYBy=Q(O%o1$9!f0$1!%?C@t)fCrzv9%U0iq@>*)oqtXQu*0gJAy zuTRO-Q?k72%viwed*YnujPsMn$S9d(?x*q;oF5^dHL~C3UOuZvmsY8OLMG*%aIP4X zT1xdmRSwy;*#0Cv=FhFLEXU=Yu&x+T->PD8!<2E#7&r9gD6pNV7B3VPK%hd=Dub?F3pNA;~ub3F!j5VQD8`> z_D2z{@bK_~!N=O#D#pf4nSMu)5zYC*n=XpHggv0&{RdpP{<4r9Km!9z1j+mPJp{nf zx=)@2t*zMtj-R}`I(h;!mKGp8dT3%IluXJ80w9VHiW*?ICE+c!%iJ+RM3)uqe^A&x zbr2eMNiwDvI3=M0_K9BE9X$$GqitXAvKy}^$cI12iGD_05+jlt7I5N_BkE)x&92F1 z$=>w9UX!IX{y*~EaN~kL-Q@Kh22dI^p{FyOT)}`}r*$pIlf}TUvOj;+a48sR-|d}w z+H-OY%}s@?mC>a{tGI@=bR36`t3jzcMTh!R&p_n&5jxjs-<3^e&dp7eE1{_7t=Zc!T=Lkf(Cm>Z^x5TcQlETPF_dMIBqGC&4Bz zoq_>>!r1uS(}u`jHPLb<+yV+Z=70M(G4FX<7Ry>N(Dl{yij|dBo0_D>A!vJhTNH?9 zJ(j?}4OV{Tf^4*sPJ>SDdf}u$G%ukwAUo4%34dnFMn}Bk^@%6_bBiXIQ7uTCh(Zwb z4vu@mWDyNA&jl@l3ivHNPTQDnwWv*zz%Bk7YpsV_pA=qa6gRu5<8GeArH7ovZsTv* z1^D`RosuMn4rt#|QqHN(!vV@lZtU$U*J!{0IrqXfBzxRiG0Grv^v|CsJx^LuM1u!M z&TyDU(I_sY$^On=fHU7b6kkTY=ktU*VXBm&1&;>o})1b)!cM`CG$U*KsP*n?l zOt*-4?j&{x33HfbZ7gz=djk}c15?LsdH#FTP8r0M{s{Wo=j_IgVPwHHO4cQ~+f^{2 zd;XN6ujwzg-4hPF%HQ;6`DXmEv=P9Ijhq%Z*$S=mz#PaPhv<3>~$%gs79ah`g z^pXAu6%E>?&BSW4Y_PQ94VcSh`{;LJvEoG=mLcQy!Q>Sl8U$XT8y15~%|U0kAU>;! z7%aIsEokDj{DL%39pH=42982T30YaQBQg6-e7^=OPgqB#IHGh0>}cd{a9|)Pv5*?& zR%tA_Ao##uerhAVe?g1n6sfroZR~j^%XNUSb@A;V#jkMU9SL$cJQOi5vln3!<>P2`fX(#Vj-8&V7e0#{ zpT{K+m0sF*X8nFEQ6OP2Gk(OU1zRtk>m+r@>xE^W)`qAG_JRT-)~b)kw>l&Z)|q2~ znMNGeQ3|V7*?t)IXfOf!6?zT;!T`nI**DKFtgb;JwU>DLE*SPcT{SxpWwM%X48c98 z>|q`Vkx&~A>6fa&v)4l+U05+9KZ6{dvt@CaGLGnY+9(LV0ER1}1j!e3C66dj^oqjF zEeR4g*VMm?t{;lH-T+R~S8+h%$MreWU4Gn!g*dYcLYb?{5ksXiSynFlMFX+B(Nc5a zZLOrboI4z5R7Q6XKltl)1T%shBjG$JBT`)q?pJ_X9-@q zBhniBf||<(j>{bZC110`R&1Zr&(6!^jZ(qRr219OudA-$UoV~qcp(FU5r1c6*KGC< zx)jeuF{m=Wd{q1qYOo8&ZAFPa4qm9G`4NpX{G_Ez9{MY|&Qacj=HP|1%3HJ=+mGi~ zItXi#=HS@1*7Miw!=P!#jcuQUrcbiy^j1HDzW>;qvKFxyM1_XNfU!Ve;EY}DPNF@P zT|&;Uw3hr`+xxcOG|p>L#K0=rz+={fLK8SRvMx_uTH}{NF*1|1eFw)T*VNXGK@lJ+ zRNhD1S!WEE+x1}Q**nZ}_VMZHV1F+41lfVshrID=d0v8&Dg3hJ7TaZ(-kl14kiWlw z<#$Gbb#)#_B3gR&LyfmYa9q$+vEPOX+&YD+si~U%!o6p{f!zyrGp`z*hq7w3{LfNL z(fL~?S6}30{F5w*X?5HdMG$PUcVFWgwRkQF(}3!oFx1jU5x2y9U9WU`y&uq~Ibp;% zmXFS*xX)zHd}T~1#l@=TALziQ_%072c2^!&N&sTwi3)yk*VwcZHnqLPHyG>i)I{jX zaNh9T+#I@lAR{<=`3YysZFNd{oyFJ<`FNc=^lDJjr65uKnQy=pP<^^TlN8j&m=!H* z7~T5rm|j=k34CB#JAE)^H=^qQ)c+ZDoSf7@X))X!#ya?-!YjDo(*eOXw(i18E8?W0 zUo7DX%TblwM`qLh-6PYX==b?jKgt;%$WYoywu@QfzLZS&ceFOWe8YYRMDzw8osqE- z5hh>JN+EkNdX>ktK#@n!i9Eo<0lZ<~SzyE{NbsZvIS^E6_MNUrwoLOE> z1F*8a=N@i7=p|kCd5J-}D_?1h8=gM%_XPZ(u|Wd5IyiF=IfUewL|PS@LKy6>f;-l{ ze1wXHhqufbrQUkT1n{Wya@^=O%rZkDYV3qzLMxqEF2y3J)Q2`b%fKNqgYj7iIDbOH zxAXk`x8(P|D(9yc>8EEr{S;0Z5|L6676<}cz`7ck*&hN!4nTsLQaXp%PXG#@Wo0x+ z5P?L#U=y~y3V80I@lJr+umty~YlYc%^zAX&?W^7~+}H+35)B_<&H$R98s+Lt5m+_~iHIM-Iz%}anxiosV^foJ= z0jX=4h>~X3%Mf4WGhmfHeHx0bC~JOq>$)f07%xb4n{7s=eF{Z-cqSf+omKw1bu*30 z;OK9A;$wz-7X7+X2tGc|kGe+kljZO^ybT(f`fKbM$<9%l<*M0~tVr-L`*K8$S! z3O5;s#s$GN-Kand*Nw!7vpwtM&?-Q~`sW%+h?jZSoSLLG->05y$=Rn4jg~7ZzPUn# zx7ej=r@Ff`6tni7e~yZFgFq%;g<^1E#X zn0Lfch+X0n|D3{qeCdGCoP7H@>*m6S8^;;HA=qu;@l+CEA)8=a+$m%5zsJ(NOd;hNF;GeLmLfwcJ8Zfb7) zapBU_=hS<0VErEgcql z?I!OUE}LJCzT$5~d(rpYEhBvEPm-3Fp1~ccYa>0&<^Fya4JJa$zB%D8E)0MCmpvW`PKV+|0p0S&#ep+)s8!I`OE&ro= zB0N4BuTg;@C0SH(jhT`4n27R|xF@yT@mc@2Pl=YFC@62n+HIrv52n;bm?%tG%+7J} z5+%2|G(R>gP-CIC`5uTwyn;CSV@>>mSCWh$XMMQ3?KRAzKI^d@EphKIUP@XT2!ugx z@f)BYW0|AsAAzjCMU8n*gHa8?j2txF;_XwRu(Dge4&+`V<^}j7D69I~$ z!F$v69?2hS>1pX$Al~k7X?1rvLoNflx3)nuQBgpgk)m3M2tK^9hX!b3|2H_x8w`kE70l2 z;f-a=GP#77JSr*LeFvoMKcCF!FD|MyJ=ek5gsi5R{Lm8j6K(e^mBd}aRz=LlYsFE7u7L)$N1iZ`tEc{d85*yLqK z(hC;?C^j56;12^7{gRf{oSKDH?$aSS6T|0^Jzl@f zJw7Zcy_1%fx;o2spF5L56V7Akd!WKAFC{v=U;Yx?{&Vjc&;5_e4*vI%^M5?Q&d%>$ zO|ZH-=Z*Zkdgp0@xRNkQ(J{1Z+l3ELcEg*;CJ66%d+%O>)&W{0nXoVg`$8%}KR^uM z$l4o^x{qXH&0Pe&q{^17u3euaQK}DMGr!VLuWz>f4rqHZqCPW}ZF4=I6tSO)By z{czX&n8#&cU9yA1Cqt@|#v*?XKW-Y)^@VybAN~RtJ$v>HsA1vByayD4;{ras8s%JB z*b77L`U5zjR~v2;#1@T$vdh?%#Q3$|5{-`Nj_uu8YpXgVz*TDezyXlm6+yg zCB5h}Chs@nEWPnw%m#EH*EikYKlZ6!whbut7V_P%(|dPcsa8)Av^8R|fKXUj#Zyel zI%Jiwo@6?H^#P~_h&6Oe+KNcJ%tihD`BTBGvYmzB68~3pM8}VON|70f%5SIaziium z(nXj*1)_4+)QNg?~m4Q7_g+irKI z|G;h-#bJEpa5rBPA#jRTh`Bz0Cl)|B97`nJ5c(uV(HNiN_Vkzpf)Er3+?3eUX;nrZ z;)TI^2?R8ud)J18@SZJ#F$YCl29R`aXO0c-dyqiFYmwO>#XMI&(5%V9^EXZA4gN|J zf{fIWdAkNXF1xMD{IRy_T9Rg}(>R`!SV6Z!Q_zN3LsY{LR6!49Tl_QAQkCDeS_h{> z8`Ps4wjlehC_d2zAsQnIL>Lh_>~LPezfgnnyl~AH*lt!cMOis3qdi#L#N4RG-2KUK zJwuqlEn-S`LtAHWO1C7%XkBWXz(1^h zPpV~PGhVd69-I2{DJ#5|b6G_7#eF+pqUwO? zadry-#o|7_ec(KJN=+X*)+Ycg_yX_g;F4zUV`d@;a)?p2QoIbs5_N84f>m~yPBS)d z3{UXIZF(ROu3Uaio|q~`e)|Dlmp;*F#goe=L{d;~GymcQrkv*{K<{>nczdmH09hcc zyujGlu&1jltcHQ0ruA_XEY+f$vN@Fj zXOeXbY0TxFh;z1pvPJ@_1N`-Ew-l!1XAl~$28zCYOiv0v&VqW!qjD41=H!8Re!QT9 zX5p?WOf$y{%at3kQTY=!MK-PyF(rZ1|HR|v*mZ9BZF7na^eW1v9iT?)!RC z@wtmKgbJ*hZo4wHwhw)TiGLVD=ks{*fSSmZ*K4hOELHkwdvl*CAOaltQq9qpt{+fa z^u@n!ES)G_73Ot(d{Xf9$0qT1_j9}7%;L6v*}ywZYKn`)2C^V?IJPTzxzR_}r+*;G*vrJn$V5T~)(O$UmU9R#PbDZ9OD+T<5) zs+PLRD8b4uDIo^D&>~FHaqYOsCtF-`R0>ZPKP$yOp|~qmq&CbitSy7m z*XVOzwnyIRNY=4n;@})ZJ!*jhfULnLH-3&(BaU)=}}AZ{A1 zZVvwmLsD0YA6B&=AdFf{U$)45-4)FGTv~?bH$k_!Fy~MFS*Ln8tK_ZavYrh2krfJ; zQh!M>CFH7a_&3&^K1n;=ff+g=s<$Z3Lsz@-*-cKMpEZza6;`(Fn;?1vHaIb>6 z#PYA3#Kdd!q0gCLuz3Ev{O1h;AW9~~);i?w>7%`DBE#hMpjV}y+HQ-JFiJx>1$Cbi z17m~!#yu(1NEb+nhY)qTPJ>06Fy2kiz4z`h*i;pD_Z=-Gxs((^n237fx~2|#iqE~6 ziwNm7&SzL}3r?P&AwCtP=PS-a1itBM|0{U+i2=9-l;O)w$AIuHe{^!Oz{c|DA1@zc{3@ER6Le`DU=@UDsJg zbC=*n)Bd7LzgI#zpzNBEm$mg8qECdNz8-rr*~+N zWNB9y7L#MKY3P`h$1LSLgXqeP)Ph7yF5L&z7sz=d7gA;(yt{X5V%}R=1vgW{1R_g@1PcMy0RnS+&;6~YEULBX>2gGDo+q-uXAsb}Fb5^2u- zHrN2*W?J1ob&}u(3x0%xE>Ka`(|BL)MiX{V>piNmfO*BD-KNH-a^&*vVm80MCG+u+ z*89G&3)cKZVT(ak-bxJB+lE6i&;pQo9s#!h%h|S2;2mHiI0R%1H+5%|QxX%0=OY3Xy z!Hg!wh&<2fuIjr_S2@-&EIg7*Q~i-!l+c!@OMm4Gxa3cB5IgD&8|Hca5Qy%JiHkb` z{x7v%Lf(3yY#%QOc-K}mC?GL$IB`87A{Gs~EV)@VkHUZcR522uleZ24(xV-Kf<*IN z7taHv^WtD1ryYlp{;&k>$}n{#(u$qJYS+`BUSD7?MSX{UYseVie6-4n=STM|KdjY$ zVM*4uavO2IuqlZ*PhVM*hl$n{=)`2xw-y{LWt$Go0a zvy-Fyr&6p0Hm0U5uS&~RQWKe}n1+TO^5Rp|Vzw)Qj9hBf<*RMsyf0sfK*iWxai3w+ ziPlr6%gf7uV3&je_T>8wzlU!>Z+zze?TRlaS|-@U%uH)xdDlbKQv6#hIcL#W8JzCI z3HA<*(@YYRAok_qf;*F=eI>HfkVigz`IuKe1?zWhCObr!e4b6F@OMM;s6DPED^8bY zzyr;Vx>WloU7+5a{caRd1)gP)jd%-iPULIdM1gk>t=@HhNL|=`m3(XM{9SS()=zI| zTdpl8=BkD~9OOg4wfA6{+CC5$&hc)|2WcDnnTqBBE2Q8}qnJ&EJ1e6Wk3PDF zx7)+-m8AA~7B1-d2{1ATU)68(`@Lb1M+G7lhlhtJ2VIYcwrbe*9=IAK4O5Jr&+IaT zHYBoD5|$mU5R($jzwVCCyPeV~DXS`obKskL+yMnhrC}+8n8}5V37p@OjYWugO?CoCSvkCvlKUL!k5BnZT3kw*PW{_|mjSX20i zvu?1P^`u>OCZx?Q3s0Ri#Qk0%Gn3`dcu#ROXs!jp2()ow)P#GcUcC|_Y1qd(o}a7 z8yL$BegWp3S_e}WKnS0L2KNGekJD3AH)k{RSO^aMhGycVfNG8J!N@C~5^4yZE0er1 zsQO|#0`H=pgB0`yc8+oa>3Un`xSKI*^62}wq9n(q^48MD^YQI;4`07KKAlJJ`7o8j zwAG350&e|3zTP@4s`q&S-K7x_1f)BpT?7T`l1}Mf1PSSohFt^{r9(?_ut~$_eAYhhXBHmSS#5miXP@PqyOTHaaX3w#w(1TQZy*d&sK z2(Ft^&i^TOd8N9U{8Sg-oMw7j{C ze!UV$NAkC~1_2*EX}4!&Cf?Q(yIWv#q z`ZJ+AKyWbcJ8`omDs612uw2T=u;uR_Z)io7|UnFaPv2gsOZYsjEWX zP5yS>^>NmVFv6&_GX?~bO}fi+wf`e4D;sp&(z7aYY6Tu+|JAEfJ6mjAt8Ni4=P46F zt`MI@EG;d&3-I(}>_E!MBx+wkDl1FoPG24gNYtPC^(Rrn=lbuCU0^>S>xeFc=t^pW zQR6mDi>9%QZ!!;}Yx$IyFzxL46MGWRB{WcM9KMm?T~%T-c9Trx(i4;s8bw|eIld6yFzc51}ow*R4)RO;8wZ(y)ty*W((Qo zltmwZ&$^nD4Lb^5`R+Xnt#`ewas*F7%%EwWV6Lox?oxEkYN5Mp4*Y0aU%Y}gWzqG6Vj;Pe68C}TQTzU=TJaqZu^C3nz;GxD@0rkQ+;3`M&zPz|EF=7R zmmtuK7cZV4%zr%x?ot~sqQ6W)zXa8*7q>q@v48Kiynp3FG1d*toRr;BUo6{y?SpyYKrwCMfYCtQF*=yEkAU4R?S_ zAGv5J${{b$wiEt}a;QHiO`q^=!EIaV@;%FQ{r(;Z3?-hc0AD^pf#WE6_|F9X5|sa2 zse{#-oI@F9(Or)rb7q*Vzvdq#c##8zDx^aYyCgi~IoQpOhlH%W1anf-aKH!Kz(Il% zd2U(vhG)+fHH71tcOG^gW`IFn4O%sDnbGyo#2CAfB@uj3+;5&%7V!jbr@q(E9J+NW-r3W(K7M~KJ0Pb*X zH;5sM3L%8}cs!BFyRO%Gim}`SLNE=$Ln?XP(Lf`4Ec?6r>`CpcjBed`lG?l2nY{~8 zL_5Ux2SxO%fe|a9KA%jRLH|4h)ox!r?5riGFSZ{aA6H^Y`Rnn@-C;R5Z1=;dcUdJ- z;L=NC!0?l_TQ=$P+09!G{`!JftVc=R7RXEl4XsCazfxDRKs2|;#E%ZE0qQGL8jH|7 z>xz4fZRm9nDZoXDldz88Q24#mElGHD+uL@JPk5en!(r4b5Sgb75C12+d&zMW+o{d4q9m=+w2S}{?KExprklR1EY z&%ab;MR~=ZzcUHBX&p{ktE;_iJUgmpiD943CwhF_O6oASt6#7cCd6r8JHEQn@W{o# zM8^6a0nO+Ph>7Apjj!s8ON#LVwcIVhH&ZW89B|3Zv`PWmRyH%E2QtqTvho&y$pga! zNj955eR9!Ihy9G6uzSpFH@oa|;|TB7mMHQb!pn zMEHp|xcl}tkaI$G>-gFEiR?$9{GP(Zf)tX(PTAQX z&8Vq4cOcqY14N>`UW9a0(g;g5*pC=buZCR)haGE5fj9(sNz<(mJT-fPO#uW(ca$gk zguH(eKrTe6?^krq5qu}cXGvqx{(8q!bJ(lS;CvKwH=`4XPBA=s`w@OvTemMFiJBTz ztXI7F*^2n~#e+psv0!UsoPG;?YtWL#aRRlcjl*9pbHp7n&N_a3Le<_SXLUA>>k?b_ zH-WPK*lY$eUGR)h_HdEEQOU}(GmXOGCA@8rfd8pk`MfDE&rl_dzIKQ&$C@mHh6 zztu`3o52nS9p5WZO=e{A@bCbZlcJ#(b=M+vX9%B&=);DAI08?2s8-`fG(xRNIht>x zjAwF3a2smvWH%XNaR;^jk`NmdWl*pBS@;W6v<7_ z_Ow0hIPWS~bS(YJXBRfPG0#DG&j2dW|4)R~;gy7@DRB^^;-YFKMx^2%#|ZI#e3Brx z;9|9LjE9GL&E%i6DPx`jxwx3g$!DSr$G1V@>cm*DaJhSQcmHTp^8M_kAev?Ti?)Am zFFS9!ko&7?`!Z*z?@8#hN4;WOI3sMYlGqtgyY1xujZb)>|HS;feJcyc6}SIJPLD&xOf`2|3Udp+xbhD=HH+gS|Nm_HX*BHm~Ts?(tHtwtM!g1#}9J`HH-FV+V7q z8ZE4^l==(tlzrCzE^24txd!-HedT$IJn<8q)@~L?hovWCL`|~)x2)nwr?x|s4e`n6bdNtGRU6&09*q^PjQ?{B-)?aFi*KuQ zEXT^~xku{kOdgHn z?4C!zZtq&u@QeW8thNC5QB~ZWunEeN*xq6#`yC3{lZyLvtniq zg0O!Dem&$Z_Jm#u1Kt5Gv(NXw{a^xO1pWX41W}t{866QD1!)Q)h~!$*m;op#=w+nHqNg@i%NGc%To=T+F;A;MBfj3)L{6$Z(n(Z%u(nh5v>} zf>xhQ6Y-ahfvEJuIkO;Asg&sH=HDetx8N7UPA`l&(9=hIY4U{1dQla-?aurkpbu)s z`xNEBU(j{w6J&Y*sTAN)jg91sn)hP1KAwI{dHMSlbtBqw6=BJPX%c8i@*-%?Z& z_@vX?gWb0BnBcR&F82B|NA$U>r0eM$=^ugv-@c)>@{*W7bJ8%Yz(0OrW+9p}3!gQ9 z1$LTBD7ySw@Pi0ecW?)>Ias5OV>ZKx2F9qlx)1NAP$yLFDo^NQubiX~yS0j2`Vfrc*7rg}SH&%0rV6Wo`11x>3;?U!1bIM2NIr=jw zEzWkZX)32vkjWc{wl4XX-#xpd#iN46i16A;X`sA#NF~1XF1;!xb#WQYCk@ug%idp4 zv?^;qvS`!C7b@Z#8qSr-Y1|>q@a3>5T;Sf2Xc5m^c4eZxw1rYNtxSUCTH_ySn=}6- zL@hyK^3NJf8qS1$kO4a`1>@x1elah!Wmy-)@W-qP@~;FhM39OfyM0Rt`4jBw{8R@^ z`YKGHf~TU?0gsw0Z}c1{ll((ok;<>7tt{ID0vch_EXII@MlBE7@Flw0?QQP|Z`U-= zykDf<3Z25&{0F1@lfr&IU8XOjW}5M@=!-7*I3`w;rzflzWdAdBuf6U$wMm!A$!}79 z)F~*~RSdHLY~ug@c^-lH0HlVeK_h32U&`^MEF?R>*%7RbF>o+9d1XMF+oq{`h1bFc z`l8n)+oOn}N|Xt;;Iont8!I5Wc?Sl520R$kj|k_YexB#vTG%M>whNR&#CwY$@i|Ro zi(y+Iocw1D7x@ZX4XW|kMhqzy>|8-r9UqHjAzy!6o}5Ml@fxuj&mszlylZndj_`wQ zBS+0rvH_}hU(YlmS$ccyzpm{E!PZ*lo2Wr^^=lcSV7uK~TZ>^g^(_Quq_;(3z2XMM zv8SH7oT-6BD!a|ss-hUzT^I5Lw(0S@r*Kx6q51K-2V)T5ZEbtwy?eY%7B0Fs1|{%W z0A&&jiU!Q#H4KF|jBn$`V0mJ&0`JcKZdJc1S4GkMnr@nYd`<(ho1Z*_*?skCmOfXP zI$tOqBaW#5ZB$VR|Fa*6KN2reeQ=j9&I7w}6c#^?2r-`!cU~$f=?D0CeR|{9JKdBA zieMG;)Fg;_p^v!9|Af&5C0`V4S5xn-Sh?ti>X*P*09LM8QAVJDtVqtgoG0AIRI#E= zsCN*?F1l8{69`vpkA+bdR5S2K(>btSzmr+1^DXJ~K#h{o^PAd_Vk{>;X!*+3rWSET z>`shek8NK*kvHTgtt7iO;ir2+8lpb)I+l;`6E=|kl&Pl6?HrpMB?u40T|sTbm)m@M zuDsNr|J9JKKLvv#f{&(dCXPN)qPVuBu&2{o)wONo5G_QpybH~K6ztFL*^HJXD(zp7 zd4iil1*ePPyYcfrj8D4drX6$CJes6yR3N|c{j zK{M=74YzwPvl}JRBfqUskLvKxW5%@Z1WplqL|VXcrJLt|4cpOQiKmY13L9>B&RXUh+$n(-5r=Oz&IER}I~NmU24+s93xQ#F z+TjZsE4VkYvY~`~?iTzlPidDgXpCKC0vTk^n9?RL}}hf(a3HW+@2w5pA0N@J(6G3!)@1pC`@=0bIBJs3t*O- zRk^A95Ae+9{OGI@XIpn~E(*&ZP*G4n+nDH zTOgeqX!4?bQrp^==@4Gug=*J|lbShsrPx4Yz<4qBUEZ5v3}AgYi)EKYCFKnR#px%G z0;^^dV44xA^4lNW;ug1YSHJgxgt;&TG|=Xnt1r@`eGw)4nR=|oA269*LY;bS* zQ8o`(%xu*?bJeGKqKG^(&%xw}2&5)~ue`NxopG=szVEAP7Q2liXC;VKWZ(-2^g{EN zFZEF=Z53HchJJ8t{M5Kh%S*;_(($?Fr=d_VuwR(Z+HZhCKwg*YmB1CH=AO3?%4=*g zT1q;F$2=4=)66vl4h5dfJ9wVQ-Ey%krNIb}Qk#$4X*Oi_;@CF)|o* zM{eN=FTf>@fNBWmL}Kd;xFJ~AuW4B2#)vwzQIfbw;kBVP^ljtp(l*paakA^|qXM^& z=1mI6xmPJIB^}p6ujly|-Pl8C$6J)BKwhBiB|k}c*$U2%N*(4V)*s;va%%O96c-cA zT}c9rA3x8M{<*q9iZ{&A+RaQ*r3}2$EedRsh@h+=rPfvg;|gL5Fr{r?NyfZFN2pbvt*-j}c{^ zS25ETpc-p5C}K;bm@oHPGg37uwGNPd>-ZKuIuIoF0iy= zTc{44#L^L>5S0=7;q9_bGQ$bjz+2l#{HsRn0E+y5H5?h?Ij||<|Fro#d%-BC{!bDv zhW1?1F>~<(uPR4Pq0z1|#(K;Xp;$h?5cCQSjB&Ly)NB%RS#x=@n!1S2$jqDs3UdCu zeRv_cqEi~u*OCof|29Y4;aiS4N5qo}SHd~q`|)JXhz8rh&xglxx+Z>H>)eV+p&U6O z{Un9YBawQ8enuZe0x~19Ae!_LY?tGWl@8-4j(1o07WI!Q|&@tf=86$vmb( zMTK8QEA5390gV$VkT-BDnu35yD>Vbf*hwWTNX(35^JQ{Ic*M7H#xdAZz7Kkd&V_)H z5q{cQw!1_A-^&(3|7MDlqsR#-I4@rYtc}lGI^6>bY*!^c^90ggo!_~*Br#Qa5mtlW zaaA?_awJ#E#nY>|tg~w83$raPbM+NzAia5J))?+WD*Wm)d(k47}PIeE~Tt zqMzdmLT`sxn;AkD^b6F!MU!Ik!?8NOQ|Uqov|;5z8AwBkuCDzye;=M2y#&EoFpcSF zOFx%hY##q&ds6PY`_*0ba)dhQoFRA-t#ZS?pzO z$x$gnrqw&Y>*0L)%m1i_r~%ZPgU1T^qvQcTRQ{o>?7SfviPZTZmfkiwtE#p(LD+v$ z3^Y2-0br&_OX?#&oti(#cSP9c3xrf|)T;qvJ^-;6um6ZaZCLWKdBhm@0pP?2SmX-; za0Xwl!##aoqUhPqaa>XIdq)TybH^oz6lPI4gm=yD_?kR>f}?C>W1Oz{(b~a`DSFDT z+YOXTO#_aQ5dPE)*#g6@xkf+ZcWoEzbTLwP><;E8c3VPqPCA0En&DU}^Q@Jg^QcFN z$a>biyoA0v^Q67(kdWNH#LhE4)kyp7%|U zY*e5fe*%@cZHzb$Uq|0r?PUv%2kvMWb#}5=ym-;_Y=q^v&M_*-t1R+lsUx5odi3bG z``am(#V(2RAM$E$a*Cy*J*Agix{dqEOX$NIe5xmUlGDGPUx{5=dT-C4KgY_ifArpwpS{IgKHFVyR2O^NK&Fizm%KD^vs&p(*Y>-g8bUI54Pb85}&;X6#%* zI5Li{2Ot`3=L`PPoYD1ZPh&ZttYj1YA5)_un?RKK#&u3A&{_$!)&^`7o8ZOl?l*Kx zofq(Ls#h~Vf!~xiuX*ZXG_MkY9)Q{i@H~XNVdvMQ5q=UTPAspo$zm7N|FJfKJ!zI@ z(9+WCfw%(uMGoi-`L&}|sc*JjEvnF1k4E+rEL<)I|3{4I@NRKO>7TE*^V|M%?4!kZcB3U14of zlAEVpU-v&(22M>75O9`g2V=fE_}+A}_uzpL8BN2N&ZPg_RfoD&!@mO~n{1!qd(^+b6z4rr zRh#_O=d#tNso>f9dVaeWY&T>zoN9fY_&Mm(Bn4Y#dtOi?5rR;Grv6?9o;4YkKzGKr zWVbVonDY+CGM`Jda0}(jK_(QARB=3C#~%XY^(%04Ww|U8wwq-woz?a8c`7;-{`_Zy zv+9AuUMa?8N=+Q}ACV!VK;Usf+_}P)FB+3KzfEyFT+>y7&EjNVIt42YK_wY6W8VEo z*&L3G`ZM+e3W``@vEvs7-LA_K<)jwKsvY_){Lk}Rm=mD@^OWrQeEw9hpvf#;u=dgp z)eNzWmZ1|)wt+8q1UFV!Q@l5P?(`gVD+d~gGR#^T>X0oMs?7q{UHr(%F9VHt$Niw% zurQh6&@0a=3*pDcP|7GyJW|rhl$=m9(<2Pu>rX5nSa`>Q48MIq<=OJLq;!UC|0G_a zooW9qFHpH4Kk>oq*ZBFpv~>30mI7sP^wbbC=j$_WOwd^bImh<4J^;}N zI?sI6RRcX7qZ}YG6Vaa}D#Yon@1c}qU*7j*VL9|jE(CpjB6QFE z{SDb`z;(m^Ha#zIX*6tOYe8F6=vid=c;+NQ=yc|90?IN-Giko07n`oWzPf`0H&7~E zLq!Fjvs(g>C5@iV9GixU?wFZGKe z*N(?mM8EYPmI5hZx^50toeNU$wSSgrc;{P%ij3rE8HWGI;VkkaTZoIfl zI?7Ujn`le8-a54TR9j07+HPbSpua><*-xUqt-h^Gx;ze@(ZM!qn!gO?9Kl^>UHsP0 zDPY)d2%mz>|H)oQToxk6+$Wa}Q;sM30G+yEzjTkSV2F;!*Em;#|C>tAPW{n`(UljL3XW0FPr9#e%2Omd=UG9R;k zGl4t79p~7_eQ?~9!E}2aO><}`wO8^ zN6NrKR#H03ApCu&fS!SLQR@y8kVe)R1T&sJD+FwSNgjK%GP8jg7BHM>l$7@QZzFaI zQ~W`{11W@IHk24KyH|YNjj!!}l}Gl#=i3v|M`sv0N?Xhrs~&kAhLq188`u0>l(7uiu!J9`eoGUXWf z<%n$8J82xQwtxJli;VErhKq&3d*dh1q&_$19#VSW@j|Rc_I~+T(}y>}$z`fUWlf;8 zq-sG&7?`ed|5c^=s|iA>fhA?_BN@50p{*-*u^k@W`I0;ny33R zM@XH6`W_=e)6u#Cg^V-DCvfm7nbiR0>E|}Kr67S2t)IK*RcI?Is2ahoWXez^sLmd_ zNK~qP_lrH!`b`1Ej`vzmdsJb}D6~|6{q-_{XyxbV5%T&V2LNf5Uj|ZJP8fDIH)C(2 z=ebqNjX%RC1aWpFnRl8-iH}$oEPvw^TFh=%h|7#WW9I~MQMnLqHYyJ2;T6JYE*086 zM?+33gy2?7{P8x08_WQIdrr|pFi#<#-i`0Wdu-3vqmlMTe}E-C3(WJ#^qjg|9*;a#8$(L=DBs|7sHDR? zWG1|&+UTaTYqG>vLGA^R(O;X33mukVmam zY*!@-8Y^Opf;eBGSAga`L@d zgeT|sTq?iWR>#Ey=}0u5hwPnSuM}$SClaybd8RRoMy+GmvY+Xbnci?~maYuVNVvR@ za-G(3D-JXI(RFXKnt4qZ^W;S3O?SDKWX{#zgOEn#W!Pt-?h$+Gv4kX-g_g}U@E-M} zK!>ryE(Vzp7CM+Tig)D>TW9M=8laxtimjG?Txx%Dr*KDm3|GAeAwA(WKkJX!sy>xO zB_6+B&Cn0U-Ru|64TuAa0pXU8sPCk9A7FP#hYtlt$FMh}Pp07XL_bY8bt=p;$tKwP zORYKqM7ar81R&zMc)DeV>6GPf`r-;KJ+LXVIXZc@?=97v0$krZynb%hRJg#(0VUKz zfUh{rhaX}khs){WmX&SUXfX4*PZnGKIoGg0ghOEkU`=vCsHY75yb2u!^cY$XlS3_= z5h~TEO9G3n>6&i{=tBHom(1!@g=5w~clt#N+EA;*0Pj#>r7qj0q=iWp1ZV-!8Jh z^{Dw%U+cD)q{U{MvozMGrf+VJ5QrtYp1ngvfwu?6;wK8lv~%C^&WNX}t!&U5$vIRL z8mS0mlYJL{!*YP*ZFrzL>zm(9D^`<+3seF)k`a zbRtT%_wy-xtZhhunamkJfF|8yBjy*v=QrBx0-1h?4Wt}61!;3kSKt891SIL4d>?%g zU4Wb7hBvkz3B&y4{%nzr(}X!_yLbmI)=*b%v9tZ-p(0UtRKZ>y^D)PC6mEAu(U3Wx ztspAnIZIfDE;{kDmMGZ0Mi0E@0DWM+h`VjMp+MJpzJD38sgMkC3Cz8zYsvdL`u<@s z$0z!r$$%*cs#_4Q0^spm$OcAzg{|g30;u8mA^Ga|X_@ZnO^j`2Ky5QO67=DA2u%>l z!tVODn=l8SGa%V*->{(pXbs%Pd7Sh z4s|7lCEva?*F`so0wza)zt1M<@gWaAk4UdDg06X`-hr4=ZoV~gJ#Zy_tBwG_yS15! z2gDDK0A6rGc5HVoG{vpi3=&2P$`JlQ0cyD%Se5c&cl2oT4|RTgH50)AGATpb%OFQR zYHeG_1>uH^>J~TdOUwOeQILNb+EoTw41mizrL(hNJvD6~r3^c)2HS$p%g|~vNVz66 zNQYxOJJZ$EjOPd?k^c>szuh9hL=gTMSVSJTeK1Ytb$V9YDfU?Qu=q2VRdb-20*h`f zJUtKXvrt9P);RDF+_bEEK_+{JU9nVPWwT=DeiyxzSLnqz%Fn0ezrx>Nu>S*t&Ri)J zB=R6w(0ACMc!VY=*Q9!hAj$^$BuTM`ZS*zM*@2EP&Kg2*T+^-t1i(ZQ>P8aD zQpIXL&}uauV_NJ<()9J&tJ2g1jv49>yB<9E<&IWeqpo#OSFTAYfT~ajl^le!u1jt8EH)z_on~k+8Jj>>$lG2rZaUf zwCDJPDm3ZhTJqFlz@WDfQceQa+@~BVwDNYx!P1&F^@C6wc^q#~VsfA$SIBx`oG?$z zX#&IH+v&>xgINFnApYD|MF0>Bo{XNn@a11ebQT)k8_W;1b>l|glx#Lxy|L=2zrd{A z*~r`sTnqyanY?Erm7#(C1amVx38e#D1VQLQ2y=O}r-w75FhY;yzC|sE)@G zKU>~xyrPNq%2?B(hv&a8 z)k3^^0fENJ*w1<*uGh2=4?WF~XUoBbhby67C%IwpTjxjQC@!8ySELVogMkSJbOPo` zZA{5#S!}LC$jwjsq~HAoRH+|sI{SdB0}VUL$V1Bm;*y1;E~LOA3PjXI0Thax zf!4CTtrZA>?n57P{a^3GJhVb|$tFz57u#__4@GzDVJ85&IdW~qonp&Rwa-e2ymVol zV~jH_)|pPHLXOyXB36A4UWf#7DC|YPB&v1G+o}EFc5Nbmw}&*z2;JaqbT;D`{`?db z73?5jh?kB=dXXquZ#i^VrNOI{VXaG zcUw0yN5dPO{&ZP12yaq^pFeGH-V*%93hp6j5&x!HMMbZEnja^Ai9Y?C`3m0zg+`-I zYvXiX+z%08j`CwBS-GY9UCbyL1ZR*0gHY*1N%Qx7u_tt=?ZD3u5MOLM-6_7-rg{Rs z6r$sG*cG6?bRMi&J>LHtr|07C`GO3|2Bxn${ykM(@VKVCPLVwAXG;E1+1BGV$fYZaa)d{Q2UZeAHALSZiyE2dwj1TLoUG7`cY<(73y+H%`Of>VY`mkv4-0$3(~Jk0SK) zO=YcvueGXw!gv;9$VwTb)9h#>$?CG?x>@EYvUEUIrqwykQ8~Q|qH6oLb{;Q=)Ik9? zmXb$V31Q=*ufCQ(NCH3p>blf1C~>NKL^zZ2>j#+M{Htd^a>Wk&%E#~=4_}w~=gC>= zV^KXTCUKJPJd?f6Y)bSxI|E+;q^{|q6I}!pAQ9N3*0tT)4UmN6U2j$TpAD5eZ~oWE zJ9GtS413Y_9_f(+CHnOB%=^HGJ~I_+RjlYO*KK__i{_8`LUVH{?c2*^894j53pDK9 z?T&+-#}Ujp!iHcn*}1xlt?BR8wNEcX1kHl%W$OPN7M*A*K&WftQK~zZKtLZ%9$#4B4?5=P|cpS|{X~dk-H} zgB1W^yeX@MaWhnVVfDQKnkYD?&e2};L0HVk%>28$k${x`fYx-8#2$Zf{~v-$_U-T?Frz=zb{r+d3= zgGC|<7FCmKXuQ?sX)EV00#GdiMH_~}@K|^Olfh5g;|DLur>c2mkzWPtk|)8%uK0Ji zT0E&gc}1l>VGQrsqSJp$P{q|^za%;R?sU?=))fiznIA;cI+!C zpH#~w_MQdW6p}gr9fq$bm_+*dKA|nU-+60mh;*?a&aODYocRpY-?Cn3GMiTOg3DfV z1nkc#0e?BC!K#r)`QmGTetOmLnbj`7-;jF070)2z2ZLvy;coz2FqiQ98D)kPyl@Cf z*_R8bK?Tb7Z$P8e5md?~;I}VAsKIZjIVPsKg@e1YvftnP#Aw7*3P|@mh-z+c3qJT> zVg5a23DlZ_#ONZ;o)1ty+{heEfkSjkv#WsLv(Dwp3uo3oI_Niky&WJyZ zMDgz@bkqAI*YuSU^1F8bE8=8xTbU$98|JZLgiNQ?BnTQ}wDULggnkR-iqH5P=w3FrL$^1s11lXW|6c{rq81{-2keVrBql8j*>O?Fhe-Wv z^k4a>6v|vvAeN5%M{NeyWIcp)z&5F?$eOa^ppq?azhP8TguZF^`!*HW9Tciu%@0Dl z3b&fjMBC~gxu$^=OkI2DAe2zh+6En8XL7VztY? zFApxME*^kBYm(!4|-8W;8w`V1jzD1Q!oy4Y3LZGT8HOhVwGcHC#=H@pa4k2g2v9c* zC}$+^`*ywB3E?~h@e;RZO|pc){~pc8JU}8p!j`^L)7#Cr0&mni8(@%-A+x>URV;*@ zcdDtZtji}uP%)(&AihA**H zM4*7(3v#>nBg$`-@_WVvP7lJ7Uz>DXNH~GQ8~KYJ!D-JO9a9DdvjbZD$_ z5JmWQi{}f1tOx^9xkuh-m#?j&ZnxcnKCj(Z|447^zx{o5bd<7OFYg`}ixsUC2EwlF zL>b29DrL??@VgmC=T*$<+SFKgUH1$uOx_i%C)tk`D!tvECZmT~12Ki=LzBV5!DZ@R z3tP4RrIPr+v>=khJ;Mu&W$&B5XX?vOg1#8lI+tY&isf;x*p{kSLb_vPZ{gK_s;-D$ zHb_#lVKrQV(|hK#nK$`LS$sLxeJb=c?2oRlE@6b+s>jOJa;W|kx~2;w(A3|@-+i)9 ze{zxIg*TWP1$urvLKnmk(F6F~|Mqp_o<^$*gEOpQto`(su%q@P`EQ_W{W1)(TGLNup4$6{wEkkp3)qQV`rBW?*?wHF@zHakln5(VZUi00*pCLA>J zvA~O9hIp3yqRhyf52`ws+sRz%bHG6u;!R-qG;k zfq=_H(ZDdT9UVair2lzLqSKavi_rRSp2EQ919c44i_^`xHx$eoK0XhCTBK?Sw;-wr z+P_=C<(Ty>DZhKEX=x{$IbNwge0m&`lJq*J8FtnBHFY?D|0aILTOKUScWOZSj(NCT zdgF*Cx|01D*8U)|ey=#By)n$cO)Xd2pUI^%Vk{3zblD-=1@mR+Wx^PHlkJgC*D2r` zD4Y1+;kh9<|Ad@;<o$U0+Huu4i6x;v-F)?8in4=@Fp`l@4p`+Qs zBG+qU(^y}PC_*JArLpPh$Y%`u*C=L?;uCNFTUv1^=rh0LKQZjFse@JM!+JlO&@;kU z3s@o3&vk)mdYu?IH@7=XOtFB|oJz1q_n&ks%JaX8kIF^?NqNcHEpb6av`R}9kijN`)Y|lLJkytA`(+2PW>|J^U)??kims{#lYCt5u6PyUI9~QSdHfx#1nR z{zVGWX~DadCf}0U_#Lr;DDP0Mxt-ZV<6k?BGn4h_XlG`@5=7;HUR0Th$I;!llURA;uTn91g@^b9UMGtEvX!OykFkncPoAUKr4{`{JRa4l5Na~ z4@_jFbZZat9ODY$$VLz}b?497GH||Nd*wQ@Cwb-N?JRrW?l3a;{}Xlr3{~NBI(Rbb zK}^N8>u_eTA1@{0W$P5HM#x2!&lpJD8mO`pzNg6p?Jv?K}YIc$)V1i7uDDJqozV zC2t(9`lHTChcl9?sO`#j+t1j*TJF|&Ge0E>S; zoQMj<=IMI&SO6|Yd_;s($gK!z671vkDswFVTq@K z=#^(g_%xLwcZH#Pq_#9H9bc6yNcv2wQg*A+RgkPf{gA4B@(5)##mcS0Oo;Q33@9k* z^c^iNy_<(^ei)Z(yhi4mG-y3<3)U5^(ZaVz+szdb%yUKEMMx6(@821Go%nA-R?bu< zJZZVPI&J=YZ-CL^fIyPK5gkPn7%gsNY^8}%eNdC7&cB|zh$yRQkNZpLNS zx5%xT0vIVN!%2X3Ztg2ClY@2V<>1*W3H{#weV5{yRvkWjG#3XRSnf;FDC8Bhd7Xjs zPLZ05F+&HtHSt0DI|@5mT-qqh4Vp7xr ziZ{$GXq)4Sx-XD3=wiD3g3dO(zc6*YlT=Vy;~b+CC9im3L)mEgD^tIo$Gj5#VzT_% zRqE1Z=E0Xv9ezDb>d5;H+PTGdvT|}os@$?m6pufdrU`wlc_*urBQadFt(PM~(H_|T z>r#JaCkw8wo<c`rI7zCbJNc@w(&cg!I9 zoO-d+lVFg4x5S##N>(yd;*J#zyjm1f_NSk3A990o^SM$mTL%*Ar2ds1j8u9y>AAT{ zM;iZTEzt(Jk2kA7=|6t!-R5Ux0k;YCoILhy0{(9c_7ZvIQ@89 zlw|2J?@Nu(=qBL(CR=@4qJo{te#;_v*FXD)s=rZ|Cqu~#P=j5hpAVaNJ~9p04e$P3 z!8P;+^eiX1y84zVLj>K?;-kbGYq_TlY&D28i0|VLPf+;90 zSu%GqM_lC067jjR!4n~tQwKQ72%ZEzMF$6_>`Hhk|kGVR?1ABSCwJ_gF3d2^c9Sib{O^4ibUJ^TBL zn5}ytU5F4af_0LPC<9CHC&sD=1w{w{Mu2n%Jr+a*J?K_PjFFGNKD6tfD80SX8{`C8 zzhG|uy1gX%Ei9gN?1 z{%wIDMu%ao1{KD@Cm;z4iDG#1h%C-2;J$r`8uuJT@$+^+C_^g50h|1S>V?Zgsbrs< zLA?T{KvrpMqZ`GpiFLSR+lPGO(Du;yHoG|#{FVr|#(UwGq8Rva|8xNXRq)+#ot(QM zB_-wI=kGf_U}j=Ep43-(*T(ueG@SmvwF|c0cS9>~ft0uB2pRG4;q@wU9-RVcXw%C7 zZ@v{`ZT9By!OCVn4T7uob+5}i2~uz8O27{FZ?^`SAEUy2&&`>BB{CAKV>5D4%NCvW zw{#kRaYrz+LqT8dEbu>mY)e~Qlzju~X!czCNc>Bx2WQKwT{)|-7Lf!lF_ZkHyl!Cg zlCF!llwahQVqck9&Q16K!_-@cMb*9G!b7K|f^>Ixhe!xYO4lHul!SD5Nq0yabc%Eg z-6;st4Uz)`0}KrCZQkE^&UOCaVlHNwz4uzrTI-4Xx$kqo34xAGSugRiHL;+7qtJ!@ z)t}#uO&lvhy}H9Y_hlh=*FtYunzZMm7h5HTXT`p1m(+XXhyAHFjgNmaK!)9MZo`}t zhW~*STIsxuVOxHo79iS;fp29X+olj`)j{h-+mmR!fsIMj?9<8wdJ&CJ*t={1X89!0 zK}<=@>IEHqZ(BBuaw}hC7@B@jaoXJ~FJh=4 z-{FDj|CB`Fs6Qn%l@1F_?!?JLUh9=|z{E1ds9}Ti+X%Oq~7B1wcpru8$ znMnPD`%RToJ6~8q5LP=}9~V%>czFXqj9Oo}INu77h+q&DB&mVi`?fXB0On57iC$yc z@-rLo{T-aiK+@Prm^`)5jdz_v2o(AE2#@E67V8^_>z(RcNft6nKU$1 zoDvY&>88Tz`99DDcJ1u-%pb$M!s1j%eiHqqnJ3Lj({B+)qEepSeX_U zyxqtgwCUV+Wsa{^)FqpT!bEX3TeXo~h6RT&!Q#zc0r}Bon9182Y-eXfY!~(TQ|JR_ z6&Vt@wkeTNA~P-A4dm%6RFlICqNKEU*&2AV3ve%l*5J`;IJMAPXaq(*p^60dCqZQA z`X!8~3mqW;NQ=2j;$*#v%V5##qpVlg z(g#D@Pknjk<{!7K+efm4*1J$n?h@X45!NTIrj}?}URAFwJ1Q!@0|Em9+R|YnX&~Nn z+9NM4F2?MX?X(#R0@`s;{W%Y(r1^4)NDcH26NApiq)H7}5jxqIefh*{oP6w|9FDY-70B$TZ(tis^V zaq{rP;}b8|2>(w+jl|px zr89Gd3MOcdj!!IC1F_O8)|5;%8aL?^8ilhS#7J9j99Hi|Bc%>em)2Mefh`&CVb(t# zcym)3?EBCzMc#g67k2omVk+2pfaU=Z@JzyOwJ%iI_uLbC>1Z1yCPMZ{fC03KoGDpO z2N&8s)Qc=9a=LfNUc`Hmz^_B-il^fmh?)(yv_4TfYl8u zzLv30XkijjT1EyVdudtIh#`ul%iX{eV6!q>UTb9>4xTLDc3XyZ3O2scenw@ugXvL=y5i?sD2jKAF;&Vo<$*Uq zJjXO!SgtZvr7Uf(Jzcbu`4UhbO<(s7?SBq`!O7ivNs|l~&RbCzHckO^z|1HxEkx1& z=DutFC~96y@pZJO%D+fLMko$npA2QyzBEmZ=$VDBZE)vAFhGCCZ#fEuI~dklpuE*J zMgO7px%SkBJzXt4g5rTQU5)+OK&;vig^wS(XYCvMtx8w8OP=9k#wmnQi7l-b^wX`z z$*tB5{E9myCcBAqaUCsLMpQ?JXajM1VKS%^1vv7D+5@PPi?@g=?HdGZiq58}4-fc4 zuozDNo$gE%)ZQt*ck(e(dio99yyz{8EN9wasrKPF1tozO`9=7&)3jQ3oWiYTbtUYC zYG`59gwO70g>GC;V5X{p9OL^#Fg!pxTVtfg7WE(+8RO%-mC!{UEbu_j(Tk(T1H;(f zP7PCC8^Cip7XzK(8+wt&P>SHkqqo|#_&170-+wrynjsH*xLs2<^v-Ib`>T(KE{4q3 zDY9klay)MboHz38EP$e%^6`JDP_wJ;LsR^zc)GuZ}H&;`ySgb zf4Sn+rK=|6nJ>p3dnY3-vO8HIm+j>TQbxSjnluDMqlX&q%swx?fB(J!1Jfr!cVO;> zb8a(A%gYwdeewkM!u%7@NCW)ej12V4a7feAuvj7uq6KOiilu$4MNY~=^!Fv5`e-ugIi_*6pxXXpt zbG>vla)Ha1H*L_)h6xu+CvJWlWd7O z2)lZLE$}+~xeLjdx=G??S6e)V!v^pu?$$UNZnteD4+iG?SiutObSeC0xM3u}?3$;>&d|&Mz#XH!EfW??K#Tp)sO&Ljkw{4Uh z=`7hTPJypiFRe3p@U^?l22tVo3FyLKy@I7Q%&Qb#bm=KQ;6t1(5wa^*yJ%T^LsoCk zeniLP>IQP~hA)NjRaHpBcJylU_)e;-rh1*58ejTj1FFR(Kk6@=1^;LD8f%?**=MP2 z#2N3k&CLne)20sL*tn-E>5Z5rf%ir~9WMc}u>k3siHc5?f(&v3>^oLS|7ST3n3i3=Fk~=70)JQib-jt$s`0gC{QM@Q@_+CrUs=~nEjmc|meWWFZvqJg#loh$io6pdO$zeu^e(@HG4WzE>w71V3blS? z&j}c2B9I48+@Rb3uyWAFb2tRR;Vv(s?9FwpKl_w1+Kryca+bdg@L-z73_bqw zf-`&D#H_D*Ljp2Yjyu{R9uA zh2KiDp~pmB@yBSE;Nzdeo}7o2G@`Uh%D9KW2+N^t4HfJfq#?xgdk6F2(T87zi@iQI z`M|rP$^Nq_G!EtvI>Hyh$n@W|r)AV-82N1>boP(GAj@@0Sf{Z5?c$+(7fC`0{@^}W zftAgos$tg5*1q~^+c%=+HI{H5I?}a%ho_f7^F*a68vP|UgWw3?N1(9wEGkO4xeWA2P!CZA+70ElpHbydA*eg9q!P0y0@{N`O+bJU|;>}_oOFz2(Am(?)E-@H?w$0 z>AsB@=eyr8n;_y^h#&64C!M!W$NjP7@cA0>q@3SnrH!%i;%p{35K#jJyk^W-t=iO4 zscX4RSRl|&{|~_$;(kibE}FEjn87at&`E)^tNhG0E6_Msa2H|x>YH3UMFf(!^+xB- zl}ij=&iznh;~yINCR#G=uI1$?UZLKic|Y$g?bhY=;Hcl?iL_ZPz%Vz_J>J;Df50+d zVGzBb;Lq{fWu`=F!J}BdPK$K49XkNq25_Cx-CtbHXgYY2+S#1c(?6GX`3+kT$2J~^3O*;uVv;w{k13BX#PWd`4xB<1w> zvDspaL94bOHsZrxQfGh(IN!k(nu3=0$6!=6H0mIFDXE-K*0M?@Lpjc!pF_~FP(dFi zau;^zEl$_FJ-WNQX#qwuz^Mq?EsCO*OwG!AH8MKt_mrG`a2e<+84LtYT@@blc5%(x z257ho%)}V$`_8MY7LG>bK!1OO;Yz#ve#*Z|IC2zC6-w_F>+`OIzA2KvL=jOIJ&YR9h6#0Vc&I=|1SAIEZ5SB|lSt9diN&D()f3p-xR7dEa0 z$2Y$+t9F(JIlEI7l(Ws_1vEQ8?~G8!61B@;;XJ#xXN3mdlK-vy@bEWe_X1!KLCmpz! zLyVC5v+dA=A2MYm8=Ol)11C$&w@uuY6yymaTRq8lCi+4Qo*0t#NEn6KUG~gYv0Qza zScetxWE!I_8fHYOpl`k?b`k>=KnmM=9t{Q*NogT28$E156QpcTTH4dWVQ7QHy!_6* ztm|-%h-IS;aNCRR(eVvQsOsr++8lvH&9~zDd6j5^57PDtj!yGeVM0dNcju1g1!UkX zrZ#!ZDEp7RQYN`5py$-(0^lZAyVhE%b*_LmVvwQRaRRqg<1&I8SzhBYiU#t(omUuJ z6n)-HBJ#J*%Q=Uui`tY0cAi*(3cB_!n+`x`XmCBRj?DeOKnQYEycLX*LcIV`shI9zKX~CFU#Gc(?-rSRmYh8?nRL)mYxn!$XQ{qTqY$ z9EJ@R6)90>s=5@Ylys#6)zX(?wGWPY`kF0%(et#B$u*;EdUgkPxC*JJhXl7^SYm-a5iX;BPuEXY+DJh|qoY>T*=rOOfAGR9 zZYJhHIYNEuRZc6d5p69k3{p~UMDlqbq6fC%h?-Q2#EC-4`WF{qL}U3t-2gCpxFNz2 z^{6sQSyAyZ3I=#tHD0^;)hqi1?9bkm9#svkYd!IN1|4jI)+i3QGzpwf#@1T(E}b6u z$=TPKDf)Z@SDJkJoSDIDvGV&3h#wpT=uDhgMTvJ5%@am5-+5rh`WU3);vw3<>Vq)p zi@i$UCI%=~$;V6tbJ=6u92$c7@yaT;rEtN41!~O^kDK5I(gy%?kJgm2Wr1wnM8wa| zf&~0=Dysi5KyPh6>yk)&9O%|>Kl0$=2X(@KRV{g3_)9beh3iMH)WnGz1baaQDVc1Z zV>HhnO%BU!r5>#s9GSms*_pqAXQG-GHgxy!Ua zldm02$3`{}raU}77Ztj4m31rB6mR+JbTgQdI>}}KE&38upphPlcw0gjbQk;N-!{7XUAZ?v-R7Japo+CSaBaov{Y90o{?;f=ScKdDyi!L zq9ElnVcg&WoQ|HJzKfe?*&npKk3{+dlrQUlTKIDIye|9+S{j2w5?hTh#6MoUKm7si z0Y1mMUpP|JP>zzHLzau7jBqOC_B`C(Y!hFSJ^NKM6qfMW3-_oFk_5^ml9Ds zvpf*Gb;c>&UvWG~Dk`_#g#JKEtD#!1o2cH}EFqfAe{VD3=!(;ROYBxax8dkx@~PFdzU61L`|O$&dnTD8mKGsDHbH zG(x9)u1bbb@e6!P&#!5uUp-rwB|4=@)FF#*ACPC$jpRv5NdfeTRRk+{?ZPwGwL9cP zWkNETn=6L-=218Hj~(579u1g>NW__i$fmpwAcqGs^uhWSN-tiZtok1EM9u%`FuE=N zF3}N$=HJ?-F{O_{L(!>Y+EvX7F2cEohII7!x#q_&U&Q-i)1>8w7gv zge1V1eZ_;WXI2jFc7ho{<4R*$kg0ikPz zCwl4u6cH8mvP%EkuU}8|^9QyH0SZJSYHIvE4Vw&|x+Ezu>lk!Py8|#~309M^)ohDS z@IdWd=t;?9!|BDBBZIO8ra*X%{l63XzYi4Kmn{E2#lQHLWCTh|0>G`Ip+~%Q60XdM z{gMK7zXUr8i{>E74-WE`EWqg3nEv`fxkQF=bk1l%O18=ZWkOKu#fPubL)Rf-+BDGa z0#W;~e%ELo;05}3TEW$7Zc;lHYQIg4%%-Ff7$c~wcu>rc+WT^Bj;$M7+??B)g8#fz zYbsA2u;kCt2TIpG1a$cwcrm#F9}qk1uU)?S(%mO7kZQ6l_fTO)q4MX;wsgGWct=Y2 zJkhxmF<@z~uTPc=-1hZMWyIJW>)emNA_-b4OR_^{bcw~xoC!co}KV96`jgB2z?L-7dO;nha4nK z84su-pfWHp{F^Bu+@G(Z3k?e!AMNewA)=u8JP!_9*}q%MM{n!VvN3xRC@}$%o+`5c z7+;3f!UJ2%=k`kntIU-95$gLMcrBe?M!JDHRo_&BsFxjL z+J+8lD^d3(D`OtZSDc%l|E5;saT7?xvqr1q7zAXd3(GKiZa}~pAHF@x2Vo`!)cSN` zqXK6kXV){aZXZ81T--b$W9ujf^g<#+srHKiMJ^*kr`Jr1?iv1{8FG=XK^tA&P87Wf zLYAsEA`yP&tr6;Hqvscw$8$;G_yd~gi@eXKpk#&JwDfca4h~hc!fb3Tbo9rAT+C_N z!fCmg!TO^R4kk!q=PGt`p6E~4)8>Z@ZqSB`uZz;j%{rso{Z5GWD6L3-#A*84rFBCC zY;;2lBa3RMdkhbh@qzN8$6cn}?p`|1?HVTvo;~r@bX5URKj+5>b?I3-cCQq#!^pmB zVKG)tUU(h{yY5M$86d{t4Q7ajNGguaUrvl5E2(gzmtW6_O?qJG=K_bH9~|^U@+3Vt zDI`8H0~%mWM(Odl`>jlSO_91JrdgR$#5GQ0nr?*mfXVS6H=XPvfK_ckyn7S8)EhiV z+j|IF<>AY`2p02$9Sj|={k~fYgR>Kn&>$m^jy~?nJ(y|&!i=gy_@EncU(w zb6gy=9hN5-iea=CTQV4=j@9vrWSOk*2&J*uR#UHu|N5Et)#VfC(n@7`pf?v|EnXKo zgIfZ%M9(V$+;EXP23}@}Cgiu>rJK!Pg>_%G!vBK>NI4UAHXa&rHu+h;H_mhn9O9_C z!Zc&aX4%#*rI>P0&ohPf!e$ac-%_S#4@dPvs;!|xF3LEUCJ-s}ve;Q_E|)}9BBR_WMeLuRU0x0VQt3%q z83Vb2M*^yYQVmy>jh8n~o)3*Z4HQ}7Ud8*Cb#JERsiIk0SBm-AygWNNnoNmK#+-^F z8a0W!GF@{|kIQ1P3l0p5uU-@iu8?C!F5~@mp0?-G!RDiD@e3?NQmU$|c7J`K?pk_q zrq`!wc|u2Lg(7c@@DP3-4Y#Yq=n)S$;(EBh@7U>2=uu^1`zoIr$2l89)^C#ZqN&Zn_Z6PMh7z@Gyxg3n`eCUlomO=*9 zCsRmTb_zw;-Jw`PoSi(Flqat7zOqT%$bxwNf>3?OMOP!`l=&YlnlFFJ1F<L7Sm74ZPRbQT|d&B358dt^jOL}_A8^o5pD81PD zn`BP6=cU)Ou~L3w{r%G8TplVt7}kuDf*Hw=8Xz@_l@6ZY0Q6$?fBQTEp=W|s>cb5S zc<(}61rID&C=#V%*c$`y8azZB0Z%q|V^q?< zbLNoi^b#s^>(;ZZAqGg-|A3zr zaqr)p`VG5*&c*5sR?&exr1^wzt`Ue*xO*@;lZSek#4_MtOP^U%0yj|JGq*<8 z+Vg|p#rD=}x=Vw70Cj{7uoa^Gm1RJo6W9jo2sXsNw|gH0zYMQF2ne|jfX85XT}Uxs zt;&_xCO1LAZKFg3{S95xCr~yzNBfz^trHuWKo`Gt^vtz`spOq`z4h&@7V-Lz3o9A( z&-nvB@7xa0x!3~UihMJWpW7>fISd0TJXy#dgg@9Qs+w5PP4DLbw(2gzQO z3P(bJ9H1=R;u|bQwPrnhj@Q67!WWelxZ?tb<8=cu$lESYYCF4`QDwql+VisaTRi2 zl?J@!P#jX$=uWf$rqLEJJeH`Skf99PzEZYLPEE{3Gc}%XyyC zzhge)aZZTq5TAu~uL%$syw%nY0W9;pf9^17|2NAy48UlAFDVhKZj@{0bRFTFx-3|z z+9BtsMIS6Eh8^Cxl!(nye%1DKBuocWP2ut@Jxv+VWHc!dkKL%@A||8!ZMU6C2qD1% z4W2JSpfa!_CUg)$(EgqnI6LxQ#2v5w*?(0d7oku$xlmI~Y-S`&iG&`Ll!!Uu<<+6S z@e6(*nYtD)1>+wgzpgU;!Z7+h@=z5cJhf(QY;4Y%nGra*!=5ieDrS<+gK#4(3%Y}r z$8+!ODPK^egZflan2fOd|wYK_e27@_~BX57!d zB2so)+l*z!G&kY@QfeR-f-dXwMvqmt$2_*XC5q^90{Jw+jfbLui%Wz`ugHnxl8m&b zLZo09?)%)&{yrynGdtQryH>4y^Ol!w<I6pR`52y-fSA3IEbkoG>nCL!@f zfJ%V%X5VM#2hm71ZJezgw)1ldhID@L$(}QpoY9#7$r+8$z2$Ie$NZX7V^C%lI&=+E zfKM%+^!PJ09ZK&d`}kOr0*#%>;oky%#;Dd4TxK1UXv6p9-D{Y}iIxD*ezRU(Q_2?m3h*t{OBUU7_ec!zMVkFGYA zj?29?UH8Lq-5rGp!I$dRzQ^yXd0iLu5C}V{s6hpJLRaJe{xwupF-iX4SC8+<^%jcU z!sH||pZnooYcUPaJV7DK5iC=cWtnhhEf9rakauNl&nO3S2b(C=gpndFH-|2vwUdvy zdeMqZDX$ZE)v{C**`3F!c^cy=X@>E4HS^*3s^0TjWE?9aDho)hZ*0%Nd}k>079o|y z_bc(7nsJX;lVu>k&JX zrP^E`_y5LibU+9g&@zrLuTMT9<{b3(rC^Qyiqmruf>zi)n{H=^T1^EG09xVr-(VXT z&jhd!4i2UYSPiTL>J#i-T)k10di5ijhNueXc7ZnIK+_85LW>()YD$XbTX#Zg@h+Dp zyS=xzV!8g9n3$G_b5%cwYn~&3!`2!B+Y$G@<{ywf4Msp8v)4enVW{&MFzFxPrph?G z=D_z@m-#cG;J@i&STLn3f5{}it8+dSA};Ixh9?LXkaA25LG?Xy>HNk(U!ReMB?7;r zxVt0dEliidyo{%sVrKnX{uT90pQ80zGlM(&qgne( z#)C|P5Cu|R37@0oHI;c5yOn8J!T$;a75YbgPeU7gp#3i4($FRsmv=i!jd< zE0y?A;59JN;g^rA9=IV}loM>2(&IFZfNwV_y?y+Q0g!6h%f(OA%AO9%)y$CKxHXj_=pq8?yd2S~=UV>2A_8J1D zK<{=m&!wC?|8V5643jg~%OLWItM|x~Gy``=CdbCmLAE5M#IzKjp;yPLoQrYrOv3R@ zS;)G<^n{J#ISsG`;3bITNvO-S_3LYIl4s9YD*UIB2{~)4_AVx{h)VgKmsL>!N$6@UfDMZxJbJdw$3~x;I*5 zia>h&vq$9mqbehknF8Hky1<)BT;Lq={4SEWYPE{%#1M{`V8_2jUGDJn zO3BP*Lqy3wjDiym$bs1~lPCyFwJ_<;`^*6W!hCd4e$c%S0AhXzKlqa}0$@olquG6* zMj$eoC({os$iMtIiR3~MJroTM4OT2dTI*8eZ~rfAa9CCHjUqYl6@7z)SjJUkAT1M< zSl}ps1su$~O^WVmbd=lXIFBY(C_an!2IyG@1}l?K%ycI`RTDHcF_F;@<1*;vY5o-4 z%fytNXY%Lcf4e;OH>LkBwbJT=W|3y0IyZ#d0zm=;03AWNl9G{q=;Vz8kU!2(9?}Mr zIWosyew}{H@M!gJe;q?!0rv+7>qQb<%~qX6$Ovj24k zznJrKVHF`zU}k)}(&pvWGQtNsCx@7#%KvvS8OcFIuza!bLED*$Iq&I4@qPcG>3ktme`m`(jJoe{m{obP9; z+>4b7{*cVThi1@tIUau1NomtU%1@&&PnHObz2Q3H*JnYHj#+ zKp_w)P=`;-K18Keys$%=M)xMQIC~))MeD+b^Ck70>dwmG{v@&x_IlqKP?#nLVdLSY zegxNyV4cMZ2hRNx3sQW;PC>$WSsq2g+0FRQBv4L(=PtGHuxGf28_~!K$wiWF?@rxK zDiJ9Ki=kMHR{EITK(+SdzNNmhT<flC6`bfZI!r`rZZ*4s?wM zH09lg2UH`147?{ii(pGWEzr)}R{&yJnScg;HXSWLdz$ZknBQu@;|~t16a^j|onJK7r+d59zbMs9 zO(QtFn{P$l;|yG)o#=2Z64^HH%xCevc;K7AbU~Jo0u`QKZV35A0aO(9s%Sf*(3MdXiTOVMsv%p)T%EfgoeeZ`h(Ay`fx94T#jkI&wo zGM`=GPysYB=f268&IV$jfaii2vPkF{4nF^OA*u-WDT}z@89p$OF^c0_xf9|q0Rl;v z%|4uNu%Cv1m>;42v1mR75E|Ak0=ny;ol*#Wu-F+%|F_h{_j_gr2c%lwm4N^kemRc4 zaL4{aXZ|!M#mQ?*Mhc{qtc1-M^DB$@?EMA~-}NpAfRP@%n&CQ#h|bIdMhu|jz-NQ7 zY1)85&4+oafoyNG7`q{*+vIcx{Y*&c#t*sX&dLgkmk#Yc$bFnkc^dk~ZbX)m4=L zHj`2Q?_}wT0JGNbZtm{+SGLqEz8CFKDUSnPZ5^E+U@vCgxm%5qU}bm#LT;pf6MjV^ zxp?RhuTY3(j1tRC%!{7LU4UUYO{LJb;stqTf#{WUS{5H{1vYY8nalfIs14whFT0NN z{K}KZ{DzJvZ=8f_g7@wPWf~3NrB@Czh7}S<`U4pV$YA65x4rY1j9}SOjBhH~E{-(N ze(TI=JMgq~!7nM6xAm3x+fYA72<$H1hCp=O9C6T*U$040tcB>7YEKSHVUpNs}OWN}p8?bT@gY-nROF~-KyMOmS+g4-zsNZv?KtdiD0ZL5ORM%vppZu_GK;NoNqG|;%hrKRKxx2ZHdP5 zuh|!58$cT^U@DuwO)A2#E?odo?~-AzkK&1qL{FbugPrZW_3aKWpX~kl%wMejoCCzz z`w{^ROhRmv6y&|Nby9x*Ni(}9CTK12mIqKN#rL~9c@Kcc&0}-;d0DufOmCJ9meUd9 z@``Fbsx`;$nsZde2xFGD+?4gmR@K5Sy+X?EE`9sy&Lqy9cw)E=v z(o$@2UnV!oEOQ#E5s8|@dlLQWsdp{z-ZFI<$_gX7Y*ZB*wc8 z$)VhQmXXm3uTsR_P7N)iGx#L}AOz%$5v6vVaTHG1;W+-Cy}umB7?BA|4L-h%9GoG!q}8V3rv!$U(Z zNRs=1-xAx2JJIxGOA|G)89rGHf3x|K$H!$)S*2E3{pqTh6o2{%YLT=ShD9j&UTr?8 z%C83~HhQ15>@mNu+$#t&2lNbO&^8f*lBhpWOX+x!;mD z`uZ*$g;5M7Q`h3G-^XWvo}9o;&29NBLi!P=#JjeEwVt*5OqS{AV(jDAq|gpb+y?C*xhyIHP`C;A;Kjz;a? zpK2lkXNuKngBov^uILJfYeL8NjTBDS8yz%H3M&zMu0XHEK9GtXGO}nn&k>~Z|F^=0 zA%7E&uE6%7@#?o%`@QsEW*o(Nx?!C>0xKQ&%%$K=bi*eI3_v)`Um!@{4N?UiF)YT)ZZM-~CvTWX*9K7Pfq=6x#i#S@TQK zsijlf^~l0nr5T>m$q`T33EICA`Al#vAW-`zJM;?+?xf6B?gg~XCbnH}Wg_qD?#p~T z+ww?#()>~o{EtCwwvo^g&FX>r*zm9Umjg;FM9*kP5+W6WZD25wEWWt*J9SDPog6@Q z3)FX|t1+sjt@ui^T#q~C+mIS@>78uOZr>H!%hJ}v=&?P zW1(Z&LdT9VKW)-X9X{oJ`BGX@A4JaH>5T5p+JhMug2+IevihGtARq2ZhMlE;A}8{* z`!`-jWyuIRO#MN6Dw~vrxriYbwsS;Z2?;63q`lii{L7i|fJqPS5DL~g?&Z1;-spmtJK%PcKMxyBIkB^n`4CEqe&G-NZKVWpd zb|j$&rePvx>kUo8#Dp`1*}i;lrwLa3!IdMt0y#1$C!l|muM?V{2q$yJ^kko66e(!5dXBZbo->?0f`NvW@D!`;K}8C}e8NxaNBe5>9%$<^y!bcR^{pMbn_;?>=H z7@?$@UrsrvAK$7_|9fF!(YJ4%HH$TXaRhqHuMfcw2Y*HRyVlcKF!^!0e*8EX4=let zBYc0+sD;X0s%rn@YjW#59-559D$%hy%uo|k$&Npm50}GeBdzRu1{nmSr^VE-%jx*-%7df|HtL`>>f5q-=_!x_)tsAhT)J z_jLmu`ki86#OC6+EobDhyZOpi$CWKsf-~k@7OO~%6nf4&^#0S$6#kl{R-W_2X8l+W zs~LV1V-9W(Hl77uAxMWKFOVs;0-}9s_g?(3Jug4wHqCF(&E~usYk%`cGz6MJ7pZ?q zPA`vI-`!VxBW^4Fdy!d^d&wA8RkA=HfxgF?+S-g+vZHS$Bg4YWn?N2Y6bIpjfQq*2 zp6;MoJh{zIy+Aco=keUf;HRkvZcee{T>t!-Ln^ zanqW91&&6poW3c#b&09yJI~bNpEJ*yqvLi8ddSrJ5s`9elc;_1YVB`qrdG^7+qX3c zU&f>x9e0Dsny#I$Xb>VIo>X|F#Tk_@!E@M)@uO}> zk&e)7z(&65GgMcZ1kTV0y3NBHu}{M+G*LDe=sW)i0k^peyvfDnQhk>`ulGtP ziqE>D;dX(}kEg3MX>G}=O})~z<@Zt>e9>av2fPdYdW`olotW|2E1!#=Q4;;NJu>Ft zE1pBIl|pA})yEsHRoTEdzlZSHUi%4=v{|L#MIb#FFDHI>aJomjtz^oayxB{4?tqg4 zE2yGr6F2y5?LqbmP1C@Dl!oT`ij+V+05k6tcIKBJ&vwATzG&hxSWdUKM+I4Lh4Ox@ zHnj?6p^{*PjCw=15 zXbOW&c|K7l`2`o)F z;1*zMDE*4rdGDLbDd6hr`u)+h1Pr1_0JFAD!=+Q64P8`KVNZ}GT+2ELE?)(#Fz>hy z5)1G!Ul#z&FCFRZVCcr#(g`&3Y`>-mR;e-LReLvlvP*XYM)`!hoEC?oD-~Oztv^gOh*c>ntn3?N1xT=!Q~eWbRzh`-L_5lZ3V^Q>kjCVntcf$UkrU}`(3bg%x=Njj*+uR&EH6P#8lHoK6<9} z>u5^I+YYCf#>SLQcXin8wr%pShWOW`x-c@UqNe{EPIfuH&(j_8Ef@yi~4a9Rdh^brdu7`;ifl9nVEafQBao& z!&u*%E|l1{`Gs>ss^@7Mr3_Y%JAJvkIywFRHag}Qw_Q@E^zEHlrB+pa$f@r9jdWaC z7&zrP-<0?{qi-W@OlV|m{F8M;m3sxQ%3_yl<$;iz4ETFzPJ_L3G2obLiVsjS8PY4f zd}#!pKSf8h* z(*%Nnp5juuyJqzRB$4{Kc{$4EjxAx{r+G6kxc8EQxsOtRMi;`W{}$zLsM1})#|hTI z`vH&boH9E4iG=L&ru6~UN8L<)8iB~Ddnz*`l#LgplFay$-AaK)Q4QZ4>Kln#{EDzt z{yZe@%v%fAc^uAZye1I#osb^|p;1eDzCl&g(|a}_;6*Vvea`XGo>{t2_R_&}_x)4U z@rH5#`+ion*RMO$?=UQG7jKj3y?bB_}_03P}tphO=?YXl>ZO;#G zozUYL*1_YP)k-(x&fSK5!hZjao(S1LhnLon{PjsFByINTcSeYH;L6}tw>ZRte52*6 zwFc`jRTl29)T3roVn#^XLQEas?nhuBy1@8-pw3qFZL zInoaf;DKOZVCeYz`eIF=4MepT7Isw}%cYvo>*YCn+Z($6y?X)=Ejy12awr!V=i#-T z%`vGI33-R2{-P+fH2mLTxrRqUM6*<{>_m-1;O#M%y5sT?AO6N(uL*u1KEF6~*6-gs z$!Ted!0Bm4Et_MNl289`Bc}sP!vDI~px;0>2OaW_JIY1HWZ~u5Wy6)(YR=u2*a93& za5#!O+Ytyds0!Pexq{tv65kmIzPH9%)x#rPj%_~U z@?P`E-9_a6>3@q12r?h3UHbd`Wt|ftTU;d)vS3~Ioxb-trKcW3 zH)EPXu@_w((f=P)Ujf%-)VED3ARq`5f^ zr%31MkRCZ0@ExA#eZTL!e>%5&%pFet&vmZr`oFnxz~SD(T(Za4UXB=HWRWhU+I@-l zkuLq;jXA0YGfIUnLHanPGUTJ2^85CLgU#>1CX%%OZQnW3Qt@VHC%QcNQ)c>?J)fVO zb*AVm38iY1$Atl>h1d2t$@_+?Iz_!EihDYTwBJV=38cS5$nmZQCAUx;4_dzYtJ;fa zEKHGsiD&Tf6qdzBih^`|wRxlXy}{ zv8>vmmsEB-o;&~>z(_RoR0Kl5T~D*k`yZgl5xp&T z`f1-?1b|!q9t}(J0R)C_7e%|6zzZ4D%#hen$KAobf1JHCE*%A9;S{RxH;>9(+6TYE za&mIUM&0x!2VYgPM1Ao|R7`|1uq>Jwd) z!fc6#WlMrVcK09xeIWo{Xfd$X@=l#PbbI8wKiO1zQWJCEgr3R%JHwl&(zTuZ-=&hf z)-C>35S05d^z}Yv*&*eIMc@$>6ckuU(;o%0*uPH=eG@?`083>`x}L zP|aC+?3lChr82zhBF?R747+$wP+BUK7x*+BsY*sm+1DwY*L*sRuxoJLI~ffcDcabs zyOIj2|8jeEy_Kby{~dB4)2XHCZ9ID`6&|ysm6trMP-enOP5FI}A|1Js@;eqwCP_<+5W+{@3eQrcsbn>W;R`B_Mu3udMJn>q(d{rWv@Q=hu z#ZU0LkJ8TOs``(w8i;WEG;Y&TvR6Bsa&b?EdUp{|M$5j%u5X`O1D6JHRe$}K%C?Hc z4XAr1`~O{9)td1C6c`kl!EDz(XEa4$+wXhS>-=#H+y8#jijZk$Rk-qNldb=B(sg** zrOJPc10H?eSXdP3*4m}0*+!Bh(^l7WM!qCrPW%BERRZ@n0fooKyg55w2zKqB-rffo zZ<2X;$0aW=M55Yc!3Ra0{0TJ>e5TWt=B8H{CqLnob3L&5cQq?b)oYw<$Z+C3HUCF9 zl{8Rpj4v^dhiwDU)*%~4WX7QVh@xJ0e|q8Ck@TaKTRislqfY;s5blbyIx*R#d9YDD z>|u@(p(|86_#>Ny=uCT=WL&ewa>TVlj5^Ur_dA?d6se@(v^u??cgV#r|4(y$mq~&c z^_chn%~3iak>!A=QM4@&9wc*PM_D#OQK5_H4uaY3}4xK(no#WSmxj8v=*H}q`i>h=Q%bgA1YR+ZFTEKV7s}-Au%9Z=21ILCJybp5tQpl9ni;RCLg{Jsx^r~Sex4dm zrJ%1j{k^t)YH~bgC_>N|%-80^XkDBjc9A4@-0DW2fIuU{&lG^Bk=bHG{osKK6{*=% zxi6nEYz>(eN!v|d(Lai8sDGR`_$3IFR&>wTBv*$;F+!?(#nuW#8RBK093ZgPuPRO!5K-Jxifrz|h9z>zTyTP3&yPzFWIDH=QfAvAT+d@hE5`zA{zYkmez$j!V(vvWt zoL3tZjluZlp!!FO+}$%3sG&1^t;95&lvEbrq}{uB&*v{r6s9uh#ytZAEWicvhnCi9 zC9VqeG9N9&_l7|^e$^`wXER6|Yal+T#@@e~<#1}d$@>F}JJq(>C*a|GKc1GXxX!aw zsnYz0%D)vY7ajOH-O=uidxw(Vdf+f7{Wg-lLAzQ%?Sn-YqZ<}H*&Nd-Aa~yJ#|JU~ zQCtdRYR{2H9n`34hK=gGxDHpD_di(hJvZ?}JF}w_rI}!7uae91?^o7)Xkm>^3ju+5 zM_1QrBM~)r%)o$h1@JTnI`5*NKbiRW)Q}2;FgCcvSIA~ChOpwPe@bdv#$DptkxU{S zynFX5VZt@W#m|>YE%k4^%VoHrD}NAo3;oTUulr?{!$r3L%`fh;gvB;)IQ6y3M2TKb zUN&BaD(;k3nPWSZ)v;|FPAJeA+f7#n>pM0l0ucip^xVX`v(_FQ+B2?goLvaS0YYXJvjl z@xYxIwJ^0bc~^JACWL>Ap72%d4sMp|AQ`cj;U~Zec?Du{89ZP!E9dNt=$6=pQKkJX zdLn*Nw0%MLQ3XTuA%(HsyM0JVHdVmkaxjyK_`}!PzfQ0)+V3jml2ugeb~MOdqbl56 zsuO_p+7)aa;xaM@0ikbtf(?%Hj|Cwb)LW}=*5G)cP;+7|mLyAhI+(xvq`c_KdxUSK zVUvgRh=3$5atszKA(3YMGWEyMTixqOSONm@YNF}1>gH5H%@~ONI+2HF$Nc_2eS2oH z7MCwd+m*N3vSV~RFlYu76L+9z<`g_bSlsEugY52;FND5yVw77sQ`AWJOns24m$s25 zr-2We$jChbdn!;{9y@Oa^ySY_Pgo*V*mxKt2KQT(Pd}@9HxEuvPcyxEk@7o)Sb(Zi zrvL~i3W#nLoXU^BF|*fA!EUktpYPP9L*Ao{VMc7rWMmvKATkE;9w)Tl(SKp#%3K(e zX{y;}#mT1`(M7XQ1DyOn2oEe6t39pf+1bpLn6*ph^vSC*?1r>yHXY(LWtbE3O_nG6P6YJ5~TA1ff z@xWu^sqN4zdcQtf+MU&bePAetTZ6{R%gb{b6r6nOvZ~0$#I#tv|62#a&cyTyNEBVb z{n+^U<*IYB$sN;;R6}UQ&0z>V68!y1dUFQ9Dg6dgFIGHLmkSEUBuRd#VB+vm(`WS) zj??MXivmczlA>RcTA_EMH~O%fRd7|uVzSII1CXs>Li>3WFi&^N`6}TH;y3P{uNh4V zT(%tO_X_6ReYdP@wI4`zWF3mhenoubf&U31JODN4N}hA{Lv_+*p3;62oB(9TR87e4 zRlY~5dgb|NwkJ^$Vbf!yy5W7=wCt+dTA| zrwS{7(@2|6;2?$9_!*fJ3}5AQzfU($UTD7xqTFNuV8?H6JxX;wEviU2bP(@4rut28 z-qP_!WgE?J({Ds9k-@q4m%Az(4P{iEDUcMf+XBAqVIxx&*VScZ(HUZ%?+oVZ9>J^6 zhsGwfT?fYz=KYiUREZ8i%NR}x@#{ULZ8Hcl`)x1rlV6TiiG?R9n% zdVOQVvni?xi3`c@Lcs)#67s?+Uvl=m%7dURpWLL3x=H{uWy}ztag!Y3lqpKqA0t_Z z^Vtaq;0BlD0Vhy_&K@SAWrzh@_v$SNyjqROI60CMzrBB7;jX()OVPPcEeh z^X$;!z2t0x#~`v`@TRXf%ECW0?i{bak?GP>j=Gsv?CN~e3loTQK71$SSh;Vnqs|eB z3Zd<xQtg)GMr7vTD~r@wIBnT8l|G~Sq5Zr)&$ zJb2IsZfOp;a;|($yQ8NEjmSF4+K-Jrrqx=OIvU8zkC8&f1}AfW0I8#ax$>{yLiq~3 ziUk)woNu`Pr(T?q$JVf3*c_&6+08EJk?)8=mMI<{&JJnGFYU@aYhnS*pMQvD^N%2& zd6tao*8*YnQUuG_+zyRPcb!Lxgr^`!35e1=6CS?1FWGAQ&n3d_;in>GCB3iCFpUMBg@?31BVCp_m>y7{}pm$FfcA+omhM$dC=Do z`W6}Sdbg&{etJ1~zGIt1mgk7e3_p4aP@O!+T8F&#i21O`)OB>a!FYYzQN;dTmgibv z7_FDHD-2app@pN@hUI2Oab4KzSCu(N`FcMfCcRBZVcpL*7W{uU^ELCp{a^BWzWw`^ zu)I)%=@N-%XHKS{D}Q&t{C=R;&CuG%6oC}r$){1~74aE&){pg&@oW;K6K)i7R9!!B zVdDGn=Dvv6LH3XtyChCSyx~|xzc_L92(o z0VhMbf2oZqkWS`cqH8BO`}$3=&FGY*A}c76;JGObyCo<4UYvM3T9m9R{wsdzl-f!d z>ANFgFbjT(j7WCrwA?PT@5h+rf)aq0W=%2*_cmt10LZ|XbaWrL(aCCV+4gD}L+xV` zSLC+m&BPLv2a0eeH}dQuHSk*HKJ5LiNH6e}S&bqh4BohSa%LG23vtRiv=^*9*vS!5 z#Ts_x^=#bF@LX6rnS|h8@V4y@1(;e;#P?{aK(l#{?)9Kn`DRqF`ZeBtuTEHBx47Tp zfj4wR7al;w0pCV9=9YW2Uw7%7x9xHY*&}C*&-q)1(6!I}%s_SYQE99tP z$!M%>GORR~Y}X&9l;OjvbVY(GO{E5t%eIHUG9mD*RRJ_zm_+!K%uIA{ceMG0ij*Dw z-BQA?o%ag6K}u9NRdFC;p{0;h8Sj`n^~l?IGT4Vf8ZzK5Zt67UlvH&m)}0oZkd>pTNe8H z=+nfZp@6@c1~EecT*0CK>hYY7vtae94!Rb>nFY3JL_qcRJyFhdV z*MLx}j#jd=JnOvq8%nqNsHl293|9^W054dm7L|1gA12D^68fdB9DmE@?Z+Vd_pb-m zuazL4Aj;N$jt;}U5T{8O?|lVQ7eIXGZLQp1ZN(A1bFxd1#cGec*TU+ic~2p;gNwAJ z0KLAtDk7;SLED^N<$^moun#tJrQd_#oug`mAV1X?BRP-RZjcDZ8H|fP0Fj1 zmL0Vd20}tO`;)c0ii(lsX$aLPkWgpRGQRTKb8-vod+RosY91Q1*78bP7Fg_02HG5k zX#08N(N8W6w5vEw(*#`hk`l&VEowwt#~3H_BYAY~~)#?Bn}x9w2zZqe8y+ z?j(hb2|9-J*P%D=H6(>qJkhvjO&G-Y<>gN&lD~MlPDZMTs(^&Zw;Mzt(o@VjUD`g% z!ade};>((K9ldXfS~DDtS97>`MHtZIsB<_zgzn2H2I2RoO~O_&L3r7*USJa`eL3Zp zF1BcNho*%l}XDyX0=qgEv~8{UT5kA@>6d}3$Jgv)(dtP_h-zZ7w7<= z=B(5mDG?s{Tw_x3$E_yjd@@i`KezC?SSoMYRkcEb#=ck>#GsNp;@cLOX9x`^T&dh+ptuK;Q(H% z-j_sy-|h-JvPHBnT!I!n0*@w9FyW#nwa}=2HI!EL>CtAHW_Uydgqriv90km8K1^mx zsIoqA2@4Wtsn@~c#uQbu*}vk$@sXaMge1|^{Fz#vhcANNHeZXB+CS{De)@lbE=|*2cP5-rocM>yHBvr^vlVn%v#P<` zFevmDe(BwMVs7dbPF|%qW7qdbZlR{lgtFDM{B8dQ3U<_qyB|^1wLFZyo$4QY@(!v+wi}cTv3>VCzL9rL`j)f*H?aL4|cC4 z<+eVe%MMKR=Xzno%eGd>3U`|^_8%;JB6m~bk8Rb?JTF>}NZF!)KYlzAWFEn>P?N=) z8{ct!C&KGrjqv43@;o5O;j{w&iT})yZL%RJw9>TU*AtMjjLOQ-@%jT}phfZGm3@dW z`g$-^P~D1D{CG1Pope#elhF%PyZu5PP0Gbvm}B+B>zw0{s%)FCmhGrgDSx5?qUF{7p(iz&fbOv zs?GM>l<67O@pIv{ifKER7!~&Cl1T*K3VNcVN|7l^osgR=B{-^Gqi?@33;M6hqZfJE znY3%r;zVaTgc4dRHy(OiVQ#}kK%DnZzCz8cU)kH`#|j+z8Qyn@@|B6$*Yi_b)mgvV z4ax7XWDDnWtx-NOE=)!i|HD`R3L%OrQ!gb;e+TuCDn|Q!HqVWh8=F#>d!>*wxou@% z!=yy|@gt`0KxxPQ2-DTMt-QfBrKL7(?nh}ee4@Q4!l)~^-y4!Yu#?u3DP5-dYZ5_a z;Xxu-p5W-O&T3>DaANV=t}bG~unBRGkXj*VqX_6shG46$Ae=^6V%Bul`{$Vd=IfDN zcD{HiOMAfpuW7tP3jbd&0B7y1+X6bgWySWJCX%AST*8lD>%}aUcQq9kmJ?YHb*@NDT{RWN_al(8ih`?t6!?2 z2S93*0|h@F)UGX>hBuYvdOqSkBGY*E*t2|;3uSotajZz5`4=Pn?B=*k60V;G-6P-4 zx*vu4aq^CC5&{{jyZnz+F*FJpfrg%qE1Vw;b>F@M2AKmy?s-Py5g56cO7T`T??;qK zRaAI_zT6#|vFS8^3fyNxS(N00LQH!G7+mD;u{NE#t`)IVEV=zqQ@bat4!wgHsMSi~ z?OhVTcqfjaxKh`vwRIvxteF~;#G_=Ijr71pUGR4l2Hcz#o@4bKoA^0O++bep3Bx`1 zSQwSQCx4&dJ~vgHWWAquMi*DD>b$VDt^g<3av#L#ki$6~%B4ID*>L;QvtL;ZV`dX- zfen(R;@A@6{Nil=tPX`ePGm8aFML4y=%sXEToMI=3?6qW;N*OMmXeB3Na$pT0KbHt zHLC~#o)ImgretGA+BG}8@*4LMua?= z+o}CGZVRvUTjo(R^&sk}Jd+Goz1Mq|h=L6A?jbGbb7fWt8pR(Vaf59HHJlc=zmMBA zZE>&M>PFRLe`=tlAp&EAu#)Y!|H_Z?I`3VnT-*ut8(*TiML|ruNaSU6ghgmU>g#3x zF4D&jtzc(0)uuxFcmzakcC{GBHSa5`Yfb-bKTG4mxkLRx=qb+TQ)=vy82VQqd^q#P z&MNHO;&lUFH`|qiV={6GI9>V*!Dm4t$L{Zbm+Es|z4Gkg$& z_8>=mO+|ceB_pS-KmOZ~`d7?1X9P)2?%tzKYj7Rs^F9f-#HhcD*22)#G6;mGJ^2k&)T?dsMni>E$9b&Y5X66|K8MV*hHf z-q!wTRO?!x$D@kFzjeF8fS$vu4oR0BqV0n_E}^j=Rcf z-`;l&?7?;Ib=5HAn+kc0=r`YUY9HkqDR?Pj$l(2?c^`V8pn8AD5^}GG<-B74_tJ&y zq8VzJyG2;^m!Z$r+G7!?K;XzGny1r%eq|@_S$4r1DEn!)BUytz#*5mB{1*FtKtr>= zZ{fBGdL+J{9{|7*?v>*@4wFK9B{(!E4*U8Zo%u+WXR$0^t5Hg)G+Do~&k$SuAz;)FXl*B*IIOfh&&F?f&Nzwa6s0=A4bzLm1xKE$UtKWm+8p}fK)0}y6 zArESQ(~VR#Bl_Tg#7+nk4~%9jav^1RHWs(B@rjW+8@A^nK^ULos9EAE2iB(6cjulu z7M!1*N*H;UU3^A!c2fF@ZO_hg>4e+cBh#ehRwoVDM{Cx#Q?j)P0v^MW^?u}#jmqw_ zFG2**yoAwA`Dlwl)5F9xS|$VNAKrFhxH-b%h~evE8vT_vcdAf&V;4ngs(ytoiyP^j zi}z3FOPYtqH=G1S{H7K6K4BfRbOq&%D&gQ#hvE_CRWu|bXXM|R{{FSl1+a5i3^TA`P^E}C%%#ZIwLWCztnn^#c|kn2r=b&TibJ7 zobsz!f4O9EMssG1l4uH`*%pR&u8uHc;1Lsh+L6&(dS)Ez%*l<1T}4MaIcYw&JafeU z-uP>v!rtBc5lG5Vf;cDdFRM>j0 zxwUA6cU5d=eE1K+At5P=afbz&F86xv1%wtX12}i@GANP82NvA@+U%-qPxK{Fn)?0r z2u)N+x4ee;In_r}LT%K^iLxWH6xs>?6=MG79nYM(q`+(+omVRzWY^<(cA)NFy=nm3 zeD8tv(s7t+e@ir}!Ghh9kDng2cYe28(&2T{SDecrZkz_i3?tu&ugZ-zdP1=yqjER{C}{whJjs{ zlVvAvix|-lT13V%Ck&CqVlimg0jm2qm}94!&0OI<7>M*#PB$T%v}pQd-o8Fk*Nq`^ z0gC~Q?>RZ2y6FRc4Xgc)5?*+M0W7j5U@d?8;zJG&oI(yb9|d%(h&v-*W9%6XvSeItjOozQlF-zKBYe1bSD*JY-KBFEGqfgb&m?0@SD9h7B<$i>gQ%ZN-T1d z<%9pMPI@A_aP;S*j%HK*IO?==c``baStvOBvBzvaORd!vujp`D)K{#O5oM&mWS+B| z)uCt@L-Rs=R(r1d=Fr+r=tc(^wVu7R0Zd}`cA-q* zC6hq6U!77-LY#*(EHi&P?@kp|ty}rqjU^(%E6V%Pdz7sLx}uXnnQn{<*D~5Q#`Qpz zmZ)#2MMoA1V|xADDnx;84@-p80~R}_6=8Y+Zj0h*dOU&m?%Bg@PqO69`7`wlQ;$A zaZT%Y7Ybd*2D9Z>62elI-AQ(!pE%|xS z^Kl6_gGi5Jm0qUv7~PBwS%P*-C|=EeabtF;ZN}o9xsiVuZ261@` z<4N4Tqi7eK6>aKmWv~EC8$aE&va^v1iN-L)cwl1EK^VdI^eL6nUv>Ra={FIH zYx}h*d*69U$Wb@Ldd!w+1QP<*yZ`zYD$h!ksHfR&olJpDD$&iki)g%o&YQQK)pK0F zWv=CFiQOOSIK2)0&GpD$=^%Yk17Yp+-&!*xG0{V%yOmtbmY))l#iI7_#Mth4S*kKW zzh9t6H`Gy0$fPhe$yK+_;gSI}*duvBy2;W)P@qt?Vw@rC0p=&?ctpo03C5>LACgZ6 z6a*jTvE6U^;e-#9#?|Nlv@Z!HW=i1_Mh(CsEALKa;9!f_S!9gX!1-GzffPB%U{!c^ z;L-BRN?24BtB??d+8U)Vt}Fm(i;9aiUY9GteG*NnLH}pp)1PK5JJ=zMiSzHZ>myKg zI{P>NT(2aZyJayJ!4{F&qyxL_bSYBvwr@XW)befBwGIezop(7L?%dYDGl1d#-eS_P z@lW#6ja_GjXwGS;pPJ#B{v05V?j&s)nNMIz7Hz(tVU*KQ5f>;e!DwOv zbi98I^c8leO(l0f;8ml{NYXsuzXOcuqu+fp=SboMuSWU4h|;`97U!|&(iX91?}`56 zSSjZCzSs34bBh_J{a0(Srq0ZM&Q-3_)S`PU0zM$Y&VrC#L)e{gEtdmJ34phTdq=)~90DBm$Fc9G8UW96!p-78=le<)$>MIX)Tkb`kD zqTQ4$xbrl10R%-G#WcIDHuBh@5e6x^Hu`q|>RZ}mH+251dG={-z}DLO2Sfng6232b zoKlQ~9X$Z^3`lru58%jH8Ix3bMLSseS zs%_QYJ>TSQ8tF$~4t~rC-0!1{-n&qK*9YTofvruF=kms)W26deOX3R(DBMKDVq+On zQwKLs4_hP zz>!;DhC@owoNEI6AJa>1EG5O#7KA}uAAR2P#Q(r^S{8tv;vSx)bB~hEy`?U>T#xh* zdY)hIdOCC}L5Vjm<)Q46fjtjIR_n?Sfj$1HQe^6Sy*-`-qNT9udgY(;mYWh0ADZdS z>o6i_R-s4>S1w|hMC-?|YmdeB2dfVm2Qo-snp7nIyX&h0+@F98}NUyIF#X7?}6 z18PM#U50TYo^;M1TQ#?UQBX;VU3qMm?vPnEpA}(KhT{BM|opdCnxXuytXt zZx~9w(P8y`hP|g;w@B3a?$;l2o=2+g7wP`4q}GQeX`RCC zaV=Ho^r`AgT8iPulrPLu8=yrog^z58@I%m0mn#e27hlfT^Y*`p`>fPRMQl|il{=nU zN>V}&n$ev3m7^mR2af9+gG#(Uq>vW4RHRV0Jk2V%ljm1`gH-e64}$!^(_X&ES&p+l zn1Wu4dRB5F;CfLee`fgMt_20IMR~1CP%i3R5lB^5N0Ieo&S^DUjaf4vy}O6q<0+)l z2AWTme(z+U`4zhPIV8e`;o`l&ZHb?Xz6jS~6^vAkHbsY8nKFN}vT|VUu>#hmo$1YQ zheOYuN`%^a^6(Uoff4^^_W4yX2(@EHAg;n(4CtAH~krzgi_2@57Ia!Qe; zfXERuHkW^^5BB2sLMC|W7d`?!E*#h&DFW5s10Vq2Irae!%=G+uLSEnNPdpT_LDg33 z;&E~?GH~AOwaWYPGhEMeZe)994}ZV;Y~c-;PMHCL)A6P{KR^Ft(m9=kuLi)X&9fdt zH^VK;+s4?2JVpATY9n2wPE}p@x*zOuT*o3N>$IOOQ;J?Uto&M;p>dnBGT)Mo>&$#| znt!`BMIg6TTgx)U-zyHP~z z^NdBXtDL`qI>J{hKN~?4&zX<5I1$(1OjHV_qFi@kR&aeSggM{l49#WE;oAbARRDqf zq&Yl!j{U31{zJ$s_40-S2{P`g{MHsaO_Igh0T?$tOno$+zctXzaCf>k+KKLd@M(mg zH`XGufuec{-=LTo`)b;PMzPbbQyO1eX*s>Ez~mQJHdsFF!fmidyord>3J2$ z5)brcfKRfn$BBDKM^_aH5TfV(rE&vDTh9Z;iCPUkyD>&T`u{@4aDs?gPOI~dsp*RM zN)6@h?t5pUA_X*8<@Hx$kmDV-KWW5;w6S?2;`)W5I1&5-qzM2Zej8j@ou#r7BC`?t z`W6xc+KBNfiBe%M_w$62!NDmRS?e+w`&DIskChceyA5lr6-)Kc@K61G8(?ldnK`Nh zsS%yQXe9*_0(tqn#Nr1Sd@bjuS*JH+|7JUodV3Kb6E+-#g=kqLTmUzRn7&zNOlWzS14q*)=iFP))l&-_4MC_f(f)l12y zaK2=q=o0)UA@pj~U9^^7Y;x&bym!YZ7j5FIPobM+@Ph2ulb^d#@-IbBP=!aS=qaP zOT5y7Ke|axJcE*=5KTy6c>x<1Xrr*myqdhAP1I4CP4(oL$!#|r%=`$7Ljk@%J_fL{ zJekm!h=({SYjIM!Wt!m?WD}o@IWpJo(}3{{H^8U&B~b;`VoNl zJ^3=aFCn|eH(Lu=`lGZ9B*v@}bCE|))BVe0_A}MPr`uLQWHCZA7GKebuHyg5JqOt<&c1J8}Omw9vkanO)X~9{xS< zG6dv@$$Nof`xok2bT|LF_+HRmf=A4Q8Mx%X)0*><7%0ntg+KwUMJA;AbNrw&LwOB( zL|b5|u{75ENO{6|Ij=Va+8OtY2fuu%dG~-q-q=+@s4AtSpO=}HCCHeOfi*aU&Zmbj zqf??S&FsYI{ZW%?BMY|>ey(b)lXLAqlotDT>L?K@RpM4 zn~#=AF|J1*$*m2R8C5MUB*uX77=p&Xh4(;WAgX|c^QHC=4(7U=4+o=&9I9IV+h&p5 z1RqeeWVk70Gv+$H0U}9taFFI=Arrq$EJ4NqNdM_~`W1-*$!~}B{XeDIChG{qs*Ze; zvEv^yR3ZvB9Kfs0MwXuieH}RX#eM8aNmSHSiFTxgz(?>TNV;-5)W$Av!YYqbl1|^2 zOEe-lFM`h^m82R(m7;c3#1bcCffqX`3fjuaIMU`{8JONG7)C^$9pQGnZ95RRYe{D3 zI{oDMejUxXqK2u_=crEm7yS(H#SwuOvY7uhDuLzFwe<1sOM85+J_u0lOOiu85B6&>|yFZl+s0Y+Oyk_=sIbOkYbj0Z%zpcWB5&ij#wx&UhiWR)*%VT%FdYfG2`3Wvns~p{VdL% zvs=dnLJ6ydv}@B&H>Hw!c9w=6lc(l>hR&izL#v}Y=VC4KO*&-{(}0YD63G>V%S{}{ zX8Gyn=)&nXP?@Z3o8)cM#6W-Obm_C#Zq>PE@G|NN=Q-mZf|38$;W%l$)0_5iJhdwWsUjZd-w z9O@8nBf{T$oun4f?P-2AQ7Rdg{FL_<@TBRg*};_NfFsi78dsIRo?qx>kGa*28huY+ zICr##ob`*q`LBB}`p%CWZ_1W0Ik9*4SESCR?`vefe_a-{9c4J}Td8=DfIpO}iYT{2 z;dj2+v(|XH+^gMTx)gp(#a>4mz-`3P1{_mFhH=rs3}%|!70xAx-P3-)>Oq_hN7S*W zpC`9oWyc0n(o^1GV&v?aPUfAVgX;{{lm#LDQ=3!DnL=T@K4otkj&(lS>T_r$0#f8? zlizE~%*vLd6SM8`H}YChWw3f!cn8rtMD~%UnF9{YGLA+xdHm(UnG_M_!mtAM4w4|8 z^!6b4UO-=ZL(XdXsXzsvk12?$pJ@Qu0c7a3AUk_RFj+b4i438!tH#Rru>Dpb zIFJD`jaURAqJ8<|_(ydLoJ&(v%aSq%9VDY0|9g9%iWKXY6>PJ*$oYuyM9t+tKXUtU zg_{AV`3|T(G}FERSJYsJ@hsrlF9vt^(HK@qEM&5R?kjql_f|4+dqph>fOij1gb`lc zZJ)IRFTbLBXSmAV8I6TLAdi2NKq+VnL=SE%^73C!r(J(H{Pa0Qr)6F2HXM5TfsgMq zyxHH;t4dG0Z2$gn@fvI~yOV>3ImN@CJ<^j4X3tgvVgg6tt3m?EEcA~aJ(3|?@)*(@ zkBE_)?c4k8Ez5r^063ej@fFrC9?$hZhKA=tRoRhEwYz)dk`57Ov99CG1aeVsMlRgs zFYRpjD_C5SR%J!j;!-T4qBd6NWO`7{)osfxf9=N-GpPDD*^jPTC(DB|t|BhzhcJml zt}H3a>u3bMH>xv0ZRT*$){HY=f7t&(bI2&5PC@oJnRwjd%S6mQWvH;q*&F@G$YLA6 zAO0*csa;3!RGR&T>cVqKv52nIMr@ycm6Uw*gzwrR=1YKjpQDBbnTm=^pkYvm3)?wL zSc)8uT0u|=yR61WA`o6{`Fx~wUYlxsJK}UTSIZ50^t|{HUcCtWzkfElT=0X~2~!~* zhQ0gC{())EbmP=mgIdtUL*e1Kp6T5|q3WjRQ-s~f1~LVX;>(+z3||9H_v@Q1OR6uJ za(8gl6u3y+d6+^ZO$38|1F1^(lG-1Rb8yYL z8eBBlS{AO8uoB*tilBVw#Go(MEkUAiq_3$dXJGIcqphtCnT^=mczg-rZ9|Tfz>~h}8CYZl>LBYqRJ{5rr(v%W>UjMECj|ZjwJk=VGBNaGR^< z7;5TWMs{xH$cruZt|;363H#Y^Pod)awRXmV$*}us?UwX0P=pS&@UfqDXULosHBETlmxYT_dG@59^`=|n50_o{>RIx$!eawdk3k?jsB0zEY z0q9CfN}6C9@Q4FL<|3GXciIu8FWE#Qcmx5bHOEsEOHJ~U`Z6ZHJWUvl#zbGWNV(Q> zXMuEMp2aH@PDC~MckR@T-Q~PSa$ZTa;|ymBtK}6GYG`V905s8SD?i!KXJFwEa4UU? zQLF>o8=Kr86kZ^jZ`$Z_zq%Wp1^PCkc!+qWeItZ-Jy}W0!QmYC;t2H%p;O;jT1;ug zg>fu@SthgozG}C5MO29NAK@=Vx*%B+BYCrgJ{uLc?E{J(ytC5z~lmtj*dD3hsJ(n z;kE{#bo9e$o(T;xPvb{b*EP+v-xh(~;F)O$UU;9)rZB@tvHfVqaJm2G0-z)2(IB5+ zoCZ5GEaIL8$nTblzn9(Php-+kz$AI^{^{o*%pmOy2EVB(I+MTv|KCKWt*swFeE9Hv zbnARMf^Q0#u_tbW^neJh69EB%&VS>@iS_j&aj7=De?}ff9SjN&h7r>~ZCdPJVHSbT zD3&TQ_V|VOe=*Ncl7xF*WSmK4uJw839r`a#Y&?N+)~QHodQ9#5>(^|VVZ=}`RhV^$ z+RxS&v!jkv&-LMj{7|$Prm;}k$o2_sI7Xe`9VQbCv$ZlJ;E{Kx?uQnsyMZGPFJL#F zz|?HN0L9>E{Ymg>Ry3de%((2wSv|`C=ISgh1rZC)RyJyseI)FVKGo=6j5OJI&av5g zr`C6o0SwuDh6*<2B>CXzoOy9;=;-L^H1KTK4agaB_#%P#2=lIOo{nkMJy{W_E55%d zj7EF&Pz1uK_=zMm9XVQvDm%8=%V^00stcXYuC6j{tj3&{88pyDaRff$w4Fm4 zV%F&s98{SHN0*tiqTy3{G+jX{Ax98rd z{6-z}XxF_fQfX2b@hkKo0l%!c_^YG6R;)vd_kA#eF&A4uio=X(Zu=2fnn+~I-Dibb zQ}4c9dEv-sSV@>_0i9)QyixR^2-qC42fpuEXzxz-rZ3Rb9le-;9&F1wpEyM05O%4l zw?12Ln{Nkk&PX1Q(ifE6Z7%K z#_%Ke;jh0AWH2cWoZ84j?$b8r6#oZ%=RA-l9!H*JVEuoy3hNqM$K zy_a&R(<;C=W#FjNDdHl5g^6#1(SNRT0V_Qkw7_&aF9&?8+y2EAB>2o^ZmI&D8OGX2 zVKfEn-#rH|OZ_Sh(YYyzS`LYZkj-mmiN---JAVic!=Fc>UjuvNIT6MvN50OE7)ZcB zb^m}Whk4NgOQU9G>kz!=R`kDFZrhcu+_OA zA_CxRVfbWSQmcL25f|eI<&-{WyHS6+;zy%qdl%9NTbyz0CGFWTlI}(TuC3J(S}iLR zRbM@e{U0?HWzLq1M@nkyn@>mzi`|Y>vxvHy%^R7^_iM|4X|KcW>Wc!rgq)`Ub1Ha1!s8_ zu6|M&&j8>mdCoR#=G`juMaDo{{UNM+5OuU3CaVzr*2riG4DW`6c7hj~p6P0;>5HfT z7S0fw7J7o+H0_dq__(>{QfFjC?oYq+$mSpxVP$;pIDUA5fO`2T1zsHsU+_n0D)D^Kfo+_o4UN_7~qQp;fVIM(MV~yPt{}F>0-c zVHdc+zYy9A-V^utSzkFr+%Sw5T1vXzToJpt)4=}oeB!+WjXLhK+l!T|9O^oYbxmnU z$v-fh#hDSEuaLKY{vF;no5(?|5B-c!^D^h~R#P7^g|xF@nC2_p|8*3tlht-TfgAc0 zR+lKf{e)K`aNp<3J@Xqh9A5gkM?)ays4fwEqtdx8Io?1^& zuQpBH)Rf8F+na9GmahAl=X%1C05~2~?=PMR4e&8+cyph;#AAGa%_g*j9u^#C7_)Ua6XxEY0}_`ZgA|h~^XvRfF6a?axwY&-H*8`fZwQ-ugu> zBmWaE^R`cSmVw#xUpZlY7_)(YC$@Y-k(TXQG#uHTi%muCA3yL6w`HMWEivu-3T4^3 zXQv?_V4fI~6{T7caoUF}cAXH?SCCN2$rLh`CdH-BZH>;@Do`8tn=^pi{JFlG$nweb zJ$-?Z>0h=s2?RlZ4?1ix^;`j3-*KzhJNqzZ@VL7AzGJZ=2Z_zm<=DWA`0)?VTm#ZUbYo=f z2x57;Ho(Q@j%6Ig8rmI2!ww95belZv>xAH4H|P+JI>gYw@d+9SpjDmsdvOKQ{XTi~ zW>J0HSM3nkynzfzglYJy%E~wlJUmgfVjfdQYi^d?b?g$R&q7x)qJ9k7F4(7TL>yx) zTz$lM5=VGm*k?zh8%?3C*H7WoUfnoiscM0a@T*f_KR18Be7-?PC#R=ijIAxUeYWSl z1gRW2k?ws79CWn!2fKAGJITQFP~>JT)>dbYE!MR}>US=(-ob51YGs%*hTCsdpw7ka zSl-{&ER{d%0d~n}PM(_`Y`Vr?Zz8vHZEq@}4r;%+*|&4 zcKF0pGkXC>u(Yh1U@dd^P@L1t$WqagBGESkxZ{M>&qH$+O5yMBQ$JUHEa9VRM9{R~ zbB1vAHoZ6=2mwAfS2+j@0t#*t*qmnn+~jUyaTF|-c<=tIPZ>!je>Ts*VfTf@fzb<| zxMnkj5EZ8;!t&>E=@nbUZ7wg2L9|Ec{Q%5yZ2h7^5U*fOgU|*+6vnsN?DeeBp^3C;oxAj|gtkFMM!*C{9|1wgQ1#hOY3$jD&e2l-?yo7Q1f z4%V+kpXJ;qANQ-NSp2E(8~sJY^8WXLECB;iCd-x6{j=+(Y=ta`gP`b=)dTAx>ViVu zHy4k7e-Z%^ppaU@3%^vet5W&YIqaVXkQXZUCA5Hlc6BCIqzq=8^Q*J@%Rj<2@D<9h zd|io?;e^{46jg%vxQ6uh;jdv&zf(u#f2^<9RoB!kQDmM8HGFiT&&y(NA`!8EbWJv>NRh#nIlrb5>f$+?p#K)o5^WL$*6# zx5JgY{G3Lxv*m(=gApEhFok8kIU{HvhpApDE%JPvJ0Z$-!d?srKr8_|UfL*UH$@~H zdc4$iaCI%yIp1A8z(G5EZ%|W$j{#LWJ#(Kqt3u+&>?ohRXw$b=!k3mTI*ruKpGhjEbh-E zk?>mJR}%1Dx&{6<=sUav3{AOFDujHfBI@+Qr_=}B>Aq?+l5gtLM)%ITM^fq%XM?W| z{qdYC_9Yguy|I)oV0i(Dea=Hb3c#*Vk1_qYg;2T)8AJ>Z)$DKfLfXC)~%rUL++kS{#XEuYbs9-V3n z*B%YxtwSYN6FYgBj|gn6H=8)oWo+l%8=nw}d-`D;Ux}VJ=miD0?59@Tmm6D-1VD+e zm4xH3XR=!q+(cfycrCA}@3eV;d%4w&&%I8R^95|C=TB>}oZ8tR&w|3r&AoNJ+La;Z zuB;fbAci&GmXw%CNJ65ZzXopRo5QV!-20?ACt7-)Z4NbV6tZDT=riQ8OwBR~W*Og-wOVyT8 z;Pd0VvH&kznaB(I_cT#fo}))`ku>7kAp6C}A=3NB8nZBitvWTdr#!W=FOpwS3`w2V z2Y$_2W-}S{b#SJs3!LG;IxFun!2BDx+7*V2=z5d394t$;!^Qk}3?$w)fk~d`5-^e} z-V5jurHXuh(e8sVRayhL+1S`*h(Fm(#>Jv2K68VsQ%g}H(jDuDFv;fhH7vu}b2G=cE=Qkg#C7=rT86|`KkCwa)66Va zttb3Sm9uqrdvF8K630>NcNhX2$AA35-|MWQhDC*|KiYYTYZXW2vA=Yit~L`EH+wpv zGspKIIJn<%uaW2&G5~tp6fG^-e)bT9@ypz6ha_%dD)GUpVW#zV1m>a`a3 z#7xQ@V7jbdlR(_#WxLwGRKeHl&OKb~i>xO;aSvT{NjsU^#_p!G`1aRsh8+Yfm47!d zHNoa(NeVef$0}6k;}c%f?XGzvWR?3a_r~KGF`rTQk%4u^NlD1aZruXzE9t1jRqF*x zLVW6lwI<2Lt_9u0y6HFj@#DX!R5&G@-}Zol?3jPHwPgU=9QHtKYMf^aKWT^G)0uZ; zSyh1HOQa|60>dC+wbpXBn)N<|rkF7NHorF3Oo+-_ffAtqKFf9nV(6I?kme&$2hoE1-v>rw$%z z??G3AY{`fP3k5Kjvuibk7|1c)er2!v`TCKMWMRQDn`&e@2Vae`U1L@mY>fTAG{xEt9SQI~{mXlaN@j2We|-TN)@TegRhF zTUFJ1_irBZ-y;|$%ggj2b44_{*abq|fd z?$R&**$Bu=KL>8uk>B_m*$S5lDN6ClbX?)L{?Af`dsFYrxxDS z%{tNYBrd1(IWMpz?FJ=B0tkwK72uKU&gI*(+*R(Zdy9fTY0Y=P0^c-6LJKAo0`FHm0wZaPW-?TSlXIv_F2gJh-9#lIc9Sga zG`PXVnv+qy?O>sK!bud4v;@Klh+sBy`jTuGDlN2M-i5)&f_47TJ9~PU%XEe`DiOvbY>vXeI&wsngZxl>w;q;WR-nCFNqABNfU;)5&=g zOmRfP2*vdA*5R`oWluj6@W}rf6246A_7e9%c-o54dk!G@OTRzGPzhel{$Q zA1G*7A=i2#e};<`&UzesVsRu|On1x>7h$n9r3S6O(0Rv&_|4u3=9F$Yq;lCgYipOo z*4p~-cAPL3Uexe6Re$Fm;0lOKWSGocp4=GjfUT#t7^bPFkG`i*W5hcK5_W-Eb`U`^ ztQbk;5pwJvb()M;5;DL)0ubYhK!Fj&{)^$OK>M^`;~|9)hzoPXO&ix!wTCLQ{L*6) z`964}r5=9`cVL*AdeJc)$3~ELJ#{R6`4Y+hayMy0^KvNw{ApeVXaSQ5m;OUA<@-n6 z93so#K}nez4d{^cRs9JT=!!-&5gFE5v)ALiDF;ro+%Xyr{ODD#IW*1x?e*)zsWtQS z9lIfNht%U1JpKvrM{73y`$<@cVj(YVS?|`8%7HHHH@_1^D05~7)|%zy(^N7Y!TjBs zxS6f&#y%S#Kkp=dSiBi{BPZA8TEPu50A8(n25v$_$yWwoxqOzKhJX!0m!IF#VeOSjg|C&N3FK4<&mS>iiuWqjd{VVSWY+$1vzlpZsfU7G@7tF;I z9Ju0)`nszorOe29*|d~}{wMwy2LCY(@{W%Oo@c)M=j#8WHtg=Fh3+bspF7T=aEa^v zYD$M~Wr;sLrH9@4RqAjZ|A>Ith})di!n8raI#K}mw=ZTA(1@ziU;J=Nc@`yy74Wbs zmYv0@wj6LnQPaeV90h~#8e{SG8<1wW+BbK1(8uXmc#j2XK_ZJ-0v>!@VADv+1tbZL zav+M^6TwiC9PhHO!cZ)ft5=^H6y<<4D-nUMSoEkK<1gg;-<|B=#d~nG`NIraz#*ie z#5UWzum?d?SA>}jU;KM5hx26ggIQzsdLB5O>>Vi~Af^NmVD}9T9cbeJoYq+Mi-iUr zPpQ3`xP&7ap~L1INn+W1kB=nLXu`xv1HWM?g&e&FrddJiE@L<7=!GdVhu`l(0GLiW zVVeh1enAE~Q27Z)MjAL!1rJ|{zZ0azr}XniBP_a-ky`vdUKhDzwLc_2D2_{ae0@K% zeB-d%h{DAwj`7p->xcIf7&61d_Q~oUz%;Ujo*&9t7|}G~xu5frlaIIJd!j)zq~7Z4 zrhrwCD}X9q=!s5+?rKv+IqX_HQ3pgoNx|iWZVbnvuc0Y06aItJO2d~!MkK|sNyi=xDt2U&SA=~po zRO9~!Q#EY+7QKrl^YMY)<#Io_pk%c4y8V?SRyIjt zvwdLUHAV@q!6+Lk2yyi%T-+20=rG{YvI1h@P_6&J;kRZ@mXi*#sWl{)HR<>=4oyhuWN`~)1evovn zWoFAmL`?9;EB4EWhK3BGsng>cMk#){iC_n3>caG zV&Sd7b3sK>n(U`fAab;dR4VU8tCahxEvX1(m2S=JN1+T#3}ZN?eOynK$0XwQxA70> z%C$ne;Kg78f3@Z8o72@j75{*V)M0oLbjK5M;S@>5WPAG*t6If77W1mM-pFGhpxLZG z69+SqkZU=lbUkO}Q2cCbh$t+YI=7_c8xa58-a)pU?k`q6o;d@HV+gx!$mz5%&VDg# z$W>jsyB+^-D2aXlm4%M6@|AGl2Q zSZzF$pU>r6$mOXWpx&GaRI%Q_|G0hH_?RhXQ

}ys;PPT$Pm##=_7%yB7Y9*ookk zQE~{H9Y%Mp4xC#a#w1u0=nUXyH3=O1`>%}!3;!a?ExivOi1I|poKRW}r{j=?*U970 zcK=N+<2UK^DH_>~odK-argNs@^TG>pr>${z8`ged)n0>*IDPR4TmQL$I}hOnDknE2 z4*0vb|0UU`Go|iFlMXx`mb3Q$oNG51^ zUwCE~2usBo25fJ*Z9#OmzS3DwjB@yNQ|Dd>{+mo%)&@9-z?-nQjxeTKkF(37#}oeF z{?!IdWa831jGQ~`!BTixF@L^vn`2p84Q%&d+v0L7Omd(p#11DRy1k#@x#RYXY`oo1 zLDKh&@kWTz6-b{GpNaQ$`Qt2xgUW}FGA8r=v=bB$vm`y3bzx;LUyWXcB&DRV0+g>_ z8|QCn`N-dVqyWEl2uhVKR_AAaMOnRx8t|NExFX!$&})_W_yh7tDrN#QUgdehsj=at;w@%<^7i{A9o=YCcEjgb(%6c^f^ZP_xaOvX z?*Vcz3B{2kfY}FLovz-v(7RQq!w*dTkZQGR#NQUlbf5*X*4YC``j#_KkSHTLx%edu zO9a5-k;N+7BPSyt8%NOog`j=d5;9P1_-=`eN>;OC)6)=*F-*Q@>sXBbS7rR_6DaKb zd2Z(gc(*K#5;kAo57dSjs2)-!u|OiOZId4Hal&8L3v!L&*9bR%yZ&6HhxC!R%5n{| zaP36;bXS#6%5Wxs7|wpt8p;Mttf~jx z5WU@l%NFZ;da8b`|8R!uENduI)bgHG(6PMrS^9$hT5?}{Ak;}}X*wA}Cq8fjuiXk< z?CMRwsg%5fJve9nQw6t!vvz~Wrx7}yktdrYSqEdD5#0g`fyr+6*^=L2amv4Kmes}Ehnr+F95sr8-9OwCdiIyQ%YJ`TpgDtY&l&%wO+{<7-=fbF3^lLYS*J<-Lh9mGj8BxwqoUy3k0iBd51@Z<%OdJR#}W}X8gso~V?|DweYHI&OL z1N8czTic#d<c=B+)3XEuwYZ0#^JM~*b5$kfqUNVJDsce!6v^ zK_SQ9x2rQhU{G4f@cClTTXYdY_w<8o>Fw}kX?4JZynHkcgxDyjG9gtQxcvw|ReAW{ zPjBM@5zUK^#y33Gteis^(ENIKRBGS^m}GkfMT-1b3Q<3k%fC+SWBm-A-;p?my|tM^ zDe*oDVL}CuiGnP(-R`x%*`2@HBeXa)(2@U(1#n-#xLuXwq2{Re@QN3OM{No>`3SgU z)lvwFJU5HY(vJ^`lgsnEz|X(FHE5=#6Ph&_A}a7~{c0Fyt-f~j?q>Isu=xCc%g)Qa zNIi7Hed|iH8C26nZ7pE^H$Ga0{*Ydvg< z*vj&)lIvoIg5k!wH5|PuHD(8@M;8wBy1>ckLIE93bb@59)L^iCuTQ16oep|J#ymH! z+9^;@FRzbkZaCLLBVA2wost)K!g&o3S^oF;mCzo&W_~3%r3u!Q>#2j9@bCgOx2C zwBlcxcZ9g#m_F5$=KOg_oB(0ua6v%tJ(+K1N(=kVXx&Hv{sh_J2Y-E3eyd^o#?e2C zjc=XH^|%m=)cizj#~zWJl=_Y&PSJn$daXIlnDH({BMmS4|evKfFC zE{70*Ln{?bFZUs-_scJrm=qK6c)XKT^vztC`ov`o#1}F?JqS$(wjy-rR)3j1{iW@k zUErQ_$?$D-&KJfK@fzqFq}VDAeB628G?ge}0cr0qOSb%8a%_AagWbsA$ry&;`Oyl6 zzAtBOGF9INLfKi_v@}hQopm+j3F`+u@OpSneH z;(KjhpLlFGvFAD7t<1yyXy_oYX{@c@hraTm0OWBYKo1C>I7;0ltA9Kv)t2cFmfcL@ zc@YO8W3k^_gS;YOh1!|L)Bu-=wu{|}}Ftqe5!de4`jBC)#6 zYffmzF5eiqw+BkOG*;ecJjl7@+nQWgz~m23ps-b2CYwuxJs|F*{yUR*JhLvAHFSd5 zJ_C-ZHr1!=W}yHqMY$I(e~okYbXSJ{%VELtX0?>xs*ycv_?>T(Rk(lM+uOsz#a%mc z+HfiPJ=ko^FN-NDi%C-?#$P-<=~23{{OG*qP8X?T6ANdsY0c2uamTacM`$^G{h(@VAd|FTv7-xoXI zp0#=$=;yemg9TmwuJ7*J8aLmPJ&lN22P~+HuzWUI%izBH2c_dZRT9?KC9x$>CXRgwwL1(^KxpC#^+R2>;xKyh6_8F zI$ffF3U%I*n4!+ptP$)ZZDK7U_rZ5Kec&kY<7jICpV2r0m4Dr)vTW;~pJ(|6zc$1|734g_3E(-fE-dDQ=I|rB%LN0|B2t7 zkEqTFJ{m6TmoKc?Qho-S;h@_-EPy^9!bKt$<02zmyhir*C$3}HX_$=e+eIGe}of1Anm-UCu*q=Sb?$1B97aK5uh1v1kh0LAx2 z5@rc?e#gP_=!|W<^Gj|#I`ol@i;kKp&dpu@43LeHoXc*b%3)(aW1$zIjwq!hmV7;y zkNZ?n(@i({nUM@V9y)yjh-c;nhe^#O5y3)OM=Wd`^{GkO^q`Y4lf7vR+*4LAzn7j7 z-q6snQ13+7z)S>E%#W*KW1}6QdZ+q^AeVumFJLS#ZYZ*neJ><5_-DPbx&nX4V(`52 zU0CdcPadR6ZVX6Q$rJ|?=(;`mWjK;H6XSefbkD$ptpLSBd4e~1V@C{ZsVAR!^JlQe zMolmyWVU6-ux@Xy1=?iZ?YaS?yHD-aqMjRk$QK(zT3dSsd0$_1ynO@8nKsXB%llAKOE7j;dYEJ5k_UKb*;gv?R2Zm>xbh5~^ z1{_2ar0KV5&wHJyVS-?5o?Kz{y3I;HzAgNYJTw(KfW_0)rkcP68^es}Lx6BBel~mW zxXEiMzC1cMaVE<7lFg>;<{%;P8mnrc>jO;W7|rKmWLz~c;5*OiL@WLAsiafAFq445 zopNQryp|fC%Jb(b$=M@nw-=hmnzH6zKYIltfyfXO%S?dMTbem^;PQY`;4kHGjV&5+ z18zQvjMMNZT+2-{+&_L8>W`#Hs=XyVT`u|5Wf*P}Ln$=a7~OQKK7ew_>~}v$r6&FP z;adIQjvjEw8!rcvIQK|rTFRYW6XHDo*rHrD{_`qt?hq}VQ26`X4KkN;&~QI1 z0VyFT6if-~_26~1O1&@|-A+o`-5uRSe4Ls*ey{q}Q&7=*fc+Iu`Vj3zX;~=)zjQV* z?wo?)!8<=~mX{`F<#w)%fI(T=a@+F0&N4A^LAPv}qbL|76&W{3NFHa=(VCu@LAE|2 zo?}8dr@uM|n6G&kmo^XSv8T>tTb@Vl>>_&8W{7sR%>t8?o@K1lWs7N6TX5JfHfYdK z|JMPnHuLydm@8l4mq9EsxSp!VO5E9n(=JJ)1h^ANkxByC9IULHKEVv=3ar~-UlSlK zIbO@65ToF^PZ=V5MTm_+>|oKzDlU*wP6&HZi#Mu%Zhd{iw)GxC5ofANFLsS(!n~47 zkB8$D;jbbKed!9(;U<#a%&J?55cj2V2}XGe@dX<$20q>OWCQpJ)yN(Th?!2j&}hO@ zQC?m;MsfLF_95+Z9I(r~ldPzy2UU1^H8f?l+#8g{(-lI);z@|QHd;MUbfcUdDpmF< zgTD4rN~X=WdYnL1pXO%Gm3r{l43dvEsndZRIoUpGz5n5m#ZOcr1kdg4T!_scG2rEu z4-NC3Lidc|wou=AoG#Eg%Ruayb}D2gV!IrUXpa(rhvBL7zqo!~JYXojW93)9qf~r$ zv5AafaK}F`W{GJMe@;#A55wLU2aRdORAal{$jIa#-^P50JHN`21LfsDQ*e^O!On4> z=zW^zg%>^>`P}-qy;uYn53!0GMp2$&3>e?W5m1Kh9~yG7bhJni5f&z+;PhzB2z8x| zGq5T`G<2GwcQCD@T{r#{3E;Bc4dEJsW_Z56lA&!jmk9CotTpQje@0<)4Y7H{x>Go@$878t-RcY?1GCM!t%DJnKdv;UW$Nj@r?Y0>|h&;ZXCh(H05w>)D`6~R+ zQyI0^dbFpxtfaWp@%EvZA;0LRQ8ljM4NqyaalZH@_+SuY><)eN5ox(L`^Viv>DrEi zLGuJ*;&HUa?S9_KG(ky1GPNrNNG~}+`SdHsg!p=s+YDR#D$US6(_TH<=V+l4;-#6U zX0bOFi}7y_abl0I%MZG}7{S*@qYpUF^xIFU^}f^KBwJ7c@P+_YVx{zIh5oI8Qw#@) zU>topwf2p9mM2xyK1HOVSqGK0mBZJ@5ZI})x%qVX=X_@Gt`vtkm{F>LWn`sV>h7)~U(I3F)>})5MWbuW z*RSbp7OeK?u}q>+o5u8S1}FWoyq;R3h7iA9p8HrdT^ z;44PvyBHoVM%1T$L{)N~Uvo?bZ2$GDbprSoGV;J~!UG{8Y~`L~qKLah}~^Z*JCUuQp4fVt3qGU9VxHN?j5N#zVU(=lh?&+CKLhNcl1~XzV{_&TF@KsBCf>#Z`3~c6X=NQ9`n&h&Txqb&9%t!8ihH zRdaWbk5tSb8s$=dlT*e^_Oq;|Wy+y%5-b0Heep;^F{`qkaQuzAV=J;{E|5y8`ddDB!+FMsZCJtp~3E{_?^SE?Z&nStE_k zTcyKV|DBg+wN1hgrXC;+j9guM9`bI}&>r|L2R3F@^Vj@&VU4RU%zrF~I6i2T!hffy zcF;7iQ43L+G{O|n>s1UKj4jZGMMY;x36q#T05O(uLm@G-v|7Hc<`w-px!X6brb*xE z;{KQ|J9bWct64Z(6kPr|{&Ke!b9tQp;JegfYDP?6fvKCeCTOSa`x_wSy8|mRJBpUr z)5eg0Ub1eiRk5}q$dYR;?*!*F?`0aw<-Q76X#)`os8KPYw z3LkhZvgobdKdf6asYo<-jr&=)-<3I}f9EWC;e`eqOH`?+fY-N5sFt~G{wJuI2S~<7 zZbcD?GmsM!1eXYF>KMf^yd?M%a`jn9^T!#6k`P4su7G_EOX$AczD6LBCqJjl&`8#( zztbZCD?dM<4bTttjcwFM0GHzA@XPY1weMk{)lGrRkc+MS(b42|5qHpMo~Tayq=)GI zEZNIiEqr}Cz}-#blwyCx-MY_b@h>Up&-5g}eG5E4V@Au9Jl0`ApeRf9M1I{Eq+rK=T-WMFZ4t*W&3L(2&>02Nqq zx*ralJ8t1S`u+Xx*^b`s9#62MNmV5(dT6W+0b={>Z4Nf>n9T>#i+dJghxv|`2&jWT zR2F4$J1BBH@_-IqPSIoPXroKV2!WF361d? zpTe>BmwxmB008vUyv{xDEUP7ge-C!1yu;rB=pe7*#Sfw1ik*s^^*pVyoq7dd^lYo7 zqoH{eUq|`-^D`sh1J*Tk>dk;LJFISD^_=2MN$k>u_WTXenesHNT2%i4 zEk6LJ3?TpO_~E<5&g18Quo_5FJZMsv=s%FU{3^zEH`m!bS2ioBeWI6Uay_@0%4-&y z;xd~Eg7C^NP1A{cROq(2u>lNg4GpD0vY!uVvI3NN6)iL;Tpurw{l(T~K%G8oE4vAq zTMwiYHit9W8y)61r(t+pSt{?k&wd-5M;(9lfBCbjiZrOx`c|UsYQ(QRAVVdb4zn#A z=-=JLS3PaWnL~#Y5b@)z9RB#B<~Dlw=MQ0RQH`pc^$@!7CJUOqExTY>e2HqcF0bRq zh$)7QL~R3rurhn8-GTY18X8AZLH^)Cqk;)a`n3^Q*OEbH6I^>-&qBAMC*J> z@P^sumkYI3QkXieKRijLL>Ll(OsrYw-8-N6`#7z+>-6^P;%!=yud?*RMQ`xjN|jz+ zn#wOM7t2M@^Guh|<%&A*;>W;xs8Oiu`+7u9_StA19Z=ZTRUr}28O#cU`g${+BsxA) zC8=I48+>P~tuys#R&qeJ8%RGf0e8^)x;Z93?I2L3)oY#B$Fsb*+*9u^ENl>(5O?4G zXz=V9z_MFtVK=EdI}Sb&%CLsmA%kG*pv^y+zqS=VPrJC`p(JEiFr2hOh^;tTB8}~< zC7!v*iXT6Kw!<2p2RFUwP|UA62xX)7$7AE{HiO(V~n`?NbMFmCmG>n%tuRTs)s}2@qHa9=Xc35xkdxK){ zVz|j$(bH5`)ME*8>Km~FoGnhug(4K~O$*_6p~g!E8=Hcnn~uA$6WH}Yjp)_n=H~9*NXW)lSk+aV31Eh;s+DL5V09z=jT1j!-O@q=Y4uua2sGB1B zMitI~#=jC1kvaIr>25?0F2>#>LySt#N=!+KjZ>SZ#}M4GmY$b`j={J)_>|I&8Ppu_Z$?vmlHOIxXJ=z&tu7=RYX1GE=XY+D z>$BSZdHp=#`eS9aZp8B(z|RtM4|kU1DIVP7`N%q%iea{U$W;8#`+eCFgI*ZI|3uPW zSVBn^YO*`{b^V9*4FGtkf9vf~V0#kR#;4!3w@#+1HrnEuRQ{%C z7aE*vX-#eZjX!oIL|%xjHeD!@+UG6+tY*7igY2w-#fAgqiyESW!s|0p$H>1V60R`F zg$fw_P8aRqL*-=bfQ=>t*;nhsRF)SBi4GOzLU7Pw3i$0ooS(=K^*22mAE6Ii!Irjy`zGhJA9cdUtm_rtB(uDfQH!c{kyF{hYb5>#oX=HB)@Q_? z$qDv(ycoZBP68Uogmk}C>oPvKr&)c;wFN3?>;SPdYX34#xh_vVqzl3A!>$K>8x?;g zx%uZ{;|Hn^+aHppKnDw8yNv4@@u5vCz`y(PLsab}t<-AcDQWR(nP+%ihxh9fru( zj7u2guwMgtZq6jWxE*0C22`we4+{spqlKmC4q30KR@H4dPY-nU)i#9&#%))=qIg7h%*8f08~0@2 zRHcEpbqi)FM9XJb+33T+wB(uYA`#DUnr|Iw#>~&BrX)T!A^5pMdi<@`;FS`e)W`IR zuYl~qpE$-W;Z?a^+7)TfU66=d^;g``(0OCC8}yUyNr6|RMA4~FwBmgZ`=hs(F+;XB zP*F8G@N_wHCa4HVzYu&44HYBKeCCFt%RylB6wMzbhKpSX$}C*;0W7_~xj82#uINEi zE?YA5VdO*19dneso?hyKza5(0&v0lI6k1K8t%Xw$@NNC(74rl3+(~-Rj@@*H>pd~fDsw?$lGnC zj$CA(E3=5`ZG2j6}{O=X7hR~d+H3Rmv^Rn z{}Q@KfC-nvVce&|o`8d%Y4~dC$?fRvjULn$wJAa*W?hRdidFa}W z2M2ve7&}a5x7}F7pGC|@a`E)pMrva7Y!e_5-){8f1G5C7bY_1tVm)k1)yn5G%CLGg ziiJh0$`y^2{_?(B7@O;W?e1^d-NVLsgB9dE($+4}bSh-~>amrA_P&Wd2m?XS#Cz)) zLq6IIpBlG9EIls|*E$=3WS0Qw5L__U#*Am_>WPy0@dMSEM;1BmxsQ%D-N+)|si34Z zUnuit0=Vbw?F?uR(6`8k9Cln4ESN~%6?K~qFx>^s~yo(8w_ zl?#_Dwc7@W@_LTbQjei9$YK&lU=T}+Wzwp&<0up>2~6rG^P)2hGTWK!;>c*C+7O5Z zw-8S>{$DJ>FoGd=3IU;EtlK4A&guW%XzpS$Tx~WNLAXHAe|IZ67Eim`d^tZHF|Q9seNGuz5gYZe>-1D=}d+We_?;LYeRPFV6P}WHKL(R&jgk>ZgS} zt#h;c&N+H;`wYZ;Z4-6mSzUIzL)x_J$nvwx8zY0uD>Y%)w~x&W);$y6LdnG|ZSNZ( za%A%huk+)iUJzzhH0XBs?lE7!VX@`K&yb7H(?9hd%-!4b?g<}x&OY^HnTc?(r22+9?>xW8|SGiqc##EGyX=W?%yH@hAb0wjt&*l9LW#%=hnj?wVzW= zm3O0Xi@ly_BcOzI*Tkor`N$f0|H>Lq_U_@_ZHi^782e1QYfH})yyKZUGADeR+DQM5 za#w?6S^%rtL_TFt_jVJf3dV?{vZ$Uj;cWpH2-*X;#CN)fT-M^Bn0PFPC#hQ7NwDr6 zJ6`1+gou|))!UmFo;cVwU%1?yvoXEM%Z}}t`Y?a~x2G+#;+uxCW~UJoQw6ysWygi9 zpGtGBi)3IrWqt~~VvM6}`^7(zUwT?DO9L6I8cl6f5r{%Y#074Y;+4k%t25N|nWv`|!`sX#}KbKnZ1QZ6^A; zu9f9(=Dn=bO8izd;iQ4{M&)Ph%&gG4>=Jg-0wba*F16KA9foFU+^~0!aGZOHKltZTs7PQ{~0_qstbA`^Fz<$xY&MF=ag{?;q0Em< zNciji&&8r0sAVSTd^~o1|2(&$0Vs({)H?O#(BGUNs(FVr1oZCzc&;r>sY>C0$Wh-^ zpT?nQSyt|<|343myE5?3G1@wFK@7hrzm=pb@Y8Gb?T*p(ohE#FT}qADktrhyITL%O z+)Kr&;Hbl{KMHkM-0W9VZ{Hj)3rJqRRLmz#McWl2{+w&rRK90d|84R5lD?=#?A%9E zOHgodU}S5t;N^=iKzU=(vQA~MJw4&K(d|V|0k1-C1F#7M*1!VKc4JesM|OkJV^Zza z$BohEwKGlB^CdaNMPb|Po8hqO{z_NEj94xXgka9Lro3c>!ecX+-omH|@d?0hFbfZW zkH8;*)XR?7*1R8<_Gl&3y00^jaH`wKkt&vOl{XBrJ05-DgENjlf$IN!yHaKaHpGzBV!= zJAT_D<0&ux>9OK(<2D~*8Tp6@XrYVm5lEDqd;veq&lJFmdiSlhsEJ8{zv6%TIf5@V zCLg7l9>1(Z;Q?RHi(r<4t*pCw^MN{c8}5oeHz#&iWCyp!xnl?soeSwP_TAU;2CV=9 zx1nNrc8?V?-;gCtUY+^n;R8eQ$aP~p|WED!`u^I%i!3Xf^i2$(Sq(8rV63{zVYsvFxjBuPY zscFX->X?e@X`v>Jj*21y>hrJss}<=->TYiyh@g?aX<9ANhG zv7Un6%+2etBG~u(3H2o!zh!G7mp`kdl7$l!F<`ka3d#0+8*4X(;lz9O z4Dt5j-rXjw2F(n&km1s6!Dn~{GovOi!Y-J6tk3!?)_e}$hQ$sjDkuPiNn?&@xPPbP zFsh{13@PxsxP@4sb1297u?}Z0$yq3r0;ql1BzI=im8F2O zgV`5365}%8w0zx1r zmc>K^=IheTG-XlOzNK;%bE=DYn2T*SqURHVq^N4{nsWpQpkx8=w|5(}b+lvK{k>3t z{-=C-b|gUEDd6x&Qj*Y|X-$25PG~3=o8)P3^`wr5p61*ELdA;F<}P3d4vfBLTMm~VN~{4=6MG2YDS>aJ8>@}CWckT7C`=``s#|RtW zljnI>n^&{^LpV_@Xm7X$L{g|u&%DcdYad}MZjEnL4N8<$ngOa*t+#I*y#bs`US%`` zz;$X4TqD<2Mj*eq1oVamE*q-J$(~tE{0~@t8Yqi%J4r;iRA}P-<09uh%h#-TM|xFgM@rR zYpvgC#KdbTti%zNvNC8cFR8yb3$4%D*UoHR_U_wT3b)QOif6yAJ=$8UiNTAX^&VEW z^fYd}l*|@oM(0y^LSPN7?m_TCS5ohTs2TxYnsb#-owBKg1 z&VAhOLwvj(q&Vql;19Z)9lPyQOmYJQImjvA)dn|z49W^Hg;d`I*ni8d%wULXQJ>Lti5CF5|V{&;=m>{;+5&~ z_X`GEA&dD+;>9EP|8yB=1otq|XmFF3uudn}g=zwwXqN1#=?d1&&(w8silHgUj zHJUZPZUJCz<_cR|F%2I3*cV;YA$u1SC(tT*)Bb~Vz{9mEkV2oKi0a`68lR!dHD*fA z8>u`>Pm(|cx7(jkK)VK&Z@zz*8O*h(Mh49AuI=(dhKOtf^!!`Z;eJ_%`(ZN80dGie z0Rx&wky;3$1c(~-Bd)e~Mh2ofQ^A9B|3>W-5}WcW+DJ4FF3k3G@B0R#K4Y$HjQN$( z1oVJ4zN>iA1oX=3epNkJVj%5wc~$U=%ZnPr6tG}%{8Ww3`wvtJ;KIXI-Cncz(5!kI z=*C8;^UibA{QP_4=`T>&^Y^#ipKSE>*8E9Gu7C$}Ve{Hf5M0+<$ZkS4S6+W-oX)$uwF#QS#OkHMIia@*VP?Y%J5zr{?$%Tbc`;5bt32{v}) zPAV^&qg-^BYSMIHiz|!;$6y9T<6AOKkPKiK*T73)NSA2jqRS?4{_bh4KrV#q1PW#c{F;gPiZ8%g-bYdl)@)w5q+jHwcT z|81s^-K^N(T@%&pUF7bdX@c)`uF_aMc3)&4-B;bcuQn2Rji#!%JGML}fxHT`csP8p zSk5k0*r5>5GB)^qFAZtC-#^jSrsgNL*r*(y4*Q)u`+r*d?yx4h=id#z_a?mvC|!`= zi;5z>3TP-INJr^l61sv2iWCb?5Ri@{ARwWNbfilURiuTUkc8ajeZSv(f6smHpO+`> zW>3g6=j_a!na`Xvc+fb*wx#xuIdPKp)5u_c!JX3!BpdU z6Q&XQndzBdzDgmRE4!N)J8>%o(N#l!a1{ZfCk_&H0?&)Z;fAt*72NP6@!w4q()SHN z7*JlYb>$0JkBVOa6K`=PU%#rXybSi0`QWfgYkfl^mVz5LmwESi@Qc>ExiDFR1BM*I zIAOwEHn3U&bOuvlhm>U&7AlVHlh5p z?-vfw^=2-2%8vwm2!JN=TW4ED`%j(uYo3iC8Y`Dws0C{7{omexLQTdbVG|e`YLdj9n1j5SKen#ndn*qIqPKjtzD0?$D+AZ94?E7iMS(24b zu9XeZpF;QF&Gcrto+l<%eXiju7A#Z!_V1$fl>U$7L*rZ!V_;MHsd2 z<~DWDY;kYUV8nVERN4@0>#40!(mDCZ5(oY@H<$2pxY!Wj`L`t+iWs3OW9lp{h5m@- zr%zkx`h`SFdrygXescbre|+DlrVlK9H%*1Xy7v?q+n?Z~TEg&U+l*wQ$8bTAn@oir zJ9hv4DiC<_;sw8}{2LetA0Ocd2;*witM~EL9ILlAgwxR$?#~Pl0|mdR0MKk~7hn`P zRviLUENb$L&*Se}gZxEE_01d#YsSXpgF~Q0S0hlK-LCOfS?bM3!?yn>^%y_vNyTAg zL=bgG{G)5(R6EOf2_*)9WvcjC~@iC5( zY8UNr=ML7Oq`k@j+}NLy!I6TR9Mx!Pcb7|tKK#9dQs#mS9hCPv> zkIkhC)xg%i8vqw04$=&Gg@qw{R+=Bp&Poonz=7&-UO%tGc1_*X(3Q!hc_k|qjc2^#-qn1SA2JvTQ|a9ck^ z!Xs>VCgZw2_GqoRx2h3#qD1jfMd8y)$O6xG#{h2uAaCKP-59?@yaxW(7LFuK?FxD_ zHW~!33kwU$2=-92uN@>Cs%eZq7mql4L1Fy^DxEV1W;V|;bok@aUzA*xGYgz4APG@< zoo9@#6{maaUUy%MX=-MJ$pRoKPFRwpq@-VJyPvP`&N4J|uS-C0`+Pe8(&_GeIC*Mf zJqISxva+=$Mf1Wm2UtBYukj;XEqA47ELZEB&MK)A&@=27!1bO?7b<=+6I%&1I99xGCMR&%68{geZY}Z7uQGUk4x6;8 zrGF@hk7oFxetLSk=`BcgQIVLpOx*>rr2|aZYYHYyGfZDd zzwv@M%;NIG-fG94dFhj&(o!)|QB?<;9q%yOmNjan$kOeT*lCod4^jb7QX)N_;AaY0 z!a0(j_;EEUuKC%9@-R+G8RTD z74E+&7K$#+&n~6|ef6T+P7BFS`2}tZ!Xa2i+ztu!9u8Qwdn|48stPs^D{` z+d)flW5=zMc#_r!!7+VE&7)CJ0s0*^6$E3fW_I;@GJ(bNGYNK>C`07bx4*c|4tQ(b zd-kb}FC=i)S*#J0Y1PIv6;iZYSeTTi_3guvRNe6J^Q!k#r}einG5Cv80@Kupg>!Ov z^^LK2H(ut(HgOA=*0*}$HZZo63zjGF1|$)x7TeN^Ey}fN{Y!dt;GtBGZWx!CM;^`V|F*_DF{jaT7{EzVh zY0bLgYSY_s&Y-!WWIC!mfEXOTU&;=HE?ch5)i zzS7cNJHHBk4NpBCg9R*VPIy+&g1T8@tWNOq6=sDL-hkgZ18?5IptGawJJ#hpGDF$a z1=njjW63hhCV04cp4@8|`OfgCVQDURlKd8Q=3hIe_8&VY@A0a#x;pM(&Q{{cU(2*$TcN@;nRzSo7;?*FmUArZ7t)}!Wp!+L!}j*biTch zycpisBfvEIb`Lxj4L`-7$VQik4BHG_+6kY($%r$=1 zrT3MSn@!Cz>G)gVhIymxs-vSuosGU3({5zrSxz;vgFv7RWI%#`0Ng?ZUm7)y;`~!m z85{!AYmFd<{fzTUSA(=sE4@U^Je^`_3B#(rKRuttd}m?Y8Zf zWoL8Rc_||2*vR%d=x^D7$Z7yL@)Oqc*H2JjdcJL{uFo-U1y=}UOmtVrK`|a0nDAFOI;^x@R!pUYUvqeXw*>Glk?hAMj zLDP+xaDW@KoauNea^p;jO7CVpC;!DHi0+x$$T(}eY#xlty)>Va?3_k(dOwvJV>T? z+jpHwW^)OuY4-fDsgNx0gYTKE-9$+d`6mr9sqE>`pIvi+Kj!e2c?5nbtL`}15o({9 z{UXt{={N7^R-q$o&t7q~IK8;&6UD!~n|RUL`dli;@V|S-D>&1}j(1XcE$+l1F_QHb z+>YzHMgt$)_cKkxo8o%RI0Gm}5j+-58D{dBaA9rjg)RXPbb6k4Ad{i%dlLU+3MD1Q zxaMh&t@Qa@P$B-E8Pixw%_EHEUxM<(kwV2{(_EPU&r~5(0gX`qYbTShsW`sga9-Si z`(sILQmf3R&pEyVOaQ9@fO+-I+;ZdEP2pRDFH?3e^!B>@34x>vj>XQypS<%g1GF0= zA(jf~-{>*aRWQ?If1Z9A@)sh8FHnZ^veSUp9JQYDAHrlkbv^&TgPC)^I)8LVo`k-m z84s(lf}RQJ_@PZz!U zrzd*Wfq-tB@%r^PXXpL#7SBe*uDjyk!}&b3+vhhS%a_Tv7nG2Yhy@FuIox4+lqx657eW+!gA{S(CrhDPVa;*GwcCk?r2 z@Q<9@nW${At!+6Z7Hli&2Xe@Mk%M`PUEug-fh!OCv#N1Y!c@_z%Qch@A3o?IfZ+AY zPv^=@6g!Y~muaWTacx3sI&nyLg$>v0Q$ zZAG}Z>u@cwUnmIUnR_U9wg0VRQZm;SJ@Xr2N?3<#rzp?dpcQd#Y|rj4{_Z_8&}GUi zIHheBrHVMMH!wD)7ke&{GFdaUaJ2C%YU9};O?5N(thJlUYpXj_q0a8y8U1Q0{XY%Y z55dDM+?HMm_A2Ju=v{cR(&XKcY$HY7a*FoaBmY~dlTCwzru_|9o}e$P{}M0mlYG)! z46QVt-P%?ZI_6YMxd&VHzRKUZ0C!5l0eX$m>yt;O^Inv9Z7lk#pVN+|b;)aD`tb2Cp zke=J{XLr6lr~x(ZlDjtU%|40~aY*-KT<|iU1aas{)^ZjTqXYnj?m6Rf`)RrOD4gP% zR5QqHSU^p0XE$Yj8&thlPr}mmN+~2Sz{;dJZj39_z6)7(`Xq&)pPOc0JLW7W7o?cS z?KD0eXp*nV4@Ddtc`ow9mY1>bBfrN%U%*mOnFR~3nAO!xkvQl;*Mlj_&W@>{yV|;O zpV56YyZkU~bW6Kf;jL6^CaX%|1$OI{z@4+?-9aOe_ z*cc*s5TU|r+qvER-5SRYo@Y1LIb27+b(LZjjvW)8YfgSz)5e8L4Qlb1y(Mb*J;w~m z7kHi}k7{-Qc$j;_4bOyN+WL#Lza#hgolH?SZ`ZVlF>g#MYi7t&f#|u8s+D#2|8XL#V%p+|iH62GouDP#B*~h!DlqUWbnx<_BWf^Ttb-dy} zjN3jr&Bs97Y1ZaPXbp%?qzuk5^@q4~;^~o;l-Fo&=nr8T&u|!j( zJA|>5cbV#F--aR#^W^e%M{SUiT3?T>4(5LR>*p1&R-d%^aD7azTv{+p?GP$+bF&xMVRO-0{HR~I7xRTV%;@A_Gki<{B38Aq%K?c3h3BmsCAg;QEoU4@j9m+3udjgKw^2m_?M48i0}GcbSZL zP=16c$2P${<(QHe0fHJpqCVxtJ2V-z(|OZfoet0q#s0c_o6%fsFJITWnao z6ObJ(H^fAjXUVj7AsS2~_CZ76KM#fsN6=Hm^mX|lHoJUtVD56UJJAIo$?GDo4^BJg zDk}Ips$@aIKH_?w?lM*F+<*TsuNDNBzK~WFZr!mv`766V*Bvv*zA#qMUbPmPR*JHH z+;VdqEr}hcK{CK|8Ig$4uA>|R$JTGZwpwNdGkg0)aMk$v6PXcueXQK_ojKXh&!D}w zLI(DUPwycy`zUvL@N}rgI<&J(_NzYnuy4=mg3X95IWx6sy0a+3Vlf^4Z^OO+yTJr( zxN{E{rXDMfr)dR~oATpeVCTB?94swIH?Ci3LlgRHFlTO)+C>_R;o+F@CwYd}^G>O@ zQR(-=uF(PDYE^RwhfNk3qkvYwG{}EpAYW?lqBnPJ)$zWXk9Ee;4z0pg^hk0ky?@>| zBrHf)HNT3$kayDbqit2! z`J=;dbNX_A$Ox*n?GVPcX2On;oiq|rCquYLith7HUMyRf6o`HZ2N0l?wWA*G?f6=x z9*Ori4n;IHUs*h+)M>sDU)=PKJaJ^3aUbm^9~7&DfMe2e<5b8;NN$wvPBGdDWt)tS zz-`x;vB2E>|1`h*c+c)54)Fw3Af(5uwvCKa@1S}c98^%)M+d=3Y`Sk08f+zR&xHQB zv2ppti`OaaNLf>J4(oS9MD@ap$K*WbD*hacYQ#a)ddPIXga7-De^_9mCu;J(ymR?w z`>+4BJbp}4k5-r5zBTc_T(=pVnahfd9v;scaB2^sHwT6!@v!m04H-t*4l3mE&##8< zx*01*WLH<0T{WO*{!0v;Q`L(OXpnqoH@!PG9n4W#gOd1Q4Cj}M7=DP!)6uYOygD{N z2YQd(rVC!t2-EoR8J^vH_MPwG$O;LSW@6b7rVMLMC-U~rLsbU`1|XWJYO1QL@*CH%BVPh^(lnkQr+3sG8Ll3j)CD;KY=}f}IxWMLB0i z2kd}!RLi~{>Sl61P071FSXYHW>lm@7JE+GNg#4z)dD&WrT#=y zZougO{TD+kL(Ruo+~Z51KHH^&nJK||ES{gimvXIMUXyjcw(s#z~m{-$`pKFQMCNeM1#*9b*s+05*3{4 z8ZM?2H}m-S=WpzTz}9X>DrjeE)N8UT__YjgliqJHF_*F_j**dP5too?h=YRS3+iX& z2x>Aj*LEgm)=&CVJX`y5*3cs?dT))`gW&C&;g7_I)xHlz*VW&b|udNYhDXrY^)`7YVgc2*tFuhdkuSu$2%{a#zkM$9_C7cyDJT66kT zCIZo=^lZ2WUC-e?mGNTru@}CQ#P%OUU3->LHe7C0Zj!+Ji6tvLnU#HMQA?w}N?E(= zU!e~_IM~9bvV6_^4YTyRrn6L>1baa`P)v1)I0E|iH~&Mdv!`cPW?17 zEDmZ4%Rx=1fwR*QI3I$h6KE;?)ATNPvgKrHedJ)1strJdgzOZejbP^%uh1bbdj#~g z9DiWaOOZR;JaiOYzR?iihmz#qm*#ps(7CcZd7zdtXC5k_Iz}>H&lxV&FG96Y9dWluj@ykhLoIB zGd>a4xl=f*yJ|CD3bU3IrJ>`t4^slTSLqf2U z>K(ea$EADqA@Vh-3WkZmjgtp7X|E z3~09Ec12kHtorYQbhV?LZ;yi&4l@a;_AXX4OAf9l1$1Mzv0V6#mZYewGTf5J+}%pc0Lp4naPjtKwnQ`kO{pjA2y6B(A{+JQw2Qh_hM z3zuFqgWyl%m*8RglSWeq*iOd)FM%-(O?*=T|4vD)N)KFn0qyNYhPT|vUjIG&?eO)pdM&u3|CzXZ57yHy)JZeikTnw80?&pgO-YO5OQGBkFwjuc-aE;1L zfTn|fX4$KS3$QS3!gFXpopxm6+s9BL^+7~o1K0C+ctmNg(LVYPOFZm@JIe^*2=X`s z2x5Q`N6~dAL2c~#aZ1B_o+tRJa2!wf(;?_+dsyM&@Q_pl3l9%!quX9k+;%JEvzJq(?^JK)q=EcdPK# zON0|BIe@`6y8q4?Aa-_nvdZL!Qhrcm4kgZwCsHiR0=Hiqud{1~VUz(WuiuX{AEs|k zxLir_x!+pB6IHK?Dr$L2I}UGmA7JGTTarZdkX}kb z_w^wk|9(UP*lI0ux3+{mkOrJ48ows`NRs-_ef7r9yn=@OVFFqs$E{6>1Dg{PEa&8V z{oePw2w(CH5X}5>Lm(Z;PTO|N8!4>WYDHaitD1K{-RUwF={dd1NGs}$=;{^ItU7j` zKl=VgMoHaC_F!p?267+M&DPO{(LB&4%e2L~al*Q`ezAL;wXk&$c?BGG+T3n-7qVd4 z_IUVJSV)P)#!~$_5?||obcnOFFksQT1e03ncIik~mIn;+i=_y%#Crcc3>w6P{PUlkb7X+LppPWdZ(=L9}N18V)@RtcR{2zfpMH5z^KRSK-EH#<5 z*{O{Ll~&JddvAyE(uitaW&5!^l?@Fiu~Fb#>>^Q0K}}zdk+?b87{3TYXsY^hoJ7G% zCXJ0*mj-tkCS$ePJmt(Y|*mK2Py_Cwu*{pmg{S zH3PZDpV=B$N|S80)%~V?{RB1mkjT>?U^a#_n~F#Ai#w;p&2A^-7d1F?2-8)>97D6^ z$N}!;65ax{$^kRFapN^|kK&PUBVA2TPuAlO%kR>R(0eGZ zuV{mTFB)4~W&jUU6?8~QZk>@b*k+RPVf?)DtjxAx&pg0xH)?YNVyZ2D0{vnb>0>DK z-0~4lp966Y^P+Dm06+-;*1}~nQWw$BVD{(B=5d=VA+-N^^I1*s)b(3(vY>}=(;<78 zse6VvH$!+C>d;Ldz#_7v`cyb@XklceeWk6wx_a2{4mcPt;BK-23UhuTyB3DIy`fx^ zjB&=Fk0VE}T_d&c7Pm5Bn{uEesDGM0V6Bc{djSk=={QDn5U0H?y`g59kLbQ{>ytU@ zxfJwY^quIU1zX4N(H^v3;+;d90|?UGGs_0gCD}Vxx0SSJPGW_-U0n1?039Hf;*Q~K zlJ!%WXji{|cWHf4+ThCUo5as0q@=Y`0n48*~}bmqc|j`IO6PhTxfEdOdn!TRx}Ec-Q5Vk5T$pn z1$JrYZ{M_?`9RssNL!{~m`d^k7zp9M*frVEAMz&&E)mX4GgGIUz@tv@MAi9s)8eT< z`6ctC)$J1-LJ%W-q}GqAQKH(4z-u1x3!9D{h2GntgOB^QQ1c`)gx4IXPWVx0%3c?D@3_ zc&8@5mtb3!w8{@#J^SmWy>@;EVRe5{28ke+xC6TWL+W6(dD%fs$a#7q6-qW~jY$_7 zSe_UD#n*hqo6zp(u45(T!;A$$%l;$v_(<$ zw<)(sm{?_PQWfp@e!*Lrq#8weXdgUqoo5reZ+)2t$p#ze+7?p#KvVsom7kgP;{A3{ z=V3-9S*@GI$HPQ6EhLaiMzsuFoevesY9EK*gPD%s@B^m-U)Zs%zre@5rn4w`7zF^z ziu-H;rJNfL_>x&!3%*S%w~_24bg~(|1pw|d`t3iGU1mB)O_$q0yYY$j8J7wVL0h$pgX zXgE=x8a^|BX-nHG%2Z1|Db`SA$@S=7<}VkPvX+1VM84_-w!tp*>0bepm@A8sU-+4) zhXY~e=OUnvud`nGv8AoiJM0_hKb{$Vorm##t%yY~!$n61=P~EXT!nq~WorlW`t_Ez zT?u?|aUA!7wXH6w_rV%&YTv*Ef`IGNDM>|wCG}o5ge$V}`iMV*>*DFshT~!+;xLc*GtDF;L4)!8T-C7$qXwbg z>V^I+yX`V#T>!?ii={tXkr4zYzs;K8)?>j+v2w9}>;c)9y`$34c##D!V5-rMCr?m1IelV0Y*q$z zdEX&ZE&uh$zhl0|L1kgq9kM{)SN3OVedM@}{M(O>zYG4*J`1JE)wyBn3q363gHbZ@ z{;^mMw9zlV4G}zUYyTyjmj$(14YG;h6VbUUZBM3Rf06AVArwbi2~a-Tw@9do4*U)6)W<&E~BoJC~?eHq`1q&5dh&In_R(f?-r>_t( zOZ7lCK6{55vpZ$Fj|<3o_+PlaWWL!ta}>JBL0|Ui%kpfTy!V+tFK#Ha!ow$-V&rP* z*+kwDnrcoP@G1_FVBvT)Z>OQLB6%=q^I0-Qq`8fZfA`N1C;uo4&EI}BtRAMNf77a z0y(hjIoSggC-Is=&9y-R;LD5$u%cyK!?zd`yl(A?YU=FI6&4_sAL3@gWr z1s^A@Jm9+Jhg^WDIJQ$_dlp#nQFK9K1B_4GSb=kxvSNZv5wCtrFt0NE`vy$SJ*;~S#C{}>jc3jpuFKc{bm0cY!j z5IY1XdTFl@?LZ)0YLKG#DGDA_nyx0KsxA`FC#0%ZsQR#pihgdPR#-mGv!^7r0mEkv zz+O{G!L~wt1KgvvrQuaRcE-%x#;lxj%AkY?Hok9L>5z1n$**n38bcp+WVxel7r=}S z8QlH@u0?tQrawwxK(!MX^Y#an+4gdO6EB}8^GyDtl*01)FoM=ehlV?Y1oF(D8ObuU zYfEd;5O=O!#j)Q}^BL7(jV^Fe2xYNJ_Ft=)+s0?o0*bUeA z*1B%Oi0!+3X~lw1=qs=P8*g|8FWB2OK1XqhH^CrPKhkOg?Vu=?`{r$h;q#ja88L3o zG6^UADbLv1cCLrfQ0&o+h)M*M^zUIfm8)#Y{FeC%_BDBJj}2KFVT$j?D$-nb_=h;glR^c}Uu7z@QOaq1Zv z(ekJTmKag31}LkD5+rwbx}^rbVm7u}&4WL4ND_YsL_Zr5&o3_@aXYKXy~B&lwCC%G zU~g^yCEJ?qLEN$1TO_E^Tw&UyLAKy;B|yIsQ$l9rGvX=6?$`R$f;0HCGLcQ%$H&94 za-9PQC_B#2)=95Aw>cVA@$GG14skGErfDpFrlM9&wO76Fe6}oVknjgB>KN#+~8sA;Mz;A%k1QY ztbCB~MMv8zbF!WbNZ6yXIr?C*d2x&CxOlR>J-#_<>zS=S+~RdYUO6YUv*#Hrb6*W8 z&%~Pkp#tzMpb)7duZ5#)Uu;t;OF@ksFYd@&g6r#VGM}l#d z@%<(RuQ~g+(QK5&WCeZL>LedzYH*_ByH7!Zz{H$DZ*LXlNf})$=#PP$LIkE_pfAyq z4hgA#$Vosd8!tLWBd{V4Z@`j%$_ZASj@F1h7DK*&y#>o6%u1V4;^GGx&i>G#%~(vT3ruUvgdiL|M4h^0zsJHI}ZRE zBb7NwN!b1z98qq3kOT3)_9}1eVA4{vH_`=VTgM5Wes67u8bnrU|@zadJ$y~X!YFLfO!x|?{I<{fC z#V?N1{YG{1!dIGWaPC19SO|q_%XH<>h1EouQw&Q~hqcZtEqbs7>W@`h$EZ2=5ViF^ zB@;Pt^^U9?sjO>Fwf?(Vf%1?DAYHqUV)g+XC)-lxwD>E>4&8V?s7wGuc~ zOWzmdo6JN_!`jv98u~^9!8ip=pjtIp%6Lips7e`b+sF73zB(i_#aeYIF6hKvK@Nm+d|FN2liNSBx|N*e(|gU=UgC$rJ(#sc zXh%k}*rG26@6LWQq!NK+F!kbMUnDK$nceF3X(^;hg|}?}d|+`hH8N=GNi3PNy9hrM zsvpX`1~`x%h5L>lv!Y`9+C-6y?qKz|pF=~o+tDH*U9Cv4ixIR*e96nCrS=&J&#EndLdm2bt~qu!XP_w&8? z$sS`dL&OJ7E+rFY&~=Gt*}1+QWfE8@w>F0Z5^Kgzd>R7fG?B9J3>23^T$pjLb3g>g zf8TqSHMxJKKFC}>uyk9zoiUTg8QelditrSNpYtanR;~ZNBJB}lMQo}(^Uc$%*7(a3 zr?w0NFP>M-$X)WREC( z@t({4IvoS1|E&A_X9?lI3km=KADMTkqWYUR*z5ROb$|x|2VevA*Sx0!zS6GKhQx-8 zx}DJhcYwFRRlp;tT%Qc#0o27E#9jZ0|Cbbl-R>#?{Q5Bjk^h_UGJTTfyDCXF4dANt zm}GdG=3*!5fV4+hNjo**u6H3;`Fr~#$nB)(2G?sjv{}oC-(9$^6tDCS-~lRZNYzQ} z?4?xb7IAS0Di^$S7cMdz!OrY1)BGUWG=3dH0t3S zknyhw6w9=fO=N?Ai@#Bbt^cT`ca}-Q!o_RL8Dx?yE=$Zjlm>Pe07} zsKm=t_v?5(9KcMrWA&bdfN=i#cpEHy==-NjxdPoTk@tCPi`ZH@sO9MM{K!~%qU1I6 zjL7Yu>)fU@gHy{nlCUfx8pG|RY_{&GKpU=1rOzDF;LJZzNFEeixx<-aP{B`G*5m>7KbU%6QBrHSr-mrz807SfIr`5^(I+WX0?3rozGx+xi9K1! zFqDMlom#t}D{E>NFgBi)(ixg}%#z2CHy2)(-*Y`e|G+9@j1< zx*v$s>sQF$Ne`270gE^00{?q!rsR}`FK@&1=1ANz#-4%n$WNCM`TQl7q_0?`xJmOS zpJ}!+$);{HC?(OCH(rpt65vxH3;C6d5aRF{Ps~w^nWFeLOG8DH%EYM4G*{<)3PuOc zqYGNsGuao59#Gko**P00Qhq3ix&;IT=sZrc!&X#6O8+8i?_VL?EC8|@N=hO2#!<=g zsJ5zcDyHcf$d?OGlb9#lI2ixbE@`+AL2TY(09I0eYkDWo7!E|8`hS8TA9hh?M z)oKSH#6Ude|BOw16~fbnZer!4LFaW+dub*CajibpCnn_#3Tq{Uo>9RH{Y-u~zxeD0 z7pn*2W3xOiUfaz7wb=!f2L#H#o9^`VHdj#{st~xV%!J3JxOI0!H{o_uvZOWFFh@*xR^$nL8TlNLJt11@yN9$ zq=-m>z7-qGD^@13%w%8I)L%1ek;>7JVp9VT#-_b7QIIOTimBsP7F6W_5sCJyq_Lc^ zs3$ae@L(|t(N2AFD!z^s>v7;y&k_d7!P9?TVX7X05 z{k<(WvsL}@>aaY8E|Zye{qkKPhz<5H^H7 Date: Fri, 16 Feb 2018 17:34:38 +0100 Subject: [PATCH 30/94] Some antag fixes. (#35690) * Removes misleading comment * Fixes devil ascension visible in lobby * Fixes nuke op reinforcements. * ADVANCED COPYPASTE * Missed this one. --- code/_globalvars/lists/mobs.dm | 6 +++--- code/datums/brain_damage/imaginary_friend.dm | 2 +- code/datums/brain_damage/split_personality.dm | 4 ++-- code/game/objects/items/holy_weapons.dm | 2 +- code/modules/admin/fun_balloon.dm | 2 +- code/modules/antagonists/_common/antag_datum.dm | 2 +- code/modules/antagonists/_common/antag_spawner.dm | 12 ++++++------ code/modules/antagonists/blob/blob/powers.dm | 2 +- .../clockcult/clock_effects/clock_sigils.dm | 2 +- code/modules/antagonists/cult/runes.dm | 2 +- code/modules/antagonists/devil/devil.dm | 4 ++-- code/modules/antagonists/revenant/revenant.dm | 2 +- code/modules/awaymissions/mission_code/Academy.dm | 4 ++-- code/modules/events/holiday/xmas.dm | 2 +- code/modules/events/wizard/imposter.dm | 2 +- .../mob/living/simple_animal/guardian/guardian.dm | 4 ++-- code/modules/mob/mob_helpers.dm | 2 +- code/modules/research/xenobiology/xenobiology.dm | 2 +- 18 files changed, 29 insertions(+), 29 deletions(-) diff --git a/code/_globalvars/lists/mobs.dm b/code/_globalvars/lists/mobs.dm index 29d72d603f..a3d14b26ad 100644 --- a/code/_globalvars/lists/mobs.dm +++ b/code/_globalvars/lists/mobs.dm @@ -9,13 +9,13 @@ GLOBAL_LIST_EMPTY(stealthminID) //reference list with IDs that store ckeys, //Since it didn't really belong in any other category, I'm putting this here //This is for procs to replace all the goddamn 'in world's that are chilling around the code -GLOBAL_LIST_EMPTY(player_list) //all mobs **with clients attached**. Excludes /mob/dead/new_player +GLOBAL_LIST_EMPTY(player_list) //all mobs **with clients attached**. GLOBAL_LIST_EMPTY(mob_list) //all mobs, including clientless -GLOBAL_LIST_EMPTY(mob_directory) //mob_id -> mob +GLOBAL_LIST_EMPTY(mob_directory) //mob_id -> mob GLOBAL_LIST_EMPTY(alive_mob_list) //all alive mobs, including clientless. Excludes /mob/dead/new_player GLOBAL_LIST_EMPTY(drones_list) GLOBAL_LIST_EMPTY(dead_mob_list) //all dead mobs, including clientless. Excludes /mob/dead/new_player -GLOBAL_LIST_EMPTY(joined_player_list) //all clients that have joined the game at round-start or as a latejoin. +GLOBAL_LIST_EMPTY(joined_player_list) //all clients that have joined the game at round-start or as a latejoin. GLOBAL_LIST_EMPTY(silicon_mobs) //all silicon mobs GLOBAL_LIST_EMPTY(mob_living_list) //all instances of /mob/living and subtypes GLOBAL_LIST_EMPTY(carbon_list) //all instances of /mob/living/carbon and subtypes, notably does not contain brains or simple animals diff --git a/code/datums/brain_damage/imaginary_friend.dm b/code/datums/brain_damage/imaginary_friend.dm index ea01a87506..88c7d09005 100644 --- a/code/datums/brain_damage/imaginary_friend.dm +++ b/code/datums/brain_damage/imaginary_friend.dm @@ -41,7 +41,7 @@ set waitfor = FALSE var/list/mob/dead/observer/candidates = pollCandidatesForMob("Do you want to play as [owner]'s imaginary friend?", ROLE_PAI, null, null, 75, friend) if(LAZYLEN(candidates)) - var/client/C = pick(candidates) + var/mob/dead/observer/C = pick(candidates) friend.key = C.key friend_initialized = TRUE else diff --git a/code/datums/brain_damage/split_personality.dm b/code/datums/brain_damage/split_personality.dm index 9e273f19f7..f33a69a3af 100644 --- a/code/datums/brain_damage/split_personality.dm +++ b/code/datums/brain_damage/split_personality.dm @@ -25,7 +25,7 @@ set waitfor = FALSE var/list/mob/dead/observer/candidates = pollCandidatesForMob("Do you want to play as [owner]'s split personality?", ROLE_PAI, null, null, 75, stranger_backseat) if(LAZYLEN(candidates)) - var/client/C = pick(candidates) + var/mob/dead/observer/C = pick(candidates) stranger_backseat.key = C.key log_game("[key_name(stranger_backseat)] became [key_name(owner)]'s split personality.") message_admins("[key_name_admin(stranger_backseat)] became [key_name_admin(owner)]'s split personality.") @@ -183,7 +183,7 @@ set waitfor = FALSE var/list/mob/dead/observer/candidates = pollCandidatesForMob("Do you want to play as [owner]'s brainwashed mind?", null, null, null, 75, stranger_backseat) if(LAZYLEN(candidates)) - var/client/C = pick(candidates) + var/mob/dead/observer/C = pick(candidates) stranger_backseat.key = C.key else qdel(src) diff --git a/code/game/objects/items/holy_weapons.dm b/code/game/objects/items/holy_weapons.dm index 4368797f06..88e2b40ad6 100644 --- a/code/game/objects/items/holy_weapons.dm +++ b/code/game/objects/items/holy_weapons.dm @@ -243,7 +243,7 @@ var/list/mob/dead/observer/candidates = pollGhostCandidates("Do you want to play as the spirit of [user.real_name]'s blade?", ROLE_PAI, null, FALSE, 100, POLL_IGNORE_POSSESSED_BLADE) if(LAZYLEN(candidates)) - var/client/C = pick(candidates) + var/mob/dead/observer/C = pick(candidates) var/mob/living/simple_animal/shade/S = new(src) S.real_name = name S.name = name diff --git a/code/modules/admin/fun_balloon.dm b/code/modules/admin/fun_balloon.dm index 6508953694..c41fa4c346 100644 --- a/code/modules/admin/fun_balloon.dm +++ b/code/modules/admin/fun_balloon.dm @@ -53,7 +53,7 @@ var/question = "Would you like to be [group_name]?" var/list/candidates = pollCandidatesForMobs(question, ROLE_PAI, null, FALSE, 100, bodies) while(LAZYLEN(candidates) && LAZYLEN(bodies)) - var/client/C = pick_n_take(candidates) + var/mob/dead/observer/C = pick_n_take(candidates) var/mob/living/body = pick_n_take(bodies) to_chat(body, "Your mob has been taken over by a ghost!") diff --git a/code/modules/antagonists/_common/antag_datum.dm b/code/modules/antagonists/_common/antag_datum.dm index 48e7cf896f..f9582bdce8 100644 --- a/code/modules/antagonists/_common/antag_datum.dm +++ b/code/modules/antagonists/_common/antag_datum.dm @@ -80,7 +80,7 @@ GLOBAL_LIST_EMPTY(antagonists) var/list/mob/dead/observer/candidates = pollCandidatesForMob("Do you want to play as a [name]?", "[name]", null, job_rank, 50, owner.current) if(LAZYLEN(candidates)) - var/client/C = pick(candidates) + var/mob/dead/observer/C = pick(candidates) to_chat(owner, "Your mob has been taken over by a ghost! Appeal your job ban if you want to avoid this in the future!") message_admins("[key_name_admin(C)] has taken control of ([key_name_admin(owner.current)]) to replace a jobbaned player.") owner.current.ghostize(0) diff --git a/code/modules/antagonists/_common/antag_spawner.dm b/code/modules/antagonists/_common/antag_spawner.dm index 5695a8c480..6c723e96ec 100644 --- a/code/modules/antagonists/_common/antag_spawner.dm +++ b/code/modules/antagonists/_common/antag_spawner.dm @@ -62,8 +62,8 @@ to_chat(H, "You already used this contract!") return used = TRUE - var/client/C = pick(candidates) - spawn_antag(C, get_turf(src), href_list["school"],H.mind) + var/mob/dead/observer/C = pick(candidates) + spawn_antag(C.client, get_turf(src), href_list["school"],H.mind) else to_chat(H, "Unable to reach your apprentice! You can either attack the spellbook with the contract to refund your points, or wait and try again later.") @@ -124,8 +124,8 @@ if(!(check_usability(user))) return used = TRUE - var/client/C = pick(nuke_candidates) - spawn_antag(C, get_turf(src), "syndieborg", user.mind) + var/mob/dead/observer/G = pick(nuke_candidates) + spawn_antag(G.client, get_turf(src), "syndieborg", user.mind) do_sparks(4, TRUE, src) qdel(src) else @@ -218,8 +218,8 @@ if(used) return used = TRUE - var/client/C = pick(candidates) - spawn_antag(C, get_turf(src), initial(demon_type.name),user.mind) + var/mob/dead/observer/C = pick(candidates) + spawn_antag(C.client, get_turf(src), initial(demon_type.name),user.mind) to_chat(user, shatter_msg) to_chat(user, veil_msg) playsound(user.loc, 'sound/effects/glassbr1.ogg', 100, 1) diff --git a/code/modules/antagonists/blob/blob/powers.dm b/code/modules/antagonists/blob/blob/powers.dm index 131f3c14cc..9e915ee0fa 100644 --- a/code/modules/antagonists/blob/blob/powers.dm +++ b/code/modules/antagonists/blob/blob/powers.dm @@ -171,7 +171,7 @@ blobber.update_icons() blobber.adjustHealth(blobber.maxHealth * 0.5) blob_mobs += blobber - var/client/C = pick(candidates) + var/mob/dead/observer/C = pick(candidates) blobber.key = C.key SEND_SOUND(blobber, sound('sound/effects/blobattack.ogg')) SEND_SOUND(blobber, sound('sound/effects/attackblob.ogg')) diff --git a/code/modules/antagonists/clockcult/clock_effects/clock_sigils.dm b/code/modules/antagonists/clockcult/clock_effects/clock_sigils.dm index 2eb3315e03..a4eed086c8 100644 --- a/code/modules/antagonists/clockcult/clock_effects/clock_sigils.dm +++ b/code/modules/antagonists/clockcult/clock_effects/clock_sigils.dm @@ -338,7 +338,7 @@ set waitfor = FALSE var/list/mob/dead/observer/candidates = pollCandidatesForMob("Do you want to play as a [L.name], an inactive clock cultist?", ROLE_SERVANT_OF_RATVAR, null, ROLE_SERVANT_OF_RATVAR, 50, L) if(LAZYLEN(candidates)) - var/client/C = pick(candidates) + var/mob/dead/observer/C = pick(candidates) to_chat(L, "Your physical form has been taken over by another soul due to your inactivity! Ahelp if you wish to regain your form!") message_admins("[key_name_admin(C)] has taken control of ([key_name_admin(L)]) to replace an inactive clock cultist.") L.ghostize(0) diff --git a/code/modules/antagonists/cult/runes.dm b/code/modules/antagonists/cult/runes.dm index 4c95b0a408..030a59b14b 100644 --- a/code/modules/antagonists/cult/runes.dm +++ b/code/modules/antagonists/cult/runes.dm @@ -575,7 +575,7 @@ structure_check() searches for nearby cultist structures required for the invoca set waitfor = FALSE var/list/mob/dead/observer/candidates = pollCandidatesForMob("Do you want to play as a [mob_to_revive.name], an inactive blood cultist?", ROLE_CULTIST, null, ROLE_CULTIST, 50, mob_to_revive) if(LAZYLEN(candidates)) - var/client/C = pick(candidates) + var/mob/dead/observer/C = pick(candidates) to_chat(mob_to_revive.mind, "Your physical form has been taken over by another soul due to your inactivity! Ahelp if you wish to regain your form.") message_admins("[key_name_admin(C)] has taken control of ([key_name_admin(mob_to_revive)]) to replace an AFK player.") mob_to_revive.ghostize(0) diff --git a/code/modules/antagonists/devil/devil.dm b/code/modules/antagonists/devil/devil.dm index 858b2d1ef1..0d9032bcb6 100644 --- a/code/modules/antagonists/devil/devil.dm +++ b/code/modules/antagonists/devil/devil.dm @@ -300,8 +300,8 @@ GLOBAL_LIST_INIT(devil_suffix, list(" the Red", " the Soulless", " the Master", sleep(1) if(!D) return - to_chat(world, "\"SLOTH, WRATH, GLUTTONY, ACEDIA, ENVY, GREED, PRIDE! FIRES OF HELL AWAKEN!!\"") - SEND_SOUND(world, sound('sound/hallucinations/veryfar_noise.ogg')) + send_to_playing_players("\"SLOTH, WRATH, GLUTTONY, ACEDIA, ENVY, GREED, PRIDE! FIRES OF HELL AWAKEN!!\"") + sound_to_playing_players('sound/hallucinations/veryfar_noise.ogg') give_appropriate_spells() D.convert_to_archdevil() if(istype(D.loc, /obj/effect/dummy/slaughter/)) diff --git a/code/modules/antagonists/revenant/revenant.dm b/code/modules/antagonists/revenant/revenant.dm index a578b06042..1d694e4033 100644 --- a/code/modules/antagonists/revenant/revenant.dm +++ b/code/modules/antagonists/revenant/revenant.dm @@ -382,7 +382,7 @@ inert = TRUE visible_message("[src] settles down and seems lifeless.") return - var/client/C = pick(candidates) + var/mob/dead/observer/C = pick(candidates) key_of_revenant = C.key if(!key_of_revenant) qdel(revenant) diff --git a/code/modules/awaymissions/mission_code/Academy.dm b/code/modules/awaymissions/mission_code/Academy.dm index 118bc9b5df..bfde6397b7 100644 --- a/code/modules/awaymissions/mission_code/Academy.dm +++ b/code/modules/awaymissions/mission_code/Academy.dm @@ -130,7 +130,7 @@ var/list/mob/dead/observer/candidates = pollCandidatesForMob("Do you want to play as Wizard Academy Defender?", ROLE_WIZARD, null, ROLE_WIZARD, 50, current_wizard) if(LAZYLEN(candidates)) - var/client/C = pick(candidates) + var/mob/dead/observer/C = pick(candidates) message_admins("[key_name_admin(C)] was spawned as Wizard Academy Defender") current_wizard.ghostize() // on the off chance braindead defender gets back in current_wizard.key = C.key @@ -272,7 +272,7 @@ var/list/mob/dead/observer/candidates = pollCandidatesForMob("Do you want to play as [user.real_name] Servant?", ROLE_WIZARD, null, ROLE_WIZARD, 50, H) if(LAZYLEN(candidates)) - var/client/C = pick(candidates) + var/mob/dead/observer/C = pick(candidates) message_admins("[key_name_admin(C)] was spawned as Dice Servant") H.key = C.key diff --git a/code/modules/events/holiday/xmas.dm b/code/modules/events/holiday/xmas.dm index 8986c6a44b..7a68181f0c 100644 --- a/code/modules/events/holiday/xmas.dm +++ b/code/modules/events/holiday/xmas.dm @@ -75,7 +75,7 @@ /datum/round_event/santa/start() var/list/candidates = pollGhostCandidates("Santa is coming to town! Do you want to be Santa?", poll_time=150) if(LAZYLEN(candidates)) - var/client/C = pick(candidates) + var/mob/dead/observer/C = pick(candidates) santa = new /mob/living/carbon/human(pick(GLOB.blobstart)) santa.key = C.key diff --git a/code/modules/events/wizard/imposter.dm b/code/modules/events/wizard/imposter.dm index 0ab0e6c2e8..0ad98b97eb 100644 --- a/code/modules/events/wizard/imposter.dm +++ b/code/modules/events/wizard/imposter.dm @@ -13,7 +13,7 @@ var/list/candidates = pollGhostCandidates("Would you like to be an imposter wizard?", ROLE_WIZARD) if(!candidates) return //Sad Trombone - var/client/C = pick(candidates) + var/mob/dead/observer/C = pick(candidates) new /obj/effect/particle_effect/smoke(W.loc) diff --git a/code/modules/mob/living/simple_animal/guardian/guardian.dm b/code/modules/mob/living/simple_animal/guardian/guardian.dm index 24b61424e1..ddbbf4c30c 100644 --- a/code/modules/mob/living/simple_animal/guardian/guardian.dm +++ b/code/modules/mob/living/simple_animal/guardian/guardian.dm @@ -420,7 +420,7 @@ GLOBAL_LIST_EMPTY(parasites) //all currently existing/living guardians to_chat(src, "You attempt to reset [G.real_name]'s personality...") var/list/mob/dead/observer/candidates = pollGhostCandidates("Do you want to play as [src.real_name]'s [G.real_name]?", ROLE_PAI, null, FALSE, 100) if(LAZYLEN(candidates)) - var/client/C = pick(candidates) + var/mob/dead/observer/C = pick(candidates) to_chat(G, "Your user reset you, and your body was taken over by a ghost. Looks like they weren't happy with your performance.") to_chat(src, "Your [G.real_name] has been successfully reset.") message_admins("[key_name_admin(C)] has taken control of ([key_name_admin(G)])") @@ -495,7 +495,7 @@ GLOBAL_LIST_EMPTY(parasites) //all currently existing/living guardians var/list/mob/dead/observer/candidates = pollGhostCandidates("Do you want to play as the [mob_name] of [user.real_name]?", ROLE_PAI, null, FALSE, 100, POLL_IGNORE_HOLOPARASITE) if(LAZYLEN(candidates)) - var/client/C = pick(candidates) + var/mob/dead/observer/C = pick(candidates) spawn_guardian(user, C.key) else to_chat(user, "[failure_message]") diff --git a/code/modules/mob/mob_helpers.dm b/code/modules/mob/mob_helpers.dm index dbe284b928..989c8278a5 100644 --- a/code/modules/mob/mob_helpers.dm +++ b/code/modules/mob/mob_helpers.dm @@ -445,7 +445,7 @@ It's fairly easy to fix if dealing with single letters but not so much with comp var/list/mob/dead/observer/candidates = pollCandidatesForMob(poll_message, ROLE_PAI, null, FALSE, 100, M) if(LAZYLEN(candidates)) - var/client/C = pick(candidates) + var/mob/dead/observer/C = pick(candidates) to_chat(M, "Your mob has been taken over by a ghost!") message_admins("[key_name_admin(C)] has taken control of ([key_name_admin(M)])") M.ghostize(0) diff --git a/code/modules/research/xenobiology/xenobiology.dm b/code/modules/research/xenobiology/xenobiology.dm index f4b211ff41..e8937b5dae 100644 --- a/code/modules/research/xenobiology/xenobiology.dm +++ b/code/modules/research/xenobiology/xenobiology.dm @@ -593,7 +593,7 @@ var/list/candidates = pollCandidatesForMob("Do you want to play as [SM.name]?", ROLE_ALIEN, null, ROLE_ALIEN, 50, SM, POLL_IGNORE_SENTIENCE_POTION) // see poll_ignore.dm if(LAZYLEN(candidates)) - var/client/C = pick(candidates) + var/mob/dead/observer/C = pick(candidates) SM.key = C.key SM.mind.enslave_mind_to_creator(user) SM.sentience_act() From 55f9129141aace461be8476f2b354042c8815106 Mon Sep 17 00:00:00 2001 From: MetroidLover <31149809+Metroidlover@users.noreply.github.com> Date: Fri, 16 Feb 2018 08:38:15 -0800 Subject: [PATCH 32/94] Space Ninja smoke bomb refill (#35689) * Ninja Smoke Bomb refill Adds Ninja smoke bomb refill ability. * Change a spaghetti flaw. * I fluffed the indentation again. :P --- code/modules/ninja/suit/suit.dm | 3 ++- code/modules/ninja/suit/suit_attackby.dm | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/code/modules/ninja/suit/suit.dm b/code/modules/ninja/suit/suit.dm index 4e7ad477e2..377020e33a 100644 --- a/code/modules/ninja/suit/suit.dm +++ b/code/modules/ninja/suit/suit.dm @@ -45,13 +45,14 @@ Contents: var/s_delay = 40//How fast the suit does certain things, lower is faster. Can be overridden in specific procs. Also determines adverse probability. var/a_transfer = 20//How much radium is used per adrenaline boost. var/a_maxamount = 7//Maximum number of adrenaline boosts. + var/s_maxamount = 20//Maximum number of smoke bombs. //Support function variables. var/s_active = 0//Stealth off. var/s_busy = FALSE//Is the suit busy with a process? Like AI hacking. Used for safety functions. //Ability function variables. - var/s_bombs = 10//Number of starting ninja smoke bombs. + var/s_bombs = 10//Number of smoke bombs. var/a_boost = 3//Number of adrenaline boosters. diff --git a/code/modules/ninja/suit/suit_attackby.dm b/code/modules/ninja/suit/suit_attackby.dm index d185d596a3..0496a2f1c3 100644 --- a/code/modules/ninja/suit/suit_attackby.dm +++ b/code/modules/ninja/suit/suit_attackby.dm @@ -10,6 +10,12 @@ a_boost++; to_chat(U, "There are now [a_boost] adrenaline boosts remaining.") return + if(I.reagents.has_reagent("smoke_powder", a_transfer) && s_bombs < s_maxamount) + I.reagents.remove_reagent("smoke_powder", a_transfer) + s_bombs++; + to_chat(U, "There are now [s_bombs] smoke bombs remaining.") + return + else if(istype(I, /obj/item/stock_parts/cell)) var/obj/item/stock_parts/cell/CELL = I From b6368d5a8e75e3b356d811c9dbf7510bafa43653 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 16 Feb 2018 12:10:20 -0600 Subject: [PATCH 34/94] Automatic changelog generation for PR #5532 [ci skip] --- html/changelogs/AutoChangeLog-pr-5532.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5532.yml diff --git a/html/changelogs/AutoChangeLog-pr-5532.yml b/html/changelogs/AutoChangeLog-pr-5532.yml new file mode 100644 index 0000000000..ef599784de --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5532.yml @@ -0,0 +1,4 @@ +author: "MetroidLover" +delete-after: True +changes: + - rscadd: "Added the ability to gain smoke bomb charges by attacking the initiated ninja suit with a beaker containing smoke powder" From a5650cccc4bb59e12ecd896f6c47856dc785f5c5 Mon Sep 17 00:00:00 2001 From: Leo Date: Fri, 16 Feb 2018 16:17:51 -0200 Subject: [PATCH 35/94] All medal methods are handled on SSmedals as opposed to global procs and also have proper defines, killing with a crusher grants special medals. --- code/__DEFINES/medal.dm | 29 ++++ code/__DEFINES/misc.dm | 14 -- .../configuration/entries/comms.dm | 2 - code/controllers/subsystem/medals.dm | 87 ++++++++++ code/game/gamemodes/meteor/meteors.dm | 6 +- code/game/machinery/computer/arcade.dm | 5 +- code/modules/admin/verbs/debug.dm | 9 +- .../modules/awaymissions/super_secret_room.dm | 7 +- .../hostile/megafauna/blood_drunk_miner.dm | 4 +- .../hostile/megafauna/bubblegum.dm | 4 +- .../hostile/megafauna/colossus.dm | 4 +- .../hostile/megafauna/{dragon.dm => drake.dm} | 5 +- .../hostile/megafauna/hierophant.dm | 10 +- .../simple_animal/hostile/megafauna/legion.dm | 3 +- .../hostile/megafauna/megafauna.dm | 157 +++--------------- .../hostile/mining_mobs/necropolis_tendril.dm | 16 +- tgstation.dme | 6 + 17 files changed, 175 insertions(+), 193 deletions(-) create mode 100644 code/__DEFINES/medal.dm create mode 100644 code/controllers/subsystem/medals.dm rename code/modules/mob/living/simple_animal/hostile/megafauna/{dragon.dm => drake.dm} (99%) diff --git a/code/__DEFINES/medal.dm b/code/__DEFINES/medal.dm new file mode 100644 index 0000000000..5781e14f57 --- /dev/null +++ b/code/__DEFINES/medal.dm @@ -0,0 +1,29 @@ +// Medal names +#define BOSS_KILL_MEDAL "Killer" +#define ALL_KILL_MEDAL "Exterminator" //Killing all of x type +#define BOSS_KILL_MEDAL_CRUSHER "Crusher" + +//Defines for boss medals +#define BOSS_MEDAL_MINER "Blood-drunk Miner" +#define BOSS_MEDAL_BUBBLEGUM "Bubblegum" +#define BOSS_MEDAL_COLOSSUS "Colossus" +#define BOSS_MEDAL_DRAKE "Drake" +#define BOSS_MEDAL_HIEROPHANT "Hierophant" +#define BOSS_MEDAL_LEGION "Legion" +#define BOSS_MEDAL_SWARMER "Swarmer Beacon" +#define BOSS_MEDAL_TENDRIL "Tendril" + +// Score names +#define HIEROPHANT_SCORE "Hierophants Killed" +#define BOSS_SCORE "Bosses Killed" +#define BUBBLEGUM_SCORE "Bubblegum Killed" +#define COLOSSUS_SCORE "Colossus Killed" +#define DRAKE_SCORE "Drakes Killed" +#define LEGION_SCORE "Legion Killed" +#define SWARMER_BEACON_SCORE "Swarmer Beacons Killed" +#define TENDRIL_CLEAR_SCORE "Tendrils Killed" + +//Misc medals +#define MEDAL_METEOR "Your Life Before Your Eyes" +#define MEDAL_PULSE "Jackpot" +#define MEDAL_TIMEWASTE "Overextended The Joke" \ No newline at end of file diff --git a/code/__DEFINES/misc.dm b/code/__DEFINES/misc.dm index a75b7dd3c0..bee1e19a5b 100644 --- a/code/__DEFINES/misc.dm +++ b/code/__DEFINES/misc.dm @@ -378,20 +378,6 @@ GLOBAL_LIST_INIT(ghost_others_options, list(GHOST_OTHERS_SIMPLE, GHOST_OTHERS_DE #define INCREMENT_TALLY(L, stat) if(L[stat]){L[stat]++}else{L[stat] = 1} -// Medal names -#define BOSS_KILL_MEDAL "Killer" -#define ALL_KILL_MEDAL "Exterminator" //Killing all of x type - -// Score names -#define LEGION_SCORE "Legion Killed" -#define COLOSSUS_SCORE "Colossus Killed" -#define BUBBLEGUM_SCORE "Bubblegum Killed" -#define DRAKE_SCORE "Drakes Killed" -#define BIRD_SCORE "Hierophants Killed" -#define SWARMER_BEACON_SCORE "Swarmer Beacons Killed" -#define BOSS_SCORE "Bosses Killed" -#define TENDRIL_CLEAR_SCORE "Tendrils Killed" - //TODO Move to a pref #define STATION_GOAL_BUDGET 1 diff --git a/code/controllers/configuration/entries/comms.dm b/code/controllers/configuration/entries/comms.dm index 289691caad..576e73faaa 100644 --- a/code/controllers/configuration/entries/comms.dm +++ b/code/controllers/configuration/entries/comms.dm @@ -20,8 +20,6 @@ /datum/config_entry/string/cross_comms_name -GLOBAL_VAR_INIT(medals_enabled, TRUE) //will be auto set to false if the game fails contacting the medal hub to prevent unneeded calls. - /datum/config_entry/string/medal_hub_address /datum/config_entry/string/medal_hub_password diff --git a/code/controllers/subsystem/medals.dm b/code/controllers/subsystem/medals.dm new file mode 100644 index 0000000000..21366978f6 --- /dev/null +++ b/code/controllers/subsystem/medals.dm @@ -0,0 +1,87 @@ +SUBSYSTEM_DEF(medals) + name = "Medals" + flags = SS_NO_FIRE + var/hub_enabled = FALSE + +/datum/controller/subsystem/medals/Initialize(timeofday) + if(CONFIG_GET(string/medal_hub_address) && CONFIG_GET(string/medal_hub_password)) + hub_enabled = TRUE + ..() + +/datum/controller/subsystem/medals/proc/UnlockMedal(medal, client/player) + set waitfor = FALSE + if(!medal || !hub_enabled) + return + if(isnull(world.SetMedal(medal, player, CONFIG_GET(string/medal_hub_address), CONFIG_GET(string/medal_hub_password)))) + hub_enabled = FALSE + log_game("MEDAL ERROR: Could not contact hub to award medal:[medal] player:[player.ckey]") + message_admins("Error! Failed to contact hub to award [medal] medal to [player.ckey]!") + return + to_chat(player, "Achievement unlocked: [medal]!") + + +/datum/controller/subsystem/medals/proc/SetScore(score, client/player, increment, force) + set waitfor = FALSE + if(!score || !hub_enabled) + return + + var/list/oldscore = GetScore(score, player, TRUE) + if(increment) + if(!oldscore[score]) + oldscore[score] = 1 + else + oldscore[score] = (text2num(oldscore[score]) + 1) + else + oldscore[score] = force + + var/newscoreparam = list2params(oldscore) + + if(isnull(world.SetScores(player.ckey, newscoreparam, CONFIG_GET(string/medal_hub_address), CONFIG_GET(string/medal_hub_password)))) + hub_enabled = FALSE + log_game("SCORE ERROR: Could not contact hub to set score. Score:[score] player:[player.ckey]") + message_admins("Error! Failed to contact hub to set [score] score for [player.ckey]!") + +/datum/controller/subsystem/medals/proc/GetScore(score, client/player, returnlist) + if(!score || !hub_enabled) + return + + var/scoreget = world.GetScores(player.ckey, score, CONFIG_GET(string/medal_hub_address), CONFIG_GET(string/medal_hub_password)) + if(isnull(scoreget)) + hub_enabled = FALSE + log_game("SCORE ERROR: Could not contact hub to get score. Score:[score] player:[player.ckey]") + message_admins("Error! Failed to contact hub to get score: [score] for [player.ckey]!") + return + . = params2list(scoreget) + if(!returnlist) + return .[score] + +/datum/controller/subsystem/medals/proc/CheckMedal(medal, client/player) + if(!medal || !hub_enabled) + return + + if(isnull(world.GetMedal(medal, player, CONFIG_GET(string/medal_hub_address), CONFIG_GET(string/medal_hub_password)))) + hub_enabled = FALSE + log_game("MEDAL ERROR: Could not contact hub to get medal:[medal] player: [player.ckey]") + message_admins("Error! Failed to contact hub to get [medal] medal for [player.ckey]!") + return + to_chat(player, "[medal] is unlocked") + +/datum/controller/subsystem/medals/proc/LockMedal(medal, client/player) + if(!player || !medal || !hub_enabled) + return + var/result = world.ClearMedal(medal, player, CONFIG_GET(string/medal_hub_address), CONFIG_GET(string/medal_hub_password)) + switch(result) + if(null) + hub_enabled = FALSE + log_game("MEDAL ERROR: Could not contact hub to clear medal:[medal] player:[player.ckey]") + message_admins("Error! Failed to contact hub to clear [medal] medal for [player.ckey]!") + if(TRUE) + message_admins("Medal: [medal] removed for [player.ckey]") + if(FALSE) + message_admins("Medal: [medal] was not found for [player.ckey]. Unable to clear.") + + +/datum/controller/subsystem/medals/proc/ClearScore(client/player) + if(isnull(world.SetScores(player.ckey, "", CONFIG_GET(string/medal_hub_address), CONFIG_GET(string/medal_hub_password)))) + log_game("MEDAL ERROR: Could not contact hub to clear scores for [player.ckey]!") + message_admins("Error! Failed to contact hub to clear scores for [player.ckey]!") \ No newline at end of file diff --git a/code/game/gamemodes/meteor/meteors.dm b/code/game/gamemodes/meteor/meteors.dm index c717b815e9..2326216eff 100644 --- a/code/game/gamemodes/meteor/meteors.dm +++ b/code/game/gamemodes/meteor/meteors.dm @@ -164,15 +164,11 @@ GLOBAL_LIST_INIT(meteorsC, list(/obj/effect/meteor/dust)) //for space dust event /obj/effect/meteor/ex_act() return -#define METEOR_MEDAL "Your Life Before Your Eyes" - /obj/effect/meteor/examine(mob/user) if(!admin_spawned && isliving(user)) - UnlockMedal(METEOR_MEDAL,user.client) + SSmedals.UnlockMedal(MEDAL_METEOR, user.client) ..() -#undef METEOR_MEDAL - /obj/effect/meteor/attackby(obj/item/I, mob/user, params) if(I.tool_behaviour == TOOL_MINING) make_debris() diff --git a/code/game/machinery/computer/arcade.dm b/code/game/machinery/computer/arcade.dm index 17fea3cbfb..90dc4f4f45 100644 --- a/code/game/machinery/computer/arcade.dm +++ b/code/game/machinery/computer/arcade.dm @@ -67,12 +67,10 @@ return INITIALIZE_HINT_QDEL Reset() -#define PULSE_MEDAL "Jackpot" - /obj/machinery/computer/arcade/proc/prizevend() if(prob(0.0001)) //1 in a million new /obj/item/gun/energy/pulse/prize(src) - UnlockMedal(PULSE_MEDAL,usr.client) + SSmedals.UnlockMedal(MEDAL_PULSE, usr.client) if(!contents.len) var/prizeselect = pickweight(prizes) @@ -82,7 +80,6 @@ visible_message("[src] dispenses [prize]!", "You hear a chime and a clunk.") prize.forceMove(get_turf(src)) -#undef PULSE_MEDAL /obj/machinery/computer/arcade/emp_act(severity) ..(severity) diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index e038f1ca38..62530da255 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -923,14 +923,15 @@ GLOBAL_PROTECT(AdminProcCallSpamPrevention) set category = "Debug" set name = "Toggle Medal Disable" set desc = "Toggles the safety lock on trying to contact the medal hub." - if(!holder) + + if(!check_rights(R_DEBUG)) return - GLOB.medals_enabled = !GLOB.medals_enabled + SSmedals.hub_enabled = !SSmedals.hub_enabled - message_admins("[key_name_admin(src)] [GLOB.medals_enabled ? "disabled" : "enabled"] the medal hub lockout.") + message_admins("[key_name_admin(src)] [SSmedals.hub_enabled ? "disabled" : "enabled"] the medal hub lockout.") SSblackbox.record_feedback("tally", "admin_verb", 1, "Toggle Medal Disable") // If... - log_admin("[key_name(src)] [GLOB.medals_enabled ? "disabled" : "enabled"] the medal hub lockout.") + log_admin("[key_name(src)] [SSmedals.hub_enabled ? "disabled" : "enabled"] the medal hub lockout.") /client/proc/view_runtimes() set category = "Debug" diff --git a/code/modules/awaymissions/super_secret_room.dm b/code/modules/awaymissions/super_secret_room.dm index 2569f0ca65..65abae44c5 100644 --- a/code/modules/awaymissions/super_secret_room.dm +++ b/code/modules/awaymissions/super_secret_room.dm @@ -17,8 +17,6 @@ var/list/json = json_decode(file2text(json_file)) shenanigans = json["phrases"] -#define TIMEWASTE_MEDAL "Overextended The Joke" - /obj/structure/speaking_tile/interact(mob/user) if(!isliving(user) || speaking) return @@ -81,16 +79,15 @@ if(1000) SpeakPeace(list("The ends exists somewhere beyond meaningful milestones.", "There will be no more messages until then.", "You disgust me.")) if(5643) - UnlockMedal(TIMEWASTE_MEDAL,user.client) + SSmedals.UnlockMedal(MEDAL_TIMEWASTE, user.client) var/obj/item/reagent_containers/food/drinks/trophy/gold_cup/never_ends = new(get_turf(user)) never_ends.name = "Overextending The Joke: First Place" never_ends.desc = "And so we are left alone with our regrets." else y += 2 - speaking = FALSE times_spoken_to++ -#undef TIMEWASTE_MEDAL + /obj/structure/speaking_tile/proc/SpeakPeace(list/statements) for(var/i in 1 to statements.len) say("[statements[i]]") diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/blood_drunk_miner.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/blood_drunk_miner.dm index 0e67921f3d..8e285c0b4c 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/blood_drunk_miner.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/blood_drunk_miner.dm @@ -1,5 +1,5 @@ #define MINER_DASH_RANGE 4 -#define MEDAL_PREFIX "Blood-drunk Miner" + /* BLOOD-DRUNK MINER @@ -43,7 +43,7 @@ Difficulty: Medium wander = FALSE del_on_death = TRUE blood_volume = BLOOD_VOLUME_NORMAL - medal_type = MEDAL_PREFIX + medal_type = BOSS_MEDAL_MINER var/obj/item/melee/transforming/cleaving_saw/miner/miner_saw var/time_until_next_transform = 0 var/dashing = FALSE diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm index 62b66464eb..e0e7efd11b 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm @@ -1,5 +1,3 @@ -#define MEDAL_PREFIX "Bubblegum" - /* BUBBLEGUM @@ -48,7 +46,7 @@ Difficulty: Hard loot = list(/obj/structure/closet/crate/necropolis/bubblegum) blood_volume = BLOOD_VOLUME_MAXIMUM //BLEED FOR ME var/charging = FALSE - medal_type = MEDAL_PREFIX + medal_type = BOSS_MEDAL_BUBBLEGUM score_type = BUBBLEGUM_SCORE deathmessage = "sinks into a pool of blood, fleeing the battle. You've won, for now... " death_sound = 'sound/magic/enter_blood.ogg' diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/colossus.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/colossus.dm index 0842329483..1cf031b0cc 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/colossus.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/colossus.dm @@ -1,5 +1,3 @@ - -#define MEDAL_PREFIX "Colossus" /* COLOSSUS @@ -44,7 +42,7 @@ Difficulty: Very Hard ranged = 1 pixel_x = -32 del_on_death = 1 - medal_type = MEDAL_PREFIX + medal_type = BOSS_MEDAL_COLOSSUS score_type = COLOSSUS_SCORE crusher_loot = list(/obj/structure/closet/crate/necropolis/colossus/crusher) loot = list(/obj/structure/closet/crate/necropolis/colossus) diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/dragon.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/drake.dm similarity index 99% rename from code/modules/mob/living/simple_animal/hostile/megafauna/dragon.dm rename to code/modules/mob/living/simple_animal/hostile/megafauna/drake.dm index 3efb3e2885..9b8035e790 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/dragon.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/drake.dm @@ -1,10 +1,9 @@ -#define MEDAL_PREFIX "Drake" - #define DRAKE_SWOOP_HEIGHT 270 //how high up drakes go, in pixels #define DRAKE_SWOOP_DIRECTION_CHANGE_RANGE 5 //the range our x has to be within to not change the direction we slam from #define SWOOP_DAMAGEABLE 1 #define SWOOP_INVULNERABLE 2 + /* ASH DRAKE @@ -57,7 +56,7 @@ Difficulty: Medium butcher_results = list(/obj/item/stack/ore/diamond = 5, /obj/item/stack/sheet/sinew = 5, /obj/item/stack/sheet/animalhide/ashdrake = 10, /obj/item/stack/sheet/bone = 30) var/swooping = NONE var/swoop_cooldown = 0 - medal_type = MEDAL_PREFIX + medal_type = BOSS_MEDAL_DRAKE score_type = DRAKE_SCORE deathmessage = "collapses into a pile of bones, its flesh sloughing away." death_sound = 'sound/magic/demon_dies.ogg' diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm index 8dc1780e5e..142883fa02 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm @@ -1,4 +1,3 @@ -#define MEDAL_PREFIX "Hierophant" /* The Hierophant @@ -59,6 +58,11 @@ Difficulty: Hard loot = list(/obj/item/hierophant_club) crusher_loot = list(/obj/item/hierophant_club) wander = FALSE + medal_type = BOSS_MEDAL_HIEROPHANT + score_type = HIEROPHANT_SCORE + del_on_death = TRUE + death_sound = 'sound/magic/repulse.ogg' + var/burst_range = 3 //range on burst aoe var/beam_range = 5 //range on cross blast beams var/chaser_speed = 3 //how fast chasers are currently @@ -71,10 +75,6 @@ Difficulty: Hard var/did_reset = TRUE //if we timed out, returned to our beacon, and healed some var/list/kill_phrases = list("Wsyvgi sj irivkc xettih. Vitemvmrk...", "Irivkc wsyvgi jsyrh. Vitemvmrk...", "Jyip jsyrh. Egxmzexmrk vitemv gcgpiw...", "Kix fiex. Liepmrk...") var/list/target_phrases = list("Xevkix psgexih.", "Iriqc jsyrh.", "Eguymvih xevkix.") - medal_type = MEDAL_PREFIX - score_type = BIRD_SCORE - del_on_death = TRUE - death_sound = 'sound/magic/repulse.ogg' /mob/living/simple_animal/hostile/megafauna/hierophant/Initialize() . = ..() diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/legion.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/legion.dm index afb46a489c..eba26725a6 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/legion.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/legion.dm @@ -1,4 +1,3 @@ -#define MEDAL_PREFIX "Legion" /* LEGION @@ -40,7 +39,7 @@ Difficulty: Medium ranged_cooldown_time = 20 var/size = 5 var/charging = 0 - medal_type = MEDAL_PREFIX + medal_type = BOSS_MEDAL_LEGION score_type = LEGION_SCORE pixel_y = -90 pixel_x = -75 diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/megafauna.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/megafauna.dm index e34fc76467..5e6211da09 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/megafauna.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/megafauna.dm @@ -1,6 +1,3 @@ -#define MEDAL_PREFIX "Boss" - - /mob/living/simple_animal/hostile/megafauna name = "boss of this gym" desc = "Attack the weak point for massive damage." @@ -23,6 +20,10 @@ maxbodytemp = INFINITY aggro_vision_range = 18 idle_vision_range = 5 + anchored = TRUE + mob_size = MOB_SIZE_LARGE + layer = LARGE_MOB_LAYER //Looks weird with them slipping under mineral walls and cameras and shit otherwise + mouse_opacity = MOUSE_OPACITY_OPAQUE // Easier to click on in melee, they're giant targets anyway environment_target_typecache = list( /obj/machinery/door/window, /obj/structure/window, @@ -35,16 +36,12 @@ /obj/machinery/field, /obj/machinery/power/emitter) var/list/crusher_loot - var/medal_type = MEDAL_PREFIX + var/medal_type var/score_type = BOSS_SCORE var/elimination = 0 var/anger_modifier = 0 var/obj/item/device/gps/internal var/recovery_time = 0 - anchored = TRUE - mob_size = MOB_SIZE_LARGE - layer = LARGE_MOB_LAYER //Looks weird with them slipping under mineral walls and cameras and shit otherwise - mouse_opacity = MOUSE_OPACITY_OPAQUE // Easier to click on in melee, they're giant targets anyway /mob/living/simple_animal/hostile/megafauna/Initialize(mapload) . = ..() @@ -59,13 +56,17 @@ return else var/datum/status_effect/crusher_damage/C = has_status_effect(STATUS_EFFECT_CRUSHERDAMAGETRACKING) - if(C && crusher_loot) - if(C.total_damage >= maxHealth * 0.6) //if you do at least 60% of its health with the crusher, you'll get the item - spawn_crusher_loot() + var/crusher_kill = FALSE + if(C && crusher_loot && C.total_damage >= maxHealth * 0.6) + spawn_crusher_loot() + crusher_kill = TRUE if(!admin_spawned) - SSblackbox.record_feedback("tally", "megafauna_kills", 1, "[initial(name)]") + var/tab = "megafauna_kills" + if(crusher_kill) + tab = "megafauna_kills_crusher" + SSblackbox.record_feedback("tally", tab, 1, "[initial(name)]") if(!elimination) //used so the achievment only occurs for the last legion to die. - grant_achievement(medal_type,score_type) + grant_achievement(medal_type, score_type, crusher_kill) ..() /mob/living/simple_animal/hostile/megafauna/proc/spawn_crusher_loot() @@ -123,122 +124,18 @@ /mob/living/simple_animal/hostile/megafauna/proc/SetRecoveryTime(buffer_time) recovery_time = world.time + buffer_time -/mob/living/simple_animal/hostile/megafauna/proc/grant_achievement(medaltype,scoretype) - if(medal_type == "Boss") //Don't award medals if the medal type isn't set +/mob/living/simple_animal/hostile/megafauna/proc/grant_achievement(medaltype, scoretype, crusher_kill) + if(!medal_type || admin_spawned || !SSmedals.hub_enabled) //Don't award medals if the medal type isn't set return FALSE - if(admin_spawned) - return FALSE - - if(MedalsAvailable()) - for(var/mob/living/L in view(7,src)) - if(L.stat) - continue - if(L.client) - var/client/C = L.client - var/suffixm = BOSS_KILL_MEDAL - UnlockMedal("Boss [suffixm]",C) - UnlockMedal("[medaltype] [suffixm]",C) - SetScore(BOSS_SCORE,C,1) - SetScore(score_type,C,1) - return TRUE - -/proc/UnlockMedal(medal,client/player) - set waitfor = FALSE - if(!player || !medal) - return - if(MedalsAvailable()) - var/result = world.SetMedal(medal, player, CONFIG_GET(string/medal_hub_address), CONFIG_GET(string/medal_hub_password)) - if(isnull(result)) - GLOB.medals_enabled = FALSE - log_game("MEDAL ERROR: Could not contact hub to award medal:[medal] player:[player.ckey]") - message_admins("Error! Failed to contact hub to award [medal] medal to [player.ckey]!") - else if (result) - to_chat(player, "Achievement unlocked: [medal]!") - - -/proc/SetScore(score,client/player,increment,force) - set waitfor = FALSE - if(!score || !player) - return - if(MedalsAvailable()) - var/list/oldscore = GetScore(score,player,1) - if(increment) - if(!oldscore[score]) - oldscore[score] = 1 - else - oldscore[score] = (text2num(oldscore[score]) + 1) - else - oldscore[score] = force - - var/newscoreparam = list2params(oldscore) - - var/result = world.SetScores(player.ckey, newscoreparam, CONFIG_GET(string/medal_hub_address), CONFIG_GET(string/medal_hub_password)) - - if(isnull(result)) - GLOB.medals_enabled = FALSE - log_game("SCORE ERROR: Could not contact hub to set score. Score:[score] player:[player.ckey]") - message_admins("Error! Failed to contact hub to set [score] score for [player.ckey]!") - - -/proc/GetScore(score,client/player,returnlist) - - if(!score || !player) - return - if(MedalsAvailable()) - - var/scoreget = world.GetScores(player.ckey, score, CONFIG_GET(string/medal_hub_address), CONFIG_GET(string/medal_hub_password)) - if(isnull(scoreget)) - GLOB.medals_enabled = FALSE - log_game("SCORE ERROR: Could not contact hub to get score. Score:[score] player:[player.ckey]") - message_admins("Error! Failed to contact hub to get score: [score] for [player.ckey]!") - return - - var/list/scoregetlist = params2list(scoreget) - - if(returnlist) - return scoregetlist - else - return scoregetlist[score] - - -/proc/CheckMedal(medal,client/player) - - if(!player || !medal) - return - if(MedalsAvailable()) - - var/result = world.GetMedal(medal, player, CONFIG_GET(string/medal_hub_address), CONFIG_GET(string/medal_hub_password)) - - if(isnull(result)) - GLOB.medals_enabled = FALSE - log_game("MEDAL ERROR: Could not contact hub to get medal:[medal] player:[player.ckey]") - message_admins("Error! Failed to contact hub to get [medal] medal for [player.ckey]!") - else if (result) - to_chat(player, "[medal] is unlocked") - -/proc/LockMedal(medal,client/player) - - if(!player || !medal) - return - if(MedalsAvailable()) - - var/result = world.ClearMedal(medal, player, CONFIG_GET(string/medal_hub_address), CONFIG_GET(string/medal_hub_password)) - - if(isnull(result)) - GLOB.medals_enabled = FALSE - log_game("MEDAL ERROR: Could not contact hub to clear medal:[medal] player:[player.ckey]") - message_admins("Error! Failed to contact hub to clear [medal] medal for [player.ckey]!") - else if (result) - message_admins("Medal: [medal] removed for [player.ckey]") - else - message_admins("Medal: [medal] was not found for [player.ckey]. Unable to clear.") - - -/proc/ClearScore(client/player) - world.SetScores(player.ckey, "", CONFIG_GET(string/medal_hub_address), CONFIG_GET(string/medal_hub_password)) - -/proc/MedalsAvailable() - return CONFIG_GET(string/medal_hub_address) && CONFIG_GET(string/medal_hub_password) && GLOB.medals_enabled - -#undef MEDAL_PREFIX + for(var/mob/living/L in view(7,src)) + if(L.stat || !L.client) + continue + var/client/C = L.client + SSmedals.UnlockMedal("Boss [BOSS_KILL_MEDAL]", C) + SSmedals.UnlockMedal("[medaltype] [BOSS_KILL_MEDAL]", C) + if(crusher_kill && istype(L.get_active_held_item(), /obj/item/twohanded/required/kinetic_crusher)) + SSmedals.UnlockMedal("[medaltype] [BOSS_KILL_MEDAL_CRUSHER]", C) + SSmedals.SetScore(BOSS_SCORE, C, 1) + SSmedals.SetScore(score_type, C, 1) + return TRUE \ No newline at end of file diff --git a/code/modules/mob/living/simple_animal/hostile/mining_mobs/necropolis_tendril.dm b/code/modules/mob/living/simple_animal/hostile/mining_mobs/necropolis_tendril.dm index 6a7af7910e..3d435de4e2 100644 --- a/code/modules/mob/living/simple_animal/hostile/mining_mobs/necropolis_tendril.dm +++ b/code/modules/mob/living/simple_animal/hostile/mining_mobs/necropolis_tendril.dm @@ -45,9 +45,8 @@ /mob/living/simple_animal/hostile/spawner/lavaland/Destroy() QDEL_NULL(emitted_light) QDEL_NULL(gps) - . = ..() + return ..() -#define MEDAL_PREFIX "Tendril" /mob/living/simple_animal/hostile/spawner/lavaland/death() var/last_tendril = TRUE for(var/mob/living/simple_animal/hostile/spawner/lavaland/other in GLOB.mob_living_list) @@ -55,18 +54,13 @@ last_tendril = FALSE break if(last_tendril && !admin_spawned) - if(MedalsAvailable()) + if(SSmedals.hub_enabled) for(var/mob/living/L in view(7,src)) - if(L.stat) + if(L.stat || !L.client) continue - if(L.client) - var/client/C = L.client - var/suffixm = ALL_KILL_MEDAL - var/prefix = MEDAL_PREFIX - UnlockMedal("[prefix] [suffixm]",C) - SetScore(TENDRIL_CLEAR_SCORE,C,1) + SSmedals.UnlockMedal("[BOSS_MEDAL_TENDRIL] [ALL_KILL_MEDAL]", L.client) + SSmedals.SetScore(TENDRIL_CLEAR_SCORE, L.client, 1) ..() -#undef MEDAL_PREFIX /obj/effect/collapse name = "collapsing necropolis tendril" diff --git a/tgstation.dme b/tgstation.dme index 2534f97c3e..92ab64b374 100755 --- a/tgstation.dme +++ b/tgstation.dme @@ -54,6 +54,7 @@ #include "code\__DEFINES\maps.dm" #include "code\__DEFINES\maths.dm" #include "code\__DEFINES\MC.dm" +#include "code\__DEFINES\medal.dm" #include "code\__DEFINES\menu.dm" #include "code\__DEFINES\misc.dm" #include "code\__DEFINES\mobs.dm" @@ -253,6 +254,7 @@ #include "code\controllers\subsystem\lighting.dm" #include "code\controllers\subsystem\machines.dm" #include "code\controllers\subsystem\mapping.dm" +#include "code\controllers\subsystem\medals.dm" #include "code\controllers\subsystem\minimap.dm" #include "code\controllers\subsystem\mobs.dm" #include "code\controllers\subsystem\npcpool.dm" @@ -2027,8 +2029,12 @@ #include "code\modules\mob\living\simple_animal\hostile\megafauna\blood_drunk_miner.dm" #include "code\modules\mob\living\simple_animal\hostile\megafauna\bubblegum.dm" #include "code\modules\mob\living\simple_animal\hostile\megafauna\colossus.dm" +<<<<<<< HEAD #include "code\modules\mob\living\simple_animal\hostile\megafauna\dragon.dm" #include "code\modules\mob\living\simple_animal\hostile\megafauna\dragon_vore.dm" +======= +#include "code\modules\mob\living\simple_animal\hostile\megafauna\drake.dm" +>>>>>>> a2ccca5... All medal methods are handled on SSmedals as opposed to global procs and also have proper defines. Killing with a crusher grants special medals. (#35673) #include "code\modules\mob\living\simple_animal\hostile\megafauna\hierophant.dm" #include "code\modules\mob\living\simple_animal\hostile\megafauna\legion.dm" #include "code\modules\mob\living\simple_animal\hostile\megafauna\megafauna.dm" From ce281774e187c21346f991d95c62364c3f70e10d Mon Sep 17 00:00:00 2001 From: Poojawa Date: Fri, 16 Feb 2018 13:28:37 -0600 Subject: [PATCH 36/94] I mean, I guess? (#5521) --- _maps/map_files/MetaStation/MetaStation.dmm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm index 76b4699f30..53bf730451 100644 --- a/_maps/map_files/MetaStation/MetaStation.dmm +++ b/_maps/map_files/MetaStation/MetaStation.dmm @@ -13013,6 +13013,7 @@ name = "mining shuttle bay"; width = 7; roundstart_template = /datum/map_template/shuttle/mining/box; + }, /turf/open/space/basic, /area/space) @@ -13219,6 +13220,7 @@ name = "fore bay 1"; width = 9; roundstart_template = /datum/map_template/shuttle/labour/box; + }, /turf/open/space/basic, /area/space) @@ -30988,6 +30990,7 @@ name = "arrivals"; width = 7; roundstart_template = /datum/map_template/shuttle/arrival/box; + }, /turf/open/space/basic, /area/space) From 1bc3908203727538c9a3023e4bf0cc8b409385a8 Mon Sep 17 00:00:00 2001 From: Poojawa Date: Fri, 16 Feb 2018 13:33:06 -0600 Subject: [PATCH 37/94] Fix missing brain damage picks --- strings/traumas.json | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/strings/traumas.json b/strings/traumas.json index 42e65e63ee..4dd2d77abb 100644 --- a/strings/traumas.json +++ b/strings/traumas.json @@ -241,6 +241,31 @@ "YOU SHALL SURVIVE THIS, MY PRIEST.", "BE HEALED, PRIEST.", "YOUR LIFE IS IMPORTANT. KEEP IT." - ] + ], + "roles": [ + "heds", + "ceptin", + "hop", + "arrdee", + "sek" + ], + + "cargo": [ + "GUNS", + "HATS", + "PIZEH", + "MEMES", + "GLOWY CYSTAL" + ], + + "s_roles": [ + "ert", + "shadowlig", + "ninja", + "admen", + "mantor", + "bluh daymon", + "wizzerd" + ] } From 29bdef8664436538e12031ff4423c0ce318261dc Mon Sep 17 00:00:00 2001 From: Chayse Ramsay Date: Fri, 16 Feb 2018 21:14:55 +0000 Subject: [PATCH 38/94] New UI icon --- .../carbon/human/species_types/furrypeople.dm | 4 ++-- icons/mob/actions/actions_slime.dmi | Bin 4717 -> 5394 bytes 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species_types/furrypeople.dm b/code/modules/mob/living/carbon/human/species_types/furrypeople.dm index 54cf0598ba..7e30abd49c 100644 --- a/code/modules/mob/living/carbon/human/species_types/furrypeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/furrypeople.dm @@ -241,7 +241,7 @@ attack_sound = 'sound/weapons/slash.ogg' miss_sound = 'sound/weapons/slashmiss.ogg' - +//##########SLIMEPEOPLE########## /datum/species/jelly/roundstartslime name = "Slimeperson" @@ -261,7 +261,7 @@ /datum/action/innate/slime_change name = "Alter Form" check_flags = AB_CHECK_CONSCIOUS - button_icon_state = "slimesplit" //placeholder + button_icon_state = "alter_form" //placeholder icon_icon = 'icons/mob/actions/actions_slime.dmi' background_icon_state = "bg_alien" diff --git a/icons/mob/actions/actions_slime.dmi b/icons/mob/actions/actions_slime.dmi index acf7a31c6ed9f353ddd8c63149619c3c4d8ff8b6..23fd6e3e8afc65027a2d6cd78ee93131a7a4ed80 100644 GIT binary patch literal 5394 zcmV+t747PYP)V=-0C=2@&be02k~eaAlN133#E?w2bo4w6v;hg-u6g|w)6mJmfm;7|rl2E(Q)maLHE18}HW zF?(U~%s=!HTb^9JJMtuo%yET6=gG<0up7+Wf8&(-U=LVl%O)++%F&RONomMRO?FK} zO?Dl_hB&FD6*{6HXXnj7TETN@q3t{N1-(VGklrXKS^xkP5J^NqRCt{2oquc`<(bDn zv+K3Jj-5b$kz_X|G?b==lBl3qcR;cMLrL7$2w#z6RoqGEE2+3tRXLrwUQexn3a)pc zssWX92%Sz-{x5vvYsU&U$yfKW1iU zyz6+rmgV*CzCUK3@B6&(Jn!>9j}Qz7ajoy{ z@eR&1fPzBcz#au~h+q)}ql-XI_!k&NL1B<#05;+0e-8Y@GQnu=09;^j-si^-9Ck=x z0Ssw?Y~c?ul=Imj!?f-1v|JMuYRiFjFuVvnMQ>4o3@`-Ksfs(5O|)WY+uupxeRVo; zU>=4v!1U-OO?XRxX;iMHKN*~&mr=%xer^@n79$=D1m+R{*0x^}~hKn;PPeIbX1!H0fp=}m77bt?HJ%SQhPX9!+7l+$K5 z3BVpAw1qkqPgDK8_r=*L@}xxY)}ywO@3BBY(S$GDejCa=Co_M4^qrUZx8E4o1iA=d zWOP|I65B$BH4T*3Hg=I`J7q)2!yN_0fw^$ueLu_OV^-b^cn5cu8w3YW5~bER}mGgc8%6MSpy zoqUBo{FEak5RpmY#zlk}GBV3(qJetcxbV`*uMYkUu#O0wQuh$R1D|g9H+W>0Et?}i zBq9<`g4ciT@V_2@nb`0Q!EHx3>Z!LV0V);ZLa1ZCeK6bh-o{6j9j$khKmk2gQRI1fBsKURmbvH68cC(XLID~{u zm|0RN$jG>H=ls>+#*K)G0tmqQgC|Xq;7d~v4}G=c&xsLdikZ-zJ)2wKUG@edNm8V6 z;UZ1~85u8)Oh!C3wqDocrI8I>=L2~Dx#tMp_N$^KC}{_f5r#%Y`pNsY%LAtFUZqN>IqMj|94 z^4Y(pem8<|!KaZzJ zCuyJ_nbgQ`cJkw%=UbcWXNV{fq^L+r`w=B%QY4Yog=r$jwJQ@Oj)z*aG*CzZ+@EbI z*j7OT*defLlE7%&)1#9)|A(1P&-Lo<($s$=X@!-K-@4=n!f<_1uVw#k58Yo7bjoY^nn0RoW7N}W= zkZhqDnFay_9ZF!JL#efW0%;_v`@0ch#7Tq_i0X9Wl2F1iE=-F=+FOo_VggA_B8y3q zNTfuG+jiZ}AE&`3f)G`06PgB+kwYR$kmj4t=b3`-9I1BJZKv-*J@ts`XMfqiqE10! zf+<#U4XkqODl07#8Y zb20tC8#k%6v5LznxGuL`(Y=65J$|h47z)mw5cG`xeBS{f{nNI;6Ts9Kb({oV8nqFm zyPU%O?v5}H6EbYl-?o6@6A(fGiXs#7co-d;hKA;%)uj5D-an>D&KD@C&6)w5Og? zcle$Ko`@V{>tD4GgKAWo-m5hKo(>Ec`38Z_Z=eLN^^eO%qlX&j6C>!|Z-?O)z< zO^>^0W=EpM%^E+9g!)OvE-(`6XN@1E77vZb!|g*`SM=ny@0WAx=WI z-i?lvcs5ja^ygg5GXdrBO-F>DBgZ-UFTeDAY4rKW8d^7=jkW?v4K7CFZc@8e_I$i` zWskJ$nx4z?I>ZJ6sfq0NeN&_3zQnU3cxj5@7k*pN8aQtXDCLNu=SEgqz8H$Be>1)V zdXeq_AoWJr_GDYy9v~s2jwo$`rJ84BBx4Dpzn+5rBupiB34iP3LE+Rh0Y%dU0Ecfn zBAj|Apgh6P{Qwhxj1O;n7B`yg1V@?CaplHQtIn)3R+yM&{rF4M^pXz?;TFR zKJ|-$@=x9#xU3LvkYG~wPp@_luMibKGbviGYoKXXL3T_2;Ftbecl+};gNp6L>-G4l zw7eOZ^&MDD$kq;p$Wrd}Vko{HT%pI0-5x^)+cfDru#{oiCCtIqftoc1J6ISv1X$v5 z2(ZNA5MYVJQUdg>+Fnyzunx+@5CNWkD>P5QPrnsXj*K-ZJ*&1W`?h%LS+!j`GS;9J z`mTf8gQ3U3BV!H918WjRpR0RTZC6?+-gch57ZD6;fc0Cpmi+wE*;5sD#=*kFbcmQj z= z8d?Jso8!x^4a}mF(PYI)takfGVdgmAqOb#)xq;O_*H8^N`205YXaYk7D7MHew>UHd zE7fN;P9)h?S2+Y{PY9N+0rJt?cd`7J9Ml9f5|ksK;qBn3-wG+8x$%?0+{oXz#mkFl zW5Ar2=H$H}i&l)5*D2~a3T&i7XJbI(wRVt0%jD1I^8ArglKxhQwIMmGVpP$~CzeR*Dt zoJ&7H#eH9WkOu0}ylAZmjbe0^7b1b)(?xpPH(N)w>;ZaEmH>rff9eC zj!cSsyS|KG@3{GQpHuiOv`~*)Sa_$|C!Fwc9UM zhgBpfN`Q2n8i1mUyFyU1el%oaXTU3M%6i|z)th2~=9OcTy5_B0Ei z-WWL&vaT384yuEarr!k|arz@bt7D{dQmxicSI5ijm`BVNup0L^I>& z#>k0fGG$m1BgaAY-~@fUs@@eqi`gh>6JwWN}P)-8D-9J8}S6*{|$q=ztmx-KIXxhNn4m{tR*| zg@5x+d_2&{nYwJaZrubZwiA}^wPKYElkOY< zRnP)Gcyc|Bo=e=Y@dhR)Ck)lAivWd$pD$#q ziBRfBgS|Jq7^)EsJ=@cH=Z~Jxxu37^>sD_5%t}BN{=m=x1A}qyeeq@Mo&pMa-?6Bn8^X45zkKlxnsV=Lh#_P`RL#W+(2#^{{H=M(!c*rOM_FFb92A<#g~OMy;lG- z!Z(Vtb^x=Zxze>kTS!L^fGdYe21Kyao7V1V=tl1Q>-)MheK9inL1+5-N?e*X7_Gx> z4gfnyP>mo_3*izDItXA@@@Lb&^(J!wSnbzuq#i3sSg!w8q~(KB2_r0G;6gFk>b5Ht zqLn1bFI&hEb?m@lQ^v6cNgr>804jmey7EV#*>eSzE{F>q46!;bUrp}?R3mk~mF2DK zgI0$fY55i;eS9^KXjiJbt%MbIYdI1NA=@^h_mQ|L0qlOJu65Mf(J(M(h|+tm(6AxM zC~AR3Mg?HUg4K#T%^IRCi4jx@%r2s|j$dtoA1Z+sawqU;z9DM9;Pu29C`te;1hCMf z-wJ=Z?CTuNa?R;h`1hfbfuzut$i ztQlIC6FmARfgPXYm;d!1qaT07E&uTMg4KN}g|g&4`UWsZGCi8R>>|*JF~bf!yq@;0 z@RvLD)OVG;KED}I1+PquX9PFYcMifcvN`ir?rpa8p%gT7c0K$cT@OFV@TCw+ zWENprGlBLyIB{}-u7~!ptYrhIpZvaV?W@ZWlx>VC6{Rb`jJ`|L*M6~fvi;@Ou3rbt z`O7I2qPVzu6fux%tvm9#HE7%CE^p{)Syga8|ledWv&rKr;Gdb-)Nu8#Xm&zTf0+;!N)q!(KL(^g&O*vdMYAFM=S- z{|Sc#H4NQTfDsZnBY*LrC;_yQyY7*FtX`|;gViHg?K`X2u3_CH`*P}XPT@)oiGMUV%^!|R8 z2(LZz4pCx6h>;|T3l~yWsu(S^$k%?-4v<3vkH_N>paxOYCG6prZ*pJjZZ&;u+fH8L z5E3$BW=R#v8KhC+#YbL4L_`4u;QYap9P=GskPC8P42v#zumfvRa1q!kbt`v&aW@l8 z@(PEDlgJUWhdLT*ppk}5I;rfOf-&Mbul-#&6G&Q3)lzD%%g$`-}Ly;sOfBRj6xBbcq@lu0uatAMQIJtwDI7(`OW4^;e+rdJ) zgC#`NRlSotcyXibQ-Bth3?BrZN=NQqDX5FOYtjm2Dy6;-r=Z293VpS${dQmxj711B w8Is&V?ZP=1u*BgIV2Q&az!HZ;fF+Lq2e94neyY8Ru>b%707*qoM6N<$f;Or}?*IS* literal 4717 zcmV-z5|ZtSP)V=-0C=2@&cOZ{Htj;BRJvj3ER66q7lAlkZ zB|i_mB97*tEuiUZsJm8t0gS_?$97f=&j0`sb4f%&RCt{2oquc`WqQXyv+MQRiJd?~ zAc;4+P`D5{jzoZBwS;6L<{)toqqrbpooJ=HS1KA*9aTl!tFAgYL9Yd!2Z+u85Rvc0?S z`@A#H_kG@Xp7(j5SMvFM)N%R3QR@cOQCrjraG9gQY{71&R|G~T)BlVn@ZI^gWL2XI z;T`G{0ECkGZh6Z#IhP|$5ujV?6%Xxsn9mpjKtjTMaG$VRIo(RH0QiePd7RG}LLl%S z+$VrK5iEjabP}j3{~W^z1jCF1uo(~kbMU8@DMph6aE{@5pC3DTxK08KV8{aGDu0NP zyw8RirQ<-i<(8nBtU9cN;YnaW10@wQ#0UgaRW~Y^Xr<6`pd0VW^l(szc^I+)!HH>B z&|LmY6KXZ>$)cYDCYUPuxm9Faig?27ok#rVd_GfF*AM}YwH=l^4s{CvZ_mCwOK|?c z`vCa<=$)#~zb>Ld9@)GtyR$dN7e2l$=LWl54vE`ue}zZxgU6r#X7>FTzWoYMc)jAo z55LLraF3yDH#`Z{;Qh(Hc`Woj^h--`dWXMT6p}0#=RY}(@6sE2GIL1)_7I`N-z{7# z8t1()hoh*|3cg#8+D5)7yk4OxU%LG^#D^!czhC(FEBxEr#w~#^0vPFCR`tXVe{o9# z<*kifBzU;#F#)i>eFrKjR8$&qp^_ekoH%gP$S)4P38by16>@X&gx4zq|FIcmdKO$c zBuvVLCZj~h1@Ckj>xg9uVD@HOsRZw@?h}mVROd+P8fL5_qNe!v_MJS)K7Py*63D2e zaN;0B3>B4?tiVkpP8>AT#Lo}?1h9?>-AeBWzymjQdfYCRl`H265Q)e{lhEwBa`ayh zze;R$7T@-xoAlIMk^t2zaUsmH-Zq$({czJ`Vpsd!B#;46P>B*FLX0Fy95_&zn};|^ zi)q3QK%4|85B;Vp5@?F=+SAP}VP;1sJ<525wM{B68c<1bF_N}GE$wZi8@L)LPJZ~~ z=TXnf_&VM$ON62XuyR6Wwk~hWZc!`QkXHWJ+V`T8VlTUSjWng0SSvXHXFle1anzrw#0Bt(!9Nfgw~ zOGZXPC4o$oSl&+pIs3U8bojeR?(FK|5;M#&>reDew12ev*NjGzL>m$rOB6*WNwOiu zg-8_F>RBfG&b5y-$w!>>|ArH6|JE+NgPkQkY4ZqB?M*KSGj-R31l>xnxcd+H5@4Fw zc!M|zl#IdwTr|*xnT>b~y zN7NA~Ax8*DXK~C%a71G`qj4IdahhgjQd4nA$S6^nXxd^BBjJ~kx#>^uz&q4clmsO$ zfR$tRQhY8C5g~z$K;-oBI8kDRGkrWxBHPo8L1bQQSPim%9tS6;anp!OYJ4xd`C;FS z?JbS7L_`E7DwEP)vVuyABuaW>nuu}bngoe={p~px$S(lrP41$yiW0yMh1HS-Mr8*l zrt|&}5zdVD>D#55|3r@Boj7R3mG|SOk*iq?K*Nl_CUh&kBb`0nIB^nST78W-kV&GF z!VyYjWI1u+!rAD;nQ4MX2oiFJlyep+Mx0GMw&D%!pJxRYZ9qt_(u@oP-k~nx9qJN` zZJj_FPwM_|gcxxW{seM*IB_V5P>gdynMh~rQCUu)$VpT=NfL#WtZ>_1ck{a-IAoBb zY2SoqfmBq#OcIp&uJd`WU^{!Nopsw8JJ3iYa^~4zH880Y2m;KomMdVbQ&*Yb#55^V zM2G@7RZ{AzRY^R}t!yO4$Ni0+t8d*ouiV*lXW9AH)c~Z%gIvhG@5D(eL_6zO;T7vfGi@4wY1!j0{urucIgds*U)uBVtI8U%;x^ z0d3K1SI>Q@q*y_7-egZy@B?U&kdR3-_ILk>@80q*+Wu$LD}2uZ-;Eq&+n;rgLfWYm z+`7JR?99dX(H-mF+x%<)u8-dJv+m2+;lM$P6qD!9<5{gTxO2@>xj)!BvTb!=uKYN0 zrvGUW-(B;)gY)J9g=_J{j55Rsdk*Z^wf*cT zAVY{0G2&bbmR{180V^f~)xcO_b#tnAN|bJOjDa@(%ru4Otc+9aXT1~J4xNOrtgbwYxIAsVVJQLn*6vtT zOR#lRh9Lqx^MQY!f}i=oFOE#QMc>*T;?b?m^sU_?j!e2mvG3Ng_+aQU@W`ZFJg_cN z^0~Ti?GDi%_-*~UdkMji1=z54TiMUY&h%H+m^v07rc=Ze!@%GL9$43AWtBi}wx%s6 z`FdbhZdnVEJHF?R@rC2O_WN&tzs>RsHhN)ZV+j|ld^0d2*U%iG)EHlBZeSMG^d>8M zVy)#Hg_-SmOTrIe<_6Y!Uqdaz;0tByu>^()P->D_X>w==R+`UR>`1b!u1fHQk4u)# z0SYlNc%kx_>R1%eNKlDBWLW*e!ljN{kUmFi=wq6 zHHy(*UW^2KcNgiAZ?=wF`2+NzA_0o!$Wc%-5%7Wt>9Idb9F-LJ^xRJ~O_mbja)g!E ztXw^1p8~WTIqmJ~&4{n_pCpip5F1WFP>%aP;4#e?i4M1&9#W|$>`Ofq8!R8%IOd>s{)BnnBC+zb_L>A9^c z668WNr^Rln_Wp9311to2N)7>qIdURIvkC{Yd2$5grB4C!HcM*z<*Y)f=iB9^cv!f( zLs36Kx6&(i?zuagWg<*8yE`_WonnqRaS{k1M!e)UY9~&HkDbQn(mx+q4!-!>!( zogS1N0&1Bfr;arAdh@D5Q3BL5M~;T&w3uT>U8Uwe)ndU`1C8X!Da2A-%&|&-F<*$4 z*QSdAjifz)xw-K4{3MVGFq5uCXO5g)m`)UBk^jBc^2^m>6$wfbAd{yCpycGP7(~uX zLpDc_2^dv^oj1Q0@^kC5V=`EBHL$}!mm?=gC_CBHJb-$0cLvpAKhFKj^TO4jDtBd6GQC2?OLRj zEr>{%*E64iaWd5B080R;p8B4+X5*LW+PfX!d!OL#yaPhBh)9^xF+ZDbPDf{pz!a|^ zea{dHmc$%jF`fa?t@Mg)yMA?_?d|H?yPc82v$RT=AT-O!;8_4R-MkGEm}2BqIvoGb zTd(8v)8EnEo<%(b*m(v(we7Mx8+tj!V-Y4kzrd#JZ^*vq+0e%5m>&-yt>1_T7#;Hy zm=2)Ile+6(v;?r@3;-+Jm75J6NM}R0sZHTfkkg-?Mop#gT(^ZUh6b4qPP3|IRh9&r z@=p$&Wa47+_>5vOOn}104!d{0Sak+~6)4Pxo{MZYbQ?(EJ@}I3JMfrL6qQqFP9YG) zVlhII5I1e!%Ehs90LEu78m?P60ZOfeG! zqijM1JELjs&W3K}zQ6NmZ?-K)dOzqqKE9feW(`K`Fnb1o9VDnllBk6U2?renui;Z56T@FVG#otipf^Xu2zXwlAy3`F-O#~gNIEy#}?%H zcqa~Dc935|Ed8^u>)nUi6d<$}Xd@Z+VS8KYh zgcWsbXCxLwu5U!|BXLOr*!@hs*s<8QhJi6hl-_-Xh8;mhu^32XQ~`EOSgokjtRu>j z96{B<>?BHS_;O49Pz|({JKo0%9Z~ZYuP4VqNdj1*fQ9b;R>aHYUgvO5s1-m`Y2eF$ z{jIX~m1~2g!-_?oN82ob70>^Avt(EqFPE$IhdXy=>(T1f>MN|vu9!VN?S%5=ET;qA zYXOxiD)xQ7WvY>HWxU+*556xR?%aj6Hhu8!$fvcd{@ggvl zRouwnSqRP2DqUh^@GM<>x7*T&a?r@x^T>XB9@)?6m>&@dBdu(~+j$4aPYluX&^}hS zZsgQc-_vbu+G<^9#gd5zE_93e}Rc91P6?^agz_e51>d09Mi#96Q2&{~k zTh+2EuiT2}6?}R&h$PMC$+NQ!rC^4fm9T7g25Iqf(O6V>yxcpF_KIsaH)X%SqIm_U z2QC?ovZi$Guxtqcb2kpi#>-VA06=aTv&uKyhD!BVMNSRN vngC!tUap$>Iy>vMgPd>~5MVjM4s!lKNvNX(!+i9r00000NkvXXu0mjfXtEg^ From 0eb053e0d363b7a4dde58d4788c225c9e5de931d Mon Sep 17 00:00:00 2001 From: LetterJay Date: Fri, 16 Feb 2018 23:37:02 -0600 Subject: [PATCH 39/94] Update tgstation.dme --- tgstation.dme | 3 --- 1 file changed, 3 deletions(-) diff --git a/tgstation.dme b/tgstation.dme index 92ab64b374..ff179f682f 100755 --- a/tgstation.dme +++ b/tgstation.dme @@ -2029,12 +2029,9 @@ #include "code\modules\mob\living\simple_animal\hostile\megafauna\blood_drunk_miner.dm" #include "code\modules\mob\living\simple_animal\hostile\megafauna\bubblegum.dm" #include "code\modules\mob\living\simple_animal\hostile\megafauna\colossus.dm" -<<<<<<< HEAD #include "code\modules\mob\living\simple_animal\hostile\megafauna\dragon.dm" #include "code\modules\mob\living\simple_animal\hostile\megafauna\dragon_vore.dm" -======= #include "code\modules\mob\living\simple_animal\hostile\megafauna\drake.dm" ->>>>>>> a2ccca5... All medal methods are handled on SSmedals as opposed to global procs and also have proper defines. Killing with a crusher grants special medals. (#35673) #include "code\modules\mob\living\simple_animal\hostile\megafauna\hierophant.dm" #include "code\modules\mob\living\simple_animal\hostile\megafauna\legion.dm" #include "code\modules\mob\living\simple_animal\hostile\megafauna\megafauna.dm" From 24ab7e0a84418f10f6f2ad9fe409155594b2ab5e Mon Sep 17 00:00:00 2001 From: BordListian Date: Sat, 17 Feb 2018 07:46:32 +0100 Subject: [PATCH 40/94] Adds rainbow slime clusterbangs (#35707) * - slime - yes * - Adds a volatile reaction * - There is no escape from the standards that live within - Can't wait for the experimentor review --- .../objects/items/grenades/clusterbuster.dm | 93 +++++++++++++----- .../chemistry/recipes/slime_extracts.dm | 30 +++++- icons/obj/grenade.dmi | Bin 12945 -> 24053 bytes 3 files changed, 93 insertions(+), 30 deletions(-) diff --git a/code/game/objects/items/grenades/clusterbuster.dm b/code/game/objects/items/grenades/clusterbuster.dm index 167c3114ec..7064bf6015 100644 --- a/code/game/objects/items/grenades/clusterbuster.dm +++ b/code/game/objects/items/grenades/clusterbuster.dm @@ -6,28 +6,31 @@ name = "clusterbang" icon = 'icons/obj/grenade.dmi' icon_state = "clusterbang" + var/base_state = "clusterbang" var/payload = /obj/item/grenade/flashbang/cluster + var/payload_spawner = /obj/effect/payload_spawner + var/prime_sound = 'sound/weapons/armbomb.ogg' + var/min_spawned = 4 + var/max_spawned = 8 + var/segment_chance = 35 /obj/item/grenade/clusterbuster/prime() update_mob() - var/numspawned = rand(4,8) + var/numspawned = rand(min_spawned,max_spawned) var/again = 0 for(var/more = numspawned,more > 0,more--) - if(prob(35)) + if(prob(segment_chance)) again++ numspawned-- - for(var/loop = again ,loop > 0, loop--) - new /obj/item/grenade/clusterbuster/segment(loc, payload)//Creates 'segments' that launches a few more payloads - - new /obj/effect/payload_spawner(loc, payload, numspawned)//Launches payload - - playsound(loc, 'sound/weapons/armbomb.ogg', 75, 1, -3) + for(var/loop in 1 to again) + new /obj/item/grenade/clusterbuster/segment(drop_location(), src)//Creates 'segments' that launches a few more payloads + new payload_spawner(drop_location(), payload, numspawned)//Launches payload + playsound(src, prime_sound, 75, 1, -3) qdel(src) - ////////////////////// //Clusterbang segment ////////////////////// @@ -36,38 +39,64 @@ name = "clusterbang segment" icon = 'icons/obj/grenade.dmi' icon_state = "clusterbang_segment" + base_state = "clusterbang_segment" -/obj/item/grenade/clusterbuster/segment/New(var/loc, var/payload_type = /obj/item/grenade/flashbang/cluster) - ..() - icon_state = "clusterbang_segment_active" - payload = payload_type - active = 1 +/obj/item/grenade/clusterbuster/segment/Initialize(mapload, obj/item/grenade/clusterbuster/base) + . = ..() + if(base) + name = "[base.name] segment" + base_state = "[base.base_state]_segment" + icon_state = base_state + payload_spawner = base.payload_spawner + payload = base.payload + prime_sound = base.prime_sound + min_spawned = base.min_spawned + max_spawned = base.max_spawned + icon_state = "[base_state]_active" + active = TRUE walk_away(src,loc,rand(1,4)) addtimer(CALLBACK(src, .proc/prime), rand(15,60)) /obj/item/grenade/clusterbuster/segment/prime() - - new /obj/effect/payload_spawner(loc, payload, rand(4,8)) - - playsound(loc, 'sound/weapons/armbomb.ogg', 75, 1, -3) - + new payload_spawner(drop_location(), payload, rand(min_spawned,max_spawned)) + playsound(src, prime_sound, 75, 1, -3) qdel(src) ////////////////////////////////// //The payload spawner effect ///////////////////////////////// -/obj/effect/payload_spawner/New(var/turf/newloc,var/type, var/numspawned as num) +/obj/effect/payload_spawner/Initialize(mapload, type, numspawned) + ..() + spawn_payload(type, numspawned) + return INITIALIZE_HINT_QDEL - for(var/loop = numspawned ,loop > 0, loop--) +/obj/effect/payload_spawner/proc/spawn_payload(type, numspawned) + for(var/loop in 1 to numspawned) var/obj/item/grenade/P = new type(loc) - P.active = 1 + if(istype(P)) + P.active = TRUE + addtimer(CALLBACK(P, /obj/item/grenade/proc/prime), rand(15,60)) walk_away(P,loc,rand(1,4)) - spawn(rand(15,60)) - if(P && !QDELETED(P)) - P.prime() - qdel(src) +/obj/effect/payload_spawner/random_slime + var/volatile = FALSE +/obj/effect/payload_spawner/random_slime/volatile + volatile = TRUE + +/obj/item/slime_extract/proc/activate_slime() + var/list/slime_chems = list("plasma","water","blood") + for(var/i in 1 to slime_chems.len) + if(!QDELETED(src)) + reagents.add_reagent(pick_n_take(slime_chems),5) //Add them in random order so we get all effects + +/obj/effect/payload_spawner/random_slime/spawn_payload(type, numspawned) + for(var/loop = numspawned ,loop > 0, loop--) + var/chosen = pick(subtypesof(/obj/item/slime_extract)) + var/obj/item/slime_extract/P = new chosen(loc) + if(volatile) + addtimer(CALLBACK(P, /obj/item/slime_extract/proc/activate_slime), rand(15,60)) + walk_away(P,loc,rand(1,4)) ////////////////////////////////// //Custom payload clusterbusters @@ -127,7 +156,6 @@ name = "WELCOME TO HELL" payload = /obj/item/grenade/chem_grenade/clf3 - //random clusterbuster spawner /obj/item/grenade/clusterbuster/random icon_state = "random_clusterbang" @@ -136,3 +164,14 @@ var/real_type = pick(subtypesof(/obj/item/grenade/clusterbuster)) new real_type(loc) qdel(src) + +//rainbow slime effect +/obj/item/grenade/clusterbuster/slime + name = "Blorble Blorble" + icon_state = "slimebang" + base_state = "slimebang" + payload_spawner = /obj/effect/payload_spawner/random_slime + prime_sound = 'sound/effects/bubbles.ogg' + +/obj/item/grenade/clusterbuster/slime/volatile + payload_spawner = /obj/effect/payload_spawner/random_slime/volatile diff --git a/code/modules/reagents/chemistry/recipes/slime_extracts.dm b/code/modules/reagents/chemistry/recipes/slime_extracts.dm index 52d12e8eb1..bf698300e8 100644 --- a/code/modules/reagents/chemistry/recipes/slime_extracts.dm +++ b/code/modules/reagents/chemistry/recipes/slime_extracts.dm @@ -609,9 +609,33 @@ required_other = 1 required_container = /obj/item/slime_extract/rainbow -/datum/chemical_reaction/slime/slimeRNG/on_reaction(datum/reagents/holder) - var/mob/living/simple_animal/slime/random/S = new (get_turf(holder.my_atom)) - S.visible_message("Infused with plasma, the core begins to quiver and grow, and a new baby slime emerges from it!") +/datum/chemical_reaction/slime/slimeRNG/on_reaction(datum/reagents/holder, created_volume) + if(created_volume >= 5) + var/obj/item/grenade/clusterbuster/slime/S = new (holder.my_atom.loc) + S.visible_message("Infused with plasma, the core begins to expand uncontrollably!") + S.icon_state = "[S.base_state]_active" + S.active = TRUE + addtimer(CALLBACK(S, /obj/item/grenade.proc/prime), rand(15,60)) + qdel(holder.my_atom) //deleto + else + var/mob/living/simple_animal/slime/random/S = new (holder.my_atom.loc) + S.visible_message("Infused with plasma, the core begins to quiver and grow, and a new baby slime emerges from it!") + ..() + +/datum/chemical_reaction/slime/slimebomb + name = "Clusterblorble" + id = "slimebomb" + required_reagents = list("slimejelly" = 1) + required_other = 1 + required_container = /obj/item/slime_extract/rainbow + +/datum/chemical_reaction/slime/slimebomb/on_reaction(datum/reagents/holder, created_volume) + var/obj/item/grenade/clusterbuster/slime/volatile/S = new (holder.my_atom.loc) + S.visible_message("Infused with slime jelly, the core begins to expand uncontrollably!") + S.icon_state = "[S.base_state]_active" + S.active = TRUE + addtimer(CALLBACK(S, /obj/item/grenade.proc/prime), rand(15,60)) + qdel(holder.my_atom) //deleto ..() /datum/chemical_reaction/slime/slime_transfer diff --git a/icons/obj/grenade.dmi b/icons/obj/grenade.dmi index 7f4d65e081c83dedab10dabf287151b9e636005b..9be47e5ef271622f57c48314d5aedd89477a2fb1 100644 GIT binary patch literal 24053 zcmb5W1yogE*Dk&fjii8}G$B?!`?(j|g4hmh`)<`5z(DcvC;(%o@rL`u55yZgl5 z{J!`7#{Z7*9shgp7@pyFoxSE-d+oWN`OIgo<5yK>8KOJXcK`q&l9PR{1^^I0@MDOF z1Gbb07K;J^2A`+8mdk5XXA>t&2Nz3wI{+iCeA>`bJHWD_HO85_|CCT~nL)kF32Vne61nn-=JVYawt9**NMu}8G5hAgQdJbD%qdyQq=$)gm1jYWr- zsY^@wE(&a^vxq#m?G$|lr@LhO2014cqaqS|r|XET{*tS7Fieu#@V*u&bFWQM0KWcMR@Hqc)Y*u$+Sf9M*wtMx%{P?_% z^(NxgDK;Og5!ug7FLnT61ms>zs=KG`Hu<>ItfgMuqz*OM$i;C?mC?<7J;CvS+*#|i zbR0glq&Mu1dlf%N|7UwDM|WC+>pJRHrYTj@UUj5XId+NO!B&pU!H zJwp2dOqPBLlT44op%l8+j})p6I4t>`QIRqa*vn0Nk{--l`xN)a=adx=iaHM>d@p4$MYxsBnG!_z~4KyvDTJy5@xM5*g2>jy`UAwh`T8d`MM#6$R(n#C(EZ zh}RJaYo;{hq1PM&$X- zOONB#EIrSWNa%_k#82Z(>w8OG^()Q|sv7^xsk$z<9w-8J1R67g3h?tA&(*tD1W0;$ zdCjAHiSDx#ISNOFhGvwN-EHaI)B7frup^x9D)Rh!6tYl{$8TF)JSQLhV*s+clN9TT z>rkf`Q0X->KObIQ&0nimY(q+h`8V@bFn7#f0C=W}aw|;tCYR2-OT%visLr|@GNDrT z{Py?lTwGmE(ea4Rh;DiE-u=0TGP^k;ux)9L0Uj_T24ko9y{FRp!?aI#yf`1 z_37>1zhkj}p}2Bl&Y&(N5=n_`vykJkt+hC&@3H{*;C0_;A{zPU^tGfgCUnCtqQu>C zrl_j(>I7k*DSN?|S7PeL>o@NaIQ*kSfnuwbi)h%Gox4VvvVvsw25LDxsQFXP-Yp+J z6;qEQkO%6Dn!SUbo_!wFyqtahl9t$pnzmzfl%lxfrgr%o`#J(Dh;X(=+*=wXZ=u?S zemJB`oGLj+*`iU%sc}OuFX8K(n~F76Pj|J~VT%=ZbM=kARR0V#^iUMF_IVq9OreX$ zz5pEo!l{W zBuzLFj%~D%qxIa`+vBiE`cMWgUB57a4CgP@NyX$f*GtInCd_9aR@UNLSB@A>YZ3X+ zRvSW&xLj7E;g^`NgwpCF2W8D=VgjVNq|~0{5sHeZcsTYS_Wk`m+oxF^6mtc>28_mJ zk5qfga6MJzV88J;d=V>SoS0kl0bsbmv>5Ij=)UsFY@9Sw%@-h;zGUxOSj9GQ958SX zq2hS1(wJZ^!n@%6B$cjA%c)zJ>e%C`hD=gI53TrMt>_c@ehaL4ZEok9a68v0O_;I` zFO9*a{>-6U4LTl`l9Ce3UM9sdu4fqxjfy>RoA^;9*nKdM(W2=DkMYJu>n$wI%;+8$ zNS4KM3VBa0hp zMPte@NCqp<&2_F$u34G_*qz+y6piJ@VPePYt= zxTQAHs<)849yaj{#rv!pMHLIIPC~L1-_;K}3+zAqiYC$LHia_0dHiZ)$MarPSPxtR zE#MngoJi0_f7MmuSXse`%K2P5i#`8M;`>>@8{(cWEpiumpW7n|mS`ufQd?y}v(j^H6|} zjxO}&NKQ=+6)p*V-#prk$CVp8H;5nt|M_XOiFW5BQ_L$Ql{as#w?2~~SIt0EhDq~& z!m0f*n!Vb4Rdb?*zix+%UJ(S|sYHeorB~|KO$u*uoyUCS2+Dp=7t$w791 zjZwh}g^`lS#sKNT$EQR9v$JUA>%BNfwr#_lQIj%o7_KWU2~sO&(a6p3pVqqNOJMQ< zmg9rt)cZ}ey-SO%lwI=0w@qb0+|E~T8Sg2V2@GbsYiaXo=iAk2-A5M zf>j#D)%h4NKsAH~#xyApe?WfQPBDh5y3Jo!S7UN7@#16QEqe7u=l_Acu$$7|ufc!( zC042xpYg&7Q$DmGL~Vm(t@=zOR-GiDc<<`j0QhMpiTr2~^_e)hLtV*8uX<O?fg zqqCZr(@m{0D+_aOZfGAYGseRgqg(X#^-l)czK8rbSZk(i z+U}>iib>3pI_*)M_~b^lGa2j4GU#xyT8+WKB;i}IUE;4f_G4*5dyOu2h*ub&w--wM zgxmp|czYp+gK45HVGyTla~8iK#7M8WFSfhDN&OmXU1}o7B70?u;40MRqaxdrQ)WJv z=$5|@>!0r19SsnM_4j+P>8K(FJp47EH+xrPV2kB`= z+_}BNiGHUr>}+qhfz0Ob%nZTCUyhdO-fpM^$zt{3LjE*ia^3pn2Eps$DV`7(w?-eP zbSfD8cdU-Hh2?n+iTMogAr$`sIS$P@PVoZncf1 ziAmP3oP>+K`S$Jt9R8?iH0M3qubzlh0*U25vti%KUeXw_ZnhQ(pGK{lF;v@3{rI)O z@&GFC&P}c}Gd=xxZZ4J1X+V@Rd*vuZ^nC3cT8#^GDMhNCB%?|jP4is#bukGitob_S zU+WD|iqxATjGvgYS4A$du&4?{^7dd?Yd`x!$o~*GMWUIVt6Ji-(B=3NyX&Sp-%n%! zLEZWw?;6@x5c5;MRz%)n{>Oc$_@F{fHr+fhVib+$)x5qM9vW(`)zJ%Z(OPrjaOiR9 z{}F*(hdg-gvv~fsWI{F`ozsHV|6r=ST^2f@I!68vy$^v=-64o1Ml8mF5-5eLU&m$o8urcFNsC?eC-rEj2TIf zSXPYFg!)uv3sCEF%H}%D-(r694#tbR9;)n|d+A>Aq@c&yYwBpLg)0qP@l4t&B+N|2 zz%xa*duvUIa`kxdO5*;O>49;GQx48`-S0V^;gWe;mW77t8ZiO*8hf>WZ zY~%20{4a>LJ*Z{h&1>$hF3#?-l$mdFkAd$B^s>CXoWPqB5{b0ZunG(p&YA70)>D6~3YW-{@ex04+;Zj3<6M=Y+Rd-6?_Z$B6es z(P)elkR-**B>qo$9z+Iy_c~GPziwr_%slKEX1b)-ZcUP7>76~)5iyW(v3Xm%M=%VU$Ey2Gz=%cRGopVgN(c_P1Nfz=p;VMpN2_Zza8OM;j5^0ZB*a{0QC(GLts4cv1o94HoxX%WaFvj-SkU1F@JCHO+Ti? z<-FHXm~}CvxbAVqVo^=ZsL7>_c$8RPE<>FwY@`4NTTK z=jLzF{psW)`Uoadz&c!k^D3SnB+A(&%wmMGc6@mvV>EvJhSEw5 z?z~BfctejaTzh^U{5kk&m0U%y9yPqia=3xBFw1CD^wH3|0Uc$CXZZeb&NB=4`P1g+W($bXrKY`cyH3Dlg}I7c!<*tnfCOk3M2ICKUqzUG=Fv$?J}E)>9jjf! z&*x@>cI>D9RT)Qy<8X}F5*Z6|9eD7*v_D58k&{hc0*Hf|idQ`HSDg!;*I#pb>s@y^ zx6Zyp1^4SV=nHjgh{1(_IW`d?uz(o((Oi<@40xUILLAEOF{fc+af)&4D^fU>lEU9{ zqNylrQSCVo4#ZIFZ~3YWAV7uAqBFM9)}S}9)9R@`Jd4T84*2a7O{a+!k5t58W(FVr zrTZZx2%7iyt|FoIlpO0j5y-Jl$`~bHr3bHmy1FK536XqTCp#^%*8aVz(?~> zj6*l>kN_T^-`p|Pu%!!!dr(X)RATO*9ALIIw)52a3)aM{S&(v$a``kNi5J7r<`gpr z7A?33xCBE6ambsC0?)c-M-b;4&Scvt0LOgqKc}g8mc1*+w}s{PXV4 z6jcOActuTf=#p2k8S+UFyTJUHB?jc?@?g`&(;e8MBq0frKH_R9g5r#vJ>%GrRT3J&>pu7b^4E_uHdpB8rV#4kj1`CH!vGnE%$b+u;L&R)Zmw@muG z$i69PKE*QQ+jY7RWfSy?Bte$!Z9=YK#`GO_Rlev9L|LXyv5Pr(w}6RhMS8D*r~{Ae zPmh5eDsfFK_=lto#E$q$UFWs!d6Kr|VuTki?ziQpGhiZ7I_ zeLn!yofI2qkrHNb5@jW5xn5p0a&4cB1zR8QG0qE1QmjZKUx}Y*Ty$JqECfe4I>eYx zmoO|^!~n)PyzW6xX-KOkf{1a3nkrr)@W^I&%Hz-DRLUcY+)^mrYBSz91XbPk84=)@ z7LlSMFBq~v@e1&(j?mILf(x#|MVDY69k7`vC<*tsf+~e`{BFzyQpUaX6;Y${`w6t`)w?E)~w6 zBArX=@T-P^Kjm8RQyE0FaZRUpp96Ncp6--v{TAnc+YW6IbPX@;Up$){6e`B! z%slEo+7_qUU^-NV)>{3>_!qUlF$YiKLjo~$0-8jF!@x27G6MNQu zr4t);iGft%*pu!R3@1C>Im_o94bc%D!+v(SO&xc;S0Jl&(eWrsHq%3mnREqEl5;*> zlx)1-F31-l3}SpwHj1hB_>1PqI&lv`rMqsN5%=&ie-HZf*Bs{C8I{6kPaw~D*Bgog z$ow^J(P|QVG8p-LtndFFh=p#`t+zk_CI0>YBwhb|kj?~?xBt-%Ta;Yu^24?+5{xmguWpqnF!*|;t3AR6lTSFst-e)@YH&Ni;l8<>xeA@~eew3@ zlD!I)Lm2yCf=F3$CkN~H&e2Fa%ohQqS7T@FVW7P{B=!QaXK`_QEhdF7=`j}xxW=Tt znV(_3aU6gjNb}zOk@P)7Sdob4`5DknXW(h@FzWpLBPjIrx0YPit)^2MF#m;yUCbuvU1=W9A^s(~-lT995{J7u%elhx1Z)z?K zwzJ(fo_I;F*4KQDz-9&FdtdA{jp;Pu`7GV)bqz@^o%^g;v9D%v&v&OVfp55I5LpMO zankF3B7R7I0p*Ob*L#D87PAaSAstKU4xB53{c<8tr702>H3*zDd6^8F+Q>FixhylOHZOtVpu4fB{< z+h(AvD%fVFRB06jsw$dps&)7j>eE*><7Tz-hzfW&9x-QTFw3=o8ZnrCw7Na&jiL1= zMb@4e)5T=LiLitD3ntN)>*;q2Z_A9K4hVm(!v^ zj5tbuiR+rSMWe+2_VeU?fhueo1wz%PuYM1{VTH%Z8R@+G5Z9ajMG^p1k5;)%;KP+w zRe7FiSuyxEzvux;*-U!is`q;V>dLXR1oKH1d=u;M$@hwoznt_{NLz-o{B5|LDLf|U zFQzIl9vJG;th#QDjV8FtFw|WHPn`C956eW_UfSE(07SHX|!5(9x&z4Qac6)d#_=kgNo4iF_QI;{x$PPf-0_WraWe)r2nL zgSEP0vV6(;D4=>AAD{k&?q8(3{vIfj{5OyOk6ZNrOuzqQw>P496+MNuUf4kjs-d={ z2C(D!3l#1uoTV~qCIFFhL^X>^+6nIDE^w1?Gz!$}{n`UvY9bx6)`W(D9HbZxegWx2 zRtg<++1|QvlBu+`bUF6ZQ?GAtY(XbzLalNgAi1cv_*I|dMZx({0StJ&niH>{Nk~H9 zV=0Vr)m%9F-WvRKx$!hmi}(dnJ~j}Mb3)}peCu4o3-oOYJd3O^S{9W0o}n#5GCCwn zDG;w}Ui#w@94;v@stEfJaqCbJik)1IfwS+0Gk}_lk-No{6Eo=ggwFyQdi+N|+QC_2 z9?e#T&RGgYcl13!s!>B_K0p)j_8KI3tXZQ5%1@}g$u8&L$vB$2380D!2y}CQ-o?kh z`&3I;#Ofwu-UqlQbfW4cUy!h0#{lY@9FhOhu zmO*}>2_|?AIn!-f+lR_cKqz7WkYnDTkkQ5BnSHMiM`gnqkh5s-ScipBPr+Y)D1LQM z{37H0S;D_Y6bO8XCnd`1#zkLsfSvsb*6amgTS`AL5b5n#0n_HV2MT9)8LLoV-+u|E zb9Vx6)9(Mcng0U@cuc;n6F6wRi3LD~RqK)Y$9x*bKXWBm>@V>D1{q?Ng}$tCE-B4B zks2#AabAZy7LJIia-KCFQwi)ZPagd0_ec3Cj=IWtNmBYJeeXZ>9%Mn7~E)XRkM> zqT*fb`_ia^-nu_URFO0ev5FWKQ3I1-wR;JW#Q_ZXf?{If8^!hV-qHG;I6i`(VNOU* z(fFeX6U6iM$1uT+kB3ur&gRFyB4jl=EPGM$(Nf<)6JT~B_3#f1qzXAjuTobGPwKmaQbVaD zzD~ZmK`(^hXZ(Fm!H4yM`#u0vRaH$fI3|8^r_YEy;K+e06XIb0L|f}Lmr0; zJ>rOAZX1T0ymgq1`+aB)+Xm~GoEA_H_;h1tz_2IsM>Za_<#EsRx+$I!8sU635{oia zfC`3J)BNtv^z^iGN{Ey#`cR>LYNFqbpM4+Za`^)--2dkWU&@x>mEN=?tvftb80%=G z*#oUWAO4ZvaP$r;=MXG7WlL&OhsH|T!ud88qW#rm1Dp9CkaoyFcKdDqZsYCxrXn+G zbSuGcLWR2o!JYuNlqe9OnpTH#^K&4p@AgBrenrS5fUSbrZ|l$QL#Ad6vmtUNImnsXV zX={ZasMS!m8ger(JWF}a%ygr7nzQ*&+Sf_%N9G%#n#}9r39y~`|UmzI#&~N z7_jvVf?Aqn3a%Na98f`^5wLr$uRm94y0WrzpPKrqW#(@<9}+9`F|LpRkC$6B_W`yc zc=>h*4uBCr5ftGlDHat7M9C9w5rS>oF2hR7w;uC}Bx#O+8or|MZ51ZqR*}Oha{|r( zf9fv(7b(DhVN1-tRN$lfe(J@5KiGY(?*~~6=+td$#O0t*ZBpVt|M6jtYYiF77{?wW z4^SBPl2?(T)$AQeJDjo}y^^TI&C$WNti!^6fmu2{P&eslwiOd}doMl4p9>v)r#Y+Z zF{z%jwB9WB2Oab4L%$)?gs2!SQ17Gg5%}wk+eG$CiU6PADehI#S=wO9Ye7ot)wOxb zcr4^j%n@0KeD*K;7M9kiQ56TMq0=Aztai1 z$i8&hjI=U+;s%qE3I01YBq`d4p*<_;M`H5+P*a3-T~6d%HI_5tTk#D6uecQp63bKx_H7A}JtUFnYSdpSF8!s;@2wE88 z5bqz7{@RMK^ghDwnj3u+y3 zf#GnoSA*$iEa``!LaywG_{R6!a#?L$#A@jzRv~-+Qfq1W$9Jk(w3l4yh`z zzMYLI)SHx5IYspmUKIMr!dv@bdp^G#F*Kl@@-kDFOiO+Tu7&>AOhqaglT_k;1~D3> zV(91*Hvs&0Tip(W2bb%2iUVg^C4173;4^EV8SxIoa2(KSTq{8g;=wz`4a83ASO!mb zpig0MUrAuS9pK~RGXzbfoY4css6%b<8;0~4pO=0JqFUHsym^!PeH<>trJ(oD(E&)c zUqx21mQswv)qS@iq^}{P#l@{7gW_L5fBw8X2wo&=qmUa3F!$ZN?jrPHMGdyTwUKDQ z=S2bTv;5031GF(>6qE4_#?>EW#Nq_(vbFF6eG-%l04gxF;8eFC{3_npMHaDuP!KuVIpSORS~r%Nrvi2!YZCDmsQ0qMlqnq5P7=93{4F+fCG~}akA=gy7h`b(`hte$(3~N3z%v4}hM2)g zZ)vb@=Gj3eNbSeIzpbkNz{}>4c=4O|bo=Ngj41!QhDeOZ%fD>`T^w_r3-0f?K=Y8H zWUoTlMcZr1Ud^Nh0qQ3f9$QHE0u%x3kum7h2@gJDY^Z#qm`ge_4l=L$rVn3zuO^y_ambUfS%4&qT}5>$@sD*p4W<;xn_jle7n zjl7(JBWHG<;0uG`;hL%5N7p$V;*2BL$@VF=qqj!kpi$r;2;cjn#Y76JLk=vS&)5e? z$uXvbe4O!2A-!MDcMUmg-u~3T>V3<`#XPZfQKU~v98`xmXY%EP4u2A8NLY01u2&Ue z*y+g|5qg<-@5q;r+|QeId@TjPbu0Gvc1e<(BY0ZL}Wj zLik{j0KK=O4WIR1=S{zBWo^wPD457L7)Y`l0!1*3og@xEDM!_zdV1t+W@~wNxIPDv zw`ewB`;~5lkSwnoEDH>vqiI#f>RVa9S^V)kM5wnuzG~${xjcc6kUgaUSB|sbX{M}d#>)37o!ITy`@3Iy}7gV3JPUF_=;a&UmvQV zPgO2&;ApR@2^c4u#=a2}-0q+H=CMC0ne+co(Ch$@nSE+FXx6O`8~Xd#@8-hWW8CYr z(cwzENQAv8iVjTI@HpcY-ou*DG{1TK9t3?YKi(LJ!_?<9{lLe&yiC`RfM4&3;{u3d z7}CDd&Zgr`zyO!gkCowu$@jV~bN8i9o{Idy0dAW2Zt&%9E@LvfNdicpE2W2C+B1ON zHpLCvHC~Ka-24spo4+{BfuZlEA^R1!FCpGr3$P#>riJSjC<;5*!1sZhrwHH|Kkts& zz;7?Dp>eO-<(ki7#&%P^2d(BK3SLRvMFn^PU_?4RJyH3QnaOl>0$!NKfjGU+K<|Z> zmMHb7)f;7==9_jk-Ymnz&;Roq6#sWgBh_Tu?$VW&R!TcO_Ec`#|H+t*Ny?s!1l0^b3yj#dNYeM7i0)Dx0bV}h! z*(Dzddcb~V0ydehzmA@)S=#j`1P=Q~27ATmcG)k)pIam0PUwf1>0BZ#HT=B-=-~+B zujpjhRyQhso8n|p6YbQV>v1U_my3!Jdt6ZCYVvRZ#*G1Zz-sJl^oCFcR{2A`cflh~ zh;Hk|g{TY7G4&EXcz2+FvOxRJ83qup=fQHwg${Vg1rIHfiD=t7GoD!Qe>pr+vx@+s zX2IU3CEbTxXh#$$Mwq7AbrZj_VV!2`0*otu-nOWz>^eR$WHBsqi5=zamP64?xL}M5 zk_TKGD{zWQhz2}Kp41@6iqW=#9^25ayNmu6iLSB4b*sd!|2P6+3SFnUc-1lD0Q=MClt(>jq6f8}i#>fklMA`6j1H(=#d` z_Ad+e>K|u?T}oL5bBt0Vi>gd97+k;c@@kwO-TVr5ms3xoZD(ed#C zVXSw$x&)WV-T}}DT6jr=-S5U-8pw6wuKdz<9unvOm6C3n*tj!T{^#t?=se2mrWJ5Q1CK!xu2J~T$b!z|2GNOO9i3}|A1VGFNJH9u+ zH~yFX1W|ICYn`u5j4u$E{r06VV*fP94s_gw+AHPwEg;OMt_YO>p)!wa8bB_{bhFFw z{dR}+?Cpck{jCoL@iR~N5IeXQzX^TrTU7&}_IAI~U>W-eds&p~c7HEjl(N1+z>B z??Z_46><~N$rYCh-<*+DDDl?VUW{jM!VOhxg?^jff$sa}?4ajw_9@5hEPfNW%XZIo z`XNTBhS0Qgh0|<+*AMgJ(XXf5H1EKR4LD1kk5gy1z{n}nI3!L`o7VuL!um=x#v%JJ}o6V5`;GP?{? zqa05ccXWfi3{otD)gf=W7H~Z0uJrY`!zvQjA z2i^Y7Hva2G+y663`QN&gFUm+YpAIW{FnG9bq`EzIVih@#hNmFGYD@o)xWgiF)dS@t zsHfRf;A(m_Ixzt)pItdx>`Uam>=I~Z+L2}yzv`WWgUJGTYFfYC+sf(=eFSbWagUd< z#c_!q8Wi)YZD&5W2a}k?6dXZKXC*?MbLW*~j|$4^yu_f1`k?8;;9LM4JVMWP!T&T>>>lrr#>Q$Ivw4{aQ?%K#1F{Bkp*SE-vubs%n)L zHiW`v^#eNsEtn)Cez^4Ri&1a^K0bi&zzSRRumuwX z@V>gxCEx^?Mg?{CAWg6o>V5Ra-ABybr&+s5VhEQ0?Bj9C2ehdhjB?nPt#(F{s@Rx&Vs&_JE#V8l+ypq8?0qplWmM zq-JyM3|-E!;X7551`8@eo09uYVo=l31x@U9ey-Ya_?RJnV6HHCo!Bc*C4ae*rH2qO z=r7n#4~eZs853~dCuF9$18FG63QtLEhfa^1i=hdeYh#ZGajyt2xN313KZ*|!pAOz> zTXMJ$hJU=^c9w;!jbnwk)9DI=*9$@(jy0KQ@e^Ftz}`nMv)1n;iI2DgN48=v6==MV zuMVPX#|}57P@Pv)-oz3jci)3J37*cLp4I_uU^s)47}lZ0XhSCfP*r_of-5D za7L|GRX@O(0P<-EA#fF8Z&6@D@m6!W^)aw@vc{gFxanL6NMs*f)$stmWfo~n;4o8d zTe}i2%q=AJ?bhQsI5+^HVNTiixYvvQOF>C9H2@xG3+qo7$ZBY4(1N}NiTv8Gy`3G- z?Rns=%uEOpc{SMjJslBLzDUq2LQmq?H!2X(jae}Ejn{l2rjT)!Rs3qh4BRdfX4?zk z0d~d5@2VBS`ISA}w95bvJIGb=B-ZCyH4QwDUPsQlNr7J5Lo(}gF^3UZxBSjiN@rjA zZ4}J(29&gJe~J-{EqXVU@&7@!z0GYheh1Os&Z7rDiiiOKe^A5+ck|F~uJV7hMDW42 z;6Q7XQh2?u1s3yKfIt(zT0G7PnuTyaS#e|>mOa^X{b3pTS!?>#v{mzc^Q0hV5Ub%deEw_V8qwCfEMSc%M#t zce29+&bs>hNYln)rnpeLk3z8{h#-aK``@65_&>0Azwv^#-LEn8^pul}S7L)15BYnc z1#^qa!UcB=hFF(1T7 zgj6+}+rdHHUR~l_j)dhEhyfxUw}KuVq}DSgcMr}?$Ib9u8F^5H#y$hi_vhFrZTMGF z09CsBLsqM6`{K0$9u5Dpp;5!d50k?Dd3j$7%Y=5gt};4X)5CBv4?f{~=TW=0=+T|e z|571&=7tUvaNdx9;a}D|`Z}X~FiZ)D@4M@n2f~v5AcO|vASl;67t4)N{qFg^``9va zI=Rjn5@uw>or8Z$OAx^mo%DP9Mf~*{KEZ)70|_BkpID6{VQBKZ`E44igAKcR2TtxB z8X8(zY-Z6V9^?n+Wjzyk2Naheo%$;-&itL5*@x2-lX@FU3!7Sv@UwO2cXs_+Hr)5V zoTfY&Q4D{Rl02@rT*KJ9~$pe>Az1F-h_p8kKO98#*2<;ZHC4x_3 zm|{lPdM&i)?)Hi`oYUzMAN#BJN$`{Bl7ss9UEA*MduER5bMV!LToq%JK#KkylWQoz zA5V#Z@v9uixC)`D@p4gxsPnol?Xd3k6S1}o{i9-o+&ES%l5&q%1qwce;5|K zKUNZs6W;&}#m5zsCF&G0`ZRb&esq_MDt~n2NF~`}z9kZGwel^Z2!i~9jN>N%OPphDG??hn=Egao6!Gcj zhzH_K`q7Hdk;9^U-=Zi(-h=B_zV3Ia18F_SE^Ya5(E=H?FI{ zR^>R&R~F?rXG0Ys=Nsh)lk3F%r7e^SIi=$t{uaNWc{-u_z)E23fm+XWKy*t0!yOU; zBtYGT3-)j%f29t`?UA!?2ACdLG?N0gW}8>fhRHy-TI9RqUKzAC$5GL89u%0@vKf8=}t^WBBj2gPL+rlIvyTgc2B-;m+-S66(pR^hdg8;BNO;! zBLhg#n6+xVXa8*C@tXZzrDs@c*b;xNojm0!yo~5izL^p~zqbKj{zp7N)Jp8qakuc~=q zo<$KJe>Z#rDJ9gRBWQXXLNt>^grPJ0$~;_v<5U>r6oj7@$Gwg^sUX0`tn*;uEtxhn zl!&8`u<|X^@6LJZv1c**i#IWU1S8k9l^VN()KYOgIe>7ul#vJ`@^nC@B(HKpW!u%r z_EX3m`FD$8e}G0ENN7lFs$t{x|_)4oWKUtWW|3OfnOB9A{a9M(sVpgO;4v}NsIRx zhJBiq;$tPraJh%3at|L_sA}HTtH>!g8!k|>8f19xtBB1Y{kF+uv+`p& z168FoOkLCbd5(us(hCf!jvw}XEIWagpWjSlSYU~^-P@R$e7X`H=2^f`HiS23;)^N0 zTiCDGNmX<1XQ$I!W~98sC++(9-P3-2%kdwIKB*%T zEmtDb`zEyQEIFT$%Fx{P?N1B1e(su$NNyPQoY1>i{{Ahj>K_Hler{?(S9;w7@I83?8haufQ{^A|~;0NZsiE-OdJYRO}(qL(=qN2}SP8Wgi1^ONN z4QPt^w_irH^*dt_gh+A+pN7f3d-^+jq%`{hUJ~%Mt;qVRZ8Ga1t4w8+-s@l5H9e(5 zcyV$p9*Xxi22GihK8Y2{1$p>>cs{^nJL*4X-LhFFyZs_z*g|K;M$-1W%@Y7rwY3x7 zt~NKH(9_X#p6=X{mJ_!hr6#8?;E9qyp|rKFuQ!g)WJzjFQu;Y5VfC!<@az3yHazcP zJ-Py8nuJaM_Y)3JHwzUHGkxbCyrppm0I$6>tFUGU2E?pFpiz#u(u9szcKyD?);#`0X{KQ1^M?@Bb_{2~H0EcAq@j)|*@sNo{fenA(lk*s zp@j#dRjn_+IxEUkg*!d=m4}{QTa!1Ijpy_5XTNLYPnDh7VJGVO8CS4^F(};~Wt2A5 zIc(TU5Gq(N*K4IqUH#y}x%wN}le@+^F8yPa?;LbWxcDInRgFVdWB0SRfRcO9EN`mD zKIeVt9V?>%Enpal^>hr=wyU6RU{mOdZp_^~3Pr9?Y{neC6Sray>gq@>Sds@M|#(%h$` z`kQ!)P(SKU=eHbvS=g1$+t2!L%cTM-|4O0!+)6CU81vpnn`hcrOEW}u-ur6F1}hqC z#ATjgXTw*2(k$IERoh`)51%|T3B>~c*20J@6AY|i9-L_6cb*)E!vQ?pW)<%bRUX<7 z-8)PLf9>1e-d=k?ZG8l$?#z@Cm_Q#_^A|Ab!UVt!AJV$yuqXz|5a<`M?56Wux#DN$ zby+&x@9XmHYAF@+u}Z=(j=11H%Ddm23t_@GSTv627!g%=L%t_4`FOaclUAd7__%{T z91i=_-d6bx`EEofb*{Er+Paj+N+~upGkom9@Q5P3eYQP&g(q$aQUs*kH4Y^9Q6VRv zv8qU*yPF!mfh~OSsmb^d=_b-S1=*`qn)u){u5KCqxk@)ovC4le=agsNySA)*u)`#D z{RjG)=1j%V){KsMo}>D)kZ(ZENj>*d9GUKK7r`0U0jlkVFYdpepnfn8%vFl@S#(WY zg!1Oy?|%F}00^ftmWC>jyc2I6voWF-5^J^p^Rj>j0BAnk{=WdrMc$)%c`qH0eIoLH zV^};KsdrWCqPD(gZD?hEf81(Z$@(<(EVP<+K)uubJtjm4PlUYSrS;xdTf^!k_GiTU zqJuLgLi7V#LFNvV?>?MmNeLJ6^6|XTi=8s8v@xB$6UZr6WIpcME_#Ijxa;H@7BQ)s zx6N6d!{8;(#`}32$5ESg4==jGKn2Z|Jy?MSx{^PGm;Zqk;XP}jfTp-SW1{-S$}~%! z1}{<*WAAT4kr-Iv5mlSgo}W!PbaVSDaSK*Fs?#=J5Sw@2unu@+upM8HAh*76;KS8BqybvKly5?@mmJGtayS;Cc7i2+yn#+Rj>)RSUVN25#(;BPeL^wGT;> ze47IVJGzzmJ*@40D}1xGVZ>i}WM2^wW3)~FvC3CbzQGK$C$ZyP73LBqIt8msWJ$@% zLlYChVDVNPMi3eOx%@p4}{EpQxx3v6H~(Vsl3%*-xV+k7mVZY1?hMAzx{tmi!)Nhtl1{ zeK$&w!pIA(jJG9mxAxLmA7cs7=ao$8J~o-H9q5qIYz+`7EuB7dHNjvg7DEmcTPteT zkrxu}yJOw;{q8#xyZ`wUrLuCM$!voX|6td{bejZbzRcnc z9Mkw;g?v{u99+2e7=qDz?=5Z{XL;oetU#yZh93$!ITaWmBQgMG!? z`h2sPmZfxrAIx*9btw>xLbdo!5Bn!B#B2vakYT$`^RiJvf_Lzb;qTE5h>nTgUb?rN z_pfQtzM`#9Ylwh6Siir5DLbYED>UqVwF3~F8X9=wpW`yN9b9UHBOZ4eM4t=KJZJn} z!%ZM8me|j6e@)l*Up1$`a`sbd26fql@$lt=qTK|-;K)+jgs27QH-N62IaF@PVY{xI zhli?c;XqrCUYf`K)Q>#6Nrg+M(?{KLNQ`iY0`u%v{GqEo)K1+1bA<*|iX@Ja8u`LX zbUdNPv~en&PEnRvG{i~YjVe#6S;JaDoC1Bt(##$};feO@Mz{*9Hr_lJh|-2wBcR=t z-R@&k3H(^`WXWC2@u6?;j*5MNQ1|KRCi3ud8tdKeg6FxC0AK+wQd>=G3>&bTdYQFf zqN`Wv!vJ6_vSs)rQKo_V5pRswQxa3Mpgi?;%G|T$G6BGO>?8jx{)eG55D-d%ERfH< zeCaG85iaz{8cW+QZnhDZFD9XArn`&~3$V%zfA4i~_%ty;9gu$QLDy7JGH0%etW8Li zQW5vY5uhvC7{f>3006FQsZxbPc}mmqGqh`rn*60r=+c5IRq=5(gh32-(A2L~e5+t6 z;8Dz!BF-66%F1mLYT4s2o!eutXqu`Bbu*cP$Y3!DB^hmx{dak|n28t3r*{Ulv~`Xx zECR$+3E~#Ow}HHlV9W`Iy}3K7Ve=ncM#*Mx{&f`Q_s~XHJjg~fGcY~g*q|m`Tn?A_$R1P ze>-Ut9+Icg!m8cGiisEIz-J(VWI|StRvyCj3-2CSblny%rh_%%O?XN%T3P@pEH1=Y zljf6k0u*!?{(l6`mgU^iNK&{VD&4m>E% z)c`|tuzztiL{?v(vlIdcl>j_wyw46Ln)tH%4DRu-&MT#*EeSAn2`@nr3%0L8Asx&; z5VBS8Je)64yl;(oaS%>W(>lJAhC9@i*h7~!GFRz6!97pQ^oZPJ@Q@ytX_PI?@gCM? zI6v0);;!~a-)Ev%4o5`mlqi!aPAmD`P<-S{3Vq|ADf9}%#2*MiM4puAM~r^_U8JH0c~=->)q7ir zgc$qFWBjU51)}y)s_1-oqfhKZNQy_tB9FiwdV%*vWH1#M1|XzxTOv;Jf*JzWke~ z0L#??8BvrjnlH()QANu?FNG}ZaiSQz>fK?Z?UTHx_KB+nPS1RJMlPX2>CTChWMuqR z@!$hK4>@G(!lIqHnZLpy?FOdeJ)7IC>i5E|V!=Wdp@KD-hd8+@IQNO`NzA%!oRlVq zG4#3PyJ)Jnhjoh6!~RGkGUwLn^^cnAymAc+FBVgKs$>ci)BRplES^s|i6n3Ko!~m$ zOCmZ(jNYDpno;bbgPGIK_~F9|T*EsNy13KPFMTk$E#oD9=&VUv2?O<+0XnAGI>*TN z33@$voQ&|$-xhn;hz4s5*KHA57bki;%l;t1+4?xc@f7~~=X4fA=EzqY+K`?d!2g;y z!T;tr9{rMjh0EV@4-b!#RQ(>GmQjX?xeHzLy8Gm1kDq_^WH%VA36cgJvHAKdMdsCn(_ovroZ z?TtvIA{EOkQy;(FBC4OV4h+Mx~-UcyMRzZ-=L7Ue@hs>DCr z!N7s0&xJx6Rd4X^!tNG8KDG0S@fg^ov?5hX`=Ch=8QT|xd!ZWiYgBE+6Y@(kws&2J zoUt7`Hg6$+U?`9pyP|x~PeXu($+=~c#H?9B_`rNnh3NnuYQy?D-kLICEdYdL5lQ*#XB>6hGixN%C-q+roLWU zb&?hwREChCk2i(JBIeAQ5xn#biPw!h`Bk%t4t47idLJd-B~YpoGQ!Jh21(=zh0~?a zsCA0eb4lkbDY8E|Rax4UI#|QBU!{^ygJ^o`!|o7O@j25y2qy%sqeGN@p-#U*6SPg$ z)LV=PRVB(#Y42CNR}xJ;<4beN;_S-lJ6APupbIlLPUi4&D9rGB2ISpH zA-h^5%8*;pHV3-`6DX_FbSds786#taBr?2+@UAOg$bNmijU0l8fdNtNz@_B3mQ*Tv za45m*PyAAj)OgBVcy0zD9qbZpDrn?@s}Yx)5U~?$$Y`kVT<3zHpqiVXA3N+6JGj|4 z7M=ZQ@&ZcI!XeFa{?5)XyH+!G(7{YLADtasVY1?|aC0&d=54H@8Fu3p-(2XbSImq^ zWt#Yosr3q*=Pb|EkaW=J>5>+)5H1R)Ua{*iO{yhXxera*H?7kje(pKel%)0y#RqHj zp8-uliW}L(Brm5ljX$>Z%~*b7{c2_M>KmNe%Ub#aY{D(cuF9!95F`@74d}$C>BI&h zZCM{-zke;9n9$k{2Agn+k9tn0Ck7G`b6$6Ar3eY6=1-N{6`J$rv#rl`PT=o{!QkSm zNu~`GQR^CKQ@_rtnEdvH?muPu)WGKm%the1%nTmqFrzq}No<%r2x9gk%`8O0 z!wOlXJ!smlE%cd~5CWMk?X7b4c*1pe!W^xM@vL?qG;d&RKQHM1VKT)SJO$L!#1g{( z@W2+(SXNfDIvDGVC$t(I_}I-eA91IaM8YR_SJrI5H4xHD?8ig5x;YpmlE4eCFiUEj z+qg7j4Cg$7t5hGL+>$zICcwG$r-AqtV}NSNoE0P(95It<*Jjw?cgsV1pGALg(SQ>!T27nMlCm= z;J~9NWwuJSY$M)nzxz+5LdFsnBU zzWsB*ABUJIn@N)9ol_4|RF09~*3A%%9?H-fh@4FJxV^L_wX!t;KRXm>ivw8eOL?LN zH2v3ZzwSK{us?Wk7=%ZL$H7!pJXbyjZ|f*ce8bTA@?$tcZF0%5>9BZ(i_qxfKb%qV z$358HHyxeSl*079NF%Ovnpmuq_hq@mD6*)dhlwK4vMz*!w=!KrgsyjVX7P?d?J#f3 zKGquKgC&*_1h{|SfG+6#%&se(MNTDJ!AIoSKf3l%S!{oRI!F){im`|_g=$0mVneUP zc_JtG6J&I^d_e7h>{xoXfoHBiG3ASdo`U4Y6sBYdF&AYnmzgzj!VL<29S zP`;>qZA^<39@N=t{zE+~zEN;A-!ueZnd3apCkGH5t^b?F49Ib|3LGH;jMmr4IRC%O zfYw&;+Ukx=rTBy8?*|xz@7I3|)&#uomDsK$4Wqo)F1*+3qgX>gL-m5528&n_tDNV^ zeZZIhiO+Hp(vOda9a)r^7c&C#?065(_S)@omdebgQb&8+PxW2iY_qqiVubeT8jflmSR8pB} zPZY~;eA$cYi=TF)T=9^spmfI7E|IUuQkdeojH}{1ZyaTk(Qvz_1S?HFq&S-sC6FFg4qx!PQB$`3ILc z>&0EVJn<+Z<+gZ@Na{Uje%*3%fSBIfUX{n;k^9oKPu-hn9RkIJ>NLEXf;e@Y5=D5W zT6Zy7@i&c2r)xKjFZWU*atl5QOBShi&lr$l!{{)e37hTPI+-BJe?=->s3L`$Ev|3D z2Zp65D+5(h%&uX>p}7z;I=+l0hfk)LF!JFB3$t@2(ri|Vvem`bF?RX^d@hrA>80{j ztCM*0;XaGBYV=ww4ga7o_-Utq-d`@H8V;N8+f9$X!by1ty_4g)HU7tfV4>L&U%m2G zODdURr)09D8+fJNQK)L}*2auQ_8DsBhU3hvb~+6{kR{_UhJ#g?<)+zSeiW*ayVb>F zK8G>g6`0#q_ZL`a`dBvbT{ocZTs3I8&J0)i3k+(MePXe!Im? zW(Vzkca7JwQ@9(&yF4go`@8({;mL7GW*K32>d49Yq6D(4O{Tg{88Q9U}fRj3U1SAWKs?$M)04M zez!AUJW4a>A0O#C3yunb+u&!-O82U93wyZL$<2(MB%^apD)N#mQK!2^Exbk_`}uHE zsIrMsa{j@LMio0-{1YDnZe+(Nk5_<(+7X&1W;*)BsE+#f2kA)NY9~pdB-G@IDS?z) zHShpGfLl8|u(ReE0CU#icaog@@vlL?(vR3A8z0GKmRLH1GAyjA|9*~co1Nnipt36| zk8%>R@F4#_Y9zNVhi`}z^Xf)aedf{cn&edPn=x+j<<%1!@uP<^P0>aY%%nL7M^Zm= zn@p?!p5*xgM|gOOeUP1!10Oh(wppgF&R8-LcxJ*W7O6Has4mRl%Ik+u)=Q{IcJ}Vq zi-ltFZuh$}?P6;OjuxDqh-AvRAuvQTE=n}Dpmoj*isXnmQ2%-6@5w{((r=vXDRxFm zca}=m&?XP{0aUB-5Bi6j6UpOhb%&8O=N?I@DozpT#>&{i-ZgaT-OXPrQ_fx?dRcO5 z)A*s-?w9C6b(6(w-^g&`dy}i_h1aB#z)$wwc_n}VBG4NXZw2^m+(h|%jLC4$_ann2 z7O#+ssMT$~DxeemKgdyF+xZnQOAt>Q|3UQg_BTfVv{o=N4SG~tTm86_7hCffc{rXO za_M1Z+7&OrQ{_}pQ2=KPUqm+7ad;P>sJC% zcMCn`aC>h|u?C)rx4XvVM2bneVa#tf+Kc8t#Vn*O`m)&Pr)qWPdfYwh=9Vx)RETRko~;L>zyOUfI4Sq;y*6$)w9Fr4Oz1+CFyS2{Y)&;ahR4aP%YUDchl` zjga(Tx6E?Od&)_VaQNjFerO}p@c^z_A90}=rHG4L@M>@K!n$8PvnTv5Aog~Wi|5Ia z^~`t@Mco+JWG}enqu$7;ey;VG?(IL87gtOgq_y4K#D*Q;dP1f>+jZM2dQs6ehO>jj z(8jbEz;T&6eqK6t#)qsAe|g~9C-&lj=AAPtwsxj!zv z(R#~fm#BS~8vFmw{jEauOGND6W<2r!D5)l+zq}S@@2?C+kV-+&tT{fkuaTk zk-0>~nb*7)VdEbCrtwY5LZpJMa7Ui8UMk1)OcxvP3)Q@lkf!?;@dH@7h6csE(7OZ7f?DPrbwYPxzVn$iK4POnW z<<>B19>TrImLEO&%O1fp`=Gos?hN3E*Z0l8ELnfbO;h>9iC8izuM+=!rmU_`caH==8$wsK8I!7r|f#Oej%x*pZ(7EHdXG zPG@{KFGndDiamn0o!8A>uJTfwkdjCQ~Pz=Erf%S8bOl$-J|V|pdzhQebS2>dA^ z5?ZWhx7c6sk?wd8=5suj#ksoCcz)5ooc-R1d`U;qfg`b|xTgs9c2FgvrM0D^HOvkPWv>(uBb&RJ?}+;EPzl@V*ipIw zX)NqhaD4yN0=oVOk8R`K;@NmJ>&ZK2Ha^jYz34V(j;Js|K>xc{ubb77tHZ1g>GS>{ z#p;+JdN-pka)L2TykQtLJ7ojfw_rToejm!zGn%%$j3u(B=yo))|kIs7dM04OvE_XtP zxaBPQvQoSS(ytR(T%bSZDln%JLT{hgvFuYL<>53?xf?ZH|a1-rA1djDS9w-%bIs+)Kji_y5Iv#-Ob zU!sW_Ev$R}vZN+h(lEF>P`a0)p*lcm*2+wXrR0IqU4hR) zHBAf2qjz_>X^Uq2{DRR0 z1&FLK9pb7T;fJS0!SqAT-^)E%$O%wdRCLM`4zVJvud561F;5?AWwx&#y2LcTc{Atr z^fZ_OC!9$SV`l6j3`a?ai)=A;^`sS2$}RUK)mV7>oN@;NLRAc~2s#^jYD%FrC7mw! zL_QmRef=3SH%lDj7fzw)+=Mg;P2@z|oJ6j@GufZ!7cv%;OWvP#S14 z&*~jWyL>l8XM%_7uGvDL_c^UoXRbE!^YgBPmkqNM8Ak--^#g=h+ZrKLvdI00E!3wE z1THSFGkgL7W-BqrHFV{}2fnSF}+Nv!vQ<-;|GwYbKlrFYG&r)Alc2$ZP>(Ih6kGBsazbFbdu=p7G>fF z`NkVHHf7Kto$<#03AtFpj+Ys*I9~s-x;XETrrA?EQ6YN)B zR&Ei_ku$FLJRevqYHVaz=TSp=%#nRKder4&zvM>_yS*K}VRwYIFVhKG|G3&8&vq_( zeu~6PQ(l46HKVd9QT-EmMM|oh;Lt0hs+u^sM=RZe`Tm8x84aBt*kwT84*#}|k`1Bx zTv_}1>sOj!#8ljSrLyqJ&D;L|b!tMDO}*6OilmJV*TMCMVk$GTglf+=+GTEz#A^;Z z-L5(Cg?6qoRw-?9e$m|XtaP{7uYj`&=cL~LF|0ip_YnGYzt1~JnV;776;TmO_ma7* zAW3E-ctF)f-4`0&xtJL1;&e}jNAEgA`_;J_5-(l(IP>d~p^Vi}NTkrNJ`eoC_rTp} zg!NJa#u+Kgb1FX`nB?UfF5no%9zMjjGtC=+vtE@Qtzc+Sh`Z~YeXLf&8gLyu<;odp zTwgu%OyFGYCBvYY^$s>v#0~zL5_#Q3v{1Yxp;a=SLLOLynwedhYl%IZedc7MO7`v?G*bkP)>DU@4 zwv8L+W5>4<<2M&GU4dl=FzIrW*X5;0YtN8@qTU|Xdt2um8)ZikvG7f3`$mNTDWqLF zvrl|=d&#jsf12^k$4u3(3+EE$ zTZNlUukQR_5BozgQQ$|H2$v_pY7cdg50S1zgOCnMewIz0R%7NUqnbItYK_X;y64)5 z{Jh(UWB)E0_pS9(V4A>6#I2jhPXXOD?MZw&!qYVErslDJ)e%-RvR01O@LzN?BI2^K zulYRUwTza1PvyhU@X{4g885f*J!dtjg;ITZeeKE*s`xI!OjkIqjEKuyk4fONx7TMP z?>}sj*+aphN#8FB{uF&Bl0uJOk*h!hcdoKK}eK;GU6p z=(Ul5+Y(m+sr?slnIAPH&Hjbx-no}EFGCumia9v%or+~ZOkn_SDS7CF29lXnj1TWs zxw3M6dX^!E-8~^o7m@!DKx6*}XwYM+W&Q`>l6#!=>#w4>u9yiz?mahFo7@rPHU`In z`b@stV!OW$juye?=8o=9wRbK$j~` zV<_x|ovut>7s6>))F65HzdBeOr2jRljGsq6z%HD`PpoCuDk?3l&CDLmN+}_k2PE?4 zjCVn;2az?^)oT;w|3YS~mvV#A?^#_DcXxP11 z1jmKH_=fkztfy4yQ<5*O9VZNg>wUj3wvWw;nU( z#mUI>Lo4yWpx5{32Acsjtdi=XnOMw}X{d8lmg&RG^L%pmi8MJgNdMifsi;nGf8zWG z$noQ6xKxUw^%|8ji!pM69%3CzSsZFzR}wvypIM=+(yM3CJ>pW}sC6vFi#y$K7^XIl zIyR5~5TxAZT4)Y7x8$Zf+gzVMmCB=w(y$A>CU`&oFlU4PWA`Y@3|z|`55z*)Z9@K8(<^6^o7kwz5he6y&Jre^GwvEb=1pDswr2h@)@Fj-Ua#A z9vafJQUNg~2BHc#_jL0Ccq(G-R=D1kYhH1r~#16FRLAW)s*c9hL7%XSy$L7VgU zqmgiA33t#{&cx3C#PK9CxTuOom&+7sqbwwE#?ZU>4P#|S*_7j4xLhFXVLy{Q^NiyM zDAkzQd6u}NH>?G*?FIN|ki-j-z?y#=x)m|RW=1c4%JCPLDK%zgg`5Q!@N z3qJotT}%JJMksn6={|!Ol0y!;PRVg*+hQ@yR3A81!;mm|^Ug@wlP1BiyRP(w*p!YK z8@4ZY@rZ0@1WGL1VY1Wk(R>z6_w*xg%$8UTtAw4={ki=Gajkm&+gCWhm$93}V5|sK zT)-9A{ed4pT}^7BLia<{?@xrOEEe>A5oT-mU&%|O0I)ZY7zkm|hYufOnjVXGzDfdb zgn{_-P)m!dv8m~3(`2w!xbZIX1Kqx|xsrt4+vC5pxc&O7z;pfPi$(dU52{}|0XBx1 zg`=RO48QZI_MvJ*zrw^W2(J2Gx;_ymFD}v6m!!0mJqV$bMye_A?(ms{UvOO>UF^CuJ6uCR$?`k#S3SQWG~b$gCp41 zG9Ei6R1>{k4y8ZnMvqtV&q@-`j0<2SV5B?Lv$gI5O@y9x#gpMhXO{N2E?+Iy1o%0$ z0rn1$#TD+wnl#k8Oek*{6092O+wJZn9yjacjB{3@19B}M5MQoO$9g`rVQW31WdW#6 zx0kTXd#A*F5Igkslhg!&^XJcdiw_=-p*fDtFYTK*gyMD+wzbVo%^pJFA&mkg6+!E- zHn?>sp6dcd*OEk@h@OiSqLFDl`_esPXUF}=Lh4^ zwy5$tGU$23FD0ffKjV840q=<`FYLv5m_FCka4mXHr4FcUOTUOH^sBb_UFMLd0zhVK zw_{UKP@wOHIV%+sO-(CuOO|onn_Jqr19LOV{Q;$w1FG5`LxoX^nU&N_4bA|lo&tsi?6%2 zQyu``Kc)2!LwZTrRh&u`3IX{gB{XcadtE)wx0-*wnqLUnJ9b>#^_o3EbN4^PEtjFX zp{l+N98hl!?f3b-vZ}?H??YNL#>n&{^R&%m4#QtyjGJ%W{@s%uEtJ01v>|>=5FUbA z?crO&D?L;HlIM(B-S7R1-@aV*=t&R56&|LIrcaeQuu5_&6Y<-mbLa1ZaoNBPOf(zk zvd6H<6Rz0#`T6Td6Hd!@c&XU(v;LkTPQ2oiOjAZgN*7;^6Jl6$*+3qzzj(I{U&Ug& zgmCAM_edxVw@_AixA=F@Az!1!Tm?Z5@p#LO#~-KDBvFZFWzG7o#io_#xz^1Bl{Pute4L5k@k8=5+#-$CG_Z+{)=T&O(}Gt7Fm_{kW*oc!LV*gSX1`QV*V zi(FP{|5tpnIzM&Fx{@J>X_d{hnd&pl%*^;T4zE4qbKN_1_M61fJr#U%+n85d+Zr36 zSNqvzrubL;V0g4e09QESrlw67DL#~!QQVVja=~yjo ztT`W>H`v;8T5i9>AolBqROw6|E2QN9D!R!-$V?nFt1-h>K9zF|{zdsvi!iJ_AJ03? zjik4)LMzYfA`e!QkLi*v!#aJN=2I8B5$*(LpcmG1MUfxE-?Mew*^6|uAuK(g2?pHl z#Q!jVNE05G1Pg`suk?lDt4=3^RYV_td zHq63aH1FbF$!SP}Q?#ZCb(97ZGcvb~(7j|%#Bn#FU+P{m{#r(-?HGgLBl6ODf=%E( zH@j*=Y7F>tA!@LW!?$l;jEIF$vi&ht?xs3O*1#QBbZTm9G-_eSl-WpYRG*Z{+A;i# z@Aelr+6!*-mF$0Bg3p2!ff3@$ClM0ncR|0dR27bmj)sFRA5g(y@eRt)vfO%y8l8L# z06>?Yi4g7dcowCJJ-o%F$?*CnYMTzgWUXnV4(luoI(Os0ppuw$&pZOj6jX{9C_1mDH<3G%6>{C~ z_mL8*0>;1T<28i2^07tQ{1K+l*$j?WVOwE#z5)Qdjz*tm2yF+%hcj}PV43w&QZY=v zasWONHo=nyH|jTOIk=jNLQWAMD>HodBw8L*#D%Fuj(X@+o?9JAKnk=cFc1s>B7p_? zxxKlHS9&?HM+1~i-h-#^3G<84yc&AIX2$7FQ#gY#<)#LHgnbizS|AYeumYw~7V>BK zGuDU5cS%Ux?!AZwXey=hboXV)qtG!!xa?_4yV^p>ku%sl+D@m%_5UjwHdX9@FUJ%(J+k)W8r1vSj{gmLEUv0B zJX8%~2G)N27axmGKbM=2w$QHFs!U4{s|lOPw++K@AFa;OjLps#p)6#h%lG+E^;;P3 zxPNjgESP9%^Lk#gxS)Un0HrBec^9R^CbhS?Zf-VW_xgWJ2t*dBQoc$6Yd!!7&Yn$v zYCdt1hv|l3n;OEf=+uUFhQvhhys=kfT(Lf`W_8KwA`fa8b5|W11Vztpl{!(x4oVNtAI_#6u|%IBgM&zr}2pnCAxGv`yhP485Y=woiqcbxf$Mrbb|Awyv*I+1~e6%o^G7N+dh#|fp`|3AK zn?@%lXn>Oy2>j|ix=NmsuxbRTo1Oy1>u<-eyl8DL0PH`BvUG7R*Xx1uLo5hF|3-FB ztzR|cXNyK5K*6-^jSHeAav*ER{t=AX(6$Ukx4S$vi$_5T zm!rGsU)#y>>_!WHM!q2Y15LA=kopH~xGo9*F8qaiyC-r0ZXQxd{1i-v01vo0(FaAB zePu{E^Fkcq{V7)&+)olI#l5^A)Z*8y-+tf9s>oN%oET%i^Pwb=Mw}w~C=E?$yRSr0}Gj{2rZLnrX-Vtf5*h!C8J|xZu zWNnn0uGc1MdNkX*UM~y2D@Q;X=fEQ1mJ3!E*aBcDyOwheNxya~Q#kW=-GS5tjNU`? z5o$AEsy;u60qiFuJsX8C!%*FMh%o#*>RmCVMIw$S{L`ZUm%j*KPh(XYd)e-UUGom! zkqgvzG`-`Fqc4JqBNKi`U81Z0$z>4CMat#{sBYWNA< zJOkKIu`#i-=2lh7ucK2Tuu^m9?d|Q_xb}dsysLijRy$MNA0y@})(@Oa#^3bX3An=w zRrdD8JJg4(sNQ#1jWNi&y1L+*+1Z;tGJYLGmVz3;mn!~wR82S%d&ef_ads**jTJ@H zcE=DV5B2?IH&>S=tvMBcSGk1O^P~OoDn-xe@K;LdJ^%}LW1*ofq!4hc0Ic`3Pv&p% zvr>Ro8fL4;3nXwSh~a&EwI&x}%@_Yb<5QNKKa%Wou1MHvcz8enqM7b@%@<(}q?^H5 z(d~z9pPp`om8-lM-&fJCI8Cxh>UpiquBBo$Np0t=0{|oa#o>pGuXs+6cZKAorbEVd zS;*06IQDj$c0U&v>meSi0lyu2zAXE{J;MRIs!c|G(nS0adQCNvPJH6zkQ!yAuEL~F zC>~rKmSg#w5VwPZ>4sqrC)zU?J`iyIM#P@I76^O0P09+M;%NC5il#RB zPp=S)&Qm(>c%YEdw!-^Tvn@nM#LxVqEK}IAp_x9i1W8z9Wy>Mtykm zY6J1)g(F-i=i*}NlpJyFi3w|aWu@FY*9TYl7pc#2o+}^kGHI2PTkqUrU8ED2h*&BL zce@1E?H58K+l9kVdc@w?A5Z@Ld704aXBt|VrgDR|<7Rj1JVNcDa{u6z7awGP?u zJ~M6r2A!a+^xUI0^G*MY#o>&jutY8y5%=iOHkvg^kD8t49KFN>C5GFFCgk9Ef3(o_ zXxYzQMY+~XV*!))_d})Vc}XUdk*^mGpG(myotmOk62pFRjJQ`eie+vTeHw$!g=x-F zdJO1-Lhi!NMf(49<|htT>gqSo35&4U-2;RQjGH3PHNj|^7CWNcQpuci@jN;kAFFW@ z+p5biujo))_g*he?(PF0d06U(Fr_K3T#}D1E5u!ieVLZX8daxksaT*}^>p__5ipX* z;2UPwq;s3+&)@+^uu`n`ACUc9^#Spz8DX2LJx8b((AEBS?`4LFhE7klOk2lMs;=g+Yr2TaylI{S%5?4@yy4T zAs%0}#smQ(hPx6$VV%RHHPt8G$84v02fJslN)y>I_$Vx=bNuYu-U|nc@D*7K%{ziA z!y3w;!#jaLR(jkMJ5n$4(Pu=aI{|6o%iUT(tyd~HE`5=C1aQ;elbxBcn?G)1+>|7P zTy4(NM$Z2@#0n1S~u3ARkmxI4AlR2D$D;*#Ppx=)xVcr==T0b@hXo<^wb?~uD^erj{>=F zOJq~}g_90XS2WvOMi)BI-iB?#eXD4Q7WiAG*s_X!;+gpq=7C%4;3kM}@|KQ<8=U0{}Luzh?mul^)vOk4~}M zGcz?$Z$6zYJ<6y5WPc3BjB0&Etsb6)sIh8&c#Y{-4If@Sy?TXpX<3YP2dNo!`s(Tt zhf%&Gf1AK+ZLkU5PSmW@)1~8{S-u)%(}Da{KydD5aSi+m&SSRT)+(qw&ug~l=wp7g z6JF`puPZH^F{CbRTFayZW)O2@5mm_e`C|F}#W0KuJ8Q>n!_1Dqqsg!8Q3J&fYZ&1E zE6$@oeuz2=t_f|z{*E;z!PG-Lp^zRwj6Yi z&Z*`)q!%AM%bp#qDhQ56*IKhe0g5|1r;&$`a0&As6C^`|XWn;gTFiTB(2|MSuBj)N z=XCLUfa9v-yR@`TX!6$FxeQW^K(>c_D<6?a#7OKx@qGrUx{te^{V8JaPfQ_T2X^}u zNyN_HCCHV}!d`Rj^&I&xPs2i?i#YPkkqof#W_R1O8H)b}7mP+PAdeArW8eKMu92l? z?sOcWKPN53eGu;^x1S2x?fD#o57w-W(?b2BkA0uf0;=F-y=jQ;vU=jC zWE*jnhP!Q-d=#pBTC}^2Ak9u5xu8fJrvc=$-Fq2y+s=!zY6nxCSglDxp@YaRTRkn=(Na#9CPy-ylDoxKxtt|pf%Ch(lYNoJp7FfPPg=Z z_H>E5zxUHL$#oX~sF`SL1Au$2Fwf97s!%On{kjattnF#P4(^ZeoLyh-@$KU(qA7lw zgbgEs)(PQX(-FVTmymK-_dl`rpGwyr4Bo0CZ#%3StNF9nB7?}fweW$}^!uJRY(gPy zvy%#t>JQS4(-NVrI45^s?I{v&Q7Numa_%RI#+(9*T{B2-m`l!9j_DPAPFj;-QyF-+ zlIDd`5h5h3RgOFSn&)3rky=?(YQvguJD<*;;+#V?up#XMe-et{CzBqygE?|MICGMi zZ%eWV4c*@7eg^Jh-uYw<&L7RTbnagb<$ouT{D-~I|JYbE>_l#fHyn4h3F53L>Uxudb%XGM4;N;prD@q!qDQ&@*-} za5Zb@y}4~X4dXcgXl!gO4jBqo65E4em4kH9Yj7E zyHH(Mw~0&wA;@hoRqEBRcf%#5V#<^D?F@xwkLi4@&<$UDD6Ze|uLU7TMX-rHRu-0^ zyZ7!1AjB4x%+%D2@wyX+PwEhZFzZ3|++3n=%H>ZD4ZPqP7a)8R1{VlJqN%zf`>xhm z5iMyvFqDy)eMY*XgD>`XtSSAAbu9!+c%F~1m(bGOoJo@GYh<+l zlNrB87(VlE_+#l8b}kYx*Z5vm98#nkzT8+dbLmjrbM0#<5UvCF6(XI!EL-S#{!{?~ z53fula=jTRX+Z>f$R}y=A4G$y#YTmhrS)+(JaLx-K*6`QfBdRF%U5c3(Fr$98r_8_ zTaieIjc6D5`bFB3;$kM}k<9pER4jA-(N8O{PG+S$mSI(7&^I5HJhFGvG+bP+g6jr4 zYICzwAi>}}LWGxY?=P0eS}Em#ND6cnj%~J{TyhbSBtYnrwZ^Y8VX}LU$S06jaeG8o za*?95`*jvoI6Yl9G&RG_*d@TX)BUupWmHep444Ds2 z%N>OIcQQW&?FB;*?9pS|+ckWjKVMWq<5*hvlRT7L3H<~*R>51~9UJ^iiz6cjK*h%H z903>^W)(GwNJ^?`S(wd+-GRqCsxsIwZzs(V(Z6C_Th&4z1_oaL%NAGb;>=c%Uh@yP z4`KD}=C(DQz}_L8Y-lZ4rU`Ea?ce)dIxh&kVmf2AjrN>BzkSaK8Zl!S#t!VAl(E|F zV_fiuW#nG@fGuvf(xXY@y5V{3PWMMr7@$7e9##Liol-Adj>b*inNq_1!d@MG^9DIp z%BuR(z0`%a2r7IZqsF!K-3tpjq~l@CGrfwy&l|A#FR(pVfT1m!z3D={Pdip`nB^kK(ptxQ(JOaG&i_h9j{n!Kv5Jxa-14!g zDtxwGur1f4Cv~EJ&|`=41cxMxy=t9~gV=1Uk&E&iG@R#Fl>8}FNt;vwM;I4tC!}oy zEP7r6_@9nggr(d{#}U zUObPl&?*h5qn*_cA&4D8390z93x?~ z&fP>-Kad81lkane_1}{-+&jS62FkZ60k+dqeWivGh`9P$H8^=YOpl<+2iWz$y;Q&U zIRQ`?VwC7ao@{0f5Ma0g^K$Q%yR!uFINBITo{Z0kNQk9NCnkiO}}Mlp)cNB4mALRv?{jf|P+c`Lr6Jf&3P4 z6J}Q}PNUrfl+IvZOAsRv#35r4j6U)_CeP@oeK!9JTF44&7iG*W7xt;8|QHdB7^YNVHcwLh|f`~xr+-L*76F9a|bb{($*Y8 zAIKe}Y@SCG^w#i}r^GJafSU_UY$Ehs;`f&w#5y4`!UgIG3mVsuEyt6U1aj=jdYgJN z1J^udR8-VSy4HlV8ZMqF6E5Gi(V-;Q0p4!L-TLNi7;dSqaW82I+zk@LcKoBg?Y-gw zkLv!%3giE+O!?j_9BgHku@V|LS!{W6<*pv4=txOH!4hBRQFpAkfEkDBk*Z6<6KOxc z4QF2W8N!fAVSoL*U-TVR^w2+ke9_NV4IIKOEA3GeoJ451hp+xtiym^|6|G9if zMYH*7ARm&8Evxo6ipn;S>v;&$9Fg~kLP<%<;rkceC+_arZf;V*!qFrw?(YFP-u}mz z*C0&fjfo=JM;+9~wk_wuEpZ^6QMx|-uY&m<;RhIgymkf{otk>l)6*jhhd>}g^1}w8 zG=h+ML;qyuMo}TyNwnj#gQJ;`G7wyoaZ1@R$8IlxKQd!Av zV`JmsSEa43?YT2|-P*hV5-prwAOdW{#}Ty4W^Kd6!`UEzO4>H_0HZ%J3?Dz*>IMvh zD8bK1YmX(zk)6Jh?5#-7*?~PA@wa4xvCn`utNHnWqK(`Qf~k<{COJ^)7e27=1~d(A zItXL0)7SUj8W0hC)nbz#qG136_J~Thmpw9w5;}p1&HYWk8;-gCO&PZw6WCGxj<* zE7)GiJM=I`p?|$c4Wpn`$n}pI8Dn7K@#oKD zYp-rDz~1?Va?Kv5=s1DFZtU}IiS@&V*XsVu8s_+u4I#>0r8LBiJ#USCXbqTLA zgb=Cb=_GhDQD~V$Bd_e%Z7@Tyc>;eG_N^HIF5&+xg}sYRmr~S~S#qUb0sL1JK=-!6 Ktx`?9$o~SV0?zON From 48f6e722933da96d8c422073fd562cf5f84abb71 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sat, 17 Feb 2018 01:47:19 -0500 Subject: [PATCH 42/94] Merge pull request #35716 from AnturK/slipspace Fixes wet space. --- code/game/turfs/space/space.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/game/turfs/space/space.dm b/code/game/turfs/space/space.dm index e446eb3b2c..ba93f18a8d 100644 --- a/code/game/turfs/space/space.dm +++ b/code/game/turfs/space/space.dm @@ -149,6 +149,10 @@ stoplag()//Let a diagonal move finish, if necessary A.newtonian_move(A.inertia_dir) + +/turf/open/space/MakeSlippery(wet_setting = TURF_WET_WATER, min_wet_time = 0, wet_time_to_add = 0) + return + /turf/open/space/handle_slip() return From cbb11e81e636d0fd95493947bd20666e7ab5efc0 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sat, 17 Feb 2018 01:47:09 -0500 Subject: [PATCH 44/94] Merge pull request #35717 from AnturK/robolove Fixes AI dating --- code/game/gamemodes/objective.dm | 8 ++++++-- code/modules/antagonists/valentines/valentine.dm | 2 ++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/code/game/gamemodes/objective.dm b/code/game/gamemodes/objective.dm index 3fd5d2277e..15ddee2669 100644 --- a/code/game/gamemodes/objective.dm +++ b/code/game/gamemodes/objective.dm @@ -221,8 +221,9 @@ GLOBAL_LIST_EMPTY(objectives) explanation_text = "Free Objective" /datum/objective/protect//The opposite of killing a dude. - var/target_role_type=0 martyr_compatible = 1 + var/target_role_type = 0 + var/human_check = TRUE /datum/objective/protect/find_target_by_role(role, role_type=0, invert=0) if(!invert) @@ -231,7 +232,7 @@ GLOBAL_LIST_EMPTY(objectives) return target /datum/objective/protect/check_completion() - return !target || considered_alive(target) + return !target || considered_alive(target, enforce_human = human_check) /datum/objective/protect/update_explanation_text() ..() @@ -240,6 +241,9 @@ GLOBAL_LIST_EMPTY(objectives) else explanation_text = "Free Objective" +/datum/objective/protect/nonhuman + human_check = FALSE + /datum/objective/hijack explanation_text = "Hijack the shuttle to ensure no loyalist Nanotrasen crew escape alive and out of custody." team_explanation_text = "Hijack the shuttle to ensure no loyalist Nanotrasen crew escape alive and out of custody. Leave no team member behind." diff --git a/code/modules/antagonists/valentines/valentine.dm b/code/modules/antagonists/valentines/valentine.dm index 1ca8e39318..b29c4d6bf3 100644 --- a/code/modules/antagonists/valentines/valentine.dm +++ b/code/modules/antagonists/valentines/valentine.dm @@ -8,6 +8,8 @@ var/datum/objective/protect/protect_objective = new /datum/objective/protect protect_objective.owner = owner protect_objective.target = date + if(!ishuman(date.current)) + protect_objective.human_check = FALSE protect_objective.explanation_text = "Protect [date.name], your date." objectives += protect_objective owner.objectives += objectives From a918a0647877f79e96aa4e403ea4c2d41913619c Mon Sep 17 00:00:00 2001 From: TankNut Date: Fri, 16 Feb 2018 20:50:15 +0100 Subject: [PATCH 46/94] Map spawned corpses start with their suit sensors turned off --- code/modules/awaymissions/corpse.dm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/code/modules/awaymissions/corpse.dm b/code/modules/awaymissions/corpse.dm index 57cce8a656..f62d5ff15e 100644 --- a/code/modules/awaymissions/corpse.dm +++ b/code/modules/awaymissions/corpse.dm @@ -181,6 +181,15 @@ var/obj/item/device/pda/PDA = locate(/obj/item/device/pda) in H if(PDA) PDA.toff = TRUE +<<<<<<< HEAD +======= + if(disable_sensors) + // Using crew monitors to find corpses while creative makes finding certain ruins too easy. + var/obj/item/clothing/under/C = H.wear_suit + if(C) + C.sensor_mode = NO_SENSORS + +>>>>>>> b8b5084... Swaps locate for direct assignment var/obj/item/card/id/W = H.wear_id if(W) if(id_access) From f0be955c17721d124f2e1e7ce6277672fe4cbf16 Mon Sep 17 00:00:00 2001 From: yorii Date: Sat, 17 Feb 2018 16:37:18 +0100 Subject: [PATCH 47/94] Adds Modafinil properly this time. (#34908) * Adds modafinil, a sleep suppressant * Adds recipe for modafinil Yes I'm afraid of git now * Fixed modafinil sleepimmune ids and OD to 15u During testing 10u was simply much too low * Change OD sleeping proc to use ignore_sleepimmune * Fixed stuff to modafinil --- .../chemistry/reagents/medicine_reagents.dm | 68 +++++++++++++++++++ .../reagents/chemistry/recipes/medicine.dm | 7 ++ 2 files changed, 75 insertions(+) diff --git a/code/modules/reagents/chemistry/reagents/medicine_reagents.dm b/code/modules/reagents/chemistry/reagents/medicine_reagents.dm index 789b92a9b9..ee25eed30d 100644 --- a/code/modules/reagents/chemistry/reagents/medicine_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/medicine_reagents.dm @@ -1207,3 +1207,71 @@ /datum/reagent/medicine/muscle_stimulant/on_mob_delete(mob/living/M) . = ..() M.remove_trait(TRAIT_IGNORESLOWDOWN, id) + +/datum/reagent/medicine/modafinil + name = "Modafinil" + id = "modafinil" + description = "Long-lasting sleep suppressant that very slightly reduces stun and knockdown times. Overdosing has horrendous side effects and deals lethal oxygen damage, will knock you unconscious if not dealt with." + reagent_state = LIQUID + color = "#BEF7D8" // palish blue white + metabolization_rate = 0.1 * REAGENTS_METABOLISM + overdose_threshold = 20 // with the random effects this might be awesome or might kill you at less than 10u (extensively tested) + taste_description = "salt" // it actually does taste salty + var/overdose_progress = 0 // to track overdose progress + +/datum/reagent/medicine/modafinil/on_mob_add(mob/living/M) + M.add_trait(TRAIT_SLEEPIMMUNE, id) + ..() + +/datum/reagent/medicine/modafinil/on_mob_delete(mob/living/M) + M.remove_trait(TRAIT_SLEEPIMMUNE, id) + ..() + +/datum/reagent/medicine/modafinil/on_mob_life(mob/living/M) + if(!overdosed) // We do not want any effects on OD + overdose_threshold = overdose_threshold + rand(-10,10)/10 // for extra fun + M.AdjustStun(-5, 0) + M.AdjustKnockdown(-5, 0) + M.AdjustUnconscious(-5, 0) + M.adjustStaminaLoss(-0.5*REM, 0) + M.Jitter(1) + metabolization_rate = 0.01 * REAGENTS_METABOLISM * rand(5,20) // randomizes metabolism between 0.02 and 0.08 per tick + . = 1 + ..() + +/datum/reagent/medicine/modafinil/overdose_start(mob/living/M) + to_chat(M, "You feel awfully out of breath and jittery!") + metabolization_rate = 0.025 * REAGENTS_METABOLISM // sets metabolism to 0.01 per tick on overdose + +/datum/reagent/medicine/modafinil/overdose_process(mob/living/M) + overdose_progress++ + switch(overdose_progress) + if(1 to 40) + M.jitteriness = min(M.jitteriness+1, 10) + M.stuttering = min(M.stuttering+1, 10) + M.Dizzy(5) + if(prob(50)) + M.losebreath++ + if(41 to 80) + M.adjustOxyLoss(0.1*REM, 0) + M.adjustStaminaLoss(0.1*REM, 0) + M.jitteriness = min(M.jitteriness+1, 20) + M.stuttering = min(M.stuttering+1, 20) + M.Dizzy(10) + if(prob(50)) + M.losebreath++ + if(prob(20)) + to_chat(M, "You have a sudden fit!") + M.emote("moan") + M.Knockdown(20, 1, 0) // you should be in a bad spot at this point unless epipen has been used + if(81) + to_chat(M, "You feel too exhausted to continue!") // at this point you will eventually die unless you get charcoal + M.adjustOxyLoss(0.1*REM, 0) + M.adjustStaminaLoss(0.1*REM, 0) + if(82 to INFINITY) + M.Sleeping(100, 0, TRUE) + M.adjustOxyLoss(1.5*REM, 0) + M.adjustStaminaLoss(1.5*REM, 0) + ..() + . = 1 + diff --git a/code/modules/reagents/chemistry/recipes/medicine.dm b/code/modules/reagents/chemistry/recipes/medicine.dm index f80f4114b5..dc7c32d925 100644 --- a/code/modules/reagents/chemistry/recipes/medicine.dm +++ b/code/modules/reagents/chemistry/recipes/medicine.dm @@ -245,3 +245,10 @@ results = list("morphine" = 2) required_reagents = list("carbon" = 2, "hydrogen" = 2, "ethanol" = 1, "oxygen" = 1) required_temp = 480 + +/datum/chemical_reaction/modafinil + name = "Modafinil" + id = "modafinil" + results = list("modafinil" = 5) + required_reagents = list("diethylamine" = 1, "ammonia" = 1, "phenol" = 1, "acetone" = 1, "sacid" = 1) + required_catalysts = list("bromine" = 1) // as close to the real world synthesis as possible From 7214836012fd9299be4b54a5d443a21b1a2d1660 Mon Sep 17 00:00:00 2001 From: vuonojenmustaturska Date: Sat, 17 Feb 2018 17:38:57 +0200 Subject: [PATCH 49/94] Merge pull request #35734 from ShizCalev/path-cleanup Cleans up unused /area paths --- code/game/area/Space_Station_13_areas.dm | 186 ---------------------- code/game/area/areas/mining.dm | 6 - code/game/area/areas/misc.dm | 122 -------------- code/game/area/areas/space_content.dm | 98 ------------ code/game/objects/items/blueprints.dm | 3 +- code/game/turfs/simulated/dirtystation.dm | 3 - tgstation.dme | 2 - 7 files changed, 1 insertion(+), 419 deletions(-) delete mode 100644 code/game/area/areas/misc.dm delete mode 100644 code/game/area/areas/space_content.dm diff --git a/code/game/area/Space_Station_13_areas.dm b/code/game/area/Space_Station_13_areas.dm index 15504ebab0..d65d28507c 100644 --- a/code/game/area/Space_Station_13_areas.dm +++ b/code/game/area/Space_Station_13_areas.dm @@ -95,16 +95,6 @@ NOTE: there are two lists of areas in the end of this file: centcom and station . = ..() set_dynamic_lighting() -/area/planet/clown - name = "Clown Planet" - icon_state = "honk" - requires_power = FALSE - -/area/telesciareas - name = "Cosmic Anomaly" - icon_state = "telesci" - requires_power = FALSE - //STATION13 @@ -258,105 +248,10 @@ NOTE: there are two lists of areas in the end of this file: centcom and station icon_state = "disposal" /area/maintenance/disposal/incinerator -// /area/maintenance/incinerator name = "Incinerator" icon_state = "disposal" -//Cere / Asteroid Specific - -/area/maintenance/asteroid/aft/science - name = "Aft Maintenance" - icon_state = "amaint" - -/area/maintenance/asteroid/aft/arrivals - name = "Aft Maintenance" - icon_state = "amaint" - -/area/maintenance/asteroid/central - name = "Central Asteroid Maintenance" - icon_state = "maintcentral" - -/area/maintenance/asteroid/disposal - icon_state = "disposal" - -/area/maintenance/asteroid/disposal/north - name = "Northern Disposal" - -/area/maintenance/asteroid/disposal/north/east - name = "North-Eastern Disposal" - -/area/maintenance/asteroid/disposal/north/west - name = "North-Western Disposal" - -/area/maintenance/asteroid/disposal/east - name = "Eastern Disposal" - -/area/maintenance/asteroid/disposal/west - name = "Western Disposal" - -/area/maintenance/asteroid/disposal/west/secondary - name = "Secondary Western Disposal" - -/area/maintenance/asteroid/disposal/south - name = "Southern Disposal" - -/area/maintenance/asteroid/disposal/south/west - name = "South-Western Disposal" - -/area/maintenance/asteroid/disposal/external/east - name = "Eastern External Waste Belt" - -/area/maintenance/asteroid/disposal/external/north - name = "Northern External Waste Belt" - -/area/maintenance/asteroid/disposal/external/southeast - name = "South-Eastern External Waste Belt" - -/area/maintenance/asteroid/disposal/external/southwest - name = "South-Western External Waste Belt" - -/area/maintenance/asteroid/fore/cargo_west - name = "Fore Asteroid Maintenance" - icon_state = "fmaint" - -/area/maintenance/asteroid/fore/cargo_south - name = "Fore Asteroid Maintenance" - icon_state = "fmaint" - -/area/maintenance/asteroid/fore/com_west - name = "Fore Asteroid Maintenance" - icon_state = "fmaint" - -/area/maintenance/asteroid/fore/com_north - name = "Fore Asteroid Maintenance" - icon_state = "fmaint" - -/area/maintenance/asteroid/fore/com_east - name = "Fore Asteroid Maintenance" - icon_state = "fmaint" - -/area/maintenance/asteroid/fore/com_south - name = "Fore Asteroid Maintenance" - icon_state = "fmaint" - -/area/maintenance/asteroid/port/neast - name = "Port Asteroid Maintenance" - icon_state = "pmaint" - -/area/maintenance/asteroid/port/east - name = "Port Asteroid Maintenance" - icon_state = "pmaint" - -/area/maintenance/asteroid/port/west - name = "Port Asteroid Maintenance" - icon_state = "pmaint" - -/area/maintenance/asteroid/starboard - name = "Starboard Asteroid Maintenance" - icon_state = "smaint" - - //Hallway /area/hallway/primary/aft @@ -419,42 +314,6 @@ NOTE: there are two lists of areas in the end of this file: centcom and station name = "Service Hallway" icon_state = "hall_service" -/area/hallway/secondary/bridges/cargo_ai - name = "Cargo-AI-Command Bridge" - icon_state = "yellow" - -/area/hallway/secondary/bridges/com_engi - name = "Command-Engineering Bridge" - icon_state = "yellow" - -/area/hallway/secondary/bridges/com_serv - name = "Command-Service Bridge" - icon_state = "yellow" - -/area/hallway/secondary/bridges/dock_med - name = "Docking-Medical Bridge" - icon_state = "yellow" - -/area/hallway/secondary/bridges/engi_med - name = "Engineering-Medical Bridge" - icon_state = "yellow" - -/area/hallway/secondary/bridges/med_cargo - name = "Medical-Cargo Bridge" - icon_state = "yellow" - -/area/hallway/secondary/bridges/sci_dock - name = "Science-Docking Bridge" - icon_state = "yellow" - -/area/hallway/secondary/bridges/serv_engi - name = "Service-Engineering Bridge" - icon_state = "yellow" - -/area/hallway/secondary/bridges/serv_sci - name = "Service-Science Bridge" - icon_state = "yellow" - //Command /area/bridge @@ -745,18 +604,6 @@ NOTE: there are two lists of areas in the end of this file: centcom and station flags_1 = NONE ambientsounds = ENGINEERING -/area/solar/asteroid/aft - name = "Aft Asteroid Solar" - icon_state = "panelsA" - -/area/solar/asteroid/command - name = "Command Asteroid Solar" - icon_state = "panelsA" - -/area/solar/asteroid/fore - name = "Fore Asteroid Solar" - icon_state = "panelsA" - /area/solar/fore name = "Fore Solar Array" icon_state = "yellow" @@ -804,18 +651,6 @@ NOTE: there are two lists of areas in the end of this file: centcom and station name = "Solar Maintenance" icon_state = "yellow" -/area/maintenance/solars/asteroid/aft - name = "Aft Asteroid Solar Maintenance" - icon_state = "SolarcontrolA" - -/area/maintenance/solars/asteroid/command - name = "Command Asteroid Solar Maintenance" - icon_state = "SolarcontrolP" - -/area/maintenance/solars/asteroid/fore - name = "Fore Asteroid Solar Maintenance" - icon_state = "SolarcontrolP" - /area/maintenance/solars/port name = "Port Solar Maintenance" icon_state = "SolarcontrolP" @@ -872,22 +707,6 @@ NOTE: there are two lists of areas in the end of this file: centcom and station music = "signal" ambientsounds = ENGINEERING -/area/teleporter/quantum/cargo - name = "Cargo Quantum Pad" - icon_state = "teleporter" - -/area/teleporter/quantum/docking - name = "Docking Quantum Pad" - icon_state = "teleporter" - -/area/teleporter/quantum/research - name = "Research Quantum Pad" - icon_state = "teleporter" - -/area/teleporter/quantum/security - name = "Security Quantum Pad" - icon_state = "teleporter" - /area/gateway name = "Gateway" icon_state = "gateway" @@ -1458,11 +1277,6 @@ NOTE: there are two lists of areas in the end of this file: centcom and station name = "AI Sat Ext" icon_state = "storage" -/area/ai_monitored/turret_protected/NewAIMain - name = "AI Main New" - icon_state = "storage" - - // Telecommunications Satellite diff --git a/code/game/area/areas/mining.dm b/code/game/area/areas/mining.dm index bf5642b7af..493f36dd8d 100644 --- a/code/game/area/areas/mining.dm +++ b/code/game/area/areas/mining.dm @@ -65,12 +65,6 @@ /area/mine/sleeper name = "Mining Station Emergency Sleeper" -/area/mine/north_outpost - name = "North Mining Outpost" - -/area/mine/west_outpost - name = "West Mining Outpost" - /area/mine/laborcamp name = "Labor Camp" diff --git a/code/game/area/areas/misc.dm b/code/game/area/areas/misc.dm deleted file mode 100644 index 7faeb6b51a..0000000000 --- a/code/game/area/areas/misc.dm +++ /dev/null @@ -1,122 +0,0 @@ - -// Hell -/area/hell - name = "Hell Lobby" - //icon = "ICON FILENAME" - //icon_state = "NAME OF ICON" - requires_power = FALSE - ambientsounds = SPOOKY - -/area/hell/trial1 - name = "Hell Trial1" - //icon_state = "NAME OF ICON" (defaults to "unknown" (blank)) - -/area/hell/trial1 - name = "Hell Trial2" - //icon_state = "NAME OF ICON" (defaults to "unknown" (blank)) - -/area/hell/trial1 - name = "Hell Trial3" - //icon_state = "NAME OF ICON" (defaults to "unknown" (blank)) - - - -//Misc - -/area/generic - name = "Unknown" - icon_state = "storage" - - - -//PRISON -/area/prison - name = "Prison Station" - icon_state = "brig" - ambientsounds = HIGHSEC - -/area/prison/arrival_airlock - name = "Prison Station Airlock" - icon_state = "green" - requires_power = FALSE - -/area/prison/control - name = "Prison Security Checkpoint" - icon_state = "security" - -/area/prison/crew_quarters - name = "Prison Security Quarters" - icon_state = "security" - -/area/prison/rec_room - name = "Prison Rec Room" - icon_state = "green" - -/area/prison/closet - name = "Prison Supply Closet" - icon_state = "dk_yellow" - -/area/prison/hallway/fore - name = "Prison Fore Hallway" - icon_state = "yellow" - -/area/prison/hallway/aft - name = "Prison Aft Hallway" - icon_state = "yellow" - -/area/prison/hallway/port - name = "Prison Port Hallway" - icon_state = "yellow" - -/area/prison/hallway/starboard - name = "Prison Starboard Hallway" - icon_state = "yellow" - -/area/prison/morgue - name = "Prison Morgue" - icon_state = "morgue" - ambientsounds = SPOOKY - -/area/prison/medical_research - name = "Prison Genetic Research" - icon_state = "medresearch" - -/area/prison/medical - name = "Prison Medbay" - icon_state = "medbay" - -/area/prison/solar - name = "Prison Solar Array" - icon_state = "storage" - requires_power = FALSE - -/area/prison/podbay - name = "Prison Podbay" - icon_state = "dk_yellow" - -/area/prison/solar_control - name = "Prison Solar Array Control" - icon_state = "dk_yellow" - -/area/prison/solitary - name = "Solitary Confinement" - icon_state = "brig" - -/area/prison/execution_room - name = "Prisoner Education Chamber" - icon_state = "execution_room" - -/area/prison/cell_block/a -// /area/prison/cell_block/A - name = "Prison Cell Block A" - icon_state = "brig" - -/area/prison/cell_block/b -// /area/prison/cell_block/B - name = "Prison Cell Block B" - icon_state = "brig" - -/area/prison/cell_block/c -// /area/prison/cell_block/C - name = "Prison Cell Block C" - icon_state = "brig" diff --git a/code/game/area/areas/space_content.dm b/code/game/area/areas/space_content.dm deleted file mode 100644 index e605faa6e5..0000000000 --- a/code/game/area/areas/space_content.dm +++ /dev/null @@ -1,98 +0,0 @@ - - -/area/spacecontent - name = "space" - ambientsounds = AWAY_MISSION - -/area/spacecontent/a1 - icon_state = "spacecontent1" - -/area/spacecontent/a2 - icon_state = "spacecontent2" - -/area/spacecontent/a3 - icon_state = "spacecontent3" - -/area/spacecontent/a4 - icon_state = "spacecontent4" - -/area/spacecontent/a5 - icon_state = "spacecontent5" - -/area/spacecontent/a6 - icon_state = "spacecontent6" - -/area/spacecontent/a7 - icon_state = "spacecontent7" - -/area/spacecontent/a8 - icon_state = "spacecontent8" - -/area/spacecontent/a9 - icon_state = "spacecontent9" - -/area/spacecontent/a10 - icon_state = "spacecontent10" - -/area/spacecontent/a11 - icon_state = "spacecontent11" - -/area/spacecontent/a11 - icon_state = "spacecontent12" - -/area/spacecontent/a12 - icon_state = "spacecontent13" - -/area/spacecontent/a13 - icon_state = "spacecontent14" - -/area/spacecontent/a14 - icon_state = "spacecontent14" - -/area/spacecontent/a15 - icon_state = "spacecontent15" - -/area/spacecontent/a16 - icon_state = "spacecontent16" - -/area/spacecontent/a17 - icon_state = "spacecontent17" - -/area/spacecontent/a18 - icon_state = "spacecontent18" - -/area/spacecontent/a19 - icon_state = "spacecontent19" - -/area/spacecontent/a20 - icon_state = "spacecontent20" - -/area/spacecontent/a21 - icon_state = "spacecontent21" - -/area/spacecontent/a22 - icon_state = "spacecontent22" - -/area/spacecontent/a23 - icon_state = "spacecontent23" - -/area/spacecontent/a24 - icon_state = "spacecontent24" - -/area/spacecontent/a25 - icon_state = "spacecontent25" - -/area/spacecontent/a26 - icon_state = "spacecontent26" - -/area/spacecontent/a27 - icon_state = "spacecontent27" - -/area/spacecontent/a28 - icon_state = "spacecontent28" - -/area/spacecontent/a29 - icon_state = "spacecontent29" - -/area/spacecontent/a30 - icon_state = "spacecontent30" diff --git a/code/game/objects/items/blueprints.dm b/code/game/objects/items/blueprints.dm index 958b9ff8b0..e3c74a4ddf 100644 --- a/code/game/objects/items/blueprints.dm +++ b/code/game/objects/items/blueprints.dm @@ -146,8 +146,7 @@ /area/centcom, /area/asteroid, /area/tdome, - /area/wizard_station, - /area/prison + /area/wizard_station ) for (var/type in SPECIALS) if ( istype(A,type) ) diff --git a/code/game/turfs/simulated/dirtystation.dm b/code/game/turfs/simulated/dirtystation.dm index c411d4b6b1..e29d75a248 100644 --- a/code/game/turfs/simulated/dirtystation.dm +++ b/code/game/turfs/simulated/dirtystation.dm @@ -28,8 +28,6 @@ var/static/list/high_dirt_areas = typecacheof(list(/area/science/test_area, /area/mine/production, /area/mine/living_quarters, - /area/mine/north_outpost, - /area/mine/west_outpost, /area/ruin/space)) if(is_type_in_typecache(A, high_dirt_areas)) new /obj/effect/decal/cleanable/dirt(src) //vanilla, but it works @@ -84,7 +82,6 @@ //Areas where gibs will be present. Robusting probably happened some time ago. var/static/list/gib_covered_areas = typecacheof(list(/area/ai_monitored/turret_protected, - /area/prison, /area/security, /area/crew_quarters/heads/hos)) if(is_type_in_typecache(A, gib_covered_areas)) diff --git a/tgstation.dme b/tgstation.dme index 2534f97c3e..cefa598147 100755 --- a/tgstation.dme +++ b/tgstation.dme @@ -482,9 +482,7 @@ #include "code\game\area\areas\centcom.dm" #include "code\game\area\areas\holodeck.dm" #include "code\game\area\areas\mining.dm" -#include "code\game\area\areas\misc.dm" #include "code\game\area\areas\shuttles.dm" -#include "code\game\area\areas\space_content.dm" #include "code\game\area\areas\ruins\_ruins.dm" #include "code\game\area\areas\ruins\lavaland.dm" #include "code\game\area\areas\ruins\space.dm" From 22fb75d2a64b9c2cc7e3380e71ba5537ee6a9fa6 Mon Sep 17 00:00:00 2001 From: vuonojenmustaturska Date: Sat, 17 Feb 2018 17:38:17 +0200 Subject: [PATCH 51/94] Merge pull request #35735 from coiax/fire-proof-hands RESISTHOT species can put out fires with their hands --- code/game/objects/items.dm | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index 9ac53cc85b..697c84ee0c 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -245,18 +245,23 @@ GLOBAL_VAR_INIT(rpg_loot_items, FALSE) if(resistance_flags & ON_FIRE) var/mob/living/carbon/C = user - if(istype(C)) - if(C.gloves && (C.gloves.max_heat_protection_temperature > 360)) - extinguish() - to_chat(user, "You put out the fire on [src].") - else - to_chat(user, "You burn your hand on [src]!") - var/obj/item/bodypart/affecting = C.get_bodypart("[(user.active_hand_index % 2 == 0) ? "r" : "l" ]_arm") - if(affecting && affecting.receive_damage( 0, 5 )) // 5 burn damage - C.update_damage_overlays() - return - else + var/can_handle_hot = FALSE + if(!istype(C)) + can_handle_hot = TRUE + else if(C.gloves && (C.gloves.max_heat_protection_temperature > 360)) + can_handle_hot = TRUE + else if(RESISTHOT in C.dna.species.species_traits) + can_handle_hot = TRUE + + if(can_handle_hot) extinguish() + to_chat(user, "You put out the fire on [src].") + else + to_chat(user, "You burn your hand on [src]!") + var/obj/item/bodypart/affecting = C.get_bodypart("[(user.active_hand_index % 2 == 0) ? "r" : "l" ]_arm") + if(affecting && affecting.receive_damage( 0, 5 )) // 5 burn damage + C.update_damage_overlays() + return if(acid_level > 20 && !ismob(loc))// so we can still remove the clothes on us that have acid. var/mob/living/carbon/C = user From 6784d463ab51bdababb8f2c6e9a6aeba381a6135 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 17 Feb 2018 09:56:53 -0600 Subject: [PATCH 53/94] Automatic changelog generation for PR #5540 [ci skip] --- html/changelogs/AutoChangeLog-pr-5540.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5540.yml diff --git a/html/changelogs/AutoChangeLog-pr-5540.yml b/html/changelogs/AutoChangeLog-pr-5540.yml new file mode 100644 index 0000000000..858331ade5 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5540.yml @@ -0,0 +1,4 @@ +author: "Modafinil" +delete-after: True +changes: + - rscadd: "Adds new medicine chem that suppresses sleep and very lightly reduces stunrates, has a very low metabolic rate which is randomized and a low overdose treshold. Overdosing is a lethal oxyloss unless treated. (With epipen urgently and with charcoal/calomel before it puts you to sleep)" From 06dd2e2aa5534d0273c7321538dbc2a1f6fc0ddc Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sat, 17 Feb 2018 09:58:42 -0600 Subject: [PATCH 54/94] Update corpse.dm --- code/modules/awaymissions/corpse.dm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/code/modules/awaymissions/corpse.dm b/code/modules/awaymissions/corpse.dm index f62d5ff15e..d57ea83e8f 100644 --- a/code/modules/awaymissions/corpse.dm +++ b/code/modules/awaymissions/corpse.dm @@ -181,15 +181,11 @@ var/obj/item/device/pda/PDA = locate(/obj/item/device/pda) in H if(PDA) PDA.toff = TRUE -<<<<<<< HEAD -======= if(disable_sensors) // Using crew monitors to find corpses while creative makes finding certain ruins too easy. var/obj/item/clothing/under/C = H.wear_suit if(C) C.sensor_mode = NO_SENSORS - ->>>>>>> b8b5084... Swaps locate for direct assignment var/obj/item/card/id/W = H.wear_id if(W) if(id_access) From c64a8a8d6bc69e849a115449205afff9ec2448aa Mon Sep 17 00:00:00 2001 From: vuonojenmustaturska Date: Sat, 17 Feb 2018 17:59:54 +0200 Subject: [PATCH 55/94] Merge pull request #35604 from ACCount12/construction_datum_refactor Refactors mech construction datums --- .../helper_datums/construction_datum.dm | 140 +- code/game/mecha/mecha.dm | 3 +- code/game/mecha/mecha_construction_paths.dm | 3000 +++++++++-------- code/game/mecha/mecha_parts.dm | 45 +- 4 files changed, 1588 insertions(+), 1600 deletions(-) diff --git a/code/datums/helper_datums/construction_datum.dm b/code/datums/helper_datums/construction_datum.dm index 95d2b612d0..d457c60ade 100644 --- a/code/datums/helper_datums/construction_datum.dm +++ b/code/datums/helper_datums/construction_datum.dm @@ -1,44 +1,50 @@ -#define FORWARD -1 -#define BACKWARD 1 +#define FORWARD 1 +#define BACKWARD -1 + +#define ITEM_DELETE "delete" +#define ITEM_MOVE_INSIDE "move_inside" + /datum/construction var/list/steps var/atom/holder var/result - var/list/steps_desc + var/index = 1 /datum/construction/New(atom) ..() holder = atom if(!holder) //don't want this without a holder qdel(src) - set_desc(steps.len) - return + update_holder(index) -/datum/construction/proc/next_step() - steps.len-- - if(!steps.len) +/datum/construction/proc/on_step() + if(index > steps.len) spawn_result() else - set_desc(steps.len) - return + update_holder(index) -/datum/construction/proc/action(obj/item/I, mob/user) - return +/datum/construction/proc/action(obj/item/I, mob/living/user) + return check_step(I, user) -/datum/construction/proc/check_step(obj/item/I, mob/user) //check last step only - var/valid_step = is_right_key(I) - if(valid_step) - if(custom_action(valid_step, I, user)) - next_step() - return 1 - return 0 +/datum/construction/proc/update_index(diff) + index += diff + on_step() -/datum/construction/proc/is_right_key(obj/item/I) // returns current step num if I is of the right type. - var/list/L = steps[steps.len] +/datum/construction/proc/check_step(obj/item/I, mob/living/user) + var/diff = is_right_key(I) + if(diff && custom_action(I, user, diff)) + update_index(diff) + return TRUE + return FALSE + +/datum/construction/proc/is_right_key(obj/item/I) // returns index step + var/list/L = steps[index] if(check_used_item(I, L["key"])) - return steps.len - return 0 + return FORWARD //to the first step -> forward + else if(check_used_item(I, L["back_key"])) + return BACKWARD //to the last step -> backwards + return FALSE /datum/construction/proc/check_used_item(obj/item/I, key) if(!key) @@ -52,77 +58,47 @@ return FALSE - -/datum/construction/proc/custom_action(step, obj/item/I, user) - return 1 - -/datum/construction/proc/check_all_steps(obj/item/I, mob/user) //check all steps, remove matching one. - for(var/i=1;i<=steps.len;i++) - var/list/L = steps[i] - if(check_used_item(I, L["key"])) - if(custom_action(i, I, user)) - steps[i] = null//stupid byond list from list removal... - listclearnulls(steps) - if(!steps.len) - spawn_result() - return 1 - return 0 - +/datum/construction/proc/custom_action(obj/item/I, mob/living/user, diff) + return TRUE /datum/construction/proc/spawn_result() if(result) - new result(get_turf(holder)) + new result(drop_location()) qdel(holder) - return -/datum/construction/proc/spawn_mecha_result() - if(result) - var/obj/mecha/m = new result(get_turf(holder)) - var/obj/item/oldcell = locate (/obj/item/stock_parts/cell) in m - QDEL_NULL(oldcell) - m.CheckParts(holder.contents) - SSblackbox.record_feedback("tally", "mechas_created", 1, m.name) - QDEL_NULL(holder) +/datum/construction/proc/update_holder(step_index) + var/list/step = steps[step_index] -/datum/construction/proc/set_desc(index as num) - var/list/step = steps[index] - holder.desc = step["desc"] - return + if(step["desc"]) + holder.desc = step["desc"] + + if(step["icon_state"]) + holder.icon_state = step["icon_state"] /datum/construction/proc/drop_location() return holder.drop_location() -/datum/construction/reversible - var/index -/datum/construction/reversible/New(atom) - ..() - index = steps.len - return -/datum/construction/reversible/proc/update_index(diff as num) - index+=diff - if(index==0) - spawn_result() - else - set_desc(index) - return - -/datum/construction/reversible/is_right_key(obj/item/I) // returns index step - var/list/L = steps[index] - if(check_used_item(I, L["key"])) - return FORWARD //to the first step -> forward - else if(check_used_item(I, L["backkey"])) - return BACKWARD //to the last step -> backwards +// Unordered construction. +// Takes a list of part types, to be added in any order, as steps. +// Calls spawn_result() when every type has been added. +/datum/construction/unordered/check_step(obj/item/I, mob/living/user) + for(var/typepath in steps) + if(istype(I, typepath) && custom_action(I, user, typepath)) + steps -= typepath + on_step() + return TRUE return FALSE -/datum/construction/reversible/check_step(obj/item/I, mob/user) - var/diff = is_right_key(I) - if(diff) - if(custom_action(index, diff, I, user)) - update_index(diff) - return 1 - return 0 +/datum/construction/unordered/on_step() + if(!steps.len) + spawn_result() + else + update_holder(steps.len) -/datum/construction/reversible/custom_action(index, diff, obj/item/I, user) - return 1 +/datum/construction/unordered/update_holder(steps_left) + return + +/datum/construction/unordered/custom_action(obj/item/I, mob/living/user, typepath) + return TRUE diff --git a/code/game/mecha/mecha.dm b/code/game/mecha/mecha.dm index db6ef6b6b9..b1d4e065c4 100644 --- a/code/game/mecha/mecha.dm +++ b/code/game/mecha/mecha.dm @@ -206,8 +206,7 @@ /obj/mecha/CheckParts(list/parts_list) ..() - var/obj/item/C = locate(/obj/item/stock_parts/cell) in contents - cell = C + cell = locate(/obj/item/stock_parts/cell) in contents var/obj/item/stock_parts/scanning_module/SM = locate() in contents var/obj/item/stock_parts/capacitor/CP = locate() in contents if(SM) diff --git a/code/game/mecha/mecha_construction_paths.dm b/code/game/mecha/mecha_construction_paths.dm index f691586a1b..b8a5cca70e 100644 --- a/code/game/mecha/mecha_construction_paths.dm +++ b/code/game/mecha/mecha_construction_paths.dm @@ -1,1788 +1,1816 @@ //////////////////////////////// ///// Construction datums ////// //////////////////////////////// +/datum/construction/mecha + var/base_icon -/datum/construction/mecha/custom_action(step, obj/item/I, mob/user) - if(I.tool_behaviour == TOOL_WELDER) - if(I.use_tool(holder, user, 0)) - playsound(holder, 'sound/items/welder2.ogg', 50, 1) - else - return FALSE +/datum/construction/mecha/custom_action(obj/item/I, mob/living/user, diff) + var/target_index = index + diff + var/list/current_step = steps[index] + var/list/target_step - else if(I.tool_behaviour) - return I.use_tool(holder, user, 0, volume=50) + if(target_index > 0 && target_index <= steps.len) + target_step = steps[target_index] - else if(istype(I, /obj/item/stack)) - return I.use_tool(holder, user, 0, volume=50, amount=5) + . = TRUE - return TRUE + if(I.tool_behaviour) + . = I.use_tool(holder, user, 0, volume=50) -/datum/construction/reversible/mecha/custom_action(index as num, diff as num, obj/item/I, mob/user) - if(I.tool_behaviour == TOOL_WELDER) - if(I.use_tool(holder, user, 0)) - playsound(holder, 'sound/items/welder2.ogg', 50, 1) - else - return FALSE + else if(diff == FORWARD) + switch(current_step["action"]) + if(ITEM_DELETE) + . = user.transferItemToLoc(I, holder) + if(.) + qdel(I) - else if(I.tool_behaviour) - return I.use_tool(holder, user, 0, volume=50) + if(ITEM_MOVE_INSIDE) + . = user.transferItemToLoc(I, holder) - else if(istype(I, /obj/item/stack)) - return I.use_tool(holder, user, 0, volume=50, amount=5) - - return TRUE + else if(istype(I, /obj/item/stack)) + . = I.use_tool(holder, user, 0, volume=50, amount=current_step["amount"]) -/datum/construction/mecha/ripley_chassis - steps = list(list("key"=/obj/item/mecha_parts/part/ripley_torso), //1 - list("key"=/obj/item/mecha_parts/part/ripley_left_arm), //2 - list("key"=/obj/item/mecha_parts/part/ripley_right_arm), //3 - list("key"=/obj/item/mecha_parts/part/ripley_left_leg), //4 - list("key"=/obj/item/mecha_parts/part/ripley_right_leg)//5 - ) + // Going backwards? Undo the last action. Drop/respawn the items used in last action, if any. + if(. && diff == BACKWARD && target_step && !target_step["no_refund"]) + var/target_step_key = target_step["key"] -/datum/construction/mecha/ripley_chassis/custom_action(step, atom/used_atom, mob/user) - user.visible_message("[user] has connected [used_atom] to the [holder].", "You connect [used_atom] to the [holder].") - holder.add_overlay(used_atom.icon_state+"+o") - qdel(used_atom) - return TRUE + switch(target_step["action"]) + if(ITEM_DELETE) + new target_step_key(drop_location()) -/datum/construction/mecha/ripley_chassis/action(atom/used_atom,mob/user) - return check_all_steps(used_atom,user) + if(ITEM_MOVE_INSIDE) + var/obj/item/located_item = locate(target_step_key) in holder + if(located_item) + located_item.forceMove(drop_location()) -/datum/construction/mecha/ripley_chassis/spawn_result() - var/obj/item/mecha_parts/chassis/const_holder = holder - const_holder.construct = new /datum/construction/reversible/mecha/ripley(const_holder) - const_holder.icon = 'icons/mecha/mech_construction.dmi' - const_holder.icon_state = "ripley0" - const_holder.density = TRUE - const_holder.cut_overlays(TRUE) + else if(ispath(target_step_key, /obj/item/stack)) + new target_step_key(drop_location(), target_step["amount"]) + + +/datum/construction/mecha/spawn_result() + if(!result) + return + + // Remove default mech power cell, as we replace it with a new one. + var/obj/mecha/M = new result(drop_location()) + QDEL_NULL(M.cell) + + M.CheckParts(holder.contents) + + SSblackbox.record_feedback("tally", "mechas_created", 1, M.name) + QDEL_NULL(holder) + +/datum/construction/mecha/update_holder(step_index) + ..() + // By default, each step in mech construction has a single icon_state: + // "[base_icon][index - 1]" + // For example, Ripley's step 1 icon_state is "ripley0". + if(!steps[index]["icon_state"] && base_icon) + holder.icon_state = "[base_icon][index - 1]" + +/datum/construction/unordered/mecha_chassis/custom_action(obj/item/I, mob/living/user, typepath) + . = user.transferItemToLoc(I, holder) + if(.) + user.visible_message("[user] has connected [I] to [holder].", "You connect [I] to [holder].") + holder.add_overlay(I.icon_state+"+o") + qdel(I) + +/datum/construction/unordered/mecha_chassis/spawn_result() + holder.icon = 'icons/mecha/mech_construction.dmi' + holder.density = TRUE + holder.cut_overlays() + + var/obj/item/mecha_parts/chassis/chassis = holder + chassis.construct = new result(holder) qdel(src) -/datum/construction/reversible/mecha/ripley - result = /obj/mecha/working/ripley + + +/datum/construction/unordered/mecha_chassis/ripley + result = /datum/construction/mecha/ripley steps = list( - //0, dummy step used to stop the steps from finishing and spawn_result() being called automatically. - list("desc"="You shouldn't be able to see this."), + /obj/item/mecha_parts/part/ripley_torso, + /obj/item/mecha_parts/part/ripley_left_arm, + /obj/item/mecha_parts/part/ripley_right_arm, + /obj/item/mecha_parts/part/ripley_left_leg, + /obj/item/mecha_parts/part/ripley_right_leg + ) - //1 - list("key"=/obj/item/weldingtool, - "backkey"=/obj/item/wrench, - "desc"="External armor is wrenched."), - //2 - list("key"=/obj/item/wrench, - "backkey"=/obj/item/crowbar, - "desc"="External armor is installed."), - //3 - list("key"=/obj/item/stack/sheet/plasteel, - "backkey"=/obj/item/weldingtool, - "desc"="Internal armor is welded."), - //4 - list("key"=/obj/item/weldingtool, - "backkey"=/obj/item/wrench, - "desc"="Internal armor is wrenched."), - //5 - list("key"=/obj/item/wrench, - "backkey"=/obj/item/crowbar, - "desc"="Internal armor is installed."), - //6 - list("key"=/obj/item/stack/sheet/metal, - "backkey"=/obj/item/screwdriver, - "desc"="The power cell is secured."), - //7 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/crowbar, - "desc"="The power cell is installed."), - //8 - list("key"=/obj/item/stock_parts/cell, - "backkey"=/obj/item/screwdriver, - "desc"="Peripherals control module is secured."), - //9 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/crowbar, - "desc"="Peripherals control module is installed."), - //10 - list("key"=/obj/item/circuitboard/mecha/ripley/peripherals, - "backkey"=/obj/item/screwdriver, - "desc"="Central control module is secured."), - //11 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/crowbar, - "desc"="Central control module is installed."), - //12 - list("key"=/obj/item/circuitboard/mecha/ripley/main, - "backkey"=/obj/item/screwdriver, - "desc"="The wiring is adjusted."), - //13 - list("key"=/obj/item/wirecutters, - "backkey"=/obj/item/screwdriver, - "desc"="The wiring is added."), - //14 - list("key"=/obj/item/stack/cable_coil, - "backkey"=/obj/item/screwdriver, - "desc"="The hydraulic systems are active."), - //15 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/wrench, - "desc"="The hydraulic systems are connected."), - //16 - list("key"=/obj/item/wrench, - "desc"="The hydraulic systems are disconnected.") +/datum/construction/mecha/ripley + result = /obj/mecha/working/ripley + base_icon = "ripley" + steps = list( + //1 + list( + "key" = TOOL_WRENCH, + "desc" = "The hydraulic systems are disconnected." + ), - ) + //2 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_WRENCH, + "desc" = "The hydraulic systems are connected." + ), -/datum/construction/reversible/mecha/ripley/action(atom/used_atom,mob/user) - return check_step(used_atom,user) + //3 + list( + "key" = /obj/item/stack/cable_coil, + "amount" = 5, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "The hydraulic systems are active." + ), -/datum/construction/reversible/mecha/ripley/custom_action(index, diff, atom/used_atom, mob/user) + //4 + list( + "key" = TOOL_WIRECUTTER, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "The wiring is added." + ), + + //5 + list( + "key" = /obj/item/circuitboard/mecha/ripley/main, + "action" = ITEM_DELETE, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "The wiring is adjusted." + ), + + //6 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_CROWBAR, + "desc" = "Central control module is installed." + ), + + //7 + list( + "key" = /obj/item/circuitboard/mecha/ripley/peripherals, + "action" = ITEM_DELETE, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "Central control module is secured." + ), + + //8 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_CROWBAR, + "desc" = "Peripherals control module is installed." + ), + + //9 + list( + "key" = /obj/item/stock_parts/cell, + "action" = ITEM_MOVE_INSIDE, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "Peripherals control module is secured." + ), + + //10 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_CROWBAR, + "desc" = "The power cell is installed." + ), + + //11 + list( + "key" = /obj/item/stack/sheet/metal, + "amount" = 5, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "The power cell is secured." + ), + + //12 + list( + "key" = TOOL_WRENCH, + "back_key" = TOOL_CROWBAR, + "desc" = "Internal armor is installed." + ), + + //13 + list( + "key" = TOOL_WELDER, + "back_key" = TOOL_WRENCH, + "desc" = "Internal armor is wrenched." + ), + + //14 + list( + "key" = /obj/item/stack/sheet/plasteel, + "amount" = 5, + "back_key" = TOOL_WELDER, + "desc" = "Internal armor is welded." + ), + + //15 + list( + "key" = TOOL_WRENCH, + "back_key" = TOOL_CROWBAR, + "desc" = "External armor is installed." + ), + + //16 + list( + "key" = TOOL_WELDER, + "back_key" = TOOL_WRENCH, + "desc" = "External armor is wrenched." + ), + ) + +/datum/construction/mecha/ripley/custom_action(obj/item/I, mob/living/user, diff) if(!..()) return FALSE - //TODO: better messages. switch(index) - if(17) - user.visible_message("[user] connects the [holder] hydraulic systems", "You connect the [holder] hydraulic systems.") - holder.icon_state = "ripley1" - if(16) - if(diff==FORWARD) - user.visible_message("[user] activates the [holder] hydraulic systems.", "You activate the [holder] hydraulic systems.") - holder.icon_state = "ripley2" - else - user.visible_message("[user] disconnects the [holder] hydraulic systems", "You disconnect the [holder] hydraulic systems.") - holder.icon_state = "ripley0" - if(15) - if(diff==FORWARD) - user.visible_message("[user] adds the wiring to the [holder].", "You add the wiring to the [holder].") - holder.icon_state = "ripley3" - else - user.visible_message("[user] deactivates the [holder] hydraulic systems.", "You deactivate the [holder] hydraulic systems.") - holder.icon_state = "ripley1" - if(14) - if(diff==FORWARD) - user.visible_message("[user] adjusts the wiring of the [holder].", "You adjust the wiring of the [holder].") - holder.icon_state = "ripley4" - else - user.visible_message("[user] removes the wiring from the [holder].", "You remove the wiring from the [holder].") - var/obj/item/stack/cable_coil/coil = new /obj/item/stack/cable_coil(get_turf(holder)) - coil.amount = 4 - holder.icon_state = "ripley2" - if(13) - if(diff==FORWARD) - user.visible_message("[user] installs the central control module into the [holder].", "You install the central computer mainboard into the [holder].") - qdel(used_atom) - holder.icon_state = "ripley5" - else - user.visible_message("[user] disconnects the wiring of the [holder].", "You disconnect the wiring of the [holder].") - holder.icon_state = "ripley3" - if(12) - if(diff==FORWARD) - user.visible_message("[user] secures the mainboard.", "You secure the mainboard.") - holder.icon_state = "ripley6" - else - user.visible_message("[user] removes the central control module from the [holder].", "You remove the central computer mainboard from the [holder].") - new /obj/item/circuitboard/mecha/ripley/main(get_turf(holder)) - holder.icon_state = "ripley4" - if(11) - if(diff==FORWARD) - user.visible_message("[user] installs the peripherals control module into the [holder].", "You install the peripherals control module into the [holder].") - qdel(used_atom) - holder.icon_state = "ripley7" - else - user.visible_message("[user] unfastens the mainboard.", "You unfasten the mainboard.") - holder.icon_state = "ripley5" - if(10) - if(diff==FORWARD) - user.visible_message("[user] secures the peripherals control module.", "You secure the peripherals control module.") - holder.icon_state = "ripley8" - else - user.visible_message("[user] removes the peripherals control module from the [holder].", "You remove the peripherals control module from the [holder].") - new /obj/item/circuitboard/mecha/ripley/peripherals(get_turf(holder)) - holder.icon_state = "ripley6" - if(9) - if(diff==FORWARD) - user.visible_message("[user] installs the power cell into the [holder].", "You install the power cell into the [holder].") - var/obj/item/I = used_atom - user.transferItemToLoc(I, holder, TRUE) - holder.icon_state = "ripley9" - else - user.visible_message("[user] unfastens the peripherals control module.", "You unfasten the peripherals control module.") - holder.icon_state = "ripley7" - if(8) - if(diff==FORWARD) - user.visible_message("[user] secures the power cell.", "You secure the power cell.") - holder.icon_state = "ripley10" - else - user.visible_message("[user] prys the power cell from [holder].", "You pry the power cell from [holder].") - var/obj/item/I = locate(/obj/item/stock_parts/cell) in holder - I.forceMove(holder.drop_location()) - holder.icon_state = "ripley8" - if(7) - if(diff==FORWARD) - user.visible_message("[user] installs the internal armor layer to the [holder].", "You install the internal armor layer to the [holder].") - holder.icon_state = "ripley11" - else - user.visible_message("[user] unfastens the power cell.", "You unfasten the power cell.") - holder.icon_state = "ripley9" - if(6) - if(diff==FORWARD) - user.visible_message("[user] secures the internal armor layer.", "You secure the internal armor layer.") - holder.icon_state = "ripley12" - else - user.visible_message("[user] pries internal armor layer from the [holder].", "You pry internal armor layer from the [holder].") - var/obj/item/stack/sheet/metal/MS = new /obj/item/stack/sheet/metal(get_turf(holder)) - MS.amount = 5 - holder.icon_state = "ripley10" - if(5) - if(diff==FORWARD) - user.visible_message("[user] welds the internal armor layer to the [holder].", "You weld the internal armor layer to the [holder].") - holder.icon_state = "ripley13" - else - user.visible_message("[user] unfastens the internal armor layer.", "You unfasten the internal armor layer.") - holder.icon_state = "ripley11" - if(4) - if(diff==FORWARD) - user.visible_message("[user] installs the external reinforced armor layer to the [holder].", "You install the external reinforced armor layer to the [holder].") - holder.icon_state = "ripley14" - else - user.visible_message("[user] cuts the internal armor layer from the [holder].", "You cut the internal armor layer from the [holder].") - holder.icon_state = "ripley12" - if(3) - if(diff==FORWARD) - user.visible_message("[user] secures the external armor layer.", "You secure the external reinforced armor layer.") - holder.icon_state = "ripley15" - else - user.visible_message("[user] pries external armor layer from the [holder].", "You pry external armor layer from the [holder].") - var/obj/item/stack/sheet/plasteel/MS = new /obj/item/stack/sheet/plasteel(get_turf(holder)) - MS.amount = 5 - holder.icon_state = "ripley13" + if(1) + user.visible_message("[user] connects [holder] hydraulic systems", "You connect [holder] hydraulic systems.") if(2) if(diff==FORWARD) - user.visible_message("[user] welds the external armor layer to the [holder].", "You weld the external armor layer to the [holder].") - spawn_mecha_result() + user.visible_message("[user] activates [holder] hydraulic systems.", "You activate [holder] hydraulic systems.") + else + user.visible_message("[user] disconnects [holder] hydraulic systems", "You disconnect [holder] hydraulic systems.") + if(3) + if(diff==FORWARD) + user.visible_message("[user] adds the wiring to [holder].", "You add the wiring to [holder].") + else + user.visible_message("[user] deactivates [holder] hydraulic systems.", "You deactivate [holder] hydraulic systems.") + if(4) + if(diff==FORWARD) + user.visible_message("[user] adjusts the wiring of [holder].", "You adjust the wiring of [holder].") + else + user.visible_message("[user] removes the wiring from [holder].", "You remove the wiring from [holder].") + if(5) + if(diff==FORWARD) + user.visible_message("[user] installs the central control module into [holder].", "You install the central computer mainboard into [holder].") + else + user.visible_message("[user] disconnects the wiring of [holder].", "You disconnect the wiring of [holder].") + if(6) + if(diff==FORWARD) + user.visible_message("[user] secures the mainboard.", "You secure the mainboard.") + else + user.visible_message("[user] removes the central control module from [holder].", "You remove the central computer mainboard from [holder].") + if(7) + if(diff==FORWARD) + user.visible_message("[user] installs the peripherals control module into [holder].", "You install the peripherals control module into [holder].") + else + user.visible_message("[user] unfastens the mainboard.", "You unfasten the mainboard.") + if(8) + if(diff==FORWARD) + user.visible_message("[user] secures the peripherals control module.", "You secure the peripherals control module.") + else + user.visible_message("[user] removes the peripherals control module from [holder].", "You remove the peripherals control module from [holder].") + if(9) + if(diff==FORWARD) + user.visible_message("[user] installs the power cell into [holder].", "You install the power cell into [holder].") + else + user.visible_message("[user] unfastens the peripherals control module.", "You unfasten the peripherals control module.") + if(10) + if(diff==FORWARD) + user.visible_message("[user] secures the power cell.", "You secure the power cell.") + else + user.visible_message("[user] prys the power cell from [holder].", "You pry the power cell from [holder].") + if(11) + if(diff==FORWARD) + user.visible_message("[user] installs the internal armor layer to [holder].", "You install the internal armor layer to [holder].") + else + user.visible_message("[user] unfastens the power cell.", "You unfasten the power cell.") + if(12) + if(diff==FORWARD) + user.visible_message("[user] secures the internal armor layer.", "You secure the internal armor layer.") + else + user.visible_message("[user] pries internal armor layer from [holder].", "You pry internal armor layer from [holder].") + if(13) + if(diff==FORWARD) + user.visible_message("[user] welds the internal armor layer to [holder].", "You weld the internal armor layer to [holder].") + else + user.visible_message("[user] unfastens the internal armor layer.", "You unfasten the internal armor layer.") + if(14) + if(diff==FORWARD) + user.visible_message("[user] installs the external reinforced armor layer to [holder].", "You install the external reinforced armor layer to [holder].") + else + user.visible_message("[user] cuts the internal armor layer from [holder].", "You cut the internal armor layer from [holder].") + if(15) + if(diff==FORWARD) + user.visible_message("[user] secures the external armor layer.", "You secure the external reinforced armor layer.") + else + user.visible_message("[user] pries external armor layer from [holder].", "You pry external armor layer from [holder].") + if(16) + if(diff==FORWARD) + user.visible_message("[user] welds the external armor layer to [holder].", "You weld the external armor layer to [holder].") else user.visible_message("[user] unfastens the external armor layer.", "You unfasten the external armor layer.") - holder.icon_state = "ripley14" return TRUE -/datum/construction/mecha/gygax_chassis - steps = list(list("key"=/obj/item/mecha_parts/part/gygax_torso), //1 - list("key"=/obj/item/mecha_parts/part/gygax_left_arm), //2 - list("key"=/obj/item/mecha_parts/part/gygax_right_arm), //3 - list("key"=/obj/item/mecha_parts/part/gygax_left_leg), //4 - list("key"=/obj/item/mecha_parts/part/gygax_right_leg), //5 - list("key"=/obj/item/mecha_parts/part/gygax_head) - ) - -/datum/construction/mecha/gygax_chassis/custom_action(step, atom/used_atom, mob/user) - user.visible_message("[user] has connected [used_atom] to the [holder].", "You connect [used_atom] to the [holder].") - holder.add_overlay(used_atom.icon_state+"+o") - qdel(used_atom) - return TRUE - -/datum/construction/mecha/gygax_chassis/action(atom/used_atom,mob/user) - return check_all_steps(used_atom,user) - -/datum/construction/mecha/gygax_chassis/spawn_result() - var/obj/item/mecha_parts/chassis/const_holder = holder - const_holder.construct = new /datum/construction/reversible/mecha/gygax(const_holder) - const_holder.icon = 'icons/mecha/mech_construction.dmi' - const_holder.icon_state = "gygax0" - const_holder.density = TRUE - qdel(src) - -/datum/construction/reversible/mecha/gygax - result = /obj/mecha/combat/gygax +/datum/construction/unordered/mecha_chassis/gygax + result = /datum/construction/mecha/gygax steps = list( - //0, dummy step used to stop the steps from finishing and spawn_result() being called automatically. - list("desc"="You shouldn't be able to see this."), + /obj/item/mecha_parts/part/gygax_torso, + /obj/item/mecha_parts/part/gygax_left_arm, + /obj/item/mecha_parts/part/gygax_right_arm, + /obj/item/mecha_parts/part/gygax_left_leg, + /obj/item/mecha_parts/part/gygax_right_leg, + /obj/item/mecha_parts/part/gygax_head + ) - //1 - list("key"=/obj/item/weldingtool, - "backkey"=/obj/item/wrench, - "desc"="External armor is wrenched."), - //2 - list("key"=/obj/item/wrench, - "backkey"=/obj/item/crowbar, - "desc"="External armor is installed."), - //3 - list("key"=/obj/item/mecha_parts/part/gygax_armor, - "backkey"=/obj/item/weldingtool, - "desc"="Internal armor is welded."), - //4 - list("key"=/obj/item/weldingtool, - "backkey"=/obj/item/wrench, - "desc"="Internal armor is wrenched."), - //5 - list("key"=/obj/item/wrench, - "backkey"=/obj/item/crowbar, - "desc"="Internal armor is installed."), - //6 - list("key"=/obj/item/stack/sheet/metal, - "backkey"=/obj/item/screwdriver, - "desc"="The power cell is secured."), - //7 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/crowbar, - "desc"="The power cell is installed."), - //8 - list("key"=/obj/item/stock_parts/cell, - "backkey"=/obj/item/screwdriver, - "desc"="Advanced capacitor is secured."), - //9 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/crowbar, - "desc"="Advanced capacitor is installed."), - //10 - list("key"=/obj/item/stock_parts/capacitor, - "backkey"=/obj/item/screwdriver, - "desc"="Advanced scanner module is secured."), - //11 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/crowbar, - "desc"="Advanced scanner module is installed."), - //12 - list("key"=/obj/item/stock_parts/scanning_module, - "backkey"=/obj/item/screwdriver, - "desc"="Weapon control module is secured."), - //13 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/crowbar, - "desc"="Weapon control module is installed."), - //14 - list("key"=/obj/item/circuitboard/mecha/gygax/targeting, - "backkey"=/obj/item/screwdriver, - "desc"="Peripherals control module is secured."), - //15 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/crowbar, - "desc"="Peripherals control module is installed."), - //16 - list("key"=/obj/item/circuitboard/mecha/gygax/peripherals, - "backkey"=/obj/item/screwdriver, - "desc"="Central control module is secured."), - //17 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/crowbar, - "desc"="Central control module is installed."), - //18 - list("key"=/obj/item/circuitboard/mecha/gygax/main, - "backkey"=/obj/item/screwdriver, - "desc"="The wiring is adjusted."), - //19 - list("key"=/obj/item/wirecutters, - "backkey"=/obj/item/screwdriver, - "desc"="The wiring is added."), - //20 - list("key"=/obj/item/stack/cable_coil, - "backkey"=/obj/item/screwdriver, - "desc"="The hydraulic systems are active."), - //21 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/wrench, - "desc"="The hydraulic systems are connected."), - //22 - list("key"=/obj/item/wrench, - "desc"="The hydraulic systems are disconnected.") - ) +/datum/construction/mecha/gygax + result = /obj/mecha/combat/gygax + base_icon = "gygax" + steps = list( + //1 + list( + "key" = TOOL_WRENCH, + "desc" = "The hydraulic systems are disconnected." + ), -/datum/construction/reversible/mecha/gygax/action(atom/used_atom,mob/user) + //2 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_WRENCH, + "desc" = "The hydraulic systems are connected." + ), + + //3 + list( + "key" = /obj/item/stack/cable_coil, + "amount" = 5, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "The hydraulic systems are active." + ), + + //4 + list( + "key" = TOOL_WIRECUTTER, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "The wiring is added." + ), + + //5 + list( + "key" = /obj/item/circuitboard/mecha/gygax/main, + "action" = ITEM_DELETE, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "The wiring is adjusted." + ), + + //6 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_CROWBAR, + "desc" = "Central control module is installed." + ), + + //7 + list( + "key" = /obj/item/circuitboard/mecha/gygax/peripherals, + "action" = ITEM_DELETE, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "Central control module is secured." + ), + + //8 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_CROWBAR, + "desc" = "Peripherals control module is installed." + ), + + //9 + list( + "key" = /obj/item/circuitboard/mecha/gygax/targeting, + "action" = ITEM_DELETE, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "Peripherals control module is secured." + ), + + //10 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_CROWBAR, + "desc" = "Weapon control module is installed." + ), + + //11 + list( + "key" = /obj/item/stock_parts/scanning_module, + "action" = ITEM_MOVE_INSIDE, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "Weapon control module is secured." + ), + + //12 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_CROWBAR, + "desc" = "Advanced scanner module is installed." + ), + + //13 + list( + "key" = /obj/item/stock_parts/capacitor, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "Advanced scanner module is secured." + ), + + //14 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_CROWBAR, + "desc" = "Advanced capacitor is installed." + ), + + //15 + list( + "key" = /obj/item/stock_parts/cell, + "action" = ITEM_MOVE_INSIDE, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "Advanced capacitor is secured." + ), + + //16 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_CROWBAR, + "desc" = "The power cell is installed." + ), + + //17 + list( + "key" = /obj/item/stack/sheet/metal, + "amount" = 5, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "The power cell is secured." + ), + + //18 + list( + "key" = TOOL_WRENCH, + "back_key" = TOOL_CROWBAR, + "desc" = "Internal armor is installed." + ), + + //19 + list( + "key" = TOOL_WELDER, + "back_key" = TOOL_WRENCH, + "desc" = "Internal armor is wrenched." + ), + + //20 + list( + "key" = /obj/item/mecha_parts/part/gygax_armor, + "action" = ITEM_DELETE, + "back_key" = TOOL_WELDER, + "desc" = "Internal armor is welded." + ), + + //21 + list( + "key" = TOOL_WRENCH, + "back_key" = TOOL_CROWBAR, + "desc" = "External armor is installed." + ), + + //22 + list( + "key" = TOOL_WELDER, + "back_key" = TOOL_WRENCH, + "desc" = "External armor is wrenched." + ), + + ) + +/datum/construction/mecha/gygax/action(atom/used_atom,mob/user) return check_step(used_atom,user) -/datum/construction/reversible/mecha/gygax/custom_action(index, diff, atom/used_atom, mob/user) +/datum/construction/mecha/gygax/custom_action(obj/item/I, mob/living/user, diff) if(!..()) return FALSE - //TODO: better messages. switch(index) - if(23) - user.visible_message("[user] connects the [holder] hydraulic systems", "You connect the [holder] hydraulic systems.") - holder.icon_state = "gygax1" - if(22) + if(1) + user.visible_message("[user] connects [holder] hydraulic systems", "You connect [holder] hydraulic systems.") + if(2) if(diff==FORWARD) - user.visible_message("[user] activates the [holder] hydraulic systems.", "You activate the [holder] hydraulic systems.") - holder.icon_state = "gygax2" + user.visible_message("[user] activates [holder] hydraulic systems.", "You activate [holder] hydraulic systems.") else - user.visible_message("[user] disconnects the [holder] hydraulic systems", "You disconnect the [holder] hydraulic systems.") - holder.icon_state = "gygax0" - if(21) + user.visible_message("[user] disconnects [holder] hydraulic systems", "You disconnect [holder] hydraulic systems.") + if(3) if(diff==FORWARD) - user.visible_message("[user] adds the wiring to the [holder].", "You add the wiring to the [holder].") - holder.icon_state = "gygax3" + user.visible_message("[user] adds the wiring to [holder].", "You add the wiring to [holder].") else - user.visible_message("[user] deactivates the [holder] hydraulic systems.", "You deactivate the [holder] hydraulic systems.") - holder.icon_state = "gygax1" - if(20) + user.visible_message("[user] deactivates [holder] hydraulic systems.", "You deactivate [holder] hydraulic systems.") + if(4) if(diff==FORWARD) - user.visible_message("[user] adjusts the wiring of the [holder].", "You adjust the wiring of the [holder].") - holder.icon_state = "gygax4" + user.visible_message("[user] adjusts the wiring of [holder].", "You adjust the wiring of [holder].") else - user.visible_message("[user] removes the wiring from the [holder].", "You remove the wiring from the [holder].") - var/obj/item/stack/cable_coil/coil = new /obj/item/stack/cable_coil(get_turf(holder)) - coil.amount = 4 - holder.icon_state = "gygax2" - if(19) + user.visible_message("[user] removes the wiring from [holder].", "You remove the wiring from [holder].") + if(5) if(diff==FORWARD) - user.visible_message("[user] installs the central control module into the [holder].", "You install the central computer mainboard into the [holder].") - qdel(used_atom) - holder.icon_state = "gygax5" + user.visible_message("[user] installs the central control module into [holder].", "You install the central computer mainboard into [holder].") else - user.visible_message("[user] disconnects the wiring of the [holder].", "You disconnect the wiring of the [holder].") - holder.icon_state = "gygax3" - if(18) + user.visible_message("[user] disconnects the wiring of [holder].", "You disconnect the wiring of [holder].") + if(6) if(diff==FORWARD) user.visible_message("[user] secures the mainboard.", "You secure the mainboard.") - holder.icon_state = "gygax6" else - user.visible_message("[user] removes the central control module from the [holder].", "You remove the central computer mainboard from the [holder].") - new /obj/item/circuitboard/mecha/gygax/main(get_turf(holder)) - holder.icon_state = "gygax4" - if(17) + user.visible_message("[user] removes the central control module from [holder].", "You remove the central computer mainboard from [holder].") + if(7) if(diff==FORWARD) - user.visible_message("[user] installs the peripherals control module into the [holder].", "You install the peripherals control module into the [holder].") - qdel(used_atom) - holder.icon_state = "gygax7" + user.visible_message("[user] installs the peripherals control module into [holder].", "You install the peripherals control module into [holder].") else user.visible_message("[user] unfastens the mainboard.", "You unfasten the mainboard.") - holder.icon_state = "gygax5" - if(16) + if(8) if(diff==FORWARD) user.visible_message("[user] secures the peripherals control module.", "You secure the peripherals control module.") - holder.icon_state = "gygax8" else - user.visible_message("[user] removes the peripherals control module from the [holder].", "You remove the peripherals control module from the [holder].") - new /obj/item/circuitboard/mecha/gygax/peripherals(get_turf(holder)) - holder.icon_state = "gygax6" - if(15) + user.visible_message("[user] removes the peripherals control module from [holder].", "You remove the peripherals control module from [holder].") + if(9) if(diff==FORWARD) - user.visible_message("[user] installs the weapon control module into the [holder].", "You install the weapon control module into the [holder].") - qdel(used_atom) - holder.icon_state = "gygax9" + user.visible_message("[user] installs the weapon control module into [holder].", "You install the weapon control module into [holder].") else user.visible_message("[user] unfastens the peripherals control module.", "You unfasten the peripherals control module.") - holder.icon_state = "gygax7" - if(14) + if(10) if(diff==FORWARD) user.visible_message("[user] secures the weapon control module.", "You secure the weapon control module.") - holder.icon_state = "gygax10" else - user.visible_message("[user] removes the weapon control module from the [holder].", "You remove the weapon control module from the [holder].") - new /obj/item/circuitboard/mecha/gygax/targeting(get_turf(holder)) - holder.icon_state = "gygax8" - if(13) + user.visible_message("[user] removes the weapon control module from [holder].", "You remove the weapon control module from [holder].") + if(11) if(diff==FORWARD) - user.visible_message("[user] installs scanner module to the [holder].", "You install scanner module to the [holder].") - var/obj/item/I = used_atom - user.transferItemToLoc(I, holder, TRUE) - holder.icon_state = "gygax11" + user.visible_message("[user] installs scanner module to [holder].", "You install scanner module to [holder].") else user.visible_message("[user] unfastens the weapon control module.", "You unfasten the weapon control module.") - holder.icon_state = "gygax9" if(12) if(diff==FORWARD) user.visible_message("[user] secures the advanced scanner module.", "You secure the scanner module.") - holder.icon_state = "gygax12" else - user.visible_message("[user] removes the advanced scanner module from the [holder].", "You remove the scanner module from the [holder].") - var/obj/item/I = locate(/obj/item/stock_parts/scanning_module) in holder - I.forceMove(get_turf(holder)) - holder.icon_state = "gygax10" - if(11) + user.visible_message("[user] removes the advanced scanner module from [holder].", "You remove the scanner module from [holder].") + if(13) if(diff==FORWARD) - user.visible_message("[user] installs capacitor to the [holder].", "You install capacitor to the [holder].") - var/obj/item/I = used_atom - user.transferItemToLoc(I, holder, TRUE) - holder.icon_state = "gygax13" + user.visible_message("[user] installs capacitor to [holder].", "You install capacitor to [holder].") else user.visible_message("[user] unfastens the scanner module.", "You unfasten the scanner module.") - holder.icon_state = "gygax11" - if(10) + if(14) if(diff==FORWARD) - user.visible_message("[user] secures the capacitor.", "You secure the capacitor.") - holder.icon_state = "gygax14" + user.visible_message("[user] secures the capacitor.", "You secure the capacitor.") else - user.visible_message("[user] removes the capacitor from the [holder].", "You remove the capacitor from the [holder].") - var/obj/item/I = locate(/obj/item/stock_parts/capacitor) in holder - I.forceMove(holder.drop_location()) - holder.icon_state = "gygax12" - if(9) + user.visible_message("[user] removes the capacitor from [holder].", "You remove the capacitor from [holder].") + if(15) if(diff==FORWARD) - user.visible_message("[user] installs the power cell into the [holder].", "You install the power cell into the [holder].") - var/obj/item/I = used_atom - user.transferItemToLoc(I, holder, TRUE) - holder.icon_state = "gygax15" + user.visible_message("[user] installs the power cell into [holder].", "You install the power cell into [holder].") else user.visible_message("[user] unfastens the capacitor.", "You unfasten the capacitor.") - holder.icon_state = "gygax13" - if(8) + if(16) if(diff==FORWARD) user.visible_message("[user] secures the power cell.", "You secure the power cell.") - holder.icon_state = "gygax16" else user.visible_message("[user] prys the power cell from [holder].", "You pry the power cell from [holder].") - var/obj/item/I = locate(/obj/item/stock_parts/cell) in holder - I.forceMove(holder.drop_location()) - holder.icon_state = "gygax14" - if(7) + if(17) if(diff==FORWARD) - user.visible_message("[user] installs the internal armor layer to the [holder].", "You install the internal armor layer to the [holder].") - holder.icon_state = "gygax17" + user.visible_message("[user] installs the internal armor layer to [holder].", "You install the internal armor layer to [holder].") else user.visible_message("[user] unfastens the power cell.", "You unfasten the power cell.") - holder.icon_state = "gygax15" - if(6) + if(18) if(diff==FORWARD) user.visible_message("[user] secures the internal armor layer.", "You secure the internal armor layer.") - holder.icon_state = "gygax18" else - user.visible_message("[user] pries internal armor layer from the [holder].", "You pry internal armor layer from the [holder].") - var/obj/item/stack/sheet/metal/MS = new /obj/item/stack/sheet/metal(get_turf(holder)) - MS.amount = 5 - holder.icon_state = "gygax16" - if(5) + user.visible_message("[user] pries internal armor layer from [holder].", "You pry internal armor layer from [holder].") + if(19) if(diff==FORWARD) - user.visible_message("[user] welds the internal armor layer to the [holder].", "You weld the internal armor layer to the [holder].") - holder.icon_state = "gygax19" + user.visible_message("[user] welds the internal armor layer to [holder].", "You weld the internal armor layer to [holder].") else user.visible_message("[user] unfastens the internal armor layer.", "You unfasten the internal armor layer.") - holder.icon_state = "gygax17" - if(4) + if(20) if(diff==FORWARD) - user.visible_message("[user] installs Gygax Armor Plates to the [holder].", "You install Gygax Armor Plates to the [holder].") - qdel(used_atom) - holder.icon_state = "gygax20" + user.visible_message("[user] installs Gygax Armor Plates to [holder].", "You install Gygax Armor Plates to [holder].") else - user.visible_message("[user] cuts the internal armor layer from the [holder].", "You cut the internal armor layer from the [holder].") - holder.icon_state = "gygax18" - if(3) + user.visible_message("[user] cuts the internal armor layer from [holder].", "You cut the internal armor layer from [holder].") + if(21) if(diff==FORWARD) user.visible_message("[user] secures Gygax Armor Plates.", "You secure Gygax Armor Plates.") - holder.icon_state = "gygax21" else - user.visible_message("[user] pries Gygax Armor Plates from the [holder].", "You pry Gygax Armor Plates from the [holder].") - new /obj/item/mecha_parts/part/gygax_armor(get_turf(holder)) - holder.icon_state = "gygax19" - if(2) + user.visible_message("[user] pries Gygax Armor Plates from [holder].", "You pry Gygax Armor Plates from [holder].") + if(22) if(diff==FORWARD) - user.visible_message("[user] welds Gygax Armor Plates to the [holder].", "You weld Gygax Armor Plates to the [holder].") - spawn_mecha_result() + user.visible_message("[user] welds Gygax Armor Plates to [holder].", "You weld Gygax Armor Plates to [holder].") else user.visible_message("[user] unfastens Gygax Armor Plates.", "You unfasten Gygax Armor Plates.") - holder.icon_state = "gygax20" return TRUE -/datum/construction/mecha/firefighter_chassis - steps = list(list("key"=/obj/item/mecha_parts/part/ripley_torso), //1 - list("key"=/obj/item/mecha_parts/part/ripley_left_arm), //2 - list("key"=/obj/item/mecha_parts/part/ripley_right_arm), //3 - list("key"=/obj/item/mecha_parts/part/ripley_left_leg), //4 - list("key"=/obj/item/mecha_parts/part/ripley_right_leg), //5 - list("key"=/obj/item/clothing/suit/fire)//6 - ) - -/datum/construction/mecha/firefighter_chassis/custom_action(step, atom/used_atom, mob/user) - user.visible_message("[user] has connected [used_atom] to the [holder].", "You connect [used_atom] to the [holder].") - holder.add_overlay(used_atom.icon_state+"+o") - qdel(used_atom) - return TRUE - -/datum/construction/mecha/firefighter_chassis/action(atom/used_atom,mob/user) - return check_all_steps(used_atom,user) - -/datum/construction/mecha/firefighter_chassis/spawn_result() - var/obj/item/mecha_parts/chassis/const_holder = holder - const_holder.construct = new /datum/construction/reversible/mecha/firefighter(const_holder) - const_holder.icon = 'icons/mecha/mech_construction.dmi' - const_holder.icon_state = "fireripley0" - const_holder.density = TRUE - qdel(src) - - -/datum/construction/reversible/mecha/firefighter - result = /obj/mecha/working/ripley/firefighter +/datum/construction/unordered/mecha_chassis/firefighter + result = /datum/construction/mecha/firefighter steps = list( - //0, dummy step used to stop the steps from finishing and spawn_result() being called automatically. - list("desc"="You shouldn't be able to see this."), + /obj/item/mecha_parts/part/ripley_torso, + /obj/item/mecha_parts/part/ripley_left_arm, + /obj/item/mecha_parts/part/ripley_right_arm, + /obj/item/mecha_parts/part/ripley_left_leg, + /obj/item/mecha_parts/part/ripley_right_leg, + /obj/item/clothing/suit/fire + ) - //1 - list("key"=/obj/item/weldingtool, - "backkey"=/obj/item/wrench, - "desc"="External armor is wrenched."), - //2 - list("key"=/obj/item/wrench, - "backkey"=/obj/item/crowbar, - "desc"="External armor is installed."), - //3 - list("key"=/obj/item/stack/sheet/plasteel, - "backkey"=/obj/item/crowbar, - "desc"="External armor is being installed."), - //4 - list("key"=/obj/item/stack/sheet/plasteel, - "backkey"=/obj/item/weldingtool, - "desc"="Internal armor is welded."), - //5 - list("key"=/obj/item/weldingtool, - "backkey"=/obj/item/wrench, - "desc"="Internal armor is wrenched."), - //6 - list("key"=/obj/item/wrench, - "backkey"=/obj/item/crowbar, - "desc"="Internal armor is installed."), - //7 - list("key"=/obj/item/stack/sheet/plasteel, - "backkey"=/obj/item/screwdriver, - "desc"="The power cell is secured."), - //8 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/crowbar, - "desc"="The power cell is installed."), - //9 - list("key"=/obj/item/stock_parts/cell, - "backkey"=/obj/item/screwdriver, - "desc"="Peripherals control module is secured."), - //10 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/crowbar, - "desc"="Peripherals control module is installed."), - //11 - list("key"=/obj/item/circuitboard/mecha/ripley/peripherals, - "backkey"=/obj/item/screwdriver, - "desc"="Central control module is secured."), - //12 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/crowbar, - "desc"="Central control module is installed."), - //13 - list("key"=/obj/item/circuitboard/mecha/ripley/main, - "backkey"=/obj/item/screwdriver, - "desc"="The wiring is adjusted."), - //14 - list("key"=/obj/item/wirecutters, - "backkey"=/obj/item/screwdriver, - "desc"="The wiring is added."), - //15 - list("key"=/obj/item/stack/cable_coil, - "backkey"=/obj/item/screwdriver, - "desc"="The hydraulic systems are active."), - //16 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/wrench, - "desc"="The hydraulic systems are connected."), - //17 - list("key"=/obj/item/wrench, - "desc"="The hydraulic systems are disconnected.") - ) +/datum/construction/mecha/firefighter + result = /obj/mecha/working/ripley/firefighter + base_icon = "fireripley" + steps = list( + //1 + list( + "key" = TOOL_WRENCH, + "desc" = "The hydraulic systems are disconnected." + ), -/datum/construction/reversible/mecha/firefighter/action(atom/used_atom,mob/user) - return check_step(used_atom,user) + //2 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_WRENCH, + "desc" = "The hydraulic systems are connected." + ), -/datum/construction/reversible/mecha/firefighter/custom_action(index, diff, atom/used_atom, mob/user) + //3 + list( + "key" = /obj/item/stack/cable_coil, + "amount" = 5, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "The hydraulic systems are active." + ), + + //4 + list( + "key" = TOOL_WIRECUTTER, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "The wiring is added." + ), + + //5 + list( + "key" = /obj/item/circuitboard/mecha/ripley/main, + "action" = ITEM_DELETE, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "The wiring is adjusted." + ), + + //6 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_CROWBAR, + "desc" = "Central control module is installed." + ), + + //7 + list( + "key" = /obj/item/circuitboard/mecha/ripley/peripherals, + "action" = ITEM_DELETE, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "Central control module is secured." + ), + + //8 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_CROWBAR, + "desc" = "Peripherals control module is installed." + ), + + //9 + list( + "key" = /obj/item/stock_parts/cell, + "action" = ITEM_MOVE_INSIDE, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "Peripherals control module is secured." + ), + + //10 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_CROWBAR, + "desc" = "The power cell is installed." + ), + + //11 + list( + "key" = /obj/item/stack/sheet/plasteel, + "amount" = 5, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "The power cell is secured." + ), + + //12 + list( + "key" = TOOL_WRENCH, + "back_key" = TOOL_CROWBAR, + "desc" = "Internal armor is installed." + ), + + //13 + list( + "key" = TOOL_WELDER, + "back_key" = TOOL_WRENCH, + "desc" = "Internal armor is wrenched." + ), + + //14 + list( + "key" = /obj/item/stack/sheet/plasteel, + "amount" = 5, + "back_key" = TOOL_WELDER, + "desc" = "Internal armor is welded." + ), + + //15 + list( + "key" = /obj/item/stack/sheet/plasteel, + "amount" = 5, + "back_key" = TOOL_CROWBAR, + "desc" = "External armor is being installed." + ), + + //16 + list( + "key" = TOOL_WRENCH, + "back_key" = TOOL_CROWBAR, + "desc" = "External armor is installed." + ), + + //17 + list( + "key" = TOOL_WELDER, + "back_key" = TOOL_WRENCH, + "desc" = "External armor is wrenched." + ), + ) + +/datum/construction/mecha/firefighter/custom_action(obj/item/I, mob/living/user, diff) if(!..()) return FALSE //TODO: better messages. switch(index) - if(18) - user.visible_message("[user] connects the [holder] hydraulic systems", "You connect the [holder] hydraulic systems.") - holder.icon_state = "fireripley1" - if(17) - if(diff==FORWARD) - user.visible_message("[user] activates the [holder] hydraulic systems.", "You activate the [holder] hydraulic systems.") - holder.icon_state = "fireripley2" - else - user.visible_message("[user] disconnects the [holder] hydraulic systems", "You disconnect the [holder] hydraulic systems.") - holder.icon_state = "fireripley0" - if(16) - if(diff==FORWARD) - user.visible_message("[user] adds the wiring to the [holder].", "You add the wiring to the [holder].") - holder.icon_state = "fireripley3" - else - user.visible_message("[user] deactivates the [holder] hydraulic systems.", "You deactivate the [holder] hydraulic systems.") - holder.icon_state = "fireripley1" - if(15) - if(diff==FORWARD) - user.visible_message("[user] adjusts the wiring of the [holder].", "You adjust the wiring of the [holder].") - holder.icon_state = "fireripley4" - else - user.visible_message("[user] removes the wiring from the [holder].", "You remove the wiring from the [holder].") - var/obj/item/stack/cable_coil/coil = new /obj/item/stack/cable_coil(get_turf(holder)) - coil.amount = 4 - holder.icon_state = "fireripley2" - if(14) - if(diff==FORWARD) - user.visible_message("[user] installs the central control module into the [holder].", "You install the central computer mainboard into the [holder].") - qdel(used_atom) - holder.icon_state = "fireripley5" - else - user.visible_message("[user] disconnects the wiring of the [holder].", "You disconnect the wiring of the [holder].") - holder.icon_state = "fireripley3" - if(13) - if(diff==FORWARD) - user.visible_message("[user] secures the mainboard.", "You secure the mainboard.") - holder.icon_state = "fireripley6" - else - user.visible_message("[user] removes the central control module from the [holder].", "You remove the central computer mainboard from the [holder].") - new /obj/item/circuitboard/mecha/ripley/main(get_turf(holder)) - holder.icon_state = "fireripley4" - if(12) - if(diff==FORWARD) - user.visible_message("[user] installs the peripherals control module into the [holder].", "You install the peripherals control module into the [holder].") - qdel(used_atom) - holder.icon_state = "fireripley7" - else - user.visible_message("[user] unfastens the mainboard.", "You unfasten the mainboard.") - holder.icon_state = "fireripley5" - if(11) - if(diff==FORWARD) - user.visible_message("[user] secures the peripherals control module.", "You secure the peripherals control module.") - holder.icon_state = "fireripley8" - else - user.visible_message("[user] removes the peripherals control module from the [holder].", "You remove the peripherals control module from the [holder].") - new /obj/item/circuitboard/mecha/ripley/peripherals(get_turf(holder)) - holder.icon_state = "fireripley6" - if(10) - if(diff==FORWARD) - user.visible_message("[user] installs the power cell into the [holder].", "You install the power cell into the [holder].") - var/obj/item/I = used_atom - user.transferItemToLoc(I, holder, TRUE) - holder.icon_state = "fireripley9" - else - user.visible_message("[user] unfastens the peripherals control module.", "You unfasten the peripherals control module.") - holder.icon_state = "fireripley7" - if(9) - if(diff==FORWARD) - user.visible_message("[user] secures the power cell.", "You secure the power cell.") - holder.icon_state = "fireripley10" - else - user.visible_message("[user] prys the power cell from [holder].", "You pry the power cell from [holder].") - var/obj/item/I = locate(/obj/item/stock_parts/cell) in holder - I.forceMove(holder.drop_location()) - holder.icon_state = "fireripley8" - if(8) - if(diff==FORWARD) - user.visible_message("[user] installs the internal armor layer to the [holder].", "You install the internal armor layer to the [holder].") - holder.icon_state = "fireripley11" - else - user.visible_message("[user] unfastens the power cell.", "You unfasten the power cell.") - holder.icon_state = "fireripley9" - if(7) - if(diff==FORWARD) - user.visible_message("[user] secures the internal armor layer.", "You secure the internal armor layer.") - holder.icon_state = "fireripley12" - else - user.visible_message("[user] pries internal armor layer from the [holder].", "You pry internal armor layer from the [holder].") - var/obj/item/stack/sheet/plasteel/MS = new /obj/item/stack/sheet/plasteel(get_turf(holder)) - MS.amount = 5 - holder.icon_state = "fireripley10" - if(6) - if(diff==FORWARD) - user.visible_message("[user] welds the internal armor layer to the [holder].", "You weld the internal armor layer to the [holder].") - holder.icon_state = "fireripley13" - else - user.visible_message("[user] unfastens the internal armor layer.", "You unfasten the internal armor layer.") - holder.icon_state = "fireripley11" - if(5) - if(diff==FORWARD) - user.visible_message("[user] starts to install the external armor layer to the [holder].", "You install the external armor layer to the [holder].") - holder.icon_state = "fireripley14" - else - user.visible_message("[user] cuts the internal armor layer from the [holder].", "You cut the internal armor layer from the [holder].") - holder.icon_state = "fireripley12" - if(4) - if(diff==FORWARD) - user.visible_message("[user] installs the external reinforced armor layer to the [holder].", "You install the external reinforced armor layer to the [holder].") - holder.icon_state = "fireripley15" - else - user.visible_message("[user] removes the external armor from the [holder].", "You remove the external armor from the [holder].") - var/obj/item/stack/sheet/plasteel/MS = new /obj/item/stack/sheet/plasteel(get_turf(holder)) - MS.amount = 5 - holder.icon_state = "fireripley13" - if(3) - if(diff==FORWARD) - user.visible_message("[user] secures the external armor layer.", "You secure the external reinforced armor layer.") - holder.icon_state = "fireripley16" - else - user.visible_message("[user] pries external armor layer from the [holder].", "You pry external armor layer from the [holder].") - var/obj/item/stack/sheet/plasteel/MS = new /obj/item/stack/sheet/plasteel(get_turf(holder)) - MS.amount = 5 - holder.icon_state = "fireripley14" + if(1) + user.visible_message("[user] connects [holder] hydraulic systems", "You connect [holder] hydraulic systems.") if(2) if(diff==FORWARD) - user.visible_message("[user] welds the external armor layer to the [holder].", "You weld the external armor layer to the [holder].") - spawn_mecha_result() + user.visible_message("[user] activates [holder] hydraulic systems.", "You activate [holder] hydraulic systems.") + else + user.visible_message("[user] disconnects [holder] hydraulic systems", "You disconnect [holder] hydraulic systems.") + if(3) + if(diff==FORWARD) + user.visible_message("[user] adds the wiring to [holder].", "You add the wiring to [holder].") + else + user.visible_message("[user] deactivates [holder] hydraulic systems.", "You deactivate [holder] hydraulic systems.") + if(4) + if(diff==FORWARD) + user.visible_message("[user] adjusts the wiring of [holder].", "You adjust the wiring of [holder].") + else + user.visible_message("[user] removes the wiring from [holder].", "You remove the wiring from [holder].") + if(5) + if(diff==FORWARD) + user.visible_message("[user] installs the central control module into [holder].", "You install the central computer mainboard into [holder].") + else + user.visible_message("[user] disconnects the wiring of [holder].", "You disconnect the wiring of [holder].") + if(6) + if(diff==FORWARD) + user.visible_message("[user] secures the mainboard.", "You secure the mainboard.") + else + user.visible_message("[user] removes the central control module from [holder].", "You remove the central computer mainboard from [holder].") + if(7) + if(diff==FORWARD) + user.visible_message("[user] installs the peripherals control module into [holder].", "You install the peripherals control module into [holder].") + else + user.visible_message("[user] unfastens the mainboard.", "You unfasten the mainboard.") + if(8) + if(diff==FORWARD) + user.visible_message("[user] secures the peripherals control module.", "You secure the peripherals control module.") + else + user.visible_message("[user] removes the peripherals control module from [holder].", "You remove the peripherals control module from [holder].") + if(9) + if(diff==FORWARD) + user.visible_message("[user] installs the power cell into [holder].", "You install the power cell into [holder].") + else + user.visible_message("[user] unfastens the peripherals control module.", "You unfasten the peripherals control module.") + if(10) + if(diff==FORWARD) + user.visible_message("[user] secures the power cell.", "You secure the power cell.") + else + user.visible_message("[user] prys the power cell from [holder].", "You pry the power cell from [holder].") + if(11) + if(diff==FORWARD) + user.visible_message("[user] installs the internal armor layer to [holder].", "You install the internal armor layer to [holder].") + else + user.visible_message("[user] unfastens the power cell.", "You unfasten the power cell.") + if(12) + if(diff==FORWARD) + user.visible_message("[user] secures the internal armor layer.", "You secure the internal armor layer.") + else + user.visible_message("[user] pries internal armor layer from [holder].", "You pry internal armor layer from [holder].") + if(13) + if(diff==FORWARD) + user.visible_message("[user] welds the internal armor layer to [holder].", "You weld the internal armor layer to [holder].") + else + user.visible_message("[user] unfastens the internal armor layer.", "You unfasten the internal armor layer.") + if(14) + if(diff==FORWARD) + user.visible_message("[user] starts to install the external armor layer to [holder].", "You install the external armor layer to [holder].") + else + user.visible_message("[user] cuts the internal armor layer from [holder].", "You cut the internal armor layer from [holder].") + if(15) + if(diff==FORWARD) + user.visible_message("[user] installs the external reinforced armor layer to [holder].", "You install the external reinforced armor layer to [holder].") + else + user.visible_message("[user] removes the external armor from [holder].", "You remove the external armor from [holder].") + if(16) + if(diff==FORWARD) + user.visible_message("[user] secures the external armor layer.", "You secure the external reinforced armor layer.") + else + user.visible_message("[user] pries external armor layer from [holder].", "You pry external armor layer from [holder].") + if(17) + if(diff==FORWARD) + user.visible_message("[user] welds the external armor layer to [holder].", "You weld the external armor layer to [holder].") else user.visible_message("[user] unfastens the external armor layer.", "You unfasten the external armor layer.") - holder.icon_state = "fireripley15" return TRUE -/datum/construction/mecha/honker_chassis - steps = list(list("key"=/obj/item/mecha_parts/part/honker_torso), //1 - list("key"=/obj/item/mecha_parts/part/honker_left_arm), //2 - list("key"=/obj/item/mecha_parts/part/honker_right_arm), //3 - list("key"=/obj/item/mecha_parts/part/honker_left_leg), //4 - list("key"=/obj/item/mecha_parts/part/honker_right_leg), //5 - list("key"=/obj/item/mecha_parts/part/honker_head) - ) - -/datum/construction/mecha/honker_chassis/action(atom/used_atom,mob/user) - return check_all_steps(used_atom,user) - -/datum/construction/mecha/honker_chassis/custom_action(step, atom/used_atom, mob/user) - user.visible_message("[user] has connected [used_atom] to the [holder].", "You connect [used_atom] to the [holder].") - holder.add_overlay(used_atom.icon_state+"+o") - qdel(used_atom) - return TRUE - -/datum/construction/mecha/honker_chassis/spawn_result() - var/obj/item/mecha_parts/chassis/const_holder = holder - const_holder.construct = new /datum/construction/mecha/honker(const_holder) - const_holder.density = TRUE - qdel(src) +/datum/construction/unordered/mecha_chassis/honker + result = /datum/construction/mecha/honker + steps = list( + /obj/item/mecha_parts/part/honker_torso, + /obj/item/mecha_parts/part/honker_left_arm, + /obj/item/mecha_parts/part/honker_right_arm, + /obj/item/mecha_parts/part/honker_left_leg, + /obj/item/mecha_parts/part/honker_right_leg, + /obj/item/mecha_parts/part/honker_head + ) /datum/construction/mecha/honker result = /obj/mecha/combat/honker steps = list( - list("desc"="You shouldn't be able to see this."), //0, note steps in the construction path are +1 to the ones here - list("key"=/obj/item/bikehorn), //1 - list("key"=/obj/item/clothing/shoes/clown_shoes), //2 - list("key"=/obj/item/bikehorn), //3 - list("key"=/obj/item/clothing/mask/gas/clown_hat), //4 - list("key"=/obj/item/bikehorn), //5 - list("key"=/obj/item/stock_parts/cell), //6 - list("key"=/obj/item/bikehorn), //7 - list("key"=/obj/item/circuitboard/mecha/honker/targeting), //8 - list("key"=/obj/item/bikehorn), //9 - list("key"=/obj/item/circuitboard/mecha/honker/peripherals), //10 - list("key"=/obj/item/bikehorn), //11 - list("key"=/obj/item/circuitboard/mecha/honker/main), //12 - list("key"=/obj/item/bikehorn), //13 - ) + //1 + list( + "key" = /obj/item/bikehorn + ), -/datum/construction/mecha/honker/action(atom/used_atom,mob/user) - return check_step(used_atom,user) + //2 + list( + "key" = /obj/item/circuitboard/mecha/honker/main, + "action" = ITEM_DELETE + ), -/datum/construction/mecha/honker/custom_action(step, atom/used_atom, mob/user) + //3 + list( + "key" = /obj/item/bikehorn + ), + + //4 + list( + "key" = /obj/item/circuitboard/mecha/honker/peripherals, + "action" = ITEM_DELETE + ), + + //5 + list( + "key" = /obj/item/bikehorn + ), + + //6 + list( + "key" = /obj/item/circuitboard/mecha/honker/targeting, + "action" = ITEM_DELETE + ), + + //7 + list( + "key" = /obj/item/bikehorn + ), + + //8 + list( + "key" = /obj/item/stock_parts/cell, + "action" = ITEM_MOVE_INSIDE + ), + + //9 + list( + "key" = /obj/item/bikehorn + ), + + //10 + list( + "key" = /obj/item/clothing/mask/gas/clown_hat, + "action" = ITEM_DELETE + ), + + //11 + list( + "key" = /obj/item/bikehorn + ), + + //12 + list( + "key" = /obj/item/clothing/shoes/clown_shoes, + "action" = ITEM_DELETE + ), + + //13 + list( + "key" = /obj/item/bikehorn + ), + ) + +// HONK doesn't have any construction step icons, so we just set an icon once. +/datum/construction/mecha/honker/update_holder(step_index) + if(step_index == 1) + holder.icon = 'icons/mecha/mech_construct.dmi' + holder.icon_state = "honker_chassis" + ..() + +/datum/construction/mecha/honker/custom_action(obj/item/I, mob/living/user, diff) if(!..()) return FALSE - if(istype(used_atom, /obj/item/bikehorn)) + if(istype(I, /obj/item/bikehorn)) playsound(holder, 'sound/items/bikehorn.ogg', 50, 1) user.visible_message("HONK!") - if(step==2) - spawn_mecha_result() - //TODO: better messages. - switch(step) - if(13) - user.visible_message("[user] installs the central control module into the [holder].", "You install the central control module into the [holder].") - qdel(used_atom) - if(11) - user.visible_message("[user] installs the peripherals control module into the [holder].", "You install the peripherals control module into the [holder].") - qdel(used_atom) - if(9) - user.visible_message("[user] installs the weapon control module into the [holder].", "You install the weapon control module into the [holder].") - qdel(used_atom) - if(7) - user.visible_message("[user] installs the power cell into the [holder].", "You install the power cell into the [holder].") - var/obj/item/I = used_atom - user.transferItemToLoc(I, holder, TRUE) - if(5) - user.visible_message("[user] puts clown wig and mask on the [holder].", "You put clown wig and mask on the [holder].") - qdel(used_atom) - if(3) - user.visible_message("[user] puts clown boots on the [holder].", "You put clown boots on the [holder].") - qdel(used_atom) + switch(index) + if(2) + user.visible_message("[user] installs the central control module into [holder].", "You install the central control module into [holder].") + if(4) + user.visible_message("[user] installs the peripherals control module into [holder].", "You install the peripherals control module into [holder].") + if(6) + user.visible_message("[user] installs the weapon control module into [holder].", "You install the weapon control module into [holder].") + if(8) + user.visible_message("[user] installs the power cell into [holder].", "You install the power cell into [holder].") + if(10) + user.visible_message("[user] puts clown wig and mask on [holder].", "You put clown wig and mask on [holder].") + if(12) + user.visible_message("[user] puts clown boots on [holder].", "You put clown boots on [holder].") return TRUE -/datum/construction/mecha/durand_chassis - steps = list(list("key"=/obj/item/mecha_parts/part/durand_torso), //1 - list("key"=/obj/item/mecha_parts/part/durand_left_arm), //2 - list("key"=/obj/item/mecha_parts/part/durand_right_arm), //3 - list("key"=/obj/item/mecha_parts/part/durand_left_leg), //4 - list("key"=/obj/item/mecha_parts/part/durand_right_leg), //5 - list("key"=/obj/item/mecha_parts/part/durand_head) - ) - -/datum/construction/mecha/durand_chassis/custom_action(step, atom/used_atom, mob/user) - user.visible_message("[user] has connected [used_atom] to the [holder].", "You connect [used_atom] to the [holder]") - holder.add_overlay(used_atom.icon_state+"+o") - qdel(used_atom) - return TRUE - -/datum/construction/mecha/durand_chassis/action(atom/used_atom,mob/user) - return check_all_steps(used_atom,user) - -/datum/construction/mecha/durand_chassis/spawn_result() - var/obj/item/mecha_parts/chassis/const_holder = holder - const_holder.construct = new /datum/construction/reversible/mecha/durand(const_holder) - const_holder.icon = 'icons/mecha/mech_construction.dmi' - const_holder.icon_state = "durand0" - const_holder.density = TRUE - qdel(src) - -/datum/construction/reversible/mecha/durand - result = /obj/mecha/combat/durand +/datum/construction/unordered/mecha_chassis/durand + result = /datum/construction/mecha/durand steps = list( - //0, dummy step used to stop the steps from finishing and spawn_result() being called automatically. - list("desc"="You shouldn't be able to see this."), + /obj/item/mecha_parts/part/durand_torso, + /obj/item/mecha_parts/part/durand_left_arm, + /obj/item/mecha_parts/part/durand_right_arm, + /obj/item/mecha_parts/part/durand_left_leg, + /obj/item/mecha_parts/part/durand_right_leg, + /obj/item/mecha_parts/part/durand_head + ) - //1 - list("key"=/obj/item/weldingtool, - "backkey"=/obj/item/wrench, - "desc"="External armor is wrenched."), - //2 - list("key"=/obj/item/wrench, - "backkey"=/obj/item/crowbar, - "desc"="External armor is installed."), - //3 - list("key"=/obj/item/mecha_parts/part/durand_armor, - "backkey"=/obj/item/weldingtool, - "desc"="Internal armor is welded."), - //4 - list("key"=/obj/item/weldingtool, - "backkey"=/obj/item/wrench, - "desc"="Internal armor is wrenched."), - //5 - list("key"=/obj/item/wrench, - "backkey"=/obj/item/crowbar, - "desc"="Internal armor is installed."), - //6 - list("key"=/obj/item/stack/sheet/metal, - "backkey"=/obj/item/screwdriver, - "desc"="The power cell is secured."), - //7 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/crowbar, - "desc"="The power cell is installed."), - //8 - list("key"=/obj/item/stock_parts/cell, - "backkey"=/obj/item/screwdriver, - "desc"="Super capacitor is secured."), - //9 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/crowbar, - "desc"="Super capacitor is installed."), - //10 - list("key"=/obj/item/stock_parts/capacitor, - "backkey"=/obj/item/screwdriver, - "desc"="Phasic scanner module is secured."), - //11 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/crowbar, - "desc"="Phasic scanner module is installed."), - //12 - list("key"=/obj/item/stock_parts/scanning_module, - "backkey"=/obj/item/screwdriver, - "desc"="Weapon control module is secured."), - //13 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/crowbar, - "desc"="Weapon control module is installed."), - //14 - list("key"=/obj/item/circuitboard/mecha/durand/targeting, - "backkey"=/obj/item/screwdriver, - "desc"="Peripherals control module is secured."), - //15 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/crowbar, - "desc"="Peripherals control module is installed."), - //16 - list("key"=/obj/item/circuitboard/mecha/durand/peripherals, - "backkey"=/obj/item/screwdriver, - "desc"="Central control module is secured."), - //17 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/crowbar, - "desc"="Central control module is installed."), - //18 - list("key"=/obj/item/circuitboard/mecha/durand/main, - "backkey"=/obj/item/screwdriver, - "desc"="The wiring is adjusted."), - //19 - list("key"=/obj/item/wirecutters, - "backkey"=/obj/item/screwdriver, - "desc"="The wiring is added."), - //20 - list("key"=/obj/item/stack/cable_coil, - "backkey"=/obj/item/screwdriver, - "desc"="The hydraulic systems are active."), - //21 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/wrench, - "desc"="The hydraulic systems are connected."), - //22 - list("key"=/obj/item/wrench, - "desc"="The hydraulic systems are disconnected.") - ) +/datum/construction/mecha/durand + result = /obj/mecha/combat/durand + base_icon = "durand" + steps = list( + //1 + list( + "key" = TOOL_WRENCH, + "desc" = "The hydraulic systems are disconnected." + ), + + //2 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_WRENCH, + "desc" = "The hydraulic systems are connected." + ), + + //3 + list( + "key" = /obj/item/stack/cable_coil, + "amount" = 5, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "The hydraulic systems are active." + ), + + //4 + list( + "key" = TOOL_WIRECUTTER, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "The wiring is added." + ), + + //5 + list( + "key" = /obj/item/circuitboard/mecha/durand/main, + "action" = ITEM_DELETE, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "The wiring is adjusted." + ), + + //6 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_CROWBAR, + "desc" = "Central control module is installed." + ), + + //7 + list( + "key" = /obj/item/circuitboard/mecha/durand/peripherals, + "action" = ITEM_DELETE, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "Central control module is secured." + ), + + //8 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_CROWBAR, + "desc" = "Peripherals control module is installed." + ), + + //9 + list( + "key" = /obj/item/circuitboard/mecha/durand/targeting, + "action" = ITEM_DELETE, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "Peripherals control module is secured." + ), + + //10 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_CROWBAR, + "desc" = "Weapon control module is installed." + ), + + //11 + list( + "key" = /obj/item/stock_parts/scanning_module, + "action" = ITEM_MOVE_INSIDE, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "Weapon control module is secured." + ), + + //12 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_CROWBAR, + "desc" = "Phasic scanner module is installed." + ), + + //13 + list( + "key" = /obj/item/stock_parts/capacitor, + "action" = ITEM_MOVE_INSIDE, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "Phasic scanner module is secured." + ), + + //14 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_CROWBAR, + "desc" = "Super capacitor is installed." + ), + + //15 + list( + "key" = /obj/item/stock_parts/cell, + "action" = ITEM_MOVE_INSIDE, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "Super capacitor is secured." + ), + + //16 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_CROWBAR, + "desc" = "The power cell is installed." + ), + + //17 + list( + "key" = /obj/item/stack/sheet/metal, + "amount" = 5, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "The power cell is secured." + ), + + //18 + list( + "key" = TOOL_WRENCH, + "back_key" = TOOL_CROWBAR, + "desc" = "Internal armor is installed." + ), + + //19 + list( + "key" = TOOL_WELDER, + "back_key" = TOOL_WRENCH, + "desc" = "Internal armor is wrenched." + ), + + //20 + list( + "key" = /obj/item/mecha_parts/part/durand_armor, + "action" = ITEM_DELETE, + "back_key" = TOOL_WELDER, + "desc" = "Internal armor is welded." + ), + + //21 + list( + "key" = TOOL_WRENCH, + "back_key" = TOOL_CROWBAR, + "desc" = "External armor is installed." + ), + + //22 + list( + "key" = TOOL_WELDER, + "back_key" = TOOL_WRENCH, + "desc" = "External armor is wrenched." + ), + ) -/datum/construction/reversible/mecha/durand/action(atom/used_atom,mob/user) - return check_step(used_atom,user) - -/datum/construction/reversible/mecha/durand/custom_action(index, diff, atom/used_atom, mob/user) +/datum/construction/mecha/durand/custom_action(obj/item/I, mob/living/user, diff) if(!..()) return FALSE //TODO: better messages. switch(index) - if(23) - user.visible_message("[user] connects the [holder] hydraulic systems", "You connect the [holder] hydraulic systems.") - holder.icon_state = "durand1" - if(22) + if(1) + user.visible_message("[user] connects [holder] hydraulic systems", "You connect [holder] hydraulic systems.") + if(2) if(diff==FORWARD) - user.visible_message("[user] activates the [holder] hydraulic systems.", "You activate the [holder] hydraulic systems.") - holder.icon_state = "durand2" + user.visible_message("[user] activates [holder] hydraulic systems.", "You activate [holder] hydraulic systems.") else - user.visible_message("[user] disconnects the [holder] hydraulic systems", "You disconnect the [holder] hydraulic systems.") - holder.icon_state = "durand0" - if(21) + user.visible_message("[user] disconnects [holder] hydraulic systems", "You disconnect [holder] hydraulic systems.") + if(3) if(diff==FORWARD) - user.visible_message("[user] adds the wiring to the [holder].", "You add the wiring to the [holder].") - holder.icon_state = "durand3" + user.visible_message("[user] adds the wiring to [holder].", "You add the wiring to [holder].") else - user.visible_message("[user] deactivates the [holder] hydraulic systems.", "You deactivate the [holder] hydraulic systems.") - holder.icon_state = "durand1" - if(20) + user.visible_message("[user] deactivates [holder] hydraulic systems.", "You deactivate [holder] hydraulic systems.") + if(4) if(diff==FORWARD) - user.visible_message("[user] adjusts the wiring of the [holder].", "You adjust the wiring of the [holder].") - holder.icon_state = "durand4" + user.visible_message("[user] adjusts the wiring of [holder].", "You adjust the wiring of [holder].") else - user.visible_message("[user] removes the wiring from the [holder].", "You remove the wiring from the [holder].") - var/obj/item/stack/cable_coil/coil = new /obj/item/stack/cable_coil(get_turf(holder)) - coil.amount = 4 - holder.icon_state = "durand2" - if(19) + user.visible_message("[user] removes the wiring from [holder].", "You remove the wiring from [holder].") + if(5) if(diff==FORWARD) - user.visible_message("[user] installs the central control module into the [holder].", "You install the central computer mainboard into the [holder].") - qdel(used_atom) - holder.icon_state = "durand5" + user.visible_message("[user] installs the central control module into [holder].", "You install the central computer mainboard into [holder].") else - user.visible_message("[user] disconnects the wiring of the [holder].", "You disconnect the wiring of the [holder].") - holder.icon_state = "durand3" - if(18) + user.visible_message("[user] disconnects the wiring of [holder].", "You disconnect the wiring of [holder].") + if(6) if(diff==FORWARD) user.visible_message("[user] secures the mainboard.", "You secure the mainboard.") - holder.icon_state = "durand6" else - user.visible_message("[user] removes the central control module from the [holder].", "You remove the central computer mainboard from the [holder].") - new /obj/item/circuitboard/mecha/durand/main(get_turf(holder)) - holder.icon_state = "durand4" - if(17) + user.visible_message("[user] removes the central control module from [holder].", "You remove the central computer mainboard from [holder].") + if(7) if(diff==FORWARD) - user.visible_message("[user] installs the peripherals control module into the [holder].", "You install the peripherals control module into the [holder].") - qdel(used_atom) - holder.icon_state = "durand7" + user.visible_message("[user] installs the peripherals control module into [holder].", "You install the peripherals control module into [holder].") else user.visible_message("[user] unfastens the mainboard.", "You unfasten the mainboard.") - holder.icon_state = "durand5" - if(16) + if(8) if(diff==FORWARD) user.visible_message("[user] secures the peripherals control module.", "You secure the peripherals control module.") - holder.icon_state = "durand8" else - user.visible_message("[user] removes the peripherals control module from the [holder].", "You remove the peripherals control module from the [holder].") - new /obj/item/circuitboard/mecha/durand/peripherals(get_turf(holder)) - holder.icon_state = "durand6" - if(15) + user.visible_message("[user] removes the peripherals control module from [holder].", "You remove the peripherals control module from [holder].") + if(9) if(diff==FORWARD) - user.visible_message("[user] installs the weapon control module into the [holder].", "You install the weapon control module into the [holder].") - qdel(used_atom) - holder.icon_state = "durand9" + user.visible_message("[user] installs the weapon control module into [holder].", "You install the weapon control module into [holder].") else user.visible_message("[user] unfastens the peripherals control module.", "You unfasten the peripherals control module.") - holder.icon_state = "durand7" - if(14) + if(10) if(diff==FORWARD) user.visible_message("[user] secures the weapon control module.", "You secure the weapon control module.") - holder.icon_state = "durand10" else - user.visible_message("[user] removes the weapon control module from the [holder].", "You remove the weapon control module from the [holder].") - new /obj/item/circuitboard/mecha/durand/targeting(get_turf(holder)) - holder.icon_state = "durand8" - if(13) + user.visible_message("[user] removes the weapon control module from [holder].", "You remove the weapon control module from [holder].") + if(11) if(diff==FORWARD) - user.visible_message("[user] installs scanner module to the [holder].", "You install phasic scanner module to the [holder].") - var/obj/item/I = used_atom - user.transferItemToLoc(I, holder, TRUE) - holder.icon_state = "durand11" + user.visible_message("[user] installs scanner module to [holder].", "You install phasic scanner module to [holder].") else user.visible_message("[user] unfastens the weapon control module.", "You unfasten the weapon control module.") - holder.icon_state = "durand9" if(12) if(diff==FORWARD) user.visible_message("[user] secures the scanner module.", "You secure the scanner module.") - holder.icon_state = "durand12" else - user.visible_message("[user] removes the scanner module from the [holder].", "You remove the scanner module from the [holder].") - var/obj/item/I = locate(/obj/item/stock_parts/scanning_module) in holder - I.forceMove(holder.drop_location()) - holder.icon_state = "durand10" - if(11) + user.visible_message("[user] removes the scanner module from [holder].", "You remove the scanner module from [holder].") + if(13) if(diff==FORWARD) - user.visible_message("[user] installs capacitor to the [holder].", "You install capacitor to the [holder].") - var/obj/item/I = used_atom - user.transferItemToLoc(I, holder, TRUE) - holder.icon_state = "durand13" + user.visible_message("[user] installs capacitor to [holder].", "You install capacitor to [holder].") else user.visible_message("[user] unfastens the scanner module.", "You unfasten the scanner module.") - holder.icon_state = "durand11" - if(10) + if(14) if(diff==FORWARD) user.visible_message("[user] secures the capacitor.", "You secure the capacitor.") - holder.icon_state = "durand14" else - user.visible_message("[user] removes the super capacitor from the [holder].", "You remove the capacitor from the [holder].") - var/obj/item/I = locate(/obj/item/stock_parts/capacitor) in holder - I.forceMove(holder.drop_location()) - holder.icon_state = "durand12" - if(9) + user.visible_message("[user] removes the super capacitor from [holder].", "You remove the capacitor from [holder].") + if(15) if(diff==FORWARD) - user.visible_message("[user] installs the power cell into the [holder].", "You install the power cell into the [holder].") - var/obj/item/I = used_atom - user.transferItemToLoc(I, holder, TRUE) - holder.icon_state = "durand15" + user.visible_message("[user] installs the power cell into [holder].", "You install the power cell into [holder].") else user.visible_message("[user] unfastens the capacitor.", "You unfasten the capacitor.") - holder.icon_state = "durand13" - if(8) + if(16) if(diff==FORWARD) user.visible_message("[user] secures the power cell.", "You secure the power cell.") - holder.icon_state = "durand16" else user.visible_message("[user] prys the power cell from [holder].", "You pry the power cell from [holder].") - var/obj/item/I = locate(/obj/item/stock_parts/cell) in holder - I.forceMove(holder.drop_location()) - holder.icon_state = "durand14" - if(7) + if(17) if(diff==FORWARD) - user.visible_message("[user] installs the internal armor layer to the [holder].", "You install the internal armor layer to the [holder].") - holder.icon_state = "durand17" + user.visible_message("[user] installs the internal armor layer to [holder].", "You install the internal armor layer to [holder].") else user.visible_message("[user] unfastens the power cell.", "You unfasten the power cell.") - holder.icon_state = "durand15" - if(6) + if(18) if(diff==FORWARD) user.visible_message("[user] secures the internal armor layer.", "You secure the internal armor layer.") - holder.icon_state = "durand18" else - user.visible_message("[user] pries internal armor layer from the [holder].", "You pry internal armor layer from the [holder].") - var/obj/item/stack/sheet/metal/MS = new /obj/item/stack/sheet/metal(get_turf(holder)) - MS.amount = 5 - holder.icon_state = "durand16" - if(5) + user.visible_message("[user] pries internal armor layer from [holder].", "You pry internal armor layer from [holder].") + if(19) if(diff==FORWARD) - user.visible_message("[user] welds the internal armor layer to the [holder].", "You weld the internal armor layer to the [holder].") - holder.icon_state = "durand19" + user.visible_message("[user] welds the internal armor layer to [holder].", "You weld the internal armor layer to [holder].") else user.visible_message("[user] unfastens the internal armor layer.", "You unfasten the internal armor layer.") - holder.icon_state = "durand17" - if(4) + if(20) if(diff==FORWARD) - user.visible_message("[user] installs Durand Armor Plates to the [holder].", "You install Durand Armor Plates to the [holder].") - qdel(used_atom) - holder.icon_state = "durand20" + user.visible_message("[user] installs Durand Armor Plates to [holder].", "You install Durand Armor Plates to [holder].") else - user.visible_message("[user] cuts the internal armor layer from the [holder].", "You cut the internal armor layer from the [holder].") - holder.icon_state = "durand18" - if(3) + user.visible_message("[user] cuts the internal armor layer from [holder].", "You cut the internal armor layer from [holder].") + if(21) if(diff==FORWARD) user.visible_message("[user] secures Durand Armor Plates.", "You secure Durand Armor Plates.") - holder.icon_state = "durand21" else - user.visible_message("[user] pries Durand Armor Plates from the [holder].", "You pry Durand Armor Plates from the [holder].") - new /obj/item/mecha_parts/part/durand_armor(get_turf(holder)) - holder.icon_state = "durand19" - if(2) + user.visible_message("[user] pries Durand Armor Plates from [holder].", "You pry Durand Armor Plates from [holder].") + if(22) if(diff==FORWARD) - user.visible_message("[user] welds Durand Armor Plates to the [holder].", "You weld Durand Armor Plates to the [holder].") - spawn_mecha_result() + user.visible_message("[user] welds Durand Armor Plates to [holder].", "You weld Durand Armor Plates to [holder].") else user.visible_message("[user] unfastens Durand Armor Plates.", "You unfasten Durand Armor Plates.") - holder.icon_state = "durand20" return TRUE //PHAZON -/datum/construction/mecha/phazon_chassis - steps = list(list("key"=/obj/item/mecha_parts/part/phazon_torso), //1 - list("key"=/obj/item/mecha_parts/part/phazon_left_arm), //2 - list("key"=/obj/item/mecha_parts/part/phazon_right_arm), //3 - list("key"=/obj/item/mecha_parts/part/phazon_left_leg), //4 - list("key"=/obj/item/mecha_parts/part/phazon_right_leg), //5 - list("key"=/obj/item/mecha_parts/part/phazon_head) - ) - -/datum/construction/mecha/phazon_chassis/custom_action(step, atom/used_atom, mob/user) - user.visible_message("[user] has connected [used_atom] to the [holder].", "You connect [used_atom] to the [holder].") - holder.add_overlay(used_atom.icon_state+"+o") - qdel(used_atom) - return TRUE - -/datum/construction/mecha/phazon_chassis/action(atom/used_atom,mob/user) - return check_all_steps(used_atom,user) - -/datum/construction/mecha/phazon_chassis/spawn_result() - var/obj/item/mecha_parts/chassis/const_holder = holder - const_holder.construct = new /datum/construction/reversible/mecha/phazon(const_holder) - const_holder.icon = 'icons/mecha/mech_construction.dmi' - const_holder.icon_state = "phazon0" - const_holder.density = TRUE - qdel(src) - -/datum/construction/reversible/mecha/phazon - result = /obj/mecha/combat/phazon +/datum/construction/unordered/mecha_chassis/phazon + result = /datum/construction/mecha/phazon steps = list( - //0, dummy step used to stop the steps from finishing and spawn_result() being called automatically. - list("desc"="You shouldn't be able to see this."), + /obj/item/mecha_parts/part/phazon_torso, + /obj/item/mecha_parts/part/phazon_left_arm, + /obj/item/mecha_parts/part/phazon_right_arm, + /obj/item/mecha_parts/part/phazon_left_leg, + /obj/item/mecha_parts/part/phazon_right_leg, + /obj/item/mecha_parts/part/phazon_head + ) - //1 - list("key"=/obj/item/device/assembly/signaler/anomaly, - "backkey"=null, //Cannot remove the anomaly core once it's in - "desc"="Anomaly core socket is open and awaiting connection."), - //2 - list("key"=/obj/item/weldingtool, - "backkey"=/obj/item/wrench, - "desc"="External armor is wrenched."), - //3 - list("key"=/obj/item/wrench, - "backkey"=/obj/item/crowbar, - "desc"="External armor is installed."), - //4 - list("key"=/obj/item/mecha_parts/part/phazon_armor, - "backkey"=/obj/item/weldingtool, - "desc"="Phase armor is welded."), - //5 - list("key"=/obj/item/weldingtool, - "backkey"=/obj/item/wrench, - "desc"="Phase armor is wrenched."), - //6 - list("key"=/obj/item/wrench, - "backkey"=/obj/item/crowbar, - "desc"="Phase armor is installed."), - //7 - list("key"=/obj/item/stack/sheet/plasteel, - "backkey"=/obj/item/screwdriver, - "desc"="The power cell is secured."), - //8 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/crowbar, - "desc"="The power cell is installed."), - //9 - list("key"=/obj/item/stock_parts/cell, - "backkey"=/obj/item/screwdriver, - "desc"="The bluespace crystal is engaged."), - //10 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/wirecutters, - "desc"="The bluespace crystal is connected."), - //11 - list("key"=/obj/item/stack/cable_coil, - "backkey"=/obj/item/crowbar, - "desc"="The bluespace crystal is installed."), - //12 - list("key"=/obj/item/stack/ore/bluespace_crystal, - "backkey"=/obj/item/screwdriver, - "desc"="Super capacitor is secured."), - //13 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/crowbar, - "desc"="Super capacitor is installed."), - //14 - list("key"=/obj/item/stock_parts/capacitor, - "backkey"=/obj/item/screwdriver, - "desc"="Phasic scanner module is secured."), - //15 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/crowbar, - "desc"="Phasic scanner module is installed."), - //16 - list("key"=/obj/item/stock_parts/scanning_module, - "backkey"=/obj/item/screwdriver, - "desc"="Weapon control module is secured."), - //17 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/crowbar, - "desc"="Weapon control is installed."), - //18 - list("key"=/obj/item/circuitboard/mecha/phazon/targeting, - "backkey"=/obj/item/screwdriver, - "desc"="Peripherals control module is secured."), - //19 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/crowbar, - "desc"="Peripherals control module is installed"), - //20 - list("key"=/obj/item/circuitboard/mecha/phazon/peripherals, - "backkey"=/obj/item/screwdriver, - "desc"="Central control module is secured."), - //21 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/crowbar, - "desc"="Central control module is installed."), - //22 - list("key"=/obj/item/circuitboard/mecha/phazon/main, - "backkey"=/obj/item/screwdriver, - "desc"="The wiring is adjusted."), - //23 - list("key"=/obj/item/wirecutters, - "backkey"=/obj/item/screwdriver, - "desc"="The wiring is added."), - //24 - list("key"=/obj/item/stack/cable_coil, - "backkey"=/obj/item/screwdriver, - "desc"="The hydraulic systems are active."), - //25 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/wrench, - "desc"="The hydraulic systems are connected."), - //26 - list("key"=/obj/item/wrench, - "desc"="The hydraulic systems are disconnected.") - ) +/datum/construction/mecha/phazon + result = /obj/mecha/combat/phazon + base_icon = "phazon" + steps = list( + //1 + list( + "key" = TOOL_WRENCH, + "desc" = "The hydraulic systems are disconnected." + ), + + //2 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_WRENCH, + "desc" = "The hydraulic systems are connected." + ), + + //3 + list( + "key" = /obj/item/stack/cable_coil, + "amount" = 5, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "The hydraulic systems are active." + ), + + //4 + list( + "key" = TOOL_WIRECUTTER, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "The wiring is added." + ), + + //5 + list( + "key" = /obj/item/circuitboard/mecha/phazon/main, + "action" = ITEM_DELETE, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "The wiring is adjusted." + ), + + //6 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_CROWBAR, + "desc" = "Central control module is installed." + ), + + //7 + list( + "key" = /obj/item/circuitboard/mecha/phazon/peripherals, + "action" = ITEM_DELETE, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "Central control module is secured." + ), + + //8 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_CROWBAR, + "desc" = "Peripherals control module is installed" + ), + + //9 + list( + "key" = /obj/item/circuitboard/mecha/phazon/targeting, + "action" = ITEM_DELETE, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "Peripherals control module is secured." + ), + + //10 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_CROWBAR, + "desc" = "Weapon control is installed." + ), + + //11 + list( + "key" = /obj/item/stock_parts/scanning_module, + "action" = ITEM_MOVE_INSIDE, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "Weapon control module is secured." + ), + + //12 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_CROWBAR, + "desc" = "Phasic scanner module is installed." + ), + + //13 + list( + "key" = /obj/item/stock_parts/capacitor, + "action" = ITEM_MOVE_INSIDE, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "Phasic scanner module is secured." + ), + + //14 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_CROWBAR, + "desc" = "Super capacitor is installed." + ), + + //15 + list( + "key" = /obj/item/stack/ore/bluespace_crystal, + "amount" = 1, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "Super capacitor is secured." + ), + + //16 + list( + "key" = /obj/item/stack/cable_coil, + "amount" = 5, + "back_key" = TOOL_CROWBAR, + "desc" = "The bluespace crystal is installed." + ), + + //17 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_WIRECUTTER, + "desc" = "The bluespace crystal is connected." + ), + + //18 + list( + "key" = /obj/item/stock_parts/cell, + "action" = ITEM_MOVE_INSIDE, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "The bluespace crystal is engaged." + ), + + //19 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_CROWBAR, + "desc" = "The power cell is installed.", + "icon_state" = "phazon17" + // This is the point where a step icon is skipped, so "icon_state" had to be set manually starting from here. + ), + + //20 + list( + "key" = /obj/item/stack/sheet/plasteel, + "amount" = 5, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "The power cell is secured.", + "icon_state" = "phazon18" + ), + + //21 + list( + "key" = TOOL_WRENCH, + "back_key" = TOOL_CROWBAR, + "desc" = "Phase armor is installed.", + "icon_state" = "phazon19" + ), + + //22 + list( + "key" = TOOL_WELDER, + "back_key" = TOOL_WRENCH, + "desc" = "Phase armor is wrenched.", + "icon_state" = "phazon20" + ), + + //23 + list( + "key" = /obj/item/mecha_parts/part/phazon_armor, + "action" = ITEM_DELETE, + "back_key" = TOOL_WELDER, + "desc" = "Phase armor is welded.", + "icon_state" = "phazon21" + ), + + //24 + list( + "key" = TOOL_WRENCH, + "back_key" = TOOL_CROWBAR, + "desc" = "External armor is installed.", + "icon_state" = "phazon22" + ), + + //25 + list( + "key" = TOOL_WELDER, + "back_key" = TOOL_WRENCH, + "desc" = "External armor is wrenched.", + "icon_state" = "phazon23" + ), + + //26 + list( + "key" = /obj/item/device/assembly/signaler/anomaly, + "action" = ITEM_DELETE, + "back_key" = TOOL_WELDER, + "desc" = "Anomaly core socket is open.", + "icon_state" = "phazon24" + ), + ) -/datum/construction/reversible/mecha/phazon/action(atom/used_atom,mob/user) - return check_step(used_atom,user) - -/datum/construction/reversible/mecha/phazon/custom_action(index, diff, atom/used_atom, mob/user) +/datum/construction/mecha/phazon/custom_action(obj/item/I, mob/living/user, diff) if(!..()) return FALSE //TODO: better messages. switch(index) - if(27) - user.visible_message("[user] connects the [holder] hydraulic systems", "You connect the [holder] hydraulic systems.") - holder.icon_state = "phazon1" - if(26) + if(1) + user.visible_message("[user] connects [holder] hydraulic systems", "You connect [holder] hydraulic systems.") + if(2) if(diff==FORWARD) - user.visible_message("[user] activates the [holder] hydraulic systems.", "You activate the [holder] hydraulic systems.") - holder.icon_state = "phazon2" + user.visible_message("[user] activates [holder] hydraulic systems.", "You activate [holder] hydraulic systems.") else - user.visible_message("[user] disconnects the [holder] hydraulic systems", "You disconnect the [holder] hydraulic systems.") - holder.icon_state = "phazon0" - if(25) + user.visible_message("[user] disconnects [holder] hydraulic systems", "You disconnect [holder] hydraulic systems.") + if(3) if(diff==FORWARD) - user.visible_message("[user] adds the wiring to the [holder].", "You add the wiring to the [holder].") - holder.icon_state = "phazon3" + user.visible_message("[user] adds the wiring to [holder].", "You add the wiring to [holder].") else - user.visible_message("[user] deactivates the [holder] hydraulic systems.", "You deactivate the [holder] hydraulic systems.") - holder.icon_state = "phazon1" - if(24) + user.visible_message("[user] deactivates [holder] hydraulic systems.", "You deactivate [holder] hydraulic systems.") + if(4) if(diff==FORWARD) - user.visible_message("[user] adjusts the wiring of the [holder].", "You adjust the wiring of the [holder].") - holder.icon_state = "phazon4" + user.visible_message("[user] adjusts the wiring of [holder].", "You adjust the wiring of [holder].") else - user.visible_message("[user] removes the wiring from the [holder].", "You remove the wiring from the [holder].") - var/obj/item/stack/cable_coil/coil = new /obj/item/stack/cable_coil(get_turf(holder)) - coil.amount = 4 - holder.icon_state = "phazon2" - if(23) + user.visible_message("[user] removes the wiring from [holder].", "You remove the wiring from [holder].") + if(5) if(diff==FORWARD) - user.visible_message("[user] installs the central control module into the [holder].", "You install the central computer mainboard into the [holder].") - qdel(used_atom) - holder.icon_state = "phazon5" + user.visible_message("[user] installs the central control module into [holder].", "You install the central computer mainboard into [holder].") else - user.visible_message("[user] disconnects the wiring of the [holder].", "You disconnect the wiring of the [holder].") - holder.icon_state = "phazon3" - if(22) + user.visible_message("[user] disconnects the wiring of [holder].", "You disconnect the wiring of [holder].") + if(6) if(diff==FORWARD) user.visible_message("[user] secures the mainboard.", "You secure the mainboard.") - holder.icon_state = "phazon6" else - user.visible_message("[user] removes the central control module from the [holder].", "You remove the central computer mainboard from the [holder].") - new /obj/item/circuitboard/mecha/phazon/main(get_turf(holder)) - holder.icon_state = "phazon4" - if(21) + user.visible_message("[user] removes the central control module from [holder].", "You remove the central computer mainboard from [holder].") + if(7) if(diff==FORWARD) - user.visible_message("[user] installs the peripherals control module into the [holder].", "You install the peripherals control module into the [holder].") - qdel(used_atom) - holder.icon_state = "phazon7" + user.visible_message("[user] installs the peripherals control module into [holder].", "You install the peripherals control module into [holder].") else user.visible_message("[user] unfastens the mainboard.", "You unfasten the mainboard.") - holder.icon_state = "phazon5" - if(20) + if(8) if(diff==FORWARD) user.visible_message("[user] secures the peripherals control module.", "You secure the peripherals control module.") - holder.icon_state = "phazon8" else - user.visible_message("[user] removes the peripherals control module from the [holder].", "You remove the peripherals control module from the [holder].") - new /obj/item/circuitboard/mecha/phazon/peripherals(get_turf(holder)) - holder.icon_state = "phazon6" - if(19) + user.visible_message("[user] removes the peripherals control module from [holder].", "You remove the peripherals control module from [holder].") + if(9) if(diff==FORWARD) - user.visible_message("[user] installs the weapon control module into the [holder].", "You install the weapon control module into the [holder].") - qdel(used_atom) - holder.icon_state = "phazon9" + user.visible_message("[user] installs the weapon control module into [holder].", "You install the weapon control module into [holder].") else user.visible_message("[user] unfastens the peripherals control module.", "You unfasten the peripherals control module.") - holder.icon_state = "phazon7" - if(18) + if(10) if(diff==FORWARD) user.visible_message("[user] secures the weapon control module.", "You secure the weapon control module.") - holder.icon_state = "phazon10" else - user.visible_message("[user] removes the weapon control module from the [holder].", "You remove the weapon control module from the [holder].") - new /obj/item/circuitboard/mecha/phazon/targeting(get_turf(holder)) - holder.icon_state = "phazon8" - if(17) + user.visible_message("[user] removes the weapon control module from [holder].", "You remove the weapon control module from [holder].") + if(11) if(diff==FORWARD) - user.visible_message("[user] installs phasic scanner module to the [holder].", "You install scanner module to the [holder].") - var/obj/item/I = used_atom - user.transferItemToLoc(I, holder, TRUE) - holder.icon_state = "phazon11" + user.visible_message("[user] installs phasic scanner module to [holder].", "You install scanner module to [holder].") else user.visible_message("[user] unfastens the weapon control module.", "You unfasten the weapon control module.") - holder.icon_state = "phazon9" - if(16) + if(12) if(diff==FORWARD) user.visible_message("[user] secures the phasic scanner module.", "You secure the scanner module.") - holder.icon_state = "phazon12" else - user.visible_message("[user] removes the phasic scanner module from the [holder].", "You remove the scanner module from the [holder].") - var/obj/item/I = locate(/obj/item/stock_parts/scanning_module) in holder - I.forceMove(holder.drop_location()) - holder.icon_state = "phazon10" - if(15) + user.visible_message("[user] removes the phasic scanner module from [holder].", "You remove the scanner module from [holder].") + if(13) if(diff==FORWARD) - user.visible_message("[user] installs super capacitor to the [holder].", "You install capacitor to the [holder].") - var/obj/item/I = used_atom - user.transferItemToLoc(I, holder, TRUE) - holder.icon_state = "phazon13" + user.visible_message("[user] installs super capacitor to [holder].", "You install capacitor to [holder].") else user.visible_message("[user] unfastens the phasic scanner module.", "You unfasten the scanner module.") - holder.icon_state = "phazon11" if(14) if(diff==FORWARD) user.visible_message("[user] secures the super capacitor.", "You secure the capacitor.") - holder.icon_state = "phazon14" else - user.visible_message("[user] removes the super capacitor from the [holder].", "You remove the capacitor from the [holder].") - var/obj/item/I = locate(/obj/item/stock_parts/capacitor) in holder - I.forceMove(holder.drop_location()) - holder.icon_state = "phazon12" - if(13) + user.visible_message("[user] removes the super capacitor from [holder].", "You remove the capacitor from [holder].") + if(15) if(diff==FORWARD) user.visible_message("[user] installs the bluespace crystal.", "You install the bluespace crystal.") - qdel(used_atom) - holder.icon_state = "phazon15" else - user.visible_message("[user] unsecures the super capacitor from the [holder].", "You unsecure the capacitor from the [holder].") - holder.icon_state = "phazon13" - if(12) + user.visible_message("[user] unsecures the super capacitor from [holder].", "You unsecure the capacitor from [holder].") + if(16) if(diff==FORWARD) user.visible_message("[user] connects the bluespace crystal.", "You connect the bluespace crystal.") - holder.icon_state = "phazon16" else - user.visible_message("[user] removes the bluespace crystal from the [holder].", "You remove the bluespace crystal from the [holder].") - new /obj/item/stack/ore/bluespace_crystal(get_turf(holder)) - holder.icon_state = "phazon14" - if(11) + user.visible_message("[user] removes the bluespace crystal from [holder].", "You remove the bluespace crystal from [holder].") + if(17) if(diff==FORWARD) user.visible_message("[user] engages the bluespace crystal.", "You engage the bluespace crystal.") - holder.icon_state = "phazon17" else - user.visible_message("[user] disconnects the bluespace crystal from the [holder].", "You disconnect the bluespace crystal from the [holder].") - holder.icon_state = "phazon15" - if(10) + user.visible_message("[user] disconnects the bluespace crystal from [holder].", "You disconnect the bluespace crystal from [holder].") + if(18) if(diff==FORWARD) - user.visible_message("[user] installs the power cell into the [holder].", "You install the power cell into the [holder].") - var/obj/item/I = used_atom - user.transferItemToLoc(I, holder, TRUE) - holder.icon_state = "phazon18" + user.visible_message("[user] installs the power cell into [holder].", "You install the power cell into [holder].") else user.visible_message("[user] disengages the bluespace crystal.", "You disengage the bluespace crystal.") - holder.icon_state = "phazon16" - if(9) + if(19) if(diff==FORWARD) user.visible_message("[user] secures the power cell.", "You secure the power cell.") - holder.icon_state = "phazon19" else user.visible_message("[user] prys the power cell from [holder].", "You pry the power cell from [holder].") - var/obj/item/I = locate(/obj/item/stock_parts/cell) in holder - I.forceMove(holder.drop_location()) - holder.icon_state = "phazon17" - if(8) + if(20) if(diff==FORWARD) - user.visible_message("[user] installs the phase armor layer to the [holder].", "You install the phase armor layer to the [holder].") - holder.icon_state = "phazon20" + user.visible_message("[user] installs the phase armor layer to [holder].", "You install the phase armor layer to [holder].") else user.visible_message("[user] unfastens the power cell.", "You unfasten the power cell.") - holder.icon_state = "durand18" - if(7) + if(21) if(diff==FORWARD) user.visible_message("[user] secures the phase armor layer.", "You secure the phase armor layer.") - holder.icon_state = "phazon21" else - user.visible_message("[user] pries the phase armor layer from the [holder].", "You pry the phase armor layer from the [holder].") - var/obj/item/stack/sheet/plasteel/MS = new /obj/item/stack/sheet/plasteel(get_turf(holder)) - MS.amount = 5 - holder.icon_state = "phazon19" - if(6) + user.visible_message("[user] pries the phase armor layer from [holder].", "You pry the phase armor layer from [holder].") + if(22) if(diff==FORWARD) - user.visible_message("[user] welds the phase armor layer to the [holder].", "You weld the phase armor layer to the [holder].") - holder.icon_state = "phazon22" + user.visible_message("[user] welds the phase armor layer to [holder].", "You weld the phase armor layer to [holder].") else user.visible_message("[user] unfastens the phase armor layer.", "You unfasten the phase armor layer.") - holder.icon_state = "phazon20" - if(5) + if(23) if(diff==FORWARD) - user.visible_message("[user] installs Phazon Armor Plates to the [holder].", "You install Phazon Armor Plates to the [holder].") - qdel(used_atom) - holder.icon_state = "phazon23" + user.visible_message("[user] installs Phazon Armor Plates to [holder].", "You install Phazon Armor Plates to [holder].") else - user.visible_message("[user] cuts phase armor layer from the [holder].", "You cut the phase armor layer from the [holder].") - holder.icon_state = "phazon21" - if(4) + user.visible_message("[user] cuts phase armor layer from [holder].", "You cut the phase armor layer from [holder].") + if(24) if(diff==FORWARD) user.visible_message("[user] secures Phazon Armor Plates.", "You secure Phazon Armor Plates.") - holder.icon_state = "phazon24" else - user.visible_message("[user] pries Phazon Armor Plates from the [holder].", "You pry Phazon Armor Plates from the [holder].") - new /obj/item/mecha_parts/part/phazon_armor(get_turf(holder)) - holder.icon_state = "phazon22" - if(3) + user.visible_message("[user] pries Phazon Armor Plates from [holder].", "You pry Phazon Armor Plates from [holder].") + if(25) if(diff==FORWARD) - user.visible_message("[user] welds Phazon Armor Plates to the [holder].", "You weld Phazon Armor Plates to the [holder].") + user.visible_message("[user] welds Phazon Armor Plates to [holder].", "You weld Phazon Armor Plates to [holder].") else user.visible_message("[user] unfastens Phazon Armor Plates.", "You unfasten Phazon Armor Plates.") - holder.icon_state = "phazon23" - if(2) + if(26) if(diff==FORWARD) - user.visible_message("[user] carefully inserts the anomaly core into \the [holder] and secures it.", "You slowly place the anomaly core into its socket and close its chamber.") - qdel(used_atom) - spawn_mecha_result() + user.visible_message("[user] carefully inserts the anomaly core into [holder] and secures it.", + "You slowly place the anomaly core into its socket and close its chamber.") return TRUE //ODYSSEUS -/datum/construction/mecha/odysseus_chassis - steps = list(list("key"=/obj/item/mecha_parts/part/odysseus_torso), //1 - list("key"=/obj/item/mecha_parts/part/odysseus_head), //2 - list("key"=/obj/item/mecha_parts/part/odysseus_left_arm), //3 - list("key"=/obj/item/mecha_parts/part/odysseus_right_arm), //4 - list("key"=/obj/item/mecha_parts/part/odysseus_left_leg), //5 - list("key"=/obj/item/mecha_parts/part/odysseus_right_leg)//6 - ) - -/datum/construction/mecha/odysseus_chassis/custom_action(step, atom/used_atom, mob/user) - user.visible_message("[user] has connected [used_atom] to the [holder].", "You connect [used_atom] to the [holder].") - holder.add_overlay(used_atom.icon_state+"+o") - qdel(used_atom) - return TRUE - -/datum/construction/mecha/odysseus_chassis/action(atom/used_atom,mob/user) - return check_all_steps(used_atom,user) - -/datum/construction/mecha/odysseus_chassis/spawn_result() - var/obj/item/mecha_parts/chassis/const_holder = holder - const_holder.construct = new /datum/construction/reversible/mecha/odysseus(const_holder) - const_holder.icon = 'icons/mecha/mech_construction.dmi' - const_holder.icon_state = "odysseus0" - const_holder.density = TRUE - qdel(src) - - -/datum/construction/reversible/mecha/odysseus - result = /obj/mecha/medical/odysseus +/datum/construction/unordered/mecha_chassis/odysseus + result = /datum/construction/mecha/odysseus steps = list( - //0, dummy step used to stop the steps from finishing and spawn_result() being called automatically. - list("desc"="You shouldn't be able to see this."), + /obj/item/mecha_parts/part/odysseus_torso, + /obj/item/mecha_parts/part/odysseus_head, + /obj/item/mecha_parts/part/odysseus_left_arm, + /obj/item/mecha_parts/part/odysseus_right_arm, + /obj/item/mecha_parts/part/odysseus_left_leg, + /obj/item/mecha_parts/part/odysseus_right_leg + ) - //1 - list("key"=/obj/item/weldingtool, - "backkey"=/obj/item/wrench, - "desc"="External armor is wrenched."), - //2 - list("key"=/obj/item/wrench, - "backkey"=/obj/item/crowbar, - "desc"="External armor is installed."), - //3 - list("key"=/obj/item/stack/sheet/plasteel, - "backkey"=/obj/item/weldingtool, - "desc"="Internal armor is welded."), - //4 - list("key"=/obj/item/weldingtool, - "backkey"=/obj/item/wrench, - "desc"="Internal armor is wrenched."), - //5 - list("key"=/obj/item/wrench, - "backkey"=/obj/item/crowbar, - "desc"="Internal armor is installed."), - //6 - list("key"=/obj/item/stack/sheet/metal, - "backkey"=/obj/item/screwdriver, - "desc"="The power cell is secured."), - //7 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/crowbar, - "desc"="The power cell is installed."), - //8 - list("key"=/obj/item/stock_parts/cell, - "backkey"=/obj/item/screwdriver, - "desc"="Peripherals control module is secured."), - //9 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/crowbar, - "desc"="Peripherals control module is installed."), - //10 - list("key"=/obj/item/circuitboard/mecha/odysseus/peripherals, - "backkey"=/obj/item/screwdriver, - "desc"="Central control module is secured."), - //11 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/crowbar, - "desc"="Central control module is installed."), - //12 - list("key"=/obj/item/circuitboard/mecha/odysseus/main, - "backkey"=/obj/item/screwdriver, - "desc"="The wiring is adjusted."), - //13 - list("key"=/obj/item/wirecutters, - "backkey"=/obj/item/screwdriver, - "desc"="The wiring is added."), - //14 - list("key"=/obj/item/stack/cable_coil, - "backkey"=/obj/item/screwdriver, - "desc"="The hydraulic systems are active."), - //15 - list("key"=/obj/item/screwdriver, - "backkey"=/obj/item/wrench, - "desc"="The hydraulic systems are connected."), - //16 - list("key"=/obj/item/wrench, - "desc"="The hydraulic systems are disconnected.") - ) +/datum/construction/mecha/odysseus + result = /obj/mecha/medical/odysseus + base_icon = "odysseus" + steps = list( + //1 + list( + "key" = TOOL_WRENCH, + "desc" = "The hydraulic systems are disconnected." + ), -/datum/construction/reversible/mecha/odysseus/action(atom/used_atom,mob/user) - return check_step(used_atom,user) + //2 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_WRENCH, + "desc" = "The hydraulic systems are connected." + ), -/datum/construction/reversible/mecha/odysseus/custom_action(index, diff, atom/used_atom, mob/user) + //3 + list( + "key" = /obj/item/stack/cable_coil, + "amount" = 5, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "The hydraulic systems are active." + ), + + //4 + list( + "key" = TOOL_WIRECUTTER, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "The wiring is added." + ), + + //5 + list( + "key" = /obj/item/circuitboard/mecha/odysseus/main, + "action" = ITEM_DELETE, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "The wiring is adjusted." + ), + + //6 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_CROWBAR, + "desc" = "Central control module is installed." + ), + + //7 + list( + "key" = /obj/item/circuitboard/mecha/odysseus/peripherals, + "action" = ITEM_DELETE, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "Central control module is secured." + ), + + //8 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_CROWBAR, + "desc" = "Peripherals control module is installed." + ), + + //9 + list( + "key" = /obj/item/stock_parts/cell, + "action" = ITEM_MOVE_INSIDE, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "Peripherals control module is secured." + ), + + //10 + list( + "key" = TOOL_SCREWDRIVER, + "back_key" = TOOL_CROWBAR, + "desc" = "The power cell is installed." + ), + + //11 + list( + "key" = /obj/item/stack/sheet/metal, + "amount" = 5, + "back_key" = TOOL_SCREWDRIVER, + "desc" = "The power cell is secured." + ), + + //12 + list( + "key" = TOOL_WRENCH, + "back_key" = TOOL_CROWBAR, + "desc" = "Internal armor is installed." + ), + + //13 + list( + "key" = TOOL_WELDER, + "back_key" = TOOL_WRENCH, + "desc" = "Internal armor is wrenched." + ), + + //14 + list( + "key" = /obj/item/stack/sheet/plasteel, + "amount" = 5, + "back_key" = TOOL_WELDER, + "desc" = "Internal armor is welded." + ), + + //15 + list( + "key" = TOOL_WRENCH, + "back_key" = TOOL_CROWBAR, + "desc" = "External armor is installed." + ), + + //16 + list( + "key" = TOOL_WELDER, + "back_key" = TOOL_WRENCH, + "desc" = "External armor is wrenched." + ), + ) + +/datum/construction/mecha/odysseus/custom_action(obj/item/I, mob/living/user, diff) if(!..()) return FALSE //TODO: better messages. switch(index) - if(17) - user.visible_message("[user] connects the [holder] hydraulic systems", "You connect the [holder] hydraulic systems.") - holder.icon_state = "odysseus1" - if(16) - if(diff==FORWARD) - user.visible_message("[user] activates the [holder] hydraulic systems.", "You activate the [holder] hydraulic systems.") - holder.icon_state = "odysseus2" - else - user.visible_message("[user] disconnects the [holder] hydraulic systems", "You disconnect the [holder] hydraulic systems.") - holder.icon_state = "odysseus0" - if(15) - if(diff==FORWARD) - user.visible_message("[user] adds the wiring to the [holder].", "You add the wiring to the [holder].") - holder.icon_state = "odysseus3" - else - user.visible_message("[user] deactivates the [holder] hydraulic systems.", "You deactivate the [holder] hydraulic systems.") - holder.icon_state = "odysseus1" - if(14) - if(diff==FORWARD) - user.visible_message("[user] adjusts the wiring of the [holder].", "You adjust the wiring of the [holder].") - holder.icon_state = "odysseus4" - else - user.visible_message("[user] removes the wiring from the [holder].", "You remove the wiring from the [holder].") - var/obj/item/stack/cable_coil/coil = new /obj/item/stack/cable_coil(get_turf(holder)) - coil.amount = 4 - holder.icon_state = "odysseus2" - if(13) - if(diff==FORWARD) - user.visible_message("[user] installs the central control module into the [holder].", "You install the central computer mainboard into the [holder].") - qdel(used_atom) - holder.icon_state = "odysseus5" - else - user.visible_message("[user] disconnects the wiring of the [holder].", "You disconnect the wiring of the [holder].") - holder.icon_state = "odysseus3" - if(12) - if(diff==FORWARD) - user.visible_message("[user] secures the mainboard.", "You secure the mainboard.") - holder.icon_state = "odysseus6" - else - user.visible_message("[user] removes the central control module from the [holder].", "You remove the central computer mainboard from the [holder].") - new /obj/item/circuitboard/mecha/odysseus/main(get_turf(holder)) - holder.icon_state = "odysseus4" - if(11) - if(diff==FORWARD) - user.visible_message("[user] installs the peripherals control module into the [holder].", "You install the peripherals control module into the [holder].") - qdel(used_atom) - holder.icon_state = "odysseus7" - else - user.visible_message("[user] unfastens the mainboard.", "You unfasten the mainboard.") - holder.icon_state = "odysseus5" - if(10) - if(diff==FORWARD) - user.visible_message("[user] secures the peripherals control module.", "You secure the peripherals control module.") - holder.icon_state = "odysseus8" - else - user.visible_message("[user] removes the peripherals control module from the [holder].", "You remove the peripherals control module from the [holder].") - new /obj/item/circuitboard/mecha/odysseus/peripherals(get_turf(holder)) - holder.icon_state = "odysseus6" - if(9) - if(diff==FORWARD) - user.visible_message("[user] installs the power cell into the [holder].", "You install the power cell into the [holder].") - var/obj/item/I = used_atom - user.transferItemToLoc(I, holder, TRUE) - holder.icon_state = "odysseus9" - else - user.visible_message("[user] unfastens the peripherals control module.", "You unfasten the peripherals control module.") - holder.icon_state = "odysseus7" - if(8) - if(diff==FORWARD) - user.visible_message("[user] secures the power cell.", "You secure the power cell.") - holder.icon_state = "odysseus10" - else - user.visible_message("[user] prys the power cell from [holder].", "You pry the power cell from [holder].") - var/obj/item/I = locate(/obj/item/stock_parts/cell) in holder - I.forceMove(holder.drop_location()) - holder.icon_state = "odysseus8" - if(7) - if(diff==FORWARD) - user.visible_message("[user] installs the internal armor layer to the [holder].", "You install the internal armor layer to the [holder].") - holder.icon_state = "odysseus11" - else - user.visible_message("[user] unfastens the power cell.", "You unfasten the power cell.") - holder.icon_state = "odysseus9" - if(6) - if(diff==FORWARD) - user.visible_message("[user] secures the internal armor layer.", "You secure the internal armor layer.") - holder.icon_state = "odysseus12" - else - user.visible_message("[user] pries internal armor layer from the [holder].", "You pry internal armor layer from the [holder].") - var/obj/item/stack/sheet/metal/MS = new /obj/item/stack/sheet/metal(get_turf(holder)) - MS.amount = 5 - holder.icon_state = "odysseus10" - if(5) - if(diff==FORWARD) - user.visible_message("[user] welds the internal armor layer to the [holder].", "You weld the internal armor layer to the [holder].") - holder.icon_state = "odysseus13" - else - user.visible_message("[user] unfastens the internal armor layer.", "You unfasten the internal armor layer.") - holder.icon_state = "odysseus11" - if(4) - if(diff==FORWARD) - user.visible_message("[user] installs [used_atom] layer to the [holder].", "You install the external reinforced armor layer to the [holder].") - - holder.icon_state = "odysseus14" - else - user.visible_message("[user] cuts the internal armor layer from the [holder].", "You cut the internal armor layer from the [holder].") - holder.icon_state = "odysseus12" - if(3) - if(diff==FORWARD) - user.visible_message("[user] secures the external armor layer.", "You secure the external reinforced armor layer.") - holder.icon_state = "odysseus15" - else - var/obj/item/stack/sheet/plasteel/MS = new /obj/item/stack/sheet/plasteel(get_turf(holder)) - MS.amount = 5 - user.visible_message("[user] pries [MS] from the [holder].", "You pry [MS] from the [holder].") - holder.icon_state = "odysseus13" + if(1) + user.visible_message("[user] connects [holder] hydraulic systems", "You connect [holder] hydraulic systems.") if(2) if(diff==FORWARD) - user.visible_message("[user] welds the external armor layer to the [holder].", "You weld the external armor layer to the [holder].") - spawn_mecha_result() + user.visible_message("[user] activates [holder] hydraulic systems.", "You activate [holder] hydraulic systems.") + else + user.visible_message("[user] disconnects [holder] hydraulic systems", "You disconnect [holder] hydraulic systems.") + if(3) + if(diff==FORWARD) + user.visible_message("[user] adds the wiring to [holder].", "You add the wiring to [holder].") + else + user.visible_message("[user] deactivates [holder] hydraulic systems.", "You deactivate [holder] hydraulic systems.") + if(4) + if(diff==FORWARD) + user.visible_message("[user] adjusts the wiring of [holder].", "You adjust the wiring of [holder].") + else + user.visible_message("[user] removes the wiring from [holder].", "You remove the wiring from [holder].") + if(5) + if(diff==FORWARD) + user.visible_message("[user] installs the central control module into [holder].", "You install the central computer mainboard into [holder].") + else + user.visible_message("[user] disconnects the wiring of [holder].", "You disconnect the wiring of [holder].") + if(6) + if(diff==FORWARD) + user.visible_message("[user] secures the mainboard.", "You secure the mainboard.") + else + user.visible_message("[user] removes the central control module from [holder].", "You remove the central computer mainboard from [holder].") + if(7) + if(diff==FORWARD) + user.visible_message("[user] installs the peripherals control module into [holder].", "You install the peripherals control module into [holder].") + else + user.visible_message("[user] unfastens the mainboard.", "You unfasten the mainboard.") + if(8) + if(diff==FORWARD) + user.visible_message("[user] secures the peripherals control module.", "You secure the peripherals control module.") + else + user.visible_message("[user] removes the peripherals control module from [holder].", "You remove the peripherals control module from [holder].") + if(9) + if(diff==FORWARD) + user.visible_message("[user] installs the power cell into [holder].", "You install the power cell into [holder].") + else + user.visible_message("[user] unfastens the peripherals control module.", "You unfasten the peripherals control module.") + if(10) + if(diff==FORWARD) + user.visible_message("[user] secures the power cell.", "You secure the power cell.") + else + user.visible_message("[user] prys the power cell from [holder].", "You pry the power cell from [holder].") + if(11) + if(diff==FORWARD) + user.visible_message("[user] installs the internal armor layer to [holder].", "You install the internal armor layer to [holder].") + else + user.visible_message("[user] unfastens the power cell.", "You unfasten the power cell.") + if(12) + if(diff==FORWARD) + user.visible_message("[user] secures the internal armor layer.", "You secure the internal armor layer.") + else + user.visible_message("[user] pries internal armor layer from [holder].", "You pry internal armor layer from [holder].") + if(13) + if(diff==FORWARD) + user.visible_message("[user] welds the internal armor layer to [holder].", "You weld the internal armor layer to [holder].") + else + user.visible_message("[user] unfastens the internal armor layer.", "You unfasten the internal armor layer.") + if(14) + if(diff==FORWARD) + user.visible_message("[user] installs the external armor layer to [holder].", "You install the external reinforced armor layer to [holder].") + else + user.visible_message("[user] cuts the internal armor layer from [holder].", "You cut the internal armor layer from [holder].") + if(15) + if(diff==FORWARD) + user.visible_message("[user] secures the external armor layer.", "You secure the external reinforced armor layer.") + else + user.visible_message("[user] pries the external armor layer from [holder].", "You pry the external armor layer from [holder].") + if(16) + if(diff==FORWARD) + user.visible_message("[user] welds the external armor layer to [holder].", "You weld the external armor layer to [holder].") else user.visible_message("[user] unfastens the external armor layer.", "You unfasten the external armor layer.") - holder.icon_state = "odysseus14" return TRUE diff --git a/code/game/mecha/mecha_parts.dm b/code/game/mecha/mecha_parts.dm index d62926e3d0..566be391cc 100644 --- a/code/game/mecha/mecha_parts.dm +++ b/code/game/mecha/mecha_parts.dm @@ -10,9 +10,15 @@ flags_1 = CONDUCT_1 /obj/item/mecha_parts/chassis - name="Mecha Chassis" + name = "Mecha Chassis" icon_state = "backbone" var/datum/construction/construct + var/construct_type + +/obj/item/mecha_parts/chassis/Initialize() + . = ..() + if(construct_type) + construct = new construct_type(src) /obj/item/mecha_parts/chassis/attackby(obj/item/W, mob/user, params) if(!construct || !construct.action(W, user)) @@ -25,10 +31,7 @@ /obj/item/mecha_parts/chassis/ripley name = "\improper Ripley chassis" - -/obj/item/mecha_parts/chassis/ripley/Initialize() - . = ..() - construct = new /datum/construction/mecha/ripley_chassis(src) + construct_type = /datum/construction/unordered/mecha_chassis/ripley /obj/item/mecha_parts/part/ripley_torso name = "\improper Ripley torso" @@ -59,10 +62,7 @@ /obj/item/mecha_parts/chassis/odysseus name = "\improper Odysseus chassis" - -/obj/item/mecha_parts/chassis/odysseus/Initialize() - . = ..() - construct = new /datum/construction/mecha/odysseus_chassis(src) + construct_type = /datum/construction/unordered/mecha_chassis/odysseus /obj/item/mecha_parts/part/odysseus_head name = "\improper Odysseus head" @@ -98,10 +98,7 @@ /obj/item/mecha_parts/chassis/gygax name = "\improper Gygax chassis" - -/obj/item/mecha_parts/chassis/gygax/Initialize() - . = ..() - construct = new /datum/construction/mecha/gygax_chassis(src) + construct_type = /datum/construction/unordered/mecha_chassis/gygax /obj/item/mecha_parts/part/gygax_torso name = "\improper Gygax torso" @@ -144,10 +141,7 @@ /obj/item/mecha_parts/chassis/durand name = "\improper Durand chassis" - -/obj/item/mecha_parts/chassis/durand/Initialize() - . = ..() - construct = new /datum/construction/mecha/durand_chassis(src) + construct_type = /datum/construction/unordered/mecha_chassis/durand /obj/item/mecha_parts/part/durand_torso name = "\improper Durand torso" @@ -188,21 +182,15 @@ ////////// Firefighter /obj/item/mecha_parts/chassis/firefighter - name = "Firefighter chassis" - -/obj/item/mecha_parts/chassis/firefighter/Initialize() - . = ..() - construct = new /datum/construction/mecha/firefighter_chassis(src) + name = "\improper Firefighter chassis" + construct_type = /datum/construction/unordered/mecha_chassis/firefighter ////////// HONK /obj/item/mecha_parts/chassis/honker name = "\improper H.O.N.K chassis" - -/obj/item/mecha_parts/chassis/honker/Initialize() - . = ..() - construct = new /datum/construction/mecha/honker_chassis(src) + construct_type = /datum/construction/unordered/mecha_chassis/honker /obj/item/mecha_parts/part/honker_torso name = "\improper H.O.N.K torso" @@ -239,10 +227,7 @@ /obj/item/mecha_parts/chassis/phazon name = "\improper Phazon chassis" - -/obj/item/mecha_parts/chassis/phazon/Initialize() - . = ..() - construct = new /datum/construction/mecha/phazon_chassis(src) + construct_type = /datum/construction/unordered/mecha_chassis/phazon /obj/item/mecha_parts/part/phazon_torso name="\improper Phazon torso" From e4b037d6af43ad3da7033606555a7775e9e06195 Mon Sep 17 00:00:00 2001 From: vuonojenmustaturska Date: Sat, 17 Feb 2018 18:03:37 +0200 Subject: [PATCH 57/94] Merge pull request #35720 from LetterN/patch-1 Pulling claw grammar fix --- code/modules/integrated_electronics/subtypes/manipulation.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/integrated_electronics/subtypes/manipulation.dm b/code/modules/integrated_electronics/subtypes/manipulation.dm index 047df39e70..f150e9cfcd 100644 --- a/code/modules/integrated_electronics/subtypes/manipulation.dm +++ b/code/modules/integrated_electronics/subtypes/manipulation.dm @@ -356,7 +356,7 @@ name = "pulling claw" desc = "Circuit which can pull things.." icon_state = "pull_claw" - extended_desc = "The circuit accepts a reference to thing to be pulled. Modes: 0 for release.1 for pull. 2 for gressive grab." + extended_desc = "The circuit accepts a reference to thing to be pulled. Modes: 0 for release. 1 for pull." w_class = WEIGHT_CLASS_SMALL size = 3 From 40e2685a7c4d32a9293176b9fd1fd5d3228bc9e3 Mon Sep 17 00:00:00 2001 From: coiax Date: Sat, 17 Feb 2018 16:05:19 +0000 Subject: [PATCH 59/94] Removes abstract shotgun from Summon Guns list (#35736) * Fixes abstract shotgun from Summon Guns list Fixes #34962. Looking at the old summon gun list, the comment says this typepath was supposed to be a Bulldog. * Removes duplicate bulldog --- code/modules/spells/spell_types/rightandwrong.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/spells/spell_types/rightandwrong.dm b/code/modules/spells/spell_types/rightandwrong.dm index 2d5ac40c8b..c69b9b1e86 100644 --- a/code/modules/spells/spell_types/rightandwrong.dm +++ b/code/modules/spells/spell_types/rightandwrong.dm @@ -25,7 +25,6 @@ GLOBAL_LIST_INIT(summoned_guns, list( /obj/item/gun/energy/kinetic_accelerator/crossbow/large, /obj/item/gun/energy/e_gun/nuclear, /obj/item/gun/ballistic/automatic/proto, - /obj/item/gun/ballistic/automatic/shotgun/bulldog, /obj/item/gun/ballistic/automatic/c20r, /obj/item/gun/ballistic/automatic/l6_saw, /obj/item/gun/ballistic/automatic/m90, @@ -39,7 +38,7 @@ GLOBAL_LIST_INIT(summoned_guns, list( /obj/item/gun/energy/plasmacutter/adv, /obj/item/gun/energy/wormhole_projector, /obj/item/gun/ballistic/automatic/wt550, - /obj/item/gun/ballistic/automatic/shotgun, + /obj/item/gun/ballistic/automatic/shotgun/bulldog, /obj/item/gun/ballistic/revolver/grenadelauncher, /obj/item/gun/ballistic/revolver/golden, /obj/item/gun/ballistic/automatic/sniper_rifle, From cec7acc0eae96a17ff94dfd35cf85064a67a7524 Mon Sep 17 00:00:00 2001 From: vuonojenmustaturska Date: Sat, 17 Feb 2018 18:04:24 +0200 Subject: [PATCH 61/94] Merge pull request #35725 from jakeramsay007/slimepeoplefixes Jellypeople (and all subtypes) now can actually speak Slime, as intended --- .../mob/living/carbon/human/species_types/jellypeople.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species_types/jellypeople.dm b/code/modules/mob/living/carbon/human/species_types/jellypeople.dm index 0299d64621..cca5e1e785 100644 --- a/code/modules/mob/living/carbon/human/species_types/jellypeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/jellypeople.dm @@ -17,14 +17,14 @@ /datum/species/jelly/on_species_loss(mob/living/carbon/C) if(regenerate_limbs) regenerate_limbs.Remove(C) - C.remove_language(/datum/language/slime, TRUE) + C.remove_language(/datum/language/slime) C.faction -= "slime" ..() C.faction -= "slime" /datum/species/jelly/on_species_gain(mob/living/carbon/C, datum/species/old_species) ..() - C.grant_language(/datum/language/slime, TRUE) + C.grant_language(/datum/language/slime) if(ishuman(C)) regenerate_limbs = new regenerate_limbs.Grant(C) From d368c42a980741b65e0cdd8be0320201c5204cbe Mon Sep 17 00:00:00 2001 From: Dax Dupont Date: Sat, 17 Feb 2018 17:12:08 +0100 Subject: [PATCH 63/94] Fixes extremely thicc robots (#35722) * Fixes extremely fat robots * grasp --- code/game/objects/items/robot/robot_upgrades.dm | 3 ++- code/modules/mob/living/silicon/robot/robot.dm | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/robot/robot_upgrades.dm b/code/game/objects/items/robot/robot_upgrades.dm index 808063d0e2..82fbab128c 100644 --- a/code/game/objects/items/robot/robot_upgrades.dm +++ b/code/game/objects/items/robot/robot_upgrades.dm @@ -397,7 +397,7 @@ if(..()) return - if(locate(/obj/item/borg/upgrade/expand, R)) + if(R.hasExpanded) to_chat(usr, "This unit already has an expand module installed!") return @@ -417,5 +417,6 @@ R.anchored = FALSE R.notransform = FALSE R.resize = 2 + R.hasExpanded = TRUE R.update_transform() return TRUE diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm index 3b8f35de5a..2e57fb929b 100644 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ b/code/modules/mob/living/silicon/robot/robot.dm @@ -77,6 +77,7 @@ var/list/upgrades = list() + var/hasExpanded = FALSE var/obj/item/hat var/hat_offset = -3 var/list/equippable_hats = list(/obj/item/clothing/head/caphat, @@ -976,6 +977,11 @@ shown_robot_modules = FALSE if(hud_used) hud_used.update_robot_modules_display() + + if (hasExpanded) + resize = 0.5 + hasExpanded = FALSE + update_transform() module.transform_to(/obj/item/robot_module) // Remove upgrades. From dbdb29d913cc6504a0d8cb0eea54a2f3a2b03f03 Mon Sep 17 00:00:00 2001 From: BordListian Date: Sat, 17 Feb 2018 17:13:08 +0100 Subject: [PATCH 65/94] - Makes lava not burn unconstructed heat-exhanging pipes (#35705) --- code/game/machinery/pipe/construction.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/machinery/pipe/construction.dm b/code/game/machinery/pipe/construction.dm index bc192a05de..5a1a759d07 100644 --- a/code/game/machinery/pipe/construction.dm +++ b/code/game/machinery/pipe/construction.dm @@ -83,6 +83,8 @@ Buildable meters var/obj/machinery/atmospherics/fakeA = pipe_type name = "[initial(fakeA.name)] fitting" icon_state = initial(fakeA.pipe_state) + if(ispath(pipe_type,/obj/machinery/atmospherics/pipe/heat_exchanging)) + resistance_flags |= FIRE_PROOF | LAVA_PROOF /obj/item/pipe/verb/flip() set category = "Object" From 92526a4a9409cbee07f38b2c56a3582a76c86cbc Mon Sep 17 00:00:00 2001 From: LetterJay Date: Sat, 17 Feb 2018 11:47:24 -0600 Subject: [PATCH 67/94] Update corpse.dm --- code/modules/awaymissions/corpse.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/awaymissions/corpse.dm b/code/modules/awaymissions/corpse.dm index d57ea83e8f..e59c17cafc 100644 --- a/code/modules/awaymissions/corpse.dm +++ b/code/modules/awaymissions/corpse.dm @@ -106,6 +106,7 @@ var/mob_species = null //Set to make them a mutant race such as lizard or skeleton. Uses the datum typepath instead of the ID. var/datum/outfit/outfit = /datum/outfit //If this is a path, it will be instanced in Initialize() var/disable_pda = TRUE + var/disable_sensors = TRUE //All of these only affect the ID that the outfit has placed in the ID slot var/id_job = null //Such as "Clown" or "Chef." This just determines what the ID reads as, not their access var/id_access = null //This is for access. See access.dm for which jobs give what access. Use "Captain" if you want it to be all access. @@ -186,6 +187,7 @@ var/obj/item/clothing/under/C = H.wear_suit if(C) C.sensor_mode = NO_SENSORS + var/obj/item/card/id/W = H.wear_id if(W) if(id_access) From 1deb5d10f7e07b144e94ddb6d5b15693b273335d Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 17 Feb 2018 11:47:38 -0600 Subject: [PATCH 68/94] Automatic changelog generation for PR #5542 [ci skip] --- html/changelogs/AutoChangeLog-pr-5542.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5542.yml diff --git a/html/changelogs/AutoChangeLog-pr-5542.yml b/html/changelogs/AutoChangeLog-pr-5542.yml new file mode 100644 index 0000000000..941c3c2a57 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5542.yml @@ -0,0 +1,5 @@ +author: "coiax" +delete-after: True +changes: + - bugfix: "Species with RESISTHOT (golems, skeletons) can extinguish burning +items as if they were wearing fireproof gloves." From 4d882e1818be14f6877d0fc8f9d9e4dbd0963bad Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 17 Feb 2018 11:48:53 -0600 Subject: [PATCH 69/94] Automatic changelog generation for PR #5546 [ci skip] --- html/changelogs/AutoChangeLog-pr-5546.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5546.yml diff --git a/html/changelogs/AutoChangeLog-pr-5546.yml b/html/changelogs/AutoChangeLog-pr-5546.yml new file mode 100644 index 0000000000..0c26141b42 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5546.yml @@ -0,0 +1,4 @@ +author: "jakeramsay007" +delete-after: True +changes: + - bugfix: "Jellypeople/Slimepeople now are able to speak their Slime language, as intended when it was added." From e535428bf3961a1001bfac170280abc8be1e843f Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 17 Feb 2018 11:49:17 -0600 Subject: [PATCH 70/94] Automatic changelog generation for PR #5547 [ci skip] --- html/changelogs/AutoChangeLog-pr-5547.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5547.yml diff --git a/html/changelogs/AutoChangeLog-pr-5547.yml b/html/changelogs/AutoChangeLog-pr-5547.yml new file mode 100644 index 0000000000..b9174386ca --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5547.yml @@ -0,0 +1,4 @@ +author: "Dax Dupont" +delete-after: True +changes: + - bugfix: "After an incident where a very eager roboticist kept expanding a borg's size leading to a structural collapse of the entire station proper safety limitations have been implemented." From 9bfe0ec64e65873c95652a41707df60f63623f9a Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 17 Feb 2018 11:49:51 -0600 Subject: [PATCH 71/94] Automatic changelog generation for PR #5548 [ci skip] --- html/changelogs/AutoChangeLog-pr-5548.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5548.yml diff --git a/html/changelogs/AutoChangeLog-pr-5548.yml b/html/changelogs/AutoChangeLog-pr-5548.yml new file mode 100644 index 0000000000..f3695c5649 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5548.yml @@ -0,0 +1,4 @@ +author: "CitadelStationBot" +delete-after: True +changes: + - bugfix: "fixes lava and fire burning HE-pipes" From f1d33ec520b9159e33f14c53ec8cc35a66703bdf Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 17 Feb 2018 11:51:47 -0600 Subject: [PATCH 72/94] Automatic changelog generation for PR #5525 [ci skip] --- html/changelogs/AutoChangeLog-pr-5525.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5525.yml diff --git a/html/changelogs/AutoChangeLog-pr-5525.yml b/html/changelogs/AutoChangeLog-pr-5525.yml new file mode 100644 index 0000000000..8fffeb931d --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5525.yml @@ -0,0 +1,7 @@ +author: "RealDonaldTrump" +delete-after: True +changes: + - rscadd: "Slimepeople (And all types, including Jelly, Xenobio Slimeperson, Stargazer and Luminescent) now have the ability to utilise the 'Alter Form' ability, allowing them to change most things about their body's form." + - rscadd: "Re-added the slime split and bodyswap ability to Xenobiological Slimepeople, only obtainable through xenobio." + - rscadd: "Slimepeople can now select tails, taur bodies and ears at roundstart. YOU WILL NEED TO SET YOUR COLOURS; otherwise you'll be rainbow coloured and not exactly slime-like. And nobody wants that." + - config: "Changed the ID for the roundstart slimepeople (Without the body swap and slime split abilities) to slimeperson. This will need set in the config on Jay's end." From f03905ebde6978ca28f71e564acee9ad859a0a98 Mon Sep 17 00:00:00 2001 From: yorii Date: Sat, 17 Feb 2018 20:15:54 +0100 Subject: [PATCH 73/94] fixes poddoor examine message (#35732) examining a blast door do longer gives the regular door examination about the maintenance panel. --- code/game/machinery/doors/door.dm | 4 +++- code/game/machinery/doors/poddoor.dm | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/code/game/machinery/doors/door.dm b/code/game/machinery/doors/door.dm index 7c14f48e2d..70181ba138 100644 --- a/code/game/machinery/doors/door.dm +++ b/code/game/machinery/doors/door.dm @@ -33,6 +33,7 @@ var/damage_deflection = 10 var/real_explosion_block //ignore this, just use explosion_block var/red_alert_access = FALSE //if TRUE, this door will always open on red alert + var/poddoor = FALSE /obj/machinery/door/examine(mob/user) ..() @@ -41,7 +42,8 @@ to_chat(user, "Due to a security threat, its access requirements have been lifted!") else to_chat(user, "In the event of a red alert, its access requirements will automatically lift.") - to_chat(user, "Its maintenance panel is screwed in place.") + if(!poddoor) + to_chat(user, "Its maintenance panel is screwed in place.") /obj/machinery/door/check_access(access) if(red_alert_access && GLOB.security_level >= SEC_LEVEL_RED) diff --git a/code/game/machinery/doors/poddoor.dm b/code/game/machinery/doors/poddoor.dm index f42352d79d..6daa7b89d6 100644 --- a/code/game/machinery/doors/poddoor.dm +++ b/code/game/machinery/doors/poddoor.dm @@ -14,6 +14,7 @@ armor = list(melee = 50, bullet = 100, laser = 100, energy = 100, bomb = 50, bio = 100, rad = 100, fire = 100, acid = 70) resistance_flags = FIRE_PROOF damage_deflection = 70 + poddoor = TRUE /obj/machinery/door/poddoor/preopen icon_state = "open" From f31df38f839c96de586b7e4649465c9460fc71ba Mon Sep 17 00:00:00 2001 From: Dax Dupont Date: Sat, 17 Feb 2018 20:17:11 +0100 Subject: [PATCH 75/94] Reflectors now reset the range of a projectile like before! (#35726) * Reflectors now reset the range of a projectile. * how about dem apples --- code/game/objects/structures/reflector.dm | 2 ++ code/modules/projectiles/projectile.dm | 2 ++ 2 files changed, 4 insertions(+) diff --git a/code/game/objects/structures/reflector.dm b/code/game/objects/structures/reflector.dm index a6e8135dc5..35cb82c697 100644 --- a/code/game/objects/structures/reflector.dm +++ b/code/game/objects/structures/reflector.dm @@ -72,6 +72,8 @@ /obj/structure/reflector/proc/auto_reflect(obj/item/projectile/P, pdir, turf/ploc, pangle) P.ignore_source_check = TRUE + P.range = P.decayedRange + P.decayedRange = max(P.decayedRange--, 0) return -1 /obj/structure/reflector/attackby(obj/item/W, mob/user, params) diff --git a/code/modules/projectiles/projectile.dm b/code/modules/projectiles/projectile.dm index 3c8092307a..6da6f8629f 100644 --- a/code/modules/projectiles/projectile.dm +++ b/code/modules/projectiles/projectile.dm @@ -65,6 +65,7 @@ var/flag = "bullet" //Defines what armor to use when it hits things. Must be set to bullet, laser, energy,or bomb var/projectile_type = /obj/item/projectile var/range = 50 //This will de-increment every step. When 0, it will deletze the projectile. + var/decayedRange var/is_reflectable = FALSE // Can it be reflected or not? //Effects var/stun = 0 @@ -85,6 +86,7 @@ /obj/item/projectile/Initialize() . = ..() permutated = list() + decayedRange = range /obj/item/projectile/proc/Range() range-- From d017dc051707dad4f5ea0bdc3125d830b5e2998e Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 17 Feb 2018 13:31:22 -0600 Subject: [PATCH 77/94] Automatic changelog generation for PR #5535 [ci skip] --- html/changelogs/AutoChangeLog-pr-5535.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5535.yml diff --git a/html/changelogs/AutoChangeLog-pr-5535.yml b/html/changelogs/AutoChangeLog-pr-5535.yml new file mode 100644 index 0000000000..c74dec1e9d --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5535.yml @@ -0,0 +1,6 @@ +author: "CitadelStationBot" +delete-after: True +changes: + - rscadd: "added a subreaction for rainbow slime cores, injecting 5u of plasma now makes them explode into random slimecores." + - rscadd: "added a slimejelly reaction to rainbow slime cores that does the above but all the cores that spawn get 5u each of plasma, water and blood injected. (aka chaos)" + - code_imp: "improved clusterbuster code with Initialize, addtimer, vars for sounds and payload spawners, etc" From 07f88892ad5fb5df3635124bd33269834dd05b0c Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 17 Feb 2018 13:31:36 -0600 Subject: [PATCH 78/94] Automatic changelog generation for PR #5539 [ci skip] --- html/changelogs/AutoChangeLog-pr-5539.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5539.yml diff --git a/html/changelogs/AutoChangeLog-pr-5539.yml b/html/changelogs/AutoChangeLog-pr-5539.yml new file mode 100644 index 0000000000..f0d826d2dc --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5539.yml @@ -0,0 +1,4 @@ +author: "TankNut" +delete-after: True +changes: + - tweak: "Corpses spawned in ruins have their suit sensors disabled" From 39d92847156a8ed4c454df649fa18d386785c5d1 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 17 Feb 2018 13:31:49 -0600 Subject: [PATCH 79/94] Automatic changelog generation for PR #5549 [ci skip] --- html/changelogs/AutoChangeLog-pr-5549.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5549.yml diff --git a/html/changelogs/AutoChangeLog-pr-5549.yml b/html/changelogs/AutoChangeLog-pr-5549.yml new file mode 100644 index 0000000000..fddb207ee1 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5549.yml @@ -0,0 +1,4 @@ +author: "CitadelStationBot" +delete-after: True +changes: + - bugfix: "removes the maintenance panel examination message on poddoors (blast doors)" From a0d6b9ad4f4a9cfcf55bd2c719f762cfb9f60fab Mon Sep 17 00:00:00 2001 From: deathride58 Date: Sat, 17 Feb 2018 14:36:06 -0500 Subject: [PATCH 80/94] Update tgstation.dme --- tgstation.dme | 1 - 1 file changed, 1 deletion(-) diff --git a/tgstation.dme b/tgstation.dme index ff179f682f..213535171f 100755 --- a/tgstation.dme +++ b/tgstation.dme @@ -2029,7 +2029,6 @@ #include "code\modules\mob\living\simple_animal\hostile\megafauna\blood_drunk_miner.dm" #include "code\modules\mob\living\simple_animal\hostile\megafauna\bubblegum.dm" #include "code\modules\mob\living\simple_animal\hostile\megafauna\colossus.dm" -#include "code\modules\mob\living\simple_animal\hostile\megafauna\dragon.dm" #include "code\modules\mob\living\simple_animal\hostile\megafauna\dragon_vore.dm" #include "code\modules\mob\living\simple_animal\hostile\megafauna\drake.dm" #include "code\modules\mob\living\simple_animal\hostile\megafauna\hierophant.dm" From bd6345ffd5dc67c9ae22ce180158e6e80167f4e8 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 17 Feb 2018 14:44:08 -0600 Subject: [PATCH 81/94] Automatic changelog generation for PR #5550 [ci skip] --- html/changelogs/AutoChangeLog-pr-5550.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5550.yml diff --git a/html/changelogs/AutoChangeLog-pr-5550.yml b/html/changelogs/AutoChangeLog-pr-5550.yml new file mode 100644 index 0000000000..9e3ae64528 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5550.yml @@ -0,0 +1,4 @@ +author: "Dax Dupont" +delete-after: True +changes: + - rscadd: "Nanotrasen has invested in better reflective materials for it's reflectors. You can now make complex laser shows again." From bd79a988bb70cc2e3b1b2f36b2e5968eed2aa342 Mon Sep 17 00:00:00 2001 From: Poojawa Date: Sat, 17 Feb 2018 14:44:31 -0600 Subject: [PATCH 82/94] backs up citadel edited maps --- _maps/cit_map_files/BoxStation/BoxStation.dmm | 13251 +- .../Deltastation/DeltaStation2.dmm | 8714 +- .../cit_map_files/MetaStation/MetaStation.dmm | 111448 +++++++-------- .../OmegaStation/OmegaStation.dmm | 3373 +- .../cit_map_files/OmegaStation/job_changes.dm | 168 + .../PubbyStation/PubbyStation.dmm | 3223 +- .../cit_map_files/PubbyStation/job_changes.dm | 21 + 7 files changed, 62215 insertions(+), 77983 deletions(-) create mode 100644 _maps/cit_map_files/OmegaStation/job_changes.dm create mode 100644 _maps/cit_map_files/PubbyStation/job_changes.dm diff --git a/_maps/cit_map_files/BoxStation/BoxStation.dmm b/_maps/cit_map_files/BoxStation/BoxStation.dmm index bf29f04364..87757e7a98 100644 --- a/_maps/cit_map_files/BoxStation/BoxStation.dmm +++ b/_maps/cit_map_files/BoxStation/BoxStation.dmm @@ -15,9 +15,6 @@ /turf/open/space, /area/space/nearstation) "aah" = ( -/obj/structure/sign/securearea{ - pixel_y = -32 - }, /turf/open/space, /area/space/nearstation) "aai" = ( @@ -77,12 +74,6 @@ }, /area/security/prison) "aaq" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 - }, /obj/machinery/hydroponics/soil, /obj/item/device/plant_analyzer, /obj/machinery/camera{ @@ -180,6 +171,11 @@ /obj/machinery/light{ dir = 4 }, +/obj/machinery/cryopod{ + tag = "icon-cryopod-open (WEST)"; + icon_state = "cryopod-open"; + dir = 8 + }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) "aaH" = ( @@ -238,13 +234,6 @@ }, /turf/open/floor/plasteel/barber, /area/security/prison) -"aaR" = ( -/obj/structure/lattice, -/obj/structure/sign/securearea{ - pixel_y = -32 - }, -/turf/open/space, -/area/space/nearstation) "aaS" = ( /obj/structure/grille, /obj/structure/lattice, @@ -358,26 +347,6 @@ /obj/machinery/vending/security, /turf/open/floor/plasteel/showroomfloor, /area/security/main) -"abm" = ( -/obj/structure/table, -/obj/item/storage/box/firingpins, -/obj/item/storage/box/firingpins, -/obj/item/key/security, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"abn" = ( -/obj/structure/rack, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/item/gun/energy/e_gun/dragnet, -/obj/item/gun/energy/e_gun/dragnet, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) "abo" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -499,88 +468,6 @@ }, /turf/open/floor/plasteel/freezer, /area/security/prison) -"abH" = ( -/obj/structure/table, -/obj/item/storage/box/chemimp{ - pixel_x = 6 - }, -/obj/item/storage/box/trackimp{ - pixel_x = -3 - }, -/obj/item/storage/lockbox/loyalty, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"abI" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/suit/armor/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/clothing/head/helmet/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/riot, -/obj/item/clothing/head/helmet/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/shield/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/shield/riot, -/obj/item/shield/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"abJ" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001; - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/camera/motion{ - c_tag = "Armory Motion Sensor"; - dir = 2; - name = "motion-sensitive security camera" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) "abK" = ( /obj/structure/chair/stool, /obj/machinery/light/small{ @@ -632,13 +519,6 @@ "abO" = ( /turf/open/floor/plasteel/showroomfloor, /area/security/main) -"abP" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot{ - dir = 2 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) "abQ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/window/southleft{ @@ -753,7 +633,6 @@ /area/security/execution/transfer) "acc" = ( /obj/structure/bed, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/dark, /area/security/execution/transfer) "acd" = ( @@ -866,13 +745,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/showroomfloor, /area/security/main) -"acq" = ( -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/bot{ - dir = 2 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) "acr" = ( /obj/structure/chair/comfy/black, /obj/effect/landmark/start/head_of_security, @@ -905,13 +777,6 @@ /obj/effect/turf_decal/bot_white, /turf/open/floor/plasteel/dark, /area/ai_monitored/security/armory) -"acw" = ( -/obj/structure/sign/securearea{ - pixel_y = -32 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) "acx" = ( /obj/structure/cable{ icon_state = "1-2" @@ -1337,16 +1202,6 @@ }, /turf/open/floor/wood, /area/crew_quarters/theatre) -"adr" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/security/main) "ads" = ( /obj/structure/cable{ icon_state = "0-2" @@ -1427,7 +1282,7 @@ /turf/open/space, /area/solar/port/fore) "adB" = ( -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = 32 }, /turf/open/space, @@ -2172,12 +2027,6 @@ /turf/open/floor/plating, /area/ai_monitored/security/armory) "afa" = ( -/obj/machinery/door/airlock/titanium{ - name = "Emergency Shuttle Airlock" - }, -/obj/docking_port/mobile/emergency{ - name = "Box emergency shuttle" - }, /obj/docking_port/stationary{ dir = 4; dwidth = 12; @@ -2187,8 +2036,8 @@ turf_type = /turf/open/space; width = 32 }, -/turf/open/floor/plating, -/area/shuttle/escape) +/turf/open/space/basic, +/area/space) "afb" = ( /obj/machinery/recharger, /obj/structure/table, @@ -2503,13 +2352,6 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/storage/eva) -"afQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/securearea{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/security/main) "afR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/spawner/structure/window/reinforced, @@ -2566,9 +2408,6 @@ /turf/open/floor/plasteel, /area/security/main) "aga" = ( -/obj/structure/sign/pods{ - pixel_x = 32 - }, /obj/effect/turf_decal/stripes/line{ dir = 6 }, @@ -2676,10 +2515,6 @@ "agn" = ( /turf/closed/wall/r_wall, /area/security/warden) -"ago" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) "agp" = ( /obj/structure/cable{ icon_state = "0-2" @@ -2816,9 +2651,6 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/structure/sign/securearea{ - pixel_x = -32 - }, /obj/machinery/door/poddoor/preopen{ id = "Prison Gate"; name = "prison blast door" @@ -3093,7 +2925,6 @@ dir = 4 }, /obj/machinery/iv_drip, -/obj/item/reagent_containers/blood/empty, /turf/open/floor/plasteel/whitered/side{ dir = 5 }, @@ -3394,25 +3225,6 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"ahR" = ( -/obj/structure/chair/office/dark, -/obj/effect/landmark/start/warden, -/obj/machinery/button/door{ - id = "Prison Gate"; - name = "Prison Wing Lockdown"; - pixel_x = -27; - pixel_y = 8; - req_access_txt = "2" - }, -/obj/machinery/button/door{ - id = "Secure Gate"; - name = "Cell Shutters"; - pixel_x = -27; - pixel_y = -2; - req_access_txt = "0" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) "ahS" = ( /obj/structure/cable{ icon_state = "1-8" @@ -3759,24 +3571,12 @@ dir = 5 }, /area/security/brig) -"aiH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/brig) "aiI" = ( /obj/structure/cable{ - icon_state = "0-4" + icon_state = "4-8" }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_x = -32 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, +/obj/structure/table, +/turf/open/floor/plasteel/showroomfloor, /area/security/warden) "aiJ" = ( /obj/machinery/computer/crew{ @@ -3928,9 +3728,6 @@ }, /area/security/brig) "ajd" = ( -/obj/structure/sign/goldenplaque{ - pixel_y = 32 - }, /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/red/side{ dir = 1 @@ -3965,9 +3762,6 @@ }, /obj/structure/closet/secure_closet/courtroom, /obj/effect/decal/cleanable/cobweb, -/obj/structure/sign/securearea{ - pixel_x = -32 - }, /obj/item/gavelhammer, /turf/open/floor/plasteel, /area/security/courtroom) @@ -4042,9 +3836,6 @@ /turf/open/floor/plasteel, /area/security/processing) "ajt" = ( -/obj/structure/sign/securearea{ - pixel_x = 32 - }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -4133,13 +3924,6 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/open/floor/plasteel, /area/security/brig) -"ajC" = ( -/obj/item/storage/toolbox/drone, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) "ajD" = ( /obj/structure/cable{ icon_state = "4-8" @@ -4161,18 +3945,6 @@ dir = 8 }, /area/security/brig) -"ajG" = ( -/obj/machinery/light, -/obj/machinery/door_timer{ - id = "Cell 1"; - name = "Cell 1"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side, -/area/security/brig) "ajH" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -4308,17 +4080,9 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"ajX" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/labor) "ajZ" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /turf/open/floor/plating, @@ -4465,17 +4229,6 @@ dir = 4 }, /area/security/courtroom) -"ako" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door_timer{ - id = "Cell 2"; - name = "Cell 2"; - pixel_y = -32 - }, -/turf/open/floor/plasteel/red/side, -/area/security/brig) "akp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -4588,41 +4341,6 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"akC" = ( -/obj/machinery/computer/shuttle/labor{ - dir = 4 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -31 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/labor) -"akD" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/labor) -"akE" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/restraints/handcuffs, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/labor) -"akF" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/labor) -"akG" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_y = 32 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/processing) "akH" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 @@ -4707,16 +4425,6 @@ }, /turf/closed/wall, /area/security/brig) -"akR" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 2"; - name = "Cell 2" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side, -/area/security/brig) "akS" = ( /obj/machinery/door/window/brigdoor/security/cell{ id = "Cell 4"; @@ -4762,20 +4470,6 @@ }, /turf/open/floor/plating, /area/security/brig) -"akW" = ( -/obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 2; - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/brig) "akX" = ( /obj/structure/cable{ icon_state = "0-4" @@ -4805,25 +4499,6 @@ dir = 5 }, /area/security/brig) -"akZ" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/brig) -"ala" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 4"; - name = "Cell 4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/red/side, -/area/security/brig) "alb" = ( /obj/structure/chair{ dir = 4; @@ -4880,33 +4555,12 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/port/fore) -"alj" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/labor) "alk" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 1 }, /turf/open/floor/plasteel, /area/engine/atmos) -"all" = ( -/obj/machinery/mineral/labor_claim_console{ - machinedir = 2; - pixel_x = 30; - pixel_y = 30 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/labor) -"alm" = ( -/obj/machinery/button/flasher{ - id = "gulagshuttleflasher"; - name = "Flash Control"; - pixel_y = -26; - req_access_txt = "1" - }, -/obj/machinery/light, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/labor) "aln" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 4; @@ -4916,13 +4570,6 @@ }, /turf/open/floor/plating, /area/security/processing) -"alo" = ( -/obj/machinery/door/airlock/titanium{ - name = "Labor Shuttle Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/labor) "alp" = ( /turf/open/floor/plating, /area/security/processing) @@ -4949,32 +4596,11 @@ /turf/closed/wall/r_wall, /area/ai_monitored/security/armory) "alu" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/nuclearbomb/selfdestruct, +/turf/open/floor/plasteel/vault{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar/cafe) -"alv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - desc = "Talk through this. It looks like it has been modified to not broadcast."; - dir = 2; - name = "Prison Intercom (General)"; - pixel_x = -25; - pixel_y = -2; - prison_radio = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) +/area/ai_monitored/nuke_storage) "alw" = ( /obj/item/device/radio/intercom{ desc = "Talk through this. It looks like it has been modified to not broadcast."; @@ -5140,11 +4766,7 @@ /turf/closed/wall/r_wall, /area/maintenance/solars/port/fore) "alS" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_x = 32 }, /turf/open/floor/plating, @@ -5177,20 +4799,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /turf/open/floor/plasteel, /area/engine/atmos) -"alY" = ( -/obj/machinery/door/airlock/titanium{ - name = "Labor Shuttle Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/dark, -/area/shuttle/labor) -"alZ" = ( -/obj/machinery/mineral/stacking_machine/laborstacker{ - input_dir = 2; - output_dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/shuttle/labor) "ama" = ( /mob/living/simple_animal/sloth/paperwork, /turf/open/floor/plasteel, @@ -5237,12 +4845,6 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"amh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) "ami" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 2"; @@ -5250,15 +4852,6 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"amj" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/machinery/flasher{ - id = "Cell 3"; - pixel_x = -28 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) "amk" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 3"; @@ -5401,12 +4994,6 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"amB" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) "amC" = ( /turf/open/floor/plating, /area/maintenance/port/fore) @@ -5453,23 +5040,6 @@ /obj/item/trash/plate, /turf/open/floor/plating, /area/maintenance/port/fore) -"amI" = ( -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/labor) -"amJ" = ( -/obj/machinery/mineral/labor_claim_console{ - machinedir = 1; - pixel_x = 30 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/labor) -"amK" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA" - }, -/turf/closed/wall, -/area/security/processing) "amL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/spawner/structure/window/reinforced, @@ -5511,20 +5081,6 @@ /obj/item/bedsheet, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"amR" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Secure Gate"; - name = "brig shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/brig) "amS" = ( /obj/structure/cable{ icon_state = "4-8" @@ -5553,40 +5109,12 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"amU" = ( -/obj/machinery/door/poddoor/preopen{ - id = "briggate"; - name = "security blast door" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/brig) "amV" = ( /obj/structure/cable{ icon_state = "2-8" }, /turf/open/floor/plasteel/dark, /area/security/brig) -"amW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 1; - id_tag = "outerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/brig) -"amX" = ( -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/hallway/primary/fore) "amY" = ( /obj/structure/chair{ dir = 1 @@ -5715,22 +5243,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"anq" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"anr" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/flasher{ - id = "gulagshuttleflasher"; - pixel_x = 25 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/labor) "ans" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 @@ -5782,31 +5294,6 @@ dir = 1 }, /area/hallway/primary/fore) -"anx" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/hallway/primary/fore) -"any" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/hallway/primary/fore) "anz" = ( /turf/open/floor/plasteel, /area/hallway/primary/fore) @@ -5848,22 +5335,8 @@ "anF" = ( /turf/open/floor/plating, /area/maintenance/fore/secondary) -"anG" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) "anH" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, +/obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/maintenance/solars/port/fore) "anI" = ( @@ -5890,10 +5363,6 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/fore) -"anM" = ( -/obj/structure/closet/crate, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/labor) "anN" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 4; @@ -5903,29 +5372,17 @@ /turf/open/floor/plating, /area/security/processing) "anO" = ( -/obj/machinery/door/airlock/titanium{ - id_tag = "prisonshuttle"; - name = "Labor Shuttle Airlock" - }, -/obj/docking_port/mobile{ - dir = 8; - dwidth = 2; - height = 5; - id = "laborcamp"; - name = "labor camp shuttle"; - port_direction = 4; - width = 9 - }, /obj/docking_port/stationary{ dir = 8; dwidth = 2; height = 5; id = "laborcamp_home"; name = "fore bay 1"; + roundstart_template = /datum/map_template/shuttle/labour/box; width = 9 }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/labor) +/turf/open/space/basic, +/area/space) "anP" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ @@ -5937,12 +5394,6 @@ /turf/open/floor/plasteel, /area/security/processing) "anQ" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 32 - }, /obj/machinery/light{ dir = 1 }, @@ -6076,11 +5527,7 @@ "aoi" = ( /obj/structure/rack, /obj/item/clothing/mask/gas, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /obj/item/device/multitool, @@ -6122,25 +5569,6 @@ /obj/item/circuitboard/machine/monkey_recycler, /turf/open/floor/plating, /area/maintenance/port/fore) -"aop" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plating/airless, -/area/shuttle/labor) -"aoq" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_y = -32 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/processing) "aor" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 @@ -6215,16 +5643,6 @@ dir = 2 }, /area/hallway/primary/fore) -"aoA" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/corner{ - dir = 2 - }, -/area/hallway/primary/fore) "aoB" = ( /obj/machinery/firealarm{ dir = 1; @@ -6403,10 +5821,6 @@ /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/maintenance/port/fore) -"aoY" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/floor/plating/airless, -/area/shuttle/labor) "aoZ" = ( /obj/machinery/atmospherics/components/binary/valve/digital{ name = "Waste Release" @@ -6484,17 +5898,10 @@ /area/maintenance/fore/secondary) "apm" = ( /obj/machinery/door/firedoor, -/obj/structure/sign/securearea{ - pixel_x = 32 - }, /turf/open/floor/plasteel/red/corner{ dir = 4 }, /area/hallway/primary/fore) -"apn" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall, -/area/maintenance/fore/secondary) "apo" = ( /obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, /turf/closed/wall, @@ -6776,6 +6183,9 @@ dir = 8; pixel_x = 24 }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, /turf/open/floor/plasteel/red/corner{ dir = 4 }, @@ -6799,12 +6209,12 @@ /turf/open/floor/plating, /area/maintenance/fore/secondary) "aqg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, /turf/open/floor/plating, /area/maintenance/fore/secondary) "aqh" = ( @@ -6969,11 +6379,7 @@ /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) "aqx" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, +/obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/maintenance/solars/starboard/fore) "aqy" = ( @@ -7247,11 +6653,7 @@ }, /area/holodeck/rec_center) "arp" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /obj/effect/spawner/structure/window/reinforced, @@ -7414,8 +6816,7 @@ /area/maintenance/port/fore) "arM" = ( /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; @@ -7959,7 +7360,8 @@ dir = 4; dwidth = 4; height = 9; - width = 9 + width = 9; + timid = 0 }, /obj/machinery/bluespace_beacon, /obj/machinery/computer/auxillary_base, @@ -8622,11 +8024,7 @@ /turf/open/floor/plating, /area/maintenance/fore) "ave" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /obj/effect/spawner/lootdrop/maintenance, @@ -8720,11 +8118,7 @@ }, /area/crew_quarters/dorms) "avo" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, +/obj/structure/sign/warning/electricshock, /turf/closed/wall, /area/maintenance/department/electrical) "avp" = ( @@ -8854,11 +8248,7 @@ /turf/open/floor/plasteel, /area/crew_quarters/dorms) "avH" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, +/obj/structure/sign/warning/electricshock, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -8923,7 +8313,7 @@ /turf/open/floor/plasteel/floorgrime, /area/maintenance/department/electrical) "avP" = ( -/obj/structure/sign/pods, +/obj/structure/sign/warning/pods, /turf/closed/wall, /area/hallway/secondary/entry) "avQ" = ( @@ -9130,6 +8520,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/open/floor/plasteel, /area/hallway/primary/fore) "awl" = ( @@ -9142,6 +8535,9 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/open/floor/plasteel, /area/hallway/primary/fore) "awm" = ( @@ -9154,6 +8550,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/open/floor/plating, /area/maintenance/fore/secondary) "awn" = ( @@ -9161,6 +8560,9 @@ dir = 9 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "2-8" + }, /turf/open/floor/plating, /area/maintenance/fore/secondary) "awo" = ( @@ -9335,18 +8737,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"awN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) "awO" = ( /obj/structure/cable{ icon_state = "4-8" @@ -9543,10 +8933,7 @@ /turf/open/floor/plating, /area/maintenance/port/fore) "axm" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; +/obj/structure/sign/warning/electricshock{ pixel_y = -32 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -9583,10 +8970,7 @@ /turf/open/floor/plating, /area/maintenance/fore) "axr" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; +/obj/structure/sign/warning/electricshock{ pixel_y = -32 }, /obj/structure/cable{ @@ -9625,6 +9009,9 @@ /obj/structure/cable{ icon_state = "2-4" }, +/obj/structure/cable{ + icon_state = "2-8" + }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -9718,6 +9105,9 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, +/obj/structure/cable{ + icon_state = "1-2" + }, /turf/open/floor/plating, /area/maintenance/fore/secondary) "axG" = ( @@ -10031,15 +9421,22 @@ /turf/closed/wall/r_wall, /area/maintenance/port/fore) "ayA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" +/obj/structure/cable{ + icon_state = "0-8" }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/fore) "ayB" = ( -/turf/closed/wall, -/area/crew_quarters/theatre/mime) +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/fore) "ayC" = ( /obj/structure/cable{ icon_state = "0-8" @@ -10052,8 +9449,16 @@ /turf/open/floor/plating, /area/maintenance/fore) "ayD" = ( -/turf/closed/wall, -/area/crew_quarters/theatre/clown) +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/fore) "ayE" = ( /turf/closed/wall/r_wall, /area/maintenance/fore) @@ -10080,7 +9485,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = 32 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -10167,7 +9572,7 @@ /obj/structure/cable{ icon_state = "0-2" }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_y = 32 }, /obj/effect/spawner/structure/window/reinforced, @@ -10462,15 +9867,15 @@ /turf/closed/wall, /area/maintenance/port/fore) "azH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/theatre/mime) +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/space, +/area/space/nearstation) "azI" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/theatre/clown) +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/space, +/area/space/nearstation) "azJ" = ( /obj/machinery/gateway{ dir = 9 @@ -10847,18 +10252,11 @@ /turf/open/floor/plating, /area/maintenance/department/electrical) "aAC" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA" - }, +/obj/structure/sign/warning/docking, /turf/closed/wall/r_wall, /area/hallway/secondary/entry) "aAD" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /obj/effect/spawner/structure/window/reinforced, @@ -11349,17 +10747,25 @@ /turf/open/floor/circuit, /area/ai_monitored/nuke_storage) "aBT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white/side{ +/obj/machinery/computer/bank_machine, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/vault{ dir = 8 }, -/area/crew_quarters/theatre/mime) +/area/ai_monitored/nuke_storage) "aBU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/theatre/clown) +/obj/machinery/power/apc{ + dir = 1; + name = "Vault APC"; + areastring = "/area/ai_monitored/nuke_storage"; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/circuit, +/area/ai_monitored/nuke_storage) "aBV" = ( /obj/machinery/airalarm{ pixel_y = 23 @@ -11370,16 +10776,13 @@ /turf/open/floor/circuit, /area/ai_monitored/nuke_storage) "aBW" = ( -/obj/structure/table, -/obj/item/device/flashlight/lamp/bananalamp, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -30 +/obj/structure/filingcabinet, +/obj/item/folder/documents, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/vault{ + dir = 8 }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/theatre/clown) +/area/ai_monitored/nuke_storage) "aBX" = ( /obj/machinery/gateway{ dir = 10 @@ -11434,24 +10837,18 @@ /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) "aCd" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/machinery/airalarm{ - pixel_y = 23 +/obj/machinery/computer/cryopod{ + pixel_y = 25 }, -/obj/machinery/button/door{ - id = "Dorm1"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - req_access_txt = "0"; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ +/obj/structure/chair/office/dark{ dir = 4 }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) +/turf/open/floor/plasteel/purple/side{ + tag = "icon-purple (NORTH)"; + icon_state = "purple"; + dir = 1 + }, +/area/crew_quarters/cryopod) "aCe" = ( /obj/effect/landmark/xeno_spawn, /obj/item/bikehorn/rubberducky, @@ -11556,6 +10953,7 @@ pixel_x = -32 }, /obj/item/reagent_containers/food/snacks/baguette, +/obj/item/toy/dummy, /turf/open/floor/plasteel/white/side{ dir = 4 }, @@ -11752,9 +11150,6 @@ "aCR" = ( /turf/closed/wall, /area/chapel/main) -"aCS" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/arrival) "aCT" = ( /obj/structure/table, /obj/item/stack/sheet/metal/fifty, @@ -11764,16 +11159,6 @@ dir = 4 }, /area/construction/mining/aux_base) -"aCU" = ( -/obj/machinery/door/airlock/titanium{ - name = "Arrivals Shuttle Airlock" - }, -/turf/open/floor/plating, -/area/shuttle/arrival) -"aCV" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/arrival) "aCW" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/spawner/lootdrop/maintenance, @@ -11943,9 +11328,14 @@ /turf/open/floor/circuit, /area/ai_monitored/nuke_storage) "aDs" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/crew_quarters/theatre/mime) +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/bot_white/right, +/turf/open/floor/plasteel/vault{ + dir = 1 + }, +/area/ai_monitored/nuke_storage) "aDt" = ( /obj/structure/cable{ icon_state = "1-2" @@ -11956,9 +11346,14 @@ /turf/open/floor/circuit, /area/ai_monitored/nuke_storage) "aDv" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/crew_quarters/theatre/clown) +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white/left, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/ai_monitored/nuke_storage) "aDw" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -12043,7 +11438,9 @@ /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) "aDG" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, /turf/open/floor/plasteel/neutral/side{ dir = 4 }, @@ -12066,23 +11463,9 @@ /turf/open/floor/plasteel/cafeteria, /area/crew_quarters/heads/hor) "aDI" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, +/obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/ai_monitored/storage/eva) -"aDK" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm1"; - name = "Dorm 1" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) "aDL" = ( /obj/structure/sink{ dir = 8; @@ -12196,6 +11579,7 @@ /area/maintenance/starboard/fore) "aDY" = ( /obj/structure/chair/stool, +/obj/effect/landmark/start/mime, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -12351,11 +11735,6 @@ /obj/structure/fans/tiny, /turf/open/floor/plating, /area/chapel/main) -"aEo" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) "aEp" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -12363,58 +11742,6 @@ /obj/structure/ore_box, /turf/open/floor/plating, /area/shuttle/auxillary_base) -"aEq" = ( -/obj/machinery/computer/arcade, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"aEr" = ( -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"aEs" = ( -/obj/structure/closet/wardrobe/black, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"aEt" = ( -/obj/structure/closet/wardrobe/green, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"aEu" = ( -/obj/structure/closet/wardrobe/grey, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"aEv" = ( -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"aEw" = ( -/obj/machinery/requests_console{ - department = "Arrival shuttle"; - name = "Arrivals Shuttle console"; - pixel_y = 30 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"aEx" = ( -/obj/structure/shuttle/engine/propulsion/burst/right{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/shuttle/arrival) -"aEy" = ( -/obj/structure/shuttle/engine/heater{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/shuttle/arrival) "aEz" = ( /obj/machinery/power/apc{ dir = 4; @@ -12534,13 +11861,26 @@ /turf/open/floor/circuit, /area/ai_monitored/nuke_storage) "aEN" = ( -/obj/structure/chair/wood{ - dir = 8 +/obj/structure/closet/crate{ + name = "Gold Crate" }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" +/obj/item/stack/sheet/mineral/gold{ + pixel_x = -1; + pixel_y = 5 }, -/area/maintenance/bar/cafe) +/obj/item/stack/sheet/mineral/gold{ + pixel_y = 2 + }, +/obj/item/stack/sheet/mineral/gold{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/item/storage/belt/champion, +/obj/effect/turf_decal/bot_white/right, +/turf/open/floor/plasteel/vault{ + dir = 1 + }, +/area/ai_monitored/nuke_storage) "aEO" = ( /obj/structure/cable{ icon_state = "1-2" @@ -12548,12 +11888,34 @@ /turf/open/floor/circuit, /area/ai_monitored/nuke_storage) "aEP" = ( -/obj/structure/table/wood, -/obj/item/stack/sheet/mineral/wood{ - amount = 7 +/obj/item/coin/silver{ + pixel_x = 7; + pixel_y = 12 }, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) +/obj/item/coin/silver{ + pixel_x = 12; + pixel_y = 7 + }, +/obj/item/coin/silver{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/coin/silver{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/coin/silver{ + pixel_x = 5; + pixel_y = -8 + }, +/obj/structure/closet/crate{ + name = "Silver Crate" + }, +/obj/effect/turf_decal/bot_white/left, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/ai_monitored/nuke_storage) "aEQ" = ( /obj/structure/table, /obj/item/paper/pamphlet/gateway, @@ -12566,7 +11928,7 @@ network = list("SS13") }, /obj/structure/table, -/obj/structure/sign/biohazard{ +/obj/structure/sign/warning/biohazard{ pixel_x = -32 }, /obj/item/storage/firstaid/regular, @@ -12599,7 +11961,7 @@ "aEU" = ( /obj/structure/table, /obj/machinery/recharger, -/obj/structure/sign/biohazard{ +/obj/structure/sign/warning/biohazard{ pixel_x = 32 }, /turf/open/floor/plasteel, @@ -12643,7 +12005,7 @@ /turf/open/floor/plasteel/dark, /area/ai_monitored/storage/eva) "aFc" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/ai_monitored/storage/eva) "aFd" = ( @@ -12832,10 +12194,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/dark, /area/chapel/main) -"aFC" = ( -/obj/structure/chair, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) "aFD" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/effect/turf_decal/stripes/line{ @@ -12843,18 +12201,6 @@ }, /turf/open/floor/plating, /area/shuttle/auxillary_base) -"aFE" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"aFF" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/shuttle/arrival) "aFG" = ( /turf/open/floor/plasteel/arrival{ dir = 4 @@ -13037,38 +12383,44 @@ /turf/open/floor/plasteel/vault/corner, /area/ai_monitored/nuke_storage) "aGb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/effect/turf_decal/bot_white/right, +/turf/open/floor/plasteel/vault{ + dir = 1 }, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) +/area/ai_monitored/nuke_storage) "aGc" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 +/obj/structure/cable{ + icon_state = "1-8" }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" +/obj/machinery/camera/motion{ + c_tag = "Vault"; + dir = 1; + network = list("MiniSat") }, -/area/maintenance/bar/cafe) +/obj/machinery/light, +/turf/open/floor/plasteel/vault/corner{ + dir = 8 + }, +/area/ai_monitored/nuke_storage) "aGd" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +/turf/open/floor/plasteel/vault/side, +/area/ai_monitored/nuke_storage) +"aGe" = ( +/obj/structure/safe, +/obj/item/clothing/head/bearpelt, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/gun/ballistic/revolver/russian, +/obj/item/ammo_box/a357, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/effect/turf_decal/bot_white/left, +/turf/open/floor/plasteel/vault{ dir = 4 }, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"aGe" = ( -/obj/structure/table/wood, -/obj/item/screwdriver, -/obj/item/crowbar, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/bar/cafe) +/area/ai_monitored/nuke_storage) "aGf" = ( /obj/machinery/firealarm{ dir = 4; @@ -13164,6 +12516,7 @@ /area/ai_monitored/storage/eva) "aGr" = ( /obj/structure/chair/stool, +/obj/effect/landmark/start/clown, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -13274,6 +12627,9 @@ /obj/structure/mirror{ pixel_x = -28 }, +/obj/item/device/flashlight/lamp/bananalamp{ + pixel_y = 3 + }, /turf/open/floor/plasteel/redblue, /area/crew_quarters/theatre) "aGE" = ( @@ -13412,8 +12768,9 @@ /obj/structure/cable{ icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable{ + icon_state = "1-8" }, /turf/open/floor/plating, /area/maintenance/starboard/fore) @@ -13615,12 +12972,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/chapel/main) -"aHs" = ( -/obj/machinery/door/airlock/titanium{ - name = "Arrivals Shuttle Airlock" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) "aHu" = ( /obj/machinery/status_display{ pixel_x = 32 @@ -13704,14 +13055,9 @@ /turf/open/floor/plasteel, /area/storage/primary) "aHF" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) "aHG" = ( /obj/machinery/door/airlock/vault{ icon_state = "door_locked"; @@ -13871,10 +13217,7 @@ dir = 4; pixel_x = -22 }, -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/bananalamp{ - pixel_y = 3 - }, +/obj/structure/closet/crate/wooden/toy, /turf/open/floor/plasteel/redblue, /area/crew_quarters/theatre) "aIa" = ( @@ -13971,9 +13314,7 @@ dir = 4; sortType = 21 }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, /turf/open/floor/plating, /area/maintenance/starboard/fore) "aIk" = ( @@ -14118,9 +13459,10 @@ /turf/open/floor/plasteel/grimy, /area/chapel/office) "aIB" = ( -/obj/structure/bodycontainer/crematorium, -/obj/effect/landmark/revenantspawn, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/bodycontainer/crematorium{ + id = "crematoriumChapel" + }, /turf/open/floor/plasteel/dark, /area/chapel/office) "aIC" = ( @@ -14139,17 +13481,6 @@ /obj/structure/table/glass, /turf/open/floor/plasteel/chapel, /area/chapel/main) -"aIF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/warden) -"aIG" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) "aIH" = ( /obj/structure/table, /obj/item/storage/box/lights/mixed, @@ -14318,20 +13649,20 @@ /turf/open/floor/plasteel, /area/storage/primary) "aJd" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/port) +"aJe" = ( /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/door/firedoor, -/obj/structure/mineral_door/wood{ - name = "Abandoned Cafe" +/turf/open/floor/plasteel/vault{ + dir = 5 }, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"aJe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/maintenance/bar/cafe) +/area/hallway/primary/port) "aJf" = ( /obj/machinery/camera{ c_tag = "EVA South"; @@ -14551,6 +13882,7 @@ "aJG" = ( /obj/structure/disposalpipe/segment, /obj/machinery/button/crematorium{ + id = "crematoriumChapel"; pixel_x = 25 }, /obj/machinery/light/small{ @@ -14571,9 +13903,6 @@ req_access_txt = "25" }, /obj/effect/turf_decal/delivery, -/obj/structure/window/reinforced{ - dir = 8 - }, /turf/open/floor/plasteel, /area/crew_quarters/bar) "aJI" = ( @@ -14722,10 +14051,15 @@ /turf/open/floor/plasteel, /area/storage/primary) "aKb" = ( -/obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/redyellow/side{ - dir = 1 +/obj/structure/cable{ + icon_state = "0-8" }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, /area/hallway/primary/port) "aKc" = ( /obj/machinery/door/firedoor, @@ -14774,24 +14108,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aKg" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"aKh" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/machinery/light, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"aKi" = ( -/obj/structure/shuttle/engine/propulsion/burst/left{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/shuttle/arrival) "aKj" = ( /obj/machinery/door/firedoor, /turf/open/floor/plasteel/neutral/corner{ @@ -14860,19 +14176,36 @@ /turf/open/floor/plating, /area/hallway/primary/port) "aKu" = ( -/turf/closed/wall, -/area/maintenance/bar/cafe) +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/port) "aKv" = ( +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/port) +"aKw" = ( /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel/redyellow/side{ - dir = 1 +/obj/structure/cable{ + icon_state = "2-8" }, -/area/hallway/primary/port) -"aKw" = ( -/turf/open/floor/plasteel/redyellow/side{ - dir = 1 +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/vault{ + dir = 5 }, /area/hallway/primary/port) "aKx" = ( @@ -14908,7 +14241,7 @@ /turf/open/floor/plasteel, /area/gateway) "aKB" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/gateway) "aKC" = ( @@ -15008,13 +14341,6 @@ "aKQ" = ( /obj/machinery/reagentgrinder, /obj/structure/table/wood, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, /turf/open/floor/wood, /area/crew_quarters/bar) "aKR" = ( @@ -15173,7 +14499,13 @@ /turf/open/floor/plasteel, /area/hallway/primary/port) "aLl" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, /turf/open/floor/plasteel, /area/hallway/primary/port) "aLm" = ( @@ -15327,6 +14659,12 @@ /obj/machinery/light{ dir = 1 }, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, /turf/open/floor/plasteel, /area/hallway/primary/port) "aLK" = ( @@ -15733,10 +15071,10 @@ /turf/open/floor/plasteel, /area/hallway/primary/port) "aMR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-4" }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel, /area/hallway/primary/port) "aMS" = ( @@ -15772,7 +15110,6 @@ /area/hallway/primary/port) "aMW" = ( /obj/structure/bodycontainer/morgue, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/dark, /area/chapel/office) "aMX" = ( @@ -16397,10 +15734,7 @@ /area/hallway/primary/central) "aOF" = ( /obj/machinery/light, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; +/obj/structure/sign/warning/electricshock{ pixel_y = -32 }, /obj/machinery/door/firedoor, @@ -16409,10 +15743,7 @@ }, /area/hallway/primary/central) "aOG" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; +/obj/structure/sign/warning/electricshock{ pixel_y = -32 }, /obj/machinery/door/firedoor, @@ -16464,7 +15795,9 @@ req_access_txt = "25" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/wood, +/turf/open/floor/plasteel{ + icon_state = "wood" + }, /area/crew_quarters/bar) "aOP" = ( /obj/effect/landmark/blobstart, @@ -16679,7 +16012,7 @@ /area/hallway/secondary/entry) "aPw" = ( /obj/machinery/disposal/bin, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; icon_state = "monkey_painting"; name = "Mr. Deempisi portrait"; @@ -16815,7 +16148,6 @@ /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; - layer = 2.9; name = "bridge blast door" }, /turf/open/floor/plating, @@ -16826,7 +16158,6 @@ }, /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; - layer = 2.9; name = "bridge blast door" }, /obj/effect/spawner/structure/window/reinforced, @@ -16843,7 +16174,6 @@ /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; - layer = 2.9; name = "bridge blast door" }, /turf/open/floor/plating, @@ -16861,7 +16191,6 @@ /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; - layer = 2.9; name = "bridge blast door" }, /turf/open/floor/plating, @@ -16877,7 +16206,6 @@ /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; - layer = 2.9; name = "bridge blast door" }, /turf/open/floor/plating, @@ -16889,7 +16217,6 @@ /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; - layer = 2.9; name = "bridge blast door" }, /turf/open/floor/plating, @@ -17097,11 +16424,7 @@ /turf/open/floor/plating, /area/hallway/secondary/exit) "aQG" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /obj/effect/turf_decal/stripes/line{ @@ -17550,10 +16873,7 @@ /turf/open/floor/plasteel, /area/storage/tools) "aRW" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA" - }, +/obj/structure/sign/warning/docking, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/hallway/secondary/exit) @@ -17633,10 +16953,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aSj" = ( -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) "aSk" = ( /obj/structure/table, /obj/item/stack/cable_coil/random, @@ -17852,7 +17168,7 @@ /area/crew_quarters/kitchen) "aSP" = ( /obj/machinery/smartfridge, -/turf/open/floor/plating, +/turf/closed/wall, /area/crew_quarters/kitchen) "aSQ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -18010,11 +17326,7 @@ cyclelinkeddir = 4; name = "Escape Airlock" }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /turf/open/floor/plating, @@ -18581,10 +17893,7 @@ /turf/open/floor/plasteel, /area/storage/tools) "aVb" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; +/obj/structure/sign/warning/electricshock{ pixel_y = 32 }, /obj/machinery/door/firedoor, @@ -18593,7 +17902,7 @@ }, /area/hallway/primary/central) "aVc" = ( -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = 32 }, /obj/machinery/door/firedoor, @@ -18779,7 +18088,7 @@ /turf/open/floor/plasteel, /area/bridge) "aVt" = ( -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = -32 }, /obj/machinery/door/firedoor, @@ -18791,10 +18100,7 @@ /turf/open/floor/plasteel, /area/bridge) "aVu" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; +/obj/structure/sign/warning/electricshock{ pixel_y = 32 }, /obj/machinery/door/firedoor, @@ -19028,12 +18334,7 @@ /turf/open/floor/carpet, /area/library) "aWa" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK" - }, +/obj/structure/sign/warning/vacuum/external, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/hallway/secondary/entry) @@ -21344,7 +20645,6 @@ "bbW" = ( /obj/machinery/door/poddoor/preopen{ id = "heads_meeting"; - layer = 2.9; name = "privacy shutters" }, /obj/effect/spawner/structure/window/reinforced, @@ -21407,7 +20707,7 @@ "bcg" = ( /obj/structure/table, /obj/item/aiModule/supplied/freeform, -/obj/structure/sign/kiddieplaque{ +/obj/structure/sign/plaques/kiddie{ pixel_x = 32 }, /obj/machinery/camera/motion{ @@ -21558,11 +20858,7 @@ /turf/open/floor/plasteel, /area/hallway/secondary/exit) "bcB" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_x = 32 }, /obj/effect/turf_decal/stripes/line{ @@ -21681,9 +20977,6 @@ }, /turf/closed/wall, /area/quartermaster/warehouse) -"bcU" = ( -/turf/open/floor/wood, -/area/maintenance/bar) "bcV" = ( /obj/machinery/airalarm{ dir = 8; @@ -21697,7 +20990,6 @@ /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "heads_meeting"; - layer = 2.9; name = "privacy shutters" }, /turf/open/floor/plating, @@ -22071,10 +21363,6 @@ /obj/structure/closet/crate/medical, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"bdV" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/airless, -/area/space/nearstation) "bdW" = ( /obj/item/clothing/gloves/color/rainbow, /obj/item/clothing/head/soft/rainbow, @@ -22478,7 +21766,7 @@ id = "garbage" }, /obj/machinery/recycler, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ name = "\improper STAY CLEAR HEAVY MACHINERY"; pixel_y = 32 }, @@ -22560,11 +21848,7 @@ /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/locker) "bfb" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /obj/effect/landmark/event_spawn, @@ -22790,7 +22074,7 @@ /turf/open/floor/plating, /area/medical/medbay/central) "bfH" = ( -/obj/structure/sign/bluecross_2, +/obj/structure/sign/departments/medbay/alt, /turf/closed/wall, /area/medical/medbay/central) "bfI" = ( @@ -22890,7 +22174,7 @@ }, /area/hallway/primary/starboard) "bfZ" = ( -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_y = -32 }, /turf/open/floor/plasteel/purple/side{ @@ -23070,6 +22354,18 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/open/floor/plating, /area/maintenance/port) +"bgx" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/bar) "bgy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 @@ -23203,7 +22499,7 @@ dir = 4 }, /turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) +/area/engine/gravity_generator) "bgS" = ( /obj/machinery/requests_console{ announcementConsole = 1; @@ -23383,6 +22679,9 @@ /area/medical/morgue) "bho" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/medical/morgue) "bhp" = ( @@ -23752,17 +23051,14 @@ /area/bridge/meeting_room) "bif" = ( /obj/machinery/vending/cigarette, -/obj/machinery/light{ - dir = 4 - }, /turf/open/floor/wood, /area/bridge/meeting_room) "big" = ( -/obj/machinery/light_switch{ - pixel_y = 28 +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/vault{ + dir = 8 }, -/turf/open/floor/circuit, -/area/ai_monitored/nuke_storage) +/area/engine/gravity_generator) "bih" = ( /obj/effect/turf_decal/bot_white/right, /turf/open/floor/plasteel/vault{ @@ -23793,7 +23089,6 @@ /obj/machinery/computer/card{ dir = 8 }, -/obj/item/card/id/captains_spare, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/crew_quarters/heads/captain) @@ -23894,7 +23189,6 @@ /area/security/checkpoint/medical) "biz" = ( /obj/structure/bodycontainer/morgue, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/dark, /area/medical/morgue) "biA" = ( @@ -24111,7 +23405,7 @@ dir = 1; id = "garbage" }, -/obj/structure/sign/vacuum{ +/obj/structure/sign/warning/vacuum{ pixel_x = -32 }, /turf/open/floor/plating, @@ -24317,11 +23611,16 @@ /turf/open/floor/plasteel, /area/hallway/primary/central) "bjy" = ( +/obj/machinery/camera{ + c_tag = "Gravity Generator Room"; + dir = 8; + network = list("SS13") + }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) +/area/engine/gravity_generator) "bjz" = ( /turf/closed/wall/r_wall, /area/maintenance/central) @@ -24430,7 +23729,7 @@ /area/science/robotics/mechbay) "bjQ" = ( /obj/machinery/smartfridge/chemistry/preloaded, -/turf/open/floor/plating, +/turf/closed/wall, /area/medical/chemistry) "bjR" = ( /obj/structure/table/glass, @@ -24627,7 +23926,7 @@ /obj/machinery/shower{ dir = 8 }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = 32 }, /obj/effect/turf_decal/stripes/line{ @@ -24698,15 +23997,10 @@ }, /obj/machinery/door/poddoor/preopen{ id = "Disposal Exit"; - layer = 3; name = "disposal exit vent" }, /turf/open/floor/plating, /area/maintenance/disposal) -"bkA" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) "bkB" = ( /obj/machinery/button/door{ id = "Disposal Exit"; @@ -24735,10 +24029,7 @@ /turf/open/floor/plating, /area/maintenance/port) "bkE" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA" - }, +/obj/structure/sign/warning/docking, /turf/closed/wall/r_wall, /area/maintenance/port) "bkF" = ( @@ -24920,9 +24211,12 @@ /turf/open/floor/plating, /area/maintenance/central) "bkZ" = ( -/obj/machinery/nuclearbomb/selfdestruct, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) +/obj/machinery/gravity_generator/main/station, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/engine/gravity_generator) "bla" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -25302,11 +24596,7 @@ /turf/open/floor/plating, /area/maintenance/starboard/aft) "blR" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /obj/item/cigbutt, @@ -25475,15 +24765,7 @@ /turf/open/floor/plasteel, /area/quartermaster/sorting) "bml" = ( -/obj/machinery/mineral/ore_redemption{ - input_dir = 8; - output_dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastleft{ - name = "ORM Access"; - req_access_txt = "64" - }, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/office) "bmm" = ( @@ -25546,13 +24828,13 @@ dir = 8 }, /turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) +/area/engine/gravity_generator) "bmv" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) +/area/engine/gravity_generator) "bmw" = ( /obj/machinery/light{ dir = 4 @@ -25689,7 +24971,7 @@ /obj/structure/chair/office/light{ dir = 1 }, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = 28 }, /turf/open/floor/plasteel/white, @@ -26045,7 +25327,7 @@ /turf/open/floor/plasteel, /area/quartermaster/office) "bnF" = ( -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = 30 }, /obj/structure/disposalpipe/segment{ @@ -26173,37 +25455,49 @@ /turf/open/floor/plasteel, /area/crew_quarters/heads/hop) "bnT" = ( -/obj/effect/turf_decal/bot_white/right, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) +/obj/structure/sign/warning/electricshock{ + pixel_x = -32 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/gravity_generator) "bnU" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/turf/open/floor/plasteel/vault/side, -/area/ai_monitored/nuke_storage) -"bnV" = ( -/obj/machinery/camera/motion{ - c_tag = "Vault"; - dir = 1; - network = list("MiniSat") +/obj/machinery/door/airlock/engineering/glass{ + name = "Gravity Generator"; + req_access_txt = "11"; + req_one_access_txt = "0" }, -/obj/machinery/light, -/turf/open/floor/plasteel/vault/corner{ - dir = 8 - }, -/area/ai_monitored/nuke_storage) -"bnW" = ( -/obj/structure/safe, -/obj/item/clothing/head/bearpelt, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/gun/ballistic/revolver/russian, -/obj/item/ammo_box/a357, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, -/obj/effect/turf_decal/bot_white/left, /turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) +/area/engine/gravity_generator) +"bnV" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/gravity_generator) +"bnW" = ( +/obj/structure/sign/warning/radiation/rad_area{ + pixel_x = 32 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/gravity_generator) "bnX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/carpet, @@ -26507,12 +25801,7 @@ /turf/open/floor/plating, /area/maintenance/starboard) "boI" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK" - }, +/obj/structure/sign/warning/vacuum/external, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/quartermaster/storage) @@ -26655,7 +25944,6 @@ }, /obj/machinery/door/poddoor/shutters/preopen{ id = "hop"; - layer = 2.9; name = "Privacy Shutters" }, /turf/open/floor/plasteel, @@ -26703,24 +25991,35 @@ /turf/open/floor/plasteel, /area/crew_quarters/heads/hop) "bpg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/structure/chair/office/light, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) "bph" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) +/turf/open/floor/plasteel, +/area/engine/gravity_generator) "bpi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) "bpj" = ( /obj/structure/chair/comfy/brown{ dir = 4 @@ -26759,7 +26058,6 @@ }, /obj/item/soap/deluxe, /obj/item/bikehorn/rubberducky, -/obj/effect/landmark/revenantspawn, /obj/structure/curtain, /turf/open/floor/plasteel/freezer, /area/crew_quarters/heads/captain) @@ -27245,7 +26543,6 @@ }, /obj/machinery/door/poddoor/shutters/preopen{ id = "hop"; - layer = 2.9; name = "Privacy Shutters" }, /obj/effect/spawner/structure/window/reinforced, @@ -27306,20 +26603,17 @@ /area/engine/gravity_generator) "bqE" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/checkpoint/tertiary) +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) "bqF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ - icon_state = "0-2" + icon_state = "4-8" }, -/turf/open/floor/plating, -/area/security/checkpoint/tertiary) +/turf/open/floor/plasteel, +/area/engine/gravity_generator) "bqG" = ( /obj/structure/cable{ icon_state = "0-8" @@ -27346,7 +26640,7 @@ name = "Teleporter Maintenance"; req_access_txt = "17" }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = -32 }, /obj/structure/cable{ @@ -27399,7 +26693,7 @@ /obj/item/crowbar, /obj/item/clothing/neck/stethoscope, /obj/item/reagent_containers/spray/cleaner, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = 30 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -27773,7 +27067,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = -32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -27893,10 +27187,7 @@ /turf/open/floor/plasteel, /area/crew_quarters/heads/hop) "brU" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; +/obj/structure/sign/warning/electricshock{ pixel_y = -32 }, /obj/structure/cable{ @@ -27905,7 +27196,6 @@ /obj/structure/cable, /obj/machinery/door/poddoor/shutters/preopen{ id = "hop"; - layer = 2.9; name = "Privacy Shutters" }, /obj/effect/spawner/structure/window/reinforced, @@ -27964,20 +27254,20 @@ /turf/closed/wall/r_wall, /area/engine/gravity_generator) "bsb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, /turf/closed/wall/r_wall, -/area/security/checkpoint/tertiary) +/area/engine/gravity_generator) "bsc" = ( /turf/open/floor/plasteel, /area/engine/gravity_generator) "bsd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "0-4" +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/checkpoint/tertiary) +/turf/open/floor/plasteel, +/area/engine/gravity_generator) "bse" = ( /obj/machinery/power/terminal{ dir = 1 @@ -27988,14 +27278,11 @@ /turf/closed/wall/r_wall, /area/engine/gravity_generator) "bsf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-8" +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 }, -/turf/open/floor/plating, -/area/security/checkpoint/tertiary) +/turf/open/floor/plasteel, +/area/engine/gravity_generator) "bsg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -28476,7 +27763,7 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = 32 }, /obj/machinery/light/small{ @@ -28840,6 +28127,9 @@ }, /area/quartermaster/office) "bud" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, /turf/open/floor/plasteel/brown/corner{ dir = 8 }, @@ -29163,32 +28453,45 @@ /turf/open/floor/plasteel, /area/crew_quarters/heads/hop) "buP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/tertiary) -"buQ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/closed/wall, +/area/engine/gravity_generator) +"buQ" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"buR" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/tertiary) -"buR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/tertiary) +/turf/closed/wall, +/area/engine/gravity_generator) "buS" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Gravity Generator Foyer" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 }, /turf/open/floor/plasteel, -/area/security/checkpoint/tertiary) +/area/engine/gravity_generator) "buT" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -29252,7 +28555,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = -32 }, /obj/structure/disposalpipe/segment, @@ -29463,7 +28766,7 @@ /turf/open/floor/plasteel/white, /area/medical/genetics) "bvA" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -29635,9 +28938,10 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/turf/open/floor/plasteel/red/side{ +/obj/effect/turf_decal/stripes/line{ dir = 1 }, +/turf/open/floor/plasteel, /area/hallway/primary/central) "bvX" = ( /obj/machinery/camera{ @@ -29671,20 +28975,19 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/red/side{ +/obj/effect/turf_decal/stripes/line{ dir = 1 }, +/turf/open/floor/plasteel, /area/hallway/primary/central) "bwb" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, -/turf/open/floor/plasteel/red/side{ - dir = 1 +/obj/effect/turf_decal/stripes/corner{ + dir = 4 }, +/turf/open/floor/plasteel, /area/hallway/primary/central) "bwc" = ( /obj/structure/disposalpipe/segment, @@ -29726,13 +29029,17 @@ /turf/open/floor/plasteel, /area/hallway/primary/central) "bwh" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/turf/open/floor/plasteel/red/side{ +/obj/effect/turf_decal/stripes/line{ dir = 1 }, +/turf/open/floor/plasteel, /area/hallway/primary/central) "bwi" = ( /obj/item/device/radio/intercom{ @@ -29771,27 +29078,33 @@ /turf/open/floor/plasteel, /area/crew_quarters/heads/hop) "bwm" = ( -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/tertiary) -"bwn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" +/turf/closed/wall, +/area/engine/gravity_generator) +"bwn" = ( +/obj/structure/closet/radiation, +/obj/structure/sign/warning/radiation/rad_area{ + pixel_x = -32 }, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/tertiary) +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) "bwo" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/tertiary) -"bwp" = ( -/obj/structure/chair/office/dark, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/tertiary) +/turf/closed/wall, +/area/engine/gravity_generator) +"bwp" = ( +/obj/structure/closet/radiation, +/obj/structure/sign/warning/radiation/rad_area{ + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) "bwq" = ( /obj/machinery/teleport/station, /turf/open/floor/plating, @@ -29904,7 +29217,7 @@ /turf/open/floor/plasteel, /area/medical/sleeper) "bwG" = ( -/obj/structure/sign/nosmoking_2, +/obj/structure/sign/warning/nosmoking, /turf/closed/wall, /area/medical/sleeper) "bwH" = ( @@ -30108,7 +29421,7 @@ /area/medical/sleeper) "bxa" = ( /obj/structure/chair, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = -28 }, /turf/open/floor/plasteel/dark, @@ -30387,65 +29700,30 @@ /turf/open/floor/plasteel, /area/crew_quarters/heads/hop) "bxH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "vault"; - name = "vault shutters" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/checkpoint/tertiary) +/turf/closed/wall, +/area/engine/gravity_generator) "bxI" = ( -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint"; - req_access = null; - req_access_txt = "1" +/obj/machinery/ai_status_display, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/tertiary) +/turf/closed/wall, +/area/engine/gravity_generator) "bxJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "vault"; - name = "vault shutters" +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/checkpoint/tertiary) +/turf/closed/wall, +/area/engine/gravity_generator) "bxK" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/item/paper, -/obj/machinery/door/window/westright{ - dir = 1; - name = "Security Checkpoint"; - req_access_txt = "1" +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "vault"; - name = "vault shutters" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) +/turf/closed/wall, +/area/engine/gravity_generator) "bxL" = ( /obj/machinery/camera{ c_tag = "Central Hallway South-East"; @@ -30594,7 +29872,7 @@ }, /area/quartermaster/qm) "bye" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/medical/genetics) "byf" = ( @@ -30897,7 +30175,7 @@ /turf/open/floor/plasteel/red/side, /area/security/checkpoint/supply) "byP" = ( -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_y = 32 }, /turf/open/floor/plasteel/blue/side{ @@ -30927,9 +30205,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/red/side{ - dir = 1 +/obj/effect/turf_decal/stripes/corner{ + dir = 8 }, +/turf/open/floor/plasteel, /area/hallway/primary/central) "byT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -30940,9 +30219,6 @@ /area/security/checkpoint/supply) "byU" = ( /obj/machinery/light, -/obj/structure/cable{ - icon_state = "4-8" - }, /turf/open/floor/plasteel, /area/hallway/primary/central) "byV" = ( @@ -30950,9 +30226,6 @@ pixel_x = 5; pixel_y = -32 }, -/obj/structure/cable{ - icon_state = "4-8" - }, /turf/open/floor/plasteel, /area/hallway/primary/central) "byW" = ( @@ -31154,7 +30427,7 @@ /obj/machinery/atmospherics/pipe/simple{ dir = 4 }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ desc = "A warning sign which reads 'SERVER ROOM'."; name = "SERVER ROOM"; pixel_y = 32 @@ -31453,9 +30726,6 @@ }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, /turf/open/floor/plasteel, /area/hallway/primary/central) "bAh" = ( @@ -31946,9 +31216,6 @@ /obj/structure/cable{ icon_state = "1-8" }, -/obj/structure/cable{ - icon_state = "4-8" - }, /turf/open/floor/plasteel, /area/hallway/primary/central) "bBm" = ( @@ -32007,9 +31274,6 @@ pixel_x = -32; pixel_y = -32 }, -/obj/structure/cable{ - icon_state = "1-8" - }, /turf/open/floor/plasteel, /area/hallway/primary/central) "bBr" = ( @@ -32234,7 +31498,7 @@ /turf/open/floor/plasteel/dark, /area/science/server) "bBV" = ( -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ desc = "A warning sign which reads 'SERVER ROOM'."; name = "SERVER ROOM"; pixel_y = -32 @@ -32392,7 +31656,7 @@ network = list("SS13","RD") }, /obj/machinery/light, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = -32 }, /turf/open/floor/engine, @@ -32762,9 +32026,7 @@ /turf/open/floor/plating, /area/maintenance/starboard) "bDi" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA"; +/obj/structure/sign/warning/docking{ pixel_y = 32 }, /turf/open/space, @@ -32959,7 +32221,7 @@ /turf/open/floor/plasteel/white, /area/medical/sleeper) "bDD" = ( -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = -28 }, /obj/structure/bed, @@ -33102,7 +32364,7 @@ /obj/machinery/door/airlock/medical/glass{ id_tag = null; name = "Medbay Storage"; - req_access_txt = "45" + req_access_txt = "5" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -33144,13 +32406,13 @@ /turf/open/floor/plasteel/floorgrime, /area/science/storage) "bEd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/machinery/door/airlock/medical/glass{ id_tag = null; name = "Medbay Storage"; - req_access_txt = "45" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 + req_access_txt = "5" }, /turf/open/floor/plasteel/white, /area/medical/sleeper) @@ -33247,7 +32509,7 @@ /area/science/storage) "bEp" = ( /obj/machinery/portable_atmospherics/canister/toxins, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = 32 }, /obj/effect/turf_decal/delivery, @@ -33464,7 +32726,7 @@ /turf/open/floor/plasteel, /area/science/mixing) "bEO" = ( -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = -32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -33895,7 +33157,7 @@ /turf/open/floor/plasteel/barber, /area/crew_quarters/heads/cmo) "bFQ" = ( -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = -32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -33992,14 +33254,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating/airless, /area/science/test_area) -"bGg" = ( -/obj/structure/table, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/mining) -"bGh" = ( -/obj/machinery/computer/shuttle/mining, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/mining) "bGi" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -34097,11 +33351,7 @@ /turf/open/floor/plasteel, /area/storage/tech) "bGu" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, +/obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/storage/tech) "bGv" = ( @@ -34579,12 +33829,6 @@ }, /turf/open/floor/plating, /area/science/test_area) -"bHx" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/mining) "bHy" = ( /obj/structure/closet/crate, /obj/machinery/light/small{ @@ -34601,7 +33845,7 @@ /turf/open/floor/plasteel, /area/quartermaster/miningdock) "bHz" = ( -/obj/item/ore/iron, +/obj/item/stack/ore/iron, /obj/effect/turf_decal/stripes/line{ dir = 9 }, @@ -35078,11 +34322,7 @@ /turf/open/floor/plasteel/barber, /area/crew_quarters/heads/cmo) "bIx" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, +/obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/science/xenobiology) "bIy" = ( @@ -35194,7 +34434,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = 32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -35254,7 +34494,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/structure/sign/xenobio{ +/obj/structure/sign/departments/xenobio{ pixel_y = -32 }, /turf/open/floor/plating, @@ -35281,7 +34521,7 @@ /turf/open/floor/plasteel, /area/science/mixing) "bIX" = ( -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ desc = "A warning sign which reads 'BOMB RANGE"; name = "BOMB RANGE" }, @@ -35319,29 +34559,17 @@ /turf/open/floor/plating, /area/quartermaster/miningdock) "bJc" = ( -/obj/machinery/door/airlock/titanium{ - name = "Mining Shuttle Airlock"; - req_access_txt = "0" - }, -/obj/docking_port/mobile{ - dir = 8; - dwidth = 3; - height = 5; - id = "mining"; - name = "mining shuttle"; - port_direction = 4; - width = 7 - }, /obj/docking_port/stationary{ dir = 8; dwidth = 3; height = 5; id = "mining_home"; name = "mining shuttle bay"; + roundstart_template = /datum/map_template/shuttle/mining/box; width = 7 }, -/turf/open/floor/plating, -/area/shuttle/mining) +/turf/open/space/basic, +/area/space) "bJd" = ( /obj/machinery/door/airlock/mining/glass{ cyclelinkeddir = 8; @@ -35378,7 +34606,7 @@ /turf/open/floor/plasteel, /area/storage/tech) "bJi" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/storage/tech) "bJj" = ( @@ -35687,13 +34915,8 @@ /turf/open/floor/plasteel, /area/science/misc_lab) "bJP" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/soap/nanotrasen, -/turf/open/floor/plating, +/obj/machinery/vending/boozeomat, +/turf/open/floor/plasteel/bar, /area/maintenance/port/aft) "bJQ" = ( /obj/effect/spawner/structure/window/reinforced, @@ -35862,8 +35085,8 @@ /turf/open/floor/plasteel, /area/quartermaster/miningdock) "bKk" = ( -/obj/item/ore/silver, -/obj/item/ore/silver, +/obj/item/stack/ore/silver, +/obj/item/stack/ore/silver, /obj/effect/turf_decal/stripes/line{ dir = 10 }, @@ -35876,12 +35099,7 @@ }, /area/quartermaster/miningdock) "bKm" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK" - }, +/obj/structure/sign/warning/vacuum/external, /turf/closed/wall, /area/quartermaster/miningdock) "bKn" = ( @@ -36035,7 +35253,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_y = -32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -36311,7 +35529,7 @@ /turf/open/floor/plasteel/white, /area/medical/virology) "bLe" = ( -/obj/structure/sign/biohazard, +/obj/structure/sign/warning/biohazard, /turf/closed/wall, /area/science/xenobiology) "bLf" = ( @@ -36328,24 +35546,23 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, +/obj/structure/cable{ + icon_state = "2-4" + }, /turf/open/floor/plating, /area/maintenance/port/aft) "bLh" = ( -/obj/structure/sign/fire, +/obj/structure/sign/warning/fire, /turf/closed/wall, /area/science/research) "bLi" = ( -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = -32 }, /turf/open/floor/plasteel/white, /area/science/mixing) "bLj" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = -32 }, /turf/open/floor/plating, @@ -36415,14 +35632,6 @@ initial_gas_mix = "o2=0.01;n2=0.01" }, /area/science/test_area) -"bLs" = ( -/obj/structure/ore_box, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/mining) -"bLt" = ( -/obj/structure/shuttle/engine/heater, -/turf/open/floor/plating, -/area/shuttle/mining) "bLu" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance, @@ -36492,6 +35701,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/open/floor/plating, /area/construction) "bLD" = ( @@ -36803,11 +36015,7 @@ /turf/open/floor/plating, /area/science/research) "bMt" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /turf/open/floor/engine/vacuum, @@ -36911,14 +36119,6 @@ }, /turf/open/floor/plating/airless, /area/science/test_area) -"bMF" = ( -/obj/structure/shuttle/engine/propulsion/burst, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plating/airless, -/area/shuttle/mining) "bMG" = ( /obj/structure/cable{ icon_state = "1-2" @@ -37087,7 +36287,7 @@ /turf/open/floor/plasteel, /area/science/misc_lab) "bNf" = ( -/obj/structure/sign/biohazard, +/obj/structure/sign/warning/biohazard, /turf/closed/wall, /area/medical/virology) "bNg" = ( @@ -37098,6 +36298,9 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable{ + icon_state = "1-8" + }, /turf/open/floor/plating, /area/maintenance/port/aft) "bNh" = ( @@ -37691,7 +36894,7 @@ /turf/open/floor/engine/vacuum, /area/science/mixing) "bOF" = ( -/obj/structure/sign/fire{ +/obj/structure/sign/warning/fire{ pixel_y = -32 }, /obj/machinery/atmospherics/components/binary/pump{ @@ -37771,7 +36974,6 @@ /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "kanyewest"; - layer = 2.9; name = "privacy shutters" }, /turf/open/floor/plating, @@ -37910,6 +37112,7 @@ /turf/open/floor/plating, /area/engine/atmos) "bPb" = ( +/obj/machinery/door/firedoor, /obj/machinery/door/airlock/research/glass{ name = "Circuitry Lab"; req_access_txt = "47" @@ -37923,7 +37126,6 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/door/firedoor, /turf/open/floor/plasteel/white, /area/science/circuit) "bPc" = ( @@ -38029,7 +37231,7 @@ /obj/machinery/shower{ dir = 4 }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = -32 }, /obj/effect/turf_decal/stripes/line{ @@ -38088,7 +37290,7 @@ /area/medical/virology) "bPx" = ( /obj/machinery/disposal/bin, -/obj/structure/sign/deathsposal{ +/obj/structure/sign/warning/deathsposal{ pixel_y = -32 }, /obj/structure/disposalpipe/trunk{ @@ -38315,9 +37517,8 @@ /turf/open/floor/plasteel, /area/tcommsat/computer) "bPR" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, +/obj/effect/decal/cleanable/robot_debris/old, +/turf/open/floor/wood, /area/maintenance/port/aft) "bPS" = ( /turf/open/floor/wood, @@ -38332,7 +37533,13 @@ /turf/open/floor/plating, /area/maintenance/port/aft) "bPV" = ( -/obj/effect/decal/cleanable/blood/old, +/obj/machinery/door/airlock/maintenance{ + name = "Maint Bar Access"; + req_access_txt = "12" + }, +/obj/structure/barricade/wooden{ + name = "wooden barricade (CLOSED)" + }, /turf/open/floor/plating, /area/maintenance/port/aft) "bPW" = ( @@ -38419,8 +37626,7 @@ "bQi" = ( /obj/machinery/door/poddoor/preopen{ id = "atmos"; - layer = 2.9; - name = "atmos blast door" + name = "Atmospherics Blast Door" }, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -38735,7 +37941,6 @@ /area/science/misc_lab) "bQY" = ( /obj/structure/table/reinforced, -/obj/item/device/integrated_circuit_printer/upgraded, /obj/machinery/computer/security/telescreen{ desc = "Used for watching the RD's goons from the safety of his office."; dir = 2; @@ -38743,6 +37948,7 @@ network = list("RD"); pixel_y = 28 }, +/obj/item/device/integrated_circuit_printer, /turf/open/floor/plasteel/white, /area/science/circuit) "bQZ" = ( @@ -38764,11 +37970,11 @@ /turf/open/floor/plasteel/white, /area/science/circuit) "bRc" = ( -/obj/machinery/door/airlock{ - id_tag = "MaintDorm1"; - name = "Maintenance Dorm 1" +/obj/structure/table/wood, +/obj/item/soap/nanotrasen, +/turf/open/floor/wood{ + icon_state = "wood-broken7" }, -/turf/open/floor/wood, /area/maintenance/port/aft) "bRd" = ( /obj/structure/table, @@ -38904,8 +38110,7 @@ }, /obj/machinery/door/poddoor/preopen{ id = "atmos"; - layer = 2.9; - name = "atmos blast door" + name = "Atmospherics Blast Door" }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, @@ -39265,28 +38470,12 @@ /turf/open/floor/wood, /area/maintenance/port/aft) "bSo" = ( -/obj/machinery/button/door{ - id = "MaintDorm1"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - req_access_txt = "0"; - specialfunctions = 4 - }, +/obj/structure/chair/stool, /turf/open/floor/wood, /area/maintenance/port/aft) "bSp" = ( -/obj/machinery/button/door{ - id = "MaintDorm2"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - req_access_txt = "0"; - specialfunctions = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/obj/structure/grille/broken, +/turf/open/floor/plating, /area/maintenance/port/aft) "bSq" = ( /obj/structure/rack, @@ -39311,17 +38500,14 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/tcommsat/computer) -"bSu" = ( -/obj/item/stack/cable_coil{ - amount = 5 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) "bSv" = ( /obj/machinery/camera{ c_tag = "Construction Area"; dir = 1 }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, /turf/open/floor/plating, /area/construction) "bSw" = ( @@ -39378,13 +38564,12 @@ /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "atmos"; - layer = 2.9; - name = "atmos blast door" + name = "Atmospherics Blast Door" }, /turf/open/floor/plating, /area/engine/atmos) "bSD" = ( -/obj/structure/sign/atmosplaque{ +/obj/structure/sign/plaques/atmos{ pixel_y = -32 }, /obj/structure/table, @@ -39581,10 +38766,6 @@ /obj/machinery/vending/medical, /turf/open/floor/plasteel/white, /area/medical/virology) -"bSZ" = ( -/obj/effect/landmark/revenantspawn, -/turf/open/floor/engine, -/area/science/xenobiology) "bTa" = ( /obj/machinery/door/window/northleft{ dir = 4; @@ -39761,10 +38942,6 @@ /obj/item/pen, /turf/open/floor/plasteel/white, /area/science/circuit) -"bTq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/science/misc_lab) "bTr" = ( /obj/structure/cable{ icon_state = "1-2" @@ -39779,31 +38956,33 @@ }, /area/maintenance/port/aft) "bTt" = ( -/obj/structure/closet/secure_closet/personal, /obj/machinery/atmospherics/pipe/simple/general/hidden{ dir = 4 }, -/turf/open/floor/wood, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, /area/maintenance/port/aft) "bTu" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden{ +/obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, -/turf/closed/wall, +/turf/open/floor/wood, /area/maintenance/port/aft) "bTv" = ( -/obj/structure/bed, -/obj/item/bedsheet, /obj/machinery/atmospherics/pipe/simple/general/hidden{ dir = 4 }, -/turf/open/floor/wood, +/turf/open/floor/plating, /area/maintenance/port/aft) "bTw" = ( -/obj/machinery/light/small, -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/manifold/general/hidden, -/turf/open/floor/wood, +/obj/machinery/door/airlock/maintenance/abandoned{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 4 + }, +/turf/open/floor/plating, /area/maintenance/port/aft) "bTx" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ @@ -40186,15 +39365,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bUt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) "bUu" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -40249,24 +39419,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bUA" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Construction Area APC"; - areastring = "/area/construction"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) "bUB" = ( /obj/machinery/power/apc{ dir = 2; @@ -40535,11 +39687,7 @@ }, /area/hallway/primary/aft) "bVi" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, +/obj/structure/sign/warning/electricshock, /turf/closed/wall, /area/science/xenobiology) "bVj" = ( @@ -40689,7 +39837,7 @@ /obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/structure/sign/deathsposal{ +/obj/structure/sign/warning/deathsposal{ pixel_y = 32 }, /turf/open/floor/plating, @@ -40770,7 +39918,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall, /area/engine/atmos) "bVT" = ( @@ -40899,7 +40047,6 @@ "bWk" = ( /obj/structure/bed, /obj/item/bedsheet, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/white, /area/medical/virology) "bWl" = ( @@ -41113,7 +40260,7 @@ }, /obj/machinery/door/poddoor/preopen{ id = "atmos"; - name = "atmos blast door" + name = "Atmospherics Blast Door" }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, @@ -41131,7 +40278,7 @@ }, /obj/machinery/door/poddoor/preopen{ id = "atmos"; - name = "atmos blast door" + name = "Atmospherics Blast Door" }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, @@ -41268,7 +40415,6 @@ /turf/open/floor/plasteel/white, /area/medical/virology) "bXe" = ( -/obj/effect/landmark/revenantspawn, /mob/living/simple_animal/slime, /turf/open/floor/engine, /area/science/xenobiology) @@ -41532,7 +40678,7 @@ /turf/closed/wall/r_wall, /area/engine/atmos) "bXL" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/engine/atmos) "bXM" = ( @@ -41660,7 +40806,7 @@ /area/engine/break_room) "bYc" = ( /obj/machinery/disposal/bin, -/obj/structure/sign/deathsposal{ +/obj/structure/sign/warning/deathsposal{ pixel_y = -32 }, /obj/structure/disposalpipe/trunk{ @@ -41790,7 +40936,7 @@ /turf/open/floor/plasteel/white, /area/science/misc_lab) "bYp" = ( -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = -32 }, /turf/open/floor/plasteel/yellow/side{ @@ -41821,11 +40967,7 @@ /turf/open/floor/plating, /area/maintenance/port/aft) "bYu" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_x = -32 }, /turf/open/floor/plating, @@ -41960,7 +41102,7 @@ /turf/open/floor/plasteel, /area/engine/atmos) "bYR" = ( -/obj/structure/sign/nosmoking_2, +/obj/structure/sign/warning/nosmoking, /turf/closed/wall, /area/engine/atmos) "bYS" = ( @@ -42452,16 +41594,6 @@ }, /turf/open/floor/plasteel, /area/science/misc_lab) -"cab" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) "cac" = ( /obj/structure/chair/stool, /turf/open/floor/plating, @@ -42994,7 +42126,7 @@ /turf/open/floor/plating, /area/tcommsat/computer) "cbn" = ( -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ desc = "A warning sign which reads 'SERVER ROOM'."; name = "SERVER ROOM" }, @@ -43052,7 +42184,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/aft) "cbs" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/engine/engineering) @@ -43314,16 +42446,6 @@ }, /turf/open/floor/plasteel, /area/science/misc_lab) -"cbX" = ( -/obj/machinery/camera{ - c_tag = "Testing Lab South"; - dir = 8; - network = list("SS13","RD"); - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/science/misc_lab) "cbY" = ( /obj/structure/table/reinforced, /obj/item/device/multitool, @@ -43339,7 +42461,6 @@ /area/science/circuit) "cbZ" = ( /obj/structure/table/reinforced, -/obj/item/device/integrated_circuit_printer/upgraded, /obj/machinery/computer/security/telescreen{ desc = "Used for watching the RD's goons from the safety of his office."; dir = 1; @@ -43347,6 +42468,7 @@ network = list("RD"); pixel_y = -28 }, +/obj/item/device/integrated_circuit_printer, /turf/open/floor/plasteel/white, /area/science/circuit) "cca" = ( @@ -43395,6 +42517,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/open/floor/plating, /area/maintenance/port/aft) "ccf" = ( @@ -43402,7 +42527,7 @@ /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) "ccg" = ( -/obj/machinery/message_server, +/obj/machinery/telecomms/message_server, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) "cch" = ( @@ -43582,7 +42707,7 @@ /turf/open/floor/engine/co2, /area/engine/atmos) "ccE" = ( -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = 28 }, /turf/open/floor/plating, @@ -43844,7 +42969,6 @@ /turf/open/floor/plasteel, /area/engine/engineering) "cdp" = ( -/obj/effect/landmark/lightsout, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 @@ -44136,7 +43260,7 @@ /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) "cec" = ( -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = -32 }, /obj/machinery/light, @@ -44227,7 +43351,7 @@ /turf/open/floor/plasteel, /area/crew_quarters/heads/chief) "cep" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/r_wall, /area/engine/engineering) @@ -44329,7 +43453,7 @@ /turf/open/floor/plating, /area/maintenance/aft) "ceE" = ( -/obj/structure/sign/fire{ +/obj/structure/sign/warning/fire{ pixel_y = -32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -44354,7 +43478,7 @@ /turf/closed/wall, /area/maintenance/aft) "ceI" = ( -/obj/structure/sign/biohazard, +/obj/structure/sign/warning/biohazard, /turf/closed/wall, /area/maintenance/aft) "ceJ" = ( @@ -44425,11 +43549,7 @@ /turf/open/floor/plating, /area/maintenance/starboard/aft) "ceU" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = -32 }, /turf/open/floor/plating, @@ -44506,14 +43626,11 @@ }, /area/engine/engineering) "cfe" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; +/obj/structure/sign/warning/radiation/rad_area{ pixel_x = -32 }, /obj/structure/disposalpipe/segment, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = 32 }, /obj/structure/cable{ @@ -44727,7 +43844,7 @@ /turf/open/floor/plasteel, /area/engine/engineering) "cfK" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall, /area/engine/engineering) "cfL" = ( @@ -44848,7 +43965,7 @@ /area/maintenance/disposal/incinerator) "cgb" = ( /obj/machinery/disposal/bin, -/obj/structure/sign/deathsposal{ +/obj/structure/sign/warning/deathsposal{ pixel_y = 32 }, /obj/structure/disposalpipe/trunk, @@ -44913,7 +44030,7 @@ /area/maintenance/starboard/aft) "cgk" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/biohazard, +/obj/structure/sign/warning/biohazard, /turf/open/floor/plating, /area/science/xenobiology) "cgl" = ( @@ -44984,7 +44101,7 @@ /turf/open/floor/plating, /area/maintenance/starboard/aft) "cgt" = ( -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_y = 32 }, /obj/effect/spawner/lootdrop/maintenance, @@ -45039,11 +44156,7 @@ /turf/open/space, /area/solar/port/aft) "cgA" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_x = -32 }, /turf/open/floor/plating, @@ -45079,11 +44192,7 @@ /turf/open/floor/plating, /area/maintenance/port/aft) "cgE" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, +/obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/maintenance/solars/port/aft) "cgF" = ( @@ -45837,7 +44946,7 @@ /turf/closed/wall/r_wall, /area/engine/atmos) "ciy" = ( -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = -28 }, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ @@ -45878,7 +44987,7 @@ name = "output gas connector port" }, /obj/machinery/portable_atmospherics/canister, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = 28 }, /turf/open/floor/plasteel/floorgrime, @@ -46139,7 +45248,7 @@ }, /area/crew_quarters/heads/chief) "cjk" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -46166,9 +45275,6 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"cjn" = ( -/turf/closed/wall, -/area/maintenance/bar) "cjo" = ( /obj/structure/closet/toolcloset, /turf/open/floor/plasteel, @@ -46286,11 +45392,7 @@ /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) "cjG" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, +/obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/maintenance/solars/starboard/aft) "cjH" = ( @@ -47031,11 +46133,7 @@ /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) "clA" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /turf/open/floor/plating, @@ -47307,11 +46405,7 @@ /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) "cmx" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = -32 }, /turf/open/floor/plating, @@ -47395,7 +46489,7 @@ }, /area/engine/engineering) "cmN" = ( -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = 32 }, /obj/structure/cable{ @@ -47442,7 +46536,7 @@ /obj/machinery/light/small{ dir = 8 }, -/obj/structure/sign/fire{ +/obj/structure/sign/warning/fire{ pixel_x = -32 }, /turf/open/floor/engine, @@ -47452,7 +46546,7 @@ dir = 1; on = 1 }, -/obj/structure/sign/fire{ +/obj/structure/sign/warning/fire{ pixel_x = 32 }, /obj/machinery/doorButtons/access_button{ @@ -47556,16 +46650,18 @@ /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, /area/engine/engine_smes) "cno" = ( /obj/structure/cable{ icon_state = "0-8" }, /obj/machinery/power/smes/engineering, -/obj/effect/turf_decal/bot_white/left, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, /area/engine/engine_smes) "cnp" = ( /obj/structure/cable{ @@ -47587,8 +46683,9 @@ icon_state = "0-4" }, /obj/machinery/power/smes/engineering, -/obj/effect/turf_decal/bot_white/right, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel/vault{ + dir = 1 + }, /area/engine/engine_smes) "cnr" = ( /obj/machinery/door/window/southleft{ @@ -47764,13 +46861,12 @@ /area/engine/engine_smes) "cnO" = ( /obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, /obj/structure/cable{ icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" - }, /turf/open/floor/plasteel/dark, /area/engine/engine_smes) "cnP" = ( @@ -47781,9 +46877,6 @@ /obj/structure/cable/yellow{ icon_state = "0-8" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, /turf/open/floor/plasteel/dark, /area/engine/engine_smes) "cnQ" = ( @@ -47832,10 +46925,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; +/obj/structure/sign/warning/electricshock{ pixel_x = -32 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -47861,7 +46951,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = 32 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -47912,6 +47002,13 @@ }, /turf/open/floor/engine, /area/engine/engineering) +"col" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/wood, +/area/maintenance/bar) "cop" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 1; @@ -47924,11 +47021,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/siphon{ dir = 1 }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = -32 }, /turf/open/floor/engine/vacuum, @@ -47987,10 +47080,10 @@ /turf/open/floor/plasteel, /area/engine/engine_smes) "cox" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ +/obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, @@ -48006,9 +47099,6 @@ /obj/effect/turf_decal/stripes/line{ dir = 5 }, -/obj/structure/cable{ - icon_state = "1-2" - }, /turf/open/floor/plasteel, /area/engine/engine_smes) "coz" = ( @@ -48021,7 +47111,6 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/engine_smes) "coA" = ( @@ -48222,7 +47311,6 @@ /turf/open/floor/plasteel, /area/engine/engine_smes) "cpl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/engine/engine_smes) "cpm" = ( @@ -48236,18 +47324,11 @@ /obj/effect/turf_decal/stripes/line{ dir = 6 }, -/obj/structure/cable{ - icon_state = "1-8" - }, /turf/open/floor/plasteel, /area/engine/engine_smes) "cpn" = ( /obj/machinery/light, /obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/engine_smes) "cpo" = ( @@ -48274,10 +47355,7 @@ /turf/open/floor/plasteel, /area/engine/engine_smes) "cpq" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; +/obj/structure/sign/warning/electricshock{ pixel_x = -32 }, /obj/machinery/computer/rdconsole/production{ @@ -48388,7 +47466,8 @@ id = "pod4"; name = "escape pod 4"; port_direction = 2; - preferred_direction = 4 + preferred_direction = 4; + timid = 0 }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/pod_4) @@ -48457,6 +47536,7 @@ /turf/open/floor/plating, /area/maintenance/port/aft) "cpS" = ( +/obj/structure/cable, /obj/machinery/power/apc{ dir = 2; name = "SMES room APC"; @@ -48466,10 +47546,6 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable, /turf/open/floor/plasteel, /area/engine/engine_smes) "cpT" = ( @@ -48485,8 +47561,12 @@ /turf/open/floor/plasteel, /area/engine/engine_smes) "cpU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, @@ -48650,7 +47730,7 @@ /turf/open/floor/plating, /area/maintenance/port/aft) "cqo" = ( -/obj/structure/sign/pods{ +/obj/structure/sign/warning/pods{ pixel_x = 32 }, /obj/effect/turf_decal/stripes/line{ @@ -48674,7 +47754,8 @@ dir = 8; id = "pod2"; name = "escape pod 2"; - port_direction = 2 + port_direction = 2; + timid = 0 }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/pod_2) @@ -48688,7 +47769,7 @@ /turf/open/floor/plasteel, /area/hallway/secondary/entry) "cqs" = ( -/obj/structure/sign/fire, +/obj/structure/sign/warning/fire, /turf/closed/wall/r_wall, /area/maintenance/disposal/incinerator) "cqt" = ( @@ -48770,7 +47851,7 @@ /turf/open/floor/engine, /area/engine/engineering) "cqD" = ( -/obj/structure/sign/radiation, +/obj/structure/sign/warning/radiation, /turf/closed/wall/r_wall, /area/engine/supermatter) "cqE" = ( @@ -48880,11 +47961,7 @@ /turf/open/floor/plating, /area/engine/engineering) "cqT" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_x = 32 }, /turf/open/floor/plating, @@ -48970,11 +48047,9 @@ /turf/open/floor/plating, /area/maintenance/port/aft) "crn" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/engine/engineering) "cro" = ( /obj/structure/cable{ icon_state = "0-4" @@ -48983,11 +48058,7 @@ /turf/open/floor/plating, /area/engine/engineering) "crp" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, +/obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/engine/engineering) "crq" = ( @@ -49041,10 +48112,6 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"crx" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/escape) "cry" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -49169,22 +48236,10 @@ }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"crN" = ( -/obj/structure/table, -/obj/machinery/recharger, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"crO" = ( -/turf/closed/wall/mineral/titanium/interior, -/area/shuttle/escape) "crP" = ( /obj/machinery/light, /turf/open/floor/plasteel, /area/engine/engineering) -"crQ" = ( -/obj/machinery/computer/emergency_shuttle, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) "crR" = ( /obj/structure/transit_tube, /obj/effect/turf_decal/stripes/line{ @@ -49219,11 +48274,7 @@ /turf/open/floor/plating, /area/engine/engineering) "crX" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_x = 32 }, /obj/structure/closet/emcloset/anchored, @@ -49481,11 +48532,7 @@ /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat_interior) "csX" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /turf/open/floor/plating, @@ -49546,7 +48593,7 @@ /area/ai_monitored/turret_protected/aisat_interior) "cti" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_y = -32 }, /turf/open/floor/plating, @@ -49784,11 +48831,7 @@ }, /area/ai_monitored/turret_protected/aisat_interior) "ctR" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA" - }, +/obj/structure/sign/warning/radiation/rad_area, /turf/closed/wall, /area/engine/engineering) "ctS" = ( @@ -49888,6 +48931,7 @@ icon_state = "control_standby"; name = "Antechamber Turret Control"; pixel_y = -24; + req_access = null; req_access_txt = "65" }, /obj/machinery/light/small, @@ -50124,6 +49168,7 @@ icon_state = "control_standby"; name = "Atmospherics Turret Control"; pixel_x = -27; + req_access = null; req_access_txt = "65" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -50149,6 +49194,7 @@ icon_state = "control_standby"; name = "Service Bay Turret Control"; pixel_x = 27; + req_access = null; req_access_txt = "65" }, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers, @@ -50395,7 +49441,7 @@ /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai) "cvc" = ( -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = -32 }, /obj/machinery/porta_turret/ai{ @@ -50416,7 +49462,7 @@ /obj/machinery/porta_turret/ai{ dir = 4 }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = 32 }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -50439,6 +49485,7 @@ name = "Chamber Hallway Turret Control"; pixel_x = 32; pixel_y = -24; + req_access = null; req_access_txt = "65" }, /turf/open/floor/plasteel/dark, @@ -50541,7 +49588,7 @@ /turf/open/floor/circuit, /area/ai_monitored/turret_protected/aisat/hallway) "cvx" = ( -/obj/effect/landmark/tripai, +/obj/effect/landmark/start/ai/secondary, /obj/item/device/radio/intercom{ anyai = 1; freerange = 1; @@ -50580,7 +49627,7 @@ /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/aisat/hallway) "cvA" = ( -/obj/effect/landmark/tripai, +/obj/effect/landmark/start/ai/secondary, /obj/item/device/radio/intercom{ anyai = 1; freerange = 1; @@ -50684,7 +49731,7 @@ /turf/open/space, /area/space/nearstation) "cvL" = ( -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = 32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -50703,7 +49750,7 @@ /turf/open/floor/circuit, /area/ai_monitored/turret_protected/aisat/hallway) "cvN" = ( -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = -32 }, /obj/structure/cable{ @@ -50834,7 +49881,7 @@ /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/aisat/hallway) "cwe" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai) @@ -51076,22 +50123,6 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"cwF" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"cwG" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/crowbar, -/obj/item/storage/firstaid/fire, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) "cwH" = ( /obj/structure/cable{ icon_state = "1-2" @@ -51101,24 +50132,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"cwI" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) -"cwJ" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"cwK" = ( -/obj/machinery/computer/atmos_alert{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cwL" = ( -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) "cwM" = ( /obj/structure/rack, /obj/item/storage/box/chemimp{ @@ -51131,49 +50144,6 @@ /obj/effect/turf_decal/bot_white, /turf/open/floor/plasteel/dark, /area/ai_monitored/security/armory) -"cwN" = ( -/obj/machinery/computer/security{ - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cwO" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"cwP" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cwQ" = ( -/obj/machinery/button/flasher{ - id = "cockpit_flasher"; - pixel_x = 6; - pixel_y = -24 - }, -/obj/machinery/light, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"cwR" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"cwS" = ( -/obj/machinery/computer/communications{ - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) "cwT" = ( /obj/machinery/camera{ c_tag = "Arrivals Escape Pod 2"; @@ -51196,97 +50166,6 @@ }, /turf/open/space, /area/space/nearstation) -"cwW" = ( -/obj/machinery/status_display, -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) -"cwX" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Emergency Shuttle Cockpit"; - req_access_txt = "19" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"cwY" = ( -/obj/structure/chair, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"cwZ" = ( -/obj/machinery/flasher{ - id = "cockpit_flasher"; - pixel_x = 6; - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cxa" = ( -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cxb" = ( -/obj/structure/table, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/crowbar, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cxc" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cxd" = ( -/obj/machinery/flasher{ - id = "shuttle_flasher"; - pixel_x = -24; - pixel_y = 6 - }, -/obj/machinery/button/flasher{ - id = "shuttle_flasher"; - pixel_x = -24; - pixel_y = -6 - }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"cxe" = ( -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"cxf" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Emergency Shuttle Brig"; - req_access_txt = "2" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"cxg" = ( -/obj/machinery/door/airlock/titanium{ - name = "Emergency Shuttle Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"cxh" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"cxi" = ( -/obj/structure/chair, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cxj" = ( -/obj/structure/table, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) "cxk" = ( /obj/structure/cable{ icon_state = "4-8" @@ -51311,67 +50190,11 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/pod_1) -"cxm" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/escape) "cxn" = ( /obj/structure/lattice, /obj/effect/landmark/carpspawn, /turf/open/space, /area/space/nearstation) -"cxo" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"cxp" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"cxq" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cxr" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cxs" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cxt" = ( -/obj/structure/shuttle/engine/propulsion/left{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/shuttle/transport) -"cxu" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/transport) -"cxw" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/transport) "cxx" = ( /obj/item/storage/pod{ pixel_x = 6; @@ -51386,48 +50209,13 @@ /obj/machinery/light/small, /turf/open/floor/mineral/titanium/blue, /area/shuttle/pod_1) -"cxy" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/shuttle/transport) "cxA" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) -"cxB" = ( -/obj/structure/chair, -/turf/open/floor/pod/dark, -/area/shuttle/transport) -"cxC" = ( -/turf/open/floor/pod/light, -/area/shuttle/transport) -"cxD" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/shuttle/transport) "cxE" = ( -/obj/machinery/door/airlock/titanium, -/obj/docking_port/mobile{ - dir = 8; - dwidth = 2; - height = 13; - id = "ferry"; - name = "ferry shuttle"; - port_direction = 1; - preferred_direction = 4; - roundstart_move = "ferry_away"; - width = 5 - }, /obj/docking_port/stationary{ dir = 8; dwidth = 2; @@ -51437,8 +50225,8 @@ turf_type = /turf/open/space; width = 5 }, -/turf/open/floor/pod/light, -/area/shuttle/transport) +/turf/open/space/basic, +/area/space) "cxF" = ( /obj/machinery/door/airlock/titanium{ name = "Escape Pod Airlock" @@ -51447,7 +50235,8 @@ dir = 8; id = "pod1"; name = "escape pod 1"; - port_direction = 2 + port_direction = 2; + timid = 0 }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/pod_1) @@ -51459,12 +50248,6 @@ }, /turf/open/floor/plating, /area/security/main) -"cxI" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/pod/dark, -/area/shuttle/transport) "cxJ" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 8; @@ -51473,24 +50256,6 @@ }, /turf/open/floor/plating, /area/security/processing) -"cxK" = ( -/obj/machinery/door/airlock/titanium{ - name = "Emergency Shuttle Airlock" - }, -/turf/open/floor/plating, -/area/shuttle/escape) -"cxL" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"cxM" = ( -/obj/machinery/door/airlock/titanium{ - name = "Emergency Shuttle Cargo" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) "cxN" = ( /obj/structure/cable{ icon_state = "1-2" @@ -51503,12 +50268,6 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"cxO" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Emergency Shuttle Infirmary" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) "cxP" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 8; @@ -51516,45 +50275,6 @@ }, /turf/open/floor/plating, /area/security/processing) -"cxQ" = ( -/turf/open/floor/mineral/titanium/yellow, -/area/shuttle/escape) -"cxR" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/mineral/titanium/yellow, -/area/shuttle/escape) -"cxS" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cxT" = ( -/obj/structure/table, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/crowbar, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cxU" = ( -/obj/structure/closet, -/turf/open/floor/mineral/titanium/yellow, -/area/shuttle/escape) -"cxV" = ( -/obj/structure/closet/crate, -/turf/open/floor/mineral/titanium/yellow, -/area/shuttle/escape) "cxW" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 2; @@ -51564,13 +50284,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"cxX" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/shuttle/engine/heater, -/turf/open/floor/plating/airless, -/area/shuttle/escape) "cxY" = ( /obj/machinery/camera{ c_tag = "Arrivals Escape Pod 1"; @@ -51579,10 +50292,6 @@ /obj/machinery/light/small, /turf/open/floor/plating, /area/hallway/secondary/entry) -"cxZ" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/floor/plating/airless, -/area/shuttle/escape) "cya" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 8; @@ -51597,32 +50306,7 @@ }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"cyc" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) "cyd" = ( -/obj/docking_port/mobile{ - callTime = 250; - dheight = 0; - dir = 2; - dwidth = 11; - height = 15; - id = "whiteship"; - launch_status = 0; - movement_force = list("KNOCKDOWN" = 0, "THROW" = 0); - name = "NT Recovery White-Ship"; - port_direction = 8; - preferred_direction = 4; - roundstart_move = "whiteship_away"; - width = 28 - }, -/obj/machinery/door/airlock/titanium{ - name = "recovery shuttle external airlock" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, /obj/docking_port/stationary{ dir = 2; dwidth = 11; @@ -51631,21 +50315,8 @@ name = "SS13: Auxiliary Dock, Station-Port"; width = 35 }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cye" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cyf" = ( -/obj/structure/shuttle/engine/propulsion/left{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/shuttle/abandoned) +/turf/open/space/basic, +/area/space) "cyg" = ( /obj/machinery/door/airlock/command{ cyclelinkeddir = 1; @@ -51663,57 +50334,6 @@ }, /turf/open/floor/plating, /area/hallway/secondary/exit) -"cyi" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cyj" = ( -/obj/structure/closet/crate{ - name = "spare equipment crate" - }, -/obj/item/grenade/chem_grenade/metalfoam, -/obj/item/relic, -/obj/item/device/t_scanner, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"cyk" = ( -/obj/structure/closet/crate/medical{ - name = "medical crate" - }, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/roller{ - pixel_y = 4 - }, -/obj/item/device/healthanalyzer, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) "cyl" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 8; @@ -51723,35 +50343,6 @@ }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"cym" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/shuttle/abandoned) -"cyn" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/stack/rods/fifty, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/wrench, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cyo" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/shuttle/abandoned) "cyp" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 4; @@ -51766,9 +50357,6 @@ }, /turf/open/floor/plating, /area/hallway/secondary/exit) -"cys" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/supply) "cyt" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 1; @@ -51785,29 +50373,6 @@ }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"cyw" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/table, -/obj/item/device/camera, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cyx" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small/built{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cyB" = ( -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/supply) "cyC" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 8; @@ -51832,12 +50397,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cyF" = ( -/obj/structure/shuttle/engine/propulsion/right{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/shuttle/abandoned) "cyG" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 8; @@ -51846,13 +50405,6 @@ }, /turf/open/floor/plating, /area/engine/atmos) -"cyI" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) "cyK" = ( /obj/structure/cable{ icon_state = "4-8" @@ -51883,70 +50435,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/engine/engineering) -"cyN" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/machinery/door/poddoor{ - id = "QMLoaddoor2"; - name = "supply dock loading door" - }, -/turf/open/floor/plating, -/area/shuttle/supply) -"cyO" = ( -/obj/structure/table, -/obj/item/folder/blue, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/device/gps{ - gpstag = "NTREC1"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cyQ" = ( -/obj/machinery/door/airlock/titanium{ - name = "Supply Shuttle Airlock"; - req_access_txt = "31" - }, -/turf/open/floor/plating, -/area/shuttle/supply) -"cyR" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/abandoned) -"cyS" = ( -/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 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/supply) "cyT" = ( -/obj/machinery/door/airlock/titanium{ - name = "Supply Shuttle Airlock"; - req_access_txt = "31" - }, -/obj/docking_port/mobile/supply{ - dwidth = 5; - width = 12 - }, /obj/docking_port/stationary{ dir = 8; dwidth = 5; @@ -51955,8 +50444,8 @@ name = "Cargo Bay"; width = 12 }, -/turf/open/floor/plating, -/area/shuttle/supply) +/turf/open/space/basic, +/area/space) "cyU" = ( /obj/structure/cable{ icon_state = "1-2" @@ -51969,20 +50458,6 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) -"cyZ" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/obj/machinery/door/poddoor{ - id = "QMLoaddoor"; - name = "supply dock loading door" - }, -/turf/open/floor/plating, -/area/shuttle/supply) -"czf" = ( -/turf/closed/wall/mineral/titanium/interior, -/area/shuttle/supply) "czg" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 8; @@ -52002,49 +50477,6 @@ }, /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat_interior) -"czm" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small/built{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"czp" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/shuttle/engine/heater, -/turf/open/floor/plating/airless, -/area/shuttle/supply) -"czr" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/storage/box/monkeycubes{ - pixel_y = 4 - }, -/obj/item/storage/fancy/egg_box{ - pixel_y = 5 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"czs" = ( -/obj/structure/shuttle/engine/propulsion/burst/left, -/turf/open/floor/plating/airless, -/area/shuttle/supply) -"czt" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/floor/plating/airless, -/area/shuttle/supply) -"czu" = ( -/obj/structure/shuttle/engine/propulsion/burst/right, -/turf/open/floor/plating/airless, -/area/shuttle/supply) "czE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 @@ -52495,13 +50927,11 @@ /turf/open/floor/plating, /area/maintenance/fore/secondary) "cAP" = ( -/obj/structure/sign/fire, +/obj/structure/sign/warning/fire, /turf/closed/wall/r_wall, /area/engine/supermatter) "cAQ" = ( -/obj/structure/chair{ - dir = 8 - }, +/obj/structure/chair, /turf/open/floor/plating, /area/maintenance/port/aft) "cAR" = ( @@ -52993,11 +51423,6 @@ }, /turf/open/floor/plating, /area/construction) -"cCg" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/aft) "cCh" = ( /obj/item/bedsheet/red, /mob/living/simple_animal/bot/secbot/beepsky{ @@ -53057,8 +51482,8 @@ /area/quartermaster/storage) "cCp" = ( /obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, +/obj/item/reagent_containers/blood, +/obj/item/reagent_containers/blood, /obj/item/reagent_containers/blood/AMinus, /obj/item/reagent_containers/blood/BMinus{ pixel_x = -4; @@ -53098,34 +51523,6 @@ }, /turf/open/floor/plating, /area/shuttle/auxillary_base) -"cCu" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/pod/dark, -/area/shuttle/transport) -"cCw" = ( -/obj/machinery/door/airlock/titanium, -/turf/open/floor/pod/light, -/area/shuttle/transport) -"cCx" = ( -/obj/machinery/computer/shuttle/ferry/request{ - dir = 8 - }, -/turf/open/floor/pod/dark, -/area/shuttle/transport) -"cCy" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/plating/airless, -/area/shuttle/transport) -"cCz" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/pod/light, -/area/shuttle/transport) "cCB" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 10 @@ -53914,7 +52311,7 @@ /turf/open/floor/engine, /area/engine/engineering) "cFw" = ( -/obj/structure/sign/electricshock, +/obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/engine/supermatter) "cFy" = ( @@ -54613,20 +53010,17 @@ }, /area/science/robotics/lab) "cIg" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 4 - }, -/obj/docking_port/mobile/arrivals, /obj/docking_port/stationary{ dir = 8; dwidth = 3; height = 15; id = "arrivals_stationary"; name = "arrivals"; + roundstart_template = /datum/map_template/shuttle/arrival/box; width = 7 }, -/turf/open/floor/plating/airless, -/area/shuttle/arrival) +/turf/open/space/basic, +/area/space) "cIh" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 1; @@ -54634,170 +53028,10 @@ }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"cLI" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/labor) -"cLJ" = ( -/obj/structure/chair, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"cLK" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"cLL" = ( -/obj/machinery/light, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"cLM" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cLN" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cLO" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"cLP" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/pod/light, -/area/shuttle/transport) -"cLQ" = ( -/obj/machinery/light/small, -/turf/open/floor/pod/light, -/area/shuttle/transport) -"cLR" = ( -/obj/machinery/light, -/turf/open/floor/pod/light, -/area/shuttle/transport) -"cLS" = ( -/obj/machinery/light/small, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"cLT" = ( -/obj/machinery/light, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"cLU" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/mineral/titanium/yellow, -/area/shuttle/escape) -"cLV" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/yellow, -/area/shuttle/escape) -"cLW" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cLX" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/supply) -"cLY" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cLZ" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -1; - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cMa" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cMb" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/supply) -"cMc" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cMf" = ( -/obj/machinery/door/airlock/titanium{ - name = "medbay"; - welded = 0 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cMl" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/mining) "cMm" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, /area/engine/engineering) -"cMB" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/open/floor/plating, -/area/shuttle/arrival) "cMC" = ( /obj/machinery/computer/security/telescreen{ desc = "Used for watching the Engine."; @@ -55159,7 +53393,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = 32 }, /obj/machinery/camera{ @@ -55285,20 +53519,6 @@ dir = 1 }, /area/engine/engineering) -"cTg" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/mining) -"cTi" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/mining) -"cTo" = ( -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/mining) -"cTx" = ( -/obj/structure/closet/crate, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/mining) "cTD" = ( /obj/structure/cable{ icon_state = "1-2" @@ -55419,1491 +53639,179 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"kSb" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"Qll" = ( -/obj/machinery/door/airlock/titanium{ - name = "recovery shuttle external airlock" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"Qlm" = ( -/obj/structure/toilet{ - pixel_y = 9 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/greenglow{ - desc = "Looks like something's sprung a leak" - }, -/obj/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qln" = ( -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qlo" = ( -/obj/structure/closet/wardrobe/mixed, -/obj/item/clothing/under/rank/centcom_officer{ - desc = "A badge on the arm indicates that it's meant to be worn by CentCom recovery teams. This one seems dusty and clearly hasn't been cleaned in some time."; - name = "\improper dusty old CentCom jumpsuit" - }, -/obj/item/clothing/under/rank/centcom_commander{ - desc = "A badge on the arm indicates that it's meant to be worn by CentCom recovery teams. This one seems dusty and clearly hasn't been cleaned in some time."; - name = "\improper dusty old CentCom jumpsuit" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qlp" = ( -/obj/structure/table, -/obj/item/storage/pill_bottle/dice{ - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qlq" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qlr" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qlt" = ( -/obj/structure/tank_dispenser/oxygen{ - layer = 2.7; - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qlu" = ( -/obj/structure/sign/vacuum{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"Qlv" = ( -/obj/item/storage/box/lights/mixed, -/obj/item/cigbutt, -/obj/structure/closet/crate{ - icon_state = "crateopen"; - name = "spare equipment crate"; - opened = 1 - }, -/obj/item/tank/internals/oxygen/red, -/obj/item/tank/internals/air, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"Qlw" = ( -/obj/structure/closet/crate{ - name = "emergency supplies crate" - }, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/toolbox/emergency, -/obj/item/device/flashlight/flare{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/flashlight/flare{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/crowbar, -/obj/item/wrench, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/extinguisher, -/obj/item/extinguisher, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"Qlx" = ( -/obj/machinery/door/airlock/titanium{ - name = "bathroom" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"Qly" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/remains/human{ - desc = "They look like human remains, and have clearly been gnawed at." - }, -/obj/item/gun/energy/laser/retro, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"Qlz" = ( -/obj/structure/bed, -/obj/item/bedsheet/centcom, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small/built{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QlA" = ( -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QlB" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"QlD" = ( -/obj/machinery/door/airlock/titanium{ - name = "E.V.A. equipment" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"QlF" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/remains/human{ - desc = "They look like human remains, and have clearly been gnawed at." - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"QlG" = ( -/obj/machinery/door/airlock/titanium{ - name = "cargo bay" - }, -/obj/effect/turf_decal/delivery{ +"cVb" = ( +/turf/closed/wall, +/area/hallway/secondary/service) +"daP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/shuttle/abandoned) -"QlH" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/delivery{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/shuttle/abandoned) -"QlI" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/delivery{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/shuttle/abandoned) -"QlK" = ( -/obj/effect/decal/cleanable/robot_debris/old, -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/delivery{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/shuttle/abandoned) -"QlL" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/door/window/westright{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/soap/nanotrasen, -/obj/effect/decal/remains/human{ - desc = "They look like human remains, and have clearly been gnawed at." - }, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QlM" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small/built{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"QlN" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"QlO" = ( -/obj/structure/bed, -/obj/item/bedsheet/centcom, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QlP" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/item/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/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QlR" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, /obj/machinery/light/small{ dir = 4 }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QlS" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"QlU" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"QlV" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"QlW" = ( -/obj/structure/sign/restroom, -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"QlX" = ( -/obj/machinery/door/airlock/titanium{ - name = "bathroom" - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"QlY" = ( -/obj/machinery/door/airlock/titanium{ - name = "dormitory" - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"QlZ" = ( -/obj/machinery/vending/boozeomat{ - icon_deny = "smartfridge"; - icon_state = "smartfridge"; - req_access_txt = "0"; - use_power = 0 - }, -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"Qmb" = ( -/obj/machinery/door/airlock/titanium{ - name = "recovery shuttle interior airlock" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"Qmd" = ( -/obj/structure/sign/cargo, -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"Qme" = ( -/obj/machinery/door/airlock/titanium{ - name = "cargo bay" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/delivery{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/shuttle/abandoned) -"Qmf" = ( -/obj/machinery/porta_turret/centcom_shuttle/weak{ - dir = 4 - }, -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"Qmg" = ( -/obj/machinery/vending/cigarette{ - use_power = 0 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qmi" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"Qmj" = ( -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/built{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"Qmk" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"Qmn" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/built{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"Qmo" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/folder/blue, -/obj/item/pen, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qmp" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/storage/photo_album, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qmq" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/sign/vacuum{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small/built{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"Qmr" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qmt" = ( -/obj/structure/chair, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qmw" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QmC" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/turretid{ - icon_state = "control_kill"; - lethal = 1; - locked = 0; - pixel_x = -28; - req_access = null - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QmD" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"QmF" = ( -/obj/machinery/door/airlock/titanium{ - name = "recovery shuttle interior airlock" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"QmG" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QmH" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QmI" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QmJ" = ( -/obj/structure/table, -/obj/item/storage/fancy/donut_box, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QmK" = ( -/obj/structure/chair{ +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"ddY" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/bar) +"deX" = ( +/obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QmL" = ( -/obj/machinery/door/airlock/titanium{ - name = "living quarters" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"QmM" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/roller{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/roller{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/table, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QmN" = ( -/obj/item/clothing/suit/bio_suit, -/obj/item/clothing/suit/bio_suit, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/head/bio_hood, -/obj/item/clothing/head/bio_hood, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/structure/table, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QmO" = ( -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/remains/human{ - desc = "They look like human remains, and have clearly been gnawed at." - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QmP" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/suit/armor/vest, -/obj/item/clothing/suit/armor/vest, -/obj/structure/table, -/obj/item/clothing/head/helmet/swat/nanotrasen, -/obj/item/clothing/head/helmet/swat/nanotrasen, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QmQ" = ( -/obj/item/storage/toolbox/emergency{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/toolbox/emergency{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/table, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QmR" = ( -/obj/machinery/door/airlock/titanium{ - name = "bridge" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"QmS" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QmT" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/computer/shuttle/white_ship{ - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QmU" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/light_construct/small{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"QmV" = ( -/obj/machinery/vending/cola/random, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qnd" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/chair/office/light, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"Qne" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/clothing/head/centhat{ - desc = "There's a gouge through the top where something has clawed clean through it. Whoever was wearing it probably doesn't need a hat any more."; - name = "\improper damaged CentCom hat" - }, -/obj/effect/decal/remains/human{ - desc = "They look like human remains, and have clearly been gnawed at." - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"Qnf" = ( -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/structure/table, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qng" = ( -/obj/machinery/vending/snack/random, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qnh" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/built{ - dir = 2 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"Qni" = ( -/obj/structure/sign/science{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"Qnj" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"Qnk" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/table, -/obj/item/device/megaphone, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qnl" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/computer/camera_advanced/shuttle_docker/whiteship{ - station_lock_override = 1; - view_range = 15; - x_offset = -3; - y_offset = -7 - }, -/obj/machinery/light/built{ - dir = 2 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qnm" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qnn" = ( -/obj/structure/table, -/obj/item/device/radio/off{ - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qno" = ( -/obj/structure/sign/botany, -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"Qnp" = ( -/obj/machinery/door/airlock/titanium{ - name = "hydroponics" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"Qnq" = ( -/obj/machinery/door/airlock/titanium{ - name = "kitchen" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"Qnr" = ( -/obj/machinery/door/airlock/titanium{ - name = "laboratory" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"Qns" = ( -/obj/structure/sign/bluecross_2, -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"Qnt" = ( -/obj/item/storage/bag/plants/portaseeder, -/obj/structure/table, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 13; - pixel_y = 5 - }, -/obj/item/reagent_containers/glass/bottle/nutrient/ez, -/obj/item/reagent_containers/glass/bottle/nutrient/ez, -/obj/item/reagent_containers/glass/bottle/nutrient/ez, -/obj/item/reagent_containers/glass/bottle/nutrient/rh{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qnu" = ( -/obj/machinery/biogenerator{ - idle_power_usage = 0; - use_power = 0 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qnv" = ( -/obj/machinery/vending/hydroseeds{ - use_power = 0 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small/built{ - dir = 1 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qnw" = ( -/obj/machinery/processor, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small/built{ - dir = 1 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qnx" = ( -/obj/structure/kitchenspike, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qny" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/storage/box/donkpockets, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qnz" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QnA" = ( -/obj/machinery/sleeper{ - dir = 4; - use_power = 0 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QnB" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/blood/empty{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/random, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/xenoblood, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QnC" = ( -/obj/structure/table/optable, -/obj/item/surgical_drapes, -/obj/item/storage/firstaid/regular, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small/built{ - dir = 1 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QnD" = ( -/obj/structure/table, -/obj/item/wrench, -/obj/item/crowbar, -/obj/item/clothing/suit/apron, -/obj/item/shovel/spade, -/obj/item/cultivator, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/wirecutters, -/obj/item/device/plant_analyzer, -/obj/item/reagent_containers/glass/bucket, -/obj/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QnE" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"QnF" = ( -/obj/machinery/smartfridge{ - use_power = 0 - }, -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"QnG" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"QnH" = ( -/obj/effect/decal/cleanable/egg_smudge, -/obj/effect/decal/cleanable/flour, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"QnI" = ( -/obj/structure/table, -/obj/item/kitchen/rollingpin, -/obj/item/kitchen/knife, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small/built{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QnJ" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QnK" = ( -/obj/structure/chair/office/light, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"QnL" = ( -/obj/machinery/vending/wallmed{ - name = "Emergency NanoMed"; - pixel_x = -28; - req_access_txt = "0"; - use_power = 0 - }, -/obj/machinery/iv_drip, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"QnM" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/xenoblood, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"QnN" = ( -/obj/effect/decal/cleanable/xenoblood, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/remains/xeno{ - desc = "A pile of remains that look vaguely humanoid. The skull is abnormally elongated, and there are burns through some of the other bones." - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"QnO" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/xenoblood, -/obj/effect/decal/cleanable/xenoblood/xgibs/limb, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"QnP" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QnR" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/seeds/glowshroom, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QnT" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder{ - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QnU" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 5 - }, -/obj/item/reagent_containers/food/condiment/enzyme{ - layer = 5 - }, -/obj/item/reagent_containers/dropper, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QnV" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/soymilk, -/obj/item/reagent_containers/food/condiment/soymilk, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QnW" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 5; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/syringe, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QnX" = ( -/obj/structure/table, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QnY" = ( -/obj/structure/table, -/obj/item/hand_labeler, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"QnZ" = ( -/obj/structure/table, -/obj/item/defibrillator, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qoa" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = -3 - }, -/obj/item/reagent_containers/syringe, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qob" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/clothing/suit/apron/surgical, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qoc" = ( -/obj/structure/table, -/obj/item/storage/backpack/duffelbag/med/surgery{ - pixel_y = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"Qod" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space/basic, -/area/space/nearstation) -"Qof" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/turf/open/space/basic, -/area/space/nearstation) -"Qoi" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"Qol" = ( -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"Qov" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"Qoz" = ( /obj/structure/cable{ - icon_state = "1-2" + icon_state = "2-4" }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4; - name = "Output to Waste" - }, -/turf/open/floor/engine, -/area/engine/engineering) -"QoA" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"QoB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"QoC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"QoD" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"QoG" = ( -/obj/structure/girder, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"QoH" = ( -/obj/item/wrench, -/obj/item/weldingtool, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/structure/rack, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"QoI" = ( -/obj/machinery/light, -/turf/open/floor/plating, -/area/engine/engineering) -"QoK" = ( -/obj/item/crowbar/large, -/obj/structure/rack, -/obj/item/device/flashlight, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"QoL" = ( -/obj/machinery/camera{ - c_tag = "Kitchen Cold Room" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/reagent_dispensers/cooking_oil, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"QoM" = ( -/obj/machinery/rnd/protolathe/department/service, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) -"QoN" = ( -/obj/machinery/rnd/protolathe/department/cargo, /turf/open/floor/plasteel, -/area/quartermaster/storage) -"QoO" = ( -/obj/effect/spawner/structure/window/reinforced, +/area/ai_monitored/security/armory) +"dfb" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + req_access_txt = "0" + }, /turf/open/floor/plating, +/area/maintenance/bar) +"dfh" = ( +/obj/machinery/power/apc{ + areastring = "/area/science/circuit"; + name = "Circuitry Lab APC"; + pixel_x = 30 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"diE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"dpO" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fore/secondary) +"dza" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot{ + dir = 2 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"dIm" = ( +/obj/structure/closet/l3closet/security, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"dLC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + cyclelinkeddir = 1; + id_tag = "lobbyairlock"; + name = "Security Lobby"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel/red/side, +/area/hallway/primary/fore) +"dMt" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/blood/old, +/obj/item/device/assembly/signaler, +/turf/open/floor/plating, +/area/maintenance/bar) +"dMZ" = ( +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"dUX" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"dZd" = ( +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/hallway/primary/fore) +"eaI" = ( +/obj/structure/table/reinforced, +/obj/item/device/radio/intercom{ + pixel_x = -30 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"edf" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/cryopod{ + tag = "icon-cryopod-open (EAST)"; + icon_state = "cryopod-open"; + dir = 4 + }, +/turf/open/floor/noslip, +/area/crew_quarters/cryopod) +"eug" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"eyM" = ( +/obj/machinery/mineral/ore_redemption{ + input_dir = 2; + output_dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, /area/quartermaster/miningdock) -"QoP" = ( +"eCq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"eFo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"eJr" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/bar"; + dir = 2; + name = "Maintenance Bar APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/bar) +"eRz" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space/nearstation) +"eVL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/light_switch{ pixel_y = 28 @@ -56913,70 +53821,136 @@ }, /turf/open/floor/plasteel, /area/quartermaster/miningdock) -"QoT" = ( -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"QoU" = ( +"eXt" = ( +/obj/structure/table/wood/poker, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/storage/pill_bottle/dice, +/turf/open/floor/wood, +/area/maintenance/bar) +"fbG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"flc" = ( +/obj/machinery/bookbinder, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"fnC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/hydrofloor, +/area/hallway/secondary/service) +"fsQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"fFO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"fJA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/red/side, +/area/security/brig) +"fKl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/science/circuit) +"gbq" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/construction) +"gbT" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"gjl" = ( +/turf/closed/wall, +/area/quartermaster/warehouse) +"gsc" = ( +/obj/effect/spawner/lootdrop/keg, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/bar) +"gus" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"gvr" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/maintenance/bar) +"gwd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"gxj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"gyg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/warden) +"gLh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/bar) +"gWd" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/construction) +"gXs" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"gZG" = ( /obj/structure/closet/crate/freezer/surplus_limbs, /obj/item/reagent_containers/glass/beaker/synthflesh, /turf/open/floor/plasteel/white/side{ dir = 8 }, /area/medical/sleeper) -"QoV" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"QoW" = ( -/obj/machinery/droneDispenser, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"QoX" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/glass/fifty, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"QoY" = ( -/obj/structure/table, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/box/syringes, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_x = 8; - pixel_y = -3 - }, -/obj/item/reagent_containers/syringe{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1485; - listening = 1; - name = "Station Intercom (Medbay)"; - pixel_x = 30 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"QoZ" = ( -/turf/closed/wall, -/area/quartermaster/warehouse) -"Qpa" = ( -/turf/closed/wall, -/area/quartermaster/warehouse) -"Qpb" = ( +"hcE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -56993,291 +53967,152 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"Qpc" = ( -/turf/closed/wall, -/area/quartermaster/warehouse) -"Qpd" = ( -/turf/closed/wall, -/area/quartermaster/warehouse) -"Qpe" = ( -/turf/closed/wall, -/area/quartermaster/warehouse) -"Qpf" = ( -/turf/closed/wall, -/area/quartermaster/warehouse) -"Qpg" = ( -/turf/closed/wall, -/area/quartermaster/warehouse) -"Qph" = ( -/turf/closed/wall, -/area/quartermaster/warehouse) -"Qpi" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/beer, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"Qpj" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"Qpk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, +"hha" = ( +/turf/open/floor/wood, +/area/maintenance/bar) +"hsl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/open/floor/plating, -/area/maintenance/starboard/aft) -"Qpl" = ( +/area/maintenance/port/aft) +"hyy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/door/airlock/maintenance/abandoned, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"Qpm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"Qpn" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/grille_or_trash, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"Qpo" = ( -/turf/closed/wall/r_wall, -/area/science/circuit) -"Qpp" = ( -/turf/closed/wall, -/turf/open/floor/circuit, -/area/science/circuit) -"Qpq" = ( -/turf/closed/wall, -/turf/open/floor/circuit, -/area/science/circuit) -"Qpr" = ( -/turf/closed/wall, -/turf/open/floor/circuit, -/area/science/circuit) -"Qps" = ( -/turf/closed/wall/r_wall, -/area/science/circuit) -"Qpt" = ( -/turf/closed/wall/r_wall, -/area/science/circuit) -"Qpu" = ( -/turf/closed/wall/r_wall, -/area/science/circuit) -"Qpv" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 8; - name = "8maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"Qpw" = ( -/turf/closed/wall, -/turf/open/floor/circuit, -/area/science/circuit) -"Qpx" = ( -/obj/structure/table/reinforced, -/obj/item/device/multitool, -/obj/item/screwdriver, -/obj/machinery/camera{ - c_tag = "Circuitry Lab North"; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"Qpy" = ( -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"Qpz" = ( -/turf/closed/wall/r_wall, -/area/science/circuit) -"QpA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/maintenance/fore/secondary) +"hGx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"hKM" = ( +/obj/structure/sign/poster/official/no_erp, +/turf/closed/wall, +/area/maintenance/bar) +"hMS" = ( +/obj/structure/bed, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"hUv" = ( +/obj/machinery/vending/clothing, +/turf/open/floor/wood, +/area/maintenance/bar) +"hWV" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/hallway/primary/fore) +"hYa" = ( /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"QpB" = ( -/turf/closed/wall, -/turf/open/floor/circuit, -/area/science/circuit) -"QpC" = ( -/obj/structure/table/reinforced, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/turf/open/floor/wood{ + icon_state = "wood-broken7" }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QpD" = ( -/obj/structure/table/reinforced, -/obj/item/device/integrated_electronics/analyzer, -/obj/item/device/integrated_electronics/debugger, -/obj/item/device/integrated_electronics/wirer, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QpE" = ( -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QpF" = ( -/obj/machinery/bookbinder, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QpG" = ( -/turf/closed/wall, -/turf/open/floor/circuit, -/area/science/circuit) -"QpH" = ( -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QpI" = ( -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QpJ" = ( -/obj/machinery/light{ +/area/maintenance/bar) +"ifm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/libraryscanner, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QpK" = ( -/turf/closed/wall, -/turf/open/floor/circuit, -/area/science/circuit) -"QpL" = ( -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QpM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QpN" = ( -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QpO" = ( -/turf/closed/wall, -/turf/open/floor/circuit, -/area/science/circuit) -"QpP" = ( -/obj/machinery/light_switch{ - pixel_x = -20 +/obj/machinery/door/airlock/maintenance/abandoned{ + req_access_txt = "0" }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QpQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"QpR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"QpS" = ( -/turf/closed/wall, -/obj/structure/sign/nanotrasen, -/turf/open/floor/circuit, -/area/science/circuit) -"QpT" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QpU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"QpV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/science/circuit) -"QpW" = ( /obj/structure/cable{ - icon_state = "2-4" + icon_state = "4-8" }, -/turf/open/floor/plasteel, +/turf/open/floor/plating, +/area/maintenance/bar) +"ijc" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"imC" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/bar) +"ipA" = ( +/obj/machinery/droneDispenser, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"itG" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/white, /area/science/circuit) -"QpX" = ( +"iFh" = ( +/turf/open/floor/plasteel/red/side, +/area/hallway/primary/fore) +"iGk" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"iIs" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"iMh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"iNn" = ( +/obj/machinery/camera{ + c_tag = "Kitchen Cold Room" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/reagent_dispensers/cooking_oil, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"iWe" = ( +/obj/structure/falsewall, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"iZT" = ( +/turf/closed/wall, +/area/crew_quarters/cryopod) +"jav" = ( +/obj/machinery/chem_dispenser/drinks/beer, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/bar) +"jbf" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, /obj/machinery/power/apc{ - areastring = "/area/science/circuit"; - name = "Circuitry Lab APC"; - pixel_x = 30 + areastring = "/area/hallway/secondary/service"; + dir = 1; + name = "Service Hall APC"; + pixel_y = 25 }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"QpY" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/science/circuit) -"QpZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"Qqa" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"Qqb" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"Qqc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"Qqd" = ( +/turf/open/floor/plasteel/hydrofloor, +/area/hallway/secondary/service) +"jgm" = ( /obj/structure/disposalpipe/segment{ dir = 10 }, @@ -57291,222 +54126,283 @@ }, /turf/open/floor/plasteel, /area/science/circuit) -"Qqe" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 +"jjw" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken5" }, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"Qqf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"Qqg" = ( -/turf/closed/wall, -/obj/structure/sign/nanotrasen, -/turf/open/floor/circuit, -/area/science/circuit) -"Qqh" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"Qqi" = ( +/area/maintenance/bar) +"jlm" = ( +/obj/machinery/rnd/protolathe/department/cargo, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"jnB" = ( /obj/machinery/light{ dir = 4 }, -/obj/machinery/autolathe, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"Qqj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/floorgrime, -/area/science/misc_lab) -"Qqk" = ( -/turf/closed/wall, -/turf/open/floor/circuit, -/area/science/circuit) -"Qql" = ( -/obj/structure/table/reinforced, -/obj/item/device/radio/intercom{ - pixel_x = -30 +/obj/structure/table/wood, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/wood{ + icon_state = "wood-broken6" }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"Qqm" = ( -/obj/structure/chair/office/light, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"Qqn" = ( +/area/maintenance/bar) +"jor" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/bar) +"jpk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/maintenance/bar) +"jrj" = ( +/obj/structure/table/wood/poker, +/obj/item/coin/iron, +/turf/open/floor/wood, +/area/maintenance/bar) +"jrE" = ( /obj/machinery/rnd/protolathe/department/science, /obj/structure/sign/poster/official/random{ pixel_x = 32 }, /turf/open/floor/plasteel/white, /area/science/circuit) -"Qqo" = ( -/turf/closed/wall, -/turf/open/floor/circuit, -/area/science/circuit) -"Qqp" = ( -/obj/structure/table/reinforced, +"jsM" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/item/pen/blue, +/turf/open/floor/plasteel/purple/side{ + tag = "icon-purple (NORTH)"; + icon_state = "purple"; + dir = 1 + }, +/area/crew_quarters/cryopod) +"jxK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/maintenance/bar) +"jyt" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/wood, +/area/maintenance/bar) +"jAD" = ( +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"jCi" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Secure Cell"; + name = "Secure Cell Locker" + }, +/obj/effect/turf_decal/stripes/white/end{ + dir = 4 + }, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"jCq" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"jDT" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/pen, +/obj/item/hand_labeler, +/obj/item/book/manual/wiki/security_space_law, /obj/machinery/light, -/obj/item/stock_parts/cell/super, -/obj/item/stock_parts/cell/super, -/obj/item/stack/sheet/metal/fifty, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"Qqq" = ( -/obj/structure/closet/crate, -/obj/item/target/alien, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/item/target/clown, -/obj/item/target/syndicate, -/obj/item/target/syndicate, -/obj/item/gun/energy/laser/practice, -/obj/item/gun/energy/laser/practice, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"Qqr" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"jGf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 8 + }, +/area/security/brig) +"jHt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"Qqs" = ( +"jIa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/camera/motion{ + c_tag = "Armory Motion Sensor"; + dir = 2; + name = "motion-sensitive security camera" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"jME" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/security/glass{ + cyclelinkeddir = 1; + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/brig) +"jMY" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"jSO" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"jVl" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"jVE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/hallway/primary/fore) +"jXb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/hallway/primary/fore) +"jZW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/maintenance/bar) +"khb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/table, +/obj/item/kitchen/rollingpin, +/turf/open/floor/plasteel/hydrofloor, +/area/hallway/secondary/service) +"kob" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"Qqt" = ( -/obj/structure/cable{ - icon_state = "4-8" +"kpR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"Qqu" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"Qqv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"kqC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/hallway/primary/fore) +"kPd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/hydrofloor, +/area/hallway/secondary/service) +"kQk" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"kQq" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"kSb" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"kVC" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/maintenance/bar) +"lgA" = ( +/obj/machinery/suit_storage_unit/security, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"lAB" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, /area/science/circuit) -"Qqw" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"Qqx" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"Qqy" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"Qqz" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"QqA" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"QqB" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"QqC" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"QqD" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"QqE" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"QqF" = ( -/obj/structure/window/reinforced, -/obj/vehicle/ridden/secway, -/obj/item/key/security, -/obj/machinery/door/window/eastleft{ - name = "Secway Docking Port" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"QqG" = ( -/obj/structure/window/reinforced, -/obj/vehicle/ridden/secway, -/obj/item/key/security, -/obj/machinery/door/window/eastleft{ - name = "Secway Docking Port" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"QqH" = ( -/obj/structure/closet/l3closet/security, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"QqI" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"QqJ" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"QqK" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"QqL" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"QqM" = ( +"lAE" = ( /obj/structure/table, /obj/item/grenade/barrier{ pixel_x = 4 @@ -57520,14 +54416,28 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/security/armory) -"QqN" = ( -/obj/structure/rack, -/obj/item/gun/energy/e_gun/dragnet, -/obj/item/gun/energy/e_gun/dragnet, +"lIg" = ( +/obj/machinery/suit_storage_unit/security, /obj/effect/turf_decal/bot_white, /turf/open/floor/plasteel/dark, /area/ai_monitored/security/armory) -"QqO" = ( +"lMg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"lMP" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"lQG" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/science/circuit) +"myc" = ( /obj/structure/rack, /obj/item/clothing/suit/armor/bulletproof{ pixel_x = -3; @@ -57554,7 +54464,138 @@ /obj/effect/turf_decal/bot_white, /turf/open/floor/plasteel/dark, /area/ai_monitored/security/armory) -"QqP" = ( +"mBv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "Output to Waste" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"mLe" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/rack, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"mNi" = ( +/obj/machinery/light_switch{ + pixel_x = -20 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"mOK" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/hallway/primary/fore) +"mQi" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/brig) +"mRe" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"mUr" = ( +/obj/structure/table/wood, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/maintenance/bar) +"mYW" = ( +/obj/machinery/vending/autodrobe, +/turf/open/floor/wood, +/area/maintenance/bar) +"nab" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/security/brig) +"nbe" = ( +/obj/effect/turf_decal/loading_area/white, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"nkD" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"noK" = ( +/obj/structure/girder, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"nrf" = ( +/obj/machinery/flasher{ + id = "Cell 4"; + pixel_x = -28 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"nxv" = ( +/obj/machinery/power/apc{ + name = "Construction Area APC"; + areastring = "/area/construction"; + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/construction) +"nzh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"nGt" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"nHr" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"nOh" = ( /obj/structure/rack, /obj/item/clothing/suit/armor/riot{ pixel_x = -3; @@ -57586,332 +54627,28 @@ /obj/effect/turf_decal/bot_white, /turf/open/floor/plasteel/dark, /area/ai_monitored/security/armory) -"QqQ" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/window/eastleft{ - name = "Cyborg Docking Port" - }, -/obj/machinery/recharge_station, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"QqR" = ( -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/bot{ - dir = 2 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"QqS" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot{ - dir = 2 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"QqT" = ( -/obj/machinery/camera/motion{ - c_tag = "Non-Lethal Armory Motion Sensor"; - dir = 4 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"QqU" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"QqV" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"QqW" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"QqX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"QqY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"QqZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"Qra" = ( -/obj/machinery/door/poddoor/shutters{ - id = "lowsecarmory"; - name = "Non-Lethal Armoury Shutter" - }, -/obj/machinery/button/door{ - id = "lowsecarmory"; - name = "Non-Lethal Armory Shutters"; - pixel_y = 26; - req_access_txt = "3" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"Qrb" = ( -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/bot{ - dir = 2 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"Qrc" = ( -/obj/machinery/suit_storage_unit/security, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"Qrd" = ( -/obj/machinery/suit_storage_unit/security, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"Qre" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"Qrf" = ( -/obj/machinery/suit_storage_unit/security, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"Qrg" = ( -/obj/machinery/suit_storage_unit/security, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"Qrh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, +"nRG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"Qri" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"Qrj" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"Qrk" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"Qrl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/camera/motion{ - c_tag = "Armory Motion Sensor"; - dir = 2; - name = "motion-sensitive security camera" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"Qrm" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"nRX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"Qrn" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + cyclelinkeddir = 2; + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63" }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/turf/open/floor/plasteel/red/side{ dir = 9 }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"Qro" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"Qrp" = ( -/obj/structure/table, -/obj/item/storage/box/firingpins, -/obj/item/storage/box/firingpins, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"Qrq" = ( -/obj/structure/table, -/obj/item/storage/toolbox/drone, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"Qrr" = ( -/obj/structure/falsewall, -/obj/effect/turf_decal/delivery/white, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"Qrs" = ( -/obj/effect/turf_decal/loading_area/white, -/obj/effect/turf_decal/stripes/white/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/corner, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"Qrt" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/rack, -/obj/item/clothing/mask/gas/sechailer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/clothing/mask/gas/sechailer{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"Qru" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"Qrv" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/white/corner, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"Qrw" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/closet/secure_closet/brig{ - id = "Secure Cell"; - name = "Secure Cell Locker" - }, -/obj/effect/turf_decal/stripes/white/end{ - dir = 4 - }, -/obj/effect/turf_decal/delivery/white, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"Qrx" = ( -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"Qry" = ( -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"Qrz" = ( -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"QrA" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"QrB" = ( -/obj/effect/turf_decal/stripes/white/line, -/obj/effect/turf_decal/stripes/white/corner{ - dir = 1 - }, -/obj/machinery/door_timer{ - id = "Secure Cell"; - name = "Secure Cell"; - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"QrC" = ( +/area/security/brig) +"nYB" = ( /obj/machinery/door/window/brigdoor/security/cell{ dir = 4; id = "Secure Cell"; @@ -57933,57 +54670,283 @@ dir = 8 }, /area/security/execution/transfer) -"QrD" = ( -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"QrE" = ( -/obj/structure/bed, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"QrF" = ( -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"QrG" = ( -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"QrH" = ( -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"QrI" = ( -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"QrJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" +"obc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/turf/open/floor/plating, -/area/security/warden) -"QrK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/fore/secondary) +"ofR" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/table, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"ogc" = ( +/obj/machinery/door_timer{ + id = "Cell 2"; + name = "Cell 2"; + pixel_y = -32 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/red/corner, +/area/security/brig) +"ogm" = ( +/obj/structure/window/reinforced, +/obj/machinery/door/window/eastleft{ + name = "Cyborg Docking Port" + }, +/obj/machinery/recharge_station, +/obj/effect/turf_decal/delivery, /turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"QrL" = ( -/obj/machinery/computer/secure_data{ +/area/security/main) +"oln" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"ord" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"oDF" = ( +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/engineering) +"oFO" = ( +/obj/structure/window/reinforced, +/obj/vehicle/ridden/secway, +/obj/item/key/security, +/obj/machinery/door/window/eastleft{ + name = "Secway Docking Port" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"oHU" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"oJp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"oLz" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 3"; + name = "Cell 3" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red/side, +/area/security/brig) +"oPZ" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"oUa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + cyclelinkeddir = 2; + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/brig) +"oUh" = ( +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"QrM" = ( +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"oYL" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/machinery/door_timer{ + id = "Secure Cell"; + name = "Secure Cell"; + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"pcC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"pfG" = ( +/obj/effect/spawner/lootdrop/keg, +/turf/open/floor/wood, +/area/maintenance/bar) +"piD" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Incinerator Access"; + req_access_txt = "12" + }, +/obj/structure/barricade/wooden{ + name = "wooden barricade (CLOSED)" + }, +/turf/open/floor/plating, +/area/maintenance/bar) +"piS" = ( /obj/structure/table, -/obj/item/folder/red, -/obj/item/pen, -/obj/item/hand_labeler, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/light, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"QrN" = ( +/obj/item/storage/box/firingpins, +/obj/item/storage/box/firingpins, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"puH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"pAp" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/maintenance/bar) +"pHl" = ( +/obj/structure/table, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/box/syringes, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_x = 8; + pixel_y = -3 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1485; + listening = 1; + name = "Station Intercom (Medbay)"; + pixel_x = 30 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"pMN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"pNx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/floorgrime, +/area/science/misc_lab) +"pNR" = ( +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/hallway/primary/fore) +"pOx" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"pRC" = ( +/obj/machinery/door/poddoor/shutters{ + id = "lowsecarmory"; + name = "Non-Lethal Armoury Shutter" + }, +/obj/machinery/button/door{ + id = "lowsecarmory"; + name = "Non-Lethal Armory Shutters"; + pixel_y = 26; + req_access_txt = "3" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"pUu" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/bar) +"pYG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/brig) +"pYQ" = ( +/obj/structure/table/wood, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/wood, +/area/maintenance/bar) +"qeQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"qpv" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/autolathe, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"quT" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space/basic, +/area/space/nearstation) +"qwN" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/brigdoor{ dir = 1; @@ -58010,196 +54973,53 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"QrO" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ +"qCU" = ( +/obj/machinery/light{ dir = 1 }, -/turf/open/floor/plasteel, -/area/security/brig) -"QrP" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"QrQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, /turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/security/brig) -"QrR" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/brig) -"QrS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/brig) -"QrT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 2; - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/brig) -"QrU" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"QrV" = ( -/obj/machinery/door_timer{ - id = "Cell 2"; - name = "Cell 2"; - pixel_y = -32 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/red/corner, -/area/security/brig) -"QrW" = ( -/obj/machinery/door_timer{ - id = "Cell 3"; - name = "Cell 3"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner, -/area/security/brig) -"QrX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/security/brig) -"QrY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 2; - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/brig) -"QrZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/red/side, -/area/security/brig) -"Qsa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/brig) -"Qsb" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 3"; - name = "Cell 3" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side, -/area/security/brig) -"Qsc" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 1; - id_tag = "outerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/brig) -"Qsd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"Qse" = ( -/turf/open/floor/plasteel/red/side{ dir = 1 }, /area/hallway/primary/fore) -"Qsf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 +"qHL" = ( +/obj/structure/table, +/obj/item/storage/toolbox/drone, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"rdk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 6 }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"Qsg" = ( -/obj/machinery/flasher{ - id = "Cell 2"; - pixel_x = -28 +/area/hallway/primary/fore) +"rim" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"Qsh" = ( -/obj/machinery/flasher{ - id = "Cell 3"; - pixel_x = -28 +/turf/open/floor/wood, +/area/maintenance/bar) +"rjn" = ( +/obj/structure/table/wood/poker, +/turf/open/floor/wood, +/area/maintenance/bar) +"rlF" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -30 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 +/turf/open/floor/wood{ + icon_state = "wood-broken" }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"Qsi" = ( -/obj/machinery/flasher{ - id = "Cell 4"; - pixel_x = -28 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"Qsj" = ( +/area/maintenance/bar) +"rmX" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/beer, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rnh" = ( /obj/structure/table/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "briggate"; @@ -58211,44 +55031,171 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"Qsk" = ( +"rIV" = ( +/obj/item/lighter/greyscale, +/obj/effect/decal/cleanable/semen{ + desc = "Blech."; + name = "dried semen" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/bar) +"rKP" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/construction) +"rWO" = ( +/obj/machinery/flasher{ + id = "brigentry"; + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/red/side, +/area/hallway/primary/fore) +"saK" = ( +/obj/structure/closet/crate, +/obj/item/target/alien, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/item/target/clown, +/obj/item/target/syndicate, +/obj/item/target/syndicate, +/obj/item/gun/energy/laser/practice, +/obj/item/gun/energy/laser/practice, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"spC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/maintenance/abandoned{ + req_access_txt = "0" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/maintenance/bar) +"srs" = ( /turf/open/floor/plasteel/red/side{ dir = 8 }, /area/hallway/primary/fore) -"Qsl" = ( -/turf/open/floor/plasteel/red/side{ +"sxs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table, +/obj/item/shovel/spade, +/turf/open/floor/plasteel/hydrofloor, +/area/hallway/secondary/service) +"sAS" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/stripes/line{ dir = 1 }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"sIn" = ( +/obj/structure/bed, +/obj/item/bedsheet/grey, +/obj/effect/decal/cleanable/semen{ + desc = "Blech."; + name = "dried semen" + }, +/obj/effect/spawner/lootdrop/costume, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/bar) +"sLv" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"sOs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/abandoned, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"sSW" = ( +/obj/structure/chair/office/light, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"tal" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/hallway/secondary/service) +"tbp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, /area/hallway/primary/fore) -"Qsm" = ( -/turf/open/floor/plasteel/red/side{ +"thm" = ( +/obj/item/restraints/handcuffs/fake, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears, +/turf/open/floor/plating, +/area/maintenance/bar) +"tiQ" = ( +/obj/structure/sign/poster/random{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/bar) +"tje" = ( +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/bar) +"tkh" = ( +/obj/machinery/flasher{ + id = "Cell 2"; + pixel_x = -28 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"tlu" = ( +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/area/hallway/primary/fore) -"Qsn" = ( -/turf/open/floor/plasteel/red/side{ - dir = 6 +/obj/structure/cable{ + icon_state = "4-8" }, -/area/hallway/primary/fore) -"Qso" = ( -/turf/open/floor/plasteel/red/side{ - dir = 10 +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"tsG" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 }, -/area/hallway/primary/fore) -"Qsp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 4 +/obj/effect/turf_decal/stripes/white/corner, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"twi" = ( +/obj/structure/chair/stool, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 }, -/area/hallway/primary/fore) -"Qsq" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/hallway/primary/fore) -"Qsr" = ( +/turf/open/floor/wood, +/area/maintenance/bar) +"txz" = ( /obj/structure/table/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "briggate"; @@ -58265,7 +55212,353 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"Qss" = ( +"tzD" = ( +/obj/machinery/flasher{ + id = "Cell 3"; + pixel_x = -28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"tCT" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/maintenance/bar) +"tJn" = ( +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot{ + dir = 2 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"tMl" = ( +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"tPB" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/maintenance/bar) +"udp" = ( +/obj/item/crowbar/large, +/obj/structure/rack, +/obj/item/device/flashlight, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"uhH" = ( +/obj/item/wrench, +/obj/item/weldingtool, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/structure/rack, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ulx" = ( +/obj/machinery/vending/kink, +/turf/open/floor/wood, +/area/maintenance/bar) +"uoB" = ( +/obj/structure/table/reinforced, +/obj/item/device/multitool, +/obj/item/screwdriver, +/obj/machinery/camera{ + c_tag = "Circuitry Lab North"; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"uCK" = ( +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"uNu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"uVS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"vge" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/maintenance/bar) +"vgI" = ( +/obj/machinery/vending/games{ + name = "\improper Good 'Clean' Fun" + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"vsn" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun/dragnet, +/obj/item/gun/energy/e_gun/dragnet, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"vtB" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"vxh" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 8; + name = "8maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"vzp" = ( +/obj/structure/table/reinforced, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"vBu" = ( +/obj/item/shard, +/obj/item/wirecutters, +/obj/item/wallframe/camera, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/bar) +"vCb" = ( +/obj/machinery/rnd/protolathe/department/service, +/turf/open/floor/plasteel/hydrofloor, +/area/hallway/secondary/service) +"vCt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"vDd" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"vPE" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/libraryscanner, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"vQi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/maintenance/bar) +"vQk" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"vWg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/brig) +"vXH" = ( +/obj/machinery/cryopod{ + tag = "icon-cryopod-open (EAST)"; + icon_state = "cryopod-open"; + dir = 4 + }, +/turf/open/floor/noslip, +/area/crew_quarters/cryopod) +"wkN" = ( +/turf/closed/wall, +/area/science/circuit) +"wno" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + cyclelinkeddir = 1; + id_tag = "lobbyairlock"; + name = "Security Lobby"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/hallway/primary/fore) +"wqK" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/crowbar, +/obj/item/device/electropack/shockcollar, +/turf/open/floor/plating, +/area/maintenance/bar) +"wrp" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/hydrofloor, +/area/hallway/secondary/service) +"wsw" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"wvX" = ( +/obj/structure/table/reinforced, +/obj/machinery/light, +/obj/item/stock_parts/cell/super, +/obj/item/stock_parts/cell/super, +/obj/item/stack/sheet/metal/fifty, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"wwN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/bar) +"wyl" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/bar) +"wyo" = ( +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/hallway/primary/fore) +"wzL" = ( +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"wBd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/hallway/secondary/service) +"wIt" = ( +/turf/open/floor/plasteel/purple/side{ + tag = "icon-purple (NORTH)"; + icon_state = "purple"; + dir = 1 + }, +/area/crew_quarters/cryopod) +"wLW" = ( +/turf/closed/wall, +/area/maintenance/bar) +"wPM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/bar) +"wUY" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel/hydrofloor, +/area/hallway/secondary/service) +"wVC" = ( +/obj/structure/table/wood/poker, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"wXZ" = ( +/turf/open/floor/plasteel/purple/side, +/area/crew_quarters/cryopod) +"wZq" = ( +/obj/machinery/door_timer{ + id = "Cell 3"; + name = "Cell 3"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner, +/area/security/brig) +"xhV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/construction) +"xiw" = ( +/obj/machinery/door/airlock{ + name = "Service Hall"; + req_access_txt = "0"; + req_one_access_txt = "25;26;35;28" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"xmc" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "seclobby"; @@ -58276,2052 +55569,48 @@ }, /turf/open/floor/plating, /area/security/brig) -"Qst" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/hallway/primary/fore) -"Qsu" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/hallway/primary/fore) -"Qsv" = ( -/obj/machinery/vending/kink, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"Qsw" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/hallway/primary/fore) -"Qsx" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/hallway/primary/fore) -"Qsy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 1; - id_tag = "lobbyairlock"; - name = "Security Lobby"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/hallway/primary/fore) -"Qsz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/hallway/primary/fore) -"QsA" = ( -/turf/open/floor/plasteel/red/side, -/area/hallway/primary/fore) -"QsB" = ( -/turf/open/floor/plasteel/red/side, -/area/hallway/primary/fore) -"QsC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/hallway/primary/fore) -"QsD" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/hallway/primary/fore) -"QsE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 1; - id_tag = "lobbyairlock"; - name = "Security Lobby"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel/red/side, -/area/hallway/primary/fore) -"QsF" = ( -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/hallway/primary/fore) -"QsG" = ( -/obj/machinery/flasher{ - id = "brigentry"; - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/red/side, -/area/hallway/primary/fore) -"QsH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"QsI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/fore/secondary) -"QsJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/maintenance/fore/secondary) -"QsK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"QsL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"QsM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"QsN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"QsO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"QsP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"QsQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"QsR" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"QsS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"QsT" = ( -/obj/machinery/vending/autodrobe, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/crew_quarters/theatre/mime) -"QsU" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/crew_quarters/theatre/mime) -"QsV" = ( -/obj/structure/bed, -/obj/item/bedsheet/mime, -/obj/machinery/camera{ - c_tag = "Mime's Office"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/crew_quarters/theatre/mime) -"QsW" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/theatre/clown"; - dir = 4; - name = "Clown's Office APC"; - pixel_x = 26; - pixel_y = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"QsX" = ( -/obj/structure/closet/secure_closet/freezer/cream_pie, -/obj/machinery/camera{ - c_tag = "Clown's Office"; - c_tag_order = 999; - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/theatre/clown) -"QsY" = ( -/obj/structure/closet/crate/wooden/toy, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/theatre/clown) -"QsZ" = ( -/obj/machinery/vending/autodrobe, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/theatre/clown) -"Qta" = ( +"xIa" = ( /obj/structure/table, -/obj/item/reagent_containers/food/snacks/baguette, -/obj/item/toy/dummy, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/crew_quarters/theatre/mime) -"Qtb" = ( -/obj/effect/landmark/start/mime, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/crew_quarters/theatre/mime) -"Qtc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/crew_quarters/theatre/mime) -"Qtd" = ( -/obj/machinery/door/airlock/freezer{ - boltDown = null; - boltUp = null; - doorClose = null; - doorDeni = null; - doorOpen = null; - name = "Mime's Office"; - noPower = null; - req_access_txt = "46" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/crew_quarters/theatre/mime) -"Qte" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar/cafe) -"Qtf" = ( -/obj/machinery/door/airlock/bananium{ - name = "Clown's Office"; - req_access_txt = "46" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/theatre/clown) -"Qtg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/theatre/clown) -"Qth" = ( -/obj/effect/landmark/start/clown, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/theatre/clown) -"Qti" = ( -/obj/structure/bed, -/obj/item/bedsheet/clown, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/theatre/clown) -"Qtj" = ( -/obj/structure/table, -/obj/item/lipstick/random{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/lipstick/random{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/crew_quarters/theatre/mime) -"Qtk" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/crew_quarters/theatre/mime) -"Qtl" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/theatre/mime"; - dir = 8; - name = "Mime's Office APC"; - pixel_x = -26; - pixel_y = -1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"Qtm" = ( -/obj/structure/displaycase/clown, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/theatre/clown) -"Qtn" = ( -/obj/structure/statue/bananium/clown, -/turf/open/floor/plasteel/redyellow, -/area/crew_quarters/theatre/clown) -"Qto" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/crew_quarters/theatre/mime) -"Qtp" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/crew_quarters/theatre/mime) -"Qtq" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/bar/cafe) -"Qtr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table_frame/wood, -/obj/item/stack/sheet/mineral/wood, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"Qts" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/bar/cafe"; - dir = 1; - name = "Abandoned Cafe APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar/cafe) -"Qtt" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"Qtu" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar/cafe) -"Qtv" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar/cafe) -"Qtw" = ( -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks/beer, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"Qtx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"Qty" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar/cafe) -"Qtz" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar/cafe) -"QtA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"QtB" = ( -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"QtC" = ( -/obj/structure/chair/wood, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar/cafe) -"QtD" = ( -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"QtE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"QtF" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"QtG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/shard{ - icon_state = "small" - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/bar/cafe) -"QtH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/bar/cafe) -"QtI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/bar/cafe) -"QtJ" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/structure/closet/crate/bin, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"QtK" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/structure/light_construct/small, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"QtL" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/bar/cafe) -"QtM" = ( -/turf/closed/wall, -/area/maintenance/bar/cafe) -"QtN" = ( -/turf/closed/wall, -/area/maintenance/bar/cafe) -"QtO" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/cobweb, -/obj/item/stack/sheet/glass{ - amount = 3 - }, -/obj/item/wrench, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"QtP" = ( -/obj/structure/light_construct/small, -/obj/structure/table/wood, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/wood, -/area/maintenance/bar/cafe) -"QtQ" = ( -/obj/machinery/camera{ - c_tag = "Bar Storage" - }, -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"QtR" = ( -/obj/effect/turf_decal/loading_area/white, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"QtS" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"QtT" = ( -/obj/machinery/door/airlock{ - name = "Bar Storage"; - req_access_txt = "25" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"QtU" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"QtV" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/wood, -/area/bridge/meeting_room) -"QtW" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/bridge/meeting_room) -"QtX" = ( -/turf/open/floor/plating, -/area/maintenance/department/bridge) -"QtY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/bridge) -"QtZ" = ( -/turf/open/floor/plating, -/area/maintenance/department/bridge) -"Qua" = ( -/turf/open/floor/plating, -/area/maintenance/department/bridge) -"Qub" = ( -/turf/open/floor/plating, -/area/maintenance/department/bridge) -"Quc" = ( -/turf/open/floor/plating, -/area/maintenance/department/bridge) -"Qud" = ( -/turf/open/floor/plating, -/area/maintenance/department/bridge) -"Que" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/bridge) -"Quf" = ( -/turf/open/floor/plating, -/area/maintenance/department/bridge) -"Qug" = ( -/obj/machinery/door/airlock/maintenance{ - name = "bridge maintenance access"; - req_access_txt = "20" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/captain) -"Quh" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/bridge) -"Qui" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/bridge) -"Quj" = ( -/obj/machinery/computer/bank_machine, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"Quk" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Vault APC"; - areastring = "/area/ai_monitored/nuke_storage"; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/circuit, -/area/ai_monitored/nuke_storage) -"Qul" = ( -/obj/structure/filingcabinet, -/obj/item/folder/documents, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"Qum" = ( -/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/storage/belt/champion, -/obj/effect/turf_decal/bot_white/right, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"Qun" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/circuit, -/area/ai_monitored/nuke_storage) -"Quo" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/circuit, -/area/ai_monitored/nuke_storage) -"Qup" = ( -/obj/item/coin/silver{ - pixel_x = 7; - pixel_y = 12 - }, -/obj/item/coin/silver{ - pixel_x = 12; - pixel_y = 7 - }, -/obj/item/coin/silver{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/coin/silver{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/coin/silver{ - pixel_x = 5; - pixel_y = -8 - }, -/obj/structure/closet/crate{ - name = "Silver Crate" - }, -/obj/effect/turf_decal/bot_white/left, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"Quq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"Qur" = ( -/obj/structure/sign/securearea, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"Qus" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"Qut" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/checkpoint/tertiary) -"Quu" = ( -/turf/closed/wall/r_wall, -/area/security/checkpoint/tertiary) -"Quv" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/checkpoint/tertiary) -"Quw" = ( -/obj/structure/closet/secure_closet/security, -/obj/machinery/power/apc{ - areastring = "/area/security/checkpoint/tertiary"; - dir = 8; - name = "Security Checkpoint APC"; - pixel_x = -24; - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/checkpoint/tertiary) -"Qux" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 30 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/tertiary) -"Quy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/tertiary) -"Quz" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/tertiary) -"QuA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/tertiary) -"QuB" = ( -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/tertiary) -"QuC" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/checkpoint/tertiary) -"QuD" = ( -/obj/structure/closet/wardrobe/red, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/checkpoint/tertiary) -"QuE" = ( -/turf/open/floor/plasteel, -/area/security/checkpoint/tertiary) -"QuF" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/checkpoint/tertiary) -"QuG" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/camera{ - c_tag = "Security Checkpoint"; - dir = 1 - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the vault shutters."; - id = "vault"; - name = "vault shutter control"; - normaldoorcontrol = 0; - pixel_x = 8; - pixel_y = -24; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/checkpoint/tertiary) -"QuH" = ( -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/structure/table, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/tertiary) -"QuI" = ( -/obj/item/device/radio/off, -/obj/item/crowbar, -/obj/item/device/assembly/flash/handheld, -/obj/structure/table, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/checkpoint/tertiary) -"QuJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "vault"; - name = "vault shutters" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/checkpoint/tertiary) -"QuK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"QuL" = ( -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"QuM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"QuN" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"QuO" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"QuP" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"QuQ" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"QuR" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"QuS" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"QuT" = ( /obj/effect/spawner/lootdrop/grille_or_trash, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"QuU" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"QuV" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"QuW" = ( -/obj/machinery/door/airlock{ - id_tag = "MaintDorm2"; - name = "Maintenance Dorm 2" - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"QuX" = ( -/obj/structure/lattice, -/turf/open/space, -/area/space) -"QuY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"QuZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"Qva" = ( -/obj/structure/rack{ - dir = 8; - layer = 2.9 - }, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating, -/area/maintenance/port/aft) -"Qvb" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"Qvc" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"Qvd" = ( -/obj/machinery/light/small, -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 5 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"Qve" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"Qvf" = ( -/turf/closed/wall, -/area/maintenance/bar) -"Qvg" = ( -/turf/closed/wall, -/area/maintenance/bar) -"Qvh" = ( -/turf/closed/wall, -/area/maintenance/bar) -"Qvi" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - req_access_txt = "0" +/area/maintenance/starboard/aft) +"xKl" = ( +/obj/machinery/power/apc{ + name = "Cryogenics APC"; + pixel_x = 23 }, +/obj/structure/cable, /turf/open/floor/plating, -/area/maintenance/bar) -"Qvj" = ( -/turf/closed/wall, -/area/maintenance/bar) -"Qvk" = ( -/turf/closed/wall, -/area/maintenance/bar) -"Qvl" = ( -/turf/closed/wall, -/area/maintenance/bar) -"Qvm" = ( -/turf/closed/wall, -/area/maintenance/bar) -"Qvn" = ( -/turf/open/floor/wood, -/area/maintenance/bar) -"Qvo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 +/area/maintenance/fore/secondary) +"xKy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qvp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"xNI" = ( +/obj/machinery/camera/motion{ + c_tag = "Non-Lethal Armory Motion Sensor"; dir = 4 }, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qvq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/effect/turf_decal/stripes/end{ + dir = 8 }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"yap" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood{ icon_state = "wood-broken5" }, /area/maintenance/bar) -"Qvr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, +"ycu" = ( /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qvs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/abandoned{ - req_access_txt = "0" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/bar) -"Qvt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"Qvu" = ( -/turf/closed/wall, -/area/maintenance/bar) -"Qvv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"Qvw" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qvx" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qvy" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"Qvz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/bar) -"QvA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/bar) -"QvB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/bar) -"QvC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/bar) -"QvD" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/bar) -"QvE" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QvF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"QvG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/bar) -"QvH" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/maintenance/bar) -"QvI" = ( -/obj/structure/table/wood, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar) -"QvJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"QvK" = ( -/obj/machinery/chem_dispenser/drinks/beer, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/bar) -"QvL" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QvM" = ( -/obj/item/restraints/handcuffs/fake, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears, -/turf/open/floor/plating, -/area/maintenance/bar) -"QvN" = ( -/obj/item/shard, -/obj/item/wirecutters, -/obj/item/wallframe/camera, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/bar) -"QvO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"QvP" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QvQ" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -30 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/bar) -"QvR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/maintenance/bar) -"QvS" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"QvT" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/bar) -"QvU" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"QvV" = ( -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks, -/turf/open/floor/wood, -/area/maintenance/bar) -"QvW" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QvX" = ( -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/item/crowbar, -/obj/item/device/electropack/shockcollar, -/turf/open/floor/plating, -/area/maintenance/bar) -"QvY" = ( -/obj/structure/bed, -/obj/item/bedsheet/grey, -/obj/effect/decal/cleanable/semen{ - desc = "Blech."; - name = "dried semen" - }, -/obj/effect/spawner/lootdrop/costume, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/bar) -"QvZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"Qwa" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Incinerator Access"; - req_access_txt = "12" - }, -/obj/structure/barricade/wooden{ - name = "wooden barricade (CLOSED)" - }, -/turf/open/floor/plating, -/area/maintenance/bar) -"Qwb" = ( -/turf/open/floor/wood, -/area/maintenance/bar) -"Qwc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar) -"Qwd" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qwe" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qwf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qwg" = ( -/obj/structure/table/wood, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qwh" = ( -/turf/closed/wall, -/area/maintenance/bar) -"Qwi" = ( -/obj/item/lighter/greyscale, -/obj/effect/decal/cleanable/semen{ - desc = "Blech."; - name = "dried semen" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/bar) -"Qwj" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/decal/cleanable/blood/old, -/obj/item/device/assembly/signaler, -/turf/open/floor/plating, -/area/maintenance/bar) -"Qwk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"Qwl" = ( -/turf/closed/wall, -/area/maintenance/bar) -"Qwm" = ( -/obj/effect/spawner/lootdrop/keg, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qwn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qwo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qwp" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/bar"; - dir = 2; - name = "Maintenance Bar APC"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"Qwq" = ( -/turf/closed/wall, -/area/maintenance/bar) -"Qwr" = ( -/turf/closed/wall, -/area/maintenance/bar) -"Qws" = ( -/obj/structure/falsewall, -/turf/open/floor/plating, -/area/maintenance/bar) -"Qwt" = ( -/turf/closed/wall, -/area/maintenance/bar) -"Qwu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"Qwv" = ( -/turf/closed/wall, -/area/maintenance/bar) -"Qww" = ( -/turf/closed/wall, -/area/maintenance/bar) -"Qwx" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qwy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/maintenance/abandoned{ - req_access_txt = "0" - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/bar) -"Qwz" = ( -/obj/structure/sign/poster/official/no_erp, -/turf/closed/wall, -/area/maintenance/bar) -"QwA" = ( -/turf/closed/wall, -/area/maintenance/bar) -"QwB" = ( -/obj/machinery/vending/clothing, -/turf/open/floor/wood, -/area/maintenance/bar) -"QwC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"QwD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/maintenance/bar) -"QwE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/maintenance/bar) -"QwF" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/bar) -"QwG" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/bar) -"QwH" = ( -/obj/machinery/vending/autodrobe, -/turf/open/floor/wood, -/area/maintenance/bar) -"QwI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"QwJ" = ( -/obj/structure/sign/poster/random{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"QwK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood, -/area/maintenance/bar) -"QwL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/bar) -"QwM" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"QwN" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar) -"QwO" = ( -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/bar) -"QwP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"QwQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"QwR" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"QwS" = ( -/obj/structure/table/wood/poker, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"QwT" = ( -/obj/structure/table/wood/poker, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"QwU" = ( -/obj/structure/table/wood/poker, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/storage/pill_bottle/dice, -/turf/open/floor/wood, -/area/maintenance/bar) -"QwV" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"QwW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"QwX" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/reagent_containers/spray/cleaner, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/bar) -"QwY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"QwZ" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar) -"Qxa" = ( -/obj/structure/table/wood/poker, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qxb" = ( -/obj/structure/table/wood/poker, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qxc" = ( -/obj/structure/table/wood/poker, -/obj/item/coin/iron, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qxd" = ( -/obj/machinery/vending/games{ - name = "\improper Good 'Clean' Fun" - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qxe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"Qxf" = ( -/obj/effect/spawner/lootdrop/keg, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"Qxg" = ( -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qxh" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/bar) -"Qxi" = ( -/obj/structure/chair/stool, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -35 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qxj" = ( -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"Qxk" = ( -/obj/machinery/vending/kink, -/turf/open/floor/wood, -/area/maintenance/bar) -"Qxl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) -"Qxm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"Qxn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"Qxo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"Qxp" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = -32 - }, -/obj/structure/closet/radiation, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, /turf/open/floor/plasteel, -/area/engine/gravity_generator) -"Qxq" = ( -/obj/machinery/camera{ - c_tag = "Gravity Generator Foyer" - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 32 - }, -/obj/structure/closet/radiation, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"Qxr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"Qxs" = ( -/turf/closed/wall, -/area/engine/gravity_generator) -"Qxt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"Qxu" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"Qxv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"Qxw" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"Qxx" = ( -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"Qxy" = ( -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"Qxz" = ( -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"QxA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"QxB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"QxC" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"QxD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"QxE" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"QxF" = ( -/obj/machinery/power/terminal, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/cable, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"QxG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"QxH" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/paper/guides/jobs/engi/gravity_gen{ - layer = 3 - }, -/obj/structure/table, -/obj/item/pen/blue, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"QxI" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"QxJ" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"QxK" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Gravity Generator APC"; - areastring = "/area/engine/gravity_generator"; - pixel_x = -25; - pixel_y = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"QxL" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"QxM" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"QxN" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"QxO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"QxP" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_x = -32 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/engine/gravity_generator) -"QxQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/engine/gravity_generator) -"QxR" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Gravity Generator"; - req_access_txt = "11"; - req_one_access_txt = "0" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"QxS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/engine/gravity_generator) -"QxT" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 32 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engine/gravity_generator) -"QxU" = ( -/obj/effect/turf_decal/bot_white/right, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"QxV" = ( -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"QxW" = ( -/obj/effect/turf_decal/bot_white/left, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"QxX" = ( -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"QxY" = ( -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"QxZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"Qya" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"Qyb" = ( -/obj/effect/turf_decal/bot_white/left, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"Qyc" = ( -/obj/machinery/gravity_generator/main/station, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"Qyd" = ( -/obj/effect/turf_decal/bot_white/right, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"Qye" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Gravity Generator Room"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"Qyf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"Qyg" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"Qyh" = ( -/obj/machinery/rnd/protolathe/department/cargo, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) +/area/science/circuit) (1,1,1) = {" aaa @@ -65857,11 +61146,11 @@ aaa aaa aaa aaa -cyc -cyc -Qll -cyc -cyc +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -66110,19 +61399,19 @@ aaa aaa aaa aaa -cyf -cym -cym -cym -cyR -Qmq -cyi -QmU -cyR -cym -cym -cym -cyF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -66366,21 +61655,21 @@ aaa aaa aaa aaa -cyc -cyc -cyo -cyo -cyc -cyc -cyc -QmF -cyc -cyc -cyc -cyo -cyo -cyc -cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -66623,21 +61912,21 @@ aaa aaa aaa aaa -cyc -cyc -cyc -cyc -cyc -Qmg -Qmr -cyi -QmV -Qng -cyc -cyc -cyc -cyc -cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -66880,21 +62169,21 @@ aaa aaa aaa aaa -cyc -Qlm -cyc -QlL -QlW -cyI -cyI -cyI -cyI -cyI -cyc -Qnt -QnD -QnP -cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -67137,21 +62426,21 @@ aaa aaa aaa aaa -cyR -Qln -Qlx -QlM -QlX -Qmi -cye -QmG -Qmw -cyI -Qno -Qnu -cyi -QnP -cyR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -67394,21 +62683,21 @@ aaa aaa aaa aaa -cyc -cyc -cyc -cyc -cyc -Qmj -Qmt -QmH -cMc -cyI -Qnp -cyi -cyI -QnR -cyR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -67651,21 +62940,21 @@ aaa aaa aaa aae -cyR -Qlo -Qly -QlN -QlY -Qmk -Qmt -QmI -cMc -Qnh -cyc -Qnv -QnE -QnP -cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -67908,21 +63197,21 @@ aaa aaa aaa aaa -cyc -Qlp -Qlz -QlO -QlZ -cyI -Qmt -QmJ -cMc -cyI -cyc -cyc -QnF -cyc -cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -68165,21 +63454,21 @@ aaa aaa aaa aaa -cyc -cyc -cyc -cyc -cyc -cyI -Qmw -QmK -cye -cyI -Qnq -cyI -QnG -QnT -cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -68422,21 +63711,21 @@ aaa aaa aaa aaa -cyc -Qlq -QlA -cyn -cyc -cLY -cyI -cyi -cyI -cyI -cyc -Qnw -cyi -czr -cyR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -68656,11 +63945,11 @@ ckq aaa aaa aaa -aCS -cMB -aCV -aCV -aCS +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -68670,7 +63959,7 @@ cwU aaa aaa aaa -cxt +aaa aaa aaa aaf @@ -68679,21 +63968,21 @@ aaa aaa aaa aaf -cyR -Qlr -QlB -QlP -cyc -cyc -cyc -QmL -cyc -cyc -cyc -Qnx -QnH -QnU -cyR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -68913,11 +64202,11 @@ asE arB aaa aaa -aCS -aFC -aEr -aIG -aCS +aaa +aaa +aaa +aaa +aaa aaa aaa arB @@ -68926,9 +64215,9 @@ cyb asE arB aaa -cxt -cxD -cxt +aaa +aaa +aaa aaa aaf aaa @@ -68936,21 +64225,21 @@ aaa aaa aaf aaf -cyR -Qlr -cyi -cyI -QlD -cyi -cyI -cyI -cyI -cyI -cyc -Qny -QnI -QnV -cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -69170,11 +64459,11 @@ cwT aAC aaa aaa -aCS -cLJ -aEr -cLK -aCS +aaa +aaa +aaa +aaa +aaa aaa aaa aAC @@ -69183,9 +64472,9 @@ auP cxY arB aaa -cxy -cxC -cCy +aaa +aaa +aaa aaa aaf aaa @@ -69193,21 +64482,21 @@ aaf aaa aAC aaf -cyc -Qlt -cyI -QlR -cyc -cyI -cye -QmM -cye -cyI -cyc -cyc -cyc -cyc -cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -69426,13 +64715,13 @@ cyb asE arB aaa -aCS -aCS -aCS -aHs -aCS -aCS -aCS +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa arB asE @@ -69440,9 +64729,9 @@ cyb avP arB aaa -cxu -cLQ -cxu +aaa +aaa +aaa aaa arB awW @@ -69450,21 +64739,21 @@ awW asE arB aaf -cyc -cyc -QlD -cyc -cyc -Qmn -Qmw -QmN -Qmw -Qni -cyc -Qnz -QnJ -QnW -cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -69683,45 +64972,45 @@ ayk awW aAD awW -aCS -aEo -aEr -aEr -aEr -aKg -aCS +aaa +aaa +aaa +aaa +aaa +aaa +aaa awW awW awW aQG aRX arB -cxu -cxu -cCw -cxu -cxu +aaa +aaa +aaa +aaa +aaa arB awY ayk awW aAD awW -Qll -Qlu -cyI -cyi -Qmb -cyI -Qmk -QmO -cyI -cyI -Qnr -cyI -QnK -QnX -cyR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -69940,24 +65229,24 @@ ayl azy auP cIh -aCU -aEr -aFE -aFE -aFE -aEr -aCU +aaa +aaa +aaa +aaa +aaa +aaa +aaa azy auP cIh ayl aRY awW -cxw -cxB -cxC -cxI -cxw +aaa +aaa +aaa +aaa +aaa awW awZ ayl @@ -69965,20 +65254,20 @@ beK auP cyt cyd -cyi -QlF -cyx -Qmb -cyi -cyI -cMa -cyi -cyI -cyc -cye -czm -QnY -cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -70197,45 +65486,45 @@ ayk awW awW awW -aCS -aEq -aEr -aEr -aEr -cLL -aCS +aaa +aaa +aaa +aaa +aaa +aaa +aaa awW awW awW awV aRY awW -cxu -cxB -cxC -cxI -cxu +aaa +aaa +aaa +aaa +aaa awW awZ ayk awW awW awW -cyc -cyc -QlG -cyc -cyc -cyI -cye -QmP -cye -Qnj -cyc -cyc -cyc -cyc -cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -70454,45 +65743,45 @@ cqr azz aAF awW -aCV -aEt -aFE -aFE -aFE -aEr -aCV +aaa +aaa +aaa +aaa +aaa +aaa +aaa awW aOf azz aPu aRY awW -cxu -cLP -cxC -cxC -cxu +aaa +aaa +aaa +aaa +aaa awW awZ aym azz aAF awW -cyc -cyk -QlH -QlS -Qmd -cyI -cye -QmQ -Qmw -cyI -Qns -QnA -QnL -QnZ -cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -70711,45 +66000,45 @@ aIK ayl aAE awW -aCV -aEs -aEr -aEr -aEr -aEr -aCV +aaa +aaa +aaa +aaa +aaa +aaa +aaa awW aOe ayl ayl aRY awW -cCu -cxC -cCx -cxC -cCz +aaa +aaa +aaa +aaa +aaa awW awZ ayl ayl aAE awW -cyR -cyj -QlI -QlI -Qme -cyI -cyI -cyi -cyI -cyI -cMf -cyi -QnM -Qoa -cyR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -70968,45 +66257,45 @@ aIK ayl aAH awW -aCV -aEv -aFE -aFE -aFE -aEr -aCV +aaa +aaa +aaa +aaa +aaa +aaa +aaa awW aOh ayl ayl aRY awW -cxu -cxC -cxC -cLR -cxu +aaa +aaa +aaa +aaa +aaa awW awZ ayl ayl bgi awW -cyR -Qlv -QlI -QlU -cyc -cyc -cyc -QmR -cyc -cyc -cyc -QnB -QnN -Qob -cyR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -71225,45 +66514,45 @@ cry azA aAG awW -aCV -aEu -aEr -aEr -aEr -aEr -aCV +aaa +aaa +aaa +aaa +aaa +aaa +aaa awW aOg azA aQH aRY awW -cxu -cxB -cxC -cxI -cxu +aaa +aaa +aaa +aaa +aaa awW awZ ayn azA bgh awW -cyc -Qlw -QlK -QlV -cyc -cyw -QmC -cyI -cye -Qnk -cyc -QnC -QnO -Qoc -cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -71482,45 +66771,45 @@ crz awW awW awW -aCS -aEw -aFE -aFE -aFE -aKh -aCS +aaa +aaa +aaa +aaa +aaa +aaa +aaa awW awW awW awV aRY awW -cxw -cxB -cxC -cxI -cxw +aaa +aaa +aaa +aaa +aaa awW awZ ayk awW awW awW -cyc -cyc -cyR -cyc -cyc -Qmo -QmD -cyI -Qnd -Qnl -cyc -cyc -cyR -cyc -cyc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -71739,24 +67028,24 @@ aIK azy auP cIh -aCU -aEr -aEr -aEr -aEr -aEr -aCU +aaa +aaa +aaa +aaa +aaa +aaa +aaa azy auP cIh ayl aRY awW -cxu -cxw +aaa +aaa cxE -cxw -cxu +aaa +aaa awW awZ ayl @@ -71767,13 +67056,13 @@ aaa aaa aaa aaa -cyR -Qmp -cyI -QmS -Qne -Qnm -cyR +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -71996,13 +67285,13 @@ ayp awW aAD awW -aCS -aEy -aEy -aEy -aEy -aEy -aCS +aaa +aaa +aaa +aaa +aaa +aaa +aaa awW awW awW @@ -72024,13 +67313,13 @@ aaa aaa aaa aaa -cyR -cLZ -cyO -QmT -Qnf -Qnn -cyR +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -72253,13 +67542,13 @@ ayo azB awW aaa -aCS -aEx -aFF +aaa +aaa +aaa cIg -aFF -aKi -aCS +aaa +aaa +aaa aaa awW aPt @@ -72281,13 +67570,13 @@ aaa aaa aaa aaa -Qmf -cyR -cyR -cyR -cyR -cyR -Qmf +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -76134,17 +71423,6 @@ bea bfq bji bkF -cys -cys -cys -cys -cys -cys -cys -cys -cys -cys -cys aaa aaa aaa @@ -76157,9 +71435,20 @@ aaa aaa aaa aaa -QuN aaa -aoV +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag aaa aaa aaa @@ -76391,18 +71680,6 @@ bdZ bhO bjh bkE -cys -cyB -cyB -cyB -cyB -cMb -cyB -cyB -cyB -czf -cys -czs aaa aaa aaa @@ -76414,9 +71691,21 @@ aaa aaa aaa aaa -QuN aaa -aoV +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag aaa aaa aaa @@ -76648,18 +71937,6 @@ aXQ bhQ bjj bkF -cys -cyB -cyB -cyB -cyB -cyB -cyB -cyB -cyB -cyB -czp -czt aaa aaa aaa @@ -76671,9 +71948,21 @@ aaa aaa aaa aaa -QuN aaa -aoV +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag aaa aaa aaa @@ -76905,18 +72194,6 @@ aZt bhQ bjj bkF -cys -cLX -cyB -cyB -cyB -cyB -cyB -cyB -cyB -cyB -czp -czt aaa aaa aaa @@ -76928,9 +72205,21 @@ aaa aaa aaa aaa -QuN aaa -aoV +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag aaa aaa aaa @@ -77162,18 +72451,6 @@ bgr bhQ bjj bkF -cys -cyB -cyB -cyB -cyB -cyB -cyB -cyB -cyB -cyB -czp -czt aaa aaa aaa @@ -77185,9 +72462,21 @@ aaa aaa aaa aaa -QuN aaa -aoV +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag aaa aaa aaa @@ -77419,18 +72708,6 @@ bfa bhQ bjk bkE -cys -cyB -cyB -cyB -cyB -cyS -cyB -cyB -cyB -czf -cys -czu aaa aaa aaa @@ -77442,9 +72719,21 @@ aaa aaa aaa aaa -QuN aaa -aoV +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aag aaa aaa aaa @@ -77676,17 +72965,19 @@ bgs bhQ bjk bkF -cys -cys -cys -cyN -cyQ -cys +aaa +aaa +aaa +aaa +aaa +aaa cyT -cyZ -cys -cys -cys +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -77701,8 +72992,6 @@ aaa aaa aag aaa -aaa -aaa aoV bZm aoV @@ -77956,10 +73245,10 @@ aaa aaa aaa aaa +aaa +aaa aag aaa -aaa -aaa aoV bVz aaf @@ -78213,10 +73502,10 @@ aaa aaa aaa aaa +aaa +aaa aag aaa -aaa -aaa aag bVz aag @@ -78470,10 +73759,10 @@ aaa aaa aaa aaa +aaa +aaa aag aaa -aaa -aaa aaf bVz aoV @@ -78727,9 +74016,9 @@ aaa aaa aaa aaa +aaa +aaa aag -QuU -aoV aaa aaf bVz @@ -78946,7 +74235,7 @@ aLE aOl aPA aQS -aSj +aQN aTB aUr aWq @@ -78984,10 +74273,10 @@ aaa aaf aaf aaf +aaa +aaa aag -QuU -QuX -QuU +aaa bVx caf aoV @@ -79241,11 +74530,11 @@ aaa aaa aaa bCq +bCq +bCq bLv bCq -bCq -bCq -bCq +aoV cbj aoV aag @@ -79500,8 +74789,8 @@ aaa bCq bJP bCq -bTs -Qvc +bSn +bCq bCq cbj bLv @@ -79746,19 +75035,19 @@ aaa aaa aaa aaa -cTg -cTg -cTi -cTg -cTi -cTg -cTg +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa bCq -bHE -bCq -QuY -Qvd +bPS +bRd +bPS +bPS bCq cbk bLv @@ -79958,17 +75247,17 @@ alU ali ali atO -axo -alU -alU -alU -aBQ -aBQ -aBQ -aBQ -aBQ -aBQ -aBQ +axm +ayz +ayz +ayz +aBR +aBR +aBR +aBR +aBR +aBR +aBR aLJ aLE aOl @@ -80003,19 +75292,19 @@ aaa aaa aaa aaa -cTg -bGg -cTo -cMl -bHx -cTx -cTg +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa bLv bPR bRc bSo -Qve +bTs bCq bVy bLv @@ -80217,16 +75506,16 @@ aaf avY axo ayB -QsT -Qta -Qtj -Qto -Qtq -Qtx -QtC -QtK -QtM -aLF +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaa +aKu +aLM aLF aOs aPG @@ -80260,18 +75549,18 @@ bxx bxu bxu bDi -cTi -bGh -bHx -cTo -bHx -bLt -bMF +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa bCq -bHE -bCq -bCq +bPS +bRf +bSo bTu bCq bVB @@ -80473,17 +75762,17 @@ aoV aoV avY axo -ayB -QsU -Qtb -Qtk -Qto -Qtr -Qty -QtD -QtL -aJe -aLE +ayA +aaf +aBa +aBa +aBa +aBa +aBa +aBa +aaf +aKt +aLL bDe aOl aPF @@ -80495,7 +75784,7 @@ aWu aYa aZD aZD -Qpb +hcE aZD aZD bff @@ -80517,18 +75806,18 @@ bzP bAS bxu aaa -cTg -bGg -cTo -cTo -bHx -bLs -cTg +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa bLv -bPU -bCq -bPS +bPT +bRe +bSo bTt bCq bVA @@ -80730,17 +76019,17 @@ aaf aaf avY axo -ayB -QsV -Qtc +ayA +aaa +aBa aBT -Qto +aDs aEN aGb -Qtx -QtM -QtM -aLE +aBa +aaa +aKt +aLN aLE aOl aPH @@ -80774,18 +76063,18 @@ bzR byd bxx aaa -cTg -cTg -cTi +aaa +aaa +aaa bJc -cTi -cTg -cTg +aaa +aaa +aaa aaa bCq bPV bCq -QuY +bCq bTw bCq bVD @@ -80812,7 +76101,7 @@ aaa aaf aaa bCq -bLv +bCq bLv bLv bLv @@ -80986,19 +76275,19 @@ aqQ aqQ aqQ avZ -axo -ayB +axp +ayC azH -Qtd -ayB -ayB -Qts -Qtz +aBb +aBS +aDr +aEM +aGa aHF aJd aKv -QtS -QtU +aLN +aLE aOl aPF aQZ @@ -81014,7 +76303,7 @@ baS bdS bdU ckQ -QoZ +gjl bjq bjr bjr @@ -81040,10 +76329,10 @@ bGi aoV aoV bCq -bPW -QuW +bPU +bHE bSp -Qve +bTv bCq bVC bWx @@ -81069,23 +76358,23 @@ bLv bLv bLv bCq -bJe +ciT cqK crl bLv aaa -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT aaa -aaT -aaT +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -81242,19 +76531,19 @@ aqR aGh aqR aqR -QsR -axq +awb +axo ayA -QsW -Qte -Qtl +aaa +aBa +aBV alu -Qtt +aEM aGd -QtF +aHG aJe aKw -aLE +aLP aMR aNU aPJ @@ -81297,10 +76586,10 @@ bGi aoV aoV bCq -QuT +bPW bCq bCq -bTu +bTy bCq bVF bWA @@ -81331,19 +76620,19 @@ cAQ crm bLv aaa -aaT -ctv -ctv -ctv -ctv -ctv -ctv -ctv -aaT -Qoi -ctv -aaT -aaT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -81499,19 +76788,19 @@ aqQ aqQ aqQ aqQ -avZ -axp +awa +axq ayD azI -Qtf +aBc aBU -aBU -Qtu +aDt +aEO aGc -QtG -aJe +aHF +aJd aKb -aLE +aLN aMQ aNT aPI @@ -81555,8 +76844,8 @@ aoV aoV bCq bHE -bPU -Qva +bHE +bSq bTx bCq bVE @@ -81585,22 +76874,22 @@ bLv bCq cqv cqL -ciT -bCq -Qoi -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -aaT -Qoi -ctv -ctv -aaT +bJe +bLv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -81758,17 +77047,17 @@ aaa aag avY axo -ayD -QsX -Qtg +ayA +aaa +aBa aBW aDv aEP aGe -QtH -QtM -QtM -aLE +aBa +aaa +aKt +aLN aMS aOt aPK @@ -81785,7 +77074,7 @@ bcS bbt bfi beD -QoZ +gjl aZE biA bmg @@ -81814,20 +77103,20 @@ bCq bPY cOw bCq -Qvf -Qvf -Qvf -Qvf -Qvf -Qwa -Qvf -Qvf -Qvf -Qvf -Qvf -Qvf -Qvf -Qvf +wLW +wLW +wLW +wLW +wLW +piD +wLW +wLW +wLW +wLW +wLW +wLW +wLW +wLW bUs bLv aaa @@ -81844,19 +77133,19 @@ bCq bCq bCq bCq -Qoi -Qoi -Qoi -aaa -aaa -Qoi aaa aaa aaa -Qoi -Qoi -Qoi -Qoi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -82015,17 +77304,17 @@ aaa aag avY axo -ayD -QsY -Qth -Qtm -aDv -Qtv -QtA -QtI -QtO -aJe -aLE +ayA +aaf +aBa +aBa +aBa +aBa +aBa +aBa +aaf +aKt +aLN aMS aOi aLE @@ -82035,13 +77324,13 @@ aTH aPK aWz aWC -QoZ -QoZ -QoZ +gjl +gjl +gjl bcT -QoZ -QoZ -QoZ +gjl +gjl +gjl aZE bju biv @@ -82071,20 +77360,20 @@ bCq bPX bRg bRg -Qvf -Qvn +wLW +hha bVG -QvF -QvQ -Qvn -Qwm -Qvf -Qvn -QwJ +hGx +rlF +hha +pfG +wLW +hha +tiQ bVG -Qvn -Qxf -Qvf +hha +gsc +wLW bUs bLv aaa @@ -82099,20 +77388,20 @@ aaa aaa aaf aaf -Qxs +cig +aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa -QxB -bij -bij -bij -bij -bij -bij -QxZ -btG -btG aaa -Qoi aaa aaa aaa @@ -82255,15 +77544,15 @@ aaa aaa aaa aaa -akD -akD -ajX -akD -akD -ajX -akD -akD -akD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -82271,18 +77560,18 @@ aaa aaa aag avY -axo -ayD -QsZ -Qti -Qtn -aDv -Qtw -QtB -QtJ -QtP -QtM -aLE +axs +ayF +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaa +aKx +aLN aMS aOi aLE @@ -82313,7 +77602,7 @@ bOL bxy byF bwW -Qyh +bGm bCo bDk bEK @@ -82328,20 +77617,20 @@ bLv bQa bHE bHE -Qvf -Qvo -Qvv -QvG -QvR -Qwc -QvR -Qwx -QvR -QvR -QwQ -QwN -Qxg -Qvf +wLW +pMN +wwN +jZW +vQi +yap +vQi +pAp +vQi +vQi +fFO +jjw +uCK +wLW bUs bLv aaf @@ -82353,25 +77642,25 @@ cjJ cjJ cjJ cjJ -Qxm -bij -bij +cjJ +cjJ +aaa crn -bij -QxC -QxH -QxK -QxP -bkI -bgN -bgN -Qya -bgN -btG -Qoi -aaT -aaT -aaT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -82512,15 +77801,15 @@ aaa aaa aaa aaa -ajX -akC -alj -alY -amI -amI -anM -aop -aoY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -82528,17 +77817,17 @@ aaf arP avd avZ -axo -arP -arP -arP -arP -arP -arP -arP -arP -arP -arP +axr +ayE +ayE +ayE +ayE +ayE +ayE +ayE +ayE +ayE +ayE aLl aMT aOi @@ -82568,7 +77857,7 @@ bjv btv buc bxz -QoP +eVL bwV byy bBa @@ -82585,20 +77874,20 @@ bLv bPZ bHE bHE -Qvi -Qvp -Qvw -QvH -QvS -Qwd -Qwo -Qwy -Qwo -QwL -QwR +dfb +oJp +col +tCT +imC +oln +jxK +spC +jxK +jpk +oPZ cCa -Qvn -Qvf +hha +wLW bUs bLv aaa @@ -82611,24 +77900,24 @@ cnL cov cpj cpS -btG -Qxp -Qxt -btG -QxD -bsc -QxL -QxQ -bgN -QxU -QxV -QxW -bgN -btG +cjJ +aaa +crn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa -aaT -ctv -aaT aaa aaa aaa @@ -82769,15 +78058,15 @@ aaa aaa aaa aaa -ajX -akF -alm -akD -cLI -amI -amI -aop -aoY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -82842,20 +78131,20 @@ bLv bHE bHE bSs -Qvf -Qvq -Qvx -QvI -QvT -Qvx -Qvn -Qwz -QwF +wLW +vge +rim +mUr +ddY +rim +hha +hKM +tPB cCa -QwS -Qxa -Qxh -Qvf +wVC +rjn +kVC +wLW bUs bLv aaa @@ -82868,24 +78157,24 @@ cnN cox cpl cpU -btF -bsc -Qxu -btF -bsc -QxI -QxL -QxR -bgN -QxV -bgN -Qyc -bgN -btG -Qoi -aaT -ctv -aaT +cjJ +aaf +crn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -83026,15 +78315,15 @@ aaa aaa aaa aaa -ajX -akE -all -alZ -amJ -anr -amI -aop -aoY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa arP @@ -83079,10 +78368,10 @@ bnz bpA bbR bkM -bqs +jlm bud -QoO -byE +eyM +kSb bAZ bGm bzF @@ -83099,20 +78388,20 @@ bCq bHE bRh bLu -Qvf -Qvr -Qvy -QvJ -QvU -Qwf -Qwp -Qvf -Qvn -QwM -QwS -Qxa -Qxi -Qvf +wLW +eFo +pUu +nkD +hYa +puH +eJr +wLW +hha +wyl +wVC +rjn +twi +wLW bUs bLv aaf @@ -83125,24 +78414,24 @@ cnM cow cpk cpT -btG -Qxq -Qxv -btG -QxE -bsc -QxL -QxQ -bgN -QxW -QxV -QxU -bgN -btG +cjJ +aaa +crn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa -aaT -ctv -aaT aaa aaa aaa @@ -83277,21 +78566,21 @@ abc abc afu abc -abc -abc -abc -abc -Qoi aaa -akD -akD -alo -akD -akD -akD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa anO -akD -akD +aaa +aaa aaa aaa arP @@ -83356,20 +78645,20 @@ bCq bOK bCq bCq -Qvf -Qvs -Qvz -QvK -QvV -Qwg -Qvf -Qvf -Qvn +wLW +ifm +jor +jav +jyt +pYQ +wLW +wLW +hha cCa -QwU -Qxc +eXt +jrj cCa -Qvf +wLW bUs bLv aaa @@ -83381,25 +78670,25 @@ cnq cnP coz cpn -Qxn -Qxo -Qxo -Qxw -Qxo -QxF -QxJ -QxO -QxT -bmw -bgN -bgN -Qye -bgN -btG +cjJ +cjJ +aaa +crn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa -aaT -ctv -aaT aaa aaa aaa @@ -83533,13 +78822,13 @@ abc aea aeH aft -Qrr -Qrs -Qru -QrA +iWe +nbe +vtB +iIs abc -Qoi -Qoi +gXs +gXs aaa aiU aln @@ -83593,7 +78882,7 @@ boR bqs bbR bkM -Qyg +bbR bwd bxB bvL @@ -83614,19 +78903,19 @@ bHE bLv aaa bLv -Qvt -Qvz -Qvf -Qvf -Qvf -Qvf -Qvn -Qvn -Qvn -QwV +hsl +jor +wLW +wLW +wLW +wLW +hha +hha +hha +ord cCa -Qxj -Qvf +tje +wLW bUs bLv aaa @@ -83641,21 +78930,20 @@ cpm cjJ aaf aaf -Qxx +crn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa -QxG -bgO -bgO -bgO -bgO -bgO -bgO -Qyf -btG -btG -Qoi aaT -ctv aaT aaa aaa @@ -83709,6 +78997,7 @@ aaa aaa aaa aaa +aaa "} (92,1,1) = {" aaa @@ -83792,8 +79081,8 @@ aeJ afw abc abc -Qrv -QrB +tsG +oYL abc aaf aaf @@ -83871,19 +79160,19 @@ bHE bLv aaf bLv -Qvt -Qvz -QvM -QvX -Qwi -Qws -Qvn -QwF -QwN -QwW -Qvn -Qvn -Qvf +hsl +jor +thm +wqK +rIV +gvr +hha +tPB +jjw +eCq +hha +hha +wLW bUs bLv aaf @@ -83898,22 +79187,22 @@ cjJ cjJ aaa aaa -Qxx +crn aaf -aaa -aaa -aaa -Qoi -aaa -aaa -Qoi -Qoi -Qoi -aaa -aoV aaT +aaT +aaT +aaT +aaT +aaT +aaT +aaT +aaT +aaa +aaf ctv aaT +aaT aaa aaa aaa @@ -84049,19 +79338,19 @@ aeI afv agf abc -Qrw -QrC +jCi +nYB abc aiT aiT aiV -akG +aiU cxJ aiU -amK +aiT aiU cxP -aoq +aiU aiV aiT aiT @@ -84128,19 +79417,19 @@ bLv bCq aaa bLv -Qvt -Qvz -QvN -QvY -Qwj -Qvf -QwB -QwH -QwO -QwX -Qxd -Qxk -Qvf +hsl +jor +vBu +sIn +dMt +wLW +hUv +mYW +bgx +jnB +vgI +ulx +wLW bUs bCq aaa @@ -84155,21 +79444,21 @@ cpo cjJ aaa aaa -Qxx +crn aaf -Qoi -aaa -aaa -Qoi -aaa -aaa -Qoi -Qoi -Qoi -Qoi -aoV aaT ctv +ctv +ctv +ctv +ctv +ctv +ctv +aaT +aaa +aaf +ctv +ctv aaT aaa aaa @@ -84306,9 +79595,9 @@ aeL afy agh abc -Qrx -Qrx -Qrx +wzL +wzL +wzL aiV ajs akb @@ -84386,17 +79675,17 @@ aaa aaa bTB bUv -QvD -QvO -QvO -QvO -QvO -QvO -QvO -QvO -QvO -QvO -QvO +gLh +wPM +wPM +wPM +wPM +wPM +wPM +wPM +wPM +wPM +wPM car bUs bCq @@ -84414,20 +79703,20 @@ aaf aaf cig aaf -Qoi -aaa -aaa -Qoi -aaa -aaa -Qoi -aaa -Qoi +aaT +aaT +aaT +aaT +aaT +aaT +aaT +aaT +aaT aaf aaf -aaT -aaT -aaT +aaf +aaf +aaa aaa aaa aaa @@ -84563,9 +79852,9 @@ aeK afx agg abc -Qrx -QrE -Qrx +wzL +hMS +wzL aiV ajr aka @@ -84682,7 +79971,7 @@ aaa aaa aaa aaf -Qoi +aaa aaa aaa aaa @@ -84820,9 +80109,9 @@ aeN afA afA afA -Qrx -Qrx -Qrx +wzL +wzL +wzL aiV aju akd @@ -86182,8 +81471,8 @@ aaf aaf bJQ bLg -cCg -cCg +cem +cem bNg bVI bWE @@ -86884,7 +82173,7 @@ auj akl akO alx -Qsf +pcC amg aiX anw @@ -86952,8 +82241,8 @@ bCs cCe bNJ apV -cjL -bNJ +xhV +gWd bNI bUz bVJ @@ -86997,7 +82286,7 @@ aaf aaT aaT aaT -Qoi +gXs aaf aaf aaf @@ -87210,9 +82499,9 @@ bNJ bNJ bKx cjL -bNJ +gbq bNI -bUA +bUz bVJ bWH bXE @@ -87396,9 +82685,9 @@ aiF agj ajD akm -Qsa +vWg aly -Qsg +tkh amQ aiX anw @@ -87467,7 +82756,7 @@ bNL bNJ apV cjL -bNJ +nxv bNI bUz bVJ @@ -87512,9 +82801,9 @@ ccw ccw ccw aaa -Qod +eRz aaT -Qod +eRz aaa aaa aaa @@ -87655,7 +82944,7 @@ aja akl akP alx -Qsf +pcC ami aiX anw @@ -87693,9 +82982,9 @@ aZP bbh bcc bdd -QtV -bfr bbX +bfr +bgM bif aZM aZM @@ -87710,7 +82999,7 @@ bmr bmr byQ aJq -bBi +aJq bCs bDy bFb @@ -87723,7 +83012,7 @@ bCs cCd bQc bKA -cjL +rKP bSv bNI bUB @@ -87762,11 +83051,11 @@ cqb cAo cGt cgx -QoA +jMY csd cHa csd -QoH +uhH ccw aaa aaT @@ -87909,7 +83198,7 @@ agP agP aiz ajg -QrV +ogc akQ agj agj @@ -87952,7 +83241,7 @@ bbk bbk bbk bfs -QtW +aZM aZM aZM aaf @@ -88019,8 +83308,8 @@ cFJ cSH cGu cGH -QoB -QoB +fsQ +fsQ cGR csd csd @@ -88147,7 +83436,7 @@ aaa aaa aaf aaf -Qqw +iGk aaf aai abi @@ -88169,7 +83458,7 @@ ajb ajF akN alw -Qsh +tzD amQ aiX anw @@ -88209,19 +83498,19 @@ bce bdf beb aYv -QtX -Quh aaf aaf -Qoi +aaf +aaf aaa -Qoi aaa -Quu -Quu -Quu -Quu -Quu +aaa +aaa +aaf +aaa +aaa +aaa +aJn aXf aJq byU @@ -88280,7 +83569,7 @@ cGS cHb cHg cHn -QoI +oDF ccw aaf aaT @@ -88405,7 +83694,7 @@ aaf aaf aaf aaS -aaR +aaf aaZ aaZ aaZ @@ -88420,16 +83709,16 @@ agn agR agn agR -QrJ +gyg agn -QrO +dUX akv -Qsb -Qsd +oLz +daP aww amk aiX -Qsw +qCU aov aph aqb @@ -88466,22 +83755,22 @@ aZR bbm bec bfu -QtY -aBb -aBb +bgO +bgO +bgO bmu -aBb -aBb -Quq -aaa -Quu -Quw -QuD -QuG -Quu -QuK +bgO +bgO +bgO +bgO +bsb +aaf +aaf +aaf +aJn +aXf +aJq aJq -bBi bCs bFa bFa @@ -88531,7 +83820,7 @@ cEz cMD cFL cGf -Qov +kQq cMm ciZ cHc @@ -88661,26 +83950,26 @@ aaa aaa aaa aaf -Qqw +iGk aaf aaZ -QqI -QqT -Qrc +pOx +xNI +lIg aaZ cpg acv adi -Qrp +piS aaZ aeW -Qrt +mLe ahv ahQ -QrK aiI +agR ajI -QrW +wZq akQ agj agj @@ -88723,22 +84012,22 @@ aZR aZR aZR bft -QtX -aBa -Quj +bgN +bgN +bgN bmv -Qum +bkI bnT bpg -aaa -Quu -Qux +bqD +bsa +bgO buP bwm bxH byS aJq -QuM +aMh bCs bCs bCs @@ -88788,7 +84077,7 @@ cFe cMD cFM czE -Qov +kQq ccw cGT csd @@ -88918,29 +84207,29 @@ aaa aaa aaa aaf -Qqw +iGk aaf aaZ -QqI -QqU -Qrc +pOx +eug +lIg aaZ acl cxA acL -Qrq +qHL aaZ agp agT ahx ahS aiK -QrN -QrO +qwN +dUX akm akT aly -Qsi +nrf amQ aiX anw @@ -88980,16 +84269,16 @@ bbm bdh bee bfv -QtX -aBa +bgN +bih big -aEM -aEM -aGa +bii +bgN +bnV bph bqF bsd -Quy +btG buQ bwn bxI @@ -89175,14 +84464,14 @@ aaa aaa aaa aaf -Qqw +iGk aaf aaZ -QqI -QqV -Qre +pOx +sAS +iMh aaZ -Qrk +nHr adk adK cqG @@ -89197,19 +84486,19 @@ ajI akl akS alx -Qsf +pcC amp aiX anS aoy -QsH -QsK -QsK -QsK -QsK -QsK -QsK -QsS +fbG +tbp +anz +anz +anz +anz +anz +awk axB anz anz @@ -89237,19 +84526,19 @@ bcf bdg bed bfv -QtX -aBa -aBV +bgN +big +bgN bkZ -Qun +bgN bnU -aHG +bph bqE -Quv -Quz -QuE -QuH -QuJ +bsc +btF +bph +bsc +btF bvW bAf bBp @@ -89307,7 +84596,7 @@ cMm cGV csd cGV -QoG +noK csd ccw aaa @@ -89432,14 +84721,14 @@ aaa aaa aaa aaf -Qqw +iGk aaf aaZ -QqI -QqU -Qrf +pOx +eug +lgA aaZ -Qrl +jIa acM adQ cwM @@ -89448,16 +84737,16 @@ agr agU ahy ahX -QrL +lMP aiN -QrQ +nab akq akQ agj agj agj aiX -Qsx +anA aoz apm aqd @@ -89494,16 +84783,16 @@ bbm bdh bef bfv -QtX -aBa -Quk -aEO -Quo +bgN +bii +big +bih +bgN bnV -Qur -Qut +bph +bqF bsf -QuA +btG buS bwp bxK @@ -89689,14 +84978,14 @@ aaa aaa aaa aaf -Qqw +iGk aaf aaZ -QqM -QqX -Qrf +lAE +xKy +lgA aaZ -Qrm +vQk coS aet cxA @@ -89707,17 +84996,17 @@ ahz aie agt aiM -QrR +mQi akp akU alz aml amT aiX -Qsy -QsE +wno +dLC apl -aqc +dpO aqc aqc aqc @@ -89751,16 +85040,16 @@ aZR aZR aZR bfw -QtX -aBa -Qul +bgN +bgN +bgN bjy -Qup +bmw bnW bpi -aaa -Quu -QuB +bqG +bse +bij buR bwo bxJ @@ -89816,7 +85105,7 @@ cFh cMD cFM czE -Qov +kQq ccw cGT csd @@ -89946,14 +85235,14 @@ aaa aaa aaa aaf -Qqw +iGk aaf aaZ -QqN -QqY -Qrh +vsn +gxj +deX abQ -Qrn +vDd adj arc blT @@ -89962,17 +85251,17 @@ cml agV cxk aig -QrM +jDT agn -QrS -QrX +pYG +jGf akV alB amn amV -Qsr +txz anB -Qsn +pNR aod aqf ahT @@ -89982,11 +85271,11 @@ ahT ahT awn axF -anF -anF -anF -anF -anF +wsw +wsw +wsw +wsw +xKl anF anF aoa @@ -90008,20 +85297,20 @@ aZR bbm beh bfx -Que -aBc -aBc +bij +bij +bij bgR -aBc -aBc -Qus -aaa -Quu -QuC -QuF -QuI -Quu -QuL +bij +bij +bij +bij +bsg +aaf +aaf +aaf +aJn +aJq aJq bBu bCv @@ -90073,7 +85362,7 @@ cEz cMD cFR cSJ -Qov +kQq cMm ciZ cHd @@ -90203,14 +85492,14 @@ aaa aaa aaa aaf -Qqw +iGk aaf aaZ -QqO +myc ack -Qri +gus abN -Qro +tlu acF acF aes @@ -90221,13 +85510,13 @@ ahB aHp agn agn -QrT -QrY +nRX +oUa amS alA -Qsj +rnh amm -Qss +xmc anT anT aod @@ -90241,10 +85530,10 @@ arf arf arf arf -arf -arf -arf -arf +iZT +iZT +iZT +iZT anF ahn aJn @@ -90265,19 +85554,19 @@ bcg aZU beg aYB -QtX -Quh aaf aaf -Qoi +aaf +aaf aaa -Qoi aaa -Quu -Quu -Quu -Quu -Quu +aaa +aaa +aaf +aaa +aaa +aaa +aJn aJq aJq bBt @@ -90330,13 +85619,13 @@ cFj cEf cFS cGg -Qoz +mBv cGI cGS cHe cHe cHr -QoI +oDF ccw aaf aaT @@ -90460,12 +85749,12 @@ aaa aaa aaa aaf -Qqw +iGk aaf aaZ -QqP -QqZ -Qrj +nOh +kpR +ofR aci acm cpA @@ -90482,10 +85771,10 @@ ajJ akr akX alC -Qsk -Qsk -Qsk -Qsk +srs +srs +srs +srs aoB aod aqe @@ -90498,10 +85787,10 @@ atf arf aqa atf -arf -aqa -atf -arf +iZT +edf +vXH +iZT anF ahn aaa @@ -90522,7 +85811,7 @@ bbp bbp bbp bfz -Qug +aZV aZV aZV aaf @@ -90589,8 +85878,8 @@ cFT cSK cGx cGK -QoC -QoC +nzh +nzh cGY csd csd @@ -90721,7 +86010,7 @@ aaZ aaZ aaZ aaZ -Qra +pRC avB aaZ aaZ @@ -90738,14 +86027,14 @@ ajd ajb ahY akX -Qse +dZd amo -Qsk -Qsk -Qsz -QsG -QsI -QsL +srs +srs +jXb +rWO +obc +diE arf apY ate @@ -90755,10 +86044,10 @@ ath arf apY ath -arf -apY -ate -arf +iZT +wIt +wXZ +iZT anF ahn aaa @@ -90779,7 +86068,7 @@ bch bdi bei bfy -bbw +bgS bik aZV aZV @@ -90846,11 +86135,11 @@ cqb cGh cGC cey -QoD +ijc csd cEk csd -QoK +udp ccw aaf aaT @@ -90975,9 +86264,9 @@ aaa aaa aaa abp -QqF -QqF -QqQ +oFO +oFO +ogm abO abO acO @@ -90985,21 +86274,21 @@ abO abO abO afc -afQ +abo agw agY ahA ahZ adR aiQ -QrO +dUX akt -Qsc +jME anw -Qse -Qsn +dZd +pNR anB -QsA +iFh aoD aod aqe @@ -91012,10 +86301,10 @@ ath arf ayV ath -arf +iZT aCd -ath -arf +wXZ +iZT anF ahn aJw @@ -91253,10 +86542,10 @@ ajK aks akY anA -Qse -Qso +dZd +wyo amo -QsA +iFh aoC aod aqe @@ -91269,10 +86558,10 @@ awo arf asd aAb -arf -asd -aDK -arf +iZT +jsM +wXZ +iZT aoa ahn aJv @@ -91491,11 +86780,11 @@ aaa abp abO abO -QqR -QqR -QqR -QqR -QqR +tJn +tJn +tJn +tJn +tJn abO aew afe @@ -91507,13 +86796,13 @@ aia aiP aiR ajB -QrZ +fJA aiX akz alf -Qsp -Qsp -QsC +kqC +kqC +rdk aoF apo aqh @@ -91527,8 +86816,8 @@ aul azc atj aAX -azc -atj +aul +aul aFe aul aHT @@ -91623,7 +86912,7 @@ aaf aaf aaf aaf -Qoi +gXs aaf aaf aaf @@ -91768,11 +87057,11 @@ aku aiX alE amq -Qsq -Qsu -QsD +mOK +hWV +jVE aoE -QsJ +hyy aqg aun asf @@ -92004,12 +87293,12 @@ aaa aaa abp aco -QqH -QqS +dIm +dza abR -QqS -QqS -QqS +dza +dza +dza abl abp abp @@ -92907,7 +88196,7 @@ aaa aaa aaa aaa -Qod +eRz aaa aaa aaa @@ -93164,7 +88453,7 @@ aae aaa aaa aaa -Qod +eRz aaa aaa aaa @@ -93421,7 +88710,7 @@ aaa aaa aaa aaa -Qof +quT aaa aaa aaa @@ -93678,7 +88967,7 @@ aaa aaa aaa aaa -Qod +eRz aaa aaa aaa @@ -93852,7 +89141,7 @@ aCr aCr aJC bYP -bbx +aQg aJC aQg aJC @@ -93935,7 +89224,7 @@ aaa aaa aaa aaa -Qof +quT aaa aaa aaa @@ -94192,7 +89481,7 @@ aaa aaa aaa aaa -Qoi +gXs aaa aaa aaa @@ -94449,7 +89738,7 @@ aaa aaa aaa aaa -Qof +quT aaa aaa aaa @@ -94577,7 +89866,7 @@ aaa aaa aaa aaa -acw +aag abp abp adR @@ -94706,7 +89995,7 @@ aaa aaa aaa aaa -Qod +eRz aaa aaa aaa @@ -94836,7 +90125,7 @@ aaa aaf aag acU -adr +afn acU aeC afn @@ -94963,7 +90252,7 @@ aaa aaa aaa aaa -Qol +jAD aaa aaa aaa @@ -95167,7 +90456,7 @@ bvh bzS bBc bCJ -QoU +gZG cCp bvd bKH @@ -95220,7 +90509,7 @@ aaa aaa aaa aaa -Qod +eRz aaa aaa aaa @@ -95477,7 +90766,7 @@ aaa aaa aaa aaa -Qod +eRz aaa aaa aaa @@ -95624,7 +90913,7 @@ aaa aaa aaf ahn -anG +anF aoe aoL apy @@ -95734,7 +91023,7 @@ aaa aaa aaa aaa -Qof +quT aaa aaa aaa @@ -95991,7 +91280,7 @@ aaa aaa aaa aaa -Qod +eRz aaa aaa aaa @@ -96160,7 +91449,7 @@ aGI aId aJD aKP -aOL +aMx aNJ aQe aOL @@ -96248,7 +91537,7 @@ aaa aaa aaa aaa -Qof +quT aaa aaa aaa @@ -96417,7 +91706,7 @@ aGH aIc aJC aKO -aQc +aMw aNI aMw aOK @@ -96505,7 +91794,7 @@ aaa aaa aaa aaa -Qof +quT aaa aaa aaa @@ -96674,7 +91963,7 @@ aGJ aIe aJC aJC -QtT +aJC aJC aJC aJC @@ -96762,7 +92051,7 @@ aaa aaa aaa aaa -Qol +jAD aaa aaa aaa @@ -96931,7 +92220,7 @@ aGJ aIe aJE aKQ -aKR +aLU aNu aJC aPw @@ -97700,11 +92989,11 @@ aaa alP aGL aIe -QtQ -aKR -aKR +aJC +aKS aMC aJC +aJC aJI aJI aSI @@ -97958,16 +93247,16 @@ alP aGL aIg aJH -QtR aKR aMB aJC +aOP +aJI aRA aVz aVz aVz aVz -aVz aYJ aJI bbz @@ -97993,7 +93282,7 @@ bAu bvj bCN bEa -QoY +pHl bFA bIm bJD @@ -98986,7 +94275,7 @@ alP aGL aHY aQj -QoL +iNn aMk aNK aOM @@ -99244,7 +94533,7 @@ aGL avI aJK aKV -QoT +tMl aMl aMF aJI @@ -99261,9 +94550,9 @@ bdp bdc bfL beY -biz -biz -biz +bhm +bhm +bhm bkR bfL boo @@ -99743,7 +95032,7 @@ aag alO arp alO -anf +awD anf anf awD @@ -100005,12 +95294,12 @@ anf anf aEl anf -alP -alP -alP -alP -alP -alP +cVb +cVb +cVb +cVb +cVb +cVb aGQ aIk aIp @@ -100022,7 +95311,7 @@ aJI aJI aSP aUh -QoM +aJI aJI aJI aJI @@ -100262,12 +95551,12 @@ auC alP anf anf -alP -arA -anf -alP -atw -alP +cVb +jbf +wrp +fnC +kPd +xiw aGS aIm aIp @@ -100519,13 +95808,13 @@ anf alP awE anf -apE -anf -anf -alP -anf -alP -aCE +cVb +vCb +wUY +khb +sxs +tal +aCI aIj aJB aKD @@ -100776,12 +96065,12 @@ apC apC alP anf -alP -alP -alP -alP -awD -ayf +cVb +cVb +cVb +cVb +cVb +wBd aGC aIl aIq @@ -101831,9 +97120,9 @@ bci beB bfS bfS -QoV -QoW -QoX +kQk +ipA +gbT cTO bmZ bon @@ -102063,7 +97352,7 @@ aoP auF azr anf -anf +atw alP alP aFo @@ -102887,7 +98176,7 @@ bIP bPA bJN bRU -bSZ +bEm bEm bJN bRU @@ -102895,7 +98184,7 @@ bXe bEm bJN bRU -bSZ +bEm bEm bDb cgi @@ -103081,7 +98370,7 @@ aaf aaf aaf apC -anf +arA anf asx anf @@ -105457,7 +100746,7 @@ bOx bPJ bJN bEm -bSZ +bEm bRU bJN bEm @@ -105465,7 +100754,7 @@ bXe bRU bJN bEm -bSZ +bEm bRU bDb aaf @@ -106674,8 +101963,8 @@ aaf aaf aaf aaf -alP -Qsv +aaf +aaf alP anf alP @@ -106931,8 +102220,8 @@ aaa aaa aaa aaa -alP -alP +aaa +aaf alP anf alP @@ -108549,7 +103838,7 @@ bOB bPs bYo bSc -Qqj +pNx cbd ccT bSc @@ -108795,20 +104084,20 @@ bEC bMv bNv bMv -Qpo -Qpp -Qpp -Qpp -Qpp -Qpp -QpS -QpY +bSl +wkN +wkN +wkN +wkN +wkN +lAB +lQG bPb bQG -QpS -Qpp -Qpp -Qpo +lAB +wkN +wkN +bSl bQZ bQZ bQZ @@ -109052,20 +104341,20 @@ bLi bMz bNy bOH -Qpp +wkN bQY -QpC +vzp bTo bUp -QpP -QpT -QpE +mNi +mRe +bXs bPL bQI bTo -Qql +eaI cbZ -Qpo +bSl cmo cNW cOx @@ -109309,20 +104598,20 @@ bFU bMy bNx bOG -Qpp -Qpx +wkN +uoB bSk -QpE -QpE -QpQ -QpU -QpU +bXs +bXs +lMg +qeQ +qeQ bPF bQI -QpE -Qqm +bXs +sSW cbY -Qpo +bSl cOe cNW cNW @@ -109566,20 +104855,20 @@ bFU bMA bNz bOI -Qpp +wkN bRa -QpD +cbe bTp -QpM +vCt bVs -Qqv +fKl bXt bPM bZh -Qqh -QpD -Qqp -Qpo +itG +cbe +wvX +bSl cOe ceS cae @@ -109823,25 +105112,25 @@ bEC bEC bEC bEC -Qpo -Qpy -QpE -QpE -QpE -QpR -QpW -Qqa -Qqc -QpE -QpE -QpE -QpE -Qpo +bSl +dMZ +bXs +bXs +bXs +gwd +ycu +oHU +uNu +bXs +bXs +bXs +bXs +bSl cOe ceR cbf cbv -Qqt +uVS cQw cjD cjD @@ -110080,25 +105369,25 @@ cNW bMB bNA cOe -Qpo +bSl bRb -QpF -QpJ +flc +vPE bUq bVt -QpX -Qqb -Qqd -Qqe -Qqi -Qqn -Qqq -Qpo +dfh +jSO +jgm +oUh +qpv +jrE +saK +bSl cOx -Qqr +sLv ckS cNW -Qqu +jVl cds cjD ckt @@ -110336,21 +105625,21 @@ bKb cNX cNZ cNZ -Qpj -Qpo -Qpo -Qpo -Qpo -Qpo -Qpo -Qpo -Qpo -Qpo -Qpo -Qpo -Qpo -Qpo -Qpo +jCq +bSl +bSl +bSl +bSl +bSl +bSl +bSl +bSl +bSl +bSl +bSl +bSl +bSl +bSl cNW cgr cNW @@ -110593,9 +105882,9 @@ bKd cNY bMC cOb -Qpk +jHt bPO -QpA +kob bSm bTr bTr @@ -110609,7 +105898,7 @@ cbg bTr bTr bTr -Qqs +nGt cbg bTr cct @@ -110850,7 +106139,7 @@ bEs bEs bEs cNW -Qpl +sOs cNW cNW cNW @@ -111107,7 +106396,7 @@ bKf bLk bEs bNC -Qpm +nRG cbf cbf cbf @@ -111580,23 +106869,23 @@ aaa aaa aaa aaa -cwI -cwI -cwI -cxg -cwI +aaa +aaa +aaa +aaa +aaa afa -cwI -crx -crx -crx -cwI -cxK -cwI -cxK -cwI -cwI -cwI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -111620,9 +106909,9 @@ bIW bKe bLm bEs -Qpi -Qpn -Qpv +rmX +xIa +vxh cNW aaa aaa @@ -111631,7 +106920,7 @@ aaa aaf cNW bYs -Qpm +nRG ciJ cbf cbf @@ -111834,27 +107123,27 @@ aaa aaa aaa aaa -cwI -cwI -cwI -cwI -cwY -cxd -cxe -cwI -cLO -anq -anq -anq -anq -anq -cLS -cwI -cxQ -cLU -cxU -cwI -cwI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -112090,28 +107379,28 @@ aae aaa aaa aaa -cwI -crO -cwK -cwP -cwI -cwY -cxe -cxh -cwI -cxo -cwL -cwL -cwL -cwL -cwL -cxL -cwI -cxQ -cxQ -cxU -cxX -cxZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -112347,28 +107636,28 @@ aaa aaa aaa aaa -crx -crN -cwJ -cwO -cwI -cwY -cxe -cxh -cwI -cwL -cxq -cxq -cxq -cxq -cxq -cwL -cxM -cxQ -cxQ -cxV -cxX -cxZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -112604,28 +107893,28 @@ aaa aaa aaa aaa -crx -cwF -cwL -cwR -cwI -crx -cxf -crx -cxm -cwL -cxr -cxr -cxr -cxr -cxr -cwL -cwI -cxR -cLV -cxV -cxX -cxZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -112861,28 +108150,28 @@ aaa aaa aaa aaa -crx -crQ -cwL -cwQ -cwI -cwZ -cwL -cxi -cLN -cwL -cwL -cwL -cwL -cwL -cwL -cLT -cwW -cwI -cwI -cwI -cxX -cxZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -113118,28 +108407,28 @@ aaa aaa aaa aaa -crx -cwF -cwL -cwL -cwX -cwL -cwL -anq -cxj -cwL -cxq -cxq -cxq -cxq -cxq -cwL -crx -cxc -cLW -cxc -cxX -cxZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -113375,28 +108664,28 @@ aaa aaa aaa aaa -crx -cwG -amB -amB -cwW -cxa -cwL -cxj -cxj -cwL -cxr -cxr -cxr -cxr -cxr -cwL -cxO -cxa -cxa -cxa -cxX -cxZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -113632,28 +108921,28 @@ aaa aaa aaa aaa -cwI -crO -cwN -cwS -cwI -cxc -cwL -cwL -cwL -cwL -cwL -cwL -cwL -cwL -cwL -cwL -crx -cxa -cxa -cxa -cxX -cxZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -113890,27 +109179,27 @@ aaa aaa aaa aaa -cwI -cwI -cwI -cwI -cxb -cLM -cxa -cxa -cxp -cxs -cxs -cxs -cxs -cxs -cxp -crx -cxS -cxT -cxS -cwI -cwI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -114150,23 +109439,23 @@ aaa aaa aaa aaa -cwI -crx -cwI -crx -cwI -cwI -cwI -crx -crx -crx -cwI -cwI -cwI -crx -cwI -crx -cwI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa diff --git a/_maps/cit_map_files/Deltastation/DeltaStation2.dmm b/_maps/cit_map_files/Deltastation/DeltaStation2.dmm index 97e633e4fb..6ca1e95cb9 100644 --- a/_maps/cit_map_files/Deltastation/DeltaStation2.dmm +++ b/_maps/cit_map_files/Deltastation/DeltaStation2.dmm @@ -112,27 +112,6 @@ /obj/structure/cable, /turf/open/space, /area/solar/starboard/fore) -"aap" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/shuttle/abandoned) -"aaq" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/abandoned) -"aar" = ( -/obj/machinery/door/airlock/titanium{ - cyclelinkeddir = 2; - name = "External Airlock" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/blood/tracks, -/turf/open/floor/plasteel/neutral, -/area/shuttle/abandoned) "aas" = ( /obj/docking_port/stationary/random{ id = "pod_lavaland1"; @@ -152,40 +131,6 @@ /obj/effect/landmark/xeno_spawn, /turf/open/space, /area/solar/starboard/fore) -"aav" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"aaw" = ( -/obj/structure/shuttle/engine/heater{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/shuttle/abandoned) -"aax" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/effect/decal/cleanable/blood/tracks, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/neutral, -/area/shuttle/abandoned) -"aay" = ( -/obj/structure/sign/vacuum, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/abandoned) -"aaz" = ( -/obj/structure/window/reinforced, -/obj/structure/shuttle/engine/heater{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/shuttle/abandoned) "aaA" = ( /turf/closed/wall/mineral/titanium, /area/shuttle/pod_1) @@ -204,108 +149,6 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"aaF" = ( -/obj/structure/closet/firecloset/full, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plating, -/area/shuttle/abandoned) -"aaG" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/reagent_dispensers/watertank/high, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plating, -/area/shuttle/abandoned) -"aaH" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/greenblue/side{ - dir = 1 - }, -/area/shuttle/abandoned) -"aaI" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/circuitboard/machine/hydroponics, -/turf/open/floor/plasteel/greenblue/side{ - dir = 5 - }, -/area/shuttle/abandoned) -"aaJ" = ( -/obj/machinery/door/airlock/titanium{ - cyclelinkeddir = 1; - glass = 1; - name = "Internal Airlock" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/blood/tracks, -/turf/open/floor/plasteel/neutral, -/area/shuttle/abandoned) -"aaK" = ( -/obj/structure/closet/secure_closet/freezer/kitchen/mining, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/flour, -/turf/open/floor/plasteel/greenblue/side{ - dir = 9 - }, -/area/shuttle/abandoned) -"aaL" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/greenblue/side{ - dir = 1 - }, -/area/shuttle/abandoned) -"aaM" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plating, -/area/shuttle/abandoned) -"aaN" = ( -/obj/structure/closet/emcloset, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plating, -/area/shuttle/abandoned) "aaO" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -356,132 +199,6 @@ "aaS" = ( /turf/closed/wall/mineral/plastitanium, /area/construction/mining/aux_base) -"aaT" = ( -/obj/structure/closet/crate{ - name = "emergency supplies crate" - }, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/toolbox/emergency, -/obj/item/device/flashlight/flare{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/flashlight/flare{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/crowbar, -/obj/item/wrench, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/extinguisher, -/obj/item/extinguisher, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/light_construct/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/shuttle/abandoned) -"aaU" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/storage/box/hug/medical, -/turf/open/floor/plating, -/area/shuttle/abandoned) -"aaV" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/door/airlock/maintenance/glass{ - name = "Maintenance" - }, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"aaW" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"aaX" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/green/corner{ - dir = 4 - }, -/area/shuttle/abandoned) -"aaY" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/blue/corner{ - dir = 1 - }, -/area/shuttle/abandoned) -"aaZ" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/blood/tracks, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"aba" = ( -/obj/structure/sink/kitchen{ - pixel_z = 30 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/green/corner{ - dir = 4 - }, -/area/shuttle/abandoned) -"abb" = ( -/obj/machinery/door/airlock/maintenance/glass{ - name = "Maintenance" - }, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"abc" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plating, -/area/shuttle/abandoned) -"abd" = ( -/obj/structure/closet/crate{ - name = "spare equipment crate" - }, -/obj/item/grenade/chem_grenade/metalfoam, -/obj/item/relic, -/obj/item/device/t_scanner, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/light_construct/small{ - dir = 4 - }, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/shuttle/abandoned) "abe" = ( /obj/effect/turf_decal/delivery, /obj/item/twohanded/required/kirbyplants/random, @@ -539,49 +256,6 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/space/nearstation) -"abk" = ( -/obj/machinery/vending/hydroseeds, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/greenblue/side, -/area/shuttle/abandoned) -"abl" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/stack/sheet/metal/fifty, -/obj/item/circuitboard/machine/hydroponics, -/obj/item/circuitboard/machine/gibber, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/green/corner{ - dir = 8 - }, -/area/shuttle/abandoned) -"abm" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/stack/cable_coil/random, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"abn" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/blue/corner, -/area/shuttle/abandoned) -"abo" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/greenblue/side, -/area/shuttle/abandoned) "abp" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small{ @@ -616,7 +290,8 @@ /obj/docking_port/mobile/pod{ id = "pod1"; name = "escape pod 1"; - port_direction = 2 + port_direction = 2; + timid = 0 }, /obj/effect/turf_decal/stripes/end, /turf/open/floor/plasteel/white, @@ -632,7 +307,8 @@ /obj/docking_port/mobile/pod{ id = "pod2"; name = "escape pod 2"; - port_direction = 2 + port_direction = 2; + timid = 0 }, /obj/effect/turf_decal/stripes/end, /turf/open/floor/plasteel/white, @@ -642,105 +318,6 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"abw" = ( -/obj/structure/closet/wardrobe, -/obj/item/clothing/under/trek/command/next, -/obj/item/clothing/under/trek/command/next, -/obj/item/clothing/under/trek/engsec/next, -/obj/item/clothing/under/trek/engsec/next, -/obj/item/clothing/under/trek/medsci/next, -/obj/item/clothing/under/trek/medsci/next, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/spawner/lootdrop/costume, -/obj/item/clothing/under/rank/centcom_commander{ - desc = "A badge on the arm indicates that it's meant to be worn by CentCom recovery teams. This one seems dusty and clearly hasn't been cleaned in some time."; - name = "\improper dusty old CentCom jumpsuit" - }, -/obj/item/clothing/under/rank/centcom_officer{ - desc = "A badge on the arm indicates that it's meant to be worn by CentCom recovery teams. This one seems dusty and clearly hasn't been cleaned in some time."; - name = "\improper dusty old CentCom jumpsuit" - }, -/obj/item/clothing/under/rank/centcom_officer{ - desc = "A badge on the arm indicates that it's meant to be worn by CentCom recovery teams. This one seems dusty and clearly hasn't been cleaned in some time."; - name = "\improper dusty old CentCom jumpsuit" - }, -/obj/item/clothing/head/centhat{ - desc = "There's a gouge through the top where something has clawed clean through it. Whoever was wearing it probably doesn't need a hat any more."; - name = "\improper damaged CentCom hat" - }, -/turf/open/floor/plasteel/barber, -/area/shuttle/abandoned) -"abx" = ( -/obj/structure/reagent_dispensers/beerkeg, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/barber, -/area/shuttle/abandoned) -"aby" = ( -/obj/item/storage/bag/plants/portaseeder, -/obj/structure/table, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 13; - pixel_y = 5 - }, -/obj/item/reagent_containers/glass/bottle/nutrient/ez, -/obj/item/reagent_containers/glass/bottle/nutrient/ez, -/obj/item/reagent_containers/glass/bottle/nutrient/ez, -/obj/item/reagent_containers/glass/bottle/nutrient/rh{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/greenblue/side{ - dir = 8 - }, -/area/shuttle/abandoned) -"abz" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plating, -/area/shuttle/abandoned) -"abA" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/greenblue/side{ - dir = 4 - }, -/area/shuttle/abandoned) -"abB" = ( -/obj/item/soap, -/obj/structure/curtain, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/shower{ - pixel_y = 15 - }, -/turf/open/floor/plasteel/freezer, -/area/shuttle/abandoned) "abC" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -793,85 +370,6 @@ }, /turf/open/floor/plasteel, /area/construction/mining/aux_base) -"abI" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/barber, -/area/shuttle/abandoned) -"abJ" = ( -/obj/structure/table, -/obj/item/storage/pill_bottle/dice, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/barber, -/area/shuttle/abandoned) -"abK" = ( -/obj/structure/table, -/obj/item/wrench, -/obj/item/crowbar, -/obj/item/clothing/suit/apron, -/obj/item/shovel/spade, -/obj/item/cultivator, -/obj/item/device/plant_analyzer, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/wirecutters, -/turf/open/floor/plasteel/blue/corner{ - dir = 1 - }, -/area/shuttle/abandoned) -"abL" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/storage/box/donkpockets, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"abM" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/light_construct{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/microwave, -/turf/open/floor/plasteel/green/corner{ - dir = 4 - }, -/area/shuttle/abandoned) -"abN" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/light_construct/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/shuttle/abandoned) -"abO" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/light_construct/small{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/shuttle/abandoned) "abP" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/external{ @@ -903,7 +401,7 @@ dir = 8 }, /obj/structure/closet/emcloset/anchored, -/obj/structure/sign/vacuum{ +/obj/structure/sign/warning/vacuum{ pixel_x = -32 }, /obj/effect/turf_decal/bot, @@ -920,50 +418,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/construction/mining/aux_base) -"abU" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/mopbucket, -/turf/open/floor/plasteel/greenblue/side{ - dir = 9 - }, -/area/shuttle/abandoned) -"abV" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/shuttle/abandoned) -"abW" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"abX" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/neutral/corner, -/area/shuttle/abandoned) -"abY" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/door/airlock{ - name = "Laborotary" - }, -/turf/open/floor/plasteel/neutral, -/area/shuttle/abandoned) "abZ" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/stripes/line{ @@ -975,7 +429,7 @@ /turf/open/floor/plasteel, /area/hallway/secondary/entry) "aca" = ( -/obj/structure/sign/pods{ +/obj/structure/sign/warning/pods{ pixel_x = -32 }, /obj/effect/turf_decal/stripes/line{ @@ -1025,82 +479,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"acg" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/light_construct{ - dir = 8 - }, -/turf/open/floor/plasteel/greenblue/side{ - dir = 10 - }, -/area/shuttle/abandoned) -"ach" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/toy/cards/deck, -/turf/open/floor/plasteel/neutral, -/area/shuttle/abandoned) -"aci" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/neutral, -/area/shuttle/abandoned) -"acj" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/door/airlock/glass{ - name = "Dormitory" - }, -/turf/open/floor/plasteel/neutral, -/area/shuttle/abandoned) -"ack" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/shuttle/abandoned) -"acl" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/gun/energy/floragun, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"acm" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/shuttle/abandoned) -"acn" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/light_construct{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/shuttle/abandoned) "aco" = ( /turf/open/floor/plasteel/neutral, /area/hallway/secondary/entry) @@ -1123,7 +501,7 @@ }, /area/construction/mining/aux_base) "acs" = ( -/obj/structure/sign/electricshock, +/obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/maintenance/solars/starboard/fore) "act" = ( @@ -1162,117 +540,18 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"acw" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/bed, -/turf/open/floor/plasteel/greenblue/side{ - dir = 10 - }, -/area/shuttle/abandoned) -"acx" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/mop, -/turf/open/floor/plasteel/greenblue/side, -/area/shuttle/abandoned) -"acy" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/device/gps{ - gpstag = "ITVSAC"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/shuttle/abandoned) -"acz" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"acA" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/shuttle/abandoned) -"acB" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/structure/mirror{ - pixel_x = -30 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"acC" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/bikehorn/rubberducky, -/turf/open/floor/plasteel/neutral, -/area/shuttle/abandoned) -"acD" = ( -/obj/structure/urinal{ - pixel_x = 30 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"acE" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/shuttle/arrival) "acF" = ( -/obj/docking_port/mobile/arrivals{ - dir = 2; - dwidth = 4; - height = 17; - name = "delta arrivals shuttle"; - width = 9 - }, /obj/docking_port/stationary{ dir = 2; dwidth = 4; height = 17; id = "arrivals_stationary"; name = "delta arrivals"; - width = 9 + width = 9; + roundstart_template = /datum/map_template/shuttle/arrival/delta }, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/arrival) +/turf/open/space/basic, +/area/space) "acG" = ( /obj/structure/table/reinforced, /obj/item/storage/belt/utility, @@ -1407,35 +686,6 @@ }, /turf/open/space, /area/solar/starboard/fore) -"acR" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/abandoned) -"acS" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/door/airlock/glass{ - name = "Crew Quarters" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/shuttle/abandoned) -"acT" = ( -/obj/machinery/vending/boozeomat, -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"acU" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/shuttle/abandoned) "acV" = ( /obj/machinery/status_display{ pixel_x = -32 @@ -1500,19 +750,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"acZ" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/arrival) -"ada" = ( -/obj/structure/window/reinforced, -/obj/structure/shuttle/engine/heater{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/shuttle/arrival) "adb" = ( /obj/machinery/status_display{ pixel_x = -32 @@ -1616,71 +853,6 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"adk" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex/nitrile, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/suit/apron/surgical, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 9 - }, -/area/shuttle/abandoned) -"adl" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/light_construct{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/shuttle/abandoned) -"adm" = ( -/obj/structure/closet/crate/freezer/blood, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 5 - }, -/area/shuttle/abandoned) -"adn" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/table, -/obj/item/clothing/head/helmet/swat/nanotrasen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"ado" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/built{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"adp" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/table, -/obj/item/clothing/gloves/color/black, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) "adq" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/sign/directions/engineering{ @@ -1699,7 +871,7 @@ /area/hallway/secondary/entry) "ads" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/vacuum, +/obj/structure/sign/warning/vacuum, /turf/open/floor/plating, /area/hallway/secondary/entry) "adt" = ( @@ -1709,17 +881,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"adu" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/arrival) -"adv" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/arrival) -"adw" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/open/floor/plating, -/area/shuttle/arrival) "adx" = ( /obj/structure/table/reinforced, /obj/item/device/analyzer{ @@ -1736,212 +897,6 @@ dir = 4 }, /area/construction/mining/aux_base) -"adz" = ( -/obj/structure/table/optable, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/defibrillator/loaded, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/shuttle/abandoned) -"adA" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/reagent_containers/spray/cleaner, -/turf/open/floor/plasteel/white, -/area/shuttle/abandoned) -"adB" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/storage/backpack/duffelbag/med/surgery, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/shuttle/abandoned) -"adC" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/light_construct{ - dir = 8 - }, -/obj/structure/table, -/obj/item/clothing/suit/armor/vest, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"adD" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/light_construct{ - dir = 4 - }, -/obj/structure/table, -/obj/item/gun/energy/e_gun/mini, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"adE" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/neutral/side, -/area/shuttle/abandoned) -"adF" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/robot_debris, -/turf/open/floor/plasteel/neutral/side, -/area/shuttle/abandoned) -"adG" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/bot, -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/shuttle/abandoned) -"adH" = ( -/obj/structure/sign/vacuum, -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"adI" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/shuttle/transport) -"adJ" = ( -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/structure/closet/crate/internals, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"adK" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"adL" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/emergency, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"adM" = ( -/obj/structure/table/reinforced, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"adN" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/arrival) "adO" = ( /obj/structure/rack, /obj/item/storage/toolbox/emergency, @@ -1967,89 +922,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/construction/mining/aux_base) -"adS" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/frame/computer, -/obj/item/circuitboard/computer/operating, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/shuttle/abandoned) -"adT" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/plasteel/white, -/area/shuttle/abandoned) -"adU" = ( -/obj/machinery/sleeper{ - icon_state = "sleeper-open"; - dir = 8 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/shuttle/abandoned) -"adV" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/arrival/corner{ - dir = 8 - }, -/area/shuttle/abandoned) -"adW" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/clothing/suit/armor/vest, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"adX" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/crowbar/red, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"adY" = ( -/obj/machinery/door/airlock/titanium{ - cyclelinkeddir = 4; - glass = 1; - name = "Internal Airlock" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/shuttle/abandoned) -"adZ" = ( -/obj/machinery/door/airlock/titanium{ - cyclelinkeddir = 8; - name = "External Airlock" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/neutral, -/area/shuttle/abandoned) "aea" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/external{ @@ -2082,13 +954,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aed" = ( -/obj/structure/shuttle/engine/heater{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/shuttle/transport) "aee" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 4; @@ -2102,33 +967,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aef" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Arrival Shuttle Airlock"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/arrival) -"aeg" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/shuttle/arrival) -"aeh" = ( -/turf/open/floor/plasteel/neutral, -/area/shuttle/arrival) -"aei" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/shuttle/arrival) "aej" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/external{ @@ -2161,100 +999,6 @@ }, /turf/open/floor/plasteel, /area/construction/mining/aux_base) -"ael" = ( -/obj/machinery/iv_drip, -/obj/machinery/vending/wallmed{ - name = "Emergency NanoMed"; - pixel_x = -28; - req_access_txt = "0"; - use_power = 0 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/shuttle/abandoned) -"aem" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/stack/cable_coil/random, -/turf/open/floor/plasteel/white, -/area/shuttle/abandoned) -"aen" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/white, -/area/shuttle/abandoned) -"aeo" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/door/airlock/medical/glass{ - id_tag = null; - name = "Infirmary"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel/white, -/area/shuttle/abandoned) -"aep" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/arrival{ - dir = 8 - }, -/area/shuttle/abandoned) -"aeq" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"aer" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/clothing/head/helmet/swat/nanotrasen, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"aes" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/abandoned) -"aet" = ( -/obj/structure/shuttle/engine/heater{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/shuttle/transport) -"aeu" = ( -/turf/open/floor/pod/light, -/area/shuttle/transport) -"aev" = ( -/obj/structure/shuttle/engine/heater{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/shuttle/transport) "aew" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -2270,35 +1014,6 @@ }, /turf/open/floor/plasteel/neutral, /area/hallway/secondary/entry) -"aey" = ( -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/shuttle/arrival) -"aez" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"aeA" = ( -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/shuttle/arrival) "aeB" = ( /obj/machinery/status_display, /turf/closed/wall, @@ -2360,92 +1075,6 @@ }, /turf/open/floor/plating, /area/shuttle/auxillary_base) -"aeI" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 10 - }, -/area/shuttle/abandoned) -"aeJ" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/light_construct, -/turf/open/floor/plasteel/whiteblue/side, -/area/shuttle/abandoned) -"aeK" = ( -/obj/structure/closet/secure_closet/medical2{ - req_access = null - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/clothing/glasses/hud/health/sunglasses, -/turf/open/floor/plasteel/whiteblue/side, -/area/shuttle/abandoned) -"aeL" = ( -/obj/structure/sign/bluecross_2, -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"aeM" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/arrival/corner{ - dir = 1 - }, -/area/shuttle/abandoned) -"aeN" = ( -/obj/structure/sign/engineering, -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"aeO" = ( -/obj/machinery/autolathe, -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/neutral, -/area/shuttle/abandoned) -"aeP" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/tank_dispenser, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/shuttle/abandoned) -"aeQ" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) "aeR" = ( /obj/structure/closet/emcloset, /obj/effect/decal/cleanable/dirt, @@ -2463,16 +1092,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aeT" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/transport) -"aeU" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/pod/light, -/area/shuttle/transport) "aeV" = ( /obj/machinery/light{ dir = 1 @@ -2500,27 +1119,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aeY" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"aeZ" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"afa" = ( -/obj/machinery/requests_console{ - department = "Arrival shuttle"; - name = "Arrivals Shuttle console" - }, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/arrival) "afb" = ( /obj/machinery/vending/snack/random, /obj/machinery/light{ @@ -2595,91 +1193,6 @@ }, /turf/open/floor/plating, /area/shuttle/auxillary_base) -"afl" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"afm" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"afn" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"afo" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/closet/crate/science, -/obj/effect/decal/cleanable/leaper_sludge, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"afp" = ( -/obj/structure/closet/crate/engineering, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/rglass{ - amount = 20 - }, -/obj/item/stack/sheet/mineral/titanium/fifty, -/turf/open/floor/plasteel/yellow/corner, -/area/shuttle/abandoned) -"afq" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/rglass{ - amount = 20 - }, -/obj/item/clothing/head/welding, -/obj/structure/light_construct{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/neutral, -/area/shuttle/abandoned) -"afr" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/shuttle/abandoned) -"afs" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) "aft" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/delivery, @@ -2694,10 +1207,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"afv" = ( -/obj/machinery/door/airlock/titanium, -/turf/open/floor/pod/light, -/area/shuttle/transport) "afw" = ( /obj/structure/chair{ dir = 4 @@ -2712,14 +1221,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"afy" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/window/shuttle, -/turf/open/floor/grass, -/area/shuttle/arrival) "afz" = ( /obj/machinery/vending/cola/random, /obj/effect/turf_decal/delivery, @@ -2788,113 +1289,6 @@ dir = 4 }, /area/construction/mining/aux_base) -"afH" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/stack/cable_coil/random, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 9 - }, -/area/shuttle/abandoned) -"afI" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/light_construct{ - dir = 1 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/shuttle/abandoned) -"afJ" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/shuttle/abandoned) -"afK" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/purple/corner{ - dir = 8 - }, -/area/shuttle/abandoned) -"afL" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/paper/crumpled/bloody{ - info = "Your vessel will be transporting artifact E-395 to our nearby research station. Under no circumstances is the container to be opened. Half of the payment will be given now, rest upon completion. In the event of containment breach--" - }, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"afM" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"afN" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 4 - }, -/area/shuttle/abandoned) -"afO" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Storage" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/shuttle/abandoned) -"afP" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/clothing/head/welding, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/shuttle/abandoned) -"afQ" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/transport) -"afR" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/pod/dark, -/area/shuttle/transport) -"afS" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/pod/dark, -/area/shuttle/transport) "afT" = ( /obj/structure/chair{ dir = 4 @@ -2903,14 +1297,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"afU" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/window/shuttle, -/turf/open/floor/grass, -/area/shuttle/arrival) "afV" = ( /obj/item/device/radio/beacon, /obj/effect/turf_decal/delivery, @@ -2955,96 +1341,6 @@ /obj/structure/mining_shuttle_beacon, /turf/open/floor/plating, /area/shuttle/auxillary_base) -"aga" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/shuttle/abandoned) -"agb" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/door/airlock/research{ - glass = 1; - name = "Research Lab" - }, -/turf/open/floor/plasteel/white, -/area/shuttle/abandoned) -"agc" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/purple/side{ - dir = 8 - }, -/area/shuttle/abandoned) -"agd" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/clothing/gloves/color/black, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"age" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/greenglow, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"agf" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/airlock_painter, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/yellow/corner{ - dir = 4 - }, -/area/shuttle/abandoned) -"agg" = ( -/obj/structure/closet/toolcloset, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/neutral, -/area/shuttle/abandoned) -"agh" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/stack/rods/twentyfive, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/shuttle/abandoned) -"agi" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/structure/light_construct/small, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) "agj" = ( /obj/structure/closet/firecloset, /obj/effect/decal/cleanable/dirt, @@ -3089,7 +1385,6 @@ /obj/structure/cable/white{ icon_state = "2-8" }, -/obj/effect/landmark/lightsout, /obj/machinery/holopad, /obj/structure/cable/white{ icon_state = "1-2" @@ -3134,7 +1429,8 @@ dir = 2; dwidth = 4; height = 9; - width = 9 + width = 9; + timid = 0 }, /obj/machinery/bluespace_beacon, /obj/docking_port/mobile/auxillary_base, @@ -3152,75 +1448,6 @@ }, /turf/open/floor/plating, /area/shuttle/auxillary_base) -"agu" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/frame/computer, -/obj/item/stack/sheet/glass, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/shuttle/abandoned) -"agv" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/circuitboard/machine/circuit_imprinter, -/turf/open/floor/plasteel/white, -/area/shuttle/abandoned) -"agw" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/frame/machine, -/turf/open/floor/plasteel/whitepurple/corner, -/area/shuttle/abandoned) -"agx" = ( -/obj/structure/sign/science, -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"agy" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/light_construct{ - dir = 8 - }, -/turf/open/floor/plasteel/purple/corner{ - dir = 1 - }, -/area/shuttle/abandoned) -"agz" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"agA" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/light_construct{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) "agB" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -3241,12 +1468,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"agD" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/pod/light, -/area/shuttle/transport) "agE" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 @@ -3262,49 +1483,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"agG" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, -/area/shuttle/arrival) -"agH" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/shuttle/arrival) -"agI" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/toy/figure/assistant, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"agJ" = ( -/obj/machinery/vending/wallmed{ - name = "Emergency NanoMed"; - req_access_txt = "0"; - use_power = 0 - }, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/arrival) -"agK" = ( -/obj/structure/table/reinforced, -/obj/item/folder, -/obj/item/storage/pill_bottle/dice, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"agL" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/shuttle/arrival) "agM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/yellow/side{ @@ -3331,56 +1509,7 @@ }, /turf/open/space, /area/space/nearstation) -"agP" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/frame/machine, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/shuttle/abandoned) -"agQ" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/frame/machine, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 4 - }, -/area/shuttle/abandoned) -"agR" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/plating, -/area/shuttle/abandoned) "agS" = ( -/obj/machinery/door/airlock/titanium{ - cyclelinkeddir = 8; - name = "External Airlock" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/docking_port/mobile{ - dheight = 0; - dir = 8; - dwidth = 11; - height = 15; - id = "whiteship"; - launch_status = 0; - name = "White-Ship"; - port_direction = 8; - preferred_direction = 8; - roundstart_move = "whiteship_away"; - width = 32 - }, /obj/docking_port/stationary{ dir = 8; dwidth = 11; @@ -3389,8 +1518,8 @@ name = "SS13: Auxiliary Dock, Station-Fore"; width = 32 }, -/turf/open/floor/plasteel/neutral, -/area/shuttle/abandoned) +/turf/open/space/basic, +/area/space) "agT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ @@ -3398,16 +1527,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"agU" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/pod/light, -/area/shuttle/transport) -"agV" = ( -/obj/machinery/computer/shuttle/ferry/request{ - dir = 1 - }, -/turf/open/floor/pod/dark, -/area/shuttle/transport) "agW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ @@ -3415,12 +1534,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"agX" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/shuttle/arrival) "agY" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 @@ -3477,134 +1590,6 @@ dir = 4 }, /area/construction/mining/aux_base) -"ahd" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 10 - }, -/area/shuttle/abandoned) -"ahe" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/light_construct, -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/plasteel/whitepurple/side, -/area/shuttle/abandoned) -"ahf" = ( -/obj/structure/closet/crate/science{ - name = "spare circuit boards crate" - }, -/obj/item/circuitboard/computer/rdconsole, -/obj/item/circuitboard/machine/protolathe, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/reagent_containers/glass/beaker/sulphuric, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 6 - }, -/area/shuttle/abandoned) -"ahg" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/built, -/turf/open/floor/plasteel/blue/side, -/area/shuttle/abandoned) -"ahh" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/blue/corner{ - dir = 8 - }, -/area/shuttle/abandoned) -"ahi" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"ahj" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/shuttle/abandoned) -"ahk" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/bot, -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/shuttle/abandoned) -"ahl" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/pod/light, -/area/shuttle/transport) -"ahm" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"ahn" = ( -/obj/structure/closet/wardrobe/black, -/turf/open/floor/plasteel/neutral/side, -/area/shuttle/arrival) -"aho" = ( -/obj/structure/closet/wardrobe/grey, -/turf/open/floor/plasteel/blue/corner, -/area/shuttle/arrival) -"ahp" = ( -/turf/open/floor/plasteel/blue/side, -/area/shuttle/arrival) -"ahq" = ( -/obj/structure/closet/wardrobe/yellow, -/turf/open/floor/plasteel/blue/corner{ - dir = 8 - }, -/area/shuttle/arrival) -"ahr" = ( -/obj/structure/closet/wardrobe/grey, -/turf/open/floor/plasteel/neutral, -/area/shuttle/arrival) -"ahs" = ( -/obj/structure/table/reinforced, -/obj/item/storage/briefcase{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/arrival) "aht" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering{ @@ -3647,17 +1632,6 @@ }, /turf/open/floor/plating, /area/shuttle/auxillary_base) -"ahy" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - welded = 1 - }, -/turf/open/floor/plasteel/neutral/side, -/area/shuttle/abandoned) "ahz" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -3666,27 +1640,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"ahA" = ( -/obj/machinery/status_display, -/turf/closed/wall/mineral/titanium, -/area/shuttle/arrival) -"ahB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/machinery/door/airlock/shuttle{ - name = "Arrival Shuttle Airlock"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"ahC" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall/mineral/titanium, -/area/shuttle/arrival) "ahD" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/newscaster{ @@ -3740,77 +1693,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/shuttle/auxillary_base) -"ahI" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/cobweb, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/turf/open/floor/plasteel/blue/side{ - dir = 9 - }, -/area/shuttle/abandoned) -"ahJ" = ( -/obj/structure/closet/crate, -/obj/item/paper_bin, -/obj/item/stack/sheet/metal/twenty, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/clothing/under/gimmick/rank/captain/suit, -/turf/open/floor/plasteel/blue/corner{ - dir = 1 - }, -/area/shuttle/abandoned) -"ahK" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/device/megaphone, -/turf/open/floor/plasteel/blue/corner{ - dir = 4 - }, -/area/shuttle/abandoned) -"ahL" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/built{ - dir = 1 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 1 - }, -/area/shuttle/abandoned) -"ahM" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/table, -/obj/item/stack/cable_coil/random, -/turf/open/floor/plasteel/blue/corner{ - dir = 4 - }, -/area/shuttle/abandoned) -"ahN" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/table, -/obj/item/device/camera, -/turf/open/floor/plasteel/blue/side{ - dir = 5 - }, -/area/shuttle/abandoned) "ahO" = ( /obj/machinery/status_display{ pixel_x = -32 @@ -3842,11 +1724,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"ahQ" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/open/floor/plating, -/area/shuttle/transport) "ahR" = ( /obj/machinery/status_display{ pixel_x = -32 @@ -3878,28 +1755,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"ahT" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 8 - }, -/area/shuttle/arrival) -"ahU" = ( -/obj/structure/chair/office/dark, -/turf/open/floor/plasteel/blue/side{ - dir = 1 - }, -/area/shuttle/arrival) -"ahV" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 4 - }, -/area/shuttle/arrival) "ahW" = ( /obj/machinery/status_display{ pixel_x = -32 @@ -3950,59 +1805,7 @@ }, /turf/open/floor/plasteel, /area/maintenance/starboard/fore) -"ahZ" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/light_construct{ - dir = 8 - }, -/obj/item/phone, -/turf/open/floor/plasteel/blue/side{ - dir = 8 - }, -/area/shuttle/abandoned) -"aia" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/blood/gibs/torso, -/turf/open/floor/plasteel/neutral, -/area/shuttle/abandoned) -"aib" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/shard, -/turf/open/floor/plasteel/neutral, -/area/shuttle/abandoned) -"aic" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/light_construct{ - dir = 4 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 4 - }, -/area/shuttle/abandoned) "aid" = ( -/obj/docking_port/mobile{ - dir = 1; - dwidth = 2; - height = 13; - id = "ferry"; - name = "ferry shuttle"; - port_direction = 1; - preferred_direction = 4; - roundstart_move = "ferry_away"; - width = 5 - }, /obj/docking_port/stationary{ dir = 1; dwidth = 2; @@ -4012,21 +1815,8 @@ turf_type = /turf/open/space; width = 5 }, -/obj/machinery/door/airlock/titanium, -/turf/open/floor/pod/dark, -/area/shuttle/transport) -"aie" = ( -/obj/structure/frame/computer{ - dir = 1 - }, -/turf/open/floor/plasteel/blue, -/area/shuttle/arrival) -"aif" = ( -/obj/structure/frame/computer{ - dir = 1 - }, -/turf/open/floor/plasteel/blue/side, -/area/shuttle/arrival) +/turf/open/space/basic, +/area/space) "aig" = ( /turf/closed/wall, /area/maintenance/starboard/fore) @@ -4116,59 +1906,6 @@ /obj/item/twohanded/required/kirbyplants/random, /turf/open/floor/plasteel/vault, /area/maintenance/starboard/fore) -"ait" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/blue/side{ - dir = 10 - }, -/area/shuttle/abandoned) -"aiu" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/pen/fountain/captain, -/turf/open/floor/plasteel/neutral/side{ - dir = 5 - }, -/area/shuttle/abandoned) -"aiv" = ( -/obj/structure/chair/comfy/black, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/neutral, -/area/shuttle/abandoned) -"aiw" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 9 - }, -/area/shuttle/abandoned) -"aix" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/storage/photo_album, -/turf/open/floor/plasteel/blue/corner, -/area/shuttle/abandoned) -"aiy" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/blue/side{ - dir = 6 - }, -/area/shuttle/abandoned) "aiz" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -4241,69 +1978,12 @@ /turf/open/floor/plasteel/redyellow, /area/maintenance/starboard/fore) "aiI" = ( -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/maintenance/starboard/fore) "aiJ" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aiK" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/storage/fancy/cigarettes/cigars/cohiba, -/turf/open/floor/plasteel/blue/side{ - dir = 10 - }, -/area/shuttle/abandoned) -"aiL" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/computer/camera_advanced/shuttle_docker/whiteship{ - dir = 1; - x_offset = -7; - y_offset = -8 - }, -/turf/open/floor/plasteel/blue/side, -/area/shuttle/abandoned) -"aiM" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/table, -/obj/item/device/pda/clear, -/turf/open/floor/plasteel/blue/side, -/area/shuttle/abandoned) -"aiN" = ( -/obj/machinery/computer/shuttle/white_ship{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/blue/side, -/area/shuttle/abandoned) -"aiO" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/table, -/obj/item/device/radio, -/turf/open/floor/plasteel/blue/side, -/area/shuttle/abandoned) -"aiP" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plasteel/blue/side, -/area/shuttle/abandoned) "aiQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ @@ -4387,28 +2067,28 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/maintenance/starboard/fore) "aja" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/maintenance/starboard/fore) "ajb" = ( /obj/effect/landmark/blobstart, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/maintenance/starboard/fore) "ajc" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/maintenance/starboard/fore) "ajd" = ( /obj/machinery/door/firedoor, @@ -4458,7 +2138,7 @@ /turf/open/floor/plasteel, /area/hallway/secondary/entry) "ajh" = ( -/obj/structure/sign/pods, +/obj/structure/sign/warning/pods, /turf/closed/wall, /area/hallway/secondary/entry) "aji" = ( @@ -4490,7 +2170,7 @@ "ajl" = ( /obj/structure/table_frame/wood, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/maintenance/starboard/fore) "ajm" = ( /obj/item/chair/stool/bar{ @@ -4498,26 +2178,26 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/maintenance/starboard/fore) "ajn" = ( /obj/structure/chair/stool/bar, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/maintenance/starboard/fore) "ajo" = ( /obj/machinery/light/small, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/maintenance/starboard/fore) "ajp" = ( /obj/structure/chair/stool/bar, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/maintenance/starboard/fore) "ajq" = ( /obj/structure/table/wood, /obj/effect/decal/cleanable/dirt, /obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/maintenance/starboard/fore) "ajr" = ( /obj/structure/grille, @@ -4737,7 +2417,7 @@ /turf/open/floor/plasteel, /area/maintenance/starboard/fore) "ajP" = ( -/obj/structure/sign/nosmoking_2, +/obj/structure/sign/warning/nosmoking, /turf/closed/wall, /area/maintenance/starboard/fore) "ajQ" = ( @@ -4866,13 +2546,6 @@ }, /turf/open/floor/plasteel/neutral, /area/hallway/secondary/entry) -"akh" = ( -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/entry) "aki" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 @@ -5855,8 +3528,7 @@ "amD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/item/device/flashlight, /obj/effect/spawner/lootdrop/maintenance, @@ -5961,6 +3633,7 @@ /obj/machinery/light/small{ dir = 1 }, +/obj/machinery/vending/kink, /turf/open/floor/wood, /area/crew_quarters/electronic_marketing_den) "amQ" = ( @@ -7050,7 +4723,7 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, -/obj/structure/sign/vacuum{ +/obj/structure/sign/warning/vacuum{ pixel_y = 32 }, /obj/effect/turf_decal/stripes/line{ @@ -7329,7 +5002,7 @@ "aqi" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = 32 }, /turf/open/floor/wood, @@ -7885,7 +5558,7 @@ /turf/open/floor/circuit/green, /area/engine/atmospherics_engine) "arl" = ( -/obj/structure/sign/electricshock, +/obj/structure/sign/warning/electricshock, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -7934,7 +5607,7 @@ /turf/open/floor/plasteel, /area/engine/atmospherics_engine) "arp" = ( -/obj/structure/sign/electricshock, +/obj/structure/sign/warning/electricshock, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -8697,8 +6370,7 @@ /area/maintenance/port/fore) "asU" = ( /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; @@ -9867,7 +7539,7 @@ /turf/open/floor/plasteel, /area/engine/atmospherics_engine) "ava" = ( -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_y = -32 }, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ @@ -9892,7 +7564,7 @@ }, /area/engine/atmospherics_engine) "avd" = ( -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = -32 }, /obj/effect/turf_decal/stripes/line{ @@ -10002,8 +7674,7 @@ /area/maintenance/port/fore) "avq" = ( /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/item/crowbar/red, /obj/effect/spawner/lootdrop/maintenance, @@ -10604,7 +8275,7 @@ /area/janitor) "awG" = ( /obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = 32 }, /obj/item/reagent_containers/glass/bucket, @@ -10843,8 +8514,7 @@ "axl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, @@ -11016,7 +8686,7 @@ /area/engine/atmospherics_engine) "axG" = ( /obj/item/twohanded/required/kirbyplants/random, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = 32 }, /obj/structure/cable{ @@ -11078,7 +8748,7 @@ /area/maintenance/port/fore) "axQ" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = -32 }, /turf/open/floor/plating, @@ -11455,9 +9125,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/quartermaster/storage) -"ayF" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/supply) "ayG" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -11556,7 +9223,7 @@ /area/engine/atmospherics_engine) "ayP" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = 32 }, /obj/machinery/camera{ @@ -11579,7 +9246,7 @@ }, /area/engine/atmospherics_engine) "ayR" = ( -/obj/structure/sign/radiation, +/obj/structure/sign/warning/radiation, /turf/closed/wall/r_wall, /area/engine/atmospherics_engine) "ayS" = ( @@ -11644,7 +9311,7 @@ pixel_y = -3 }, /obj/item/lipstick/random, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = -32 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -11900,8 +9567,7 @@ /area/quartermaster/storage) "azA" = ( /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/effect/spawner/lootdrop/maintenance, /obj/effect/turf_decal/bot, @@ -11942,42 +9608,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/quartermaster/storage) -"azH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"azI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"azJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"azK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"azL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) "azM" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ @@ -11993,7 +9623,7 @@ /turf/open/space, /area/space/nearstation) "azO" = ( -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = -32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -12412,7 +10042,7 @@ icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/vacuum, +/obj/structure/sign/warning/vacuum, /turf/open/floor/plating, /area/quartermaster/storage) "aAK" = ( @@ -12425,29 +10055,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/quartermaster/storage) -"aAL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"aAM" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"aAN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"aAO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) "aAP" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ @@ -12570,7 +10177,6 @@ /area/engine/atmospherics_engine) "aBd" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden{ - icon_state = "intact"; dir = 4 }, /obj/structure/sign/directions/engineering{ @@ -12582,7 +10188,6 @@ /area/engine/atmospherics_engine) "aBe" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden{ - icon_state = "intact"; dir = 10 }, /obj/effect/turf_decal/stripes/line{ @@ -12596,7 +10201,7 @@ /turf/open/floor/plasteel/caution, /area/engine/atmospherics_engine) "aBf" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/engine/atmospherics_engine) "aBg" = ( @@ -12934,8 +10539,7 @@ /area/quartermaster/warehouse) "aBN" = ( /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; @@ -13063,28 +10667,6 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aCe" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "cargounload" - }, -/obj/machinery/door/poddoor{ - id = "cargounload"; - name = "supply dock unloading door" - }, -/turf/open/floor/plating, -/area/shuttle/supply) -"aCf" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"aCg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) "aCh" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -13118,7 +10700,7 @@ /turf/open/floor/plasteel, /area/engine/atmospherics_engine) "aCl" = ( -/obj/structure/sign/radiation, +/obj/structure/sign/warning/radiation, /turf/closed/wall/r_wall, /area/engine/supermatter) "aCm" = ( @@ -13605,19 +11187,16 @@ /turf/open/floor/plasteel, /area/quartermaster/storage) "aDi" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Supply Shuttle Airlock"; - req_access_txt = "31" +/obj/docking_port/stationary{ + dir = 4; + dwidth = 4; + height = 7; + id = "supply_home"; + name = "Cargo Bay"; + width = 12 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/shuttle/supply) -"aDj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) +/turf/open/space/basic, +/area/space) "aDk" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple, /obj/structure/lattice/catwalk, @@ -13710,7 +11289,7 @@ pixel_x = -12; pixel_y = 2 }, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = -32 }, /obj/effect/turf_decal/bot, @@ -13729,7 +11308,7 @@ dir = 4; pixel_x = 11 }, -/obj/structure/sign/botany{ +/obj/structure/sign/departments/botany{ pixel_x = 32 }, /obj/effect/turf_decal/bot, @@ -13989,37 +11568,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/quartermaster/storage) -"aEj" = ( -/obj/machinery/button/door{ - dir = 2; - id = "cargounload"; - name = "Loading Doors"; - pixel_x = -24; - pixel_y = 8 - }, -/obj/machinery/button/door{ - id = "cargoload"; - name = "Loading Doors"; - pixel_x = -24; - pixel_y = -8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"aEk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) "aEl" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; @@ -14064,7 +11612,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/sign/fire{ +/obj/structure/sign/warning/fire{ pixel_x = 32; pixel_y = 32 }, @@ -14552,22 +12100,6 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aFl" = ( -/obj/docking_port/mobile/supply{ - dwidth = 5; - roundstart_move = "supply_away"; - width = 12 - }, -/obj/docking_port/stationary{ - dir = 8; - dwidth = 5; - height = 7; - id = "supply_home"; - name = "Cargo Bay"; - width = 12 - }, -/turf/closed/wall/mineral/titanium, -/area/shuttle/supply) "aFm" = ( /turf/closed/wall/r_wall, /area/security/prison) @@ -14604,7 +12136,7 @@ /obj/structure/extinguisher_cabinet{ pixel_x = -26 }, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = -32 }, /obj/effect/turf_decal/bot, @@ -15304,24 +12836,13 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aGG" = ( -/obj/machinery/door/poddoor{ - id = "cargoload"; - name = "supply dock loading door" - }, -/obj/machinery/conveyor{ - dir = 4; - id = "cargoload" - }, -/turf/open/floor/plating, -/area/shuttle/supply) "aGH" = ( /obj/machinery/hydroponics/constructable, /obj/machinery/light/small{ dir = 8 }, /obj/item/seeds/carrot, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_y = 32 }, /turf/open/floor/plasteel/red/corner{ @@ -15381,7 +12902,7 @@ pixel_x = 3; pixel_y = 3 }, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_y = 32 }, /obj/effect/decal/cleanable/cobweb/cobweb2, @@ -15432,7 +12953,7 @@ /area/maintenance/solars/port/fore) "aGP" = ( /obj/machinery/disposal/bin, -/obj/structure/sign/deathsposal{ +/obj/structure/sign/warning/deathsposal{ pixel_y = 32 }, /obj/structure/disposalpipe/trunk{ @@ -15449,7 +12970,7 @@ /area/maintenance/disposal/incinerator) "aGR" = ( /obj/machinery/atmospherics/components/unary/tank/toxins, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = 32 }, /obj/effect/decal/cleanable/dirt, @@ -15498,7 +13019,7 @@ /obj/machinery/power/smes{ charge = 1e+006 }, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_y = 32 }, /obj/structure/cable/white{ @@ -15620,7 +13141,7 @@ /obj/structure/cable/white{ icon_state = "4-8" }, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_y = -32 }, /obj/machinery/light, @@ -15657,7 +13178,7 @@ /turf/open/floor/plasteel, /area/engine/atmospherics_engine) "aHk" = ( -/obj/structure/sign/fire, +/obj/structure/sign/warning/fire, /turf/closed/wall/r_wall, /area/engine/atmospherics_engine) "aHl" = ( @@ -16018,28 +13539,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/quartermaster/storage) -"aHY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"aHZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"aIa" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"aIb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) "aIc" = ( /obj/structure/cable/white{ icon_state = "0-4" @@ -16342,7 +13841,7 @@ /turf/open/floor/plasteel, /area/engine/atmospherics_engine) "aIA" = ( -/obj/structure/sign/biohazard, +/obj/structure/sign/warning/biohazard, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/r_wall, /area/engine/atmospherics_engine) @@ -16366,7 +13865,7 @@ /turf/open/floor/plasteel, /area/engine/atmospherics_engine) "aIC" = ( -/obj/structure/sign/radiation, +/obj/structure/sign/warning/radiation, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/engine/atmospherics_engine) @@ -16508,10 +14007,6 @@ icon_state = "wood-broken6" }, /area/hallway/secondary/service) -"aIR" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/wood, -/area/hallway/secondary/service) "aIS" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 @@ -16615,7 +14110,6 @@ }, /area/hallway/primary/fore) "aJe" = ( -/obj/effect/landmark/lightsout, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -16755,8 +14249,7 @@ "aJv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; @@ -16765,15 +14258,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aJw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"aJx" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/shuttle/supply) "aJy" = ( /obj/machinery/hydroponics/constructable, /obj/item/seeds/glowshroom, @@ -16848,7 +14332,7 @@ /turf/open/floor/plating, /area/maintenance/solars/port/fore) "aJH" = ( -/obj/structure/sign/electricshock, +/obj/structure/sign/warning/electricshock, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/maintenance/solars/port/fore) @@ -17247,16 +14731,16 @@ /obj/machinery/newscaster{ pixel_x = -32 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aKz" = ( /obj/structure/chair/stool/bar, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aKA" = ( /obj/structure/chair/stool/bar, /obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aKB" = ( /obj/structure/chair/stool/bar, @@ -17264,7 +14748,7 @@ name = "Station Intercom"; pixel_x = 26 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aKC" = ( /turf/closed/wall, @@ -17300,7 +14784,6 @@ }, /area/quartermaster/sorting) "aKG" = ( -/obj/effect/landmark/lightsout, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -17420,23 +14903,6 @@ }, /turf/open/floor/plasteel/neutral, /area/quartermaster/storage) -"aKT" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/shuttle/engine/heater, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/supply) -"aKU" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/shuttle/engine/heater, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/supply) "aKV" = ( /turf/closed/wall, /area/security/prison) @@ -17579,7 +15045,7 @@ /turf/open/floor/plasteel, /area/maintenance/disposal/incinerator) "aLn" = ( -/obj/structure/sign/vacuum{ +/obj/structure/sign/warning/vacuum{ pixel_x = -32 }, /obj/machinery/light/small{ @@ -17701,7 +15167,7 @@ /turf/open/floor/circuit/green, /area/engine/atmospherics_engine) "aLx" = ( -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = 32 }, /obj/machinery/power/smes{ @@ -17775,13 +15241,6 @@ }, /turf/open/floor/wood, /area/hallway/secondary/service) -"aLG" = ( -/obj/item/twohanded/required/kirbyplants/random, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/hallway/secondary/service) "aLH" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 @@ -17820,10 +15279,10 @@ /obj/structure/extinguisher_cabinet{ pixel_x = -26 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aLL" = ( -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aLM" = ( /obj/machinery/airalarm{ @@ -17833,7 +15292,7 @@ /obj/machinery/light{ dir = 4 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aLN" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -17951,21 +15410,6 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aLZ" = ( -/obj/structure/shuttle/engine/propulsion/burst/left, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/supply) -"aMa" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/supply) -"aMb" = ( -/obj/structure/shuttle/engine/propulsion/burst/right, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/supply) "aMc" = ( /obj/machinery/shower{ dir = 4 @@ -17978,7 +15422,7 @@ /obj/structure/table, /obj/item/storage/crayons, /obj/item/storage/crayons, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_y = 32 }, /obj/effect/decal/cleanable/cobweb, @@ -18084,7 +15528,7 @@ icon_state = "4-8" }, /obj/item/toy/figure/syndie, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_y = 32 }, /turf/open/floor/plasteel/red/corner{ @@ -18128,7 +15572,7 @@ /obj/machinery/light/small{ dir = 8 }, -/obj/structure/sign/vacuum{ +/obj/structure/sign/warning/vacuum{ pixel_x = -32 }, /turf/open/floor/plasteel/vault{ @@ -18155,7 +15599,7 @@ }, /area/security/execution/education) "aMt" = ( -/obj/structure/sign/fire, +/obj/structure/sign/warning/fire, /turf/closed/wall/r_wall, /area/maintenance/disposal/incinerator) "aMu" = ( @@ -18280,7 +15724,7 @@ /turf/open/floor/plasteel, /area/engine/atmos) "aMI" = ( -/obj/structure/sign/radiation, +/obj/structure/sign/warning/radiation, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/r_wall, /area/engine/atmos) @@ -18303,12 +15747,12 @@ /turf/open/floor/plasteel, /area/engine/atmos) "aMK" = ( -/obj/structure/sign/fire, +/obj/structure/sign/warning/fire, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/engine/atmos) "aML" = ( -/obj/structure/sign/electricshock, +/obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/engine/atmos) "aMM" = ( @@ -18389,7 +15833,7 @@ /turf/closed/wall, /area/crew_quarters/theatre) "aMY" = ( -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = -32 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -18474,15 +15918,15 @@ /area/crew_quarters/bar/atrium) "aNg" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aNh" = ( /obj/structure/chair/stool, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aNi" = ( /obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aNj" = ( /obj/effect/spawner/structure/window/reinforced, @@ -18755,7 +16199,7 @@ dir = 8; luminosity = 2 }, -/obj/structure/sign/vacuum{ +/obj/structure/sign/warning/vacuum{ pixel_y = -32 }, /obj/structure/cable{ @@ -19169,12 +16613,12 @@ "aOI" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aOJ" = ( /obj/structure/table/wood, /obj/item/storage/pill_bottle/dice, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aOK" = ( /obj/item/reagent_containers/food/condiment/saltshaker{ @@ -19185,12 +16629,12 @@ pixel_x = -8 }, /obj/structure/table/wood, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aOL" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/drinks/soda_cans/cola, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aOM" = ( /obj/structure/table, @@ -19457,7 +16901,6 @@ /turf/open/floor/plasteel/redyellow/side, /area/security/prison) "aPt" = ( -/turf/open/floor/plasteel/redyellow/side, /obj/machinery/vending/sustenance, /turf/open/floor/plating{ icon_state = "platingdmg2" @@ -19489,7 +16932,7 @@ /turf/open/floor/engine/vacuum, /area/maintenance/disposal/incinerator) "aPy" = ( -/obj/structure/sign/fire, +/obj/structure/sign/warning/fire, /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 4 }, @@ -19961,7 +17404,7 @@ dir = 5 }, /obj/structure/chair/stool, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aQs" = ( /obj/structure/table/wood, @@ -19969,7 +17412,7 @@ dir = 4 }, /obj/item/reagent_containers/food/drinks/bottle/orangejuice, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aQt" = ( /obj/structure/table/wood, @@ -19977,7 +17420,7 @@ dir = 4 }, /obj/item/reagent_containers/food/snacks/cheesiehonkers, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aQu" = ( /obj/structure/table/wood, @@ -19985,20 +17428,20 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aQv" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aQw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aQx" = ( /obj/machinery/door/firedoor, @@ -20374,7 +17817,7 @@ id = "justicechamber"; name = "Justice Chamber Blast door" }, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_x = 32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -20820,10 +18263,6 @@ /obj/machinery/holopad, /turf/open/floor/carpet, /area/crew_quarters/bar/atrium) -"aSb" = ( -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/bar, -/area/crew_quarters/bar/atrium) "aSc" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -21386,7 +18825,6 @@ /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 }, -/obj/effect/landmark/lightsout, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/neutral, /area/engine/atmos) @@ -21705,30 +19143,30 @@ "aTH" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/drinks/coffee, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aTI" = ( /obj/structure/table/wood, /obj/item/device/paicard, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aTJ" = ( /obj/structure/table/wood, /obj/item/clothing/head/hardhat/cakehat, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aTK" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aTL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aTM" = ( /obj/machinery/door/firedoor, @@ -22076,7 +19514,6 @@ "aUv" = ( /obj/structure/bed, /obj/item/bedsheet/brown, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/red/side{ dir = 8 }, @@ -22114,7 +19551,6 @@ /obj/structure/bed, /obj/item/bedsheet/brown, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/red/side{ dir = 8 }, @@ -22247,8 +19683,7 @@ /area/security/execution/education) "aUJ" = ( /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4 @@ -22487,7 +19922,7 @@ pixel_y = -3 }, /obj/item/lipstick/random, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = -32 }, /turf/open/floor/plasteel/cafeteria, @@ -22563,27 +19998,27 @@ "aVq" = ( /obj/structure/chair/stool, /obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aVr" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/snacks/chips, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aVs" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aVt" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/drinks/britcup, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aVu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/chair/stool, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aVv" = ( /obj/structure/cable/white{ @@ -23151,7 +20586,7 @@ }, /area/security/execution/education) "aWs" = ( -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = 32 }, /obj/effect/decal/cleanable/dirt, @@ -23289,7 +20724,7 @@ /turf/open/floor/plasteel, /area/engine/atmos) "aWJ" = ( -/obj/structure/sign/nosmoking_2, +/obj/structure/sign/warning/nosmoking, /turf/closed/wall, /area/engine/atmos) "aWK" = ( @@ -23464,13 +20899,13 @@ pixel_x = -26; pixel_y = -26 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aXc" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aXd" = ( /obj/structure/cable/white{ @@ -23781,7 +21216,7 @@ icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/bluecross_2, +/obj/structure/sign/departments/medbay/alt, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/security/prison) @@ -24047,7 +21482,7 @@ dir = 10 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = 32 }, /obj/machinery/light/small{ @@ -24199,7 +21634,6 @@ /obj/structure/cable/white{ icon_state = "2-8" }, -/obj/effect/landmark/lightsout, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -24226,7 +21660,7 @@ dir = 4; name = "service camera" }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aYF" = ( /obj/machinery/firealarm{ @@ -24236,7 +21670,7 @@ /obj/machinery/light{ dir = 4 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aYG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -25194,21 +22628,21 @@ pixel_x = -32 }, /obj/item/twohanded/required/kirbyplants/random, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "baE" = ( /obj/structure/chair/stool/bar, /obj/structure/disposalpipe/segment{ dir = 6 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "baF" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 8 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "baG" = ( /obj/structure/extinguisher_cabinet{ @@ -25482,18 +22916,6 @@ dir = 1 }, /area/security/prison) -"bbj" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/prison) "bbk" = ( /obj/structure/cable/white, /obj/machinery/power/apc/highcap/five_k{ @@ -25532,7 +22954,7 @@ /area/security/prison) "bbn" = ( /obj/item/twohanded/required/kirbyplants/random, -/obj/structure/sign/pods{ +/obj/structure/sign/warning/pods{ dir = 8; pixel_y = -32 }, @@ -25553,7 +22975,7 @@ /area/security/prison) "bbp" = ( /obj/machinery/light/small, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_y = -32 }, /obj/effect/decal/cleanable/dirt, @@ -25618,7 +23040,8 @@ id = "pod3"; name = "escape pod 3"; port_direction = 2; - preferred_direction = 4 + preferred_direction = 4; + timid = 0 }, /obj/effect/turf_decal/stripes/end{ dir = 8 @@ -25679,7 +23102,7 @@ /area/space/nearstation) "bbA" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = -32 }, /obj/machinery/light/small{ @@ -26197,13 +23620,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/quartermaster/miningoffice) -"bcH" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/mining) -"bcI" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/mining) "bcJ" = ( /obj/structure/table/reinforced, /obj/item/folder/red, @@ -26924,7 +24340,7 @@ icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/vacuum, +/obj/structure/sign/warning/vacuum, /turf/open/floor/plating, /area/quartermaster/miningoffice) "bel" = ( @@ -26937,40 +24353,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/quartermaster/miningoffice) -"bem" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/emergency, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"ben" = ( -/obj/machinery/computer/shuttle/mining, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"beo" = ( -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) "bep" = ( /obj/machinery/door/poddoor/preopen{ id = "brigprison"; @@ -26980,7 +24362,7 @@ icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/pods{ +/obj/structure/sign/warning/pods{ pixel_x = -32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -27111,7 +24493,7 @@ /turf/open/floor/plasteel, /area/engine/atmos) "beE" = ( -/obj/structure/sign/atmosplaque, +/obj/structure/sign/plaques/atmos, /turf/closed/wall, /area/engine/atmos) "beF" = ( @@ -27148,7 +24530,7 @@ }, /area/engine/atmos) "beJ" = ( -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = 32 }, /obj/machinery/light/small{ @@ -27500,7 +24882,7 @@ /area/quartermaster/miningoffice) "bfG" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/pods{ +/obj/structure/sign/warning/pods{ name = "MINING POD" }, /turf/open/floor/plating, @@ -27522,26 +24904,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/quartermaster/miningoffice) -"bfK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"bfL" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/shuttle/mining) -"bfM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) "bfN" = ( /obj/structure/cable/white{ icon_state = "1-2" @@ -27549,7 +24911,7 @@ /obj/structure/cable/white{ icon_state = "2-4" }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = -32 }, /obj/machinery/light/small{ @@ -27798,7 +25160,7 @@ /turf/open/floor/plasteel, /area/maintenance/port/fore) "bgk" = ( -/obj/structure/sign/botany, +/obj/structure/sign/departments/botany, /turf/closed/wall, /area/hydroponics) "bgl" = ( @@ -28014,7 +25376,6 @@ /area/quartermaster/miningoffice) "bgJ" = ( /obj/machinery/holopad, -/obj/effect/landmark/lightsout, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, @@ -28118,64 +25479,17 @@ /turf/open/floor/plasteel, /area/quartermaster/miningoffice) "bgU" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Mining Shuttle Airlock"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/mining) -"bgV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"bgW" = ( -/turf/open/floor/plasteel/neutral, -/area/shuttle/mining) -"bgX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"bgY" = ( -/obj/docking_port/mobile{ - dir = 8; - dwidth = 3; - height = 5; - id = "mining"; - name = "mining shuttle"; - port_direction = 4; - width = 7 - }, /obj/docking_port/stationary{ - dir = 8; + dir = 4; dwidth = 3; height = 5; id = "mining_home"; name = "mining shuttle bay"; - width = 7 + width = 7; + roundstart_template = /datum/map_template/shuttle/mining/delta }, -/obj/machinery/door/airlock/shuttle{ - name = "Mining Shuttle Airlock"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/mining) +/turf/open/space/basic, +/area/space) "bgZ" = ( /turf/closed/wall/r_wall, /area/security/brig) @@ -28237,7 +25551,7 @@ "bhf" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = -32 }, /obj/machinery/light/small{ @@ -28819,39 +26133,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/quartermaster/miningoffice) -"biv" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"biw" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"bix" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) "biy" = ( /obj/structure/cable/white{ icon_state = "0-2" @@ -29300,8 +26581,7 @@ "bjo" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/item/device/flashlight, /obj/effect/spawner/lootdrop/maintenance, @@ -29690,115 +26970,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/quartermaster/miningoffice) -"bkg" = ( -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/structure/closet/crate/internals, -/obj/effect/decal/cleanable/dirt, -/obj/item/pickaxe/emergency, -/obj/item/pickaxe/emergency, -/obj/effect/turf_decal/delivery, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"bkh" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/mining) -"bki" = ( -/obj/structure/ore_box, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) "bkj" = ( /obj/structure/cable/white{ icon_state = "0-2" @@ -30665,15 +27836,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"bmb" = ( -/obj/structure/shuttle/engine/propulsion/burst, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/mining) "bmc" = ( /obj/structure/cable/white, /obj/effect/spawner/structure/window/reinforced, @@ -30705,7 +27867,7 @@ "bmg" = ( /obj/structure/cable/white, /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/bluecross_2, +/obj/structure/sign/departments/medbay/alt, /turf/open/floor/plating, /area/security/brig) "bmh" = ( @@ -31824,7 +28986,7 @@ /area/engine/atmos) "boy" = ( /obj/machinery/hydroponics/constructable, -/obj/structure/sign/botany{ +/obj/structure/sign/departments/botany{ pixel_x = -32 }, /obj/effect/turf_decal/delivery, @@ -32184,7 +29346,6 @@ /obj/structure/cable/white{ icon_state = "1-2" }, -/obj/effect/landmark/lightsout, /turf/open/floor/plasteel/neutral, /area/security/brig) "bpl" = ( @@ -33030,7 +30191,6 @@ /turf/open/floor/plasteel, /area/hallway/primary/central) "bqP" = ( -/obj/effect/landmark/lightsout, /obj/structure/cable/white{ icon_state = "4-8" }, @@ -33161,18 +30321,11 @@ dir = 4 }, /area/hallway/primary/central) -"brc" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/labor) -"brd" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/labor) "bre" = ( /obj/machinery/light{ dir = 8 }, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_x = -32 }, /obj/effect/turf_decal/stripes/line{ @@ -33782,7 +30935,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/nosmoking_2, +/obj/structure/sign/warning/nosmoking, /turf/closed/wall/r_wall, /area/engine/atmos) "bsp" = ( @@ -34155,27 +31308,6 @@ "bsW" = ( /turf/closed/wall, /area/hallway/primary/central) -"bsX" = ( -/obj/machinery/computer/shuttle/labor{ - dir = 4 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -31 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/labor) -"bsY" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/labor) -"bsZ" = ( -/obj/item/folder/red, -/obj/item/restraints/handcuffs, -/obj/structure/table/reinforced, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/labor) "bta" = ( /obj/structure/cable/white{ icon_state = "0-4" @@ -34191,7 +31323,7 @@ icon_state = "4-8" }, /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/vacuum, +/obj/structure/sign/warning/vacuum, /turf/open/floor/plating, /area/security/execution/transfer) "btc" = ( @@ -34909,48 +32041,6 @@ "but" = ( /turf/closed/wall/r_wall, /area/security/nuke_storage) -"buu" = ( -/obj/structure/grille, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/labor) -"buv" = ( -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/labor) -"buw" = ( -/obj/machinery/button/flasher{ - id = "gulagshuttleflasher"; - name = "Flash Control"; - pixel_y = -26; - req_access_txt = "1" - }, -/obj/machinery/light, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/labor) -"bux" = ( -/obj/machinery/mineral/labor_claim_console{ - machinedir = 2; - pixel_x = 30; - pixel_y = 30 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/labor) -"buy" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Labor Shuttle Airlock"; - req_access_txt = "2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/labor) "buz" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 4; @@ -35263,7 +32353,7 @@ /obj/structure/extinguisher_cabinet{ pixel_x = -26 }, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = -32 }, /turf/open/floor/plasteel/arrival, @@ -35453,7 +32543,7 @@ }, /area/hallway/primary/port) "bvv" = ( -/obj/structure/sign/electricshock, +/obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/storage/tech) "bvw" = ( @@ -35636,29 +32726,6 @@ dir = 4 }, /area/security/nuke_storage) -"bvU" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Labor Shuttle Airlock"; - req_access_txt = "2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/labor) -"bvV" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/labor) -"bvW" = ( -/obj/machinery/mineral/stacking_machine/laborstacker{ - input_dir = 2; - output_dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/labor) "bvX" = ( /obj/structure/closet/emcloset, /obj/structure/cable/white{ @@ -35738,7 +32805,7 @@ /turf/open/floor/plasteel, /area/security/main) "bwh" = ( -/obj/structure/sign/goldenplaque{ +/obj/structure/sign/plaques/golden{ pixel_y = -32 }, /turf/open/floor/plasteel/red/corner, @@ -35815,7 +32882,7 @@ /obj/structure/cable/white{ icon_state = "0-8" }, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_y = 32 }, /obj/machinery/camera/motion{ @@ -35831,7 +32898,7 @@ icon_state = "2-8" }, /obj/item/twohanded/required/kirbyplants/random, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = 32 }, /obj/effect/turf_decal/stripes/line, @@ -35920,7 +32987,7 @@ /turf/closed/wall/r_wall, /area/engine/atmos) "bwz" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/r_wall, /area/engine/atmos) @@ -36339,33 +33406,6 @@ dir = 5 }, /area/security/nuke_storage) -"bxj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/shuttle/labor) -"bxk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/labor) -"bxl" = ( -/obj/machinery/mineral/labor_claim_console{ - machinedir = 1; - pixel_x = 30 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/shuttle/labor) "bxm" = ( /obj/machinery/door/firedoor, /obj/structure/cable/white{ @@ -36926,10 +33966,10 @@ /obj/structure/cable/white{ icon_state = "4-8" }, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_y = -32 }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_y = 32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -36982,32 +34022,6 @@ dir = 5 }, /area/security/nuke_storage) -"byA" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/shuttle/labor) -"byB" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/shuttle/labor) -"byC" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/flasher{ - id = "gulagshuttleflasher"; - pixel_x = 25 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/shuttle/labor) "byD" = ( /obj/machinery/gulag_item_reclaimer{ pixel_y = 28 @@ -37287,7 +34301,7 @@ }, /obj/item/crowbar/red, /obj/item/wrench, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = 32 }, /obj/effect/turf_decal/bot, @@ -37373,7 +34387,7 @@ /turf/open/floor/plasteel/redyellow, /area/engine/break_room) "bzq" = ( -/obj/structure/sign/nosmoking_2, +/obj/structure/sign/warning/nosmoking, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/r_wall, /area/engine/break_room) @@ -37396,7 +34410,7 @@ /turf/open/floor/plasteel, /area/engine/break_room) "bzs" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/engine/break_room) @@ -37764,130 +34778,18 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/circuit/green, /area/security/nuke_storage) -"bzZ" = ( -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/structure/closet/crate/internals, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/shuttle/labor) -"bAa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/labor) -"bAb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/shuttle/labor) "bAc" = ( -/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"; - port_direction = 4; - width = 9 - }, /obj/docking_port/stationary{ dir = 8; dwidth = 2; height = 5; id = "laborcamp_home"; name = "fore bay 1"; - width = 9 + width = 9; + roundstart_template = /datum/map_template/shuttle/labour/delta }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/labor) +/turf/open/space/basic, +/area/space) "bAd" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 4; @@ -37902,11 +34804,6 @@ }, /turf/open/floor/plasteel, /area/security/execution/transfer) -"bAe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/execution/transfer) "bAf" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 8; @@ -38203,7 +35100,7 @@ icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_y = 32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -38848,15 +35745,6 @@ dir = 8 }, /area/security/nuke_storage) -"bBX" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/labor) "bBY" = ( /obj/structure/cable/white{ icon_state = "1-2" @@ -39141,7 +36029,7 @@ /turf/open/floor/plasteel, /area/engine/gravity_generator) "bCF" = ( -/obj/structure/sign/radiation, +/obj/structure/sign/warning/radiation, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -39667,7 +36555,6 @@ /obj/structure/cable/white{ icon_state = "1-2" }, -/obj/effect/landmark/lightsout, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -40045,11 +36932,6 @@ dir = 4 }, /area/hallway/primary/central) -"bDU" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/labor) "bDV" = ( /turf/closed/wall, /area/security/execution/transfer) @@ -40190,7 +37072,7 @@ pixel_x = 4; req_access_txt = "16" }, -/obj/effect/landmark/tripai, +/obj/effect/landmark/start/ai/secondary, /turf/open/floor/circuit/green, /area/ai_monitored/turret_protected/ai) "bEg" = ( @@ -40304,14 +37186,14 @@ pixel_x = -3; req_access_txt = "16" }, -/obj/effect/landmark/tripai, +/obj/effect/landmark/start/ai/secondary, /turf/open/floor/circuit/green, /area/ai_monitored/turret_protected/ai) "bEn" = ( /obj/machinery/light{ dir = 8 }, -/obj/structure/sign/radiation{ +/obj/structure/sign/warning/radiation{ pixel_x = -32 }, /turf/open/floor/plasteel/vault{ @@ -41090,7 +37972,7 @@ }, /obj/effect/spawner/structure/window/reinforced, /obj/structure/disposalpipe/segment, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_x = -32 }, /turf/open/floor/plating, @@ -41306,7 +38188,7 @@ /turf/open/floor/plasteel, /area/engine/gravity_generator) "bGc" = ( -/obj/structure/sign/radiation, +/obj/structure/sign/warning/radiation, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42132,7 +39014,7 @@ "bHO" = ( /obj/structure/cable/white, /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_y = -32 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -42340,13 +39222,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/break_room) -"bIj" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/neutral, -/area/engine/break_room) "bIk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ @@ -42524,10 +39399,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/storage/primary) -"bIy" = ( -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/neutral, -/area/storage/primary) "bIz" = ( /obj/structure/table/reinforced, /obj/item/stack/packageWrap, @@ -42963,12 +39834,18 @@ /turf/open/floor/plating, /area/security/brig) "bJt" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/red/side{ dir = 8 }, /area/security/brig) "bJu" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, /turf/open/floor/plasteel/red/side{ dir = 4 }, @@ -42980,6 +39857,9 @@ /obj/structure/cable/white{ icon_state = "2-4" }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, /obj/machinery/door/window/brigdoor/security/cell/westright{ id = "brig1"; name = "Cell 1" @@ -43357,7 +40237,7 @@ }, /area/engine/break_room) "bKh" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -44317,7 +41197,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/structure/sign/electricshock, +/obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/security/checkpoint/engineering) "bMf" = ( @@ -44830,6 +41710,9 @@ }, /area/hallway/primary/starboard) "bNi" = ( +/obj/structure/sign/warning/electricshock{ + pixel_x = 32 + }, /obj/machinery/light{ dir = 4 }, @@ -45823,10 +42706,6 @@ dir = 5 }, /area/security/detectives_office) -"bPn" = ( -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/starboard) "bPo" = ( /obj/structure/closet/secure_closet/brig{ id = "brig2"; @@ -46011,7 +42890,7 @@ /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/aisat_interior) "bPH" = ( -/obj/structure/sign/kiddieplaque, +/obj/structure/sign/plaques/kiddie, /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/aisat_interior) "bPI" = ( @@ -46047,7 +42926,7 @@ /area/space/nearstation) "bPL" = ( /obj/machinery/light/small, -/obj/structure/sign/vacuum{ +/obj/structure/sign/warning/vacuum{ pixel_x = -32 }, /turf/open/floor/plasteel/vault{ @@ -46162,7 +43041,7 @@ }, /area/crew_quarters/heads/chief) "bPW" = ( -/obj/structure/sign/electricshock, +/obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/crew_quarters/heads/chief) "bPX" = ( @@ -46170,7 +43049,7 @@ /turf/closed/wall/r_wall, /area/crew_quarters/heads/chief) "bPY" = ( -/obj/structure/sign/nosmoking_2, +/obj/structure/sign/warning/nosmoking, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/engine/break_room) @@ -46193,7 +43072,7 @@ /turf/open/floor/plasteel, /area/engine/break_room) "bQa" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, /area/engine/break_room) @@ -46557,7 +43436,7 @@ /turf/open/floor/wood, /area/crew_quarters/heads/captain) "bQW" = ( -/obj/structure/sign/goldenplaque/captain{ +/obj/structure/sign/plaques/golden/captain{ pixel_x = 32 }, /turf/open/floor/wood, @@ -46624,7 +43503,6 @@ /obj/machinery/light/small{ dir = 8 }, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/vault{ dir = 8 }, @@ -46736,6 +43614,9 @@ }, /area/security/detectives_office) "bRo" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, /turf/open/floor/plasteel/red/side{ dir = 8 }, @@ -46747,6 +43628,9 @@ /obj/structure/cable/white{ icon_state = "2-4" }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, /obj/machinery/door/window/brigdoor/security/cell/westright{ id = "brig2"; name = "Cell 2" @@ -46899,7 +43783,7 @@ /obj/structure/cable/yellow{ icon_state = "0-2" }, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_y = 32 }, /obj/effect/turf_decal/stripes/line{ @@ -46998,7 +43882,7 @@ /turf/open/space, /area/space/nearstation) "bRP" = ( -/obj/structure/sign/vacuum, +/obj/structure/sign/warning/vacuum, /turf/closed/wall, /area/space/nearstation) "bRQ" = ( @@ -47934,6 +44818,7 @@ icon_state = "control_standby"; name = "Antechamber Turret Control"; pixel_x = -32; + req_access = null; req_access_txt = "65" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -48913,6 +45798,9 @@ /turf/open/floor/plasteel/neutral, /area/hallway/primary/starboard) "bVj" = ( +/obj/structure/sign/warning/electricshock{ + pixel_x = 32 + }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -49936,7 +46824,6 @@ /obj/structure/cable/white{ icon_state = "1-2" }, -/obj/effect/landmark/lightsout, /obj/structure/cable/white{ icon_state = "1-4" }, @@ -50392,7 +47279,7 @@ }, /area/aisat) "bXU" = ( -/obj/structure/sign/nosmoking_2, +/obj/structure/sign/warning/nosmoking, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -50583,7 +47470,7 @@ icon_state = "curved0"; dir = 4 }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_y = -32 }, /turf/open/floor/plasteel/vault{ @@ -51710,7 +48597,7 @@ /turf/open/floor/plasteel, /area/engine/engineering) "caw" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/engine/engineering) @@ -51733,7 +48620,7 @@ /turf/open/floor/plasteel, /area/engine/engineering) "cay" = ( -/obj/structure/sign/radiation, +/obj/structure/sign/warning/radiation, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, /area/engine/engineering) @@ -51989,8 +48876,6 @@ /area/crew_quarters/heads/captain/private) "cbf" = ( /obj/structure/closet/secure_closet/captains, -/obj/item/clothing/suit/armor/vest/capcarapace, -/obj/item/clothing/head/caphat, /obj/effect/turf_decal/stripes/line{ dir = 6 }, @@ -52403,7 +49288,7 @@ /turf/open/floor/plasteel, /area/engine/engineering) "cbV" = ( -/obj/structure/sign/vacuum, +/obj/structure/sign/warning/vacuum, /turf/closed/wall, /area/engine/engineering) "cbW" = ( @@ -52700,11 +49585,6 @@ }, /turf/open/floor/plasteel/neutral, /area/hallway/primary/central) -"ccy" = ( -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/blue/corner, -/area/hallway/primary/central) "ccz" = ( /obj/machinery/status_display, /turf/closed/wall/r_wall, @@ -52866,7 +49746,6 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/item/card/id/captains_spare, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -53673,7 +50552,7 @@ }, /area/tcommsat/server) "cex" = ( -/obj/machinery/message_server, +/obj/machinery/telecomms/message_server, /obj/structure/cable/white{ icon_state = "4-8" }, @@ -54011,6 +50890,9 @@ }, /area/security/brig) "cfd" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, /obj/structure/cable/white{ icon_state = "1-2" }, @@ -54070,7 +50952,6 @@ /obj/structure/cable/white{ icon_state = "2-4" }, -/obj/effect/landmark/lightsout, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -54260,7 +51141,7 @@ pixel_x = -3; pixel_y = -3 }, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_x = 32 }, /turf/open/floor/plasteel/vault{ @@ -54280,7 +51161,7 @@ /turf/open/floor/plating/airless, /area/engine/engineering) "cfC" = ( -/obj/structure/sign/vacuum, +/obj/structure/sign/warning/vacuum, /turf/closed/wall/r_wall, /area/engine/engineering) "cfD" = ( @@ -54428,7 +51309,7 @@ /turf/open/floor/plasteel, /area/engine/engineering) "cfQ" = ( -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_x = 32 }, /obj/item/device/radio/intercom{ @@ -54478,7 +51359,7 @@ dir = 8 }, /obj/item/twohanded/required/kirbyplants/random, -/obj/structure/sign/kiddieplaque/library{ +/obj/structure/sign/plaques/kiddie/library{ pixel_x = -32 }, /turf/open/floor/wood, @@ -54503,7 +51384,7 @@ /turf/open/floor/wood, /area/library) "cfZ" = ( -/obj/structure/sign/nosmoking_2, +/obj/structure/sign/warning/nosmoking, /turf/closed/wall, /area/library) "cga" = ( @@ -54516,7 +51397,7 @@ }, /area/library) "cgb" = ( -/obj/structure/sign/kiddieplaque/library{ +/obj/structure/sign/plaques/kiddie/library{ pixel_x = -32 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -54525,7 +51406,7 @@ }, /area/hallway/primary/central) "cgc" = ( -/obj/structure/sign/electricshock, +/obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/crew_quarters/heads/hop) "cgd" = ( @@ -54878,15 +51759,15 @@ /turf/open/floor/wood, /area/lawoffice) "cgP" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/table/reinforced, /obj/machinery/newscaster/security_unit{ pixel_x = -32 }, -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, +/obj/item/clipboard, +/obj/item/toy/figure/secofficer, /turf/open/floor/plasteel/red/side{ dir = 8 }, @@ -54895,21 +51776,16 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, /turf/open/floor/plasteel/neutral, /area/security/brig) "cgR" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/filingcabinet/chestdrawer, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, /turf/open/floor/plasteel/red/side{ dir = 4 }, @@ -54918,16 +51794,15 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/structure/cable/white{ - icon_state = "4-8" +/turf/open/floor/plasteel/red/corner{ + dir = 1 }, -/turf/open/floor/plasteel, /area/security/brig) "cgT" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/white{ - icon_state = "4-8" + icon_state = "2-4" }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plasteel, /area/security/brig) "cgU" = ( @@ -55362,7 +52237,7 @@ /obj/machinery/computer/atmos_alert{ dir = 1 }, -/obj/structure/sign/nosmoking_1{ +/obj/structure/sign/warning/nosmoking/circle{ pixel_x = 28; pixel_y = -28 }, @@ -55719,6 +52594,9 @@ /turf/open/floor/wood, /area/lawoffice) "ciz" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, /obj/structure/table/reinforced, /obj/item/paper_bin, /obj/machinery/light/small{ @@ -55733,6 +52611,9 @@ }, /area/security/brig) "ciA" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, /obj/structure/sign/nanotrasen{ pixel_y = -32 }, @@ -55744,38 +52625,57 @@ dir = 1; name = "security camera" }, -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/toy/figure/secofficer, /turf/open/floor/plasteel/red/side, /area/security/brig) "ciB" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, /obj/structure/extinguisher_cabinet{ pixel_y = -26 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/structure/filingcabinet/chestdrawer, /turf/open/floor/plasteel/red/side{ dir = 6 }, /area/security/brig) "ciC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Desk"; + req_access_txt = "63" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" }, -/turf/closed/wall, -/area/security/brig) -"ciD" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel/red/side{ - dir = 10 + dir = 8 }, /area/security/brig) +"ciD" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner, +/area/security/brig) "ciE" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, /obj/structure/chair{ dir = 1 }, @@ -56356,12 +53256,6 @@ dir = 5 }, /area/security/courtroom) -"cjW" = ( -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/security/courtroom) "cjX" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -56783,13 +53677,6 @@ }, /turf/open/floor/plasteel/grimy, /area/library) -"ckS" = ( -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/library) "ckT" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 @@ -56842,7 +53729,7 @@ }, /area/tcommsat/server) "cla" = ( -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_y = -32 }, /turf/open/floor/plasteel/vault/telecomms{ @@ -56884,7 +53771,7 @@ /obj/machinery/light{ dir = 8 }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = -32 }, /turf/open/floor/plasteel/neutral/corner{ @@ -57035,8 +53922,7 @@ /area/maintenance/starboard) "clv" = ( /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/effect/decal/cleanable/dirt, /obj/item/device/flashlight, @@ -57144,7 +54030,7 @@ /turf/open/floor/plating, /area/security/range) "clG" = ( -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_y = 32 }, /obj/machinery/light{ @@ -58067,7 +54953,7 @@ /area/ai_monitored/turret_protected/ai_upload) "cnv" = ( /obj/machinery/porta_turret/ai, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_y = -32 }, /turf/open/floor/plasteel/vault{ @@ -58145,7 +55031,7 @@ /turf/open/floor/plating/airless, /area/space/nearstation) "cnC" = ( -/obj/structure/sign/radiation, +/obj/structure/sign/warning/radiation, /turf/closed/wall/r_wall, /area/engine/engineering) "cnD" = ( @@ -58758,7 +55644,7 @@ /turf/open/floor/plating, /area/security/range) "coS" = ( -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_y = -32 }, /obj/machinery/light, @@ -58887,7 +55773,7 @@ /turf/open/floor/plasteel, /area/engine/engineering) "cph" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/engine/engineering) "cpi" = ( @@ -58915,7 +55801,7 @@ /obj/machinery/shieldgen, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = 32 }, /obj/effect/turf_decal/bot, @@ -59569,7 +56455,7 @@ /turf/open/floor/plasteel, /area/maintenance/port) "cqK" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/maintenance/port) "cqL" = ( @@ -59670,7 +56556,7 @@ /turf/open/floor/plating, /area/hallway/secondary/command) "cra" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/r_wall, /area/hallway/secondary/command) @@ -59899,7 +56785,6 @@ /turf/open/floor/plating, /area/maintenance/starboard) "crA" = ( -/turf/open/floor/plating, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating{ icon_state = "platingdmg2" @@ -59921,7 +56806,7 @@ /turf/open/floor/plasteel, /area/maintenance/starboard) "crD" = ( -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_x = -32; pixel_y = 32 }, @@ -60125,7 +57010,7 @@ /obj/machinery/light/small{ dir = 4 }, -/obj/structure/sign/fire{ +/obj/structure/sign/warning/fire{ pixel_x = 32 }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -60321,7 +57206,7 @@ }, /area/hallway/secondary/command) "cst" = ( -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_y = 32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -60424,7 +57309,7 @@ }, /area/hallway/secondary/command) "csC" = ( -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_y = 32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -61191,7 +58076,7 @@ /obj/structure/cable/white{ icon_state = "4-8" }, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_x = -32; pixel_y = -32 }, @@ -61277,7 +58162,7 @@ /obj/structure/cable/white{ icon_state = "4-8" }, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_x = 32; pixel_y = -32 }, @@ -61459,6 +58344,9 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/machinery/computer/cryopod{ + pixel_x = 28 + }, /turf/open/floor/plasteel/neutral/side{ dir = 4 }, @@ -61508,8 +58396,7 @@ /area/maintenance/starboard) "cuH" = ( /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/item/clothing/shoes/jackboots, /obj/item/device/radio, @@ -61860,7 +58747,6 @@ icon_state = "1-2" }, /obj/machinery/holopad, -/obj/effect/landmark/lightsout, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/hallway/secondary/command) @@ -62638,10 +59524,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/neutral, /area/hallway/primary/central) -"cxe" = ( -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) "cxf" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/stripes/line{ @@ -62722,7 +59604,7 @@ /obj/machinery/light{ dir = 4 }, -/obj/structure/closet/wardrobe/mixed, +/obj/machinery/cryopod, /turf/open/floor/plasteel/vault{ dir = 5 }, @@ -62845,17 +59727,6 @@ }, /turf/open/floor/plating/airless, /area/space/nearstation) -"cxC" = ( -/obj/machinery/power/rad_collector/anchored, -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering) "cxD" = ( /obj/structure/rack, /obj/item/crowbar, @@ -62909,7 +59780,7 @@ "cxI" = ( /obj/item/twohanded/required/kirbyplants/random, /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_y = 32 }, /obj/effect/turf_decal/bot, @@ -63095,7 +59966,6 @@ }, /area/library) "cyd" = ( -/obj/effect/landmark/revenantspawn, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -63513,16 +60383,6 @@ }, /turf/open/floor/plasteel/neutral, /area/crew_quarters/locker) -"cyT" = ( -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/locker) "cyU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 @@ -63538,7 +60398,7 @@ /obj/machinery/status_display{ pixel_x = 32 }, -/obj/structure/closet/wardrobe/mixed, +/obj/machinery/cryopod, /turf/open/floor/plasteel/vault{ dir = 5 }, @@ -63567,8 +60427,7 @@ /area/maintenance/starboard) "cza" = ( /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; @@ -63810,7 +60669,7 @@ dir = 8 }, /obj/machinery/disposal/bin, -/obj/structure/sign/kiddieplaque/library{ +/obj/structure/sign/plaques/kiddie/library{ pixel_x = -32 }, /obj/structure/disposalpipe/trunk{ @@ -64475,7 +61334,7 @@ }, /obj/item/clothing/mask/breath, /obj/item/clothing/mask/breath, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = 32 }, /obj/effect/decal/cleanable/dirt, @@ -65274,7 +62133,7 @@ /area/engine/storage) "cCB" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = 32 }, /obj/structure/tank_dispenser, @@ -65988,7 +62847,6 @@ /turf/open/floor/plasteel, /area/engine/engineering) "cEb" = ( -/obj/effect/landmark/lightsout, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -67285,13 +64143,6 @@ }, /turf/open/floor/plasteel, /area/gateway) -"cGG" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) "cGH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/mirror{ @@ -67617,7 +64468,7 @@ "cHq" = ( /obj/item/twohanded/required/kirbyplants/random, /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_y = -32 }, /obj/effect/turf_decal/bot, @@ -67838,7 +64689,7 @@ /turf/open/floor/plating, /area/bridge/showroom/corporate) "cHN" = ( -/obj/structure/sign/electricshock, +/obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/bridge/showroom/corporate) "cHO" = ( @@ -68190,16 +65041,6 @@ }, /turf/closed/wall, /area/maintenance/port) -"cIz" = ( -/obj/effect/landmark/lightsout, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/central) "cIA" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plasteel/neutral/corner{ @@ -68870,8 +65711,7 @@ "cJM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/item/device/flashlight, /obj/effect/spawner/lootdrop/maintenance, @@ -69693,7 +66533,6 @@ /turf/open/floor/plasteel/neutral, /area/crew_quarters/dorms) "cLd" = ( -/obj/effect/landmark/lightsout, /turf/open/floor/plasteel/neutral, /area/crew_quarters/dorms) "cLe" = ( @@ -69712,9 +66551,6 @@ }, /turf/open/floor/plasteel/neutral, /area/crew_quarters/dorms) -"cLh" = ( -/turf/open/floor/plasteel/neutral, -/area/crew_quarters/dorms) "cLi" = ( /obj/item/twohanded/required/kirbyplants/random, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -69755,7 +66591,7 @@ }, /area/crew_quarters/fitness/recreation) "cLn" = ( -/obj/structure/sign/nosmoking_2, +/obj/structure/sign/warning/nosmoking, /turf/closed/wall, /area/crew_quarters/fitness/recreation) "cLo" = ( @@ -70422,7 +67258,6 @@ /obj/structure/cable/white{ icon_state = "1-2" }, -/obj/effect/landmark/lightsout, /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, /obj/structure/disposalpipe/junction/flip{ dir = 1 @@ -70487,7 +67322,7 @@ /turf/closed/wall, /area/maintenance/department/electrical) "cMP" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall, /area/maintenance/department/electrical) "cMQ" = ( @@ -70509,7 +67344,7 @@ /turf/closed/wall, /area/maintenance/department/electrical) "cMS" = ( -/obj/structure/sign/electricshock, +/obj/structure/sign/warning/electricshock, /turf/closed/wall, /area/maintenance/department/electrical) "cMT" = ( @@ -70648,8 +67483,7 @@ /area/science/xenobiology) "cNj" = ( /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/item/device/flashlight, /obj/effect/spawner/lootdrop/maintenance, @@ -70685,7 +67519,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/central) "cNo" = ( -/obj/structure/sign/science, +/obj/structure/sign/departments/science, /turf/closed/wall, /area/hallway/primary/central) "cNp" = ( @@ -70821,7 +67655,7 @@ /turf/open/floor/plasteel, /area/medical/medbay/central) "cND" = ( -/obj/structure/sign/bluecross_2, +/obj/structure/sign/departments/medbay/alt, /turf/closed/wall, /area/medical/medbay/central) "cNE" = ( @@ -71499,7 +68333,7 @@ }, /area/science/research) "cPi" = ( -/obj/structure/sign/science, +/obj/structure/sign/departments/science, /turf/closed/wall, /area/science/research) "cPj" = ( @@ -72953,13 +69787,6 @@ }, /turf/open/floor/plasteel/whitepurple/corner, /area/science/research) -"cSt" = ( -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) "cSu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -73498,7 +70325,7 @@ /turf/open/floor/circuit/green, /area/science/xenobiology) "cTA" = ( -/obj/structure/sign/electricshock, +/obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/science/xenobiology) "cTB" = ( @@ -73547,7 +70374,7 @@ /turf/open/floor/plasteel, /area/science/xenobiology) "cTG" = ( -/obj/structure/sign/xenobio, +/obj/structure/sign/departments/xenobio, /turf/closed/wall, /area/science/xenobiology) "cTH" = ( @@ -73587,7 +70414,7 @@ /turf/open/floor/plasteel, /area/science/xenobiology) "cTK" = ( -/obj/structure/sign/electricshock, +/obj/structure/sign/warning/electricshock, /turf/closed/wall, /area/science/xenobiology) "cTL" = ( @@ -73644,7 +70471,7 @@ /turf/open/floor/plasteel, /area/science/xenobiology) "cTP" = ( -/obj/structure/sign/biohazard, +/obj/structure/sign/warning/biohazard, /turf/closed/wall, /area/science/xenobiology) "cTQ" = ( @@ -73885,7 +70712,6 @@ }, /area/hallway/primary/aft) "cUp" = ( -/obj/effect/landmark/lightsout, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -73970,13 +70796,6 @@ }, /turf/open/floor/plasteel/cmo, /area/medical/medbay/central) -"cUy" = ( -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cmo, -/area/medical/medbay/central) "cUz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -75066,7 +71885,7 @@ /obj/machinery/atmospherics/components/binary/valve{ dir = 1 }, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = -32 }, /obj/effect/turf_decal/stripes/line{ @@ -75144,7 +71963,7 @@ /turf/open/floor/plasteel, /area/maintenance/department/electrical) "cWT" = ( -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = 32 }, /obj/effect/turf_decal/delivery, @@ -75283,7 +72102,6 @@ /obj/structure/cable/white{ icon_state = "4-8" }, -/obj/effect/landmark/lightsout, /obj/effect/turf_decal/stripes/line{ dir = 2 }, @@ -75602,7 +72420,7 @@ /area/medical/medbay/central) "cXM" = ( /obj/structure/bed/roller, -/obj/structure/sign/chemistry{ +/obj/structure/sign/departments/chemistry{ pixel_y = -32 }, /obj/machinery/light, @@ -75681,7 +72499,7 @@ }, /area/medical/medbay/central) "cXX" = ( -/obj/structure/sign/bluecross_2{ +/obj/structure/sign/departments/medbay/alt{ pixel_x = 32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -76258,7 +73076,7 @@ /turf/open/floor/plasteel, /area/science/research) "cZi" = ( -/obj/structure/sign/science, +/obj/structure/sign/departments/science, /turf/closed/wall/r_wall, /area/science/research) "cZj" = ( @@ -76279,11 +73097,11 @@ /turf/open/floor/plasteel, /area/science/research) "cZk" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/science/research) "cZl" = ( -/obj/structure/sign/science, +/obj/structure/sign/departments/science, /turf/closed/wall, /area/science/lab) "cZm" = ( @@ -76825,7 +73643,7 @@ }, /area/maintenance/port) "dao" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/department/electrical) @@ -77087,7 +73905,7 @@ /turf/open/floor/plasteel, /area/science/research) "daP" = ( -/obj/structure/sign/nosmoking_2, +/obj/structure/sign/warning/nosmoking, /turf/closed/wall/r_wall, /area/science/lab) "daQ" = ( @@ -78274,7 +75092,7 @@ /obj/item/stack/medical/gauze, /obj/item/stack/medical/bruise_pack, /obj/item/stack/medical/ointment, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = 32 }, /obj/machinery/light/small{ @@ -78880,7 +75698,7 @@ /turf/open/floor/plating, /area/maintenance/starboard/aft) "deN" = ( -/obj/structure/sign/examroom{ +/obj/structure/sign/departments/examroom{ pixel_x = -32 }, /obj/item/twohanded/required/kirbyplants/random, @@ -78909,7 +75727,7 @@ /turf/open/floor/plating, /area/medical/abandoned) "deT" = ( -/obj/structure/sign/bluecross_2, +/obj/structure/sign/departments/medbay/alt, /turf/closed/wall, /area/medical/abandoned) "deU" = ( @@ -79003,7 +75821,7 @@ /turf/open/floor/plating, /area/maintenance/port) "dfc" = ( -/obj/structure/sign/xenobio, +/obj/structure/sign/departments/xenobio, /turf/closed/wall/r_wall, /area/science/xenobiology) "dfd" = ( @@ -79143,7 +75961,7 @@ /turf/open/floor/plasteel, /area/science/research) "dfp" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall, /area/science/research) "dfq" = ( @@ -79210,7 +76028,7 @@ /turf/open/floor/plasteel/whitepurple/corner, /area/science/lab) "dfv" = ( -/obj/structure/sign/chemistry, +/obj/structure/sign/departments/chemistry, /turf/closed/wall, /area/medical/chemistry) "dfw" = ( @@ -79348,7 +76166,7 @@ /turf/open/floor/plasteel, /area/medical/medbay/central) "dfH" = ( -/obj/structure/sign/examroom, +/obj/structure/sign/departments/examroom, /turf/closed/wall, /area/medical/medbay/central) "dfI" = ( @@ -80635,7 +77453,6 @@ icon_state = "4-8" }, /obj/item/device/radio/beacon, -/obj/effect/landmark/lightsout, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/whiteblue, /area/medical/medbay/central) @@ -81079,7 +77896,7 @@ /obj/machinery/light{ dir = 1 }, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = 32 }, /obj/effect/turf_decal/stripes/line, @@ -81363,7 +78180,7 @@ /obj/structure/extinguisher_cabinet{ pixel_y = -32 }, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = -32; pixel_y = -32 }, @@ -81558,7 +78375,7 @@ /turf/open/floor/plasteel/neutral, /area/medical/medbay/central) "dkA" = ( -/obj/structure/sign/bluecross_2{ +/obj/structure/sign/departments/medbay/alt{ pixel_x = 32; pixel_y = -32 }, @@ -81736,7 +78553,6 @@ /obj/structure/chair/office/dark{ dir = 4 }, -/obj/effect/landmark/revenantspawn, /turf/open/floor/wood, /area/maintenance/starboard/aft) "dkT" = ( @@ -81871,13 +78687,6 @@ "dlj" = ( /turf/open/floor/plasteel, /area/science/circuit) -"dlk" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) "dll" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -82000,7 +78809,7 @@ /turf/open/floor/plating, /area/science/research) "dlz" = ( -/obj/structure/sign/nosmoking_2, +/obj/structure/sign/warning/nosmoking, /turf/closed/wall, /area/science/research) "dlA" = ( @@ -82057,7 +78866,7 @@ /turf/open/floor/plating, /area/crew_quarters/heads/hor) "dlG" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/crew_quarters/heads/hor) "dlH" = ( @@ -82204,7 +79013,7 @@ /turf/open/floor/plating, /area/medical/genetics/cloning) "dlX" = ( -/obj/structure/sign/bluecross_2, +/obj/structure/sign/departments/medbay/alt, /turf/closed/wall, /area/medical/genetics/cloning) "dlY" = ( @@ -82358,7 +79167,7 @@ /obj/item/stack/sheet/metal/fifty, /obj/item/stock_parts/cell/super, /obj/item/stock_parts/cell/super, -/obj/structure/sign/science{ +/obj/structure/sign/departments/science{ pixel_x = -32 }, /turf/open/floor/plasteel/white/side{ @@ -82400,7 +79209,6 @@ /area/science/circuit) "dmw" = ( /obj/structure/disposalpipe/segment, -/obj/effect/landmark/lightsout, /turf/open/floor/plasteel/white/side{ dir = 10 }, @@ -82418,13 +79226,6 @@ }, /turf/open/floor/plasteel, /area/science/research/abandoned) -"dmz" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical, -/obj/item/device/multitool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/research/abandoned) "dmA" = ( /obj/effect/landmark/blobstart, /obj/effect/turf_decal/bot, @@ -82743,7 +79544,7 @@ /obj/machinery/light{ dir = 4 }, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = 32 }, /obj/effect/turf_decal/bot, @@ -82811,7 +79612,7 @@ /obj/machinery/light{ dir = 1 }, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = 32 }, /turf/open/floor/plasteel/whitepurple/corner{ @@ -82959,7 +79760,7 @@ /turf/open/floor/plasteel/vault, /area/medical/surgery) "dnF" = ( -/obj/structure/sign/bluecross_2, +/obj/structure/sign/departments/medbay/alt, /turf/closed/wall, /area/medical/surgery) "dnG" = ( @@ -83460,7 +80261,6 @@ /area/science/research) "doF" = ( /obj/machinery/holopad, -/obj/effect/landmark/lightsout, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -84082,16 +80882,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/crew_quarters/abandoned_gambling_den) -"dpW" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/stock_parts/cell/high, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/research/abandoned) "dpX" = ( /obj/structure/chair/office/light{ dir = 8 @@ -84329,7 +81119,7 @@ /turf/open/floor/plasteel, /area/science/explab) "dqs" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -84839,7 +81629,6 @@ "drv" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/vault{ dir = 5 }, @@ -84988,7 +81777,7 @@ }, /area/science/explab) "drK" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/science/explab) "drL" = ( @@ -85014,7 +81803,7 @@ /turf/closed/wall/r_wall, /area/science/mixing) "drQ" = ( -/obj/structure/sign/fire, +/obj/structure/sign/warning/fire, /turf/closed/wall/r_wall, /area/science/mixing) "drR" = ( @@ -85045,7 +81834,7 @@ /turf/open/floor/plasteel, /area/science/mixing) "drT" = ( -/obj/structure/sign/biohazard, +/obj/structure/sign/warning/biohazard, /turf/closed/wall/r_wall, /area/science/mixing) "drU" = ( @@ -85380,7 +82169,7 @@ /turf/open/floor/plasteel/whiteblue/corner, /area/medical/medbay/central) "dsI" = ( -/obj/structure/sign/nosmoking_2, +/obj/structure/sign/warning/nosmoking, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -85538,25 +82327,6 @@ /obj/item/book/manual/wiki/engineering_hacking, /turf/open/floor/plating, /area/crew_quarters/abandoned_gambling_den) -"dtb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dtc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) "dtd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, @@ -85839,7 +82609,7 @@ /turf/open/floor/plasteel/whiteblue/corner, /area/medical/medbay/central) "dtJ" = ( -/obj/structure/sign/bluecross_2, +/obj/structure/sign/departments/medbay/alt, /turf/closed/wall/r_wall, /area/crew_quarters/heads/cmo) "dtK" = ( @@ -86185,7 +82955,6 @@ }, /area/science/explab) "duz" = ( -/obj/effect/landmark/revenantspawn, /obj/effect/turf_decal/bot_white, /turf/open/floor/plasteel/vault{ dir = 8 @@ -86199,12 +82968,6 @@ dir = 8 }, /area/science/explab) -"duB" = ( -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/science/explab) "duC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -86252,7 +83015,7 @@ /obj/machinery/light{ dir = 8 }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = -32 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -87236,12 +83999,6 @@ dir = 8 }, /area/hallway/primary/aft) -"dwE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral, -/area/hallway/primary/aft) "dwF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -87588,7 +84345,6 @@ /obj/structure/cable/white{ icon_state = "2-8" }, -/obj/effect/landmark/lightsout, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -87751,13 +84507,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/crew_quarters/abandoned_gambling_den) -"dxC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/abandoned_gambling_den) "dxD" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -87832,7 +84581,7 @@ /obj/machinery/light{ dir = 8 }, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = -32 }, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ @@ -87977,7 +84726,7 @@ /turf/open/floor/plating, /area/science/robotics/lab) "dye" = ( -/obj/structure/sign/science, +/obj/structure/sign/departments/science, /turf/closed/wall, /area/science/robotics/lab) "dyf" = ( @@ -88688,7 +85437,7 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 }, -/obj/structure/sign/fire{ +/obj/structure/sign/warning/fire{ pixel_x = 32 }, /obj/effect/turf_decal/stripes/line{ @@ -88831,7 +85580,7 @@ /turf/open/floor/plasteel, /area/science/robotics/lab) "dzL" = ( -/obj/structure/sign/science{ +/obj/structure/sign/departments/science{ pixel_x = -32; pixel_y = 32 }, @@ -88842,7 +85591,7 @@ }, /area/hallway/primary/aft) "dzM" = ( -/obj/structure/sign/science{ +/obj/structure/sign/departments/science{ pixel_x = 32; pixel_y = 32 }, @@ -89450,7 +86199,7 @@ dir = 1 }, /obj/machinery/light, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = -32 }, /obj/effect/turf_decal/stripes/end{ @@ -89515,7 +86264,7 @@ id = "geneticslab"; name = "Genetics Lab Shutters" }, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_y = -32 }, /turf/open/floor/plating, @@ -90257,7 +87006,7 @@ /turf/open/floor/plasteel, /area/medical/morgue) "dCA" = ( -/obj/structure/sign/nosmoking_2, +/obj/structure/sign/warning/nosmoking, /turf/closed/wall, /area/medical/morgue) "dCB" = ( @@ -90410,8 +87159,7 @@ "dCR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/item/device/flashlight, /obj/effect/spawner/lootdrop/maintenance, @@ -90492,7 +87240,7 @@ /turf/open/floor/plating, /area/maintenance/starboard/aft) "dDb" = ( -/obj/structure/sign/electricshock, +/obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/maintenance/solars/starboard/aft) "dDc" = ( @@ -90666,7 +87414,7 @@ /turf/open/floor/plasteel, /area/science/mixing) "dDs" = ( -/obj/structure/sign/fire, +/obj/structure/sign/warning/fire, /turf/closed/wall/r_wall, /area/science/misc_lab/range) "dDt" = ( @@ -90870,21 +87618,24 @@ }, /area/medical/morgue) "dDM" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/landmark/revenantspawn, +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, /turf/open/floor/plating, /area/medical/morgue) "dDN" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/landmark/revenantspawn, +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/medical/morgue) "dDO" = ( -/obj/structure/bodycontainer/morgue, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/revenantspawn, +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, /turf/open/floor/plasteel/vault{ dir = 8 }, @@ -90894,6 +87645,9 @@ /obj/machinery/light/small{ dir = 1 }, +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, /turf/open/floor/plating, /area/medical/morgue) "dDQ" = ( @@ -91264,7 +88018,7 @@ }, /area/science/server) "dEE" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -91332,14 +88086,13 @@ /obj/machinery/computer/rdconsole/robotics{ dir = 8 }, -/obj/structure/sign/bluecross_2{ +/obj/structure/sign/departments/medbay/alt{ pixel_x = 32 }, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/science/robotics/lab) "dEP" = ( -/obj/effect/landmark/lightsout, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -91386,7 +88139,7 @@ "dEV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, +/turf/open/floor/plasteel/neutral, /area/medical/morgue) "dEW" = ( /turf/open/floor/plasteel/neutral, @@ -92685,16 +89438,6 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/open/floor/plasteel/neutral, /area/medical/morgue) -"dHG" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/landmark/revenantspawn, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/medical/morgue) "dHH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -92713,6 +89456,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/neutral, /area/medical/morgue) "dHK" = ( @@ -93305,7 +90049,7 @@ /obj/item/device/mmi, /obj/item/device/mmi, /obj/item/device/mmi, -/obj/structure/sign/bluecross_2{ +/obj/structure/sign/departments/medbay/alt{ pixel_y = -32 }, /obj/effect/turf_decal/bot, @@ -93336,7 +90080,7 @@ pixel_y = 16 }, /obj/item/circular_saw, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = -32 }, /obj/structure/mirror{ @@ -93369,6 +90113,9 @@ "dIW" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small, +/obj/structure/bodycontainer/morgue{ + dir = 1 + }, /turf/open/floor/plasteel/vault{ dir = 5 }, @@ -93383,6 +90130,9 @@ /obj/structure/sign/poster/official/bless_this_spess{ pixel_y = -32 }, +/obj/structure/bodycontainer/morgue{ + dir = 1 + }, /turf/open/floor/plasteel/vault{ dir = 5 }, @@ -93400,15 +90150,18 @@ }, /area/medical/morgue) "dIZ" = ( -/obj/structure/bodycontainer/morgue, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/revenantspawn, +/obj/structure/bodycontainer/morgue{ + dir = 1 + }, /turf/open/floor/plating, /area/medical/morgue) "dJa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/light_construct/small, -/obj/effect/landmark/event_spawn, +/obj/structure/bodycontainer/morgue{ + dir = 1 + }, /turf/open/floor/plating, /area/medical/morgue) "dJb" = ( @@ -93863,7 +90616,7 @@ /turf/open/floor/plasteel, /area/science/mixing) "dJY" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -94131,11 +90884,11 @@ /turf/open/floor/plating/airless, /area/science/test_area) "dKA" = ( -/obj/structure/sign/vacuum, +/obj/structure/sign/warning/vacuum, /turf/closed/wall, /area/science/mixing) "dKB" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall, /area/science/mixing) "dKC" = ( @@ -94424,8 +91177,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; @@ -94796,8 +91548,7 @@ "dLT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/item/crowbar/red, /obj/effect/spawner/lootdrop/maintenance{ @@ -95267,7 +92018,6 @@ /obj/structure/cable/white{ icon_state = "1-2" }, -/obj/effect/landmark/lightsout, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -95393,7 +92143,7 @@ /area/crew_quarters/theatre/abandoned) "dNb" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/kink, +/obj/item/twohanded/required/kirbyplants/random, /turf/open/floor/wood, /area/crew_quarters/theatre/abandoned) "dNc" = ( @@ -96408,7 +93158,7 @@ /turf/open/floor/plasteel, /area/medical/medbay/central) "dPp" = ( -/obj/structure/sign/biohazard, +/obj/structure/sign/warning/biohazard, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/r_wall, /area/medical/medbay/central) @@ -96779,7 +93529,7 @@ icon_state = "0-2" }, /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/vacuum, +/obj/structure/sign/warning/vacuum, /turf/open/floor/plating, /area/medical/virology) "dQi" = ( @@ -97057,18 +93807,6 @@ /obj/item/device/radio/beacon, /turf/open/floor/plasteel/neutral, /area/hallway/primary/aft) -"dQS" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/shuttle/escape) -"dQT" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/escape) "dQU" = ( /obj/structure/sink{ dir = 8; @@ -97684,19 +94422,9 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/aft) -"dRY" = ( -/obj/structure/window/reinforced, -/obj/structure/shuttle/engine/heater{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/shuttle/escape) "dRZ" = ( /obj/structure/closet/l3closet/virology, -/obj/structure/sign/biohazard{ +/obj/structure/sign/warning/biohazard{ pixel_y = -32 }, /obj/effect/turf_decal/bot, @@ -97713,7 +94441,7 @@ /area/medical/virology) "dSb" = ( /obj/structure/closet/emcloset, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_y = -32 }, /obj/effect/turf_decal/bot, @@ -98125,17 +94853,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/hallway/secondary/exit/departure_lounge) -"dSV" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/escape) -"dSW" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) -"dSX" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/open/floor/plating, -/area/shuttle/escape) "dSY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/whitegreen/corner{ @@ -98418,129 +95135,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"dTK" = ( -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/structure/closet/crate/internals, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dTL" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/shuttle/escape) -"dTM" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/shuttle/escape) -"dTN" = ( -/obj/item/defibrillator/loaded, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) -"dTO" = ( -/obj/machinery/computer/operating, -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) -"dTP" = ( -/obj/structure/table/optable, -/obj/item/surgical_drapes, -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) -"dTQ" = ( -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/item/circular_saw, -/obj/item/retractor{ - pixel_x = 4 - }, -/obj/item/hemostat{ - pixel_x = -4 - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) "dTR" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -26 @@ -98612,7 +95206,7 @@ /turf/open/floor/plasteel/vault, /area/medical/virology) "dTY" = ( -/obj/structure/sign/nosmoking_2, +/obj/structure/sign/warning/nosmoking, /turf/closed/wall, /area/medical/virology) "dTZ" = ( @@ -98722,7 +95316,7 @@ /obj/machinery/light{ dir = 1 }, -/obj/structure/sign/kiddieplaque/badger{ +/obj/structure/sign/plaques/kiddie/badger{ pixel_y = 32 }, /turf/open/floor/plasteel/vault{ @@ -98850,94 +95444,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"dUC" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/shuttle/escape) -"dUD" = ( -/turf/open/floor/plasteel/neutral, -/area/shuttle/escape) -"dUE" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/shuttle/escape) -"dUF" = ( -/obj/machinery/status_display, -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) -"dUG" = ( -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = -3 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 4; - pixel_y = 1 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 2; - pixel_y = 8 - }, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) -"dUH" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) -"dUI" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26; - pixel_y = 58 - }, -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) -"dUJ" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) "dUK" = ( /obj/structure/cable/white{ icon_state = "0-2" @@ -99054,8 +95560,7 @@ "dUX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/item/device/flashlight, /obj/effect/spawner/lootdrop/maintenance, @@ -99164,60 +95669,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"dVm" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dVn" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dVo" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/window/shuttle, -/turf/open/floor/grass, -/area/shuttle/escape) -"dVp" = ( -/obj/machinery/computer/med_data{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/shuttle/escape) -"dVq" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/shuttle/escape) -"dVr" = ( -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/shuttle/escape) -"dVs" = ( -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 5 - }, -/area/shuttle/escape) "dVt" = ( /obj/structure/table/glass, /obj/structure/cable/white{ @@ -99298,13 +95749,6 @@ dir = 8 }, /area/medical/virology) -"dVB" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/green, -/area/medical/virology) "dVC" = ( /obj/item/device/radio/intercom{ name = "Station Intercom"; @@ -99372,7 +95816,6 @@ "dVK" = ( /obj/effect/decal/remains/human, /obj/effect/decal/cleanable/blood/old, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/dark, /area/library/abandoned) "dVL" = ( @@ -99554,43 +95997,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"dWh" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/escape) -"dWi" = ( -/obj/machinery/status_display, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/escape) -"dWj" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dWk" = ( -/obj/machinery/door/airlock/medical/glass{ - id_tag = null; - name = "Escape Shuttle Infirmary"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dWl" = ( -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/shuttle/escape) "dWm" = ( /obj/structure/reagent_dispensers/virusfood{ pixel_x = -32 @@ -99702,7 +96108,6 @@ }, /area/medical/virology) "dWz" = ( -/obj/effect/landmark/revenantspawn, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/medical/virology) @@ -99882,34 +96287,6 @@ }, /turf/open/floor/plasteel/neutral, /area/hallway/secondary/exit/departure_lounge) -"dWX" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dWY" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/window/shuttle, -/turf/open/floor/grass, -/area/shuttle/escape) -"dWZ" = ( -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/shuttle/escape) "dXa" = ( /obj/structure/cable/white{ icon_state = "2-4" @@ -100068,7 +96445,7 @@ /turf/open/floor/plasteel/whitegreen/corner, /area/medical/virology) "dXl" = ( -/obj/structure/sign/biohazard, +/obj/structure/sign/warning/biohazard, /turf/closed/wall, /area/medical/virology) "dXm" = ( @@ -100202,7 +96579,7 @@ /obj/structure/table, /obj/item/stack/packageWrap, /obj/item/hand_labeler, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = -32 }, /turf/open/floor/plasteel/vault{ @@ -100324,40 +96701,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/neutral, /area/hallway/secondary/exit/departure_lounge) -"dXP" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/shuttle/escape) -"dXQ" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/escape) -"dXR" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/whiteblue/side, -/area/shuttle/escape) -"dXS" = ( -/turf/open/floor/plasteel/whiteblue/side, -/area/shuttle/escape) -"dXT" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 6 - }, -/area/shuttle/escape) "dXU" = ( /obj/structure/table/glass, /obj/machinery/airalarm{ @@ -100698,38 +97041,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"dYK" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Emergency Shuttle Airlock"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/escape) -"dYL" = ( -/obj/structure/sign/bluecross_2, -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) -"dYM" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) -"dYN" = ( -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) -"dYO" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) "dYP" = ( /obj/structure/table/glass, /obj/structure/cable/white{ @@ -100747,7 +97058,7 @@ /area/medical/virology) "dYQ" = ( /obj/structure/table/glass, -/obj/structure/sign/deathsposal{ +/obj/structure/sign/warning/deathsposal{ pixel_y = -32 }, /obj/item/paper_bin, @@ -101032,44 +97343,9 @@ /area/hallway/secondary/exit/departure_lounge) "dZr" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/vacuum, +/obj/structure/sign/warning/vacuum, /turf/open/floor/plating, /area/hallway/secondary/exit/departure_lounge) -"dZs" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) -"dZt" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dZu" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dZv" = ( -/obj/machinery/door/airlock/medical/glass{ - id_tag = null; - name = "Escape Shuttle Infirmary"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) "dZw" = ( /obj/structure/cable/white, /obj/structure/cable/white{ @@ -101244,10 +97520,11 @@ /turf/closed/wall/r_wall, /area/chapel/office) "dZO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/bodycontainer/crematorium{ + dir = 4; id = "cremawheat" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/vault{ dir = 8 }, @@ -101359,18 +97636,6 @@ /turf/open/floor/plasteel/neutral, /area/hallway/secondary/exit/departure_lounge) "eab" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Emergency Shuttle Airlock" - }, -/obj/docking_port/mobile/emergency{ - dheight = 0; - dwidth = 11; - height = 18; - name = "Delta emergency shuttle"; - width = 30; - preferred_direction = 2; - port_direction = 4 - }, /obj/docking_port/stationary{ dheight = 0; dir = 4; @@ -101381,49 +97646,8 @@ turf_type = /turf/open/space; width = 30 }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/escape) -"eac" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/window/shuttle, -/turf/open/floor/grass, -/area/shuttle/escape) -"ead" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/machinery/shieldgen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"eae" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_y = -1 - }, -/obj/item/storage/toolbox/emergency{ - pixel_x = 3; - pixel_y = -5 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) +/turf/open/space/basic, +/area/space) "eaf" = ( /obj/structure/sign/nanotrasen{ pixel_y = -32 @@ -101649,57 +97873,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"eaF" = ( -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/neutral, -/area/hallway/secondary/exit/departure_lounge) -"eaG" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = -26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"eaH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"eaI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"eaJ" = ( -/obj/structure/closet/crate/medical{ - name = "medical crate" - }, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/device/healthanalyzer{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/lazarus_injector, -/obj/effect/turf_decal/bot, -/mob/living/simple_animal/bot/medbot{ - name = "\improper emergency medibot"; - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) "eaK" = ( /obj/structure/cable/white, /obj/effect/spawner/structure/window/reinforced, @@ -101708,7 +97881,7 @@ /turf/open/floor/plating, /area/medical/virology) "eaL" = ( -/obj/structure/sign/vacuum, +/obj/structure/sign/warning/vacuum, /turf/closed/wall/r_wall, /area/medical/virology) "eaM" = ( @@ -101808,7 +97981,7 @@ }, /area/maintenance/port/aft) "eaW" = ( -/obj/structure/sign/electricshock, +/obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/maintenance/port/aft) "eaX" = ( @@ -101970,51 +98143,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"ebn" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/window/shuttle, -/turf/open/floor/grass, -/area/shuttle/escape) -"ebo" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"ebp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"ebq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"ebr" = ( -/obj/structure/closet/crate{ - name = "emergency supplies crate" - }, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/toolbox/emergency, -/obj/item/device/flashlight/flare{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/flashlight/flare{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/device/radio, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) "ebs" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 @@ -102333,7 +98461,7 @@ /obj/machinery/light{ dir = 4 }, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = 32 }, /turf/open/floor/plasteel{ @@ -102360,33 +98488,8 @@ }, /turf/open/floor/plating, /area/hallway/secondary/exit/departure_lounge) -"ecd" = ( -/obj/machinery/vending/wallmed{ - name = "Emergency NanoMed"; - req_access_txt = "0"; - use_power = 0 - }, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/escape) -"ece" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Emergency Shuttle Cargo" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"ecf" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) "ecg" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ - icon_state = "inje_map"; dir = 1 }, /obj/effect/turf_decal/stripes/line, @@ -102456,7 +98559,7 @@ /turf/open/floor/plating, /area/maintenance/solars/port/aft) "ecn" = ( -/obj/structure/sign/electricshock, +/obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/maintenance/solars/port/aft) "eco" = ( @@ -102793,30 +98896,6 @@ }, /turf/open/floor/plasteel/neutral, /area/hallway/secondary/exit/departure_lounge) -"edc" = ( -/obj/structure/rack, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/tank/internals/oxygen/red, -/obj/item/clothing/mask/gas, -/obj/item/clothing/head/hardhat/red, -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"edd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"ede" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) "edf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/firecloset, @@ -103180,38 +99259,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"edE" = ( -/turf/open/floor/plasteel/neutral/side, -/area/shuttle/escape) -"edF" = ( -/obj/machinery/flasher{ - id = "shuttleflash"; - pixel_y = -26 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/neutral/side, -/area/shuttle/escape) -"edG" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/item/hand_labeler_refill, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"edH" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"edI" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) "edJ" = ( /obj/structure/table/reinforced, /obj/item/stack/sheet/metal{ @@ -103328,7 +99375,7 @@ /area/chapel/office) "edW" = ( /obj/item/twohanded/required/kirbyplants/random, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = 32 }, /turf/open/floor/plasteel/grimy, @@ -103463,33 +99510,13 @@ icon_state = "0-8" }, /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/vacuum, +/obj/structure/sign/warning/vacuum, /turf/open/floor/plating, /area/security/checkpoint/escape) "eek" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/checkpoint/escape) -"eel" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Holding Area"; - req_access_txt = "2" - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"eem" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Cockpit"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) "een" = ( /obj/structure/table/reinforced, /obj/item/storage/toolbox/emergency, @@ -103818,72 +99845,6 @@ }, /turf/open/floor/plasteel, /area/security/checkpoint/escape) -"eeV" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Emergency Shuttle Airlock"; - req_access_txt = "2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/escape) -"eeW" = ( -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"eeX" = ( -/obj/structure/chair, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"eeY" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"eeZ" = ( -/obj/machinery/button/flasher{ - id = "shuttleflash"; - pixel_x = -26; - pixel_y = 24 - }, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/shuttle/escape) -"efa" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/shuttle/escape) -"efb" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/toy/figure/ninja, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"efc" = ( -/obj/structure/chair, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"efd" = ( -/obj/structure/chair, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) "efe" = ( /obj/structure/cable{ icon_state = "0-2" @@ -104171,62 +100132,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/checkpoint/escape) -"efH" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"efI" = ( -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/shuttle/escape) -"efJ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/shuttle/escape) -"efK" = ( -/turf/open/floor/plasteel, -/area/shuttle/escape) -"efL" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"efM" = ( -/turf/open/floor/plasteel/neutral/corner, -/area/shuttle/escape) -"efN" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 58 - }, -/turf/open/floor/plasteel/neutral/side, -/area/shuttle/escape) -"efO" = ( -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/shuttle/escape) -"efP" = ( -/obj/machinery/door/airlock/external{ - name = "Emergency Recovery Airlock" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) "efQ" = ( /obj/structure/cable{ icon_state = "2-4" @@ -104523,61 +100428,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/checkpoint/escape) -"egt" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"egu" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"egv" = ( -/obj/structure/table/reinforced, -/obj/item/storage/lockbox/loyalty, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"egw" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/shuttle/escape) -"egx" = ( -/obj/structure/fireaxecabinet{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/neutral/corner, -/area/shuttle/escape) -"egy" = ( -/obj/machinery/door/airlock/external{ - name = "Emergency Recovery Airlock" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"egz" = ( -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/shuttle/escape) -"egA" = ( -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/shuttle/escape) "egB" = ( /obj/structure/cable, /obj/machinery/power/solar{ @@ -104630,244 +100480,16 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/checkpoint/escape) -"egI" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"egJ" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"egK" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/zipties, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -26 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"egL" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/shuttle/escape) -"egM" = ( -/turf/open/floor/plasteel/blue/side, -/area/shuttle/escape) -"egN" = ( -/obj/machinery/door/airlock/command{ - name = "Emergency Recovery Airlock"; - req_access = null; - req_access_txt = "19" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"egO" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"egP" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/shuttle/escape) "egQ" = ( /obj/item/stack/cable_coil, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/aft) -"egR" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/shuttle/escape) -"egS" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/escape) -"egT" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/escape) -"egU" = ( -/obj/structure/table/reinforced, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/shuttle/escape) "egV" = ( /obj/structure/lattice/catwalk, /obj/effect/landmark/xeno_spawn, /turf/open/space, /area/solar/port/aft) -"egW" = ( -/obj/machinery/computer/security{ - dir = 4 - }, -/turf/open/floor/plasteel/darkred/side{ - dir = 9 - }, -/area/shuttle/escape) -"egX" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/escape) -"egY" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26; - pixel_y = 58 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/escape) -"egZ" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/escape) -"eha" = ( -/obj/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/plasteel/darkyellow/side{ - dir = 5 - }, -/area/shuttle/escape) -"ehb" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/turf/open/floor/plasteel/darkred/side{ - dir = 10 - }, -/area/shuttle/escape) -"ehc" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/vault, -/area/shuttle/escape) -"ehd" = ( -/obj/structure/chair/office/dark, -/turf/open/floor/plasteel/vault, -/area/shuttle/escape) -"ehe" = ( -/obj/structure/table/reinforced, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel/vault, -/area/shuttle/escape) -"ehf" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/item/pen, -/turf/open/floor/plasteel/vault, -/area/shuttle/escape) -"ehg" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/vault, -/area/shuttle/escape) -"ehh" = ( -/obj/machinery/computer/atmos_alert{ - dir = 8 - }, -/turf/open/floor/plasteel/darkyellow/side{ - dir = 6 - }, -/area/shuttle/escape) -"ehi" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/shuttle/escape) -"ehj" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/item/restraints/handcuffs, -/obj/item/device/assembly/flash/handheld, -/turf/open/floor/plasteel/vault, -/area/shuttle/escape) -"ehk" = ( -/obj/machinery/computer/crew{ - dir = 1 - }, -/turf/open/floor/plasteel/darkblue/side, -/area/shuttle/escape) -"ehl" = ( -/obj/machinery/computer/med_data{ - dir = 1 - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 6 - }, -/area/shuttle/escape) -"ehm" = ( -/obj/machinery/computer/emergency_shuttle{ - dir = 1 - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 10 - }, -/area/shuttle/escape) -"ehn" = ( -/obj/machinery/computer/communications{ - dir = 1 - }, -/turf/open/floor/plasteel/darkblue/side, -/area/shuttle/escape) -"eho" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plasteel/vault, -/area/shuttle/escape) -"ehp" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/shuttle/escape) "ehq" = ( /obj/structure/cable{ icon_state = "0-2" @@ -104893,10 +100515,6 @@ }, /turf/closed/wall, /area/quartermaster/office) -"ehu" = ( -/obj/machinery/rnd/protolathe/department/security, -/turf/open/floor/plasteel/neutral, -/area/security/main) "ehv" = ( /turf/open/floor/plasteel/caution, /area/engine/engineering) @@ -104907,13 +100525,6 @@ }, /turf/open/floor/plasteel/caution, /area/engine/engineering) -"ehx" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/rnd/protolathe/department/engineering, -/turf/open/floor/plasteel/neutral, -/area/engine/engineering) "ehy" = ( /obj/effect/turf_decal/stripes/line{ dir = 2 @@ -104924,76 +100535,6 @@ /obj/effect/turf_decal/caution/stand_clear, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"ehz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ehA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ehB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ehC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ehD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ehE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ehF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) "ehG" = ( /obj/item/device/radio/intercom{ name = "Station Intercom"; @@ -105034,8 +100575,13 @@ /turf/open/floor/plasteel/brown, /area/quartermaster/office) "ehK" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, +/obj/machinery/mineral/ore_redemption{ + input_dir = 4; + output_dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plasteel/neutral, /area/quartermaster/miningoffice) "ehL" = ( /obj/structure/cable/white{ @@ -105056,216 +100602,26 @@ /obj/effect/turf_decal/caution/stand_clear, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"ehN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"ehO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) "ehP" = ( /obj/machinery/computer/security/telescreen/entertainment{ pixel_y = -32 }, /turf/open/floor/plasteel/dark, /area/library) -"ehQ" = ( -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/grimy, -/area/chapel/main) -"QNf" = ( -/obj/machinery/autolathe, -/obj/machinery/door/window/southleft{ - name = "Research Lab Desk"; - req_access_txt = "7" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab1"; - name = "Research and Development Shutter" - }, -/turf/open/floor/plating, -/area/science/lab) -"QNg" = ( -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plasteel/whitepurple/corner, -/area/science/research) -"QNh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side, -/area/maintenance/port) -"QNi" = ( -/turf/closed/wall, -/area/science/circuit) -"QNj" = ( -/turf/closed/wall/r_wall, -/area/science/circuit) -"QNk" = ( -/turf/closed/wall/r_wall, -/area/science/circuit) -"QNl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/science/circuit) -"QNm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/science/circuit) -"QNn" = ( -/turf/closed/wall, -/area/science/circuit) -"QNo" = ( -/obj/structure/table/reinforced, -/obj/machinery/camera{ - c_tag = "Science - Experimentation Lab"; - dir = 2; - name = "science camera"; - network = list("SS13","RD") - }, -/obj/machinery/requests_console{ - department = "Circuitry Lab"; - name = "Circuitry Lab RC"; - pixel_y = 32; - receive_ore_updates = 1 - }, -/obj/item/device/integrated_circuit_printer/upgraded, -/turf/open/floor/plasteel/white/side, -/area/science/circuit) -"QNp" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/white/side, -/area/science/circuit) -"QNq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"QNr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/science/circuit) -"QNs" = ( -/turf/closed/wall, -/area/science/circuit) -"QNt" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 9 - }, -/area/science/circuit) -"QNu" = ( -/turf/open/floor/plasteel/white/side{ - dir = 5 - }, -/area/science/circuit) -"QNv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white/side{ - dir = 9 - }, -/area/science/circuit) -"QNw" = ( -/turf/open/floor/plasteel/white/side{ - dir = 5 - }, -/area/science/circuit) -"QNx" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white/side{ - dir = 9 - }, -/area/science/circuit) -"QNy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"QNz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"QNA" = ( +"eCM" = ( /obj/structure/cable/white{ icon_state = "4-8" }, /turf/open/floor/plasteel/whitepurple/side, /area/science/misc_lab) -"QNB" = ( -/turf/closed/wall, -/area/science/circuit) -"QNC" = ( -/obj/structure/table/reinforced, -/obj/item/device/integrated_electronics/analyzer, -/obj/item/device/integrated_electronics/debugger, -/obj/item/device/integrated_electronics/wirer, -/turf/open/floor/plasteel/white/side{ - dir = 10 +"eMD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2" }, -/area/science/circuit) -"QND" = ( -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/science/circuit) -"QNE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Science - Lab Access"; - dir = 8; - name = "science camera"; - network = list("SS13","RD") - }, -/obj/structure/sign/science{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"QNF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/table/glass, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/misc_lab) -"QNG" = ( +/turf/open/floor/plating, +/area/science/research/abandoned) +"faI" = ( /obj/structure/cable/white{ icon_state = "1-2" }, @@ -105283,49 +100639,181 @@ dir = 4 }, /area/science/misc_lab) -"QNH" = ( -/turf/closed/wall, +"fGq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, /area/science/circuit) -"QNI" = ( +"fRT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"gmj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/science/circuit) +"gKr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/circuit/green, +/area/science/research/abandoned) +"gNw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/table/glass, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/misc_lab) +"gQS" = ( +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/science/circuit) +"gSi" = ( +/turf/closed/wall/r_wall, +/area/science/misc_lab) +"gUH" = ( +/obj/machinery/light, +/obj/structure/table/reinforced, +/obj/machinery/computer/libraryconsole/bookmanagement, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/circuit) +"hic" = ( /obj/structure/table/reinforced, /obj/item/device/integrated_electronics/analyzer, /obj/item/device/integrated_electronics/debugger, /obj/item/device/integrated_electronics/wirer, /turf/open/floor/plasteel/white/side{ - dir = 9 + dir = 10 }, /area/science/circuit) -"QNJ" = ( +"hKW" = ( +/obj/machinery/vending/kink, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/locker) +"hNZ" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, /turf/open/floor/plasteel/white/side{ dir = 9 }, /area/science/circuit) -"QNK" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/circuit) -"QNL" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/circuit) -"QNM" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/science/circuit) -"QNN" = ( -/turf/closed/wall, -/area/science/circuit) -"QNO" = ( -/turf/open/floor/plasteel/white/side{ +"iQh" = ( +/obj/structure/bodycontainer/morgue{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/medical/morgue) +"jeu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"jjN" = ( +/obj/structure/table/reinforced, +/obj/machinery/camera{ + c_tag = "Science - Experimentation Lab"; + dir = 2; + name = "science camera"; + network = list("SS13","RD") + }, +/obj/machinery/requests_console{ + department = "Circuitry Lab"; + name = "Circuitry Lab RC"; + pixel_y = 32; + receive_ore_updates = 1 + }, +/obj/item/device/integrated_circuit_printer, +/turf/open/floor/plasteel/white/side, /area/science/circuit) -"QNP" = ( +"jBE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/neutral, +/area/medical/morgue) +"kwx" = ( +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel/whitepurple/corner, +/area/science/research) +"kyo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/maintenance/port) +"lak" = ( /turf/open/floor/plasteel/white/side{ dir = 10 }, -/area/science/misc_lab) -"QNQ" = ( +/area/science/circuit) +"loI" = ( +/obj/machinery/autolathe, +/obj/machinery/door/window/southleft{ + name = "Research Lab Desk"; + req_access_txt = "7" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rndlab1"; + name = "Research and Development Shutter" + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 4 + }, +/area/science/lab) +"lEl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"lEm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side, +/area/maintenance/port) +"lKu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"lOY" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -105334,40 +100822,129 @@ dir = 6 }, /area/science/circuit) -"QNR" = ( -/turf/closed/wall, -/area/science/circuit) -"QNS" = ( -/obj/structure/table/reinforced, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/item/device/integrated_circuit_printer/upgraded, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/science/circuit) -"QNT" = ( +"lXM" = ( /obj/structure/target_stake, /turf/open/floor/plasteel/white/side{ dir = 1 }, /area/science/circuit) -"QNU" = ( -/obj/machinery/light, +"mvm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral, +/area/science/research/abandoned) +"mxm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/circuit/green, +/area/science/research/abandoned) +"pmQ" = ( /obj/structure/table/reinforced, -/obj/machinery/computer/libraryconsole/bookmanagement, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/item/device/integrated_circuit_printer, /turf/open/floor/plasteel/white/side{ dir = 1 }, /area/science/circuit) -"QNV" = ( +"psi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bodycontainer/morgue{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/medical/morgue) +"ptI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/research/abandoned) +"pGS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/kink, +/turf/open/floor/plating, +/area/maintenance/port) +"pQm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/neutral, +/area/science/research/abandoned) +"qhc" = ( +/obj/structure/table/reinforced, +/obj/item/device/integrated_electronics/analyzer, +/obj/item/device/integrated_electronics/debugger, +/obj/item/device/integrated_electronics/wirer, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/science/circuit) +"qpq" = ( +/turf/open/floor/plasteel/white/side{ + dir = 5 + }, +/area/science/circuit) +"rhO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/science/circuit) +"rCv" = ( +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/science/circuit) +"saw" = ( +/turf/closed/wall, +/area/science/circuit) +"tmi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"tCh" = ( +/turf/closed/wall, +/area/science/misc_lab) +"tMk" = ( +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/science/misc_lab) +"upw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light, /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/plasteel/whitepurple/side, /area/science/misc_lab) -"QNW" = ( +"vqd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/medical/morgue) +"wei" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/circuit) +"wAA" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/science/circuit) +"wBO" = ( /obj/structure/cable/white{ icon_state = "1-2" }, @@ -105377,19 +100954,40 @@ }, /turf/open/floor/plasteel/whitepurple/corner, /area/science/misc_lab) -"QNX" = ( -/turf/closed/wall/r_wall, -/area/science/misc_lab) -"QNY" = ( -/turf/closed/wall, +"xwK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Science - Lab Access"; + dir = 8; + name = "science camera"; + network = list("SS13","RD") + }, +/obj/structure/sign/departments/science{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, /area/science/circuit) -"QNZ" = ( -/turf/closed/wall, -/area/science/misc_lab) -"QOa" = ( -/turf/closed/wall/r_wall, -/area/science/misc_lab) -"QOb" = ( +"xze" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"xMn" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/white/side, +/area/science/circuit) +"yjc" = ( /obj/machinery/power/apc{ areastring = "/area/science/research/abandoned"; dir = 1; @@ -105401,148 +100999,6 @@ }, /turf/open/floor/plating, /area/science/research/abandoned) -"QOc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"QOd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"QOe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/research/abandoned) -"QOf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"QOg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/maintenance/port) -"QOh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/circuit/green, -/area/science/research/abandoned) -"QOi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/science/research/abandoned) -"QOj" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/circuit/green, -/area/science/research/abandoned) -"QOk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/neutral, -/area/science/research/abandoned) -"QOl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral, -/area/science/research/abandoned) -"QOm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"QOn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/bar, -/area/maintenance/starboard/fore) -"QOo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/bar, -/area/maintenance/starboard/fore) -"QOp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/bar, -/area/maintenance/starboard/fore) -"QOq" = ( -/obj/machinery/vending/kink, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"QOr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Desk"; - req_access_txt = "63" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/brig) -"QOs" = ( -/obj/machinery/vending/kink, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den) -"QOt" = ( -/obj/machinery/mineral/ore_redemption{ - input_dir = 2; - output_dir = 1 - }, -/obj/effect/turf_decal/stripes/box, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/southright{ - name = "ORM Access"; - req_access_txt = "64" - }, -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) (1,1,1) = {" aaa @@ -127051,7 +122507,7 @@ dml dsX djb dvU -dxC +drv dru dhD aad @@ -129878,7 +125334,7 @@ dry dta duk dvY -QOs +dod dmi dfY aad @@ -130125,14 +125581,14 @@ cLs cJT caE caE -QNi -QNi -QNi -QNi -QNi -QNi -QNi -QNi +saw +saw +saw +saw +saw +saw +saw +saw dhQ dhQ dhQ @@ -130382,14 +125838,14 @@ cEo ddO cQt dgl -QNj +dhR djn dle dmr dog dle drz -QNj +dhR dul dvZ dxH @@ -130639,14 +126095,14 @@ cRP ddP deW cKk -QNj -QNo -QNt -QNC -QNI +dhR +jjN +hNZ +hic +qhc dpX -QNS -QNj +pmQ +dhR djs dlf dxI @@ -130896,14 +126352,14 @@ cMY cMY cCM dgm -QNj +dhR djp -QNu +qpq dmt doh -QNO +rCv drA -QNj +dhR dum dli dpZ @@ -131152,19 +126608,19 @@ cNd cNd cMY cLO -QNh -QNl +lEm +gmj djq -QNv -QND -QNJ -QNP +rhO +lak +gQS +tMk drB -QNj -QOb -QOc -QOh -QOj +dhR +yjc +jeu +mxm +gKr dxJ dBV dlg @@ -131410,16 +126866,16 @@ dcb cMY deX dgn -QNj +dhR djr -QNu +qpq dmv doj -QNQ -QNT -QNj +lOY +lXM +dhR dun -QOd +lEl dxK dzg dAr @@ -131667,18 +127123,18 @@ cNd cMY deX dgo -QNj -QNp -QNx +dhR +xMn +dok dmw -QNx +dok dqa drC -QNj +dhR duo dmu -QOi -QOk +eMD +pQm dxM doi dun @@ -131924,18 +127380,18 @@ cMY cMY deY cKl -QNj +dhR djt -QNy -QNy +dmx +dmx dol dqb drD -QNj +dhR dup -QOe +ptI dxL -QOl +mvm dAs dpY dDi @@ -132181,14 +127637,14 @@ dcc cMY cOD cKj -QNj +dhR dju dlj dlj -QNK +wei dqc -QNU -QNj +gUH +dhR duq dlh dxM @@ -132438,16 +127894,16 @@ cRS cMY deZ dgo -QNj +dhR djv dlj dlj -QNK +wei dqb drE -QNj +dhR dur -QOf +xze dxN dzj don @@ -132695,14 +128151,14 @@ dcd cMY deX dgo -QNj -QNq -QNz -QNE +dhR +lKu +tmi +xwK doo dqd drF -QNj +dhR dus dwa dom @@ -132905,7 +128361,7 @@ bBd bDb bEP bGw -bIj +bIf bKj bMc bOh @@ -132952,14 +128408,14 @@ dce cMY dfa dgp -QNm -QNm +fGq +fGq dll -QNj -QNM +dhR +wAA dqe -QNj -QNj +dhR +dhR dut dwb dxO @@ -133212,11 +128668,11 @@ dgq dhT djx dlm -QNF +gNw dop dqf drG -QNZ +tCh dhQ dhS dhQ @@ -133336,28 +128792,28 @@ aaa aaa aaa aaa -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -acR -acR -aav -aav -aav -aav -acR -acR -acR -aav -aav +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -133468,16 +128924,16 @@ cMY cMY cMY djy -QNA +eCM dmA doq dqg -QNV +upw dtd duu -QOg +kyo djw -QOm +fRT dAu caE aaa @@ -133592,29 +129048,29 @@ aaa aaa aaa aaa -aap -aaw -aaF -aaT -aav -abw -abI -abU -acg -acw -aav -adk -adz -adS -ael -aeI -aav -afH -aga -agu -agP -ahd -aav +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -133726,10 +129182,10 @@ cNd cMY djz dln -QNG +faI dor dqh -QNW +wBO dhT duv dwc @@ -133849,33 +129305,33 @@ aaa aaa aaa aaa -aap -aaw -aaG -aaU -aav -abx -abI -aaL -ach -abo -aav -adl -adA -adT -aem -aeJ -aav -afI -aen -agv -aen -ahe -aav -aav -aav -acR -acR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -133986,8 +129442,8 @@ djA djA dos dqi -QNX -QNX +gSi +gSi djA djA djA @@ -134107,33 +129563,33 @@ aab aaa aaa aaa -aav -aav -aaV -aaq -aaq -abJ -aaL -aci -acx -aav -adm -adB -adU -aen -aeK -aav -afJ -aen -agw -agQ -ahf -aav -ahI -ahZ -ait -acR -acR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -134364,33 +129820,33 @@ aaa aaa aaa aaa -aav -aaH -aaW -abk -aaq -aav -aav -acj -aav -aav -aav -aav -acR -aeo -aeL -aav -acR -agb -agx -aav -aav -aav -ahJ -aci -ahh -aiK -acR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -134458,7 +129914,7 @@ bWC bYL caE caE -ceb +pGS cea caE cjp @@ -134621,33 +130077,33 @@ aaa aaa aaa aaa -aav -aaI -aaX -abl -aby -abK -abV -ack -acy -acR -adn -adC -adV -aep -aeM -afl -afK -agc -agy -aaW -aaW -ahy -aci -aci -aiu -aiL -acR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -134877,34 +130333,34 @@ aaa aaa aaa aaa -aaq -aaq -aaq -aaY -abc -aaW -abL -aaW -acl -aaW -acS -aaW -abc -adW -aeq -aaW -afm -afL -agd -agz -agR -abn -aav -ahK -aia -aci -aiM -acR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -135134,34 +130590,34 @@ aaa aaa aaa aaa -aar -aax -aaJ -aaZ -aaW -abz -aaW -abc -aaW -acz -acT -ado -abc -abc -aaW -aaW -afn -abc -afn -aaW -aaW -ahg -aav -ahL -aib -aiv -aiN -acR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -135391,34 +130847,34 @@ aaa aaa aaa aaa -aaq -aay -aaq -aba -abm -aaW -aaW -abW -aaW -aaW -acS -aaW -aaW -adX -abc -aaW -afo -afM -age -aaW -aaW -ahh -aav -aaY -aci -aci -aiO -acR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -135530,7 +130986,7 @@ doy dqo drM dtf -duB +duz dwd djA dzp @@ -135649,33 +131105,33 @@ aaa aaa aaa aaa -aav -aaK -aaY -abn -abA -abM -abX -acm -acA -acR -adp -adD -aaW -aer -aaW -afp -afN -agf -agA -aaW -ahi -ahy -aci -aci -aiw -aiP -acR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -135906,33 +131362,33 @@ aaa aaa aaa aaa -aav -aaL -aaW -abo -aaq -aav -aav -abY -aav -aav -aav -aav -adY -aav -aeN -acR -afO -aav -aav -adY -aav -aav -ahM -aci -aix -aiy -acR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -135949,7 +131405,7 @@ alf avr awp axK -QOq +alg aAb aBk aCv @@ -136163,33 +131619,33 @@ aaa aaa aaa aaa -aav -aav -abb -aaq -aaq -abN -abY -aci -acB -acB -aav -adE -aci -aav -aeO -afq -aci -agg -aav -aci -ahj -aav -ahN -aic -aiy -acR -acR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -136419,33 +131875,33 @@ aaa aaa aaa aaa -aap -aaw -aaM -abc -aav -aav -aav -aav -acn -acC -acU -aav -adF -aci -aes -aeP -afr -afP -agh -aes -aci -acU -aav -aav -aav -acR -acR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -136676,29 +132132,29 @@ aaa aaa aaa aaa -aap -aaz -aaN -abd -aav -abB -abO -abY -aci -acD -acD -aav -adG -aci -aav -aeQ -afs -afs -agi -aav -aci -ahk -aav +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -136934,28 +132390,28 @@ aaa aaa aaa aaa -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -adH -adZ -aav -aav -acR -acR -aav -aav +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa agS -adH -aav +aaa +aaa aaa aaa aaa @@ -137032,7 +132488,7 @@ cei cfZ chQ cjt -ckS +ckR cms cnO cpu @@ -137788,7 +133244,7 @@ bBr bDo bEY bGI -bIy +bGI bGI bGK bOr @@ -139519,15 +134975,15 @@ aaa aaa aaa aaa -aeT -afQ -aeT -aeT -agU -aeT -aeT -ahQ -aeT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aad adq agk @@ -139773,18 +135229,18 @@ aaa aaa aaa aaa -adI -aet -aeT -aeT -afR -afR -aeu -aeu -ahl -afR -afR -afQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaO aaO aaO @@ -139875,7 +135331,7 @@ bvM bvM bvM bvM -cIz +bFE cKu bsO cNm @@ -140029,18 +135485,18 @@ aaa aaa aaa aaa -adI -aed -aeu -aeU -afv -aeu -aeu -aeu -agV -aeu -aeu -aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aid aiA aeb @@ -140111,7 +135567,7 @@ bUA bWN bYV bYV -ccy +bYV cem bYV bYV @@ -140287,18 +135743,18 @@ aaa aaa aaa aaa -adI -aev -aeT -aeT -afS -afS -agD -aeu -aeu -afS -afS -afQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaO aaO aaO @@ -140438,7 +135894,7 @@ dKD dUp dVd dVS -ehQ +dVd dVd dVd dVd @@ -140547,15 +136003,15 @@ aaa aaa aaa aaa -aeT -afQ -aeT -aeT -agU -aeT -aeT -ahQ -aeT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aad ads agj @@ -142194,7 +137650,7 @@ bsO cNs cPb cQN -cSt +cSs cUi cQQ cXw @@ -142902,7 +138358,7 @@ aLL aNh aOK aQt -aSb +aLL aTI aVs aNh @@ -143368,19 +138824,19 @@ aaa aad aaa aaa -acZ -adu -adv -aef -adv -adw -adw -adw -adw -agG -aef -adv -adv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -143482,8 +138938,8 @@ cQQ cSw cUl cQP -QNg -QNf +kwx +loI daV dcJ dei @@ -143624,20 +139080,20 @@ abj aaa aad aaa -acE -acZ -adv -adJ -aeg -aey -aeY -aeY -aeY -aeY -agH -aeg -ahm -adv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -143784,7 +139240,7 @@ dXN dYH dZp dZZ -eaF +dUx ebm dYH ecH @@ -143881,23 +139337,23 @@ abj aaa aad aaa -acE -ada -adw -adK -aeh -aeh -aeh -aeh -aeh -aeh -aeh -aeh -ahn -adv -adv -adw -adv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaO ajE @@ -144138,23 +139594,23 @@ abj aaa aad aaa -acE -ada -adw -adL -aeh -aeh -aeZ -aeZ -aeZ -aeZ -agI -aeh -aho -ahA -ahT -aie -adw +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaO ajw @@ -144396,26 +139852,26 @@ aad aad aaa acF -acZ -adu -adM -aeh -aez -afa -afy -afU -afy -agJ -agX -ahp -ahB -ahU -aif -adw +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaO ajw -akh +akg akL aaO amq @@ -144526,7 +139982,7 @@ dqT cPk cXD cPk -dwE +cUp dlR cPk cPk @@ -144652,23 +140108,23 @@ abj aaa aad aaa -acE -ada -adw -adN -aeh -aeh -aeY -aeY -aeY -aeY -agK -aeh -ahq -ahC -ahV -aie -adw +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaO ajw @@ -144909,23 +140365,23 @@ abj aaa aad aaa -acE -ada -adw -adK -aeh -aeh -aeh -aeh -aeh -aeh -aeh -aeh -ahr -adv -adv -adw -adv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaO ajw @@ -145166,20 +140622,20 @@ abj aaa aad aaa -acE -acZ -adv -adJ -aei -aeA -aeZ -aeZ -aeZ -aeZ -agL -aei -ahs -adv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -145424,19 +140880,19 @@ aaa aad aaa aaa -acZ -adu -adv -aef -adv -adw -adw -adw -adw -agG -aef -adv -adv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -146331,10 +141787,10 @@ dzR dAU dCA dDM -dDO +jBE dGl -dHG -dDN +dHH +iQh dCy dKZ dMy @@ -146343,29 +141799,29 @@ aaa aaa aaa aaa -dQT -dSV -dSW -dSW -dSX -dSX -dSW -dSW -dYK -dZs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa eab -dSW -dSX -dSX -dSX -dSW -dYK -dSW -eeV -dSW -dSW -dSW -dSW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -146587,7 +142043,7 @@ dym dzS dAV dCB -dDJ +vqd dEV dGm dHH @@ -146599,30 +142055,30 @@ dNT aaa aaa aaa -dQS -dRY -dSW -dTK -dUC -dVm -dVm -dWX -dXP -dWj -dZt -dWj -dXP -dVm -dVm -dVm -dUC -dWj -dSW -eeW -efH -egt -egI -dSW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -146821,7 +142277,7 @@ cNB cPr cQW cSF -cUy +cUx cQT cXL cZt @@ -146845,10 +142301,10 @@ dzT dAW dCB dDN -dDN +dEW dGl -dHG -dDO +dHH +psi dCy dKX dMA @@ -146856,30 +142312,30 @@ dNS aaa aaa aaa -dQS -dRY -dSX -dTL -dUD -dUD -dUD -dUD -dUD -dUD -dUD -dUD -dUD -dUD -dUD -dUD -dUD -edE -eel -eeW -eeW -eeW -egI -dSX +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -147101,7 +142557,7 @@ dyo dzU dAX dCB -dDJ +vqd dEW dGn dHI @@ -147113,30 +142569,30 @@ dNS aaa aaa aaa -dQS -dRY -dSX -dTL -dUD -dVn -dVn -dVn -dVn -dVn -dUD -dVn -dVn -dVn -dVn -dVn -dUD -edE -dSW -eeX -eeW -eeW -egJ -dSW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -147359,9 +142815,9 @@ dzV dAY dCB dDO -dDN +dEW dGl -dHG +dHH dIZ dCy dKZ @@ -147370,35 +142826,35 @@ dNT aad aaa aaa -dQT -dQT -dSW -dTL -dUD -dVo -dWh -dWY -dXQ -dVo -dUD -eac -dXQ -ebn -dWi -eac -dUD -edE -dSX -eeX -eeW -egu -egI -dSW -dSW -dZs -dSX -dSW -dSW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aab aaa aaa @@ -147627,35 +143083,35 @@ dNS aaa aaa aaa -dQS -dRY -dSW -dTM -dUD -dVm -dVm -dVm -dVm -dVm -dUD -dVm -dVm -dVm -dVm -dVm -dUD -edE -dSW -eeY -eeW -egv -egK -dSW -egR -egW -ehb -ehi -dSW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -147884,35 +143340,35 @@ dNS aaa aaa aaa -dQS -dRY -dSX -dTL -dUD -dUD -dUD -dUD -dUD -dUD -dUD -dUD -dUD -dUD -dUD -dUD -dUD -edF -dSW -dSW -eel -dSX -dZs -dSW -egS -egX -ehc -ehj -dSX +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -148141,35 +143597,35 @@ dNT aad aaa aaa -dQT -dQT -dSW -dTM -dUD -dVn -dVn -dVn -dVn -dVn -dUD -dVn -dVn -dVn -dVn -dVn -dUD -edE -dSX -eeZ -efI -egw -egL -dUF -egT -egT -ehd -ehk -dSX +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -148398,35 +143854,35 @@ dNS aaa aaa aaa -dQS -dRY -dSX -dTL -dUD -dVo -dWi -dWY -dXQ -dVo -dUD -eac -dWh -ebn -ecd -eac -dUD -edE -eem -dTL -dUD -dUD -egM -eem -egT -egT -ehe -ehl -dSX +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -148655,35 +144111,35 @@ dNS aaa aaa aaa -dQS -dRY -dSX -dTL -dUD -dVm -dVm -dVm -dVm -dVm -dUD -dVm -dVm -dVm -dVm -dVm -dUD -edE -eem -dTL -dUD -dUD -egM -eem -egT -egT -ehf -ehm -dSX +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -148780,7 +144236,7 @@ ahw ahH abi aim -QOn +aiH aiZ ajl aig @@ -148826,7 +144282,7 @@ bgK bii bjU blR -QOt +baU boO bqZ bsT @@ -148912,35 +144368,35 @@ dNT aad aaa aaa -dQT -dQT -dSW -dTL -dUD -dUD -dUD -dUD -dUD -dUD -dUD -dUD -dUD -dUD -dUD -dUD -dUD -edE -dSX -efa -efJ -egx -efM -dUF -egT -egY -ehd -ehn -dSX +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -149125,7 +144581,7 @@ bvM bvM bvM bvM -cGG +bvM bvM bFE cKE @@ -149169,35 +144625,35 @@ dNS aaa aaa aaa -dQS -dRY -dSX -dTK -dUE -dVn -dWj -dWj -dVn -dVn -dZu -dVn -dVn -dVn -dWj -dWj -dUE -dTK -dSW -dZs -dSW -dSW -egN -dSW -egS -egZ -ehg -eho -dSX +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -149426,35 +144882,35 @@ dNS aaa aaa aaa -dQS -dRY -dSW -dSW -dUF -dSX -dWk -dWk -dSX -dYL -dSW -dSW -dSW -dSW -ece -ece -dSW -dSW -dSW -efb -efK -egy -egO -dSW -egU -eha -ehh -ehp -dSW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -149551,7 +145007,7 @@ afj ahH abi aip -QOn +aiH ajb ajo ajP @@ -149683,35 +145139,35 @@ dNT aad aaa aaa -dQT -dQT -dSW -dTN -dUG -dVp -dWj -dWj -dXR -dYM -dSW -ead -eaG -ebo -dWj -dWj -edc -edG -dSW -efc -efL -dSV -dSW -dSW -dSW -dZs -dSX -dSW -dSW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -149940,30 +145396,30 @@ dNS aaa aaa aaa -dQS -dRY -dSX -dTO -dUH -dVq -dUD -dUD -dXS -dYN -dZv -dWj -eaH -ebp -ebp -ebp -edd -edH -dSW -efd -efM -egz -egP -dSW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -150197,30 +145653,30 @@ dNS aaa aaa aaa -dQS -dRY -dSX -dTP -dUI -dVr -dUD -dUD -dXS -dYN -dZv -dWj -eaI -ebq -ebq -ebq -ede -edH -dSW -efc -efN -dTL -egP -dSX +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -150323,7 +145779,7 @@ ahH abi ais aiI -QOn +aiH ajq aig akt @@ -150454,30 +145910,30 @@ dNT aaa aaa aaa -dQS -dRY -dSW -dTQ -dUJ -dVs -dWl -dWZ -dXT -dYO -dYL -eae -eaJ -ebr -ecf -ecf -dTK -edI -dSW -dTK -efO -egA -egP -dSW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -150652,7 +146108,7 @@ ccX ceO cgC cim -cjW +cjV clk cmS cou @@ -150712,29 +146168,29 @@ aaa aaa aaa aaa -dQT -dSV -dSW -dSX -dSX -dSX -dSX -dSW -dSW -dZs -dSW -dSX -dSX -dSX -dSX -dSX -dSW -dSW -dSX -efP -efP -dSX -dSW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -150918,7 +146374,7 @@ crj csM cbk cvM -cxe +cxa bsE cAm cBL @@ -152139,17 +147595,17 @@ atE auM aoE aaa -ayF -ayF -ayF -aCe +aaa +aaa +aaa +aaa aDi -ayF -aDi -aGG -ayF -ayF -ayF +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aad @@ -152396,18 +147852,18 @@ atF auN aoE aaa -ayF -azH -aAL -aAL -aDj -aEj -aDj -aDj -aHY -ayF -ayF -aLZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aad aQQ @@ -152653,18 +148109,18 @@ atG auO aoF aaa -ayF -azI -aAM -aCf -aAM -aAM -aAM -aAN -aHZ -aJw -aKT -aMa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aad aQR @@ -152683,15 +148139,15 @@ bkf aaa aaa aaa -brc -brc -buu -brc -brc -buu -brc -brc -brc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa bHr bJj @@ -152910,18 +148366,18 @@ aoE aoF aoF aaa -ayF -azJ -aAN -aAN -aAN -aAM -aAN -aAM -aIa -aJw -aKU -aMa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aad aQU @@ -152931,24 +148387,24 @@ aVZ aXG aZi aad -bcH -bcH -bcI +aaa +aaa +aaa bgU -bcI -bcH -bcH aaa aaa -brd -bsX -buv -bvU -bxj -byA -bzZ -brc -bDU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa bHs bJk @@ -153167,18 +148623,18 @@ aad aad aaa aaa -ayF -azK -aAN -aAM -aAM -aAM -aAM -aAM -aIa -aJx -aKU -aMa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aad aQS @@ -153188,24 +148644,24 @@ aWa aXH aQS aad -bcH -bem -bfK -bgV -biv -bkg -bcH aaa aaa -brd -bsY -buw -bvV -bxk -byB -bAa -bBX -bDU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa bHs bJl @@ -153424,18 +148880,18 @@ aac aaa aaa aaa -ayF -azL -aAO -aCg -aAO -aEk -aCg -aAO -aIb -ayF -ayF -aMb +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aad aQV @@ -153445,24 +148901,24 @@ aQQ aXI aZj aad -bcI -ben -bfL -bgW -biw -bkh -bmb aaa aaa -brd -bsZ -bux -bvW -bxl -byC -bAb -brc -bDU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa bHr bJm @@ -153681,17 +149137,17 @@ aaa aaa aaa aaa -ayF -ayF -ayF -ayF -ayF -ayF -aFl -ayF -ayF -ayF -ayF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aad @@ -153702,24 +149158,24 @@ aaa aad aad aad -bcH -beo -bfM -bgX -bix -bki -bcH aaa aaa -brc -brc -buy -brc -brc -brc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa bAc -brc -brc +aaa +aaa aaa bHr bHr @@ -153800,7 +149256,7 @@ dSe dSZ dTS dUP -dVB +dTS dWv dXj dYc @@ -153959,13 +149415,13 @@ aad aad aaa aaa -bcH -bcH -bcI -bgY -bcI -bcH -bcH +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -153998,7 +149454,7 @@ clt cnc coE cqd -crr +hKW csT cuy cvU @@ -154774,7 +150230,7 @@ csW cux cvX cxo -cyT +cyR cAt cBY cDz @@ -155010,7 +150466,7 @@ bHu bJq bHu bHu -bPn +bHu bHu bHu bVi @@ -155520,20 +150976,20 @@ bAi bCa bDZ bnG +bHw +bJs +bLk bgZ -bgZ -bgZ -bgZ -bgZ -bgZ -bgZ +bHw +bJs +bLk bgZ bXB bZK cbw bgZ -bNj -QOr +bgZ +bHz ciC bgZ clx @@ -156039,7 +151495,7 @@ bJu bLm bEe bPp -bkq +bmj bTb bNj bXD @@ -158123,7 +153579,7 @@ cFB cDI cIj cJr -cLh +cLd cMC cNV cPV @@ -158584,7 +154040,7 @@ aUy aWg aXM aZu -bbj +bbd bcP bcM aad diff --git a/_maps/cit_map_files/MetaStation/MetaStation.dmm b/_maps/cit_map_files/MetaStation/MetaStation.dmm index 0a5f1615a8..53bf730451 100644 --- a/_maps/cit_map_files/MetaStation/MetaStation.dmm +++ b/_maps/cit_map_files/MetaStation/MetaStation.dmm @@ -2,43 +2,43 @@ "aaa" = ( /turf/open/space/basic, /area/space) -"aac" = ( +"aab" = ( /obj/effect/landmark/carpspawn, /turf/open/space, /area/space) +"aac" = ( +/obj/structure/grille, +/turf/open/space, +/area/space/nearstation) +"aad" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"aae" = ( +/obj/structure/grille/broken, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) "aaf" = ( /obj/structure/lattice, /turf/open/space, /area/space/nearstation) "aag" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aah" = ( /obj/structure/cable{ icon_state = "0-2" }, /obj/machinery/power/tracker, /turf/open/floor/plating/airless, /area/solar/port/fore) -"aai" = ( -/obj/structure/grille/broken, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aaj" = ( -/obj/structure/grille, -/turf/open/space, -/area/space/nearstation) -"aak" = ( +"aah" = ( /obj/structure/cable{ icon_state = "1-2" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"aal" = ( +"aai" = ( /obj/structure/cable{ icon_state = "0-2" }, @@ -48,12 +48,12 @@ }, /turf/open/floor/plasteel/airless/solarpanel, /area/solar/port/fore) -"aam" = ( +"aaj" = ( /obj/structure/cable, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"aan" = ( +"aak" = ( /obj/structure/cable{ icon_state = "1-4" }, @@ -63,7 +63,7 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"aao" = ( +"aal" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -76,25 +76,25 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"aap" = ( +"aam" = ( /obj/structure/cable{ icon_state = "0-8" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"aaq" = ( +"aan" = ( /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"aar" = ( +"aao" = ( /obj/structure/cable{ icon_state = "0-4" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"aas" = ( +"aap" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -107,7 +107,7 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"aat" = ( +"aaq" = ( /obj/structure/cable{ icon_state = "2-8" }, @@ -117,7 +117,10 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"aau" = ( +"aar" = ( +/turf/open/space, +/area/space) +"aas" = ( /obj/structure/cable, /obj/machinery/power/solar{ id = "foreport"; @@ -125,37 +128,47 @@ }, /turf/open/floor/plasteel/airless/solarpanel, /area/solar/port/fore) -"aav" = ( -/turf/open/space, -/area/space) -"aaw" = ( +"aat" = ( +/obj/docking_port/stationary{ + dheight = 1; + dir = 8; + dwidth = 12; + height = 17; + id = "syndicate_nw"; + name = "northwest of station"; + turf_type = /turf/open/space; + width = 23 + }, +/turf/open/space/basic, +/area/space/nearstation) +"aau" = ( /obj/item/stack/cable_coil, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"aax" = ( +"aav" = ( /turf/closed/wall/r_wall, /area/security/prison) -"aay" = ( +"aaw" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" }, /turf/open/floor/plating, /area/security/prison) -"aaz" = ( +"aax" = ( /obj/effect/landmark/xeno_spawn, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"aaA" = ( +"aay" = ( /obj/machinery/seed_extractor, /obj/machinery/light/small{ dir = 8 }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaB" = ( +"aaz" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -164,7 +177,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaC" = ( +"aaA" = ( /obj/structure/sink/kitchen{ desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; @@ -174,14 +187,14 @@ icon_state = "platingdmg3" }, /area/security/prison) -"aaD" = ( +"aaB" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/item/twohanded/required/kirbyplants, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaE" = ( +"aaC" = ( /obj/machinery/biogenerator, /obj/machinery/light/small{ dir = 4 @@ -192,14 +205,21 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaF" = ( +"aaD" = ( +/obj/docking_port/stationary/random{ + id = "pod_lavaland2"; + name = "lavaland" + }, +/turf/open/space, +/area/space/nearstation) +"aaE" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" }, /turf/open/floor/plating, /area/security/prison) -"aaG" = ( +"aaF" = ( /obj/machinery/hydroponics/constructable, /obj/item/seeds/ambrosia, /obj/structure/cable/yellow{ @@ -207,7 +227,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaH" = ( +"aaG" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -220,13 +240,13 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaI" = ( +"aaH" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaJ" = ( +"aaI" = ( /obj/item/reagent_containers/glass/bucket, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -237,7 +257,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaK" = ( +"aaJ" = ( /obj/machinery/hydroponics/constructable, /obj/item/seeds/glowshroom, /obj/structure/cable/yellow{ @@ -245,13 +265,16 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaL" = ( +"aaK" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/open/floor/plating, /area/security/prison) +"aaL" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/pod_2) "aaM" = ( /obj/effect/spawner/structure/window/shuttle, /turf/open/floor/plating, @@ -264,17 +287,12 @@ /turf/open/floor/plating/airless, /area/solar/starboard/fore) "aaO" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"aaP" = ( /obj/machinery/hydroponics/constructable, /obj/item/cultivator, /obj/item/seeds/carrot, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaQ" = ( +"aaP" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -282,14 +300,14 @@ /obj/item/reagent_containers/glass/bucket, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaR" = ( +"aaQ" = ( /turf/open/floor/plasteel, /area/security/prison) -"aaS" = ( +"aaR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaT" = ( +"aaS" = ( /obj/machinery/hydroponics/constructable, /obj/item/device/plant_analyzer, /obj/machinery/airalarm{ @@ -298,20 +316,34 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaV" = ( -/turf/closed/wall/mineral/titanium, +"aaT" = ( +/turf/closed/wall/mineral/plastitanium, +/area/security/prison) +"aaU" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_x = -32; + possible_destinations = "pod_lavaland2"; + shuttleId = "pod2" + }, +/turf/open/floor/mineral/titanium/blue, /area/shuttle/pod_2) -"aaY" = ( +"aaV" = ( /obj/structure/cable{ icon_state = "1-2" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"aaZ" = ( +"aaW" = ( /turf/closed/wall/r_wall, /area/security/execution/education) -"aba" = ( +"aaX" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ @@ -320,14 +352,14 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/security/prison) -"abb" = ( +"aaY" = ( /obj/machinery/door/airlock/public/glass{ id_tag = "permahydro"; name = "Hydroponics Module" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abc" = ( +"aaZ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -335,17 +367,32 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/security/prison) -"abe" = ( +"aba" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_x = 25 + }, +/obj/item/storage/pod{ + pixel_x = -26 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/pod_2) +"abb" = ( /turf/closed/wall, /area/security/prison) -"abf" = ( +"abc" = ( /obj/structure/cable{ icon_state = "0-2" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"abg" = ( +"abd" = ( /obj/machinery/door/poddoor{ density = 1; icon_state = "closed"; @@ -358,7 +405,7 @@ }, /turf/open/floor/plating, /area/security/execution/education) -"abh" = ( +"abe" = ( /obj/item/soap/nanotrasen, /obj/item/bikehorn/rubberducky, /obj/machinery/shower{ @@ -369,7 +416,7 @@ }, /turf/open/floor/plasteel/freezer, /area/security/prison) -"abi" = ( +"abf" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -383,7 +430,7 @@ }, /turf/open/floor/plasteel/freezer, /area/security/prison) -"abj" = ( +"abg" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -392,7 +439,7 @@ /obj/item/canvas/twentythreeXtwentythree, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abk" = ( +"abh" = ( /obj/structure/table, /obj/item/folder, /obj/item/paper/guides/jobs/hydroponics, @@ -406,25 +453,25 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abl" = ( +"abi" = ( /obj/structure/table, /obj/machinery/computer/libraryconsole/bookmanagement, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abm" = ( +"abj" = ( /obj/machinery/computer/arcade, /obj/machinery/computer/security/telescreen/entertainment{ pixel_y = 32 }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abn" = ( +"abk" = ( /obj/machinery/newscaster{ pixel_y = 32 }, /turf/open/floor/plasteel, /area/security/prison) -"abo" = ( +"abl" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -434,14 +481,14 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abp" = ( +"abm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-8" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abq" = ( +"abn" = ( /obj/structure/holohoop{ pixel_y = 29 }, @@ -450,7 +497,7 @@ icon_state = "platingdmg1" }, /area/security/prison) -"abr" = ( +"abo" = ( /obj/machinery/status_display{ pixel_y = 32 }, @@ -458,7 +505,7 @@ dir = 8 }, /area/security/prison) -"abs" = ( +"abp" = ( /obj/machinery/washing_machine, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -467,22 +514,23 @@ dir = 8 }, /area/security/prison) -"abt" = ( +"abq" = ( /obj/structure/shuttle/engine/propulsion/burst, /turf/closed/wall/mineral/titanium, /area/shuttle/pod_2) -"abu" = ( +"abr" = ( /obj/machinery/door/airlock/titanium{ name = "Escape Pod Airlock" }, /obj/docking_port/mobile/pod{ id = "pod2"; name = "escape pod 2"; - port_direction = 2 + port_direction = 2; + timid = 0 }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/pod_2) -"abv" = ( +"abs" = ( /obj/structure/cable{ icon_state = "0-2" }, @@ -492,19 +540,19 @@ }, /turf/open/floor/plasteel/airless/solarpanel, /area/solar/starboard/fore) -"abw" = ( +"abt" = ( /obj/structure/cable, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"abx" = ( +"abu" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/turf_decal/stripes/line{ dir = 9 }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"aby" = ( +"abv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -513,7 +561,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"abz" = ( +"abw" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -522,13 +570,13 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"abA" = ( +"abx" = ( /obj/machinery/shower{ dir = 4 }, /turf/open/floor/plasteel/freezer, /area/security/prison) -"abB" = ( +"aby" = ( /obj/machinery/door/window/westleft{ base_state = "right"; dir = 4; @@ -539,20 +587,20 @@ /obj/machinery/light/small, /turf/open/floor/plasteel/freezer, /area/security/prison) -"abC" = ( +"abz" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abD" = ( +"abA" = ( /obj/structure/chair/stool, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abE" = ( +"abB" = ( /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abF" = ( +"abC" = ( /obj/structure/table, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -567,24 +615,24 @@ }, /turf/open/floor/plasteel, /area/security/prison) -"abG" = ( +"abD" = ( /obj/structure/table, /obj/item/toy/cards/deck, /obj/item/toy/cards/deck, /turf/open/floor/plasteel, /area/security/prison) -"abH" = ( +"abE" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abI" = ( +"abF" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abJ" = ( +"abG" = ( /obj/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -593,7 +641,7 @@ dir = 8 }, /area/security/prison) -"abK" = ( +"abH" = ( /obj/structure/table, /obj/structure/bedsheetbin, /obj/structure/window/reinforced, @@ -604,21 +652,21 @@ dir = 8 }, /area/security/prison) -"abL" = ( +"abI" = ( /turf/open/floor/plating, /area/security/prison) -"abM" = ( +"abJ" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plating, /area/security/prison) -"abN" = ( +"abK" = ( /turf/open/floor/plating{ icon_state = "platingdmg3" }, /area/security/prison) -"abO" = ( +"abL" = ( /obj/structure/cable{ icon_state = "1-4" }, @@ -628,7 +676,7 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"abP" = ( +"abM" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -641,25 +689,25 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"abQ" = ( +"abN" = ( /obj/structure/cable{ icon_state = "0-8" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"abR" = ( +"abO" = ( /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"abS" = ( +"abP" = ( /obj/structure/cable{ icon_state = "0-4" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"abT" = ( +"abQ" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -672,7 +720,7 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"abU" = ( +"abR" = ( /obj/structure/cable{ icon_state = "1-8" }, @@ -682,7 +730,7 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"abV" = ( +"abS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light/small{ dir = 8 @@ -697,17 +745,16 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"abW" = ( +"abT" = ( /obj/structure/bed, /obj/item/clothing/suit/straight_jacket, /obj/item/clothing/glasses/sunglasses/blindfold, /obj/item/clothing/mask/muzzle, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/revenantspawn, /obj/item/device/electropack, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"abX" = ( +"abU" = ( /obj/machinery/flasher{ id = "justiceflash"; name = "mounted justice flash"; @@ -718,14 +765,14 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"abY" = ( +"abV" = ( /obj/machinery/door/airlock{ name = "Unisex Restroom"; req_access_txt = "0" }, /turf/open/floor/plasteel/freezer, /area/security/prison) -"abZ" = ( +"abW" = ( /obj/structure/table, /obj/item/book/manual/chef_recipes{ pixel_x = 2; @@ -734,7 +781,7 @@ /obj/item/clothing/head/chefhat, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aca" = ( +"abX" = ( /obj/structure/table, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -744,17 +791,17 @@ /obj/item/toy/cards/deck, /turf/open/floor/plasteel, /area/security/prison) -"acb" = ( +"abY" = ( /obj/structure/table, /obj/item/storage/pill_bottle/dice, /turf/open/floor/plasteel, /area/security/prison) -"acc" = ( +"abZ" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/security/prison) -"ace" = ( +"aca" = ( /obj/machinery/vending/sustenance{ desc = "A vending machine normally reserved for work camps."; name = "\improper sustenance vendor"; @@ -762,38 +809,34 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acf" = ( +"acb" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/security/prison) -"acg" = ( +"acc" = ( /obj/machinery/light/small, /turf/open/floor/plating{ icon_state = "panelscorched" }, /area/security/prison) -"ach" = ( +"acd" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plating, /area/security/prison) -"aci" = ( +"ace" = ( /obj/machinery/door/airlock/external{ name = "Security External Airlock"; req_access_txt = "1" }, /turf/open/floor/plating, /area/security/prison) -"acj" = ( +"acf" = ( /obj/machinery/light/small{ dir = 1 }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /obj/effect/turf_decal/stripes/line{ @@ -801,11 +844,11 @@ }, /turf/open/floor/plating, /area/security/prison) -"ack" = ( +"acg" = ( /obj/structure/lattice/catwalk, /turf/open/space, /area/space/nearstation) -"acl" = ( +"ach" = ( /obj/structure/cable, /obj/machinery/power/solar{ id = "forestarboard"; @@ -813,7 +856,7 @@ }, /turf/open/floor/plasteel/airless/solarpanel, /area/solar/starboard/fore) -"acm" = ( +"aci" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -823,7 +866,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"acn" = ( +"acj" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, @@ -832,7 +875,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"aco" = ( +"ack" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 2; name = "justice injector" @@ -842,7 +885,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"acp" = ( +"acl" = ( /obj/machinery/light/small{ dir = 4 }, @@ -851,7 +894,7 @@ }, /turf/open/floor/plasteel/freezer, /area/security/prison) -"acq" = ( +"acm" = ( /obj/structure/table, /obj/item/storage/box/donkpockets{ pixel_x = 2; @@ -865,13 +908,13 @@ icon_state = "panelscorched" }, /area/security/prison) -"acr" = ( +"acn" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acs" = ( +"aco" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -880,7 +923,7 @@ }, /turf/open/floor/plasteel, /area/security/prison) -"act" = ( +"acp" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -895,50 +938,50 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acu" = ( +"acq" = ( /obj/machinery/holopad, /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acv" = ( +"acr" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acw" = ( +"acs" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acx" = ( +"act" = ( /obj/machinery/airalarm{ dir = 8; pixel_x = 24 }, +/obj/machinery/cryopod, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acy" = ( +"acu" = ( /obj/machinery/door/airlock/external{ name = "Escape Pod Two" }, /turf/open/floor/plating, /area/security/prison) -"acz" = ( +"acv" = ( /obj/item/stack/cable_coil, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"acA" = ( +"acw" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/poddoor/preopen{ id = "executionfireblast"; - layer = 2.9; name = "blast door" }, /obj/machinery/door/firedoor, @@ -946,11 +989,10 @@ dir = 4 }, /area/security/execution/education) -"acB" = ( +"acx" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "executionfireblast"; - layer = 2.9; name = "blast door" }, /obj/machinery/door/firedoor, @@ -961,7 +1003,7 @@ dir = 4 }, /area/security/execution/education) -"acC" = ( +"acy" = ( /obj/machinery/door/window/brigdoor{ dir = 2; name = "Justice Chamber"; @@ -985,14 +1027,13 @@ /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/preopen{ id = "executionfireblast"; - layer = 2.9; name = "blast door" }, /turf/open/floor/plasteel/darkred{ dir = 4 }, /area/security/execution/education) -"acD" = ( +"acz" = ( /obj/structure/table, /obj/machinery/microwave{ pixel_x = -3; @@ -1002,19 +1043,19 @@ icon_state = "platingdmg1" }, /area/security/prison) -"acE" = ( +"acA" = ( /turf/open/floor/plating{ icon_state = "panelscorched" }, /area/security/prison) -"acF" = ( +"acB" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /obj/machinery/light, /turf/open/floor/plasteel, /area/security/prison) -"acG" = ( +"acC" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -1023,7 +1064,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acH" = ( +"acD" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -1041,7 +1082,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acI" = ( +"acE" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -1050,26 +1091,26 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acJ" = ( +"acF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/security/prison) -"acK" = ( +"acG" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acL" = ( +"acH" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /obj/machinery/light, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acM" = ( +"acI" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -1078,7 +1119,7 @@ /obj/item/pen, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acN" = ( +"acJ" = ( /obj/structure/table/glass, /obj/item/reagent_containers/syringe, /obj/item/reagent_containers/glass/bottle/morphine{ @@ -1088,7 +1129,7 @@ dir = 1 }, /area/security/prison) -"acO" = ( +"acK" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -1106,14 +1147,7 @@ dir = 1 }, /area/security/prison) -"acP" = ( -/turf/closed/wall, -/area/crew_quarters/fitness/recreation) -"acQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/fitness/recreation) -"acR" = ( +"acL" = ( /obj/structure/table/glass, /obj/item/reagent_containers/syringe, /obj/item/reagent_containers/glass/bottle/morphine{ @@ -1128,28 +1162,38 @@ dir = 1 }, /area/security/prison) -"acS" = ( +"acM" = ( +/turf/closed/wall, +/area/crew_quarters/fitness/recreation) +"acN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/fitness/recreation) +"acO" = ( +/turf/closed/wall/mineral/plastitanium, +/area/crew_quarters/fitness/recreation) +"acP" = ( /obj/structure/cable{ icon_state = "1-4" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"acT" = ( +"acQ" = ( /obj/structure/cable{ icon_state = "4-8" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"acU" = ( +"acR" = ( /obj/structure/cable{ icon_state = "2-8" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"acV" = ( +"acS" = ( /obj/structure/table, /obj/item/reagent_containers/glass/bottle/morphine{ pixel_x = -4; @@ -1220,7 +1264,7 @@ dir = 1 }, /area/security/execution/education) -"acW" = ( +"acT" = ( /obj/structure/table, /obj/item/folder/red{ pixel_x = 3 @@ -1239,7 +1283,7 @@ dir = 1 }, /area/security/execution/education) -"acX" = ( +"acU" = ( /obj/machinery/atmospherics/pipe/simple/general/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -1248,7 +1292,7 @@ dir = 1 }, /area/security/execution/education) -"acY" = ( +"acV" = ( /obj/structure/sink/kitchen{ desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; @@ -1261,7 +1305,7 @@ dir = 1 }, /area/security/execution/education) -"acZ" = ( +"acW" = ( /obj/machinery/power/apc{ dir = 1; name = "Prisoner Education Chamber APC"; @@ -1282,13 +1326,13 @@ dir = 1 }, /area/security/execution/education) -"ada" = ( +"acX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/closed/wall/r_wall, /area/security/prison) -"adb" = ( +"acY" = ( /obj/machinery/door/poddoor/preopen{ id = "permacell3"; name = "Cell Shutters" @@ -1299,11 +1343,11 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adc" = ( +"acZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/security/prison) -"add" = ( +"ada" = ( /obj/machinery/door/poddoor/preopen{ id = "permacell2"; name = "Cell Shutters" @@ -1318,7 +1362,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"ade" = ( +"adb" = ( /obj/machinery/door/poddoor/preopen{ id = "permacell1"; name = "Cell Shutters" @@ -1329,27 +1373,26 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adf" = ( +"adc" = ( /obj/machinery/light/small{ dir = 4 }, /turf/open/floor/plating, /area/security/prison) -"adg" = ( +"add" = ( /obj/structure/bed, /obj/item/clothing/suit/straight_jacket, /obj/item/clothing/glasses/sunglasses/blindfold, /obj/item/clothing/mask/muzzle, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/white, /area/security/prison) -"adh" = ( +"ade" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, /turf/open/floor/plasteel/white, /area/security/prison) -"adi" = ( +"adf" = ( /obj/structure/bed, /obj/item/clothing/suit/straight_jacket, /obj/item/clothing/glasses/sunglasses/blindfold, @@ -1357,26 +1400,25 @@ /obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/white, /area/security/prison) -"adj" = ( +"adg" = ( /obj/structure/closet/emcloset, /obj/machinery/light/small{ dir = 8 }, /turf/open/floor/plating, /area/crew_quarters/fitness/recreation) -"adk" = ( +"adh" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 8 }, /turf/closed/wall/mineral/titanium, /area/shuttle/pod_3) -"adl" = ( +"adi" = ( /turf/closed/wall/mineral/titanium, /area/shuttle/pod_3) -"adm" = ( +"adj" = ( /obj/structure/table, /obj/item/device/flashlight/lamp, /obj/structure/reagent_dispensers/peppertank{ @@ -1387,7 +1429,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"adn" = ( +"adk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/chair/office/dark{ dir = 1 @@ -1397,15 +1439,15 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"ado" = ( +"adl" = ( /obj/machinery/atmospherics/pipe/simple/general/hidden, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"adp" = ( +"adm" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"adq" = ( +"adn" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -1418,11 +1460,11 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"adr" = ( +"ado" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/security/execution/education) -"ads" = ( +"adp" = ( /obj/structure/bed, /obj/machinery/camera{ c_tag = "Prison Cell 3"; @@ -1430,7 +1472,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adt" = ( +"adq" = ( /obj/structure/chair/stool, /obj/machinery/light/small{ dir = 1 @@ -1445,7 +1487,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adu" = ( +"adr" = ( /obj/structure/bed, /obj/machinery/camera{ c_tag = "Prison Cell 2"; @@ -1453,14 +1495,14 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adv" = ( +"ads" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adw" = ( +"adt" = ( /obj/structure/chair/stool, /obj/machinery/light/small{ dir = 1 @@ -1477,7 +1519,7 @@ icon_state = "platingdmg2" }, /area/security/prison) -"adx" = ( +"adu" = ( /obj/structure/bed, /obj/machinery/camera{ c_tag = "Prison Cell 1"; @@ -1485,7 +1527,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"ady" = ( +"adv" = ( /obj/structure/chair/stool, /obj/machinery/light/small{ dir = 1 @@ -1500,12 +1542,12 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adz" = ( +"adw" = ( /turf/open/floor/plating{ icon_state = "platingdmg1" }, /area/security/prison) -"adA" = ( +"adx" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/machinery/light{ dir = 8 @@ -1516,13 +1558,13 @@ }, /turf/open/floor/plasteel/white, /area/security/prison) -"adB" = ( +"ady" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/white, /area/security/prison) -"adC" = ( +"adz" = ( /obj/machinery/flasher{ id = "insaneflash"; pixel_x = 26 @@ -1530,7 +1572,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/white, /area/security/prison) -"adD" = ( +"adA" = ( /obj/structure/lattice, /obj/machinery/camera/motion{ c_tag = "Armory - External"; @@ -1539,10 +1581,10 @@ }, /turf/open/space, /area/space/nearstation) -"adE" = ( +"adB" = ( /turf/open/floor/plating, /area/crew_quarters/fitness/recreation) -"adF" = ( +"adC" = ( /obj/machinery/door/airlock/titanium{ name = "Escape Pod Airlock" }, @@ -1551,36 +1593,52 @@ id = "pod3"; name = "escape pod 3"; port_direction = 2; - preferred_direction = 4 + preferred_direction = 4; + timid = 0 }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/pod_3) +"adD" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/item/storage/pod{ + pixel_x = 6; + pixel_y = -32 + }, +/obj/machinery/light/small, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/pod_3) +"adE" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_y = -32; + possible_destinations = "pod_lavaland3"; + shuttleId = "pod3" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/pod_3) +"adF" = ( +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/pod_3) "adG" = ( /obj/docking_port/stationary/random{ - id = "pod_lavaland2"; + dir = 4; + id = "pod_lavaland3"; name = "lavaland" }, /turf/open/space, /area/space/nearstation) "adH" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_x = -32; - possible_destinations = "pod_lavaland2"; - shuttleId = "pod2" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_2) -"adI" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/pod_3) -"adJ" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -1599,7 +1657,7 @@ dir = 2 }, /area/security/execution/education) -"adK" = ( +"adI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -1607,7 +1665,7 @@ dir = 2 }, /area/security/execution/education) -"adL" = ( +"adJ" = ( /obj/machinery/atmospherics/pipe/simple/general/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -1616,7 +1674,7 @@ dir = 2 }, /area/security/execution/education) -"adM" = ( +"adK" = ( /obj/machinery/button/door{ id = "prisonereducation"; name = "Door Bolt Control"; @@ -1632,7 +1690,7 @@ dir = 2 }, /area/security/execution/education) -"adN" = ( +"adL" = ( /obj/machinery/light_switch{ pixel_x = 26 }, @@ -1646,7 +1704,7 @@ dir = 2 }, /area/security/execution/education) -"adO" = ( +"adM" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/machinery/flasher{ id = "PCell 3"; @@ -1656,7 +1714,7 @@ icon_state = "platingdmg3" }, /area/security/prison) -"adP" = ( +"adN" = ( /obj/structure/table, /obj/item/paper, /obj/item/pen, @@ -1665,13 +1723,13 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adQ" = ( +"adO" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /turf/closed/wall, /area/security/prison) -"adR" = ( +"adP" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -1681,7 +1739,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adS" = ( +"adQ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -1690,14 +1748,14 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adT" = ( +"adR" = ( /obj/structure/table, /obj/item/paper, /obj/item/pen, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adU" = ( +"adS" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/machinery/flasher{ id = "PCell 1"; @@ -1705,7 +1763,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adV" = ( +"adT" = ( /obj/item/folder/red, /obj/item/pen, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -1714,7 +1772,7 @@ dir = 2 }, /area/security/prison) -"adW" = ( +"adU" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -1722,7 +1780,7 @@ dir = 2 }, /area/security/prison) -"adX" = ( +"adV" = ( /obj/structure/bed/roller, /obj/structure/bed/roller, /obj/machinery/iv_drip, @@ -1732,13 +1790,13 @@ dir = 2 }, /area/security/prison) -"adY" = ( +"adW" = ( /turf/closed/wall/r_wall, -/area/security/warden) -"adZ" = ( +/area/ai_monitored/security/armory) +"adX" = ( /turf/closed/wall/r_wall, /area/crew_quarters/heads/hos) -"aea" = ( +"adY" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" @@ -1749,7 +1807,7 @@ }, /turf/open/floor/plating, /area/crew_quarters/heads/hos) -"aeb" = ( +"adZ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -1763,7 +1821,7 @@ }, /turf/open/floor/plating, /area/crew_quarters/heads/hos) -"aec" = ( +"aea" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -1777,17 +1835,17 @@ }, /turf/open/floor/plating, /area/crew_quarters/heads/hos) -"aed" = ( +"aeb" = ( /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plating, /area/crew_quarters/fitness/recreation) -"aee" = ( +"aec" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"aef" = ( +"aed" = ( /obj/machinery/door/airlock/external{ name = "Solar Maintenance"; req_access = null; @@ -1798,7 +1856,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"aeg" = ( +"aee" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -1808,7 +1866,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"aeh" = ( +"aef" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 10 }, @@ -1822,7 +1880,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"aei" = ( +"aeg" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1; name = "justice gas pump" @@ -1836,7 +1894,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"aej" = ( +"aeh" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ aiControlDisabled = 1; @@ -1853,22 +1911,22 @@ dir = 1 }, /area/security/execution/education) -"aek" = ( +"aei" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/security/prison) -"ael" = ( +"aej" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, /area/security/prison) -"aem" = ( +"aek" = ( /obj/machinery/door/airlock/security/glass{ name = "Long-Term Cell 3"; req_access_txt = "2" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aen" = ( +"ael" = ( /obj/machinery/door/airlock/security/glass{ name = "Long-Term Cell 2"; req_access_txt = "2" @@ -1879,14 +1937,14 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aeo" = ( +"aem" = ( /obj/machinery/door/airlock/security/glass{ name = "Long-Term Cell 1"; req_access_txt = "2" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aep" = ( +"aen" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Prison Sanitarium"; @@ -1899,24 +1957,7 @@ dir = 1 }, /area/security/prison) -"aeq" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"aer" = ( -/obj/structure/rack, -/obj/item/gun/energy/ionrifle{ - pin = /obj/item/device/firing_pin - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/gun/energy/temperature/security, -/obj/item/clothing/suit/armor/laserproof, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/ai_monitored/security/armory) -"aes" = ( +"aeo" = ( /obj/structure/closet/secure_closet{ name = "contraband locker"; req_access_txt = "3" @@ -1932,7 +1973,27 @@ dir = 4 }, /area/ai_monitored/security/armory) -"aet" = ( +"aep" = ( +/obj/structure/rack, +/obj/item/gun/energy/ionrifle{ + pin = /obj/item/device/firing_pin + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/gun/energy/temperature/security, +/obj/item/clothing/suit/armor/laserproof, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/ai_monitored/security/armory) +"aeq" = ( +/obj/structure/closet/secure_closet/lethalshots, +/turf/open/floor/plasteel/vault{ + dir = 1 + }, +/area/ai_monitored/security/armory) +"aer" = ( /obj/structure/table/wood, /obj/machinery/newscaster/security_unit{ pixel_y = 32 @@ -1951,66 +2012,81 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"aeu" = ( +"aes" = ( /obj/machinery/computer/prisoner, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"aev" = ( +"aet" = ( /obj/machinery/computer/security, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"aew" = ( +"aeu" = ( /obj/machinery/computer/secure_data, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"aex" = ( -/obj/structure/closet/secure_closet/lethalshots, -/turf/open/floor/plasteel/vault{ - dir = 1 +"aev" = ( +/obj/structure/table/wood, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security RC"; + pixel_y = 30 }, -/area/ai_monitored/security/armory) -"aey" = ( +/obj/machinery/computer/med_data/laptop, +/obj/item/storage/secure/safe/HoS{ + pixel_x = 36; + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Head of Security's Office"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"aew" = ( /turf/closed/wall, /area/security/range) -"aez" = ( +"aex" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/range) -"aeA" = ( +"aey" = ( /obj/machinery/door/airlock/external{ name = "Escape Pod Three" }, /turf/open/floor/plating, /area/crew_quarters/fitness/recreation) -"aeB" = ( +"aez" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/closed/wall, /area/crew_quarters/fitness/recreation) -"aeC" = ( +"aeA" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plating, /area/crew_quarters/fitness/recreation) -"aeE" = ( +"aeB" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/open/floor/plating, /area/crew_quarters/fitness/recreation) -"aeF" = ( +"aeC" = ( /obj/effect/landmark/xeno_spawn, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"aeG" = ( +"aeD" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -2019,14 +2095,14 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"aeH" = ( +"aeE" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /turf/open/floor/plasteel/vault, /area/security/execution/education) -"aeI" = ( +"aeF" = ( /obj/item/tank/internals/oxygen/red{ pixel_x = -4; pixel_y = -1 @@ -2042,21 +2118,20 @@ /obj/item/clothing/mask/gas, /obj/item/clothing/mask/gas, /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/machinery/atmospherics/pipe/manifold/general/visible, /obj/item/wrench, /turf/open/floor/plasteel/vault, /area/security/execution/education) -"aeJ" = ( +"aeG" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 9 }, /obj/machinery/space_heater, /turf/open/floor/plasteel/vault, /area/security/execution/education) -"aeK" = ( +"aeH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-4" @@ -2065,14 +2140,14 @@ dir = 2 }, /area/security/prison) -"aeL" = ( +"aeI" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ desc = "A warning sign which reads 'WARNING: Do Not Enter When Red Light Shows', detailing the penalties that any Nanotrasen employee or silicon will suffer if violating this rule."; name = "WARNING: Do Not Enter When Red Light Shows"; pixel_y = 32 @@ -2081,7 +2156,7 @@ dir = 2 }, /area/security/prison) -"aeM" = ( +"aeJ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -2093,7 +2168,7 @@ dir = 2 }, /area/security/prison) -"aeN" = ( +"aeK" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -2104,7 +2179,7 @@ dir = 2 }, /area/security/prison) -"aeO" = ( +"aeL" = ( /obj/machinery/button/door{ id = "permacell3"; name = "Cell 3 Lockdown"; @@ -2127,7 +2202,7 @@ dir = 2 }, /area/security/prison) -"aeP" = ( +"aeM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -2149,7 +2224,7 @@ dir = 2 }, /area/security/prison) -"aeQ" = ( +"aeN" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -2163,7 +2238,7 @@ dir = 2 }, /area/security/prison) -"aeR" = ( +"aeO" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -2175,7 +2250,7 @@ dir = 2 }, /area/security/prison) -"aeS" = ( +"aeP" = ( /obj/machinery/button/door{ id = "permacell2"; name = "Cell 2 Lockdown"; @@ -2199,7 +2274,7 @@ dir = 2 }, /area/security/prison) -"aeT" = ( +"aeQ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -2216,7 +2291,7 @@ dir = 2 }, /area/security/prison) -"aeU" = ( +"aeR" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -2228,7 +2303,7 @@ dir = 2 }, /area/security/prison) -"aeV" = ( +"aeS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -2239,7 +2314,7 @@ dir = 2 }, /area/security/prison) -"aeW" = ( +"aeT" = ( /obj/machinery/button/door{ id = "permacell1"; name = "Cell 1 Lockdown"; @@ -2263,7 +2338,7 @@ dir = 2 }, /area/security/prison) -"aeX" = ( +"aeU" = ( /obj/machinery/power/apc/highcap/five_k{ dir = 1; name = "Prison Wing APC"; @@ -2292,7 +2367,7 @@ dir = 2 }, /area/security/prison) -"aeY" = ( +"aeV" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -2303,21 +2378,21 @@ dir = 2 }, /area/security/prison) -"aeZ" = ( +"aeW" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, -/obj/structure/sign/pods{ +/obj/structure/sign/warning/pods{ pixel_y = 30 }, /turf/open/floor/plasteel/red/corner{ dir = 2 }, /area/security/prison) -"afa" = ( +"aeX" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -2333,7 +2408,7 @@ dir = 2 }, /area/security/prison) -"afb" = ( +"aeY" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -2347,24 +2422,14 @@ dir = 2 }, /area/security/prison) -"afc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/security/prison) -"afd" = ( +"aeZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-16" }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ desc = "A warning sign which reads 'WARNING: Criminally Insane Inmates', describing the possible hazards of those contained within."; name = "WARNING: Criminally Insane Inmates"; pixel_y = 32 @@ -2374,28 +2439,17 @@ }, /turf/open/floor/plasteel, /area/security/prison) -"afe" = ( -/obj/structure/table/wood, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Security's Desk"; - departmentType = 5; - name = "Head of Security RC"; - pixel_y = 30 +"afa" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" }, -/obj/machinery/computer/med_data/laptop, -/obj/item/storage/secure/safe/HoS{ - pixel_x = 36; - pixel_y = 28 +/obj/structure/cable/yellow{ + icon_state = "2-8" }, -/obj/machinery/camera{ - c_tag = "Head of Security's Office"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"aff" = ( +/turf/open/floor/plating, +/area/security/prison) +"afb" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/item/storage/secure/safe{ name = "armory safe A"; @@ -2404,19 +2458,33 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/security/armory) -"afg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"afh" = ( +"afc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, /turf/open/floor/plasteel/dark, /area/ai_monitored/security/armory) -"afi" = ( +"afd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"afe" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/storage/secure/safe{ + name = "armory safe B"; + pixel_x = 6; + pixel_y = 28 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"aff" = ( /obj/structure/closet/secure_closet/hos, /obj/machinery/light{ dir = 8 @@ -2434,7 +2502,7 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"afj" = ( +"afg" = ( /obj/machinery/status_display{ pixel_x = -32; pixel_y = 32 @@ -2444,17 +2512,17 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"afk" = ( +"afh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"afl" = ( +"afi" = ( /obj/structure/chair/comfy/black, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"afm" = ( +"afj" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -2463,7 +2531,7 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"afn" = ( +"afk" = ( /obj/machinery/status_display{ pixel_x = 32; pixel_y = 32 @@ -2476,7 +2544,7 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"afo" = ( +"afl" = ( /obj/machinery/light{ dir = 4 }, @@ -2490,7 +2558,7 @@ /obj/machinery/suit_storage_unit/hos, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"afp" = ( +"afm" = ( /obj/machinery/light/small{ dir = 1 }, @@ -2499,13 +2567,13 @@ }, /turf/open/floor/plasteel, /area/security/range) -"afq" = ( +"afn" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, /area/security/range) -"afr" = ( +"afo" = ( /obj/machinery/light/small{ dir = 1 }, @@ -2514,7 +2582,7 @@ }, /turf/open/floor/plasteel, /area/security/range) -"afs" = ( +"afp" = ( /obj/machinery/shower{ dir = 4 }, @@ -2526,11 +2594,11 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/fitness/recreation) -"aft" = ( +"afq" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"afu" = ( +"afr" = ( /obj/structure/table, /obj/item/reagent_containers/food/drinks/sillycup{ pixel_x = -5; @@ -2551,47 +2619,47 @@ }, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"afv" = ( +"afs" = ( /obj/structure/easel, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"afw" = ( +"aft" = ( /obj/structure/closet/masks, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"afx" = ( +"afu" = ( /obj/structure/closet/athletic_mixed, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"afy" = ( +"afv" = ( /obj/structure/closet/boxinggloves, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"afz" = ( +"afw" = ( /obj/structure/closet/emcloset, -/obj/structure/sign/pods{ +/obj/structure/sign/warning/pods{ pixel_y = 30 }, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"afA" = ( +"afx" = ( /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"afB" = ( +"afy" = ( /obj/machinery/computer/arcade, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"afC" = ( +"afz" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/crew_quarters/fitness/recreation) -"afD" = ( +"afA" = ( /turf/open/floor/engine{ name = "Holodeck Projector Floor" }, /area/holodeck/rec_center) -"afE" = ( +"afB" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -2602,7 +2670,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"afF" = ( +"afC" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "applebush" }, @@ -2611,7 +2679,7 @@ }, /turf/open/floor/plasteel, /area/security/prison) -"afG" = ( +"afD" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -2619,7 +2687,7 @@ dir = 1 }, /area/security/prison) -"afH" = ( +"afE" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -2631,7 +2699,7 @@ dir = 1 }, /area/security/prison) -"afI" = ( +"afF" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -2642,7 +2710,7 @@ dir = 1 }, /area/security/prison) -"afJ" = ( +"afG" = ( /obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -2654,7 +2722,7 @@ dir = 1 }, /area/security/prison) -"afK" = ( +"afH" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -2662,7 +2730,7 @@ dir = 1 }, /area/security/prison) -"afL" = ( +"afI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -2673,7 +2741,7 @@ dir = 1 }, /area/security/prison) -"afM" = ( +"afJ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -2685,7 +2753,7 @@ dir = 1 }, /area/security/prison) -"afN" = ( +"afK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -2697,7 +2765,7 @@ dir = 1 }, /area/security/prison) -"afO" = ( +"afL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -2711,7 +2779,7 @@ dir = 1 }, /area/security/prison) -"afP" = ( +"afM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -2723,16 +2791,7 @@ dir = 1 }, /area/security/prison) -"afQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/prison) -"afR" = ( +"afN" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -2743,7 +2802,7 @@ dir = 1 }, /area/security/prison) -"afS" = ( +"afO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -2752,7 +2811,7 @@ dir = 1 }, /area/security/prison) -"afT" = ( +"afP" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -2761,7 +2820,7 @@ dir = 1 }, /area/security/prison) -"afU" = ( +"afQ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -2769,35 +2828,17 @@ dir = 1 }, /area/security/prison) -"afV" = ( +"afR" = ( /turf/open/floor/plasteel/red/corner{ dir = 1 }, /area/security/prison) -"afW" = ( +"afS" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /turf/open/floor/plating, /area/security/prison) -"afX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/storage/secure/safe{ - name = "armory safe B"; - pixel_x = 6; - pixel_y = 28 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"afY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"afZ" = ( +"afT" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -2822,21 +2863,11 @@ dir = 1 }, /area/ai_monitored/security/armory) -"aga" = ( -/mob/living/simple_animal/bot/secbot{ - arrest_type = 1; - health = 45; - icon_state = "secbot1"; - idcheck = 1; - name = "Sergeant-at-Armsky"; - on = 1; - weaponscheck = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, +"afU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, /area/ai_monitored/security/armory) -"agb" = ( +"afV" = ( /obj/structure/rack, /obj/item/gun/energy/e_gun/advtaser{ pixel_x = -3; @@ -2852,10 +2883,21 @@ dir = 1 }, /area/ai_monitored/security/armory) -"agc" = ( -/turf/open/floor/plasteel/dark, +"afW" = ( +/mob/living/simple_animal/bot/secbot{ + arrest_type = 1; + health = 45; + icon_state = "secbot1"; + idcheck = 1; + name = "Sergeant-at-Armsky"; + on = 1; + weaponscheck = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, /area/ai_monitored/security/armory) -"agd" = ( +"afX" = ( /obj/structure/rack, /obj/item/gun/energy/laser{ pixel_x = -3; @@ -2870,7 +2912,22 @@ dir = 4 }, /area/ai_monitored/security/armory) -"age" = ( +"afY" = ( +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"afZ" = ( +/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, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/ai_monitored/security/armory) +"aga" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" @@ -2884,7 +2941,7 @@ }, /turf/open/floor/plating, /area/crew_quarters/heads/hos) -"agf" = ( +"agb" = ( /obj/structure/table/wood, /obj/item/storage/secure/briefcase{ pixel_x = -2 @@ -2896,24 +2953,24 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"agg" = ( +"agc" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"agh" = ( +"agd" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"agi" = ( +"age" = ( /obj/structure/table/wood, /obj/item/stamp/hos, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"agj" = ( +"agf" = ( /obj/item/phone{ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; pixel_x = -3; @@ -2927,7 +2984,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"agk" = ( +"agg" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -2936,7 +2993,7 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"agl" = ( +"agh" = ( /obj/structure/table/wood, /obj/item/paper_bin{ pixel_x = -3; @@ -2947,7 +3004,7 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"agm" = ( +"agi" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -2961,27 +3018,27 @@ }, /turf/open/floor/plating, /area/crew_quarters/heads/hos) -"agn" = ( +"agj" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/security/range) -"ago" = ( +"agk" = ( /obj/structure/target_stake, /obj/item/target/syndicate, /turf/open/floor/plasteel, /area/security/range) -"agp" = ( +"agl" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plasteel, /area/security/range) -"agq" = ( +"agm" = ( /turf/closed/wall, /area/maintenance/fore) -"agr" = ( +"agn" = ( /obj/structure/sink{ dir = 8; pixel_x = -12; @@ -3001,14 +3058,14 @@ /obj/machinery/light/small, /turf/open/floor/plasteel/freezer, /area/crew_quarters/fitness/recreation) -"ags" = ( +"ago" = ( /obj/machinery/door/airlock{ id_tag = "FitnessShower"; name = "Fitness Room Shower" }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/fitness/recreation) -"agt" = ( +"agp" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -3016,7 +3073,7 @@ dir = 1 }, /area/crew_quarters/fitness/recreation) -"agu" = ( +"agq" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -3024,7 +3081,7 @@ dir = 1 }, /area/crew_quarters/fitness/recreation) -"agv" = ( +"agr" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -3039,13 +3096,13 @@ dir = 1 }, /area/crew_quarters/fitness/recreation) -"agw" = ( +"ags" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"agx" = ( +"agt" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -3053,7 +3110,7 @@ dir = 4 }, /area/crew_quarters/fitness/recreation) -"agy" = ( +"agu" = ( /obj/machinery/light{ dir = 1 }, @@ -3070,15 +3127,15 @@ dir = 4 }, /area/crew_quarters/fitness/recreation) -"agz" = ( +"agv" = ( /turf/open/floor/plasteel/neutral/corner{ dir = 4 }, /area/crew_quarters/fitness/recreation) -"agA" = ( -/turf/closed/wall/r_wall, +"agw" = ( +/turf/closed/wall, /area/maintenance/solars/port/fore) -"agB" = ( +"agx" = ( /obj/machinery/power/solar_control{ id = "foreport"; name = "Port Bow Solar Control"; @@ -3089,7 +3146,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"agC" = ( +"agy" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -3101,19 +3158,15 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"agD" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +"agz" = ( +/obj/structure/sign/warning/vacuum/external{ pixel_x = 32 }, /turf/open/floor/plating{ icon_state = "platingdmg2" }, /area/maintenance/solars/port/fore) -"agE" = ( +"agA" = ( /obj/structure/table, /obj/item/folder/red{ pixel_x = 3 @@ -3124,7 +3177,7 @@ }, /turf/open/floor/plasteel/vault, /area/security/prison) -"agF" = ( +"agB" = ( /obj/structure/rack, /obj/item/restraints/handcuffs, /obj/item/device/assembly/flash/handheld, @@ -3133,7 +3186,7 @@ }, /turf/open/floor/plasteel/vault, /area/security/prison) -"agG" = ( +"agC" = ( /obj/structure/table, /obj/item/storage/box/bodybags{ pixel_x = 4; @@ -3143,22 +3196,22 @@ /obj/item/storage/box/prisoner, /turf/open/floor/plasteel/vault, /area/security/prison) -"agH" = ( +"agD" = ( /obj/structure/closet/secure_closet/brig, /turf/open/floor/plasteel/vault, /area/security/prison) -"agI" = ( +"agE" = ( /obj/structure/closet/secure_closet/brig, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/vault, /area/security/prison) -"agJ" = ( -/obj/structure/sign/securearea, +"agF" = ( +/obj/structure/sign/warning/securearea, /turf/closed/wall, /area/security/prison) -"agK" = ( +"agG" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ @@ -3170,11 +3223,11 @@ }, /turf/open/floor/plasteel, /area/security/prison) -"agL" = ( +"agH" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/prison) -"agM" = ( +"agI" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/security/glass{ @@ -3183,14 +3236,14 @@ }, /turf/open/floor/plasteel, /area/security/prison) -"agN" = ( -/obj/structure/sign/securearea{ +"agJ" = ( +/obj/structure/sign/warning/securearea{ desc = "A warning sign which reads 'WARNING: Dangerous Inmates'."; name = "\improper WARNING: Dangerous Inmates" }, /turf/closed/wall, /area/security/prison) -"agO" = ( +"agK" = ( /obj/structure/table, /obj/machinery/recharger{ pixel_y = 4 @@ -3200,7 +3253,7 @@ }, /turf/open/floor/plasteel/vault, /area/security/prison) -"agP" = ( +"agL" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -3208,19 +3261,7 @@ }, /turf/open/floor/plasteel/vault, /area/security/prison) -"agQ" = ( -/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, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/ai_monitored/security/armory) -"agR" = ( +"agM" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -22 @@ -3233,13 +3274,7 @@ dir = 1 }, /area/ai_monitored/security/armory) -"agS" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"agT" = ( +"agN" = ( /obj/structure/rack, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/item/storage/box/rubbershot, @@ -3258,7 +3293,13 @@ dir = 1 }, /area/ai_monitored/security/armory) -"agU" = ( +"agO" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"agP" = ( /obj/structure/rack, /obj/item/gun/energy/e_gun{ pixel_x = -3; @@ -3273,7 +3314,27 @@ dir = 4 }, /area/ai_monitored/security/armory) -"agV" = ( +"agQ" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"agR" = ( +/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, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 28 + }, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/ai_monitored/security/armory) +"agS" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/machinery/door/poddoor/preopen{ @@ -3282,22 +3343,22 @@ }, /turf/open/floor/plating, /area/crew_quarters/heads/hos) -"agW" = ( +"agT" = ( /obj/structure/table/wood, /obj/machinery/recharger, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"agX" = ( +"agU" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"agY" = ( +"agV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"agZ" = ( +"agW" = ( /obj/machinery/holopad, /obj/structure/chair{ dir = 1 @@ -3305,7 +3366,7 @@ /obj/effect/landmark/start/head_of_security, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"aha" = ( +"agX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /mob/living/simple_animal/hostile/retaliate/bat{ desc = "A fierce companion for any person of power, this spider has been carefully trained by Nanotrasen specialists. Its beady, staring eyes send shivers down your spine."; @@ -3331,7 +3392,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"ahb" = ( +"agY" = ( /obj/structure/table/wood, /obj/item/device/taperecorder{ pixel_x = -4 @@ -3341,18 +3402,18 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"ahc" = ( +"agZ" = ( /turf/open/floor/plasteel, /area/security/range) -"ahd" = ( +"aha" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/maintenance/fore) -"ahe" = ( +"ahb" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/maintenance/fore) -"ahf" = ( +"ahc" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -3360,41 +3421,47 @@ dir = 1 }, /area/crew_quarters/fitness/recreation) -"ahg" = ( +"ahd" = ( /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"ahh" = ( +"ahe" = ( /turf/open/floor/plasteel/neutral/corner{ dir = 2 }, /area/crew_quarters/fitness/recreation) -"ahi" = ( +"ahf" = ( /obj/structure/chair, /turf/open/floor/plasteel/neutral/corner{ dir = 2 }, /area/crew_quarters/fitness/recreation) -"ahj" = ( +"ahg" = ( /obj/structure/chair, /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"ahk" = ( +"ahh" = ( /obj/structure/chair, /turf/open/floor/plasteel/neutral/corner{ dir = 8 }, /area/crew_quarters/fitness/recreation) -"ahl" = ( +"ahi" = ( /turf/open/floor/plasteel/neutral/corner{ dir = 8 }, /area/crew_quarters/fitness/recreation) -"ahm" = ( +"ahj" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/crew_quarters/fitness/recreation) +"ahk" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"ahn" = ( +"ahl" = ( /obj/structure/chair{ dir = 4 }, @@ -3402,20 +3469,20 @@ dir = 4 }, /area/crew_quarters/fitness/recreation) -"aho" = ( +"ahm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ req_access_txt = "0" }, /turf/closed/wall, /area/crew_quarters/fitness/recreation) -"ahp" = ( +"ahn" = ( /turf/closed/wall, /area/maintenance/disposal) -"ahq" = ( +"aho" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/disposal) -"ahr" = ( +"ahp" = ( /obj/structure/chair/stool{ pixel_y = 8 }, @@ -3425,7 +3492,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"ahs" = ( +"ahq" = ( /obj/structure/cable{ icon_state = "1-4" }, @@ -3433,7 +3500,7 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"aht" = ( +"ahr" = ( /obj/structure/cable{ icon_state = "0-8" }, @@ -3449,19 +3516,19 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"ahu" = ( +"ahs" = ( /obj/machinery/suit_storage_unit/security, /turf/open/floor/plasteel/vault{ dir = 1 }, /area/security/brig) -"ahv" = ( +"aht" = ( /obj/structure/tank_dispenser/oxygen, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/security/brig) -"ahw" = ( +"ahu" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -3470,10 +3537,10 @@ dir = 4 }, /area/security/brig) -"ahx" = ( +"ahv" = ( /turf/closed/wall, /area/security/brig) -"ahy" = ( +"ahw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -3485,7 +3552,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/security/brig) -"ahz" = ( +"ahx" = ( /obj/machinery/door/poddoor/preopen{ id = "Prison Gate"; name = "Security Blast Door" @@ -3493,7 +3560,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/security/brig) -"ahA" = ( +"ahy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/poddoor/preopen{ id = "Prison Gate"; @@ -3502,36 +3569,13 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/security/brig) -"ahB" = ( +"ahz" = ( /turf/closed/wall, /area/security/warden) -"ahC" = ( -/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, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 28 - }, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/ai_monitored/security/armory) -"ahD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"ahE" = ( +"ahA" = ( +/turf/closed/wall/r_wall, +/area/security/warden) +"ahB" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -3547,7 +3591,29 @@ dir = 1 }, /area/ai_monitored/security/armory) -"ahF" = ( +"ahC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"ahD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/vault{ + dir = 6 + }, +/area/ai_monitored/security/armory) +"ahE" = ( /obj/machinery/power/apc/highcap/five_k{ dir = 2; name = "Armory APC"; @@ -3566,24 +3632,12 @@ }, /turf/open/floor/plasteel/vault, /area/ai_monitored/security/armory) -"ahG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/vault{ - dir = 6 - }, -/area/ai_monitored/security/armory) -"ahH" = ( +"ahF" = ( /turf/open/floor/plasteel/vault{ dir = 10 }, /area/ai_monitored/security/armory) -"ahI" = ( +"ahG" = ( /obj/structure/rack, /obj/item/shield/riot{ pixel_x = -3; @@ -3604,7 +3658,7 @@ dir = 4 }, /area/ai_monitored/security/armory) -"ahJ" = ( +"ahH" = ( /obj/machinery/disposal/bin, /obj/machinery/firealarm{ dir = 8; @@ -3626,7 +3680,7 @@ }, /turf/open/floor/plasteel/vault, /area/crew_quarters/heads/hos) -"ahK" = ( +"ahI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -3635,7 +3689,7 @@ }, /turf/open/floor/plasteel/vault, /area/crew_quarters/heads/hos) -"ahL" = ( +"ahJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment{ dir = 4 @@ -3645,7 +3699,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"ahM" = ( +"ahK" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -3657,14 +3711,14 @@ }, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"ahN" = ( +"ahL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"ahO" = ( +"ahM" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -3673,43 +3727,56 @@ }, /turf/open/floor/plasteel/vault, /area/crew_quarters/heads/hos) -"ahP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Armory"; - req_access = null; - req_access_txt = "3" +"ahN" = ( +/obj/machinery/photocopier, +/obj/machinery/power/apc{ + dir = 4; + name = "Head of Security's Office APC"; + areastring = "/area/crew_quarters/heads/hos"; + pixel_x = 24 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - icon_state = "1-2" + icon_state = "0-8" }, -/turf/open/floor/plasteel/vault{ - dir = 8 +/obj/machinery/button/door{ + id = "hosprivacy"; + name = "Privacy Shutters Control"; + pixel_x = 26; + pixel_y = -26 }, -/area/ai_monitored/security/armory) -"ahQ" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault, +/area/crew_quarters/heads/hos) +"ahO" = ( /obj/item/clothing/head/festive, /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plating, /area/maintenance/fore) -"ahR" = ( +"ahP" = ( /obj/item/cigbutt, /turf/open/floor/plating, /area/maintenance/fore) -"ahS" = ( +"ahQ" = ( /turf/open/floor/plating{ icon_state = "platingdmg1" }, /area/maintenance/fore) -"ahU" = ( +"ahR" = ( +/obj/structure/table, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fore) +"ahS" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/table, /obj/item/stock_parts/manipulator, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/fore) -"ahV" = ( +"ahT" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -3721,7 +3788,7 @@ dir = 1 }, /area/crew_quarters/fitness/recreation) -"ahW" = ( +"ahU" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -3733,13 +3800,13 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"ahX" = ( +"ahV" = ( /obj/structure/window/reinforced{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"ahY" = ( +"ahW" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -3748,13 +3815,13 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"ahZ" = ( +"ahX" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"aia" = ( +"ahY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -3762,7 +3829,7 @@ dir = 4 }, /area/crew_quarters/fitness/recreation) -"aib" = ( +"ahZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -3772,7 +3839,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"aic" = ( +"aia" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -3782,7 +3849,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"aid" = ( +"aib" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -3794,7 +3861,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"aie" = ( +"aic" = ( /obj/machinery/airalarm{ pixel_y = 24 }, @@ -3803,7 +3870,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"aif" = ( +"aid" = ( /obj/machinery/door/poddoor{ id = "trash"; name = "disposal bay door" @@ -3811,7 +3878,7 @@ /obj/structure/fans/tiny, /turf/open/floor/plating, /area/maintenance/disposal) -"aig" = ( +"aie" = ( /obj/machinery/mass_driver{ dir = 8; id = "trash" @@ -3824,7 +3891,7 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"aih" = ( +"aif" = ( /obj/machinery/conveyor_switch/oneway{ convdir = -1; id = "garbage"; @@ -3832,17 +3899,17 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"aii" = ( +"aig" = ( /obj/structure/easel, /turf/open/floor/plating, /area/maintenance/disposal) -"aij" = ( +"aih" = ( /obj/item/vending_refill/coffee, /turf/open/floor/plating{ icon_state = "platingdmg2" }, /area/maintenance/disposal) -"aik" = ( +"aii" = ( /obj/structure/closet, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 3; @@ -3850,7 +3917,7 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"ail" = ( +"aij" = ( /obj/machinery/power/apc{ dir = 8; name = "Port Bow Solar APC"; @@ -3865,7 +3932,7 @@ icon_state = "panelscorched" }, /area/maintenance/solars/port/fore) -"aim" = ( +"aik" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -3878,7 +3945,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"ain" = ( +"ail" = ( /obj/structure/cable{ icon_state = "0-8" }, @@ -3888,21 +3955,24 @@ /obj/machinery/power/smes, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"aio" = ( +"aim" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/port/fore) +"ain" = ( /turf/closed/wall/r_wall, /area/maintenance/port/fore) -"aip" = ( +"aio" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/port/fore) -"aiq" = ( +"aip" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" }, /turf/open/floor/plating, /area/security/brig) -"air" = ( +"aiq" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -3910,7 +3980,7 @@ dir = 8 }, /area/security/brig) -"ais" = ( +"air" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -3924,7 +3994,7 @@ dir = 8 }, /area/security/brig) -"ait" = ( +"ais" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Security E.V.A. Storage"; @@ -3935,7 +4005,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"aiu" = ( +"ait" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -3947,12 +4017,12 @@ dir = 1 }, /area/security/brig) -"aiv" = ( +"aiu" = ( /turf/open/floor/plasteel/red/side{ dir = 1 }, /area/security/brig) -"aiw" = ( +"aiv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light/small{ dir = 4 @@ -3967,15 +4037,15 @@ dir = 1 }, /area/security/brig) -"aix" = ( +"aiw" = ( /obj/structure/closet{ - name = "Evidence Closet 1" + name = "Evidence Closet 3" }, /turf/open/floor/plasteel/vault{ - dir = 1 + dir = 4 }, /area/security/warden) -"aiy" = ( +"aix" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/machinery/light/small{ dir = 1 @@ -3995,28 +4065,46 @@ dir = 8 }, /area/security/warden) -"aiz" = ( +"aiy" = ( /obj/structure/closet/secure_closet/evidence, /turf/open/floor/plasteel/vault{ dir = 4 }, /area/security/warden) -"aiA" = ( +"aiz" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /turf/open/floor/plating, /area/ai_monitored/security/armory) +"aiA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Armory"; + req_access = null; + req_access_txt = "3" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) "aiB" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, -/area/security/warden) +/area/ai_monitored/security/armory) "aiC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, +/obj/machinery/door/poddoor/shutters{ + id = "armory"; + name = "armory shutters" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, /area/ai_monitored/security/armory) "aiD" = ( /obj/effect/spawner/structure/window/reinforced, @@ -4125,10 +4213,8 @@ /turf/open/floor/plasteel, /area/security/range) "aiN" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) +/turf/open/floor/plating, +/area/maintenance/fore) "aiO" = ( /obj/structure/chair/stool{ pixel_y = 8 @@ -4226,7 +4312,6 @@ }, /obj/machinery/door/poddoor/preopen{ id = "Disposal Exit"; - layer = 3.1; name = "disposal exit vent" }, /turf/open/floor/plating, @@ -4251,16 +4336,23 @@ /turf/open/floor/plating, /area/maintenance/disposal) "aje" = ( -/turf/open/floor/plating, -/area/maintenance/fore) +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/disposal) "ajf" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plating, /area/maintenance/disposal) "ajg" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" +/obj/effect/decal/cleanable/oil, +/obj/machinery/light_switch{ + pixel_x = 25 }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, /area/maintenance/disposal) "ajh" = ( /obj/structure/cable/yellow{ @@ -4274,11 +4366,7 @@ /turf/open/floor/plating, /area/maintenance/solars/port/fore) "aji" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, +/obj/structure/sign/warning/electricshock, /turf/closed/wall, /area/maintenance/solars/port/fore) "ajj" = ( @@ -4299,6 +4387,23 @@ /obj/item/restraints/handcuffs/cable/pink, /turf/open/floor/plating, /area/maintenance/port/fore) +"ajk" = ( +/obj/item/stack/sheet/cardboard, +/obj/structure/light_construct/small{ + dir = 1 + }, +/obj/structure/closet/crate, +/obj/item/coin/silver, +/obj/item/grenade/chem_grenade, +/obj/item/storage/box/lights/mixed, +/obj/item/watertank, +/obj/item/storage/box/donkpockets, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) "ajl" = ( /obj/item/soap/deluxe, /obj/item/storage/secure/safe{ @@ -4356,20 +4461,12 @@ /area/security/warden) "ajr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/security/warden) "ajs" = ( -/obj/machinery/door/poddoor/shutters{ - id = "armory"; - name = "armory shutters" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"ajt" = ( /obj/structure/closet{ name = "Evidence Closet 5" }, @@ -4381,6 +4478,50 @@ dir = 4 }, /area/security/warden) +"ajt" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 28 + }, +/obj/structure/closet/crate/secure/weapon{ + desc = "A secure clothing crate."; + name = "formal uniform crate"; + req_access_txt = "3" + }, +/obj/item/clothing/under/rank/security/navyblue, +/obj/item/clothing/under/rank/security/navyblue, +/obj/item/clothing/under/rank/security/navyblue, +/obj/item/clothing/under/rank/security/navyblue, +/obj/item/clothing/under/rank/security/navyblue, +/obj/item/clothing/under/rank/security/navyblue, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/under/rank/warden/navyblue, +/obj/item/clothing/suit/security/warden, +/obj/item/clothing/under/rank/head_of_security/navyblue, +/obj/item/clothing/suit/security/hos, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navywarden, +/obj/item/clothing/head/beret/sec/navyhos, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/warden) +"aju" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/warden) "ajv" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 @@ -4545,16 +4686,20 @@ /turf/open/floor/plating, /area/maintenance/fore) "ajQ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ +/obj/machinery/light{ dir = 8 }, /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "1-2" }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 }, -/area/security/brig) +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) "ajR" = ( /obj/structure/chair/stool{ pixel_y = 8 @@ -4627,10 +4772,7 @@ }, /area/engine/gravity_generator) "akb" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; +/obj/structure/sign/warning/radiation/rad_area{ pixel_y = 32 }, /obj/effect/turf_decal/bot_white, @@ -4662,17 +4804,9 @@ /turf/open/floor/plating, /area/maintenance/disposal) "akg" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/maintenance/disposal) "akh" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -4770,7 +4904,7 @@ "ako" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating, -/area/maintenance/port) +/area/maintenance/port/fore) "akp" = ( /obj/structure/rack, /obj/item/clothing/gloves/color/yellow, @@ -4810,6 +4944,9 @@ /turf/open/floor/plating, /area/maintenance/port/fore) "akt" = ( +/turf/closed/wall, +/area/maintenance/port/fore) +"aku" = ( /obj/structure/table, /obj/item/clothing/gloves/color/latex, /obj/item/clothing/mask/surgical, @@ -4818,7 +4955,7 @@ dir = 9 }, /area/security/brig) -"aku" = ( +"akv" = ( /obj/structure/table, /obj/item/device/radio/intercom{ freerange = 0; @@ -4841,7 +4978,7 @@ dir = 1 }, /area/security/brig) -"akv" = ( +"akw" = ( /obj/structure/table, /obj/machinery/airalarm{ pixel_y = 28 @@ -4851,7 +4988,7 @@ dir = 1 }, /area/security/brig) -"akw" = ( +"akx" = ( /obj/structure/table, /obj/structure/window/reinforced{ dir = 4 @@ -4865,7 +5002,7 @@ dir = 5 }, /area/security/brig) -"akx" = ( +"aky" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-4" @@ -4874,7 +5011,7 @@ dir = 9 }, /area/security/brig) -"aky" = ( +"akz" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -4882,27 +5019,30 @@ dir = 1 }, /area/security/brig) -"akz" = ( +"akA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/pods{ +/obj/structure/sign/warning/pods{ pixel_x = 32 }, /turf/open/floor/plasteel/red/side{ dir = 5 }, /area/security/brig) -"akA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +"akB" = ( +/obj/structure/closet{ + name = "Evidence Closet 1" }, -/obj/structure/cable/yellow{ - icon_state = "4-8" +/turf/open/floor/plasteel/vault{ + dir = 1 }, +/area/security/warden) +"akC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/security/warden) -"akB" = ( +"akD" = ( /obj/structure/closet{ name = "Evidence Closet 4" }, @@ -4910,7 +5050,7 @@ dir = 4 }, /area/security/warden) -"akC" = ( +"akE" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, @@ -4923,25 +5063,20 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/security/warden) -"akD" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/warden) -"akE" = ( +"akF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/security/warden) -"akF" = ( +"akG" = ( /obj/structure/closet/l3closet/security, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/security/warden) -"akG" = ( +"akH" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -4949,19 +5084,19 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/security/warden) -"akH" = ( +"akI" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/closet/secure_closet/security/sec, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"akI" = ( +"akJ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"akJ" = ( +"akK" = ( /obj/structure/closet/secure_closet/security/sec, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -4969,7 +5104,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"akK" = ( +"akL" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -4979,7 +5114,7 @@ }, /turf/open/floor/plating, /area/security/warden) -"akL" = ( +"akM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -4990,7 +5125,7 @@ dir = 9 }, /area/security/main) -"akM" = ( +"akN" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -5004,7 +5139,7 @@ dir = 1 }, /area/security/main) -"akN" = ( +"akO" = ( /obj/machinery/light{ dir = 1 }, @@ -5024,7 +5159,7 @@ dir = 1 }, /area/security/main) -"akO" = ( +"akP" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -5033,7 +5168,7 @@ dir = 1 }, /area/security/main) -"akP" = ( +"akQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -5044,7 +5179,7 @@ dir = 1 }, /area/security/main) -"akQ" = ( +"akR" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -5058,7 +5193,7 @@ dir = 1 }, /area/security/main) -"akR" = ( +"akS" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -5072,7 +5207,7 @@ dir = 1 }, /area/security/main) -"akS" = ( +"akT" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, @@ -5086,7 +5221,7 @@ dir = 1 }, /area/security/main) -"akT" = ( +"akU" = ( /obj/machinery/light{ dir = 1 }, @@ -5103,7 +5238,7 @@ dir = 1 }, /area/security/main) -"akU" = ( +"akV" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -5117,7 +5252,7 @@ dir = 1 }, /area/security/main) -"akV" = ( +"akW" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -5135,7 +5270,7 @@ dir = 5 }, /area/security/main) -"akW" = ( +"akX" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -5145,7 +5280,7 @@ }, /turf/open/floor/plating, /area/security/range) -"akX" = ( +"akY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -5154,13 +5289,13 @@ dir = 8 }, /area/security/range) -"akY" = ( +"akZ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/security/range) -"akZ" = ( +"ala" = ( /obj/structure/rack, /obj/item/gun/energy/laser/practice{ pixel_x = 2; @@ -5184,39 +5319,39 @@ }, /turf/open/floor/plasteel, /area/security/range) -"ala" = ( +"alb" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating, /area/maintenance/fore) -"alb" = ( +"alc" = ( /turf/open/floor/plating{ icon_state = "panelscorched" }, /area/maintenance/fore) -"alc" = ( +"ald" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/fore) -"ald" = ( +"ale" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/fore) -"ale" = ( +"alf" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 }, /turf/open/floor/plating, /area/maintenance/fore) -"alf" = ( +"alg" = ( /obj/structure/closet/firecloset, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"alg" = ( +"alh" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -5225,7 +5360,7 @@ dir = 8 }, /area/crew_quarters/fitness/recreation) -"alh" = ( +"ali" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -5236,19 +5371,19 @@ dir = 4 }, /area/crew_quarters/fitness/recreation) -"ali" = ( +"alj" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/vault{ dir = 5 }, /area/crew_quarters/fitness/recreation) -"alj" = ( +"alk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/vault{ dir = 5 }, /area/crew_quarters/fitness/recreation) -"alk" = ( +"all" = ( /obj/structure/chair{ dir = 8 }, @@ -5256,7 +5391,7 @@ dir = 1 }, /area/crew_quarters/fitness/recreation) -"all" = ( +"alm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -5264,7 +5399,7 @@ dir = 2 }, /area/crew_quarters/fitness/recreation) -"alm" = ( +"aln" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -5274,7 +5409,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"aln" = ( +"alo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -5284,7 +5419,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"alo" = ( +"alp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -5301,42 +5436,42 @@ /obj/machinery/light/small, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"alp" = ( +"alq" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"alq" = ( -/turf/closed/wall, -/area/maintenance/starboard) "alr" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/maintenance/starboard) +/area/maintenance/starboard/fore) "als" = ( +/turf/closed/wall, +/area/maintenance/starboard/fore) +"alt" = ( /obj/machinery/light{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) -"alt" = ( +"alu" = ( /obj/effect/turf_decal/bot_white, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/engine/gravity_generator) -"alu" = ( +"alv" = ( /obj/machinery/light{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) -"alv" = ( +"alw" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"alw" = ( +"alx" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -5347,17 +5482,17 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"alx" = ( +"aly" = ( /obj/machinery/conveyor{ dir = 2; id = "garbage" }, -/obj/structure/sign/vacuum{ +/obj/structure/sign/warning/vacuum{ pixel_x = -32 }, /turf/open/floor/plating, /area/maintenance/disposal) -"aly" = ( +"alz" = ( /obj/machinery/disposal/deliveryChute{ dir = 4 }, @@ -5382,7 +5517,7 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"alz" = ( +"alA" = ( /obj/machinery/conveyor{ dir = 4; id = "garbage" @@ -5396,7 +5531,7 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"alA" = ( +"alB" = ( /obj/machinery/mineral/stacking_machine{ input_dir = 2 }, @@ -5408,7 +5543,7 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"alB" = ( +"alC" = ( /obj/machinery/mineral/stacking_unit_console{ dir = 2; machinedir = 8; @@ -5422,11 +5557,11 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"alC" = ( +"alD" = ( /obj/structure/grille, /turf/open/floor/plating, -/area/maintenance/port) -"alD" = ( +/area/maintenance/port/fore) +"alE" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -5436,7 +5571,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"alE" = ( +"alF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -5445,7 +5580,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"alF" = ( +"alG" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Secure Storage Room"; req_access_txt = "65" @@ -5455,7 +5590,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"alG" = ( +"alH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -5464,19 +5599,19 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"alH" = ( +"alI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /obj/item/bot_assembly/cleanbot, /turf/open/floor/plating, /area/maintenance/port/fore) -"alI" = ( +"alJ" = ( /obj/item/grown/log, /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/port/fore) -"alJ" = ( +"alK" = ( /obj/structure/light_construct/small{ dir = 4 }, @@ -5488,9 +5623,6 @@ /obj/item/grenade/smokebomb, /turf/open/floor/plating, /area/maintenance/port/fore) -"alK" = ( -/turf/closed/wall, -/area/maintenance/port) "alL" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /turf/open/floor/plasteel/dark, @@ -5547,6 +5679,29 @@ }, /area/security/brig) "alR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alS" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/security/brig) +"alT" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ name = "Evidence Storage"; @@ -5564,15 +5719,18 @@ dir = 8 }, /area/security/warden) -"alS" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/red/corner{ +"alU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/area/security/brig) -"alT" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/warden) +"alV" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -5581,16 +5739,7 @@ dir = 8 }, /area/security/warden) -"alU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/warden) -"alV" = ( +"alW" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -5608,7 +5757,26 @@ dir = 8 }, /area/security/warden) -"alW" = ( +"alX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/warden) +"alY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/warden) +"alZ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -5623,38 +5791,7 @@ }, /turf/open/floor/plasteel, /area/security/warden) -"alX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/door/airlock/security/glass{ - name = "Gear Room"; - req_access_txt = "0"; - req_one_access_txt = "1;4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/warden) -"alY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/main) -"alZ" = ( +"ama" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -5663,7 +5800,7 @@ }, /turf/open/floor/plasteel, /area/security/warden) -"ama" = ( +"amb" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Secure Gear Storage"; @@ -5684,7 +5821,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/security/warden) -"amb" = ( +"amc" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -5696,7 +5833,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"amc" = ( +"amd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -5705,7 +5842,26 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"amd" = ( +"ame" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/door/airlock/security/glass{ + name = "Gear Room"; + req_access_txt = "0"; + req_one_access_txt = "1;4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/warden) +"amf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -5716,58 +5872,45 @@ dir = 8 }, /area/security/main) -"ame" = ( +"amg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/cable/yellow{ icon_state = "2-8" }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"amf" = ( -/obj/machinery/light{ - dir = 8 +/turf/open/floor/plasteel/red/side{ + dir = 9 }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/power/apc/highcap/five_k{ - dir = 8; - name = "Brig Control APC"; - areastring = "/area/security/warden"; - pixel_x = -26 - }, -/obj/structure/cable/yellow, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"amg" = ( +/area/security/main) +"amh" = ( /turf/open/floor/plasteel/red/side{ dir = 1 }, /area/security/main) -"amh" = ( +"ami" = ( +/obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/red, /area/security/main) -"ami" = ( +"amj" = ( /obj/machinery/photocopier{ pixel_y = 3 }, /turf/open/floor/plasteel, /area/security/main) -"amj" = ( +"amk" = ( /obj/structure/chair/comfy/black, /obj/effect/landmark/start/head_of_security, /turf/open/floor/plasteel, /area/security/main) -"amk" = ( +"aml" = ( /obj/machinery/computer/card/minor/hos{ dir = 8 }, /turf/open/floor/plasteel, /area/security/main) -"aml" = ( +"amm" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -5776,7 +5919,7 @@ }, /turf/open/floor/plasteel/red, /area/security/main) -"amm" = ( +"amn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -5787,7 +5930,7 @@ dir = 1 }, /area/security/main) -"amn" = ( +"amo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -5800,7 +5943,7 @@ dir = 5 }, /area/security/main) -"amo" = ( +"amp" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -5818,7 +5961,7 @@ dir = 4 }, /area/security/main) -"amp" = ( +"amq" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Firing Range"; @@ -5836,7 +5979,7 @@ }, /turf/open/floor/plasteel, /area/security/range) -"amq" = ( +"amr" = ( /obj/machinery/firealarm{ dir = 1; pixel_y = -24 @@ -5854,7 +5997,7 @@ dir = 10 }, /area/security/range) -"amr" = ( +"ams" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -5869,7 +6012,7 @@ dir = 8 }, /area/security/range) -"ams" = ( +"amt" = ( /obj/item/target, /obj/item/target, /obj/item/target/alien, @@ -5897,24 +6040,24 @@ }, /turf/open/floor/plasteel, /area/security/range) -"amt" = ( +"amu" = ( /obj/structure/rack, /obj/item/storage/box/lights/mixed, /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/fore) -"amu" = ( +"amv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plating, /area/maintenance/fore) -"amv" = ( +"amw" = ( /obj/structure/closet/emcloset, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"amw" = ( +"amx" = ( /obj/structure/window/reinforced, /obj/machinery/door/window/eastright{ base_state = "left"; @@ -5924,33 +6067,33 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"amx" = ( +"amy" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"amy" = ( +"amz" = ( /obj/structure/window/reinforced, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"amz" = ( +"amA" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"amA" = ( +"amB" = ( /obj/structure/window/reinforced{ dir = 4 }, /obj/structure/window/reinforced, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"amB" = ( +"amC" = ( /turf/open/floor/plasteel/neutral/corner{ dir = 1 }, /area/crew_quarters/fitness/recreation) -"amC" = ( +"amD" = ( /obj/structure/chair{ dir = 4 }, @@ -5959,23 +6102,23 @@ dir = 2 }, /area/crew_quarters/fitness/recreation) -"amD" = ( +"amE" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/crew_quarters/fitness/recreation) -"amE" = ( +"amF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/crew_quarters/fitness/recreation) -"amF" = ( +"amG" = ( /obj/machinery/door/airlock/maintenance{ name = "maintenance access"; req_access_txt = "12" }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"amG" = ( +"amH" = ( /obj/machinery/light/small{ dir = 8 }, @@ -5984,20 +6127,20 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"amH" = ( +"amI" = ( /obj/machinery/door/airlock/external{ req_access_txt = "0"; req_one_access_txt = "13,8" }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"amI" = ( +"amJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) -"amJ" = ( +"amK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -6006,14 +6149,14 @@ dir = 4 }, /area/engine/gravity_generator) -"amK" = ( +"amL" = ( /obj/machinery/gravity_generator/main/station, /obj/effect/turf_decal/bot_white, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/engine/gravity_generator) -"amL" = ( +"amM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -6022,7 +6165,7 @@ dir = 1 }, /area/engine/gravity_generator) -"amM" = ( +"amN" = ( /obj/machinery/camera{ c_tag = "Gravity Generator Room"; dir = 8; @@ -6033,7 +6176,7 @@ }, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) -"amN" = ( +"amO" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -6042,7 +6185,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"amO" = ( +"amP" = ( /obj/machinery/light/small{ dir = 8 }, @@ -6053,14 +6196,14 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"amP" = ( +"amQ" = ( /obj/machinery/conveyor{ dir = 4; id = "garbage" }, /turf/open/floor/plating, /area/maintenance/disposal) -"amQ" = ( +"amR" = ( /obj/machinery/conveyor{ dir = 6; id = "garbage" @@ -6074,7 +6217,7 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"amR" = ( +"amS" = ( /obj/machinery/light/small{ dir = 4 }, @@ -6086,13 +6229,13 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"amS" = ( +"amT" = ( /obj/effect/landmark/xeno_spawn, /obj/item/storage/box/lights/mixed, /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating, /area/maintenance/port/fore) -"amT" = ( +"amU" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -6103,13 +6246,36 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"amU" = ( +"amV" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Port Bow Maintenance APC"; + areastring = "/area/maintenance/port/fore"; + pixel_x = 26 + }, /turf/open/floor/plating{ icon_state = "platingdmg2" }, -/area/maintenance/port) +/area/maintenance/port/fore) "amW" = ( /obj/structure/table/reinforced, +/obj/structure/light_construct/small{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/structure/window/reinforced, +/obj/item/poster/random_official, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"amX" = ( +/obj/structure/table/reinforced, /obj/item/folder, /obj/item/folder, /obj/machinery/door/window/westleft{ @@ -6124,25 +6290,25 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/fore) -"amX" = ( +"amY" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced, /obj/item/stock_parts/cell/crap, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/fore) -"amY" = ( +"amZ" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced, /obj/item/electronics/firealarm, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/fore) -"amZ" = ( +"ana" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, -/area/maintenance/port) -"ana" = ( +/area/maintenance/port/fore) +"anb" = ( /obj/structure/rack, /obj/item/clothing/under/rank/mailman, /obj/item/clothing/under/rank/vice{ @@ -6152,40 +6318,39 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/fore) -"anb" = ( +"anc" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" }, /turf/open/floor/plating, /area/maintenance/port/fore) -"anc" = ( +"and" = ( /obj/machinery/door/airlock/security/glass{ name = "N2O Storage"; req_access_txt = "3" }, /turf/open/floor/plasteel/dark, /area/maintenance/port/fore) -"and" = ( +"ane" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/bodycontainer/morgue, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/dark, /area/security/brig) -"ane" = ( +"anf" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/whitered/side{ dir = 8 }, /area/security/brig) -"anf" = ( +"ang" = ( /obj/structure/bed/roller, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white, /area/security/brig) -"ang" = ( +"anh" = ( /obj/machinery/door/window/westleft{ base_state = "right"; dir = 4; @@ -6197,13 +6362,13 @@ dir = 4 }, /area/security/brig) -"anh" = ( +"ani" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/red/corner{ dir = 1 }, /area/security/brig) -"ani" = ( +"anj" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -6212,7 +6377,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"anj" = ( +"ank" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light{ dir = 4 @@ -6227,7 +6392,7 @@ dir = 4 }, /area/security/brig) -"ank" = ( +"anl" = ( /obj/structure/table, /obj/item/storage/box/evidence, /obj/item/storage/box/evidence, @@ -6237,11 +6402,11 @@ dir = 6 }, /area/security/warden) -"anl" = ( +"anm" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/vault, /area/security/warden) -"anm" = ( +"ann" = ( /obj/structure/filingcabinet/security{ pixel_x = 4 }, @@ -6249,7 +6414,7 @@ dir = 10 }, /area/security/warden) -"ann" = ( +"ano" = ( /obj/structure/rack, /obj/item/storage/box/chemimp{ pixel_x = 4; @@ -6266,7 +6431,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/security/warden) -"ano" = ( +"anp" = ( /obj/structure/rack, /obj/item/storage/box/handcuffs, /obj/item/storage/box/flashbangs{ @@ -6276,7 +6441,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/security/warden) -"anp" = ( +"anq" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -6285,7 +6450,7 @@ }, /turf/open/floor/plasteel, /area/security/warden) -"anq" = ( +"anr" = ( /obj/structure/rack, /obj/item/storage/box/firingpins{ pixel_x = 3; @@ -6295,25 +6460,25 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/security/warden) -"anr" = ( +"ans" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /turf/open/floor/plating, /area/security/warden) -"ans" = ( +"ant" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"ant" = ( +"anu" = ( /obj/structure/table, /obj/machinery/recharger{ pixel_y = 4 }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"anu" = ( +"anv" = ( /obj/machinery/vending/security, /obj/machinery/firealarm{ dir = 4; @@ -6321,7 +6486,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"anv" = ( +"anw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/camera{ c_tag = "Security - Office - Port"; @@ -6332,14 +6497,30 @@ dir = 8 }, /area/security/main) -"anw" = ( +"anx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/main) +"any" = ( /obj/structure/table, /obj/machinery/recharger{ pixel_y = 4 }, /turf/open/floor/plasteel, /area/security/main) -"anx" = ( +"anz" = ( +/turf/open/floor/plasteel/red, +/area/security/main) +"anA" = ( /obj/structure/table/reinforced, /obj/item/folder/red{ pixel_x = 3 @@ -6350,17 +6531,28 @@ }, /turf/open/floor/plasteel, /area/security/main) -"any" = ( +"anB" = ( /obj/structure/table/reinforced, /obj/item/paper, /turf/open/floor/plasteel, /area/security/main) -"anA" = ( +"anC" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/device/taperecorder{ + pixel_x = -4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"anD" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/red, /area/security/main) -"anB" = ( +"anE" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -6368,7 +6560,17 @@ }, /turf/open/floor/plasteel, /area/security/main) -"anC" = ( +"anF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/main) +"anG" = ( /obj/machinery/power/apc/highcap/five_k{ dir = 4; name = "Security Office APC"; @@ -6380,7 +6582,7 @@ dir = 4 }, /area/security/main) -"anD" = ( +"anH" = ( /obj/machinery/door/airlock/maintenance{ name = "Security Maintenance"; req_access_txt = "0"; @@ -6393,7 +6595,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/fore) -"anE" = ( +"anI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; @@ -6401,7 +6603,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"anF" = ( +"anJ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -6413,11 +6615,17 @@ dir = 8 }, /area/crew_quarters/fitness/recreation) -"anG" = ( +"anK" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"anH" = ( +"anL" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/crew_quarters/fitness/recreation) +"anM" = ( /obj/structure/chair{ dir = 1 }, @@ -6426,13 +6634,13 @@ dir = 4 }, /area/crew_quarters/fitness/recreation) -"anI" = ( +"anN" = ( /obj/structure/chair{ dir = 1 }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"anJ" = ( +"anO" = ( /obj/structure/chair{ dir = 1 }, @@ -6443,7 +6651,7 @@ dir = 1 }, /area/crew_quarters/fitness/recreation) -"anK" = ( +"anP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -6451,51 +6659,51 @@ dir = 1 }, /area/crew_quarters/fitness/recreation) -"anL" = ( +"anQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"anM" = ( +"anR" = ( /obj/machinery/space_heater, /turf/open/floor/plating, -/area/maintenance/starboard) -"anN" = ( +/area/maintenance/starboard/fore) +"anS" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"anO" = ( +"anT" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) -"anP" = ( +"anU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) -"anQ" = ( +"anV" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) -"anR" = ( +"anW" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) -"anS" = ( +"anX" = ( /turf/open/floor/plating/airless, /area/space/nearstation) -"anT" = ( +"anY" = ( /obj/structure/lattice, /obj/structure/grille, /turf/open/space, /area/space/nearstation) -"anU" = ( +"anZ" = ( /obj/structure/disposalpipe/trunk{ dir = 4 }, @@ -6511,7 +6719,7 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"anV" = ( +"aoa" = ( /obj/machinery/conveyor{ dir = 8; id = "garbage" @@ -6521,7 +6729,7 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"anW" = ( +"aob" = ( /obj/machinery/conveyor{ dir = 8; id = "garbage" @@ -6529,7 +6737,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plating, /area/maintenance/disposal) -"anX" = ( +"aoc" = ( /obj/machinery/conveyor{ dir = 8; id = "garbage" @@ -6537,7 +6745,7 @@ /obj/machinery/recycler, /turf/open/floor/plating, /area/maintenance/disposal) -"anY" = ( +"aod" = ( /obj/machinery/door/window/eastright{ dir = 4; name = "Danger: Conveyor Access"; @@ -6549,49 +6757,60 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"anZ" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/light_switch{ - pixel_x = 25 +"aoe" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Disposal APC"; + areastring = "/area/maintenance/disposal"; + pixel_y = -24 }, -/obj/machinery/light/small{ - dir = 4 +/obj/structure/cable/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, /turf/open/floor/plating, /area/maintenance/disposal) -"aoa" = ( +"aof" = ( /turf/open/floor/plating{ icon_state = "panelscorched" }, -/area/maintenance/port) -"aob" = ( +/area/maintenance/port/fore) +"aog" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, /turf/open/floor/plating, -/area/maintenance/port) -"aoc" = ( +/area/maintenance/port/fore) +"aoh" = ( +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aoi" = ( /obj/structure/chair{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aod" = ( +"aoj" = ( /obj/structure/chair{ dir = 8 }, /turf/open/floor/plating, -/area/maintenance/port) -"aoe" = ( +/area/maintenance/port/fore) +"aok" = ( /obj/machinery/space_heater, /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating, -/area/maintenance/port) -"aof" = ( +/area/maintenance/port/fore) +"aol" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, -/area/maintenance/port) -"aog" = ( +/area/maintenance/port/fore) +"aom" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -6599,13 +6818,13 @@ icon_state = "panelscorched" }, /area/maintenance/port/fore) -"aoh" = ( +"aon" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aoi" = ( +"aoo" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -6613,7 +6832,7 @@ /obj/item/tank/internals/air, /turf/open/floor/plating, /area/maintenance/port/fore) -"aoj" = ( +"aop" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -6625,7 +6844,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aok" = ( +"aoq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -6640,7 +6859,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aol" = ( +"aor" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -6655,7 +6874,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aom" = ( +"aos" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -6672,7 +6891,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aon" = ( +"aot" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -6684,7 +6903,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aoo" = ( +"aou" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -6699,7 +6918,7 @@ dir = 10 }, /area/security/brig) -"aop" = ( +"aov" = ( /obj/structure/bed, /obj/item/bedsheet, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6714,7 +6933,7 @@ /obj/machinery/iv_drip, /turf/open/floor/plasteel/whitered/side, /area/security/brig) -"aoq" = ( +"aow" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -6744,7 +6963,7 @@ dir = 6 }, /area/security/brig) -"aor" = ( +"aox" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, @@ -6758,7 +6977,7 @@ dir = 1 }, /area/security/brig) -"aos" = ( +"aoy" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -6770,7 +6989,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"aot" = ( +"aoz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/firealarm{ dir = 4; @@ -6780,7 +6999,7 @@ dir = 4 }, /area/security/brig) -"aou" = ( +"aoA" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/airlock/security{ @@ -6792,7 +7011,14 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/security/warden) -"aow" = ( +"aoB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/warden) +"aoC" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -6810,22 +7036,40 @@ }, /turf/open/floor/plasteel, /area/security/warden) -"aox" = ( -/obj/structure/grille, -/turf/open/floor/plating{ - icon_state = "platingdmg1" +"aoD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" }, -/area/maintenance/port/fore) -"aoy" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 28 +/turf/open/floor/plating, +/area/security/warden) +"aoE" = ( +/obj/machinery/light{ + dir = 8 }, -/obj/structure/closet/secure_closet/warden, -/obj/item/gun/energy/laser, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/power/apc/highcap/five_k{ + dir = 8; + name = "Brig Control APC"; + areastring = "/area/security/warden"; + pixel_x = -26 + }, +/obj/structure/cable/yellow, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"aoz" = ( +"aoF" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aoG" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -6833,50 +7077,43 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"aoA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/warden) -"aoB" = ( +"aoH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/red/side{ dir = 8 }, /area/security/main) -"aoC" = ( +"aoI" = ( /obj/structure/table, /obj/item/restraints/handcuffs, /obj/item/device/radio/off, /turf/open/floor/plasteel, /area/security/main) -"aoD" = ( +"aoJ" = ( /obj/effect/landmark/start/security_officer, /turf/open/floor/plasteel/red, /area/security/main) -"aoE" = ( +"aoK" = ( /obj/machinery/holopad, /obj/structure/disposalpipe/segment{ dir = 6 }, /turf/open/floor/plasteel/red, /area/security/main) -"aoF" = ( +"aoL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plasteel/red, /area/security/main) -"aoG" = ( +"aoM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment{ dir = 9 }, /turf/open/floor/plasteel/red, /area/security/main) -"aoH" = ( +"aoN" = ( /obj/structure/table, /obj/item/folder/red, /obj/item/book/manual/wiki/security_space_law{ @@ -6886,12 +7123,12 @@ /obj/item/clothing/mask/gas/sechailer, /turf/open/floor/plasteel, /area/security/main) -"aoI" = ( +"aoO" = ( /turf/open/floor/plasteel/red/side{ dir = 4 }, /area/security/main) -"aoJ" = ( +"aoP" = ( /obj/machinery/door/window/eastright{ base_state = "left"; dir = 8; @@ -6902,7 +7139,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/security/main) -"aoK" = ( +"aoQ" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; dir = 8; @@ -6915,7 +7152,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/security/main) -"aoL" = ( +"aoR" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -6930,7 +7167,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aoM" = ( +"aoS" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -6942,7 +7179,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aoN" = ( +"aoT" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -6956,29 +7193,47 @@ icon_state = "platingdmg2" }, /area/maintenance/fore) -"aoO" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Disposal APC"; - areastring = "/area/maintenance/disposal"; - pixel_y = -24 - }, -/obj/structure/cable/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aoP" = ( +"aoU" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, /turf/open/floor/plating, /area/maintenance/fore) -"aoQ" = ( +"aoV" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aoW" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/fore) +"aoX" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -6990,7 +7245,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aoR" = ( +"aoY" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -7001,7 +7256,16 @@ icon_state = "platingdmg2" }, /area/maintenance/fore) -"aoS" = ( +"aoZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"apa" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "0"; req_one_access_txt = "1;4;38;12" @@ -7014,7 +7278,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aoT" = ( +"apb" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -7028,7 +7292,7 @@ dir = 8 }, /area/crew_quarters/fitness/recreation) -"aoU" = ( +"apc" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -7039,7 +7303,7 @@ dir = 8 }, /area/crew_quarters/fitness/recreation) -"aoV" = ( +"apd" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -7050,7 +7314,7 @@ dir = 8 }, /area/crew_quarters/fitness/recreation) -"aoW" = ( +"ape" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -7061,7 +7325,7 @@ dir = 8 }, /area/crew_quarters/fitness/recreation) -"aoX" = ( +"apf" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -7074,7 +7338,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"aoY" = ( +"apg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -7083,7 +7347,7 @@ dir = 2 }, /area/crew_quarters/fitness/recreation) -"aoZ" = ( +"aph" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -7091,7 +7355,7 @@ dir = 2 }, /area/crew_quarters/fitness/recreation) -"apa" = ( +"api" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -7099,14 +7363,14 @@ dir = 2 }, /area/crew_quarters/fitness/recreation) -"apb" = ( +"apj" = ( /obj/structure/grille, /turf/open/floor/plating, -/area/maintenance/starboard) -"apc" = ( +/area/maintenance/starboard/fore) +"apk" = ( /turf/open/floor/plating, -/area/maintenance/starboard) -"apd" = ( +/area/maintenance/starboard/fore) +"apl" = ( /obj/structure/table, /obj/item/tank/internals/emergency_oxygen{ pixel_x = -8 @@ -7121,16 +7385,12 @@ pixel_x = 4 }, /obj/effect/decal/cleanable/cobweb, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"ape" = ( +"apm" = ( /obj/structure/rack, /obj/item/storage/belt{ desc = "Can hold quite a lot of stuff."; @@ -7145,12 +7405,13 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"apf" = ( +"apn" = ( +/obj/structure/easel, /turf/open/floor/plating{ icon_state = "platingdmg3" }, -/area/maintenance/starboard) -"apg" = ( +/area/maintenance/starboard/fore) +"apo" = ( /obj/structure/closet, /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/item/reagent_containers/food/drinks/beer{ @@ -7160,14 +7421,14 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aph" = ( +"app" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ icon_state = "0-4" }, /turf/open/floor/plating, /area/engine/gravity_generator) -"api" = ( +"apq" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ @@ -7178,14 +7439,14 @@ }, /turf/open/floor/plating, /area/engine/gravity_generator) -"apj" = ( +"apr" = ( /obj/machinery/door/airlock/command/glass{ name = "Gravity Generator Area"; req_access_txt = "19; 61" }, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) -"apk" = ( +"aps" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ @@ -7193,7 +7454,7 @@ }, /turf/open/floor/plating, /area/engine/gravity_generator) -"apl" = ( +"apt" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ icon_state = "0-2" @@ -7203,10 +7464,10 @@ }, /turf/open/floor/plating, /area/engine/gravity_generator) -"apm" = ( +"apu" = ( /turf/closed/wall, /area/maintenance/solars/starboard/fore) -"apn" = ( +"apv" = ( /obj/machinery/power/solar_control{ id = "forestarboard"; name = "Starboard Bow Solar Control"; @@ -7217,7 +7478,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"apo" = ( +"apw" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -7229,22 +7490,18 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"app" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +"apx" = ( +/obj/structure/sign/warning/vacuum/external{ pixel_x = 32 }, /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"apq" = ( +"apy" = ( /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating/airless, /area/space/nearstation) -"apr" = ( +"apz" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=1"; freq = 1400; @@ -7265,7 +7522,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/disposal) -"aps" = ( +"apA" = ( /obj/machinery/door/airlock/maintenance{ name = "Disposal Conveyor Access"; req_access_txt = "12" @@ -7273,13 +7530,13 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/disposal) -"apt" = ( -/obj/structure/sign/securearea{ +"apB" = ( +/obj/structure/sign/warning/securearea{ name = "\improper STAY CLEAR HEAVY MACHINERY" }, /turf/closed/wall, /area/maintenance/disposal) -"apu" = ( +"apC" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, @@ -7289,7 +7546,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/port/fore) -"apv" = ( +"apD" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; req_access_txt = "12" @@ -7299,26 +7556,19 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"apw" = ( +"apE" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/port/fore) -"apx" = ( -/obj/structure/rack, -/obj/item/circuitboard/computer/secure_data{ - pixel_x = -2; - pixel_y = 2 +"apF" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" }, -/obj/item/circuitboard/computer/security{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"apy" = ( +/area/maintenance/port/fore) +"apG" = ( /obj/structure/light_construct/small{ dir = 4 }, @@ -7327,22 +7577,15 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"apz" = ( +"apH" = ( /obj/item/cigbutt, /turf/open/floor/plating, -/area/maintenance/port) -"apA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/kiddieplaque/library{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"apB" = ( +/area/maintenance/port/fore) +"apI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"apJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -7354,7 +7597,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"apC" = ( +"apK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -7366,7 +7609,13 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"apD" = ( +"apL" = ( +/obj/structure/grille, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"apM" = ( /obj/item/storage/box/lights/mixed, /obj/item/device/flashlight{ pixel_x = 1; @@ -7377,7 +7626,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"apE" = ( +"apN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/extinguisher_cabinet{ pixel_x = -27 @@ -7386,27 +7635,20 @@ dir = 1 }, /area/security/brig) -"apF" = ( +"apO" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/security/brig) -"apG" = ( +"apP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/corner{ dir = 4 }, /area/security/brig) -"apH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/warden) -"apI" = ( +"apQ" = ( /obj/machinery/computer/prisoner{ dir = 4 }, @@ -7418,14 +7660,14 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"apJ" = ( +"apR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "2-8" }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"apK" = ( +"apS" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -7434,7 +7676,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"apL" = ( +"apT" = ( /obj/machinery/requests_console{ department = "Security"; departmentType = 5; @@ -7462,7 +7704,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"apM" = ( +"apU" = ( /obj/structure/table, /obj/machinery/recharger, /obj/machinery/airalarm{ @@ -7470,19 +7712,32 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"apN" = ( +"apV" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"apO" = ( +"apW" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 28 + }, +/obj/structure/closet/secure_closet/warden, +/obj/item/gun/energy/laser, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"apX" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"apY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"apQ" = ( +"apZ" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = 32 }, @@ -7494,7 +7749,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"apR" = ( +"aqa" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/reagent_dispensers/peppertank{ pixel_x = -32 @@ -7506,43 +7761,64 @@ dir = 8 }, /area/security/main) -"apS" = ( +"aqb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/main) +"aqc" = ( /obj/structure/table, /obj/item/folder/red, /obj/item/storage/fancy/cigarettes, /obj/item/clothing/mask/gas/sechailer, /turf/open/floor/plasteel, /area/security/main) -"apT" = ( +"aqd" = ( /obj/structure/table, /obj/item/folder/red, /obj/item/restraints/handcuffs, /turf/open/floor/plasteel, /area/security/main) -"apU" = ( +"aqe" = ( /obj/structure/table, /obj/item/folder/red, /obj/item/storage/secure/briefcase, /turf/open/floor/plasteel, /area/security/main) -"apV" = ( +"aqf" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/red, /area/security/main) -"apW" = ( +"aqg" = ( /obj/structure/table, /obj/item/folder/red, /obj/item/device/assembly/flash/handheld, /turf/open/floor/plasteel, /area/security/main) -"apY" = ( +"aqh" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/syndicatebomb/training, +/turf/open/floor/plasteel, +/area/security/main) +"aqi" = ( /obj/structure/table, /obj/item/folder/red, /obj/item/pen, /obj/item/storage/box/donkpockets, /turf/open/floor/plasteel, /area/security/main) -"apZ" = ( +"aqj" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -7556,10 +7832,10 @@ dir = 4 }, /area/security/main) -"aqa" = ( +"aqk" = ( /turf/closed/wall/r_wall, /area/security/main) -"aqb" = ( +"aql" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -7567,11 +7843,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/fore) -"aqc" = ( +"aqm" = ( /obj/structure/closet/lasertag/red, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"aqd" = ( +"aqn" = ( /obj/structure/rack, /obj/item/clothing/under/color/red, /obj/item/clothing/ears/earmuffs, @@ -7579,11 +7855,22 @@ /obj/item/clothing/head/soft/red, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"aqf" = ( +"aqo" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/blue, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/neck/tie/blue, +/obj/item/clothing/head/soft/blue, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault, +/area/crew_quarters/fitness/recreation) +"aqp" = ( /obj/structure/closet/lasertag/blue, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"aqg" = ( +"aqq" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -7591,7 +7878,7 @@ dir = 8 }, /area/crew_quarters/fitness/recreation) -"aqh" = ( +"aqr" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -7601,7 +7888,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"aqi" = ( +"aqs" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment{ dir = 4 @@ -7610,7 +7897,7 @@ dir = 2 }, /area/crew_quarters/fitness/recreation) -"aqj" = ( +"aqt" = ( /obj/machinery/disposal/bin, /obj/machinery/light_switch{ pixel_y = -26 @@ -7624,7 +7911,7 @@ }, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"aqk" = ( +"aqu" = ( /obj/machinery/vending/coffee, /obj/item/device/radio/intercom{ freerange = 0; @@ -7634,46 +7921,49 @@ }, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"aql" = ( +"aqv" = ( /obj/machinery/light, /obj/machinery/vending/cola/random, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"aqm" = ( +"aqw" = ( /obj/machinery/vending/cigarette, /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"aqn" = ( +"aqx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/closed/wall, /area/crew_quarters/fitness/recreation) -"aqo" = ( +"aqy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall, /area/crew_quarters/fitness/recreation) -"aqp" = ( +"aqz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, /turf/closed/wall, /area/crew_quarters/fitness/recreation) -"aqq" = ( +"aqA" = ( /obj/item/cigbutt, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, /turf/open/floor/plating, -/area/maintenance/starboard) -"aqr" = ( +/area/maintenance/starboard/fore) +"aqB" = ( /turf/open/floor/plating{ icon_state = "platingdmg2" }, -/area/maintenance/starboard) -"aqs" = ( +/area/maintenance/starboard/fore) +"aqC" = ( /obj/item/device/mmi{ name = "man-machine interface" }, @@ -7681,7 +7971,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aqt" = ( +"aqD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -7700,7 +7990,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"aqu" = ( +"aqE" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -7715,7 +8005,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"aqv" = ( +"aqF" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -7727,7 +8017,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"aqw" = ( +"aqG" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -7739,7 +8029,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"aqx" = ( +"aqH" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -7752,7 +8042,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"aqy" = ( +"aqI" = ( /obj/structure/chair/stool{ pixel_y = 8 }, @@ -7762,7 +8052,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"aqz" = ( +"aqJ" = ( /obj/structure/cable{ icon_state = "1-4" }, @@ -7770,7 +8060,7 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"aqA" = ( +"aqK" = ( /obj/structure/cable{ icon_state = "0-8" }, @@ -7786,29 +8076,25 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"aqB" = ( +"aqL" = ( /obj/structure/lattice, /obj/structure/grille/broken, /turf/open/space, /area/space/nearstation) -"aqC" = ( +"aqM" = ( /obj/machinery/space_heater, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqD" = ( +"aqN" = ( /obj/machinery/space_heater, /turf/open/floor/plating{ icon_state = "platingdmg2" }, /area/maintenance/port/fore) -"aqE" = ( +"aqO" = ( /obj/machinery/door/poddoor/shutters{ id = "supplybridge" }, @@ -7817,7 +8103,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqF" = ( +"aqP" = ( /obj/machinery/door/poddoor/shutters{ id = "supplybridge" }, @@ -7826,7 +8112,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqG" = ( +"aqQ" = ( /obj/machinery/door/poddoor/shutters{ id = "supplybridge" }, @@ -7835,20 +8121,16 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqH" = ( +"aqR" = ( /obj/machinery/space_heater, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /turf/open/floor/plating{ icon_state = "platingdmg1" }, /area/maintenance/port/fore) -"aqI" = ( +"aqS" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light/small{ dir = 8 @@ -7858,31 +8140,34 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqJ" = ( +"aqT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqK" = ( +"aqU" = ( /obj/structure/reagent_dispensers/fueltank, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, /turf/open/floor/plating, -/area/maintenance/port) -"aqL" = ( +/area/maintenance/port/fore) +"aqV" = ( /obj/structure/rack, /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/item/storage/toolbox/emergency, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqM" = ( +"aqW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqN" = ( +"aqX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -7892,22 +8177,22 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqO" = ( +"aqY" = ( /obj/machinery/space_heater, /turf/open/floor/plating, -/area/maintenance/port) -"aqP" = ( +/area/maintenance/port/fore) +"aqZ" = ( /obj/structure/light_construct/small, /obj/item/bot_assembly/floorbot{ build_step = 1 }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqQ" = ( +"ara" = ( /obj/item/vending_refill/cigarette, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqR" = ( +"arb" = ( /obj/structure/chair{ dir = 8 }, @@ -7915,17 +8200,17 @@ icon_state = "panelscorched" }, /area/maintenance/port/fore) -"aqS" = ( +"arc" = ( /obj/structure/closet/crate, /obj/item/clothing/gloves/color/fyellow, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqT" = ( +"ard" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqU" = ( +"are" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -7938,12 +8223,16 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqV" = ( +"arf" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"arg" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/extinguisher, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqW" = ( +"arh" = ( /obj/structure/closet/crate, /obj/item/restraints/handcuffs, /obj/item/bodybag, @@ -7954,7 +8243,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqX" = ( +"ari" = ( /obj/structure/chair, /obj/item/restraints/handcuffs, /obj/effect/decal/remains/human, @@ -7962,18 +8251,25 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqY" = ( +"arj" = ( /obj/machinery/computer/security{ name = "Labor Camp Monitoring"; network = list("Labor") }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aqZ" = ( +"ark" = ( /obj/machinery/computer/shuttle/labor, /turf/open/floor/plasteel/dark, /area/security/brig) -"ara" = ( +"arl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/brig) +"arm" = ( /obj/machinery/computer/secure_data{ dir = 4 }, @@ -7986,7 +8282,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"arb" = ( +"arn" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -7998,7 +8294,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"arc" = ( +"aro" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -8010,20 +8306,27 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"ard" = ( +"arp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"arq" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"are" = ( +"arr" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"arf" = ( +"ars" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -8036,7 +8339,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"arg" = ( +"art" = ( /obj/structure/chair/office/dark{ dir = 4 }, @@ -8046,7 +8349,29 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"ari" = ( +"aru" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Outer Window"; + req_access_txt = "0" + }, +/obj/machinery/door/window/brigdoor{ + dir = 8; + name = "Brig Control Desk"; + req_access_txt = "3" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/poster/random_official, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"arv" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ @@ -8054,16 +8379,16 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"arj" = ( +"arw" = ( /obj/structure/closet/secure_closet/security/sec, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"ark" = ( +"arx" = ( /obj/machinery/newscaster/security_unit, /turf/closed/wall, /area/security/warden) -"arl" = ( +"ary" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -8072,7 +8397,7 @@ dir = 8 }, /area/security/main) -"arm" = ( +"arz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -8084,7 +8409,7 @@ dir = 10 }, /area/security/main) -"arn" = ( +"arA" = ( /obj/structure/chair{ dir = 1 }, @@ -8097,7 +8422,7 @@ /obj/effect/landmark/start/security_officer, /turf/open/floor/plasteel/red/side, /area/security/main) -"aro" = ( +"arB" = ( /obj/structure/chair{ dir = 1 }, @@ -8110,7 +8435,7 @@ /obj/effect/landmark/start/security_officer, /turf/open/floor/plasteel/red/side, /area/security/main) -"arp" = ( +"arC" = ( /obj/structure/chair{ dir = 1 }, @@ -8120,14 +8445,14 @@ /obj/effect/landmark/start/security_officer, /turf/open/floor/plasteel/red/side, /area/security/main) -"arq" = ( +"arD" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/red, /area/security/main) -"arr" = ( +"arE" = ( /obj/structure/chair{ dir = 1 }, @@ -8137,7 +8462,7 @@ /obj/effect/landmark/start/security_officer, /turf/open/floor/plasteel/red/side, /area/security/main) -"ars" = ( +"arF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -8146,7 +8471,7 @@ dir = 6 }, /area/security/main) -"art" = ( +"arG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -8154,7 +8479,7 @@ dir = 4 }, /area/security/main) -"aru" = ( +"arH" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ name = "Interrogation Monitoring"; @@ -8164,16 +8489,16 @@ }, /turf/open/floor/plasteel/grimy, /area/security/main) -"arv" = ( +"arI" = ( /turf/open/floor/plasteel/grimy, /area/security/main) -"arw" = ( +"arJ" = ( /obj/machinery/light/small{ dir = 1 }, /turf/open/floor/plasteel/grimy, /area/security/main) -"arx" = ( +"arK" = ( /obj/item/phone{ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; pixel_x = -3; @@ -8190,25 +8515,25 @@ }, /turf/open/floor/plasteel/grimy, /area/security/main) -"ary" = ( +"arL" = ( /obj/structure/rack, /obj/item/clothing/suit/hazardvest, /turf/open/floor/plating, /area/maintenance/fore) -"arz" = ( +"arM" = ( /obj/machinery/space_heater, /turf/open/floor/plating{ icon_state = "platingdmg1" }, /area/maintenance/fore) -"arA" = ( +"arN" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/maintenance/fore) -"arB" = ( +"arO" = ( /turf/closed/wall, /area/crew_quarters/dorms) -"arC" = ( +"arP" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Recreation Area"; @@ -8219,7 +8544,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"arD" = ( +"arQ" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -8227,7 +8552,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/crew_quarters/dorms) -"arE" = ( +"arR" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Recreation Area"; @@ -8238,7 +8563,20 @@ dir = 4 }, /area/crew_quarters/dorms) -"arG" = ( +"arS" = ( +/obj/structure/closet, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"arT" = ( /obj/structure/closet, /obj/item/storage/box/lights/mixed, /obj/effect/spawner/lootdrop/maintenance{ @@ -8249,37 +8587,37 @@ icon_state = "platingdmg3" }, /area/maintenance/starboard/fore) -"arH" = ( +"arU" = ( /obj/structure/rack, /obj/item/extinguisher, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"arI" = ( +"arV" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/costume, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"arJ" = ( +"arW" = ( /obj/structure/rack, /obj/item/clothing/suit/poncho, /obj/item/clothing/head/sombrero, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"arK" = ( +"arX" = ( /obj/effect/landmark/blobstart, /turf/open/floor/plating{ icon_state = "panelscorched" }, /area/maintenance/starboard/fore) -"arL" = ( +"arY" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"arM" = ( +"arZ" = ( /obj/structure/rack, /obj/item/book/manual/wiki/engineering_guide{ pixel_x = 3; @@ -8289,13 +8627,13 @@ /obj/item/storage/box/lights/mixed, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"arN" = ( +"asa" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"arO" = ( +"asb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -8305,7 +8643,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"arP" = ( +"asc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -8317,7 +8655,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"arQ" = ( +"asd" = ( /obj/machinery/airalarm{ dir = 1; pixel_y = -22 @@ -8331,7 +8669,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"arR" = ( +"ase" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -8341,7 +8679,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"arS" = ( +"asf" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 28 @@ -8355,7 +8693,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"arT" = ( +"asg" = ( /obj/machinery/power/apc{ dir = 8; name = "Starboard Bow Solar APC"; @@ -8370,7 +8708,7 @@ icon_state = "platingdmg1" }, /area/maintenance/solars/starboard/fore) -"arU" = ( +"ash" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -8383,14 +8721,14 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"arV" = ( +"asi" = ( /obj/structure/cable/yellow{ icon_state = "0-8" }, /obj/machinery/power/smes, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"arW" = ( +"asj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -8403,7 +8741,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"arX" = ( +"ask" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -8416,7 +8754,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"arY" = ( +"asl" = ( /obj/machinery/door/airlock/public/glass{ name = "space-bridge access" }, @@ -8434,7 +8772,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"arZ" = ( +"asm" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -8443,13 +8781,13 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"asa" = ( +"asn" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plating, -/area/maintenance/port) -"asb" = ( +/area/maintenance/port/fore) +"aso" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -8458,7 +8796,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"asc" = ( +"asp" = ( /obj/machinery/door/airlock/public/glass{ name = "space-bridge access" }, @@ -8476,7 +8814,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"asd" = ( +"asq" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -8490,7 +8828,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"ase" = ( +"asr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -8502,7 +8840,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"asf" = ( +"ass" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Cargo Bay Bridge Access"; req_access_txt = "0"; @@ -8516,7 +8854,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"asg" = ( +"ast" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -8529,7 +8867,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"ash" = ( +"asu" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -8538,21 +8876,21 @@ icon_state = "platingdmg3" }, /area/maintenance/port/fore) -"asi" = ( +"asv" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/fore) -"asj" = ( +"asw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/port/fore) -"ask" = ( +"asx" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -8563,7 +8901,7 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plating, /area/maintenance/port/fore) -"asl" = ( +"asy" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; req_access_txt = "12" @@ -8571,7 +8909,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port/fore) -"asm" = ( +"asz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/maintenance{ name = "Brig Maintenance"; @@ -8584,7 +8922,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"asn" = ( +"asA" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -8604,13 +8942,13 @@ /obj/item/pen, /turf/open/floor/plasteel/dark, /area/security/brig) -"aso" = ( +"asB" = ( /obj/structure/chair/office/dark{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/security/brig) -"asp" = ( +"asC" = ( /obj/machinery/computer/security{ dir = 4 }, @@ -8622,7 +8960,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asq" = ( +"asD" = ( /obj/effect/landmark/start/warden, /obj/structure/chair/office/dark, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -8637,7 +8975,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asr" = ( +"asE" = ( /obj/machinery/computer/crew{ dir = 8 }, @@ -8646,7 +8984,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"ass" = ( +"asF" = ( /obj/machinery/newscaster/security_unit{ pixel_y = -30 }, @@ -8659,7 +8997,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"ast" = ( +"asG" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -8671,7 +9009,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asu" = ( +"asH" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "2-4" @@ -8681,7 +9019,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asv" = ( +"asI" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -8696,7 +9034,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asw" = ( +"asJ" = ( /obj/structure/table, /obj/machinery/button/door{ id = "Prison Gate"; @@ -8731,7 +9069,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asx" = ( +"asK" = ( /obj/structure/table, /obj/machinery/recharger{ pixel_y = 4 @@ -8745,14 +9083,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asy" = ( -/obj/vehicle/ridden/secway, -/obj/item/key/security, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/main) -"asz" = ( +"asL" = ( /obj/structure/table, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -8781,7 +9112,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asA" = ( +"asM" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -8791,13 +9122,14 @@ }, /turf/open/floor/plating, /area/security/warden) -"asB" = ( -/obj/machinery/light/small{ - dir = 8 +"asN" = ( +/obj/vehicle/ridden/secway, +/obj/item/key/security, +/turf/open/floor/plasteel/red/side{ + dir = 10 }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"asC" = ( +/area/security/main) +"asO" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -8806,7 +9138,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/main) -"asD" = ( +"asP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -8818,7 +9150,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/main) -"asE" = ( +"asQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -8834,7 +9166,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/main) -"asF" = ( +"asR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -8846,7 +9178,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/main) -"asG" = ( +"asS" = ( /obj/machinery/light, /obj/machinery/computer/security/telescreen/entertainment{ pixel_y = -32 @@ -8859,7 +9191,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/main) -"asH" = ( +"asT" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -8868,13 +9200,13 @@ }, /turf/open/floor/plasteel/red/side, /area/security/main) -"asI" = ( +"asU" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/red/side, /area/security/main) -"asJ" = ( +"asV" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -8884,24 +9216,24 @@ }, /turf/open/floor/plasteel/red/side, /area/security/main) -"asK" = ( +"asW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "2-8" }, /turf/open/floor/plasteel/red/side, /area/security/main) -"asL" = ( +"asX" = ( /obj/machinery/rnd/protolathe/department/security, /turf/open/floor/plasteel/red/side{ dir = 6 }, /area/security/main) -"asM" = ( +"asY" = ( /obj/structure/chair, /turf/open/floor/plasteel/grimy, /area/security/main) -"asN" = ( +"asZ" = ( /obj/structure/chair, /obj/machinery/computer/security/telescreen{ desc = "Used for watching proceedings in the interrogation room."; @@ -8913,7 +9245,7 @@ }, /turf/open/floor/plasteel/grimy, /area/security/main) -"asO" = ( +"ata" = ( /obj/item/paper_bin{ pixel_x = -3; pixel_y = 7 @@ -8930,7 +9262,7 @@ }, /turf/open/floor/plasteel/grimy, /area/security/main) -"asP" = ( +"atb" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, @@ -8943,7 +9275,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"asQ" = ( +"atc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -8953,7 +9285,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"asR" = ( +"atd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -8962,13 +9294,13 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"asS" = ( +"ate" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/open/floor/plating, /area/maintenance/fore) -"asT" = ( +"atf" = ( /obj/machinery/light/small{ dir = 1 }, @@ -8979,7 +9311,7 @@ /obj/item/lighter, /turf/open/floor/wood, /area/crew_quarters/dorms) -"asU" = ( +"atg" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/airalarm{ pixel_y = 23 @@ -8987,7 +9319,7 @@ /obj/item/clothing/under/assistantformal, /turf/open/floor/wood, /area/crew_quarters/dorms) -"asV" = ( +"ath" = ( /obj/structure/bed, /obj/item/bedsheet, /obj/machinery/button/door{ @@ -9004,13 +9336,13 @@ }, /turf/open/floor/wood, /area/crew_quarters/dorms) -"asW" = ( +"ati" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/closed/wall, /area/crew_quarters/dorms) -"asX" = ( +"atj" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -9019,7 +9351,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"asY" = ( +"atk" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -9029,7 +9361,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"asZ" = ( +"atl" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -9040,7 +9372,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"ata" = ( +"atm" = ( /obj/machinery/light/small{ dir = 1 }, @@ -9058,7 +9390,7 @@ /obj/item/bedsheet, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"atb" = ( +"atn" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/airalarm{ pixel_y = 23 @@ -9066,30 +9398,43 @@ /obj/item/clothing/under/suit_jacket/burgundy, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"atc" = ( +"ato" = ( /obj/structure/dresser, /obj/machinery/newscaster{ pixel_y = 32 }, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"atd" = ( +"atp" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"atq" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"atr" = ( /turf/open/floor/plating{ icon_state = "panelscorched" }, /area/maintenance/starboard/fore) -"ate" = ( +"ats" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"atf" = ( +"att" = ( +/turf/closed/wall, +/area/engine/gravity_generator) +"atu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"atg" = ( +"atv" = ( /obj/machinery/door/airlock/highsecurity{ name = "Gravity Generator Room"; req_access_txt = "19;23" @@ -9098,7 +9443,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"ath" = ( +"atw" = ( /obj/machinery/power/smes{ charge = 5e+006 }, @@ -9108,7 +9453,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"ati" = ( +"atx" = ( /obj/structure/cable{ icon_state = "1-8" }, @@ -9120,13 +9465,13 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"atj" = ( +"aty" = ( /obj/machinery/space_heater, /turf/open/floor/plating{ icon_state = "panelscorched" }, -/area/maintenance/starboard) -"atk" = ( +/area/maintenance/starboard/fore) +"atz" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -9137,24 +9482,17 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"atl" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, +"atA" = ( +/obj/structure/sign/warning/electricshock, /turf/closed/wall, /area/maintenance/solars/starboard/fore) -"atm" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard) -"atn" = ( +"atB" = ( /obj/machinery/door/airlock/external{ req_access_txt = "13" }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"ato" = ( +"atC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/maintenance_hatch{ name = "Cargo Bay Bridge Access"; @@ -9166,7 +9504,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atp" = ( +"atD" = ( /obj/machinery/door/poddoor/shutters{ id = "supplybridge" }, @@ -9175,7 +9513,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atq" = ( +"atE" = ( /obj/machinery/door/poddoor/shutters{ id = "supplybridge" }, @@ -9184,7 +9522,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atr" = ( +"atF" = ( /obj/machinery/door/poddoor/shutters{ id = "supplybridge" }, @@ -9193,7 +9531,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"ats" = ( +"atG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -9202,7 +9540,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"att" = ( +"atH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -9211,7 +9549,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atu" = ( +"atI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -9220,7 +9558,17 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atv" = ( +"atJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"atK" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -9229,14 +9577,14 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atw" = ( +"atL" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, -/area/maintenance/port) -"atx" = ( +/area/maintenance/port/fore) +"atM" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -9248,7 +9596,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aty" = ( +"atN" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -9261,7 +9609,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atz" = ( +"atO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -9276,7 +9624,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atA" = ( +"atP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -9291,7 +9639,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atB" = ( +"atQ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -9307,17 +9655,25 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +"atR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atE" = ( +"atS" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -9329,7 +9685,20 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atG" = ( +"atT" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"atU" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -9342,7 +9711,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atH" = ( +"atV" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -9357,7 +9726,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atI" = ( +"atW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -9372,21 +9741,17 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atJ" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/labor) -"atK" = ( +"atX" = ( /obj/machinery/computer/gulag_teleporter_computer{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/security/brig) -"atL" = ( +"atY" = ( /obj/machinery/gulag_teleporter, /turf/open/floor/plasteel/dark, /area/security/brig) -"atM" = ( +"atZ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -9396,7 +9761,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/security/brig) -"atN" = ( +"aua" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -9404,560 +9769,11 @@ dir = 4 }, /area/security/brig) -"atO" = ( -/obj/structure/sign/pods, +"aub" = ( +/obj/structure/sign/warning/pods, /turf/closed/wall/r_wall, /area/security/warden) -"atP" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/security/warden) -"atR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control"; - req_access_txt = "3" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - req_access_txt = "0" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/warden) -"atS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Gear Room"; - req_access_txt = "0"; - req_one_access_txt = "1;4" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/warden) -"atT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/security/main) -"atU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office"; - req_access_txt = "0"; - req_one_access_txt = "1;4" - }, -/turf/open/floor/plasteel, -/area/security/main) -"atV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office"; - req_access_txt = "0"; - req_one_access_txt = "1;4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/main) -"atW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/main) -"atX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/main) -"atY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/security/main) -"atZ" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/security/main) -"aua" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"aub" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore) "auc" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/fore) -"aud" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"aue" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"auf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"aug" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin3"; - name = "Cabin 6" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"auh" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/dorms) -"aui" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"auj" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/crew_quarters/dorms) -"auk" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin4"; - name = "Cabin 5" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"aul" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"aum" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"aun" = ( -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"auo" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/fore) -"aup" = ( -/obj/structure/closet/crate/hydroponics, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aur" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aus" = ( -/obj/structure/closet, -/obj/item/stock_parts/matter_bin, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aut" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"auu" = ( -/obj/structure/closet/radiation, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - dir = 1; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"auv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"auw" = ( -/obj/machinery/camera{ - c_tag = "Gravity Generator Foyer" - }, -/obj/structure/closet/radiation, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - dir = 1; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_y = 32 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"aux" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auy" = ( -/obj/item/stack/sheet/cardboard, -/obj/item/device/flashlight, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auz" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/glasses/sunglasses, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auA" = ( -/obj/structure/closet/crate/medical, -/obj/item/stack/cable_coil, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auB" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auC" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"auD" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_y = 32 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auF" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/port) -"auG" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"auH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auI" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auJ" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted/fulltile, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auK" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auL" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"auN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auQ" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/labor) -"auR" = ( -/obj/machinery/computer/shuttle/labor{ - dir = 4 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -31 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/labor) -"auS" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/labor) -"auT" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/restraints/handcuffs, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/labor) -"auU" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = -32 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/security/brig) -"auV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction, -/turf/open/floor/plasteel, -/area/security/brig) -"auW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/security/brig) -"auX" = ( -/obj/machinery/photocopier, -/obj/machinery/power/apc{ - dir = 4; - name = "Head of Security's Office APC"; - areastring = "/area/crew_quarters/heads/hos"; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/button/door{ - id = "hosprivacy"; - name = "Privacy Shutters Control"; - pixel_x = 26; - pixel_y = -26 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault, -/area/crew_quarters/heads/hos) -"auY" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/security/brig) -"auZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/security/brig) -"ava" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/westleft{ base_state = "right"; @@ -9979,7 +9795,523 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) +"aud" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/security/warden) +"aue" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + req_access_txt = "0" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/warden) +"auf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Gear Room"; + req_access_txt = "0"; + req_one_access_txt = "1;4" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/warden) +"aug" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/security/warden) +"auh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/main) +"aui" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_access_txt = "0"; + req_one_access_txt = "1;4" + }, +/turf/open/floor/plasteel, +/area/security/main) +"auj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_access_txt = "0"; + req_one_access_txt = "1;4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/main) +"auk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/main) +"aul" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/main) +"aum" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/security/main) +"aun" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/security/main) +"auo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"aup" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"auq" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/fore) +"aur" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"aus" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"aut" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"auu" = ( +/obj/machinery/door/airlock{ + id_tag = "Cabin3"; + name = "Cabin 6" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"auv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/dorms) +"auw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"aux" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/crew_quarters/dorms) +"auy" = ( +/obj/machinery/door/airlock{ + id_tag = "Cabin4"; + name = "Cabin 5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"auz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"auA" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"auB" = ( +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"auC" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard/fore) +"auD" = ( +/obj/structure/closet/crate/hydroponics, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auG" = ( +/obj/structure/closet, +/obj/item/stock_parts/matter_bin, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auH" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"auI" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Storage Room"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auJ" = ( +/obj/structure/closet/radiation, +/obj/structure/sign/warning/radiation/rad_area{ + dir = 1; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"auK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"auL" = ( +/obj/machinery/camera{ + c_tag = "Gravity Generator Foyer" + }, +/obj/structure/closet/radiation, +/obj/structure/sign/warning/radiation/rad_area{ + dir = 1; + pixel_y = 32 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"auM" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"auN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auO" = ( +/obj/item/stack/sheet/cardboard, +/obj/item/device/flashlight, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auP" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/sunglasses, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auQ" = ( +/obj/structure/closet/crate/medical, +/obj/item/stack/cable_coil, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auR" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auS" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auT" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"auU" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auW" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auX" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"auY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ava" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted/fulltile, +/turf/open/floor/plating, +/area/maintenance/port/fore) "avb" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"avc" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"avd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"ave" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"avf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"avg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"avh" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 8 + }, +/area/security/brig) +"avi" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/plasteel, +/area/security/brig) +"avj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/security/brig) +"avk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/security/brig) +"avl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/security/brig) +"avm" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/security/brig) +"avn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/security/brig) +"avo" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/security/brig) +"avp" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -9995,7 +10327,7 @@ dir = 4 }, /area/security/brig) -"avc" = ( +"avq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -10004,7 +10336,7 @@ dir = 4 }, /area/security/brig) -"avd" = ( +"avr" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -10018,7 +10350,7 @@ dir = 4 }, /area/security/brig) -"ave" = ( +"avs" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -10029,7 +10361,7 @@ dir = 4 }, /area/security/brig) -"avf" = ( +"avt" = ( /obj/machinery/firealarm{ pixel_y = 28 }, @@ -10040,14 +10372,14 @@ dir = 4 }, /area/security/brig) -"avg" = ( +"avu" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/red/corner{ dir = 4 }, /area/security/brig) -"avh" = ( +"avv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -10059,7 +10391,7 @@ dir = 4 }, /area/security/brig) -"avi" = ( +"avw" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -10067,14 +10399,14 @@ dir = 5 }, /area/security/brig) -"avj" = ( +"avx" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/dark, /area/security/brig) -"avk" = ( +"avy" = ( /turf/open/floor/plasteel/dark, /area/security/brig) -"avl" = ( +"avA" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light/small{ dir = 8 @@ -10090,7 +10422,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"avm" = ( +"avB" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -10102,7 +10434,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"avn" = ( +"avC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -10114,35 +10446,35 @@ dir = 2 }, /area/crew_quarters/dorms) -"avo" = ( +"avD" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall, /area/crew_quarters/dorms) -"avp" = ( +"avE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, /turf/closed/wall, /area/crew_quarters/dorms) -"avq" = ( +"avF" = ( /obj/item/cigbutt, /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"avr" = ( +"avG" = ( /turf/open/floor/plating{ icon_state = "platingdmg1" }, -/area/maintenance/starboard) -"avs" = ( +/area/maintenance/starboard/fore) +"avH" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, -/area/maintenance/starboard) -"avt" = ( +/area/maintenance/starboard/fore) +"avI" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -10157,7 +10489,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"avu" = ( +"avJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -10167,11 +10499,8 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; +/obj/structure/sign/warning/radiation/rad_area{ dir = 1; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; pixel_y = 32 }, /obj/effect/turf_decal/stripes/line{ @@ -10179,7 +10508,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"avv" = ( +"avK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -10194,7 +10523,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"avw" = ( +"avL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -10211,7 +10540,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"avx" = ( +"avM" = ( /obj/structure/disposalpipe/segment{ dir = 10 }, @@ -10229,7 +10558,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"avy" = ( +"avN" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10241,7 +10570,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"avz" = ( +"avO" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10253,18 +10582,15 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"avA" = ( +"avP" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; +/obj/structure/sign/warning/radiation/rad_area{ dir = 1; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; pixel_y = 32 }, /obj/effect/turf_decal/stripes/line{ @@ -10272,7 +10598,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"avB" = ( +"avQ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10281,7 +10607,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"avC" = ( +"avR" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10292,7 +10618,7 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/fore) -"avD" = ( +"avS" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10303,7 +10629,7 @@ icon_state = "platingdmg2" }, /area/maintenance/starboard/fore) -"avE" = ( +"avT" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10314,7 +10640,7 @@ icon_state = "panelscorched" }, /area/maintenance/starboard/fore) -"avF" = ( +"avU" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -10323,21 +10649,13 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"avG" = ( +"avV" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"avH" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"avI" = ( +"avW" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/metal/fifty{ pixel_x = 2; @@ -10353,16 +10671,12 @@ }, /turf/open/floor/plating/airless, /area/space/nearstation) -"avJ" = ( +"avX" = ( /obj/machinery/door/airlock/external, /turf/open/floor/plating, /area/maintenance/port/fore) -"avK" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +"avY" = ( +/obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /obj/effect/turf_decal/stripes/line{ @@ -10370,13 +10684,13 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"avL" = ( +"avZ" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plating, /area/maintenance/port/fore) -"avM" = ( +"awa" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -10385,11 +10699,11 @@ icon_state = "panelscorched" }, /area/maintenance/port/fore) -"avN" = ( +"awb" = ( /obj/item/hand_labeler_refill, /turf/open/floor/plating, /area/maintenance/port/fore) -"avO" = ( +"awc" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, @@ -10401,7 +10715,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"avP" = ( +"awd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -10419,7 +10733,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"avQ" = ( +"awe" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -10435,7 +10749,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"avR" = ( +"awf" = ( /obj/structure/disposalpipe/sorting/mail/flip{ dir = 1; sortType = 1 @@ -10454,55 +10768,27 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"avS" = ( +"awg" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating{ icon_state = "platingdmg2" }, /area/maintenance/port/fore) -"avT" = ( +"awh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plating, /area/maintenance/port/fore) -"avU" = ( -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/labor) -"avV" = ( -/obj/machinery/button/flasher{ - id = "gulagshuttleflasher"; - name = "Flash Control"; - pixel_y = -26; - req_access_txt = "1" - }, -/obj/machinery/light, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/labor) -"avW" = ( -/obj/machinery/mineral/labor_claim_console{ - machinedir = 2; - pixel_x = 30; - pixel_y = 30 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/labor) -"avX" = ( -/obj/machinery/door/airlock/titanium{ - name = "Labor Shuttle Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/labor) -"avY" = ( +"awi" = ( /obj/machinery/door/airlock/external{ name = "Labor Camp Shuttle Airlock"; req_access_txt = "2" }, /turf/open/floor/plasteel/dark, /area/security/brig) -"avZ" = ( +"awj" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Labor Camp Shuttle Airlock"; @@ -10516,14 +10802,14 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"awa" = ( +"awk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/red/corner{ dir = 8 }, /area/security/brig) -"awb" = ( +"awl" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -10535,7 +10821,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awc" = ( +"awm" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10547,7 +10833,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awd" = ( +"awn" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10556,7 +10842,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awe" = ( +"awo" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10572,7 +10858,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awf" = ( +"awp" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10584,7 +10870,22 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awg" = ( +"awq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + req_access_txt = "0" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"awr" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10594,7 +10895,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awh" = ( +"aws" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10604,7 +10905,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awi" = ( +"awt" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10619,7 +10920,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awj" = ( +"awu" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -10632,7 +10933,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/security/brig) -"awk" = ( +"awv" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10644,7 +10945,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awl" = ( +"aww" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -10656,7 +10957,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awm" = ( +"awx" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10667,10 +10968,9 @@ /obj/structure/cable/yellow{ icon_state = "2-8" }, -/obj/effect/landmark/lightsout, /turf/open/floor/plasteel, /area/security/brig) -"awn" = ( +"awy" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10679,7 +10979,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awo" = ( +"awz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-8" @@ -10689,30 +10989,30 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awp" = ( +"awA" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/security/brig) -"awq" = ( +"awB" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/security/brig) -"awr" = ( +"awC" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/security/brig) -"aws" = ( +"awD" = ( /turf/open/floor/plasteel, /area/security/brig) -"awt" = ( +"awE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -10720,7 +11020,7 @@ dir = 4 }, /area/security/brig) -"awu" = ( +"awF" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ name = "Interrogation"; @@ -10733,30 +11033,30 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"awv" = ( +"awG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aww" = ( +"awH" = ( /obj/structure/chair{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/security/brig) -"awx" = ( +"awI" = ( /obj/structure/table, /obj/item/device/flashlight/lamp, /turf/open/floor/plasteel/dark, /area/security/brig) -"awy" = ( +"awJ" = ( /obj/structure/chair{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/security/brig) -"awz" = ( +"awK" = ( /obj/machinery/camera{ c_tag = "Interrogation"; dir = 8; @@ -10764,20 +11064,19 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"awA" = ( +"awL" = ( /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/item/storage/box/donkpockets, /turf/open/floor/plating, /area/maintenance/fore) -"awB" = ( +"awM" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/storage/box/lights/mixed, /turf/open/floor/plating, /area/maintenance/fore) -"awC" = ( +"awN" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -10790,7 +11089,7 @@ /obj/structure/dresser, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"awD" = ( +"awO" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/airalarm{ pixel_y = 23 @@ -10798,7 +11097,7 @@ /obj/item/clothing/under/suit_jacket/tan, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"awE" = ( +"awP" = ( /obj/structure/bed, /obj/item/bedsheet, /obj/machinery/button/door{ @@ -10814,7 +11113,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"awF" = ( +"awR" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -10826,7 +11125,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"awG" = ( +"awS" = ( /obj/structure/bed, /obj/item/bedsheet, /obj/machinery/button/door{ @@ -10840,7 +11139,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/wood, /area/crew_quarters/dorms) -"awH" = ( +"awT" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -10848,14 +11147,14 @@ /obj/item/paper, /turf/open/floor/wood, /area/crew_quarters/dorms) -"awI" = ( +"awU" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; req_access_txt = "12" }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"awJ" = ( +"awV" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -10865,7 +11164,10 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/fore) -"awK" = ( +"awW" = ( +/turf/closed/wall/r_wall, +/area/engine/engineering) +"awX" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -10878,38 +11180,22 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"awL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"awM" = ( +"awY" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboard/fore) +"awZ" = ( /obj/structure/closet, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/fore) -"awN" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/mining) -"awO" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/mining) -"awP" = ( +"axa" = ( /obj/item/clothing/gloves/color/rainbow, /obj/item/clothing/shoes/sneakers/rainbow, /obj/item/clothing/under/color/rainbow, /obj/item/clothing/head/soft/rainbow, /turf/open/floor/plating, /area/maintenance/port/fore) -"awQ" = ( +"axb" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -10918,18 +11204,18 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"awR" = ( +"axc" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, /turf/open/floor/plating, /area/maintenance/port/fore) -"awS" = ( +"axd" = ( /obj/structure/closet/crate, /obj/item/coin/silver, /turf/open/floor/plating, /area/maintenance/port/fore) -"awT" = ( +"axe" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -10939,13 +11225,13 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"awU" = ( +"axf" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, /turf/open/floor/plating, /area/maintenance/port/fore) -"awV" = ( +"axg" = ( /obj/structure/disposalpipe/segment{ dir = 10 }, @@ -10955,24 +11241,10 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"awW" = ( +"axh" = ( /turf/closed/wall/r_wall, /area/security/nuke_storage) -"awX" = ( -/obj/machinery/door/airlock/titanium{ - name = "Labor Shuttle Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/dark, -/area/shuttle/labor) -"awY" = ( -/obj/machinery/mineral/stacking_machine/laborstacker{ - input_dir = 2; - output_dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/shuttle/labor) -"awZ" = ( +"axi" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -10984,7 +11256,7 @@ dir = 8 }, /area/security/brig) -"axa" = ( +"axj" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -10993,7 +11265,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"axb" = ( +"axk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11004,7 +11276,7 @@ dir = 2 }, /area/security/brig) -"axc" = ( +"axl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11021,7 +11293,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/brig) -"axd" = ( +"axm" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -11029,7 +11301,7 @@ dir = 8 }, /area/security/brig) -"axe" = ( +"axn" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -11038,7 +11310,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"axf" = ( +"axo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11050,7 +11322,7 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/red/side, /area/security/brig) -"axg" = ( +"axp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11059,7 +11331,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/brig) -"axh" = ( +"axq" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -11072,7 +11344,7 @@ dir = 2 }, /area/security/brig) -"axi" = ( +"axr" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11081,7 +11353,7 @@ dir = 9 }, /area/security/brig) -"axj" = ( +"axs" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11089,7 +11361,7 @@ dir = 1 }, /area/security/brig) -"axk" = ( +"axt" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -11098,7 +11370,7 @@ dir = 5 }, /area/security/brig) -"axl" = ( +"axu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11119,7 +11391,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/brig) -"axm" = ( +"axv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11127,13 +11399,13 @@ dir = 8 }, /area/security/brig) -"axn" = ( +"axw" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, /turf/open/floor/plasteel, /area/security/brig) -"axo" = ( +"axx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11143,7 +11415,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"axp" = ( +"axy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11151,7 +11423,7 @@ dir = 2 }, /area/security/brig) -"axq" = ( +"axz" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -11159,7 +11431,7 @@ dir = 2 }, /area/security/brig) -"axr" = ( +"axA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11173,7 +11445,7 @@ dir = 2 }, /area/security/brig) -"axs" = ( +"axB" = ( /obj/machinery/airalarm{ dir = 1; pixel_y = -22 @@ -11191,7 +11463,7 @@ dir = 2 }, /area/security/brig) -"axt" = ( +"axC" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -11203,7 +11475,7 @@ dir = 2 }, /area/security/brig) -"axu" = ( +"axD" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -11211,7 +11483,7 @@ dir = 2 }, /area/security/brig) -"axv" = ( +"axE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11222,19 +11494,19 @@ dir = 6 }, /area/security/brig) -"axw" = ( +"axF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/security/brig) -"axx" = ( +"axG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/security/brig) -"axy" = ( +"axH" = ( /obj/structure/chair{ dir = 4 }, @@ -11243,7 +11515,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"axz" = ( +"axI" = ( /obj/structure/table, /obj/item/folder/red, /obj/item/device/taperecorder, @@ -11261,7 +11533,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"axA" = ( +"axJ" = ( /obj/structure/chair{ dir = 8 }, @@ -11270,29 +11542,29 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"axB" = ( +"axK" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/security/brig) -"axC" = ( +"axL" = ( /turf/closed/wall, /area/crew_quarters/toilet/restrooms) -"axD" = ( +"axN" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"axE" = ( +"axO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/effect/landmark/xeno_spawn, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"axF" = ( +"axP" = ( /obj/machinery/door/airlock{ id_tag = "Cabin2"; name = "Cabin 4" @@ -11302,7 +11574,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/dorms) -"axG" = ( +"axQ" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -11311,16 +11583,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"axH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"axI" = ( +"axR" = ( /obj/machinery/door/airlock{ id_tag = "Cabin5"; name = "Cabin 3" @@ -11330,14 +11593,14 @@ }, /turf/open/floor/wood, /area/crew_quarters/dorms) -"axJ" = ( +"axS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/crew_quarters/dorms) -"axK" = ( +"axT" = ( /obj/effect/landmark/xeno_spawn, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 @@ -11345,14 +11608,14 @@ /obj/machinery/light/small, /turf/open/floor/wood, /area/crew_quarters/dorms) -"axL" = ( +"axU" = ( /obj/item/caution, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"axM" = ( +"axV" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -11364,7 +11627,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"axN" = ( +"axW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -11378,7 +11641,7 @@ icon_state = "panelscorched" }, /area/maintenance/starboard/fore) -"axO" = ( +"axX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -11388,9 +11651,10 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/item/cigbutt, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"axP" = ( +"axY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -11405,7 +11669,20 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"axQ" = ( +"axZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aya" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -11419,20 +11696,32 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/fore) -"axR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +"ayb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/holopad, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/red/corner{ +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ayc" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/area/security/brig) -"axS" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ayd" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -11444,7 +11733,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"axT" = ( +"aye" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=4"; dir = 4; @@ -11457,7 +11746,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/engineering) -"axU" = ( +"ayf" = ( /obj/machinery/door/window/southright{ dir = 4; name = "Engineering Deliveries"; @@ -11467,8 +11756,8 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/engineering) -"axV" = ( -/obj/structure/sign/securearea{ +"ayg" = ( +/obj/structure/sign/warning/securearea{ pixel_y = 32 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -11477,7 +11766,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"axW" = ( +"ayh" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -11490,7 +11779,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"axX" = ( +"ayi" = ( /obj/machinery/light_switch{ pixel_x = 23 }, @@ -11501,7 +11790,7 @@ dir = 8; name = "emergency shower" }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_y = 32 }, /obj/effect/turf_decal/stripes/line{ @@ -11509,21 +11798,22 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"axY" = ( -/turf/closed/wall/r_wall, -/area/engine/engineering) -"axZ" = ( +"ayj" = ( /obj/structure/closet/firecloset, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aya" = ( +"ayk" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ayl" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/machinery/light{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"ayc" = ( +"aym" = ( /obj/structure/table/reinforced, /obj/item/tank/internals/emergency_oxygen/engi, /obj/item/tank/internals/emergency_oxygen/engi, @@ -11532,14 +11822,7 @@ }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aye" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"ayf" = ( +"ayn" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/glass{ amount = 10 @@ -11547,22 +11830,14 @@ /obj/item/stack/rods, /turf/open/floor/plating/airless, /area/space/nearstation) -"ayg" = ( -/obj/structure/table, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/mining) -"ayh" = ( -/obj/machinery/computer/shuttle/mining, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/mining) -"ayi" = ( +"ayo" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/quartermaster/miningoffice) -"ayj" = ( +"ayp" = ( /turf/closed/wall, /area/quartermaster/miningoffice) -"ayk" = ( +"ayq" = ( /obj/machinery/door/airlock/maintenance{ name = "Mining Dock Maintenance"; req_access_txt = "48" @@ -11572,10 +11847,10 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"ayl" = ( +"ayr" = ( /turf/closed/wall, /area/quartermaster/warehouse) -"aym" = ( +"ays" = ( /obj/machinery/door/airlock/maintenance{ name = "Cargo Bay Warehouse Maintenance"; req_access_txt = "0"; @@ -11587,7 +11862,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/port/fore) -"ayn" = ( +"ayt" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ @@ -11595,14 +11870,14 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"ayo" = ( +"ayu" = ( /obj/machinery/computer/bank_machine, /obj/effect/turf_decal/bot_white, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/security/nuke_storage) -"ayp" = ( +"ayv" = ( /obj/machinery/light_switch{ pixel_y = 28 }, @@ -11610,7 +11885,7 @@ luminosity = 2 }, /area/security/nuke_storage) -"ayq" = ( +"ayw" = ( /obj/machinery/airalarm{ pixel_y = 23 }, @@ -11621,7 +11896,7 @@ luminosity = 2 }, /area/security/nuke_storage) -"ayr" = ( +"ayx" = ( /obj/machinery/power/apc{ dir = 1; name = "Vault APC"; @@ -11635,7 +11910,7 @@ luminosity = 2 }, /area/security/nuke_storage) -"ays" = ( +"ayy" = ( /obj/structure/filingcabinet, /obj/item/folder/documents, /obj/effect/turf_decal/bot_white, @@ -11643,17 +11918,7 @@ dir = 8 }, /area/security/nuke_storage) -"ayt" = ( -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/labor) -"ayu" = ( -/obj/machinery/mineral/labor_claim_console{ - machinedir = 1; - pixel_x = 30 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/labor) -"ayw" = ( +"ayz" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" @@ -11661,7 +11926,10 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/security/brig) -"ayx" = ( +"ayA" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -11674,7 +11942,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/brig) -"ayy" = ( +"ayB" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -11684,7 +11952,10 @@ }, /turf/open/floor/plating, /area/security/brig) -"ayz" = ( +"ayC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -11697,7 +11968,10 @@ }, /turf/open/floor/plasteel/red/side, /area/security/brig) -"ayA" = ( +"ayD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -11710,7 +11984,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/brig) -"ayB" = ( +"ayE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ @@ -11721,7 +11995,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/brig) -"ayC" = ( +"ayF" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -11738,7 +12012,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/brig) -"ayD" = ( +"ayG" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ @@ -11749,7 +12023,7 @@ }, /turf/open/floor/plating, /area/security/brig) -"ayE" = ( +"ayH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -11766,10 +12040,27 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/side, /area/security/brig) -"ayF" = ( +"ayI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/brig) +"ayJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/brig) +"ayK" = ( /turf/closed/wall/r_wall, /area/security/detectives_office) -"ayG" = ( +"ayL" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "detective_shutters"; @@ -11780,7 +12071,7 @@ }, /turf/open/floor/plating, /area/security/detectives_office) -"ayH" = ( +"ayM" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -11793,7 +12084,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/security/detectives_office) -"ayI" = ( +"ayN" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "detective_shutters"; @@ -11805,10 +12096,10 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/security/detectives_office) -"ayJ" = ( +"ayO" = ( /turf/closed/wall, /area/security/detectives_office) -"ayK" = ( +"ayP" = ( /obj/machinery/shower{ dir = 4 }, @@ -11817,7 +12108,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"ayL" = ( +"ayQ" = ( /obj/machinery/light/small{ dir = 1 }, @@ -11829,14 +12120,14 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"ayM" = ( +"ayR" = ( /obj/machinery/shower{ dir = 8 }, /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"ayN" = ( +"ayS" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, @@ -11844,7 +12135,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"ayO" = ( +"ayT" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -11856,7 +12147,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"ayP" = ( +"ayU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -11868,7 +12159,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"ayQ" = ( +"ayV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -11876,11 +12167,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"ayR" = ( +"ayW" = ( /obj/item/wrench, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"ayS" = ( +"ayX" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -11892,14 +12183,27 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"ayT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +"ayY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/engineering) -"ayV" = ( +"ayZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sorting/mail{ + sortType = 4 + }, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engine/engineering) +"aza" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -11908,7 +12212,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"ayW" = ( +"azb" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -11919,63 +12223,45 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"ayX" = ( +"azc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aza" = ( +"azd" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aze" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"azb" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" +"azf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/security/brig) -"azd" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"aze" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/wood, -/area/library) +/turf/closed/wall/r_wall, +/area/engine/engineering) "azg" = ( /obj/item/stack/cable_coil, /turf/open/floor/plating/airless, /area/space/nearstation) "azh" = ( -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/mining) -"azi" = ( -/obj/structure/chair{ - dir = 1 +/turf/open/floor/plating{ + icon_state = "platingdmg2" }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/mining) -"azj" = ( -/obj/item/ore/iron, +/area/maintenance/port/fore) +"azi" = ( +/obj/item/stack/ore/iron, /obj/effect/turf_decal/stripes/line{ dir = 9 }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"azk" = ( +"azj" = ( /obj/structure/closet/crate, /obj/machinery/light/small{ dir = 4 @@ -11990,7 +12276,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"azl" = ( +"azk" = ( /obj/structure/closet/emcloset, /obj/machinery/status_display{ pixel_y = 32; @@ -12000,7 +12286,7 @@ dir = 9 }, /area/quartermaster/miningoffice) -"azm" = ( +"azl" = ( /obj/structure/closet/crate, /obj/item/device/flashlight{ pixel_x = 1; @@ -12022,7 +12308,7 @@ dir = 1 }, /area/quartermaster/miningoffice) -"azn" = ( +"azm" = ( /obj/machinery/power/apc{ dir = 1; name = "Mining APC"; @@ -12040,7 +12326,7 @@ dir = 1 }, /area/quartermaster/miningoffice) -"azo" = ( +"azn" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -12051,7 +12337,7 @@ dir = 1 }, /area/quartermaster/miningoffice) -"azp" = ( +"azo" = ( /obj/structure/rack, /obj/item/storage/toolbox/emergency{ pixel_x = 2; @@ -12062,35 +12348,31 @@ dir = 5 }, /area/quartermaster/miningoffice) +"azp" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/floorgrime, +/area/quartermaster/warehouse) "azq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - req_access_txt = "0" +/obj/structure/closet/cardboard, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) +/turf/open/floor/plasteel/floorgrime, +/area/quartermaster/warehouse) "azr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"azs" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -12101,7 +12383,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"azt" = ( +"azs" = ( /obj/machinery/airalarm{ pixel_y = 28 }, @@ -12113,7 +12395,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"azu" = ( +"azt" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -12122,7 +12404,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"azv" = ( +"azu" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -12131,7 +12413,7 @@ dir = 1 }, /area/security/nuke_storage) -"azw" = ( +"azv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -12139,13 +12421,13 @@ luminosity = 2 }, /area/security/nuke_storage) -"azx" = ( +"azw" = ( /obj/machinery/nuclearbomb/selfdestruct, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/security/nuke_storage) -"azy" = ( +"azx" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -12156,7 +12438,7 @@ luminosity = 2 }, /area/security/nuke_storage) -"azz" = ( +"azy" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -12165,27 +12447,14 @@ dir = 1 }, /area/security/nuke_storage) -"azA" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/labor) -"azB" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/flasher{ - id = "gulagshuttleflasher"; - pixel_x = 25 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/labor) -"azC" = ( +"azz" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/hallway/primary/fore) -"azD" = ( +"azA" = ( +/turf/closed/wall, +/area/hallway/primary/fore) +"azB" = ( /obj/machinery/flasher{ id = "Cell 1"; pixel_x = -28 @@ -12195,10 +12464,13 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azE" = ( +"azC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azF" = ( +"azD" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -12207,7 +12479,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azG" = ( +"azE" = ( /obj/machinery/flasher{ id = "Cell 2"; pixel_x = -28 @@ -12217,7 +12489,14 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azH" = ( +"azF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"azG" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -12227,7 +12506,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azI" = ( +"azH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light/small{ dir = 8 @@ -12236,13 +12515,13 @@ dir = 9 }, /area/security/brig) -"azJ" = ( +"azI" = ( /obj/machinery/holopad, /turf/open/floor/plasteel/red/side{ dir = 1 }, /area/security/brig) -"azK" = ( +"azJ" = ( /obj/machinery/light/small{ dir = 4 }, @@ -12254,7 +12533,7 @@ dir = 5 }, /area/security/brig) -"azL" = ( +"azK" = ( /obj/structure/chair, /obj/machinery/flasher{ id = "holdingflash"; @@ -12262,24 +12541,24 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azM" = ( +"azL" = ( /obj/structure/chair, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azN" = ( +"azM" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azO" = ( +"azN" = ( /obj/structure/chair, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azP" = ( +"azO" = ( /obj/structure/rack, /obj/machinery/flasher{ id = "holdingflash"; @@ -12302,7 +12581,7 @@ /obj/item/restraints/handcuffs, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azQ" = ( +"azP" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -12316,13 +12595,13 @@ }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"azR" = ( +"azQ" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"azS" = ( +"azR" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -12335,7 +12614,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/security/detectives_office) -"azT" = ( +"azS" = ( /obj/structure/table/wood, /obj/item/storage/fancy/cigarettes, /obj/item/clothing/glasses/sunglasses, @@ -12347,7 +12626,7 @@ }, /turf/open/floor/carpet, /area/security/detectives_office) -"azU" = ( +"azT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -12365,7 +12644,7 @@ /obj/item/restraints/handcuffs, /turf/open/floor/carpet, /area/security/detectives_office) -"azV" = ( +"azU" = ( /obj/structure/table/wood, /obj/item/storage/secure/safe{ pixel_x = 32 @@ -12382,14 +12661,14 @@ }, /turf/open/floor/carpet, /area/security/detectives_office) -"azW" = ( +"azV" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating, /area/maintenance/fore) -"azX" = ( +"azW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -12404,6 +12683,15 @@ }, /turf/open/floor/plating, /area/maintenance/fore) +"azX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/fore) "azY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -12413,6 +12701,13 @@ }, /area/maintenance/fore) "azZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/fore) +"aAa" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -12422,7 +12717,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aAa" = ( +"aAb" = ( /obj/structure/mirror{ pixel_x = -28 }, @@ -12432,12 +12727,12 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aAb" = ( +"aAc" = ( /obj/effect/landmark/xeno_spawn, /obj/item/bikehorn/rubberducky, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aAc" = ( +"aAd" = ( /obj/structure/mirror{ pixel_x = 28 }, @@ -12446,11 +12741,11 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aAd" = ( +"aAe" = ( /obj/machinery/washing_machine, /turf/open/floor/plasteel/barber, /area/crew_quarters/dorms) -"aAe" = ( +"aAf" = ( /obj/structure/table, /obj/item/clothing/under/suit_jacket/female{ pixel_x = 3; @@ -12475,7 +12770,14 @@ /obj/item/clothing/under/lawyer/blacksuit, /turf/open/floor/plasteel/barber, /area/crew_quarters/dorms) -"aAf" = ( +"aAg" = ( +/obj/machinery/washing_machine, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/barber, +/area/crew_quarters/dorms) +"aAh" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -12483,7 +12785,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"aAg" = ( +"aAi" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -12496,7 +12798,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aAh" = ( +"aAj" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -12510,7 +12812,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"aAi" = ( +"aAk" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, @@ -12525,7 +12827,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aAj" = ( +"aAl" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -12540,7 +12842,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aAk" = ( +"aAm" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -12554,32 +12856,32 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/fore) -"aAl" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aAm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) "aAn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aAo" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aAp" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -12594,18 +12896,24 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aAo" = ( +"aAq" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/engineering) -"aAp" = ( +"aAr" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/item/clothing/suit/hooded/wintercoat/engineering, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/engineering) -"aAr" = ( +"aAs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"aAt" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -12622,7 +12930,14 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aAt" = ( +"aAu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/engineering) +"aAv" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 }, @@ -12631,17 +12946,17 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aAu" = ( +"aAw" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/structure/disposalpipe/sorting/mail{ - sortType = 4 +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/obj/effect/landmark/start/station_engineer, /turf/open/floor/plasteel, /area/engine/engineering) -"aAv" = ( +"aAx" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -12651,55 +12966,58 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aAw" = ( +"aAy" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Fore"; + dir = 4; + network = list("SS13","Engine") + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aAz" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aAA" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aAB" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aAC" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 10 }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aAx" = ( +"aAD" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/r_wall, /area/engine/engineering) -"aAz" = ( -/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 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/cult{ - dir = 2 - }, -/area/library) -"aAA" = ( -/obj/machinery/door/airlock/titanium{ - name = "Mining Shuttle Airlock"; - req_access_txt = "0" - }, -/obj/docking_port/mobile{ - dir = 8; - dwidth = 3; - height = 5; - id = "mining"; - name = "mining shuttle"; - port_direction = 4; - width = 7 - }, +"aAE" = ( /obj/docking_port/stationary{ dir = 8; dwidth = 3; height = 5; id = "mining_home"; name = "mining shuttle bay"; - width = 7 + width = 7; + roundstart_template = /datum/map_template/shuttle/mining/box; + }, -/turf/open/floor/plating, -/area/shuttle/mining) -"aAB" = ( +/turf/open/space/basic, +/area/space) +"aAF" = ( /obj/machinery/door/airlock/external{ name = "Mining Dock Airlock"; req_access = null; @@ -12707,41 +13025,41 @@ }, /turf/open/floor/plating, /area/quartermaster/miningoffice) -"aAC" = ( +"aAG" = ( /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aAD" = ( +"aAH" = ( /obj/machinery/door/airlock/mining/glass{ name = "Mining Dock"; req_access_txt = "48" }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aAE" = ( +"aAI" = ( /turf/open/floor/plasteel/brown{ dir = 8 }, /area/quartermaster/miningoffice) -"aAF" = ( +"aAJ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aAG" = ( +"aAK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aAH" = ( +"aAL" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/effect/landmark/start/shaft_miner, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aAI" = ( +"aAM" = ( /obj/machinery/button/door{ id = "qm_mine_warehouse"; name = "Warehouse Door Control"; @@ -12753,7 +13071,7 @@ dir = 4 }, /area/quartermaster/miningoffice) -"aAJ" = ( +"aAN" = ( /obj/machinery/door/poddoor/shutters{ id = "qm_mine_warehouse"; name = "Warehouse Shutters" @@ -12761,7 +13079,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aAK" = ( +"aAO" = ( /obj/structure/disposalpipe/segment, /obj/machinery/button/door{ id = "qm_mine_warehouse"; @@ -12775,10 +13093,10 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aAL" = ( +"aAP" = ( /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aAM" = ( +"aAQ" = ( /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 3; @@ -12786,13 +13104,13 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aAN" = ( +"aAR" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aAO" = ( +"aAS" = ( /obj/structure/closet/crate, /obj/structure/extinguisher_cabinet{ pixel_x = 27 @@ -12803,7 +13121,16 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aAP" = ( +"aAT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aAU" = ( /obj/structure/closet/crate{ name = "Gold Crate" }, @@ -12827,7 +13154,7 @@ dir = 1 }, /area/security/nuke_storage) -"aAQ" = ( +"aAV" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -12836,7 +13163,7 @@ luminosity = 2 }, /area/security/nuke_storage) -"aAR" = ( +"aAW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -12844,7 +13171,7 @@ luminosity = 2 }, /area/security/nuke_storage) -"aAS" = ( +"aAX" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -12855,7 +13182,7 @@ luminosity = 2 }, /area/security/nuke_storage) -"aAT" = ( +"aAY" = ( /obj/item/coin/silver{ pixel_x = 7; pixel_y = 12 @@ -12884,41 +13211,26 @@ dir = 1 }, /area/security/nuke_storage) -"aAU" = ( -/obj/structure/closet/crate, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/labor) -"aAV" = ( -/obj/machinery/door/airlock/titanium{ - id_tag = "prisonshuttle"; - name = "Labor Shuttle Airlock" - }, -/obj/docking_port/mobile{ - dir = 8; - dwidth = 2; - height = 5; - id = "laborcamp"; - name = "labor camp shuttle"; - port_direction = 4; - width = 9 - }, +"aAZ" = ( /obj/docking_port/stationary{ dir = 8; dwidth = 2; height = 5; id = "laborcamp_home"; name = "fore bay 1"; - width = 9 + width = 9; + roundstart_template = /datum/map_template/shuttle/labour/box; + }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/labor) -"aAW" = ( +/turf/open/space/basic, +/area/space) +"aBa" = ( /obj/machinery/door/airlock/external{ name = "Labor Camp Shuttle Airlock" }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aAX" = ( +"aBb" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 28 @@ -12941,33 +13253,33 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aAY" = ( +"aBc" = ( /obj/structure/bed, /obj/item/bedsheet, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"aAZ" = ( +"aBd" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 1"; name = "Cell 1 Locker" }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"aBa" = ( +"aBe" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 2"; name = "Cell 2 Locker" }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"aBb" = ( +"aBf" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 3"; name = "Cell 3 Locker" }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"aBc" = ( +"aBg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/firealarm{ dir = 8; @@ -12977,10 +13289,10 @@ dir = 10 }, /area/security/brig) -"aBd" = ( +"aBh" = ( /turf/open/floor/plasteel/red/side, /area/security/brig) -"aBe" = ( +"aBi" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -12992,7 +13304,7 @@ dir = 6 }, /area/security/brig) -"aBf" = ( +"aBj" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -13001,25 +13313,22 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"aBg" = ( +"aBk" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"aBh" = ( +"aBl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"aBi" = ( +"aBm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -13029,7 +13338,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"aBj" = ( +"aBn" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -13038,7 +13347,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"aBk" = ( +"aBo" = ( /obj/structure/closet/secure_closet/detective, /obj/effect/landmark/blobstart, /obj/machinery/camera{ @@ -13048,24 +13357,24 @@ }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aBl" = ( +"aBp" = ( /obj/machinery/holopad, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aBm" = ( +"aBq" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/security/detectives_office) -"aBn" = ( +"aBr" = ( /obj/structure/table/wood, /obj/item/folder/red, /obj/item/hand_labeler, /turf/open/floor/carpet, /area/security/detectives_office) -"aBo" = ( +"aBs" = ( /obj/effect/landmark/start/detective, /obj/structure/chair/office/dark{ dir = 8 @@ -13073,7 +13382,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/carpet, /area/security/detectives_office) -"aBp" = ( +"aBt" = ( /obj/machinery/airalarm{ dir = 8; pixel_x = 24 @@ -13083,7 +13392,7 @@ }, /turf/open/floor/carpet, /area/security/detectives_office) -"aBq" = ( +"aBu" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -13093,7 +13402,19 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/fore) -"aBr" = ( +"aBv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aBw" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -13108,7 +13429,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aBs" = ( +"aBx" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -13118,25 +13439,25 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aBt" = ( +"aBy" = ( /obj/machinery/shower{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aBu" = ( +"aBz" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aBv" = ( +"aBA" = ( /obj/machinery/shower{ dir = 8 }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aBw" = ( +"aBB" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -13150,7 +13471,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"aBx" = ( +"aBC" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -13161,7 +13482,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"aBy" = ( +"aBD" = ( /obj/structure/cable/yellow{ icon_state = "0-8" }, @@ -13184,7 +13505,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"aBz" = ( +"aBE" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -13196,7 +13517,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"aBA" = ( +"aBF" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -13205,29 +13526,25 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aBB" = ( +"aBG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/pods{ +/obj/structure/sign/warning/pods{ pixel_x = 30 }, /turf/open/floor/plasteel/neutral/corner{ dir = 2 }, /area/crew_quarters/dorms) -"aBC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"aBH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/turf/open/floor/plating{ + icon_state = "platingdmg3" }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, /area/maintenance/starboard/fore) -"aBD" = ( +"aBI" = ( /obj/effect/decal/cleanable/cobweb, /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-20"; @@ -13240,7 +13557,7 @@ dir = 1 }, /area/engine/engineering) -"aBE" = ( +"aBJ" = ( /obj/machinery/suit_storage_unit/engine, /obj/effect/turf_decal/bot{ dir = 1 @@ -13249,7 +13566,7 @@ dir = 1 }, /area/engine/engineering) -"aBF" = ( +"aBK" = ( /obj/structure/tank_dispenser, /obj/machinery/light{ dir = 1 @@ -13261,7 +13578,7 @@ dir = 1 }, /area/engine/engineering) -"aBG" = ( +"aBL" = ( /obj/machinery/camera{ c_tag = "Engineering - Storage"; dir = 2; @@ -13275,7 +13592,7 @@ dir = 1 }, /area/engine/engineering) -"aBH" = ( +"aBM" = ( /obj/item/stack/sheet/plasteel{ amount = 10; pixel_x = -2; @@ -13294,10 +13611,10 @@ dir = 1 }, /area/engine/engineering) -"aBI" = ( +"aBN" = ( /turf/closed/wall, /area/engine/engineering) -"aBJ" = ( +"aBO" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -22 @@ -13310,7 +13627,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aBK" = ( +"aBP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -13319,7 +13636,39 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aBL" = ( +"aBQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"aBR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/engine/engineering) +"aBS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"aBT" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -13333,7 +13682,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aBM" = ( +"aBU" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-8" @@ -13345,7 +13694,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aBN" = ( +"aBV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/computer/rdconsole/production{ dir = 1 @@ -13356,26 +13705,43 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aBO" = ( +"aBW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, /area/engine/engineering) -"aBQ" = ( +"aBX" = ( +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aBY" = ( /obj/machinery/atmospherics/components/unary/thermomachine/freezer{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aBS" = ( -/obj/item/ore/silver, -/obj/item/ore/silver, +"aBZ" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + volume_rate = 200 + }, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"aCa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aCb" = ( +/obj/item/stack/ore/silver, +/obj/item/stack/ore/silver, /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aBT" = ( +"aCc" = ( /obj/structure/reagent_dispensers/fueltank, /obj/machinery/camera{ c_tag = "Mining Dock"; @@ -13385,27 +13751,22 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aBU" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK" - }, +"aCd" = ( +/obj/structure/sign/warning/vacuum/external, /turf/closed/wall, /area/quartermaster/miningoffice) -"aBV" = ( +"aCe" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/holopad, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aBW" = ( +"aCf" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aBX" = ( +"aCg" = ( /obj/item/device/radio/intercom{ dir = 4; name = "Station Intercom (General)"; @@ -13421,7 +13782,7 @@ dir = 4 }, /area/quartermaster/miningoffice) -"aBY" = ( +"aCh" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -13429,13 +13790,13 @@ /obj/item/storage/box/donkpockets, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aBZ" = ( +"aCi" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aCa" = ( +"aCj" = ( /obj/structure/closet/crate/freezer, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 3; @@ -13443,15 +13804,15 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aCb" = ( +"aCk" = ( /obj/structure/closet/crate, /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/item/ore/glass, +/obj/item/stack/ore/glass, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aCc" = ( +"aCl" = ( /obj/structure/rack, /obj/item/electronics/apc, /obj/item/stock_parts/cell{ @@ -13464,21 +13825,21 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aCd" = ( +"aCm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/bot_white/right, /turf/open/floor/plasteel/vault{ dir = 1 }, /area/security/nuke_storage) -"aCe" = ( +"aCn" = ( /obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/open/floor/plasteel/vault/corner, /area/security/nuke_storage) -"aCf" = ( +"aCo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -13487,7 +13848,7 @@ }, /turf/open/floor/plasteel/vault/side, /area/security/nuke_storage) -"aCg" = ( +"aCp" = ( /obj/machinery/camera/motion{ c_tag = "Vault"; dir = 1; @@ -13501,18 +13862,13 @@ dir = 8 }, /area/security/nuke_storage) -"aCh" = ( +"aCq" = ( /obj/structure/safe, /obj/item/storage/secure/briefcase{ contents = newlist(/obj/item/clothing/suit/armor/vest,/obj/item/gun/ballistic/automatic/pistol,/obj/item/suppressor,/obj/item/melee/classic_baton/telescopic,/obj/item/clothing/mask/balaclava,/obj/item/bodybag,/obj/item/soap/nanotrasen) }, /obj/item/storage/backpack/duffelbag/syndie/hitman, -/obj/item/card/id/silver{ - access = list(12); - assignment = "Reaper"; - name = "Thirteen's ID Card (Reaper)"; - registered_name = "Thirteen" - }, +/obj/item/card/id/silver/reaper, /obj/item/lazarus_injector, /obj/item/gun/energy/e_gun/advtaser, /obj/item/gun/ballistic/revolver/russian, @@ -13528,15 +13884,7 @@ dir = 1 }, /area/security/nuke_storage) -"aCi" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plating, -/area/shuttle/labor) -"aCj" = ( +"aCr" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Labor Camp Shuttle Airlock"; @@ -13544,7 +13892,7 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aCk" = ( +"aCs" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" @@ -13555,7 +13903,7 @@ }, /turf/open/floor/plating, /area/security/brig) -"aCl" = ( +"aCt" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/structure/cable/yellow{ @@ -13570,7 +13918,7 @@ }, /turf/open/floor/plating, /area/security/brig) -"aCm" = ( +"aCu" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -13581,7 +13929,7 @@ }, /turf/open/floor/plating, /area/security/brig) -"aCn" = ( +"aCv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ @@ -13594,7 +13942,7 @@ dir = 1 }, /area/security/brig) -"aCo" = ( +"aCw" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "Secure Gate"; @@ -13605,7 +13953,7 @@ }, /turf/open/floor/plating, /area/security/brig) -"aCp" = ( +"aCx" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -13628,11 +13976,30 @@ dir = 1 }, /area/security/brig) -"aCq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, +"aCy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, /area/security/brig) -"aCr" = ( +"aCz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Desk"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aCA" = ( /obj/machinery/door/airlock/security{ name = "Court Cell"; req_access = null; @@ -13640,7 +14007,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aCs" = ( +"aCB" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 @@ -13661,7 +14028,7 @@ /obj/item/device/flashlight/seclite, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aCt" = ( +"aCC" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -13670,7 +14037,7 @@ }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aCu" = ( +"aCD" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -13682,7 +14049,7 @@ }, /turf/open/floor/carpet, /area/security/detectives_office) -"aCv" = ( +"aCE" = ( /obj/structure/table/wood, /obj/item/paper_bin{ pixel_x = -3; @@ -13691,11 +14058,11 @@ /obj/item/pen, /turf/open/floor/carpet, /area/security/detectives_office) -"aCw" = ( +"aCF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/carpet, /area/security/detectives_office) -"aCx" = ( +"aCG" = ( /obj/machinery/computer/med_data{ dir = 8 }, @@ -13704,7 +14071,7 @@ }, /turf/open/floor/carpet, /area/security/detectives_office) -"aCy" = ( +"aCH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -13712,7 +14079,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/fore) -"aCz" = ( +"aCI" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, @@ -13721,11 +14088,11 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aCA" = ( +"aCJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/crew_quarters/toilet/restrooms) -"aCB" = ( +"aCK" = ( /obj/machinery/door/airlock{ name = "Unisex Showers"; req_access_txt = "0" @@ -13733,7 +14100,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aCC" = ( +"aCL" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -13742,13 +14109,13 @@ dir = 1 }, /area/crew_quarters/dorms) -"aCD" = ( +"aCM" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aCE" = ( +"aCN" = ( /obj/structure/chair/stool{ pixel_y = 8 }, @@ -13757,14 +14124,14 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aCF" = ( +"aCO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/holopad, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aCG" = ( +"aCP" = ( /obj/structure/chair/stool{ pixel_y = 8 }, @@ -13773,13 +14140,13 @@ }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/dorms) -"aCH" = ( +"aCQ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aCI" = ( +"aCR" = ( /obj/machinery/light/small{ dir = 4 }, @@ -13791,7 +14158,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"aCJ" = ( +"aCS" = ( /obj/structure/bed, /obj/item/bedsheet, /obj/machinery/button/door{ @@ -13808,7 +14175,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"aCK" = ( +"aCT" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/airalarm{ pixel_y = 23 @@ -13816,14 +14183,24 @@ /obj/item/clothing/under/suit_jacket/navy, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"aCM" = ( +"aCU" = ( +/obj/item/clothing/glasses/meson, +/obj/structure/closet/crate, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aCV" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aCN" = ( +"aCW" = ( /obj/structure/reagent_dispensers/fueltank, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -13836,19 +14213,13 @@ dir = 1 }, /area/engine/engineering) -"aCO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"aCP" = ( +"aCX" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aCQ" = ( +"aCY" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -13857,18 +14228,25 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aCR" = ( +"aCZ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/open/floor/plating, /area/engine/engineering) -"aCS" = ( +"aDa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"aDb" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel, /area/engine/engineering) -"aCT" = ( +"aDc" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -13877,7 +14255,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aCU" = ( +"aDd" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -13889,7 +14267,16 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aCV" = ( +"aDe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"aDf" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -13899,20 +14286,20 @@ /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, /area/engine/engineering) -"aCW" = ( +"aDg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, /area/engine/engineering) -"aCX" = ( +"aDh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/closed/wall/r_wall, /area/engine/engineering) -"aCY" = ( +"aDi" = ( /obj/machinery/atmospherics/pipe/simple/general/visible, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -13924,48 +14311,42 @@ }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aCZ" = ( +"aDj" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, /area/engine/engineering) -"aDa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/ore_box, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aDb" = ( -/turf/closed/wall, -/area/construction/mining/aux_base) -"aDc" = ( -/obj/structure/closet/crate, -/obj/item/coin/silver, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aDe" = ( -/obj/structure/closet/crate, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/mining) -"aDf" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ +"aDk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/structure/window/reinforced{ - dir = 1 +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/engineering) +"aDl" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"aDm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/obj/structure/window/reinforced{ - dir = 8 +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plating, +/area/engine/engineering) +"aDn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/turf/open/floor/plating/airless, -/area/shuttle/mining) -"aDg" = ( -/obj/structure/ore_box, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/mining) -"aDh" = ( +/turf/closed/wall/r_wall, +/area/engine/engineering) +"aDo" = ( +/turf/closed/wall, +/area/construction/mining/aux_base) +"aDp" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -13975,19 +14356,26 @@ }, /obj/machinery/computer/shuttle/mining{ dir = 4; - req_access = "0"; - req_one_access = "0" + req_access = null; + req_one_access = null }, /turf/open/floor/plasteel/brown{ dir = 9 }, /area/quartermaster/miningoffice) -"aDi" = ( +"aDq" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/landmark/start/shaft_miner, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aDj" = ( +"aDr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"aDs" = ( /obj/structure/closet/secure_closet/miner, /obj/machinery/airalarm{ dir = 8; @@ -13997,12 +14385,12 @@ dir = 4 }, /area/quartermaster/miningoffice) -"aDk" = ( +"aDt" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aDl" = ( +"aDu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -14013,14 +14401,14 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aDm" = ( +"aDv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/effect/landmark/start/cargo_technician, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aDn" = ( +"aDw" = ( /obj/item/stack/sheet/cardboard, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -14030,7 +14418,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aDo" = ( +"aDx" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -14039,20 +14427,20 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aDp" = ( +"aDy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /turf/closed/wall/r_wall, /area/security/nuke_storage) -"aDq" = ( -/obj/structure/sign/securearea, +"aDz" = ( +/obj/structure/sign/warning/securearea, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/closed/wall/r_wall, /area/security/nuke_storage) -"aDr" = ( +"aDA" = ( /obj/machinery/door/airlock/vault{ icon_state = "door_locked"; locked = 1; @@ -14066,18 +14454,11 @@ dir = 5 }, /area/security/nuke_storage) -"aDs" = ( -/obj/structure/sign/securearea, +"aDB" = ( +/obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/security/nuke_storage) -"aDt" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/floor/plating, -/area/shuttle/labor) -"aDu" = ( -/turf/closed/wall, -/area/hallway/primary/fore) -"aDv" = ( +"aDC" = ( /obj/machinery/door/poddoor/preopen{ id = "prison release"; name = "prisoner processing blast door" @@ -14091,29 +14472,29 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aDw" = ( +"aDD" = ( /turf/open/floor/plasteel/red/corner{ dir = 1 }, /area/hallway/primary/fore) -"aDx" = ( +"aDE" = ( /obj/structure/chair/stool, /turf/open/floor/plasteel/red/corner{ dir = 1 }, /area/hallway/primary/fore) -"aDy" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; +"aDF" = ( +/obj/structure/sign/warning/electricshock{ pixel_y = 32 }, /turf/open/floor/plasteel/red/corner{ dir = 1 }, /area/hallway/primary/fore) -"aDz" = ( +"aDG" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, /obj/machinery/camera{ c_tag = "Fore Primary Hallway Cells"; dir = 2; @@ -14123,7 +14504,7 @@ dir = 1 }, /area/hallway/primary/fore) -"aDA" = ( +"aDH" = ( /obj/machinery/light{ dir = 1 }, @@ -14134,16 +14515,16 @@ dir = 1 }, /area/hallway/primary/fore) -"aDB" = ( +"aDI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/corner{ dir = 1 }, /area/hallway/primary/fore) -"aDC" = ( +"aDJ" = ( /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aDD" = ( +"aDK" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -14152,7 +14533,7 @@ dir = 4 }, /area/hallway/primary/fore) -"aDE" = ( +"aDL" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -14163,7 +14544,8 @@ }, /turf/open/floor/plating, /area/security/brig) -"aDF" = ( +"aDM" = ( +/obj/machinery/computer/secure_data, /obj/machinery/button/flasher{ id = "secentranceflasher"; name = "Brig Entrance Flash Control"; @@ -14210,14 +14592,17 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aDG" = ( +"aDN" = ( +/obj/structure/filingcabinet/chestdrawer{ + pixel_y = 3 + }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aDO" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aDH" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -14240,12 +14625,9 @@ pixel_x = 29; pixel_y = -2 }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_y = 3 - }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aDI" = ( +"aDP" = ( /obj/machinery/requests_console{ department = "Detective's office"; pixel_x = -30 @@ -14258,13 +14640,13 @@ /obj/item/device/camera/detective, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aDJ" = ( +"aDQ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aDK" = ( +"aDR" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -14273,7 +14655,7 @@ }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aDL" = ( +"aDS" = ( /obj/machinery/light/small, /obj/item/device/radio/intercom{ freerange = 0; @@ -14289,7 +14671,7 @@ }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aDM" = ( +"aDT" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -14301,7 +14683,7 @@ }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aDN" = ( +"aDU" = ( /obj/structure/rack, /obj/item/storage/briefcase{ pixel_x = -3; @@ -14313,7 +14695,7 @@ }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aDO" = ( +"aDV" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -14323,7 +14705,7 @@ icon_state = "platingdmg1" }, /area/maintenance/fore) -"aDP" = ( +"aDW" = ( /obj/structure/toilet{ pixel_y = 8 }, @@ -14344,14 +14726,14 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aDQ" = ( +"aDX" = ( /obj/machinery/door/airlock{ id_tag = "Toilet3"; name = "Unit 3" }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aDR" = ( +"aDY" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -14360,7 +14742,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aDS" = ( +"aDZ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -14372,7 +14754,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aDT" = ( +"aEa" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -14384,14 +14766,14 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aDU" = ( +"aEb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aDV" = ( +"aEc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -14404,13 +14786,13 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aDW" = ( +"aEd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall, /area/crew_quarters/toilet/restrooms) -"aDX" = ( +"aEe" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -14424,36 +14806,36 @@ dir = 1 }, /area/crew_quarters/dorms) -"aDY" = ( +"aEf" = ( /obj/structure/chair/stool{ pixel_y = 8 }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aDZ" = ( +"aEg" = ( /obj/structure/table, /obj/item/storage/pill_bottle/dice, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aEa" = ( +"aEh" = ( /obj/structure/table, /obj/item/storage/crayons, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aEb" = ( +"aEi" = ( /obj/structure/table, /obj/item/toy/cards/deck, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aEc" = ( +"aEj" = ( /obj/structure/chair/stool{ pixel_y = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aEd" = ( +"aEk" = ( /obj/machinery/door/airlock{ id_tag = "Cabin6"; name = "Cabin 2" @@ -14463,24 +14845,34 @@ }, /turf/open/floor/wood, /area/crew_quarters/dorms) -"aEe" = ( +"aEl" = ( /obj/effect/landmark/xeno_spawn, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"aEf" = ( +"aEm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"aEg" = ( +"aEn" = ( /obj/machinery/light/small, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"aEh" = ( +"aEo" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aEp" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/machinery/airalarm{ dir = 4; @@ -14493,27 +14885,27 @@ dir = 1 }, /area/engine/engineering) -"aEi" = ( +"aEq" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aEj" = ( +"aEr" = ( /obj/effect/landmark/start/station_engineer, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aEk" = ( +"aEs" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aEl" = ( +"aEt" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -14528,7 +14920,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aEm" = ( +"aEu" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ name = "Engineering Storage"; @@ -14547,7 +14939,7 @@ dir = 1 }, /area/engine/engineering) -"aEn" = ( +"aEv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -14560,7 +14952,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aEo" = ( +"aEw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -14570,7 +14962,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aEp" = ( +"aEx" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -14586,7 +14978,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aEq" = ( +"aEy" = ( /obj/structure/cable/white{ icon_state = "4-8" }, @@ -14598,7 +14990,23 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aEr" = ( +"aEz" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/engineering) +"aEA" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"aEB" = ( /obj/structure/cable/white{ icon_state = "4-8" }, @@ -14607,50 +15015,154 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aEt" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 +"aEC" = ( +/obj/structure/cable/white{ + icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ - dir = 6 +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/machinery/light_switch{ - pixel_y = 28 +/obj/machinery/light{ + dir = 1 }, -/turf/open/floor/plasteel/floorgrime, -/area/quartermaster/warehouse) -"aEu" = ( -/obj/structure/shuttle/engine/propulsion/burst, -/obj/structure/window/reinforced{ +/turf/open/floor/engine, +/area/engine/engineering) +"aED" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + name = "Mix to Gas" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"aEE" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"aEF" = ( +/obj/machinery/atmospherics/components/binary/pump{ dir = 1; - layer = 2.9 + name = "Gas to Mix" }, -/turf/open/floor/plating/airless, -/area/shuttle/mining) -"aEv" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"aEG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"aEH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"aEI" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/engineering) +"aEJ" = ( +/obj/machinery/firealarm{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aEK" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aEL" = ( +/turf/open/floor/plating, +/area/engine/engineering) +"aEM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/ore_box, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"aEN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"aEO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"aEP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aEQ" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aER" = ( /obj/machinery/computer/security/mining{ dir = 4; network = list("MINE","AuxBase") }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aEw" = ( +"aES" = ( /obj/structure/chair/office/dark{ dir = 8 }, /obj/effect/landmark/start/shaft_miner, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aEx" = ( +"aET" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aEy" = ( +"aEU" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -14659,7 +15171,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aEz" = ( +"aEV" = ( /obj/structure/closet/secure_closet/miner, /obj/structure/extinguisher_cabinet{ pixel_x = 27 @@ -14669,7 +15181,7 @@ dir = 4 }, /area/quartermaster/miningoffice) -"aEA" = ( +"aEW" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "2-4" @@ -14680,7 +15192,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aEB" = ( +"aEX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -14693,7 +15205,21 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aED" = ( +"aEY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/rack, +/obj/item/stack/sheet/cardboard, +/obj/item/stack/rods/fifty, +/obj/item/paper, +/obj/item/storage/box/lights/mixed, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/floorgrime, +/area/quartermaster/warehouse) +"aEZ" = ( /obj/structure/closet/crate/internals, /obj/structure/cable/yellow{ icon_state = "1-4" @@ -14707,7 +15233,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aEE" = ( +"aFa" = ( /obj/machinery/power/apc{ dir = 4; name = "Warehouse APC"; @@ -14720,7 +15246,7 @@ /obj/effect/landmark/blobstart, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aEF" = ( +"aFb" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -14728,7 +15254,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/construction/storage/wing) -"aEG" = ( +"aFc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -14737,26 +15263,22 @@ dir = 5 }, /area/construction/storage/wing) -"aEH" = ( +"aFd" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" }, /turf/open/floor/plating, /area/construction/storage/wing) -"aEI" = ( +"aFe" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -22 }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aEJ" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +"aFf" = ( +/obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /obj/machinery/light/small{ @@ -14764,20 +15286,20 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aEK" = ( +"aFg" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=1.5-Fore-Central"; location = "1-BrigCells" }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aEL" = ( +"aFh" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aEM" = ( +"aFi" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -14786,7 +15308,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aEN" = ( +"aFj" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -14798,7 +15320,17 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aEO" = ( +"aFk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aFl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -14807,7 +15339,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aEP" = ( +"aFm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -14819,7 +15351,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aEQ" = ( +"aFn" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -14828,7 +15360,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aER" = ( +"aFo" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -14837,7 +15369,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aES" = ( +"aFp" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -14847,7 +15379,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aET" = ( +"aFq" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -14861,7 +15393,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aEU" = ( +"aFr" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -14870,7 +15402,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aEV" = ( +"aFs" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/westleft{ base_state = "right"; @@ -14897,7 +15429,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aEW" = ( +"aFt" = ( /obj/structure/chair/office/dark{ dir = 8 }, @@ -14906,16 +15438,19 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aEX" = ( +"aFu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aFv" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aEY" = ( /obj/machinery/airalarm{ dir = 8; pixel_x = 24 @@ -14923,18 +15458,9 @@ /obj/machinery/light/small{ dir = 4 }, -/obj/structure/table, -/obj/item/folder/red{ - pixel_x = 3 - }, -/obj/item/folder/white{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/restraints/handcuffs, /turf/open/floor/plasteel/dark, /area/security/brig) -"aEZ" = ( +"aFw" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -14944,7 +15470,7 @@ /obj/item/clothing/mask/surgical, /turf/open/floor/plasteel/dark, /area/security/detectives_office) -"aFa" = ( +"aFx" = ( /obj/machinery/door/window{ dir = 1; name = "glass door"; @@ -14952,7 +15478,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/detectives_office) -"aFb" = ( +"aFy" = ( /obj/machinery/door/airlock/maintenance{ name = "Detective Maintenance"; req_access_txt = "4" @@ -14963,7 +15489,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/fore) -"aFc" = ( +"aFz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/firealarm{ dir = 8; @@ -14976,10 +15502,10 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aFd" = ( +"aFA" = ( /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aFe" = ( +"aFB" = ( /obj/machinery/light/small, /obj/machinery/power/apc{ dir = 2; @@ -14992,7 +15518,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aFf" = ( +"aFC" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -15001,7 +15527,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aFg" = ( +"aFD" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -15011,7 +15537,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aFh" = ( +"aFE" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -15020,7 +15546,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aFi" = ( +"aFF" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Unisex Restrooms"; @@ -15034,7 +15560,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aFj" = ( +"aFG" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -15048,25 +15574,25 @@ dir = 1 }, /area/crew_quarters/dorms) -"aFk" = ( +"aFH" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/dorms) -"aFl" = ( +"aFI" = ( /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aFm" = ( +"aFJ" = ( /obj/structure/chair/stool{ pixel_y = 8 }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aFn" = ( +"aFK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aFo" = ( +"aFL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/firealarm{ dir = 4; @@ -15076,7 +15602,23 @@ dir = 2 }, /area/crew_quarters/dorms) -"aFp" = ( +"aFM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"aFN" = ( +/obj/structure/rack, +/obj/item/stock_parts/matter_bin, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard/fore) +"aFO" = ( /obj/structure/reagent_dispensers/watertank, /obj/machinery/firealarm{ dir = 8; @@ -15092,19 +15634,19 @@ dir = 1 }, /area/engine/engineering) -"aFq" = ( +"aFP" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aFr" = ( +"aFQ" = ( /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aFs" = ( +"aFR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -15113,7 +15655,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aFt" = ( +"aFS" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -15148,7 +15690,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aFu" = ( +"aFT" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -15158,7 +15700,7 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"aFv" = ( +"aFU" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -15167,23 +15709,27 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aFw" = ( +"aFV" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aFx" = ( +"aFW" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 +/turf/open/floor/plasteel, +/area/engine/engineering) +"aFX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aFz" = ( +"aFY" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ name = "Supermatter Engine"; @@ -15191,7 +15737,7 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"aFA" = ( +"aFZ" = ( /obj/structure/cable{ icon_state = "2-4" }, @@ -15200,7 +15746,7 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aFB" = ( +"aGa" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -15210,7 +15756,7 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aFC" = ( +"aGb" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -15220,7 +15766,41 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aFD" = ( +"aGc" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"aGd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"aGe" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Mix Bypass"; + on = 0 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"aGf" = ( /obj/structure/cable/white{ icon_state = "1-4" }, @@ -15230,19 +15810,85 @@ /obj/machinery/atmospherics/pipe/manifold/cyan/visible, /turf/open/floor/engine, /area/engine/engineering) -"aFE" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster{ - pixel_y = 32 +"aGg" = ( +/obj/structure/cable/white{ + icon_state = "4-8" }, -/obj/item/folder, -/obj/item/folder, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/cult{ - dir = 2 +/obj/effect/turf_decal/stripes/corner{ + dir = 1 }, -/area/library) -"aFF" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"aGh" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"aGi" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Laser Room"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aGj" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aGk" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aGl" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aGm" = ( +/turf/closed/wall/r_wall, +/area/space/nearstation) +"aGn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"aGo" = ( +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"aGp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"aGq" = ( +/obj/structure/closet/crate, +/obj/item/coin/silver, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aGr" = ( /obj/structure/table, /obj/item/folder/yellow, /obj/item/pen, @@ -15255,7 +15901,7 @@ dir = 10 }, /area/quartermaster/miningoffice) -"aFG" = ( +"aGs" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -15265,7 +15911,7 @@ dir = 2 }, /area/quartermaster/miningoffice) -"aFH" = ( +"aGt" = ( /obj/structure/rack, /obj/item/pickaxe{ pixel_x = 5 @@ -15278,7 +15924,7 @@ dir = 2 }, /area/quartermaster/miningoffice) -"aFI" = ( +"aGu" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -15287,13 +15933,13 @@ dir = 2 }, /area/quartermaster/miningoffice) -"aFJ" = ( +"aGv" = ( /obj/structure/closet/secure_closet/miner, /turf/open/floor/plasteel/brown{ dir = 6 }, /area/quartermaster/miningoffice) -"aFK" = ( +"aGw" = ( /obj/machinery/door/poddoor/shutters{ id = "qm_warehouse"; name = "Warehouse Shutters" @@ -15306,11 +15952,11 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/warehouse) -"aFL" = ( +"aGx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/quartermaster/warehouse) -"aFM" = ( +"aGy" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "0"; req_one_access_txt = "12;63;48;50" @@ -15322,10 +15968,10 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aFN" = ( +"aGz" = ( /turf/closed/wall, /area/construction/storage/wing) -"aFO" = ( +"aGA" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -15335,7 +15981,7 @@ }, /turf/open/floor/plating, /area/construction/storage/wing) -"aFP" = ( +"aGB" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -15345,7 +15991,7 @@ }, /turf/open/floor/plating, /area/construction/storage/wing) -"aFQ" = ( +"aGC" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -15354,7 +16000,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/construction/storage/wing) -"aFR" = ( +"aGD" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -15367,7 +16013,7 @@ dir = 5 }, /area/construction/storage/wing) -"aFS" = ( +"aGE" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" @@ -15375,7 +16021,7 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/construction/storage/wing) -"aFT" = ( +"aGF" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -15388,14 +16034,14 @@ }, /turf/open/floor/plating, /area/construction/storage/wing) -"aFU" = ( +"aGG" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/open/floor/plating, /area/construction/storage/wing) -"aFV" = ( +"aGH" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -15413,13 +16059,13 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aFW" = ( +"aGI" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aFX" = ( +"aGJ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -15428,7 +16074,7 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aFY" = ( +"aGK" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -15443,7 +16089,7 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aFZ" = ( +"aGL" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -15457,7 +16103,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGa" = ( +"aGM" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -15468,7 +16114,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGb" = ( +"aGN" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -15482,7 +16128,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGc" = ( +"aGO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -15493,7 +16139,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGd" = ( +"aGP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -15508,7 +16154,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGe" = ( +"aGQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -15519,7 +16165,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGf" = ( +"aGR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -15535,7 +16181,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGg" = ( +"aGS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -15543,7 +16189,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGh" = ( +"aGT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -15557,7 +16203,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGi" = ( +"aGU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -15568,7 +16214,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGj" = ( +"aGV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -15577,7 +16223,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGk" = ( +"aGW" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -15586,7 +16232,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aGl" = ( +"aGX" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -15594,7 +16240,7 @@ dir = 2 }, /area/hallway/primary/fore) -"aGm" = ( +"aGY" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -15602,7 +16248,7 @@ dir = 2 }, /area/hallway/primary/fore) -"aGn" = ( +"aGZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -15610,13 +16256,13 @@ dir = 2 }, /area/hallway/primary/fore) -"aGo" = ( +"aHa" = ( /obj/item/device/radio/beacon, /turf/open/floor/plasteel/red/corner{ dir = 2 }, /area/hallway/primary/fore) -"aGp" = ( +"aHb" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/machinery/door/poddoor/preopen{ @@ -15625,7 +16271,7 @@ }, /turf/open/floor/plating, /area/security/brig) -"aGq" = ( +"aHc" = ( /obj/machinery/computer/security{ dir = 1 }, @@ -15634,7 +16280,15 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aGr" = ( +"aHd" = ( +/obj/structure/table, +/obj/item/folder/red{ + pixel_x = 3 + }, +/obj/item/folder/white{ + pixel_x = -4; + pixel_y = 2 + }, /obj/machinery/computer/security/telescreen{ desc = "Used for watching Prison Wing holding areas."; dir = 1; @@ -15642,12 +16296,10 @@ network = list("Prison"); pixel_y = -30 }, -/obj/machinery/computer/secure_data{ - dir = 1 - }, +/obj/item/restraints/handcuffs, /turf/open/floor/plasteel/dark, /area/security/brig) -"aGs" = ( +"aHe" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -15663,22 +16315,21 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aGt" = ( +"aHf" = ( /obj/machinery/light/small{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aGu" = ( +"aHg" = ( /obj/structure/bodycontainer/morgue, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/dark, /area/security/detectives_office) -"aGv" = ( +"aHh" = ( /obj/machinery/light/small, /turf/open/floor/plasteel/dark, /area/security/detectives_office) -"aGw" = ( +"aHi" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -15690,7 +16341,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aGx" = ( +"aHj" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -15703,7 +16354,19 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/fore) -"aGy" = ( +"aHk" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/fore) +"aHl" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -15716,7 +16379,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aGz" = ( +"aHm" = ( /obj/structure/toilet{ pixel_y = 8 }, @@ -15737,38 +16400,40 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aGA" = ( +"aHn" = ( /obj/machinery/door/airlock{ id_tag = "Toilet2"; name = "Unit 2" }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aGB" = ( +"aHo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aGC" = ( +"aHp" = ( /obj/machinery/light/small{ dir = 4 }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aGD" = ( +"aHq" = ( /obj/machinery/light/small{ dir = 8 }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aGE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"aHr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/fore) -"aGF" = ( +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aHs" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -15777,7 +16442,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aGG" = ( +"aHt" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -15792,14 +16457,14 @@ dir = 1 }, /area/crew_quarters/dorms) -"aGH" = ( +"aHu" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aGI" = ( +"aHv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -15807,7 +16472,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"aGJ" = ( +"aHw" = ( /obj/machinery/light/small, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -15820,7 +16485,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"aGK" = ( +"aHx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -15829,7 +16494,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"aGL" = ( +"aHy" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -15837,7 +16502,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"aGM" = ( +"aHz" = ( /obj/machinery/door/airlock{ id_tag = "Cabin7"; name = "Cabin 1" @@ -15847,12 +16512,13 @@ }, /turf/open/floor/wood, /area/crew_quarters/dorms) -"aGN" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" +"aHA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/area/maintenance/port) -"aGO" = ( +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"aHB" = ( /obj/effect/landmark/xeno_spawn, /obj/machinery/airalarm{ pixel_y = 23 @@ -15865,12 +16531,33 @@ }, /turf/open/floor/wood, /area/crew_quarters/dorms) -"aGP" = ( +"aHC" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/item/clothing/under/assistantformal, /turf/open/floor/wood, /area/crew_quarters/dorms) -"aGQ" = ( +"aHD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aHE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"aHF" = ( /obj/structure/table, /obj/item/stack/rods/fifty, /obj/item/wrench, @@ -15882,7 +16569,7 @@ dir = 1 }, /area/engine/engineering) -"aGR" = ( +"aHG" = ( /obj/structure/table, /obj/item/stack/sheet/metal/fifty, /obj/item/stack/sheet/metal/fifty, @@ -15900,7 +16587,7 @@ dir = 1 }, /area/engine/engineering) -"aGS" = ( +"aHH" = ( /obj/structure/table, /obj/item/stack/cable_coil{ pixel_x = 3; @@ -15926,7 +16613,7 @@ dir = 1 }, /area/engine/engineering) -"aGT" = ( +"aHI" = ( /obj/structure/closet/crate{ name = "solar pack crate" }, @@ -15953,7 +16640,7 @@ dir = 1 }, /area/engine/engineering) -"aGU" = ( +"aHJ" = ( /obj/machinery/power/port_gen/pacman, /obj/structure/cable/yellow, /obj/effect/turf_decal/bot{ @@ -15963,7 +16650,7 @@ dir = 1 }, /area/engine/engineering) -"aGV" = ( +"aHK" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, @@ -15972,12 +16659,22 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aGW" = ( +"aHL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/landmark/start/station_engineer, /turf/open/floor/plasteel, /area/engine/engineering) -"aGX" = ( +"aHM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"aHN" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -15986,7 +16683,16 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aGY" = ( +"aHO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"aHP" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -15995,7 +16701,7 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aGZ" = ( +"aHQ" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/components/binary/pump{ dir = 8; @@ -16003,24 +16709,77 @@ }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aHa" = ( +"aHR" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aHS" = ( +/obj/machinery/status_display, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"aHT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"aHU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"aHV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, +/turf/open/floor/engine, +/area/engine/engineering) +"aHW" = ( /obj/structure/cable/white, /turf/open/floor/plating, /area/engine/engineering) -"aHb" = ( -/obj/machinery/camera{ - c_tag = "Auxillary Mining Base"; - dir = 1 +"aHX" = ( +/obj/structure/cable/white, +/obj/machinery/power/emitter/anchored{ + dir = 2; + state = 2 }, -/obj/structure/mining_shuttle_beacon, /turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aHc" = ( +/area/engine/engineering) +"aHY" = ( +/obj/structure/cable/white, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aHZ" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aIa" = ( /obj/effect/spawner/structure/window, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/quartermaster/miningoffice) -"aHd" = ( +"aIb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -16033,7 +16792,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aHe" = ( +"aIc" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -16044,7 +16803,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aHf" = ( +"aId" = ( /obj/machinery/button/door{ id = "qm_warehouse"; name = "Warehouse Door Control"; @@ -16059,7 +16818,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aHg" = ( +"aIe" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -16068,7 +16827,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aHh" = ( +"aIf" = ( /obj/machinery/firealarm{ pixel_y = 27 }, @@ -16077,7 +16836,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aHi" = ( +"aIg" = ( /obj/machinery/light_switch{ pixel_y = 28 }, @@ -16086,7 +16845,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aHj" = ( +"aIh" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining{ name = "Cargo Bay"; @@ -16096,7 +16855,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aHk" = ( +"aIi" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, @@ -16109,14 +16868,14 @@ }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aHl" = ( +"aIj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/light/small{ dir = 1 }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_y = 30 }, /obj/effect/turf_decal/stripes/line{ @@ -16124,7 +16883,7 @@ }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aHm" = ( +"aIk" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining{ name = "Cargo Bay"; @@ -16137,7 +16896,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aHn" = ( +"aIl" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -16146,7 +16905,7 @@ }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aHo" = ( +"aIm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16154,7 +16913,7 @@ dir = 8 }, /area/construction/storage/wing) -"aHp" = ( +"aIn" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -16162,7 +16921,7 @@ dir = 8 }, /area/construction/storage/wing) -"aHq" = ( +"aIo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16174,7 +16933,7 @@ dir = 8 }, /area/construction/storage/wing) -"aHr" = ( +"aIp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16185,7 +16944,7 @@ dir = 8 }, /area/construction/storage/wing) -"aHs" = ( +"aIq" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -16193,7 +16952,7 @@ dir = 8 }, /area/construction/storage/wing) -"aHt" = ( +"aIr" = ( /obj/machinery/vending/cigarette, /obj/machinery/newscaster{ pixel_y = 32 @@ -16204,49 +16963,49 @@ }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aHu" = ( +"aIs" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aHv" = ( +"aIt" = ( /obj/structure/chair/office/dark, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aHw" = ( +"aIu" = ( /obj/structure/table, /obj/machinery/recharger, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aHx" = ( +"aIv" = ( /turf/closed/wall/r_wall, /area/hallway/primary/fore) -"aHy" = ( +"aIw" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /turf/open/floor/plating, /area/hallway/primary/fore) -"aHz" = ( +"aIx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/red/corner{ dir = 8 }, /area/hallway/primary/fore) -"aHA" = ( +"aIy" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aHB" = ( +"aIz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/corner{ dir = 2 }, /area/hallway/primary/fore) -"aHC" = ( +"aIA" = ( /obj/structure/sign/directions/security{ desc = "A direction sign, pointing out which way the security department is."; dir = 1; @@ -16255,13 +17014,13 @@ }, /turf/closed/wall, /area/security/courtroom) -"aHD" = ( +"aIB" = ( /turf/closed/wall, /area/security/courtroom) -"aHE" = ( +"aIC" = ( /turf/closed/wall/r_wall, /area/security/courtroom) -"aHF" = ( +"aID" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ name = "Court Cell"; @@ -16270,10 +17029,10 @@ }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aHG" = ( +"aIE" = ( /turf/closed/wall, /area/lawoffice) -"aHH" = ( +"aIF" = ( /obj/machinery/door/airlock/maintenance{ name = "Law Office Maintenance"; req_access_txt = "38" @@ -16283,7 +17042,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aHI" = ( +"aIG" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -16292,7 +17051,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aHJ" = ( +"aIH" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 @@ -16302,20 +17061,20 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aHK" = ( +"aII" = ( /obj/machinery/door/airlock{ id_tag = "Toilet4"; name = "Unit 4" }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aHL" = ( +"aIJ" = ( /obj/machinery/door/airlock{ name = "Unit B" }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aHM" = ( +"aIK" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -16331,14 +17090,14 @@ dir = 1 }, /area/crew_quarters/dorms) -"aHN" = ( +"aIL" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aHO" = ( +"aIM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -16346,27 +17105,34 @@ dir = 2 }, /area/crew_quarters/dorms) -"aHQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ +"aIN" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/structure/sign/poster/official/random{ + pixel_y = -32 }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aHR" = ( +/turf/open/floor/plasteel/vault, +/area/crew_quarters/dorms) +"aIO" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/under/assistantformal, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/turf/open/floor/plasteel/vault, +/area/crew_quarters/dorms) +"aIP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/structure/closet/wardrobe/pjs, /turf/open/floor/plasteel/vault, /area/crew_quarters/dorms) -"aHS" = ( +"aIQ" = ( /obj/machinery/button/door{ id = "Cabin7"; name = "Door Bolt Control"; @@ -16382,13 +17148,13 @@ }, /turf/open/floor/wood, /area/crew_quarters/dorms) -"aHT" = ( +"aIR" = ( /obj/structure/chair/wood/normal{ dir = 4 }, /turf/open/floor/wood, /area/crew_quarters/dorms) -"aHU" = ( +"aIS" = ( /obj/structure/table/wood, /obj/machinery/newscaster{ pixel_x = 29; @@ -16397,7 +17163,7 @@ /obj/item/paper, /turf/open/floor/wood, /area/crew_quarters/dorms) -"aHV" = ( +"aIT" = ( /obj/structure/closet, /obj/item/storage/box/donkpockets, /obj/effect/spawner/lootdrop/maintenance{ @@ -16406,16 +17172,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aHW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"aHX" = ( +"aIU" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -16425,11 +17182,11 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aHY" = ( +"aIV" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/engineering) -"aHZ" = ( +"aIW" = ( /obj/item/clothing/gloves/color/yellow, /obj/item/clothing/gloves/color/yellow, /obj/item/clothing/gloves/color/yellow, @@ -16444,37 +17201,56 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aIc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plating, -/area/engine/engineering) -"aIe" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +"aIX" = ( +/obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/engine/engineering) -"aIf" = ( +"aIY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"aIZ" = ( +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"aJa" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"aJb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"aJc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"aJd" = ( /obj/machinery/camera{ - c_tag = "Auxillary Base Construction"; + c_tag = "Auxillary Mining Base"; dir = 1 }, -/obj/machinery/button/door{ - id = "aux_base_shutters"; - name = "Public Shutters Control"; - pixel_y = -24; - req_access_txt = "0"; - req_one_access_txt = "32;47;48" - }, -/turf/open/floor/plasteel/yellow/side, -/area/construction/mining/aux_base) -"aIg" = ( +/obj/structure/mining_shuttle_beacon, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"aJe" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/quartermaster/storage) -"aIh" = ( +"aJf" = ( /obj/item/device/radio/intercom{ dir = 4; name = "Station Intercom (General)"; @@ -16492,14 +17268,14 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aIi" = ( +"aJg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/loading_area{ dir = 4 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aIj" = ( +"aJh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -16508,7 +17284,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aIk" = ( +"aJi" = ( /obj/structure/sign/map/left{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; @@ -16522,7 +17298,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aIl" = ( +"aJj" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -16544,7 +17320,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aIm" = ( +"aJk" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -16562,7 +17338,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aIn" = ( +"aJl" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -16574,7 +17350,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aIo" = ( +"aJm" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -16590,7 +17366,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aIp" = ( +"aJn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16605,7 +17381,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aIq" = ( +"aJo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16620,7 +17396,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aIr" = ( +"aJp" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -16636,7 +17412,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aIs" = ( +"aJq" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -16651,7 +17427,7 @@ }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aIt" = ( +"aJr" = ( /obj/machinery/camera{ c_tag = "Cargo Bay - Storage Wing Entrance"; dir = 1; @@ -16662,7 +17438,7 @@ }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aIu" = ( +"aJs" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -16682,16 +17458,21 @@ dir = 4 }, /area/construction/storage/wing) -"aIv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +"aJt" = ( /obj/structure/cable/yellow{ - icon_state = "1-2" + icon_state = "4-8" }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/area/maintenance/starboard/fore) -"aIw" = ( +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/brown/corner{ + dir = 4 + }, +/area/construction/storage/wing) +"aJu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -16705,7 +17486,7 @@ dir = 4 }, /area/construction/storage/wing) -"aIx" = ( +"aJv" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -16732,7 +17513,7 @@ dir = 4 }, /area/construction/storage/wing) -"aIy" = ( +"aJw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -16743,7 +17524,7 @@ dir = 4 }, /area/construction/storage/wing) -"aIz" = ( +"aJx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -16761,7 +17542,7 @@ dir = 4 }, /area/construction/storage/wing) -"aIA" = ( +"aJy" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -16770,7 +17551,7 @@ }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aIB" = ( +"aJz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -16779,7 +17560,7 @@ }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aIC" = ( +"aJA" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -16794,7 +17575,7 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aID" = ( +"aJB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -16806,7 +17587,7 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aIE" = ( +"aJC" = ( /obj/structure/table, /obj/item/folder/red, /obj/item/restraints/handcuffs, @@ -16818,7 +17599,7 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aIF" = ( +"aJD" = ( /obj/machinery/light/small, /obj/structure/table, /obj/item/paper_bin{ @@ -16834,21 +17615,21 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aIG" = ( +"aJE" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/open/floor/plating, /area/hallway/primary/fore) -"aIH" = ( +"aJF" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" }, /turf/open/floor/plating, /area/hallway/primary/fore) -"aII" = ( +"aJG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -16857,7 +17638,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aIJ" = ( +"aJH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -16869,7 +17650,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aIK" = ( +"aJI" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -16877,7 +17658,7 @@ dir = 2 }, /area/hallway/primary/fore) -"aIL" = ( +"aJJ" = ( /obj/structure/closet/secure_closet/courtroom, /obj/machinery/light_switch{ pixel_y = 28 @@ -16886,13 +17667,13 @@ /obj/item/gavelhammer, /turf/open/floor/plasteel, /area/security/courtroom) -"aIM" = ( +"aJK" = ( /obj/structure/chair{ name = "Bailiff" }, /turf/open/floor/plasteel, /area/security/courtroom) -"aIN" = ( +"aJL" = ( /obj/item/device/radio/intercom{ broadcasting = 0; listening = 1; @@ -16901,7 +17682,7 @@ }, /turf/open/floor/plasteel, /area/security/courtroom) -"aIO" = ( +"aJM" = ( /obj/structure/chair{ name = "Judge" }, @@ -16909,7 +17690,7 @@ dir = 9 }, /area/security/courtroom) -"aIP" = ( +"aJN" = ( /obj/structure/chair{ name = "Judge" }, @@ -16928,7 +17709,7 @@ dir = 1 }, /area/security/courtroom) -"aIQ" = ( +"aJO" = ( /obj/structure/chair{ name = "Judge" }, @@ -16936,19 +17717,19 @@ dir = 5 }, /area/security/courtroom) -"aIR" = ( +"aJP" = ( /turf/open/floor/plasteel, /area/security/courtroom) -"aIS" = ( +"aJQ" = ( /obj/structure/window/reinforced{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aIT" = ( +"aJR" = ( /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aIU" = ( +"aJS" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ pixel_x = 1; @@ -16963,7 +17744,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aIV" = ( +"aJT" = ( /obj/structure/table/wood, /obj/item/book/manual/wiki/security_space_law, /obj/item/book/manual/wiki/security_space_law, @@ -16976,7 +17757,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aIW" = ( +"aJU" = ( /obj/structure/rack, /obj/item/storage/briefcase{ pixel_x = -3; @@ -16989,7 +17770,7 @@ /obj/item/clothing/glasses/sunglasses, /turf/open/floor/wood, /area/lawoffice) -"aIX" = ( +"aJV" = ( /obj/structure/cable/yellow{ icon_state = "0-2" }, @@ -17004,13 +17785,13 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aIY" = ( +"aJW" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/wood, /area/lawoffice) -"aIZ" = ( +"aJX" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -17021,7 +17802,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aJa" = ( +"aJY" = ( /obj/structure/toilet{ pixel_y = 8 }, @@ -17042,14 +17823,14 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aJb" = ( +"aJZ" = ( /obj/machinery/door/airlock{ id_tag = "Toilet1"; name = "Unit 1" }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aJc" = ( +"aKa" = ( /obj/structure/toilet{ dir = 4 }, @@ -17070,12 +17851,12 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aJd" = ( +"aKb" = ( /obj/machinery/light/small, /obj/machinery/recharge_station, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aJe" = ( +"aKc" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -17084,37 +17865,40 @@ dir = 1 }, /area/crew_quarters/dorms) -"aJf" = ( +"aKd" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aJg" = ( +"aKe" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/neutral/corner{ dir = 2 }, /area/crew_quarters/dorms) -"aJh" = ( +"aKf" = ( /turf/closed/wall, /area/hydroponics/garden) -"aJi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, +"aKg" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, /turf/open/floor/plating, -/area/maintenance/port/fore) -"aJj" = ( +/area/maintenance/starboard/fore) +"aKh" = ( /obj/effect/decal/cleanable/cobweb, /obj/machinery/field/generator, /turf/open/floor/plating, /area/engine/engineering) -"aJk" = ( +"aKi" = ( /obj/machinery/field/generator, /turf/open/floor/plating, /area/engine/engineering) -"aJl" = ( +"aKj" = ( /obj/machinery/shieldgen, /obj/machinery/light/small{ dir = 1 @@ -17126,17 +17910,17 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"aJm" = ( +"aKk" = ( /obj/machinery/shieldgen, /turf/open/floor/plating, /area/engine/engineering) -"aJn" = ( +"aKl" = ( /obj/structure/table, /obj/item/airlock_painter, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/engineering) -"aJp" = ( +"aKm" = ( /obj/structure/table, /obj/effect/turf_decal/delivery, /obj/item/clothing/glasses/meson/engine, @@ -17153,26 +17937,82 @@ /obj/item/pipe_dispenser, /turf/open/floor/plasteel, /area/engine/engineering) -"aJu" = ( -/turf/open/floor/plating, +"aKn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/engine, /area/engine/engineering) -"aJv" = ( +"aKo" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 6 }, /turf/closed/wall/r_wall, /area/engine/supermatter) -"aJB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK" +"aKp" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/machinery/power/rad_collector/anchored, +/obj/structure/cable, +/obj/structure/window/plasma/reinforced, +/turf/open/floor/engine, +/area/engine/supermatter) +"aKq" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/machinery/power/rad_collector/anchored, +/obj/structure/cable, +/obj/structure/window/plasma/reinforced, +/turf/open/floor/engine, +/area/engine/supermatter) +"aKr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, +/turf/open/floor/engine, +/area/engine/engineering) +"aKs" = ( +/obj/structure/window/reinforced, +/turf/open/space, +/area/space/nearstation) +"aKt" = ( +/obj/machinery/light{ + dir = 4 }, /turf/open/floor/plating, +/area/shuttle/auxillary_base) +"aKu" = ( +/obj/docking_port/mobile/auxillary_base{ + dheight = 4; + dir = 2; + dwidth = 4; + height = 9; + width = 9; + timid = 0 + }, +/obj/machinery/bluespace_beacon, +/obj/machinery/computer/auxillary_base, +/turf/closed/wall, +/area/shuttle/auxillary_base) +"aKv" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"aKw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/turf/open/floor/plating, /area/quartermaster/storage) -"aJC" = ( +"aKx" = ( /obj/machinery/light{ dir = 8 }, @@ -17183,7 +18023,7 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aJD" = ( +"aKy" = ( /obj/machinery/conveyor_switch/oneway{ convdir = 1; id = "QMLoad2"; @@ -17197,31 +18037,31 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aJE" = ( +"aKz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aJF" = ( +"aKA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aJG" = ( +"aKB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aJH" = ( +"aKC" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aJI" = ( +"aKD" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -17231,7 +18071,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aJJ" = ( +"aKE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -17244,7 +18084,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aJK" = ( +"aKF" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; dir = 8; @@ -17266,7 +18106,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aJL" = ( +"aKG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -17277,7 +18117,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aJM" = ( +"aKH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -17287,14 +18127,14 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aJN" = ( +"aKI" = ( /turf/closed/wall, /area/storage/primary) -"aJO" = ( +"aKJ" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/storage/primary) -"aJP" = ( +"aKK" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Primary Tool Storage" @@ -17303,7 +18143,7 @@ dir = 2 }, /area/storage/primary) -"aJQ" = ( +"aKL" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Primary Tool Storage" @@ -17313,13 +18153,13 @@ dir = 2 }, /area/storage/primary) -"aJR" = ( +"aKM" = ( /turf/closed/wall/r_wall, /area/storage/primary) -"aJS" = ( +"aKN" = ( /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai_upload) -"aJT" = ( +"aKO" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -17327,7 +18167,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aJU" = ( +"aKP" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -17336,7 +18176,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aJV" = ( +"aKQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -17345,7 +18185,7 @@ dir = 2 }, /area/hallway/primary/fore) -"aJW" = ( +"aKR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -17357,18 +18197,18 @@ }, /turf/open/floor/plasteel, /area/security/courtroom) -"aJX" = ( +"aKS" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/plasteel, /area/security/courtroom) -"aJY" = ( +"aKT" = ( /turf/open/floor/plasteel/neutral/side{ dir = 9 }, /area/security/courtroom) -"aJZ" = ( +"aKU" = ( /obj/structure/table/wood, /obj/item/device/radio/intercom{ broadcasting = 1; @@ -17380,7 +18220,7 @@ dir = 1 }, /area/security/courtroom) -"aKa" = ( +"aKV" = ( /obj/structure/table/wood, /obj/item/gavelblock, /obj/item/gavelhammer, @@ -17388,19 +18228,19 @@ dir = 1 }, /area/security/courtroom) -"aKb" = ( +"aKW" = ( /obj/structure/table/wood, /obj/item/book/manual/wiki/security_space_law, /turf/open/floor/plasteel/neutral/side{ dir = 1 }, /area/security/courtroom) -"aKc" = ( +"aKX" = ( /turf/open/floor/plasteel/neutral/side{ dir = 5 }, /area/security/courtroom) -"aKd" = ( +"aKY" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 @@ -17412,14 +18252,14 @@ dir = 8 }, /area/security/courtroom) -"aKe" = ( +"aKZ" = ( /obj/machinery/door/window/southleft{ name = "Court Cell"; req_access_txt = "2" }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aKf" = ( +"aLa" = ( /obj/effect/landmark/start/lawyer, /obj/structure/chair/office/dark{ dir = 4 @@ -17431,7 +18271,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aKg" = ( +"aLb" = ( /obj/structure/table/wood, /obj/item/folder/blue, /obj/item/folder/blue, @@ -17440,13 +18280,13 @@ /obj/item/stamp/law, /turf/open/floor/wood, /area/lawoffice) -"aKh" = ( +"aLc" = ( /obj/structure/chair{ dir = 8 }, /turf/open/floor/wood, /area/lawoffice) -"aKi" = ( +"aLd" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -17455,7 +18295,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aKj" = ( +"aLe" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -17465,7 +18305,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aKk" = ( +"aLf" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -17477,7 +18317,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aKl" = ( +"aLg" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Unisex Restrooms"; @@ -17485,7 +18325,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aKm" = ( +"aLh" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -17499,12 +18339,12 @@ dir = 1 }, /area/crew_quarters/dorms) -"aKn" = ( +"aLi" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/crew_quarters/dorms) -"aKo" = ( +"aLj" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/airlock{ @@ -17515,7 +18355,7 @@ dir = 4 }, /area/crew_quarters/dorms) -"aKp" = ( +"aLk" = ( /obj/item/reagent_containers/spray/plantbgone, /obj/item/reagent_containers/spray/pestspray{ pixel_x = 3; @@ -17533,7 +18373,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aKq" = ( +"aLl" = ( /obj/machinery/biogenerator, /obj/machinery/firealarm{ pixel_y = 27 @@ -17541,7 +18381,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aKr" = ( +"aLm" = ( /obj/structure/table, /obj/item/cultivator, /obj/item/hatchet, @@ -17554,7 +18394,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aKs" = ( +"aLn" = ( /obj/machinery/seed_extractor, /obj/machinery/airalarm{ pixel_y = 23 @@ -17562,7 +18402,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aKt" = ( +"aLo" = ( /obj/item/seeds/apple, /obj/item/seeds/banana, /obj/item/seeds/cocoapod, @@ -17576,65 +18416,52 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aKu" = ( +"aLp" = ( /obj/structure/window/reinforced{ dir = 8 }, /turf/open/floor/grass, /area/hydroponics/garden) -"aKv" = ( +"aLq" = ( /mob/living/simple_animal/chicken{ name = "Featherbottom"; real_name = "Featherbottom" }, /turf/open/floor/grass, /area/hydroponics/garden) -"aKw" = ( +"aLr" = ( /obj/effect/decal/cleanable/cobweb, /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/item/wirecutters, /obj/item/weldingtool, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aKx" = ( +"aLs" = ( /obj/machinery/portable_atmospherics/canister/toxins, /turf/open/floor/plating, /area/engine/engineering) -"aKy" = ( -/obj/effect/landmark/revenantspawn, -/turf/open/floor/plating, -/area/engine/engineering) -"aKz" = ( +"aLt" = ( /obj/machinery/door/poddoor{ id = "Secure Storage"; name = "Secure Storage" }, /turf/open/floor/plating, /area/engine/engineering) -"aKA" = ( +"aLu" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aKB" = ( +"aLv" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/engineering) -"aKC" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/engineering) -"aKF" = ( +"aLw" = ( /obj/machinery/button/door{ id = "engsm"; name = "Radiation Shutters Control"; @@ -17649,13 +18476,13 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aKG" = ( +"aLx" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /turf/closed/wall/r_wall, /area/engine/supermatter) -"aKH" = ( +"aLy" = ( /obj/machinery/atmospherics/components/binary/pump/on{ dir = 4; name = "Gas to Chamber"; @@ -17663,26 +18490,100 @@ }, /turf/open/floor/engine, /area/engine/supermatter) -"aKI" = ( +"aLz" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 9 }, /obj/machinery/meter, /turf/closed/wall/r_wall, /area/engine/supermatter) -"aKL" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Mix Bypass"; - on = 0 +"aLA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 }, /turf/open/floor/engine, +/area/engine/supermatter) +"aLB" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"aLC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Starboard"; + dir = 4; + network = list("SS13","Engine") + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/engine, /area/engine/engineering) -"aKN" = ( +"aLD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"aLE" = ( +/obj/structure/reflector/single/anchored{ + dir = 9 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aLF" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"aLG" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"aLH" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"aLI" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/aisat) +"aLJ" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"aLK" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"aLL" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aLM" = ( /obj/machinery/door/poddoor{ density = 1; icon_state = "closed"; @@ -17697,7 +18598,7 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aKO" = ( +"aLN" = ( /obj/structure/plasticflaps, /obj/machinery/conveyor{ dir = 4; @@ -17706,7 +18607,7 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aKP" = ( +"aLO" = ( /obj/machinery/conveyor{ dir = 1; id = "QMLoad2"; @@ -17714,36 +18615,36 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aKQ" = ( +"aLP" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aKR" = ( +"aLQ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aKS" = ( +"aLR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aKT" = ( +"aLS" = ( /obj/structure/closet/crate, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, -/obj/item/ore/glass, -/obj/item/ore/iron, +/obj/item/stack/ore/glass, +/obj/item/stack/ore/iron, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aKU" = ( +"aLT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -17751,7 +18652,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aKV" = ( +"aLU" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -17760,21 +18661,21 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aKW" = ( +"aLV" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aKX" = ( +"aLW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/loading_area{ dir = 8 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aKY" = ( +"aLX" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; dir = 8; @@ -17787,7 +18688,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aKZ" = ( +"aLY" = ( /obj/machinery/door/window/northleft{ dir = 8; name = "MuleBot Supply Access"; @@ -17798,7 +18699,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aLa" = ( +"aLZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -17810,7 +18711,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aLb" = ( +"aMa" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -17820,7 +18721,7 @@ /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/port/fore) -"aLc" = ( +"aMb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -17829,11 +18730,18 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aLd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"aLe" = ( +"aMc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"aMd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -17845,7 +18753,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aLf" = ( +"aMe" = ( /obj/structure/table, /obj/item/clothing/gloves/color/fyellow, /obj/item/device/gps{ @@ -17855,18 +18763,18 @@ dir = 9 }, /area/storage/primary) -"aLg" = ( +"aMf" = ( /turf/open/floor/plasteel/brown{ dir = 1 }, /area/storage/primary) -"aLh" = ( +"aMg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/brown{ dir = 1 }, /area/storage/primary) -"aLi" = ( +"aMh" = ( /obj/structure/table, /obj/item/stack/cable_coil{ pixel_x = 2; @@ -17887,7 +18795,7 @@ dir = 1 }, /area/storage/primary) -"aLj" = ( +"aMi" = ( /obj/structure/table, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high{ @@ -17901,23 +18809,25 @@ dir = 1 }, /area/storage/primary) -"aLk" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" +"aMj" = ( +/obj/machinery/vending/assist, +/obj/machinery/light/small{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 +/obj/structure/sign/poster/official/random{ + pixel_y = 32 }, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aLl" = ( +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/storage/primary) +"aMk" = ( /obj/machinery/vending/tool, /turf/open/floor/plasteel/brown{ dir = 1 }, /area/storage/primary) -"aLm" = ( +"aMl" = ( /obj/structure/table, /obj/item/device/assembly/signaler, /obj/item/device/assembly/signaler, @@ -17932,33 +18842,33 @@ dir = 5 }, /area/storage/primary) -"aLn" = ( +"aMm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/storage/primary) -"aLo" = ( +"aMn" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/space, /area/space/nearstation) -"aLp" = ( +"aMo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai_upload) -"aLq" = ( +"aMp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/machinery/porta_turret/ai, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aLr" = ( +"aMq" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -17968,8 +18878,8 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aLs" = ( -/obj/structure/sign/kiddieplaque{ +"aMr" = ( +/obj/structure/sign/plaques/kiddie{ pixel_y = 32 }, /obj/structure/table, @@ -17982,7 +18892,7 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aLt" = ( +"aMs" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -17991,33 +18901,33 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aLu" = ( +"aMt" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/porta_turret/ai, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aLv" = ( +"aMu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai_upload) -"aLw" = ( +"aMv" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/space, /area/space/nearstation) -"aLx" = ( +"aMw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/hallway/primary/fore) -"aLy" = ( +"aMx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/airalarm{ dir = 4; @@ -18030,32 +18940,36 @@ dir = 8 }, /area/hallway/primary/fore) -"aLz" = ( +"aMy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/security/courtroom) -"aLA" = ( +"aMz" = ( /turf/open/floor/plasteel/neutral/side{ dir = 8 }, /area/security/courtroom) -"aLB" = ( +"aMA" = ( /obj/effect/landmark/start/lawyer, /turf/open/floor/plasteel, /area/security/courtroom) -"aLC" = ( +"aMB" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aMC" = ( /turf/open/floor/plasteel/neutral/side{ dir = 4 }, /area/security/courtroom) -"aLD" = ( +"aMD" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/machinery/light{ dir = 8 }, /turf/open/floor/wood, /area/lawoffice) -"aLE" = ( +"aME" = ( /obj/structure/table/wood, /obj/item/folder/red, /obj/item/folder/red, @@ -18063,14 +18977,14 @@ /obj/item/clothing/glasses/sunglasses/big, /turf/open/floor/wood, /area/lawoffice) -"aLF" = ( +"aMF" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/wood, /area/lawoffice) -"aLG" = ( +"aMG" = ( /obj/machinery/photocopier, /obj/machinery/camera{ c_tag = "Law Office"; @@ -18079,7 +18993,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aLH" = ( +"aMH" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ @@ -18087,24 +19001,60 @@ }, /turf/open/floor/plasteel/vault, /area/crew_quarters/locker) -"aLJ" = ( -/obj/structure/rack, -/obj/item/stock_parts/matter_bin, -/turf/open/floor/plating{ - icon_state = "platingdmg2" +"aMI" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/under/assistantformal, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/turf/open/floor/plasteel/vault, +/area/crew_quarters/locker) +"aMJ" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/light/small{ + dir = 1 }, -/area/maintenance/starboard/fore) -"aLK" = ( +/obj/item/clothing/under/assistantformal, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/turf/open/floor/plasteel/vault, +/area/crew_quarters/locker) +"aMK" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/under/assistantformal, +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/turf/open/floor/plasteel/vault, +/area/crew_quarters/locker) +"aML" = ( /turf/open/floor/plasteel/neutral/corner{ dir = 1 }, /area/crew_quarters/locker) -"aLL" = ( +"aMM" = ( /turf/open/floor/plasteel/neutral/corner{ dir = 4 }, /area/crew_quarters/locker) -"aLN" = ( +"aMN" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"aMO" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/machinery/portable_atmospherics/pump, /obj/machinery/light/small{ @@ -18116,7 +19066,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aLO" = ( +"aMP" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/machinery/portable_atmospherics/scrubber, /obj/machinery/status_display{ @@ -18125,7 +19075,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aLP" = ( +"aMQ" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/machinery/portable_atmospherics/scrubber, /obj/item/device/radio/intercom{ @@ -18140,7 +19090,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aLQ" = ( +"aMR" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /obj/machinery/camera{ @@ -18148,13 +19098,13 @@ dir = 2; network = list("SS13") }, -/obj/structure/sign/pods{ +/obj/structure/sign/warning/pods{ pixel_y = 30 }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aLR" = ( +"aMS" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -18163,11 +19113,11 @@ dir = 1 }, /area/crew_quarters/locker) -"aLS" = ( +"aMT" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/locker) -"aLT" = ( +"aMU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/light/small{ dir = 4 @@ -18176,7 +19126,7 @@ dir = 4 }, /area/crew_quarters/locker) -"aLU" = ( +"aMV" = ( /obj/structure/sink{ dir = 8; pixel_x = -12; @@ -18192,7 +19142,7 @@ dir = 9 }, /area/hydroponics/garden) -"aLV" = ( +"aMW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -18200,7 +19150,7 @@ dir = 1 }, /area/hydroponics/garden) -"aLW" = ( +"aMX" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -18208,40 +19158,38 @@ dir = 5 }, /area/hydroponics/garden) -"aLX" = ( -/obj/machinery/door/firedoor/border_only{ - density = 1; +"aMY" = ( +/obj/machinery/door/firedoor/border_only/closed{ dir = 8; - icon_state = "door_closed"; name = "Animal Pen A"; opacity = 1 }, /turf/open/floor/grass, /area/hydroponics/garden) -"aLY" = ( +"aMZ" = ( /turf/open/floor/grass, /area/hydroponics/garden) -"aLZ" = ( +"aNa" = ( /obj/effect/landmark/blobstart, /turf/open/floor/plating{ icon_state = "platingdmg1" }, /area/maintenance/starboard/fore) -"aMa" = ( +"aNb" = ( /obj/machinery/power/emitter, /turf/open/floor/plating, /area/engine/engineering) -"aMb" = ( +"aNc" = ( /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/engine/engineering) -"aMc" = ( +"aNd" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aMd" = ( +"aNe" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "2-4" @@ -18249,7 +19197,7 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/engine/engineering) -"aMe" = ( +"aNf" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -18260,7 +19208,16 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/engine/engineering) -"aMg" = ( +"aNg" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"aNh" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ icon_state = "4-8" @@ -18271,7 +19228,7 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"aMh" = ( +"aNi" = ( /obj/structure/cable{ icon_state = "2-8" }, @@ -18283,7 +19240,7 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aMi" = ( +"aNj" = ( /obj/machinery/atmospherics/components/binary/pump/on{ name = "Gas to Filter" }, @@ -18292,7 +19249,7 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aMj" = ( +"aNk" = ( /obj/machinery/door/airlock/engineering/glass{ heat_proof = 1; name = "Supermatter Chamber"; @@ -18300,58 +19257,110 @@ }, /turf/open/floor/engine, /area/engine/supermatter) -"aMk" = ( +"aNl" = ( /turf/open/floor/engine, /area/engine/supermatter) -"aMm" = ( +"aNm" = ( +/obj/machinery/power/supermatter_shard/crystal/engine, +/turf/open/floor/engine, +/area/engine/supermatter) +"aNn" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/supermatter) +"aNo" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aMo" = ( +"aNp" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aNq" = ( /obj/structure/reflector/box/anchored{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aMq" = ( -/obj/structure/window/reinforced, -/turf/open/space, -/area/space/nearstation) -"aMr" = ( +"aNr" = ( /obj/structure/window/reinforced, /obj/structure/lattice, /turf/open/space, /area/space/nearstation) -"aMs" = ( +"aNs" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"aNt" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"aNu" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"aNv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/aisat) +"aNw" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"aNx" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"aNy" = ( +/obj/docking_port/stationary/random{ + id = "pod_lavaland1"; + name = "lavaland" + }, +/turf/open/space, +/area/space/nearstation) +"aNz" = ( /obj/machinery/door/airlock/external{ name = "Supply Dock Airlock"; req_access_txt = "31" }, /turf/open/floor/plating, /area/quartermaster/storage) -"aMt" = ( +"aNA" = ( /obj/machinery/light/small, /turf/open/floor/plating, /area/quartermaster/storage) -"aMu" = ( +"aNB" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aMv" = ( +"aNC" = ( /turf/open/floor/plasteel, /area/quartermaster/storage) -"aMw" = ( +"aND" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aMx" = ( +"aNE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/landmark/start/cargo_technician, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aMy" = ( +"aNF" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -18360,7 +19369,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aMz" = ( +"aNG" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; dir = 8; @@ -18377,7 +19386,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aMA" = ( +"aNH" = ( /obj/machinery/camera/autoname{ dir = 4; network = list("SS13") @@ -18391,28 +19400,28 @@ dir = 8 }, /area/storage/primary) -"aMB" = ( +"aNI" = ( /turf/open/floor/plasteel, /area/storage/primary) -"aMC" = ( +"aNJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/open/floor/plasteel, /area/storage/primary) -"aMD" = ( +"aNK" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, /turf/open/floor/plasteel, /area/storage/primary) -"aME" = ( +"aNL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/storage/primary) -"aMF" = ( +"aNM" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -18424,7 +19433,7 @@ dir = 4 }, /area/storage/primary) -"aMG" = ( +"aNN" = ( /obj/structure/table, /obj/item/aiModule/core/full/asimov, /obj/effect/spawner/lootdrop/aimodule_harmless, @@ -18445,10 +19454,10 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aMH" = ( +"aNO" = ( /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) -"aMI" = ( +"aNP" = ( /obj/structure/table, /obj/machinery/door/window{ base_state = "left"; @@ -18469,7 +19478,7 @@ /obj/item/aiModule/reset/purge, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aMJ" = ( +"aNQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/item/device/radio/intercom{ freerange = 0; @@ -18481,7 +19490,14 @@ dir = 8 }, /area/hallway/primary/fore) -"aMK" = ( +"aNR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aNS" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -18489,7 +19505,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/security/courtroom) -"aML" = ( +"aNT" = ( /obj/structure/chair{ dir = 4; name = "Prosecution" @@ -18498,26 +19514,26 @@ dir = 9 }, /area/security/courtroom) -"aMM" = ( +"aNU" = ( /obj/structure/table/wood, /obj/item/folder/red, /turf/open/floor/plasteel/neutral/side{ dir = 8 }, /area/security/courtroom) -"aMN" = ( +"aNV" = ( /obj/machinery/holopad, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/security/courtroom) -"aMO" = ( +"aNW" = ( /obj/structure/table/wood, /obj/item/folder/blue, /turf/open/floor/plasteel/neutral/side{ dir = 4 }, /area/security/courtroom) -"aMP" = ( +"aNX" = ( /obj/structure/chair{ dir = 8; name = "Defense" @@ -18526,7 +19542,7 @@ dir = 5 }, /area/security/courtroom) -"aMQ" = ( +"aNY" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Law Office"; @@ -18534,20 +19550,20 @@ }, /turf/open/floor/wood, /area/security/courtroom) -"aMR" = ( +"aNZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/open/floor/wood, /area/lawoffice) -"aMS" = ( +"aOa" = ( /obj/effect/landmark/start/lawyer, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/wood, /area/lawoffice) -"aMT" = ( +"aOb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -18556,7 +19572,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aMU" = ( +"aOc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -18565,7 +19581,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aMV" = ( +"aOd" = ( /obj/structure/filingcabinet/employment, /obj/machinery/airalarm{ dir = 8; @@ -18573,7 +19589,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aMW" = ( +"aOe" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -18587,7 +19603,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aMX" = ( +"aOf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -18601,7 +19617,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aMY" = ( +"aOg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -18612,7 +19628,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aMZ" = ( +"aOh" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -18623,7 +19639,7 @@ dir = 4 }, /area/crew_quarters/locker) -"aNa" = ( +"aOi" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -18634,7 +19650,7 @@ dir = 4 }, /area/crew_quarters/locker) -"aNb" = ( +"aOj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -18646,7 +19662,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aNc" = ( +"aOk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -18657,7 +19673,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aNd" = ( +"aOl" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -18671,14 +19687,14 @@ dir = 1 }, /area/crew_quarters/locker) -"aNe" = ( +"aOm" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/disposalpipe/segment{ dir = 9 }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aNf" = ( +"aOn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=14.5-Recreation"; @@ -18688,27 +19704,27 @@ dir = 4 }, /area/crew_quarters/locker) -"aNg" = ( +"aOo" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, /area/hydroponics/garden) -"aNh" = ( +"aOp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/neutral/side{ dir = 8 }, /area/hydroponics/garden) -"aNi" = ( +"aOq" = ( /obj/machinery/hydroponics/constructable, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aNj" = ( +"aOr" = ( /turf/open/floor/plasteel/neutral/side{ dir = 4 }, /area/hydroponics/garden) -"aNk" = ( +"aOs" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -18719,21 +19735,29 @@ }, /turf/open/floor/grass, /area/hydroponics/garden) -"aNl" = ( +"aOt" = ( /obj/structure/window/reinforced, /turf/open/floor/grass, /area/hydroponics/garden) -"aNm" = ( +"aOu" = ( /obj/structure/rack, /obj/item/clothing/suit/hazardvest, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aNn" = ( +"aOv" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aOw" = ( /obj/machinery/power/emitter, /obj/machinery/light/small, /turf/open/floor/plating, /area/engine/engineering) -"aNo" = ( +"aOx" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/metal/fifty, /obj/item/stack/rods/fifty, @@ -18750,7 +19774,11 @@ /obj/item/device/gps, /turf/open/floor/plating, /area/engine/engineering) -"aNq" = ( +"aOy" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/engine/engineering) +"aOz" = ( /obj/structure/table, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high{ @@ -18760,14 +19788,38 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/engineering) -"aNr" = ( +"aOA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/engine/engineering) -"aNu" = ( +"aOB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Port"; + dir = 8; + network = list("SS13","Engine") + }, +/obj/machinery/airalarm/engine{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"aOC" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"aOD" = ( /obj/machinery/atmospherics/components/binary/pump/on{ dir = 8; name = "Gas to Filter"; @@ -18775,17 +19827,57 @@ }, /turf/open/floor/engine, /area/engine/supermatter) -"aNv" = ( +"aOE" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"aOF" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/engine, /area/engine/supermatter) -"aNw" = ( +"aOG" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"aOH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"aOI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, +/turf/open/floor/engine, +/area/engine/engineering) +"aOJ" = ( +/obj/structure/reflector/double/anchored{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aOK" = ( +/obj/structure/reflector/single/anchored{ + dir = 10 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aOL" = ( /obj/structure/window/reinforced{ dir = 4 }, +/obj/structure/lattice, /turf/open/space, /area/space/nearstation) -"aNx" = ( +"aOM" = ( /obj/structure/window/reinforced{ dir = 1; layer = 2.9 @@ -18795,7 +19887,7 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"aNy" = ( +"aON" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1; @@ -18803,7 +19895,22 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"aNz" = ( +"aOO" = ( +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/aisat) +"aOP" = ( +/obj/structure/window/reinforced, +/obj/machinery/light/small, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Fore"; + dir = 1; + network = list("MiniSat") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/aisat) +"aOQ" = ( /obj/structure/window/reinforced{ dir = 1; pixel_y = 1 @@ -18811,15 +19918,7 @@ /obj/structure/window/reinforced, /turf/open/floor/plasteel/dark, /area/aisat) -"aNA" = ( -/obj/structure/closet{ - name = "Evidence Closet 3" - }, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/security/warden) -"aNB" = ( +"aOR" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -18829,18 +19928,21 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"aNC" = ( +"aOS" = ( /obj/structure/window/reinforced{ dir = 8 }, /obj/structure/lattice, /turf/open/space, /area/space/nearstation) -"aND" = ( +"aOT" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/pod_1) +"aOU" = ( /obj/effect/spawner/structure/window/shuttle, /turf/open/floor/plating, /area/shuttle/pod_1) -"aNE" = ( +"aOV" = ( /obj/machinery/button/door{ id = "QMLoaddoor"; layer = 4; @@ -18862,23 +19964,23 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aNF" = ( +"aOW" = ( /obj/effect/landmark/start/cargo_technician, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aNG" = ( +"aOX" = ( /obj/effect/spawner/lootdrop/maintenance, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aNH" = ( +"aOY" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aNI" = ( +"aOZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -18886,7 +19988,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aNJ" = ( +"aPa" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -18894,7 +19996,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aNK" = ( +"aPb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -18905,7 +20007,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aNL" = ( +"aPc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -18915,7 +20017,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aNM" = ( +"aPd" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; dir = 8; @@ -18932,14 +20034,14 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aNN" = ( +"aPe" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plating, /area/quartermaster/qm) -"aNO" = ( +"aPf" = ( /obj/structure/closet/secure_closet/quartermaster, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -18949,7 +20051,7 @@ dir = 9 }, /area/quartermaster/qm) -"aNP" = ( +"aPg" = ( /obj/machinery/camera/autoname{ dir = 2; network = list("SS13") @@ -18971,7 +20073,7 @@ dir = 1 }, /area/quartermaster/qm) -"aNQ" = ( +"aPh" = ( /obj/structure/filingcabinet/chestdrawer, /obj/machinery/airalarm{ pixel_y = 23 @@ -18983,25 +20085,22 @@ dir = 1 }, /area/quartermaster/qm) -"aNR" = ( +"aPi" = ( /obj/structure/table, /obj/machinery/computer/stockexchange, /turf/open/floor/plasteel/brown{ dir = 1 }, /area/quartermaster/qm) -"aNS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, +"aPj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - icon_state = "2-8" + icon_state = "1-2" }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"aNT" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aPk" = ( /obj/structure/window/reinforced{ dir = 1; pixel_y = 1 @@ -19010,32 +20109,32 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/storage/primary) -"aNU" = ( +"aPl" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /turf/open/floor/plasteel, /area/storage/primary) -"aNV" = ( +"aPm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/storage/primary) -"aNW" = ( +"aPn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/storage/primary) -"aNX" = ( +"aPo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/open/floor/plasteel, /area/storage/primary) -"aNY" = ( +"aPp" = ( /obj/structure/table, /obj/item/device/assembly/igniter{ pixel_x = -4; @@ -19049,20 +20148,20 @@ dir = 4 }, /area/storage/primary) -"aNZ" = ( +"aPq" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" }, /turf/open/floor/plating, /area/ai_monitored/turret_protected/ai_upload) -"aOa" = ( +"aPr" = ( /obj/machinery/porta_turret/ai{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aOb" = ( +"aPs" = ( /obj/machinery/computer/upload/borg, /obj/structure/window/reinforced{ dir = 1 @@ -19083,11 +20182,11 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aOc" = ( +"aPt" = ( /obj/machinery/holopad, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aOd" = ( +"aPu" = ( /obj/machinery/computer/upload/ai, /obj/structure/window/reinforced{ dir = 1 @@ -19108,19 +20207,19 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aOe" = ( +"aPv" = ( /obj/machinery/porta_turret/ai{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aOf" = ( +"aPw" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, /turf/open/floor/plasteel, /area/security/courtroom) -"aOg" = ( +"aPx" = ( /obj/structure/chair{ dir = 4; name = "Prosecution" @@ -19129,27 +20228,27 @@ dir = 10 }, /area/security/courtroom) -"aOh" = ( +"aPy" = ( /obj/structure/table/wood, /obj/item/paper, /turf/open/floor/plasteel/neutral/side{ dir = 10 }, /area/security/courtroom) -"aOi" = ( +"aPz" = ( /turf/open/floor/plasteel/neutral/side, /area/security/courtroom) -"aOj" = ( +"aPA" = ( /obj/item/device/radio/beacon, /turf/open/floor/plasteel/neutral/side, /area/security/courtroom) -"aOk" = ( +"aPB" = ( /obj/structure/table/wood, /turf/open/floor/plasteel/neutral/side{ dir = 6 }, /area/security/courtroom) -"aOl" = ( +"aPC" = ( /obj/structure/chair{ dir = 8; name = "Defense" @@ -19161,7 +20260,7 @@ dir = 6 }, /area/security/courtroom) -"aOm" = ( +"aPD" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -19170,7 +20269,7 @@ }, /turf/open/floor/plasteel, /area/security/courtroom) -"aOn" = ( +"aPE" = ( /obj/item/device/taperecorder, /obj/item/cartridge/lawyer, /obj/structure/table/wood, @@ -19182,7 +20281,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aOo" = ( +"aPF" = ( /obj/item/paper_bin{ pixel_x = -3; pixel_y = 7 @@ -19192,7 +20291,7 @@ /obj/structure/table/wood, /turf/open/floor/wood, /area/lawoffice) -"aOp" = ( +"aPG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -19200,18 +20299,18 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/wood, /area/lawoffice) -"aOq" = ( +"aPH" = ( /obj/machinery/holopad, /turf/open/floor/wood, /area/lawoffice) -"aOr" = ( +"aPI" = ( /obj/structure/closet/lawcloset, /obj/machinery/light_switch{ pixel_y = -28 }, /turf/open/floor/wood, /area/lawoffice) -"aOs" = ( +"aPJ" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -19223,42 +20322,41 @@ dir = 1 }, /area/crew_quarters/locker) -"aOt" = ( +"aPK" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aOu" = ( +"aPL" = ( /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aOv" = ( +"aPM" = ( /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/locker) -"aOw" = ( +"aPN" = ( /obj/structure/chair/stool{ pixel_y = 8 }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aOx" = ( +"aPO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aOy" = ( +"aPP" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aOz" = ( +"aPQ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/effect/landmark/lightsout, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/locker) -"aOA" = ( +"aPR" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -19267,7 +20365,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aOB" = ( +"aPS" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -19276,7 +20374,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aOC" = ( +"aPT" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -19285,7 +20383,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aOD" = ( +"aPU" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -19300,7 +20398,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aOE" = ( +"aPV" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -19312,7 +20410,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aOF" = ( +"aPW" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -19326,7 +20424,7 @@ dir = 4 }, /area/crew_quarters/locker) -"aOG" = ( +"aPX" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -19343,7 +20441,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aOH" = ( +"aPY" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -19357,7 +20455,7 @@ dir = 8 }, /area/hydroponics/garden) -"aOI" = ( +"aPZ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -19366,7 +20464,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/hydroponics/garden) -"aOJ" = ( +"aQa" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -19376,7 +20474,7 @@ /obj/machinery/holopad, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aOK" = ( +"aQb" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -19388,7 +20486,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aOL" = ( +"aQc" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -19399,7 +20497,7 @@ dir = 4 }, /area/hydroponics/garden) -"aOM" = ( +"aQd" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -19411,7 +20509,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aON" = ( +"aQe" = ( /obj/machinery/power/apc{ dir = 4; name = "Garden APC"; @@ -19435,7 +20533,7 @@ dir = 4 }, /area/hydroponics/garden) -"aOO" = ( +"aQf" = ( /obj/machinery/power/apc/highcap/ten_k{ dir = 8; name = "Engine Room APC"; @@ -19450,7 +20548,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aOP" = ( +"aQg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "1-2" @@ -19460,7 +20558,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aOQ" = ( +"aQh" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -19471,7 +20569,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aOR" = ( +"aQi" = ( /obj/effect/turf_decal/delivery, /obj/structure/closet/firecloset, /obj/effect/turf_decal/stripes/line{ @@ -19479,19 +20577,61 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aOS" = ( +"aQj" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"aQk" = ( /obj/effect/turf_decal/stripes/line{ - dir = 1 + dir = 4 }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = 21 +/obj/machinery/light{ + dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/green/visible, /turf/open/floor/engine, /area/engine/engineering) -"aOT" = ( +"aQl" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"aQm" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/power/rad_collector/anchored, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"aQn" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/machinery/power/rad_collector/anchored, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"aQo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"aQp" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -19500,7 +20640,7 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"aOU" = ( +"aQq" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -19510,19 +20650,19 @@ }, /turf/open/space, /area/space/nearstation) -"aOV" = ( +"aQr" = ( /obj/structure/window/reinforced{ dir = 1; pixel_y = 1 }, /turf/open/space, /area/space/nearstation) -"aOW" = ( +"aQs" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/lattice/catwalk, /turf/open/space, /area/aisat) -"aOX" = ( +"aQt" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -19532,44 +20672,70 @@ }, /turf/open/space, /area/space/nearstation) -"aOY" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"aOZ" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/pod_1) -"aPa" = ( +"aQu" = ( +/turf/closed/wall/mineral/plastitanium, +/area/hallway/secondary/entry) +"aQv" = ( /obj/structure/chair{ dir = 1 }, -/obj/item/device/radio/intercom{ - pixel_x = 25 +/obj/machinery/status_display{ + pixel_x = 32 }, -/obj/item/storage/pod{ - pixel_x = -26 - }, -/obj/machinery/light/small{ - dir = 8 +/obj/machinery/computer/shuttle/pod{ + pixel_x = -32; + possible_destinations = "pod_lavaland1"; + shuttleId = "pod1" }, /turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_2) -"aPb" = ( +/area/shuttle/pod_1) +"aQw" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"aQx" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"aQy" = ( +/obj/effect/turf_decal/stripes/line, +/obj/docking_port/stationary/public_mining_dock, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"aQz" = ( /obj/structure/closet/secure_closet/miner/unlocked, /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/plating, /area/shuttle/auxillary_base) -"aPd" = ( +"aQA" = ( +/obj/structure/closet, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aQB" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 5; + height = 7; + id = "supply_home"; + name = "Cargo Bay"; + width = 12 + }, +/turf/open/space/basic, +/area/space) +"aQC" = ( /obj/machinery/light/small{ dir = 1 }, /turf/open/floor/plating, /area/quartermaster/storage) -"aPe" = ( +"aQD" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -19581,7 +20747,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aPf" = ( +"aQE" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -19599,7 +20765,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aPg" = ( +"aQF" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -19616,7 +20782,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/qm) -"aPh" = ( +"aQG" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -19630,7 +20796,7 @@ dir = 8 }, /area/quartermaster/qm) -"aPi" = ( +"aQH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -19640,7 +20806,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/qm) -"aPj" = ( +"aQI" = ( /obj/effect/landmark/start/quartermaster, /obj/structure/disposalpipe/segment{ dir = 10 @@ -19650,7 +20816,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/qm) -"aPk" = ( +"aQJ" = ( /obj/structure/table, /obj/item/folder/yellow, /obj/item/pen{ @@ -19665,7 +20831,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/qm) -"aPl" = ( +"aQK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -19675,7 +20841,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aPm" = ( +"aQL" = ( /obj/structure/plasticflaps{ opacity = 1 }, @@ -19688,11 +20854,15 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/storage/primary) -"aPn" = ( +"aQM" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/storage/primary) -"aPo" = ( +"aQN" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/storage/primary) +"aQO" = ( /obj/structure/table, /obj/item/weldingtool, /obj/item/crowbar, @@ -19705,7 +20875,7 @@ dir = 2 }, /area/storage/primary) -"aPp" = ( +"aQP" = ( /obj/structure/table, /obj/item/storage/toolbox/mechanical{ pixel_x = -2; @@ -19715,11 +20885,11 @@ dir = 8 }, /area/storage/primary) -"aPq" = ( +"aQQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/storage/primary) -"aPr" = ( +"aQR" = ( /obj/structure/table, /obj/item/wirecutters, /obj/item/device/flashlight{ @@ -19743,7 +20913,7 @@ dir = 4 }, /area/storage/primary) -"aPs" = ( +"aQS" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" @@ -19751,7 +20921,7 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/ai_monitored/turret_protected/ai_upload) -"aPt" = ( +"aQT" = ( /obj/structure/table, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -19759,19 +20929,19 @@ /obj/item/aiModule/supplied/quarantine, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aPu" = ( +"aQU" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) -"aPv" = ( +"aQV" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aPw" = ( +"aQW" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -19783,7 +20953,7 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aPx" = ( +"aQX" = ( /obj/structure/table, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -19791,7 +20961,7 @@ /obj/item/aiModule/supplied/freeform, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aPy" = ( +"aQY" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -19799,7 +20969,7 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/ai_monitored/turret_protected/ai_upload) -"aPz" = ( +"aQZ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -19809,7 +20979,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aPA" = ( +"aRa" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/firealarm{ dir = 4; @@ -19824,11 +20994,11 @@ dir = 2 }, /area/hallway/primary/fore) -"aPB" = ( +"aRb" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/courtroom) -"aPC" = ( +"aRc" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Courtroom"; @@ -19836,12 +21006,12 @@ }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aPD" = ( +"aRd" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/security/courtroom) -"aPE" = ( +"aRe" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/poddoor/shutters/preopen{ @@ -19850,7 +21020,7 @@ }, /turf/open/floor/plating, /area/lawoffice) -"aPF" = ( +"aRf" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Law Office"; @@ -19862,7 +21032,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/lawoffice) -"aPG" = ( +"aRg" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "lawyer_shutters"; @@ -19870,7 +21040,7 @@ }, /turf/open/floor/plating, /area/lawoffice) -"aPH" = ( +"aRh" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -19887,31 +21057,35 @@ dir = 1 }, /area/crew_quarters/locker) -"aPI" = ( +"aRi" = ( /obj/structure/table, /obj/item/storage/pill_bottle/dice, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aPJ" = ( +"aRj" = ( /obj/structure/chair/stool{ pixel_y = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aPK" = ( +"aRk" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/floorgrime, +/area/crew_quarters/locker) +"aRl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/locker) -"aPL" = ( +"aRm" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aPM" = ( +"aRn" = ( /obj/structure/rack, /obj/item/storage/toolbox/mechanical{ pixel_x = -2; @@ -19928,14 +21102,14 @@ dir = 2 }, /area/crew_quarters/locker) -"aPN" = ( +"aRo" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plating, /area/hydroponics/garden) -"aPO" = ( +"aRp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -19943,7 +21117,7 @@ dir = 8 }, /area/hydroponics/garden) -"aPP" = ( +"aRq" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -19951,7 +21125,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aPQ" = ( +"aRr" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -19960,7 +21134,7 @@ }, /turf/open/floor/grass, /area/hydroponics/garden) -"aPR" = ( +"aRs" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -19972,13 +21146,13 @@ }, /turf/open/floor/grass, /area/hydroponics/garden) -"aPS" = ( +"aRt" = ( /obj/structure/rack, /obj/item/clothing/gloves/color/fyellow, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aPT" = ( +"aRu" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -19987,7 +21161,7 @@ icon_state = "panelscorched" }, /area/maintenance/starboard/fore) -"aPU" = ( +"aRv" = ( /obj/machinery/computer/atmos_alert, /obj/structure/sign/map/left{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; @@ -20000,7 +21174,7 @@ }, /turf/open/floor/plasteel/vault, /area/engine/engineering) -"aPV" = ( +"aRw" = ( /obj/machinery/computer/station_alert, /obj/structure/sign/map/right{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; @@ -20009,7 +21183,7 @@ }, /turf/open/floor/plasteel/vault, /area/engine/engineering) -"aPW" = ( +"aRx" = ( /obj/structure/cable/yellow{ icon_state = "0-4" }, @@ -20024,14 +21198,14 @@ /obj/machinery/modular_computer/console/preset/engineering, /turf/open/floor/plasteel/vault, /area/engine/engineering) -"aPX" = ( +"aRy" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plating, /area/engine/engineering) -"aPY" = ( +"aRz" = ( /obj/machinery/vending/engivend, /obj/structure/cable/yellow{ icon_state = "2-8" @@ -20039,12 +21213,20 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/engineering) -"aPZ" = ( +"aRA" = ( /obj/machinery/vending/tool, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/engineering) -"aQa" = ( +"aRB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/engineering) +"aRC" = ( /obj/structure/table, /obj/effect/turf_decal/delivery, /obj/item/clothing/glasses/meson, @@ -20057,7 +21239,7 @@ /obj/item/storage/belt/utility, /turf/open/floor/plasteel, /area/engine/engineering) -"aQd" = ( +"aRD" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -20066,28 +21248,85 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aQe" = ( +"aRE" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aQf" = ( -/obj/structure/chair{ +"aRF" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aRG" = ( +/obj/machinery/camera{ + c_tag = "Supermatter Chamber"; + dir = 4; + network = list("Engine") + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"aRH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"aRI" = ( +/obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/machinery/status_display{ - pixel_y = 32 +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + filter_type = "n2" }, -/obj/machinery/computer/shuttle/pod{ - pixel_y = -32; - possible_destinations = "pod_lavaland3"; - shuttleId = "pod3" +/turf/open/floor/engine, +/area/engine/engineering) +"aRJ" = ( +/turf/closed/wall, +/area/hallway/secondary/entry) +"aRK" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_x = 25 + }, +/obj/item/storage/pod{ + pixel_x = -26 + }, +/obj/machinery/light/small{ + dir = 8 }, /turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_3) -"aQg" = ( +/area/shuttle/pod_1) +"aRL" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"aRM" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 1; + name = "Construction Zone"; + req_access = null; + req_access_txt = "0"; + req_one_access_txt = "0" + }, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"aRN" = ( /obj/machinery/door/poddoor{ density = 1; icon_state = "closed"; @@ -20101,7 +21340,7 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aQh" = ( +"aRO" = ( /obj/structure/plasticflaps, /obj/machinery/conveyor{ dir = 8; @@ -20109,22 +21348,21 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aQi" = ( +"aRP" = ( /obj/machinery/conveyor{ dir = 8; id = "QMLoad" }, /turf/open/floor/plating, /area/quartermaster/storage) -"aQj" = ( +"aRQ" = ( /obj/effect/landmark/start/cargo_technician, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aQk" = ( +"aRR" = ( /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/spawner/lootdrop/maintenance{ @@ -20134,22 +21372,22 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aQl" = ( +"aRS" = ( /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aQm" = ( +"aRT" = ( /obj/structure/disposalpipe/segment, /obj/effect/spawner/lootdrop/maintenance, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aQn" = ( +"aRU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aQo" = ( +"aRV" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -20172,10 +21410,10 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aQp" = ( +"aRW" = ( /turf/closed/wall, /area/quartermaster/qm) -"aQq" = ( +"aRX" = ( /obj/machinery/computer/security/mining{ dir = 4; network = list("MINE","AuxBase") @@ -20187,15 +21425,15 @@ dir = 8 }, /area/quartermaster/qm) -"aQr" = ( +"aRY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/quartermaster/qm) -"aQs" = ( +"aRZ" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/quartermaster/qm) -"aQt" = ( +"aSa" = ( /obj/structure/table, /obj/item/clipboard, /obj/item/stamp/qm, @@ -20217,10 +21455,9 @@ }, /turf/open/floor/plasteel, /area/quartermaster/qm) -"aQu" = ( +"aSb" = ( /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/machinery/light{ dir = 8 @@ -20228,7 +21465,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/storage/primary) -"aQv" = ( +"aSc" = ( /obj/structure/table, /obj/item/storage/toolbox/mechanical{ pixel_x = -2; @@ -20239,7 +21476,7 @@ dir = 4 }, /area/storage/primary) -"aQw" = ( +"aSd" = ( /obj/structure/table, /obj/item/folder/yellow, /obj/item/folder/yellow, @@ -20248,11 +21485,11 @@ dir = 1 }, /area/storage/primary) -"aQx" = ( +"aSe" = ( /obj/machinery/holopad, /turf/open/floor/plasteel, /area/storage/primary) -"aQy" = ( +"aSf" = ( /obj/structure/table, /obj/item/device/radio/intercom{ dir = 4; @@ -20265,7 +21502,7 @@ dir = 4 }, /area/storage/primary) -"aQz" = ( +"aSg" = ( /obj/structure/table, /obj/item/aiModule/reset, /obj/machinery/light{ @@ -20280,7 +21517,7 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aQA" = ( +"aSh" = ( /obj/machinery/power/apc/highcap/five_k{ dir = 2; name = "Upload APC"; @@ -20297,7 +21534,7 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) -"aQB" = ( +"aSi" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -20306,7 +21543,7 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aQC" = ( +"aSj" = ( /obj/item/device/radio/intercom{ broadcasting = 1; frequency = 1447; @@ -20320,7 +21557,7 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) -"aQD" = ( +"aSk" = ( /obj/structure/table, /obj/machinery/light{ dir = 4 @@ -20334,7 +21571,7 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aQE" = ( +"aSl" = ( /obj/machinery/light{ dir = 8 }, @@ -20348,7 +21585,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aQF" = ( +"aSm" = ( /obj/structure/grille, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -20356,24 +21593,31 @@ /obj/structure/window/reinforced/tinted/fulltile, /turf/open/floor/plating, /area/security/courtroom) -"aQG" = ( +"aSn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /obj/machinery/vending/cigarette, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aQH" = ( +"aSo" = ( /obj/structure/chair{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aQJ" = ( +"aSp" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aSq" = ( /obj/machinery/vending/coffee, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aQK" = ( +"aSr" = ( /obj/machinery/light{ dir = 8 }, @@ -20387,7 +21631,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aQL" = ( +"aSs" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -20396,7 +21640,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aQM" = ( +"aSt" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, @@ -20410,7 +21654,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aQN" = ( +"aSu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -20421,7 +21665,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aQO" = ( +"aSv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -20437,7 +21681,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aQP" = ( +"aSw" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -20451,7 +21695,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/locker) -"aQQ" = ( +"aSx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -20466,7 +21710,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aQR" = ( +"aSy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -20475,7 +21719,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aQS" = ( +"aSz" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -20487,7 +21731,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aQT" = ( +"aSA" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -20496,7 +21740,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/locker) -"aQU" = ( +"aSB" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -20505,7 +21749,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aQV" = ( +"aSC" = ( /obj/structure/chair/stool{ pixel_y = 8 }, @@ -20514,7 +21758,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aQW" = ( +"aSD" = ( /obj/structure/table, /obj/item/clothing/head/soft/grey{ pixel_x = -2; @@ -20525,7 +21769,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aQX" = ( +"aSE" = ( /obj/structure/table, /obj/item/razor{ pixel_y = 5 @@ -20535,7 +21779,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aQY" = ( +"aSF" = ( /obj/structure/table, /obj/item/device/paicard, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -20543,14 +21787,14 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aQZ" = ( +"aSG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aRa" = ( +"aSH" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/costume, /obj/effect/spawner/lootdrop/costume, @@ -20569,7 +21813,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aRb" = ( +"aSI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -20582,45 +21826,50 @@ dir = 10 }, /area/hydroponics/garden) -"aRc" = ( +"aSJ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/plasteel/neutral/side, /area/hydroponics/garden) -"aRd" = ( +"aSK" = ( /turf/open/floor/plasteel/neutral/side, /area/hydroponics/garden) -"aRe" = ( +"aSL" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side, /area/hydroponics/garden) -"aRf" = ( +"aSM" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/neutral/side{ dir = 6 }, /area/hydroponics/garden) -"aRg" = ( -/obj/machinery/door/firedoor/border_only{ - density = 1; +"aSN" = ( +/obj/machinery/door/firedoor/border_only/closed{ dir = 8; - icon_state = "door_closed"; name = "Animal Pen B"; opacity = 1 }, /turf/open/floor/grass, /area/hydroponics/garden) -"aRh" = ( +"aSO" = ( /mob/living/simple_animal/cow{ name = "Betsy"; real_name = "Betsy" }, /turf/open/floor/grass, /area/hydroponics/garden) -"aRi" = ( +"aSP" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/easel, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aSQ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -20628,15 +21877,12 @@ /obj/item/cigbutt, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aRj" = ( +"aSR" = ( /obj/effect/landmark/start/station_engineer, /obj/machinery/light{ dir = 8 }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; +/obj/structure/sign/warning/electricshock{ pixel_x = -31 }, /obj/structure/cable{ @@ -20647,7 +21893,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aRk" = ( +"aSS" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -20659,7 +21905,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aRl" = ( +"aST" = ( /obj/structure/cable{ icon_state = "2-4" }, @@ -20671,14 +21917,14 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aRm" = ( +"aSU" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/plating, /area/engine/engineering) -"aRn" = ( +"aSV" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -20690,7 +21936,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aRo" = ( +"aSW" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -20699,7 +21945,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aRp" = ( +"aSX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -20714,7 +21960,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aRq" = ( +"aSY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -20728,7 +21974,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aRr" = ( +"aSZ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -20738,39 +21984,98 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plasteel, /area/engine/engineering) -"aRv" = ( +"aTa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"aTb" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 5 }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aRy" = ( +"aTc" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/crowbar, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"aTd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"aTe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"aTf" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aTg" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/power/emitter/anchored{ + dir = 1; + state = 2 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aTh" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/power/emitter/anchored{ + dir = 1; + state = 2 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aTi" = ( /turf/closed/wall/r_wall, /area/aisat) -"aRz" = ( +"aTj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/aisat) -"aRA" = ( -/turf/closed/wall, -/area/hallway/secondary/entry) -"aRB" = ( +"aTk" = ( /obj/structure/shuttle/engine/propulsion/burst, /turf/closed/wall/mineral/titanium, /area/shuttle/pod_1) -"aRC" = ( +"aTl" = ( /obj/machinery/door/airlock/titanium{ name = "Escape Pod Airlock" }, /obj/docking_port/mobile/pod{ id = "pod1"; name = "escape pod 1"; - port_direction = 2 + port_direction = 2; + timid = 0 }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/pod_1) -"aRD" = ( +"aTm" = ( /obj/machinery/light{ dir = 8 }, @@ -20779,12 +22084,57 @@ dir = 9 }, /area/construction/mining/aux_base) -"aRE" = ( +"aTn" = ( /turf/open/floor/plasteel/yellow/side{ dir = 1 }, /area/construction/mining/aux_base) -"aRF" = ( +"aTo" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/construction/mining/aux_base) +"aTp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/construction/mining/aux_base) +"aTq" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/construction/mining/aux_base) +"aTr" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/construction/mining/aux_base) +"aTs" = ( +/obj/structure/rack, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/device/assault_pod/mining, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/construction/mining/aux_base) +"aTt" = ( /obj/structure/table, /obj/item/stack/sheet/metal/fifty, /obj/item/stack/sheet/metal/fifty, @@ -20797,11 +22147,7 @@ dir = 5 }, /area/construction/mining/aux_base) -"aRG" = ( -/obj/effect/landmark/revenantspawn, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aRH" = ( +"aTu" = ( /obj/machinery/conveyor{ dir = 1; id = "QMLoad"; @@ -20809,14 +22155,14 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aRI" = ( +"aTv" = ( /obj/structure/disposalpipe/segment, /obj/structure/chair/office/dark{ dir = 4 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aRJ" = ( +"aTw" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -20835,7 +22181,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aRK" = ( +"aTx" = ( /obj/machinery/computer/cargo{ dir = 4 }, @@ -20843,7 +22189,7 @@ dir = 10 }, /area/quartermaster/qm) -"aRL" = ( +"aTy" = ( /obj/structure/chair/office/dark{ dir = 8 }, @@ -20860,7 +22206,7 @@ dir = 2 }, /area/quartermaster/qm) -"aRM" = ( +"aTz" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -20869,7 +22215,7 @@ dir = 2 }, /area/quartermaster/qm) -"aRN" = ( +"aTA" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -20879,7 +22225,17 @@ dir = 2 }, /area/quartermaster/qm) -"aRO" = ( +"aTB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"aTC" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1; @@ -20904,32 +22260,32 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/storage/primary) -"aRP" = ( +"aTD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plasteel, /area/storage/primary) -"aRQ" = ( +"aTE" = ( /obj/structure/disposalpipe/junction{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/storage/primary) -"aRR" = ( +"aTF" = ( /obj/structure/disposalpipe/segment{ dir = 10 }, /turf/open/floor/plasteel, /area/storage/primary) -"aRS" = ( +"aTG" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/brown{ dir = 4 }, /area/storage/primary) -"aRT" = ( +"aTH" = ( /obj/machinery/flasher{ id = "AI"; pixel_y = -24 @@ -20939,19 +22295,19 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aRU" = ( +"aTI" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aRV" = ( +"aTJ" = ( /obj/machinery/porta_turret/ai{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aRW" = ( +"aTK" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -20960,7 +22316,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aRX" = ( +"aTL" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/centcom{ name = "Courtroom"; @@ -20968,25 +22324,18 @@ }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aRY" = ( +"aTM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aRZ" = ( +"aTN" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=16-Fore"; location = "15-Court" }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aSa" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aSb" = ( +"aTO" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -20995,38 +22344,38 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aSc" = ( +"aTP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/locker) -"aSd" = ( +"aTQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aSe" = ( +"aTR" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/crew_quarters/locker) -"aSf" = ( +"aTS" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aSg" = ( +"aTT" = ( /obj/machinery/holopad, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aSh" = ( +"aTU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/locker) -"aSi" = ( +"aTV" = ( /obj/structure/rack, /obj/item/storage/briefcase, /obj/item/storage/briefcase{ @@ -21037,7 +22386,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aSj" = ( +"aTW" = ( /obj/structure/table, /obj/item/cultivator, /obj/item/hatchet, @@ -21051,7 +22400,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aSk" = ( +"aTX" = ( /obj/structure/table, /obj/item/hatchet, /obj/item/cultivator, @@ -21063,7 +22412,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aSl" = ( +"aTY" = ( /obj/structure/table, /obj/item/reagent_containers/food/snacks/grown/wheat, /obj/item/reagent_containers/food/snacks/grown/watermelon, @@ -21080,7 +22429,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aSm" = ( +"aTZ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -21089,7 +22438,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aSn" = ( +"aUa" = ( /obj/item/storage/bag/plants/portaseeder, /obj/structure/table, /obj/machinery/light, @@ -21099,7 +22448,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aSo" = ( +"aUb" = ( /obj/item/book/manual/wiki/engineering_hacking{ pixel_x = 4; pixel_y = 5 @@ -21111,7 +22460,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aSp" = ( +"aUc" = ( /obj/machinery/power/terminal, /obj/structure/cable, /obj/structure/extinguisher_cabinet{ @@ -21122,7 +22471,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aSq" = ( +"aUd" = ( /obj/machinery/power/terminal, /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ @@ -21130,7 +22479,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aSr" = ( +"aUe" = ( /obj/machinery/power/terminal, /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ @@ -21138,7 +22487,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aSs" = ( +"aUf" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ icon_state = "1-2" @@ -21154,7 +22503,7 @@ dir = 1 }, /area/engine/engineering) -"aSt" = ( +"aUg" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -21166,7 +22515,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aSu" = ( +"aUh" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -21178,7 +22527,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aSv" = ( +"aUi" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -21189,7 +22538,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aSw" = ( +"aUj" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -21198,7 +22547,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aSx" = ( +"aUk" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -21208,7 +22557,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aSz" = ( +"aUl" = ( /obj/structure/cable{ icon_state = "1-4" }, @@ -21217,7 +22566,7 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aSA" = ( +"aUm" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -21229,42 +22578,148 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aSB" = ( +"aUn" = ( /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"aUo" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"aUp" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/meter, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"aUq" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"aUr" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"aUs" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Cooling Loop Bypass" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"aUt" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"aUu" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"aSD" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ dir = 4 }, -/turf/open/space, -/area/space/nearstation) -"aSE" = ( +/turf/open/floor/engine, +/area/engine/engineering) +"aUv" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aUw" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aUx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /turf/closed/wall/r_wall, /area/aisat) -"aSF" = ( +"aUy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/closed/wall/r_wall, /area/aisat) -"aSG" = ( +"aUz" = ( /obj/structure/window/reinforced{ dir = 8 }, /obj/structure/window/reinforced, /turf/open/space, /area/space/nearstation) -"aSH" = ( +"aUA" = ( /obj/structure/chair{ dir = 4 }, @@ -21275,20 +22730,61 @@ icon_state = "platingdmg1" }, /area/hallway/secondary/entry) -"aSI" = ( +"aUB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"aUC" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/hallway/secondary/entry) -"aSJ" = ( +"aUD" = ( /obj/machinery/computer/shuttle/mining, /turf/open/floor/plasteel/yellow/side{ dir = 10 }, /area/construction/mining/aux_base) -"aSK" = ( +"aUE" = ( /turf/open/floor/plasteel/yellow/side, /area/construction/mining/aux_base) -"aSL" = ( +"aUF" = ( +/obj/machinery/camera{ + c_tag = "Auxillary Base Construction"; + dir = 1 + }, +/obj/machinery/button/door{ + id = "aux_base_shutters"; + name = "Public Shutters Control"; + pixel_y = -24; + req_access_txt = "0"; + req_one_access_txt = "32;47;48" + }, +/turf/open/floor/plasteel/yellow/side, +/area/construction/mining/aux_base) +"aUG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/yellow/side, +/area/construction/mining/aux_base) +"aUH" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for the Auxillary Mining Base."; + dir = 1; + name = "Auxillary Base Monitor"; + network = list("AuxBase"); + pixel_y = -28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/yellow/side, +/area/construction/mining/aux_base) +"aUI" = ( /obj/structure/cable/yellow{ icon_state = "0-8" }, @@ -21300,14 +22796,14 @@ }, /turf/open/floor/plasteel/yellow/side, /area/construction/mining/aux_base) -"aSM" = ( +"aUJ" = ( /obj/machinery/airalarm{ dir = 1; pixel_y = -22 }, /turf/open/floor/plasteel/yellow/side, /area/construction/mining/aux_base) -"aSN" = ( +"aUK" = ( /obj/structure/table, /obj/item/stack/sheet/plasteel{ amount = 10 @@ -21318,7 +22814,7 @@ dir = 6 }, /area/construction/mining/aux_base) -"aSO" = ( +"aUL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -21327,15 +22823,14 @@ dir = 2 }, /turf/open/floor/plating, -/area/maintenance/port) -"aSP" = ( +/area/maintenance/port/fore) +"aUM" = ( /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aSQ" = ( +"aUN" = ( /obj/machinery/conveyor_switch/oneway{ convdir = 1; id = "QMLoad"; @@ -21346,7 +22841,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aSR" = ( +"aUO" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -21354,12 +22849,12 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aSS" = ( +"aUP" = ( /obj/effect/spawner/lootdrop/maintenance, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aST" = ( +"aUQ" = ( /obj/structure/closet/crate, /obj/structure/disposalpipe/segment, /obj/effect/spawner/lootdrop/maintenance{ @@ -21369,21 +22864,21 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aSU" = ( +"aUR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment{ dir = 5 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aSV" = ( +"aUS" = ( /obj/structure/disposalpipe/segment, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aSW" = ( +"aUT" = ( /obj/machinery/light{ dir = 4 }, @@ -21403,10 +22898,10 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aSX" = ( +"aUU" = ( /turf/closed/wall, /area/security/checkpoint/supply) -"aSY" = ( +"aUV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "2-4" @@ -21419,7 +22914,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aSZ" = ( +"aUW" = ( /obj/machinery/door/airlock/maintenance{ name = "Tool Storage Maintenance"; req_access_txt = "12" @@ -21429,7 +22924,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"aTa" = ( +"aUX" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -21440,13 +22935,13 @@ dir = 8 }, /area/storage/primary) -"aTb" = ( +"aUY" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/storage/primary) -"aTc" = ( +"aUZ" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 @@ -21456,7 +22951,7 @@ }, /turf/open/floor/plasteel, /area/storage/primary) -"aTd" = ( +"aVa" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -21466,7 +22961,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/storage/primary) -"aTe" = ( +"aVb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -21475,7 +22970,7 @@ }, /turf/open/floor/plasteel, /area/storage/primary) -"aTf" = ( +"aVc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -21488,7 +22983,7 @@ }, /turf/open/floor/plasteel, /area/storage/primary) -"aTg" = ( +"aVd" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, @@ -21499,14 +22994,14 @@ dir = 4 }, /area/storage/primary) -"aTh" = ( +"aVe" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/open/floor/plating, /area/storage/primary) -"aTi" = ( +"aVf" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/highsecurity{ locked = 0; @@ -21518,7 +23013,7 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aTj" = ( +"aVg" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -21527,17 +23022,17 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aTk" = ( +"aVh" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, /area/security/courtroom) -"aTl" = ( +"aVi" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aTm" = ( +"aVj" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -21546,7 +23041,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aTn" = ( +"aVk" = ( /obj/machinery/newscaster{ pixel_y = -32 }, @@ -21558,19 +23053,29 @@ }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aTo" = ( +"aVl" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aVm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aTp" = ( +"aVn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aTq" = ( +"aVo" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/locker) +"aVp" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -21580,13 +23085,13 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aTr" = ( +"aVq" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aTs" = ( +"aVr" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -21598,7 +23103,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aTt" = ( +"aVs" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -21606,7 +23111,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aTu" = ( +"aVt" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -21617,7 +23122,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/locker) -"aTv" = ( +"aVu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -21633,7 +23138,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aTw" = ( +"aVv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -21652,7 +23157,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aTx" = ( +"aVw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -21661,7 +23166,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aTy" = ( +"aVx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -21673,7 +23178,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aTz" = ( +"aVy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -21685,7 +23190,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aTA" = ( +"aVz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -21693,7 +23198,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aTB" = ( +"aVA" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -21701,7 +23206,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aTC" = ( +"aVB" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, @@ -21710,7 +23215,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aTD" = ( +"aVC" = ( /obj/structure/cable/yellow{ icon_state = "0-4" }, @@ -21720,7 +23225,7 @@ /obj/machinery/power/smes/engineering, /turf/open/floor/plasteel/vault, /area/engine/engineering) -"aTE" = ( +"aVD" = ( /obj/structure/cable/yellow{ icon_state = "0-8" }, @@ -21730,7 +23235,7 @@ /obj/machinery/power/smes/engineering, /turf/open/floor/plasteel/vault, /area/engine/engineering) -"aTF" = ( +"aVE" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -21739,7 +23244,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aTG" = ( +"aVF" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -21754,7 +23259,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aTH" = ( +"aVG" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -21764,7 +23269,7 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plasteel, /area/engine/engineering) -"aTI" = ( +"aVH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ dir = 2 @@ -21774,7 +23279,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aTJ" = ( +"aVI" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -21790,7 +23295,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aTK" = ( +"aVJ" = ( /obj/structure/cable/white{ icon_state = "4-8" }, @@ -21799,7 +23304,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aTM" = ( +"aVK" = ( /obj/structure/cable/white{ icon_state = "4-8" }, @@ -21808,27 +23313,94 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aTN" = ( +"aVL" = ( /obj/structure/cable/white{ icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/engine, /area/engine/engineering) -"aTO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 +"aVM" = ( +/obj/structure/cable/white{ + icon_state = "4-8" }, -/turf/open/floor/plasteel, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Atmos to Loop" + }, +/turf/open/floor/engine, /area/engine/engineering) -"aTQ" = ( -/obj/structure/window/reinforced{ - dir = 4 +"aVN" = ( +/obj/structure/cable/white{ + icon_state = "4-8" }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aTR" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/engine, +/area/engine/engineering) +"aVO" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Aft"; + dir = 1; + network = list("SS13","Engine") + }, +/turf/open/floor/engine, +/area/engine/engineering) +"aVP" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Gas to Cold Loop"; + on = 1 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engine/engineering) +"aVQ" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engine/engineering) +"aVR" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engine/engineering) +"aVS" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Cold Loop to Gas"; + on = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"aVT" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aVU" = ( +/obj/item/wrench, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"aVV" = ( /obj/structure/window/reinforced{ dir = 1; layer = 2.9 @@ -21843,7 +23415,7 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"aTS" = ( +"aVW" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -21858,21 +23430,21 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"aTT" = ( +"aVX" = ( /obj/structure/window/reinforced{ dir = 8 }, /obj/structure/lattice, /turf/open/space, /area/aisat) -"aTU" = ( +"aVY" = ( /obj/structure/lattice, /turf/open/space, /area/aisat) -"aTV" = ( +"aVZ" = ( /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai) -"aTW" = ( +"aWa" = ( /obj/machinery/power/smes{ charge = 5e+006 }, @@ -21881,21 +23453,21 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai) -"aTX" = ( +"aWb" = ( /obj/structure/cable{ icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai) -"aTY" = ( +"aWc" = ( /obj/structure/lattice, /obj/structure/window/reinforced{ dir = 4 }, /turf/open/space, /area/aisat) -"aTZ" = ( +"aWd" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 @@ -21910,7 +23482,7 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"aUa" = ( +"aWe" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -21927,17 +23499,42 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"aUb" = ( -/obj/structure/sign/pods, +"aWf" = ( +/obj/structure/sign/warning/pods, /turf/closed/wall, /area/hallway/secondary/entry) -"aUc" = ( +"aWg" = ( /obj/machinery/door/airlock/external{ name = "Escape Pod One" }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"aUd" = ( +"aWh" = ( +/obj/machinery/door/poddoor/shutters{ + id = "aux_base_shutters"; + name = "Auxillary Base Shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"aWi" = ( +/obj/machinery/door/airlock/engineering{ + cyclelinkeddir = 1; + name = "Auxillary Base Construction"; + req_access_txt = "0"; + req_one_access_txt = "32;47;48" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"aWj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/construction/mining/aux_base) +"aWk" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, @@ -21947,10 +23544,10 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aUe" = ( +"aWl" = ( /turf/closed/wall, /area/quartermaster/storage) -"aUf" = ( +"aWm" = ( /obj/machinery/light{ dir = 8 }, @@ -21966,20 +23563,24 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aUg" = ( +"aWn" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aWo" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aUh" = ( +"aWp" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aUi" = ( +"aWq" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -21993,7 +23594,7 @@ /obj/machinery/rnd/protolathe/department/cargo, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aUj" = ( +"aWr" = ( /obj/structure/closet/secure_closet/security/cargo, /obj/machinery/light_switch{ pixel_x = -25 @@ -22005,7 +23606,7 @@ dir = 9 }, /area/security/checkpoint/supply) -"aUk" = ( +"aWs" = ( /obj/machinery/power/apc{ dir = 1; name = "Security Post - Cargo Bay APC"; @@ -22020,7 +23621,7 @@ dir = 1 }, /area/security/checkpoint/supply) -"aUl" = ( +"aWt" = ( /obj/item/screwdriver{ pixel_y = 10 }, @@ -22037,7 +23638,7 @@ dir = 1 }, /area/security/checkpoint/supply) -"aUm" = ( +"aWu" = ( /obj/structure/filingcabinet, /obj/structure/reagent_dispensers/peppertank{ pixel_x = 30 @@ -22046,7 +23647,25 @@ dir = 5 }, /area/security/checkpoint/supply) -"aUo" = ( +"aWv" = ( +/obj/structure/table, +/obj/item/device/analyzer, +/obj/machinery/power/apc{ + dir = 2; + name = "Tool Storage APC"; + areastring = "/area/storage/primary"; + pixel_y = -27 + }, +/obj/structure/cable/yellow, +/obj/item/wrench, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/brown{ + dir = 10 + }, +/area/storage/primary) +"aWw" = ( /obj/structure/table, /obj/item/storage/belt/utility, /obj/machinery/airalarm{ @@ -22058,13 +23677,13 @@ dir = 2 }, /area/storage/primary) -"aUp" = ( +"aWx" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plasteel/brown{ dir = 2 }, /area/storage/primary) -"aUq" = ( +"aWy" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -22073,14 +23692,14 @@ dir = 2 }, /area/storage/primary) -"aUr" = ( +"aWz" = ( /obj/structure/reagent_dispensers/fueltank, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/brown{ dir = 2 }, /area/storage/primary) -"aUs" = ( +"aWA" = ( /obj/structure/table, /obj/item/crowbar, /obj/item/device/assembly/prox_sensor{ @@ -22093,7 +23712,7 @@ dir = 2 }, /area/storage/primary) -"aUt" = ( +"aWB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -22102,7 +23721,7 @@ dir = 2 }, /area/storage/primary) -"aUu" = ( +"aWC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/light_switch{ pixel_x = 28 @@ -22111,20 +23730,20 @@ dir = 6 }, /area/storage/primary) -"aUv" = ( +"aWD" = ( /turf/closed/wall/r_wall, /area/hallway/primary/central) -"aUw" = ( +"aWE" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" }, /turf/open/floor/plating, /area/hallway/primary/central) -"aUx" = ( +"aWF" = ( /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai_upload_foyer) -"aUy" = ( +"aWG" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/machinery/turretid{ control_area = "/area/ai_monitored/turret_protected/ai_upload"; @@ -22163,7 +23782,7 @@ dir = 6 }, /area/ai_monitored/turret_protected/ai_upload_foyer) -"aUz" = ( +"aWH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -22172,7 +23791,7 @@ }, /turf/open/floor/plasteel/vault, /area/ai_monitored/turret_protected/ai_upload_foyer) -"aUA" = ( +"aWI" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/landmark/start/cyborg, /obj/machinery/light/small{ @@ -22196,7 +23815,7 @@ dir = 10 }, /area/ai_monitored/turret_protected/ai_upload_foyer) -"aUB" = ( +"aWJ" = ( /obj/structure/sign/directions/security{ desc = "A direction sign, pointing out which way the security department is."; dir = 1; @@ -22217,7 +23836,7 @@ }, /turf/closed/wall/r_wall, /area/hallway/primary/fore) -"aUC" = ( +"aWK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -22227,7 +23846,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aUD" = ( +"aWL" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -22237,7 +23856,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aUE" = ( +"aWM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -22247,7 +23866,7 @@ dir = 2 }, /area/hallway/primary/fore) -"aUF" = ( +"aWN" = ( /obj/structure/sign/directions/engineering{ desc = "A direction sign, pointing out which way the escape arm is."; icon_state = "direction_evac"; @@ -22267,7 +23886,7 @@ }, /turf/closed/wall, /area/security/courtroom) -"aUG" = ( +"aWO" = ( /obj/machinery/power/apc{ dir = 2; name = "Courtroom APC"; @@ -22282,7 +23901,7 @@ /obj/item/storage/fancy/donut_box, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aUH" = ( +"aWP" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -22291,7 +23910,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aUI" = ( +"aWQ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -22300,7 +23919,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aUJ" = ( +"aWR" = ( /obj/structure/table, /obj/item/book/manual/wiki/security_space_law{ pixel_x = -3; @@ -22324,14 +23943,14 @@ }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aUK" = ( +"aWS" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aUL" = ( +"aWT" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -22340,37 +23959,43 @@ dir = 2 }, /area/crew_quarters/locker) -"aUM" = ( +"aWU" = ( /turf/closed/wall, /area/crew_quarters/locker) -"aUN" = ( -/obj/structure/closet/wardrobe/black, +"aWV" = ( +/obj/machinery/cryopod{ + tag = "icon-cryopod-open (EAST)"; + icon_state = "cryopod-open"; + dir = 4 + }, /turf/open/floor/plasteel/vault, /area/crew_quarters/locker) -"aUO" = ( -/obj/structure/closet/wardrobe/grey, +"aWW" = ( +/obj/machinery/computer/cryopod{ + pixel_y = -24 + }, /turf/open/floor/plasteel/vault, /area/crew_quarters/locker) -"aUP" = ( -/obj/structure/closet/wardrobe/white, +"aWX" = ( +/obj/machinery/cryopod, /turf/open/floor/plasteel/vault, /area/crew_quarters/locker) -"aUQ" = ( +"aWY" = ( /turf/open/floor/plasteel/vault, /area/crew_quarters/locker) -"aUR" = ( +"aWZ" = ( /obj/structure/closet/wardrobe/green, /turf/open/floor/plasteel/vault, /area/crew_quarters/locker) -"aUS" = ( +"aXa" = ( /obj/machinery/vending/clothing, /turf/open/floor/plasteel/vault, /area/crew_quarters/locker) -"aUT" = ( +"aXb" = ( /obj/structure/closet/wardrobe/mixed, /turf/open/floor/plasteel/vault, /area/crew_quarters/locker) -"aUU" = ( +"aXc" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -22379,7 +24004,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aUV" = ( +"aXd" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -22394,7 +24019,17 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aUW" = ( +"aXe" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aXf" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -22405,22 +24040,22 @@ icon_state = "platingdmg3" }, /area/maintenance/starboard/fore) -"aUX" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/assistantformal, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 +"aXg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/turf/open/floor/plasteel/vault, -/area/crew_quarters/dorms) -"aUY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aXh" = ( /obj/effect/turf_decal/delivery, /obj/structure/closet/wardrobe/engineering_yellow, /turf/open/floor/plasteel, /area/engine/engineering) -"aUZ" = ( +"aXi" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -22433,7 +24068,7 @@ dir = 1 }, /area/engine/engineering) -"aVa" = ( +"aXj" = ( /obj/machinery/requests_console{ announcementConsole = 0; department = "Engineering"; @@ -22442,26 +24077,28 @@ }, /turf/closed/wall, /area/engine/engineering) -"aVb" = ( +"aXk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/delivery, /obj/structure/closet/secure_closet/engineering_welding, /turf/open/floor/plasteel, /area/engine/engineering) -"aVc" = ( +"aXl" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/effect/turf_decal/bot{ dir = 1 }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, /turf/open/floor/plasteel{ dir = 1 }, /area/engine/engineering) -"aVd" = ( +"aXm" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -22469,13 +24106,13 @@ /obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor/plasteel, /area/engine/engineering) -"aVe" = ( +"aXn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/engine/engineering) -"aVf" = ( +"aXo" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -22486,14 +24123,38 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"aVh" = ( +"aXp" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"aXq" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"aXr" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"aXs" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, /area/engine/engineering) -"aVk" = ( +"aXt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"aXu" = ( /obj/structure/window/reinforced{ dir = 1; layer = 2.9 @@ -22503,27 +24164,38 @@ }, /turf/open/space, /area/space/nearstation) -"aVl" = ( +"aXv" = ( /obj/machinery/porta_turret/ai{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai) -"aVm" = ( +"aXw" = ( /obj/machinery/status_display{ pixel_y = 32 }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai) -"aVn" = ( +"aXx" = ( /obj/structure/showcase/cyborg/old{ dir = 2; pixel_y = 20 }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai) -"aVp" = ( +"aXy" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -24; + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"aXz" = ( /obj/machinery/camera{ c_tag = "AI Chamber - Fore"; dir = 2; @@ -22539,24 +24211,24 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai) -"aVq" = ( +"aXA" = ( /obj/machinery/status_display{ pixel_y = 32 }, /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai) -"aVr" = ( +"aXB" = ( /obj/machinery/porta_turret/ai{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai) -"aVs" = ( +"aXC" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/hallway/secondary/entry) -"aVt" = ( +"aXD" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-13" }, @@ -22565,13 +24237,13 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aVu" = ( +"aXE" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aVv" = ( +"aXF" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -22584,14 +24256,17 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aVw" = ( +"aXG" = ( /obj/structure/chair, +/obj/machinery/light{ + dir = 1 + }, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aVx" = ( +"aXH" = ( /obj/structure/chair, /obj/machinery/camera{ c_tag = "Arrivals - Fore Arm - Far"; @@ -22603,7 +24278,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aVy" = ( +"aXI" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -22615,7 +24290,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aVz" = ( +"aXJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -22624,7 +24299,15 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aVA" = ( +"aXK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 4 + }, +/area/hallway/secondary/entry) +"aXL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -22636,7 +24319,7 @@ dir = 1 }, /area/hallway/secondary/entry) -"aVB" = ( +"aXM" = ( /obj/machinery/light{ dir = 1 }, @@ -22650,7 +24333,19 @@ dir = 1 }, /area/hallway/secondary/entry) -"aVC" = ( +"aXN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aXO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -22667,7 +24362,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aVD" = ( +"aXP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -22683,7 +24378,7 @@ dir = 4 }, /area/hallway/secondary/entry) -"aVE" = ( +"aXQ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -22697,38 +24392,51 @@ dir = 1 }, /area/hallway/secondary/entry) -"aVG" = ( +"aXR" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/arrival{ + dir = 5 + }, +/area/hallway/secondary/entry) +"aXS" = ( /obj/machinery/status_display{ supply_display = 1 }, /turf/closed/wall, /area/quartermaster/storage) -"aVH" = ( +"aXT" = ( +/mob/living/simple_animal/sloth/citrus, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aXU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/item/storage/firstaid/regular, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aVI" = ( -/obj/effect/landmark/lightsout, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aVJ" = ( +"aXV" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /obj/effect/landmark/start/cargo_technician, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aVK" = ( +"aXW" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aVL" = ( +"aXX" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -22743,7 +24451,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aVM" = ( +"aXY" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -22754,7 +24462,7 @@ }, /turf/open/floor/plasteel, /area/security/checkpoint/supply) -"aVN" = ( +"aXZ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -22762,19 +24470,19 @@ dir = 8 }, /area/security/checkpoint/supply) -"aVO" = ( +"aYa" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, /turf/open/floor/plasteel, /area/security/checkpoint/supply) -"aVP" = ( +"aYb" = ( /obj/structure/chair/office/dark, /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/landmark/start/depsec/supply, /turf/open/floor/plasteel, /area/security/checkpoint/supply) -"aVQ" = ( +"aYc" = ( /obj/item/device/radio/intercom{ dir = 4; name = "Station Intercom (General)"; @@ -22788,12 +24496,12 @@ dir = 4 }, /area/security/checkpoint/supply) -"aVR" = ( +"aYd" = ( /obj/effect/spawner/structure/window, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/storage/primary) -"aVS" = ( +"aYe" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Primary Tool Storage" @@ -22806,7 +24514,7 @@ dir = 1 }, /area/storage/primary) -"aVT" = ( +"aYf" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Primary Tool Storage" @@ -22816,26 +24524,26 @@ dir = 1 }, /area/storage/primary) -"aVU" = ( +"aYg" = ( /obj/structure/closet/firecloset, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"aVV" = ( +"aYh" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/structure/closet/emcloset, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"aVW" = ( +"aYi" = ( /obj/structure/closet/emcloset, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"aVX" = ( +"aYj" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai_upload_foyer) -"aVY" = ( +"aYk" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/highsecurity{ name = "Secure Network Access"; @@ -22846,11 +24554,11 @@ }, /turf/open/floor/plasteel/vault, /area/ai_monitored/turret_protected/ai_upload_foyer) -"aVZ" = ( +"aYl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai_upload_foyer) -"aWa" = ( +"aYm" = ( /obj/machinery/airalarm{ pixel_y = 23 }, @@ -22861,7 +24569,7 @@ dir = 9 }, /area/hallway/primary/central) -"aWb" = ( +"aYn" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -22869,7 +24577,7 @@ dir = 1 }, /area/hallway/primary/central) -"aWc" = ( +"aYo" = ( /obj/machinery/light{ dir = 1 }, @@ -22880,7 +24588,7 @@ dir = 1 }, /area/hallway/primary/central) -"aWd" = ( +"aYp" = ( /obj/machinery/camera{ c_tag = "Central Primary Hallway - Fore"; dir = 2; @@ -22890,30 +24598,30 @@ dir = 1 }, /area/hallway/primary/central) -"aWe" = ( +"aYq" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/red/corner{ dir = 1 }, /area/hallway/primary/central) -"aWf" = ( +"aYr" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aWg" = ( +"aYs" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/corner{ dir = 4 }, /area/hallway/primary/central) -"aWh" = ( +"aYt" = ( /turf/open/floor/plasteel/red/corner{ dir = 4 }, /area/hallway/primary/central) -"aWi" = ( +"aYu" = ( /obj/structure/sign/map/left{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; @@ -22923,7 +24631,7 @@ dir = 1 }, /area/hallway/primary/central) -"aWj" = ( +"aYv" = ( /obj/machinery/light{ dir = 1 }, @@ -22936,7 +24644,7 @@ dir = 1 }, /area/hallway/primary/central) -"aWk" = ( +"aYw" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -22953,7 +24661,7 @@ dir = 5 }, /area/hallway/primary/central) -"aWl" = ( +"aYx" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -22966,7 +24674,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aWm" = ( +"aYy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -22977,7 +24685,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aWn" = ( +"aYz" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Crew Quarters Access" @@ -22985,15 +24693,15 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aWo" = ( -/obj/structure/sign/pods, +"aYA" = ( +/obj/structure/sign/warning/pods, /turf/closed/wall, /area/crew_quarters/locker) -"aWp" = ( +"aYB" = ( /obj/machinery/vending/snack/random, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"aWq" = ( +"aYC" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -23001,7 +24709,7 @@ /obj/structure/disposalpipe/trunk, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"aWr" = ( +"aYD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -23010,7 +24718,7 @@ }, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"aWs" = ( +"aYE" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, @@ -23022,7 +24730,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aWt" = ( +"aYF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -23034,19 +24742,19 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aWu" = ( +"aYG" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, /turf/open/floor/plating, -/area/maintenance/starboard) -"aWv" = ( +/area/maintenance/starboard/fore) +"aYH" = ( /turf/closed/wall, /area/storage/tech) -"aWw" = ( +"aYI" = ( /turf/closed/wall/r_wall, /area/crew_quarters/heads/chief) -"aWx" = ( +"aYJ" = ( /obj/machinery/keycard_auth{ pixel_x = -25; pixel_y = 25 @@ -23060,7 +24768,7 @@ /obj/machinery/computer/apc_control, /turf/open/floor/plasteel/vault, /area/crew_quarters/heads/chief) -"aWy" = ( +"aYK" = ( /obj/machinery/requests_console{ announcementConsole = 1; department = "Chief Engineer's Desk"; @@ -23071,18 +24779,18 @@ /obj/machinery/computer/card/minor/ce, /turf/open/floor/plasteel/vault, /area/crew_quarters/heads/chief) -"aWz" = ( +"aYL" = ( /obj/machinery/ai_status_display{ pixel_y = 32 }, /obj/machinery/computer/station_alert, /turf/open/floor/plasteel/vault, /area/crew_quarters/heads/chief) -"aWA" = ( +"aYM" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/crew_quarters/heads/chief) -"aWB" = ( +"aYN" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -23101,11 +24809,11 @@ dir = 1 }, /area/crew_quarters/heads/chief) -"aWC" = ( +"aYO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/engine/engineering) -"aWD" = ( +"aYP" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering{ @@ -23123,19 +24831,60 @@ dir = 1 }, /area/engine/engineering) -"aWH" = ( +"aYQ" = ( +/turf/open/floor/plating, +/area/maintenance/starboard) +"aYR" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aYS" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 10 }, /turf/open/floor/plating, /area/maintenance/starboard) -"aWK" = ( +"aYT" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboard) +"aYU" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/space, +/area/space/nearstation) +"aYV" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"aYW" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/space, +/area/space/nearstation) +"aYX" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 10 }, /turf/open/space, /area/space/nearstation) -"aWL" = ( +"aYY" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"aYZ" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"aZa" = ( /obj/machinery/ai_status_display{ pixel_x = -32 }, @@ -23144,20 +24893,20 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"aWM" = ( +"aZb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"aWN" = ( +"aZc" = ( /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"aWO" = ( +"aZd" = ( /obj/machinery/ai_slipper{ uses = 10 }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"aWP" = ( +"aZe" = ( /obj/structure/cable{ icon_state = "1-4" }, @@ -23166,7 +24915,7 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"aWQ" = ( +"aZf" = ( /obj/structure/cable{ icon_state = "2-8" }, @@ -23175,7 +24924,7 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"aWR" = ( +"aZg" = ( /obj/machinery/light{ dir = 4 }, @@ -23184,40 +24933,33 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"aWT" = ( +"aZh" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aWU" = ( +"aZi" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aWV" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +"aZj" = ( +/obj/structure/sign/warning/vacuum/external{ pixel_y = -32 }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aWW" = ( +"aZk" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aWX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, +"aZl" = ( /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aWY" = ( +"aZm" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -23226,14 +24968,14 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aWZ" = ( +"aZn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aXa" = ( +"aZo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -23242,20 +24984,20 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aXb" = ( +"aZp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aXc" = ( +"aZq" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aXd" = ( +"aZr" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -23271,18 +25013,18 @@ dir = 4 }, /area/hallway/secondary/entry) -"aXe" = ( +"aZs" = ( /obj/machinery/conveyor{ dir = 4; id = "QMLoad" }, /turf/open/floor/plating, /area/quartermaster/storage) -"aXf" = ( +"aZt" = ( /obj/machinery/holopad, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aXg" = ( +"aZu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -23293,7 +25035,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aXh" = ( +"aZv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -23303,7 +25045,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aXi" = ( +"aZw" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -23313,7 +25055,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aXj" = ( +"aZx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -23322,7 +25064,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aXk" = ( +"aZy" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -23332,7 +25074,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aXl" = ( +"aZz" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -23351,13 +25093,13 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aXm" = ( +"aZA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/closed/wall, /area/security/checkpoint/supply) -"aXn" = ( +"aZB" = ( /obj/machinery/recharger{ pixel_y = 4 }, @@ -23369,7 +25111,7 @@ dir = 10 }, /area/security/checkpoint/supply) -"aXo" = ( +"aZC" = ( /obj/item/paper_bin{ pixel_x = 1; pixel_y = 9 @@ -23386,7 +25128,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/checkpoint/supply) -"aXp" = ( +"aZD" = ( /obj/item/book/manual/wiki/security_space_law, /obj/machinery/newscaster{ pixel_y = -32 @@ -23397,7 +25139,7 @@ /obj/structure/table/reinforced, /turf/open/floor/plasteel/red/side, /area/security/checkpoint/supply) -"aXq" = ( +"aZE" = ( /obj/machinery/computer/secure_data{ dir = 8 }, @@ -23405,7 +25147,7 @@ dir = 6 }, /area/security/checkpoint/supply) -"aXr" = ( +"aZF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -23417,7 +25159,7 @@ icon_state = "panelscorched" }, /area/maintenance/port/fore) -"aXs" = ( +"aZG" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -23430,7 +25172,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aXt" = ( +"aZH" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -23444,8 +25186,8 @@ dir = 4 }, /turf/open/floor/plating, -/area/maintenance/port) -"aXu" = ( +/area/maintenance/port/fore) +"aZI" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -23461,7 +25203,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aXv" = ( +"aZJ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -23475,7 +25217,7 @@ dir = 1 }, /area/hallway/primary/central) -"aXw" = ( +"aZK" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -23489,7 +25231,7 @@ dir = 1 }, /area/hallway/primary/central) -"aXx" = ( +"aZL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -23498,7 +25240,7 @@ dir = 1 }, /area/hallway/primary/central) -"aXy" = ( +"aZM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -23509,7 +25251,7 @@ dir = 1 }, /area/hallway/primary/central) -"aXz" = ( +"aZN" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -23520,7 +25262,7 @@ dir = 1 }, /area/hallway/primary/central) -"aXA" = ( +"aZO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -23529,7 +25271,7 @@ dir = 1 }, /area/hallway/primary/central) -"aXB" = ( +"aZP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -23538,7 +25280,7 @@ dir = 1 }, /area/hallway/primary/central) -"aXC" = ( +"aZQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -23546,7 +25288,7 @@ dir = 1 }, /area/hallway/primary/central) -"aXD" = ( +"aZR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -23557,7 +25299,7 @@ dir = 1 }, /area/hallway/primary/central) -"aXE" = ( +"aZS" = ( /obj/machinery/light/small{ dir = 1 }, @@ -23569,7 +25311,7 @@ dir = 2; network = list("SS13") }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ desc = "A warning sign which reads 'HIGH-POWER TURRETS AHEAD'."; name = "\improper HIGH-POWER TURRETS AHEAD"; pixel_y = 32 @@ -23579,7 +25321,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aXF" = ( +"aZT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -23595,7 +25337,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aXG" = ( +"aZU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -23607,7 +25349,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aXH" = ( +"aZV" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -23619,14 +25361,14 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aXI" = ( +"aZW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/light/small{ dir = 1 }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_y = 32 }, /obj/effect/turf_decal/stripes/corner{ @@ -23634,7 +25376,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aXJ" = ( +"aZX" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -23643,7 +25385,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aXK" = ( +"aZY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -23652,7 +25394,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aXL" = ( +"aZZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -23661,7 +25403,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aXM" = ( +"baa" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -23671,20 +25413,19 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aXN" = ( +"bab" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/effect/landmark/lightsout, /obj/effect/turf_decal/plaque{ icon_state = "L7" }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aXO" = ( +"bac" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -23693,7 +25434,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aXP" = ( +"bad" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -23702,7 +25443,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aXQ" = ( +"bae" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -23711,13 +25452,13 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aXR" = ( +"baf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aXS" = ( +"bag" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -23725,7 +25466,7 @@ dir = 4 }, /area/hallway/primary/central) -"aXT" = ( +"bah" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -23733,7 +25474,7 @@ dir = 4 }, /area/hallway/primary/central) -"aXU" = ( +"bai" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -23744,7 +25485,7 @@ dir = 4 }, /area/hallway/primary/central) -"aXV" = ( +"baj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -23753,7 +25494,7 @@ dir = 4 }, /area/hallway/primary/central) -"aXW" = ( +"bak" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -23765,7 +25506,7 @@ dir = 4 }, /area/hallway/primary/central) -"aXX" = ( +"bal" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -23773,7 +25514,7 @@ dir = 4 }, /area/hallway/primary/central) -"aXY" = ( +"bam" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -23782,7 +25523,7 @@ dir = 4 }, /area/hallway/primary/central) -"aXZ" = ( +"ban" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -23793,17 +25534,7 @@ dir = 4 }, /area/hallway/primary/central) -"aYa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aYb" = ( +"bao" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -23814,7 +25545,7 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/fore) -"aYc" = ( +"bap" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -23827,24 +25558,27 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aYd" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aYe" = ( +"baq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable/yellow{ icon_state = "4-8" }, +/obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aYf" = ( +"bar" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bas" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -23856,7 +25590,16 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aYg" = ( +"bat" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bau" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -23866,7 +25609,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aYh" = ( +"bav" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -23878,7 +25621,46 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aYi" = ( +"baw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"bax" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bay" = ( +/obj/item/cigbutt, +/obj/machinery/power/apc{ + dir = 2; + name = "Starboard Bow Maintenance APC"; + areastring = "/area/maintenance/starboard/fore"; + pixel_y = -28 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"baz" = ( /obj/structure/rack, /obj/item/storage/toolbox/electrical{ pixel_x = 1; @@ -23889,7 +25671,7 @@ /obj/item/device/multitool, /turf/open/floor/plasteel/dark, /area/storage/tech) -"aYj" = ( +"baA" = ( /obj/structure/rack, /obj/item/circuitboard/computer/pandemic{ pixel_x = -3; @@ -23907,7 +25689,7 @@ /obj/item/circuitboard/machine/mechfab, /turf/open/floor/plasteel/dark, /area/storage/tech) -"aYk" = ( +"baB" = ( /obj/structure/rack, /obj/item/circuitboard/computer/mining, /obj/item/circuitboard/machine/autolathe{ @@ -23920,7 +25702,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tech) -"aYl" = ( +"baC" = ( /obj/structure/rack, /obj/item/circuitboard/machine/telecomms/processor, /obj/item/circuitboard/machine/telecomms/receiver, @@ -23932,7 +25714,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tech) -"aYm" = ( +"baD" = ( /obj/structure/table, /obj/item/device/flashlight{ pixel_x = 1; @@ -23955,13 +25737,13 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tech) -"aYn" = ( +"baE" = ( /obj/structure/table, /obj/item/device/aicard, /obj/item/aiModule/reset, /turf/open/floor/plasteel/dark, /area/storage/tech) -"aYo" = ( +"baF" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -23972,12 +25754,12 @@ dir = 5 }, /area/crew_quarters/heads/chief) -"aYp" = ( +"baG" = ( /turf/open/floor/plasteel/vault{ dir = 5 }, /area/crew_quarters/heads/chief) -"aYq" = ( +"baH" = ( /obj/item/storage/secure/safe{ pixel_x = 6; pixel_y = 30 @@ -23991,7 +25773,7 @@ dir = 5 }, /area/crew_quarters/heads/chief) -"aYr" = ( +"baI" = ( /obj/structure/disposalpipe/segment, /obj/machinery/power/apc{ dir = 4; @@ -24014,8 +25796,8 @@ dir = 5 }, /area/crew_quarters/heads/chief) -"aYs" = ( -/obj/structure/sign/securearea{ +"baJ" = ( +/obj/structure/sign/warning/securearea{ pixel_y = 32 }, /obj/structure/closet/radiation, @@ -24024,7 +25806,20 @@ /obj/item/clothing/glasses/meson/engine, /turf/open/floor/plasteel, /area/engine/engineering) -"aYt" = ( +"baK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engine/engineering) +"baL" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -24036,17 +25831,63 @@ /obj/item/clothing/glasses/meson/engine, /turf/open/floor/plasteel, /area/engine/engineering) -"aYu" = ( +"baM" = ( /turf/closed/wall, /area/security/checkpoint/engineering) -"aYx" = ( +"baN" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/floor/plating, +/area/maintenance/starboard) +"baO" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard) +"baP" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"baQ" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 4 }, /obj/structure/lattice, /turf/open/space, /area/space/nearstation) -"aYy" = ( +"baR" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"baS" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"baT" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"baU" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"baV" = ( /obj/machinery/camera{ c_tag = "AI Chamber - Port"; dir = 4; @@ -24061,7 +25902,7 @@ dir = 1 }, /area/ai_monitored/turret_protected/ai) -"aYz" = ( +"baW" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "AI Core shutters"; @@ -24069,14 +25910,14 @@ }, /turf/open/floor/plating, /area/ai_monitored/turret_protected/ai) -"aYA" = ( +"baX" = ( /obj/structure/cable{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"aYB" = ( +"baY" = ( /obj/structure/showcase/cyborg/old{ dir = 8; pixel_x = 9; @@ -24086,14 +25927,18 @@ dir = 4 }, /area/ai_monitored/turret_protected/ai) -"aYC" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; - name = "KEEP CLEAR: DOCKING AREA" - }, +"baZ" = ( +/obj/structure/sign/warning/docking, /turf/closed/wall, /area/hallway/secondary/entry) -"aYE" = ( +"bba" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 2; + name = "Arrival Airlock" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bbb" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -24102,7 +25947,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aYF" = ( +"bbc" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-05" }, @@ -24111,21 +25956,17 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aYG" = ( +"bbd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = -32 }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aYH" = ( +"bbe" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -24138,7 +25979,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aYI" = ( +"bbf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -24150,7 +25991,7 @@ dir = 4 }, /area/hallway/secondary/entry) -"aYJ" = ( +"bbg" = ( /obj/machinery/light_switch{ pixel_x = -38 }, @@ -24163,13 +26004,13 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aYK" = ( +"bbh" = ( /obj/effect/turf_decal/loading_area{ dir = 1 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aYL" = ( +"bbi" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -24178,13 +26019,13 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aYM" = ( +"bbj" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aYN" = ( +"bbk" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -24193,14 +26034,14 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aYO" = ( +"bbl" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/stripes/corner{ dir = 2 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aYP" = ( +"bbm" = ( /obj/machinery/camera{ c_tag = "Cargo Bay - Aft"; dir = 1; @@ -24211,7 +26052,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aYQ" = ( +"bbn" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line{ @@ -24219,7 +26060,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aYR" = ( +"bbo" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -24232,11 +26073,11 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aYS" = ( +"bbp" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/checkpoint/supply) -"aYT" = ( +"bbq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance{ @@ -24245,13 +26086,13 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aYU" = ( +"bbr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/neutral/corner{ dir = 1 }, /area/hallway/primary/central) -"aYV" = ( +"bbs" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -24266,7 +26107,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aYW" = ( +"bbt" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -24275,13 +26116,14 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aYX" = ( +"bbu" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, +/obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aYY" = ( +"bbv" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -24294,21 +26136,27 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aYZ" = ( +"bbw" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZa" = ( +"bbx" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZb" = ( +"bby" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bbz" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -24317,14 +26165,14 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZc" = ( +"bbA" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZd" = ( +"bbB" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -24334,7 +26182,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZe" = ( +"bbC" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -24344,7 +26192,7 @@ /obj/machinery/holopad, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZf" = ( +"bbD" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -24353,7 +26201,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZg" = ( +"bbE" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -24362,7 +26210,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZh" = ( +"bbF" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -24371,7 +26219,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZi" = ( +"bbG" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -24385,7 +26233,20 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZk" = ( +"bbH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/landmark/observer_start, +/obj/effect/turf_decal/plaque{ + icon_state = "L8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bbI" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -24394,7 +26255,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZl" = ( +"bbJ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -24403,7 +26264,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZm" = ( +"bbK" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -24412,7 +26273,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZn" = ( +"bbL" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -24421,7 +26282,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZo" = ( +"bbM" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -24430,7 +26291,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZp" = ( +"bbN" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -24440,7 +26301,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZq" = ( +"bbO" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -24450,7 +26311,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZr" = ( +"bbP" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -24461,7 +26322,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZs" = ( +"bbQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light{ dir = 4 @@ -24473,10 +26334,10 @@ dir = 4 }, /area/hallway/primary/central) -"aZt" = ( +"bbR" = ( /turf/closed/wall, /area/storage/tools) -"aZv" = ( +"bbS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; @@ -24484,10 +26345,10 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aZw" = ( +"bbT" = ( /turf/closed/wall/r_wall, /area/storage/tech) -"aZx" = ( +"bbU" = ( /obj/machinery/power/apc{ dir = 8; name = "Tech Storage APC"; @@ -24497,12 +26358,11 @@ /obj/structure/cable/yellow{ icon_state = "0-4" }, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/storage/tech) -"aZy" = ( +"bbV" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -24510,7 +26370,7 @@ dir = 8 }, /area/storage/tech) -"aZz" = ( +"bbW" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -24519,7 +26379,7 @@ dir = 8 }, /area/storage/tech) -"aZA" = ( +"bbX" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -24527,7 +26387,7 @@ dir = 8 }, /area/storage/tech) -"aZB" = ( +"bbY" = ( /obj/structure/table, /obj/item/stack/cable_coil{ pixel_x = -3; @@ -24546,7 +26406,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tech) -"aZC" = ( +"bbZ" = ( /obj/machinery/button/door{ desc = "A remote control-switch for the engineering security doors."; id = "Engineering"; @@ -24569,27 +26429,27 @@ dir = 5 }, /area/crew_quarters/heads/chief) -"aZD" = ( +"bca" = ( /obj/structure/table/reinforced, /obj/item/device/flashlight/lamp, /turf/open/floor/plasteel/neutral/corner{ dir = 2 }, /area/crew_quarters/heads/chief) -"aZE" = ( +"bcb" = ( /obj/structure/table/reinforced, /obj/item/folder/yellow, /obj/item/stamp/ce, /obj/item/reagent_containers/pill/patch/silver_sulf, /turf/open/floor/plasteel/neutral/side, /area/crew_quarters/heads/chief) -"aZF" = ( +"bcc" = ( /obj/structure/table/reinforced, /obj/item/clipboard, /obj/item/paper/monitorkey, /turf/open/floor/plasteel/neutral/side, /area/crew_quarters/heads/chief) -"aZG" = ( +"bcd" = ( /obj/structure/table/reinforced, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high{ @@ -24601,7 +26461,7 @@ dir = 8 }, /area/crew_quarters/heads/chief) -"aZH" = ( +"bce" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -24610,7 +26470,7 @@ dir = 5 }, /area/crew_quarters/heads/chief) -"aZI" = ( +"bcf" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -24626,8 +26486,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aZJ" = ( -/obj/effect/landmark/lightsout, +"bcg" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -24640,7 +26499,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aZK" = ( +"bch" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/machinery/shower{ dir = 8 @@ -24650,7 +26509,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aZL" = ( +"bci" = ( /obj/structure/filingcabinet, /obj/structure/reagent_dispensers/peppertank{ pixel_y = 30 @@ -24663,7 +26522,7 @@ dir = 9 }, /area/security/checkpoint/engineering) -"aZM" = ( +"bcj" = ( /obj/structure/table, /obj/item/device/radio/intercom{ dir = 4; @@ -24677,7 +26536,7 @@ dir = 1 }, /area/security/checkpoint/engineering) -"aZN" = ( +"bck" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -1; @@ -24691,15 +26550,52 @@ dir = 5 }, /area/security/checkpoint/engineering) -"aZO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Library" +"bcl" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) +"bcm" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 }, -/turf/open/floor/wood, -/area/library) -"aZQ" = ( -/obj/effect/landmark/tripai, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bcn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bco" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 10 + }, +/turf/open/space, +/area/space/nearstation) +"bcp" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bcq" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/space, +/area/space/nearstation) +"bcr" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"bcs" = ( +/obj/effect/landmark/start/ai/secondary, /obj/item/device/radio/intercom{ anyai = 1; freerange = 1; @@ -24736,7 +26632,7 @@ }, /turf/open/floor/circuit/green, /area/ai_monitored/turret_protected/ai) -"aZR" = ( +"bct" = ( /obj/machinery/holopad, /obj/machinery/flasher{ id = "AI"; @@ -24747,21 +26643,54 @@ dir = 1 }, /area/ai_monitored/turret_protected/ai) -"aZS" = ( +"bcu" = ( /obj/machinery/ai_slipper{ uses = 10 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"aZU" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/assistantformal, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, +"bcv" = ( +/obj/machinery/turretid{ + icon_state = "control_stun"; + name = "AI Chamber turret control"; + pixel_x = 3; + pixel_y = -23 + }, +/obj/machinery/door/window{ + base_state = "leftsecure"; + dir = 8; + obj_integrity = 300; + icon_state = "leftsecure"; + name = "Primary AI Core Access"; + req_access_txt = "16" + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = 4; + pixel_y = 33 + }, +/turf/open/floor/plasteel/vault{ + dir = 6 + }, +/area/ai_monitored/turret_protected/ai) +"bcw" = ( +/obj/machinery/requests_console{ + department = "AI"; + departmentType = 5; + pixel_x = 30; + pixel_y = 30 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = 23; + pixel_y = -23 + }, /turf/open/floor/plasteel/vault, -/area/crew_quarters/locker) -"aZV" = ( +/area/ai_monitored/turret_protected/ai) +"bcx" = ( /obj/machinery/door/window{ base_state = "rightsecure"; dir = 4; @@ -24779,7 +26708,7 @@ dir = 10 }, /area/ai_monitored/turret_protected/ai) -"aZW" = ( +"bcy" = ( /obj/machinery/ai_slipper{ uses = 10 }, @@ -24789,7 +26718,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"aZX" = ( +"bcz" = ( /obj/machinery/holopad, /obj/machinery/flasher{ id = "AI"; @@ -24800,8 +26729,8 @@ dir = 4 }, /area/ai_monitored/turret_protected/ai) -"aZY" = ( -/obj/effect/landmark/tripai, +"bcA" = ( +/obj/effect/landmark/start/ai/secondary, /obj/item/device/radio/intercom{ anyai = 1; freerange = 1; @@ -24838,28 +26767,28 @@ }, /turf/open/floor/circuit/green, /area/ai_monitored/turret_protected/ai) -"aZZ" = ( +"bcB" = ( /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"baa" = ( +"bcC" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bab" = ( +"bcD" = ( /obj/machinery/vending/cigarette, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bac" = ( +"bcE" = ( /obj/machinery/vending/coffee, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bad" = ( +"bcF" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -24869,7 +26798,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bae" = ( +"bcG" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -24881,7 +26810,7 @@ dir = 4 }, /area/hallway/secondary/entry) -"baf" = ( +"bcH" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -24891,7 +26820,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"bag" = ( +"bcI" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -24899,25 +26828,15 @@ icon_state = "panelscorched" }, /area/maintenance/port/fore) -"bah" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/assistantformal, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 +"bcJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/turf/open/floor/plasteel/vault, -/area/crew_quarters/locker) -"bai" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 +/turf/open/floor/plating{ + icon_state = "platingdmg2" }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"baj" = ( +/area/maintenance/port/fore) +"bcK" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -24926,7 +26845,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"bak" = ( +"bcL" = ( /obj/machinery/door/airlock/maintenance{ name = "Cargo Bay Maintenance"; req_access_txt = "0"; @@ -24937,7 +26856,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"bal" = ( +"bcM" = ( /obj/item/device/radio/intercom{ broadcasting = 0; listening = 1; @@ -24950,14 +26869,14 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bam" = ( +"bcN" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"ban" = ( +"bcO" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -24966,7 +26885,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bao" = ( +"bcP" = ( /obj/machinery/conveyor_switch/oneway{ id = "packageSort2"; pixel_x = -8; @@ -24977,7 +26896,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bap" = ( +"bcQ" = ( /obj/structure/rack, /obj/item/stack/packageWrap{ pixel_x = 2; @@ -25010,7 +26929,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"baq" = ( +"bcR" = ( /obj/structure/rack, /obj/machinery/power/apc{ dir = 2; @@ -25031,14 +26950,14 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bar" = ( +"bcS" = ( /obj/structure/closet/wardrobe/cargotech, /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bas" = ( +"bcT" = ( /obj/structure/closet/wardrobe/cargotech, /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/stripes/line{ @@ -25046,10 +26965,10 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bat" = ( +"bcU" = ( /turf/closed/wall, /area/quartermaster/office) -"bau" = ( +"bcV" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, @@ -25061,7 +26980,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/office) -"bav" = ( +"bcW" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -25075,7 +26994,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/office) -"baw" = ( +"bcX" = ( /obj/item/stamp{ pixel_x = -3; pixel_y = 3 @@ -25101,14 +27020,14 @@ dir = 9 }, /area/quartermaster/office) -"bax" = ( +"bcY" = ( /obj/structure/table/reinforced, /obj/machinery/computer/stockexchange, /turf/open/floor/plasteel/brown{ dir = 5 }, /area/quartermaster/office) -"bay" = ( +"bcZ" = ( /obj/structure/sign/directions/engineering{ desc = "A direction sign, pointing out which way the Cargo department is."; icon_state = "direction_supply"; @@ -25117,12 +27036,12 @@ }, /turf/closed/wall, /area/quartermaster/office) -"baz" = ( +"bda" = ( /obj/machinery/computer/cargo/request, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/primary/port) -"baA" = ( +"bdb" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/machinery/status_display{ pixel_y = 32; @@ -25134,7 +27053,7 @@ dir = 1 }, /area/hallway/primary/port) -"baB" = ( +"bdc" = ( /obj/machinery/firealarm{ dir = 2; pixel_y = 24 @@ -25143,14 +27062,14 @@ dir = 1 }, /area/hallway/primary/port) -"baC" = ( +"bdd" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/brown{ dir = 1 }, /area/hallway/primary/port) -"baD" = ( +"bde" = ( /obj/machinery/airalarm{ pixel_y = 23 }, @@ -25163,10 +27082,10 @@ dir = 5 }, /area/hallway/primary/port) -"baE" = ( +"bdf" = ( /turf/closed/wall, /area/hallway/primary/port) -"baF" = ( +"bdg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/extinguisher_cabinet{ pixel_x = -27 @@ -25183,14 +27102,14 @@ dir = 1 }, /area/hallway/primary/central) -"baG" = ( +"bdh" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/hallway/primary/central) -"baH" = ( +"bdi" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -25201,7 +27120,7 @@ dir = 2 }, /area/hallway/primary/central) -"baI" = ( +"bdj" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -25212,7 +27131,7 @@ dir = 2 }, /area/hallway/primary/central) -"baJ" = ( +"bdk" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -25229,7 +27148,7 @@ dir = 2 }, /area/hallway/primary/central) -"baK" = ( +"bdl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -25241,7 +27160,7 @@ dir = 2 }, /area/hallway/primary/central) -"baL" = ( +"bdm" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -25256,7 +27175,7 @@ dir = 2 }, /area/hallway/primary/central) -"baM" = ( +"bdn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -25271,7 +27190,7 @@ dir = 2 }, /area/hallway/primary/central) -"baN" = ( +"bdo" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -25282,7 +27201,7 @@ dir = 2 }, /area/hallway/primary/central) -"baO" = ( +"bdp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -25297,7 +27216,7 @@ dir = 2 }, /area/hallway/primary/central) -"baP" = ( +"bdq" = ( /obj/machinery/firealarm{ dir = 1; pixel_y = -24 @@ -25309,7 +27228,7 @@ dir = 2 }, /area/hallway/primary/central) -"baQ" = ( +"bdr" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -25317,7 +27236,7 @@ dir = 2 }, /area/hallway/primary/central) -"baR" = ( +"bds" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -25325,14 +27244,14 @@ dir = 2 }, /area/hallway/primary/central) -"baS" = ( +"bdt" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/machinery/holopad, /turf/open/floor/plasteel, /area/hallway/primary/central) -"baT" = ( +"bdu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -25340,7 +27259,7 @@ dir = 8 }, /area/hallway/primary/central) -"baU" = ( +"bdv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -25352,7 +27271,7 @@ dir = 8 }, /area/hallway/primary/central) -"baV" = ( +"bdw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -25365,7 +27284,7 @@ dir = 8 }, /area/hallway/primary/central) -"baW" = ( +"bdx" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -25374,7 +27293,7 @@ dir = 8 }, /area/hallway/primary/central) -"baX" = ( +"bdy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -25387,7 +27306,7 @@ dir = 8 }, /area/hallway/primary/central) -"baY" = ( +"bdz" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -25398,7 +27317,7 @@ dir = 8 }, /area/hallway/primary/central) -"baZ" = ( +"bdA" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -25413,7 +27332,7 @@ dir = 8 }, /area/hallway/primary/central) -"bba" = ( +"bdB" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -25423,7 +27342,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbb" = ( +"bdC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/camera{ c_tag = "Central Primary Hallway - Fore - Starboard Corner"; @@ -25434,13 +27353,13 @@ dir = 4 }, /area/hallway/primary/central) -"bbc" = ( +"bdD" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plasteel/yellow/side{ dir = 9 }, /area/storage/tools) -"bbd" = ( +"bdE" = ( /obj/machinery/power/apc{ dir = 1; name = "Auxiliary Tool Storage APC"; @@ -25457,7 +27376,7 @@ dir = 1 }, /area/storage/tools) -"bbe" = ( +"bdF" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -25465,7 +27384,7 @@ dir = 1 }, /area/storage/tools) -"bbf" = ( +"bdG" = ( /obj/structure/closet/toolcloset, /obj/item/device/radio/intercom{ freerange = 0; @@ -25477,20 +27396,20 @@ dir = 1 }, /area/storage/tools) -"bbg" = ( +"bdH" = ( /obj/structure/closet/toolcloset, /turf/open/floor/plasteel/yellow/side{ dir = 5 }, /area/storage/tools) -"bbh" = ( +"bdI" = ( /obj/effect/decal/cleanable/cobweb, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"bbi" = ( +"bdJ" = ( /obj/effect/landmark/xeno_spawn, /obj/item/cigbutt, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -25501,7 +27420,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"bbj" = ( +"bdK" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -25510,7 +27429,7 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/fore) -"bbk" = ( +"bdL" = ( /obj/structure/rack, /obj/item/circuitboard/computer/borgupload{ pixel_x = -1; @@ -25522,7 +27441,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tech) -"bbl" = ( +"bdM" = ( /obj/machinery/camera{ c_tag = "Secure Tech Storage"; dir = 8 @@ -25540,7 +27459,7 @@ dir = 8 }, /area/storage/tech) -"bbm" = ( +"bdN" = ( /obj/machinery/light{ dir = 8 }, @@ -25548,7 +27467,7 @@ dir = 8 }, /area/storage/tech) -"bbn" = ( +"bdO" = ( /obj/structure/rack, /obj/item/circuitboard/computer/cloning, /obj/item/circuitboard/computer/med_data{ @@ -25561,10 +27480,19 @@ /obj/item/circuitboard/machine/smoke_machine, /turf/open/floor/plasteel/dark, /area/storage/tech) -"bbo" = ( -/turf/closed/wall, -/area/maintenance/solars/port/fore) -"bbp" = ( +"bdP" = ( +/obj/structure/rack, +/obj/item/circuitboard/computer/secure_data{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/circuitboard/computer/security{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bdQ" = ( /obj/structure/rack, /obj/item/circuitboard/computer/powermonitor{ pixel_x = -2; @@ -25581,7 +27509,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/dark, /area/storage/tech) -"bbq" = ( +"bdR" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -25589,13 +27517,13 @@ dir = 8 }, /area/storage/tech) -"bbr" = ( +"bdS" = ( /obj/structure/table, /obj/item/electronics/apc, /obj/item/electronics/airlock, /turf/open/floor/plasteel/dark, /area/storage/tech) -"bbs" = ( +"bdT" = ( /obj/machinery/button/door{ id = "transittube"; name = "Transit Tube Lockdown"; @@ -25615,7 +27543,7 @@ dir = 5 }, /area/crew_quarters/heads/chief) -"bbt" = ( +"bdU" = ( /obj/item/cartridge/engineering{ pixel_x = 4; pixel_y = 5 @@ -25633,7 +27561,7 @@ dir = 4 }, /area/crew_quarters/heads/chief) -"bbu" = ( +"bdV" = ( /obj/effect/landmark/start/chief_engineer, /obj/structure/chair/office/light{ dir = 1; @@ -25643,13 +27571,13 @@ dir = 8 }, /area/crew_quarters/heads/chief) -"bbv" = ( +"bdW" = ( /obj/machinery/holopad, /turf/open/floor/plasteel/neutral{ dir = 8 }, /area/crew_quarters/heads/chief) -"bbw" = ( +"bdX" = ( /obj/structure/table/reinforced, /obj/item/paper_bin{ pixel_x = -3; @@ -25660,7 +27588,7 @@ dir = 8 }, /area/crew_quarters/heads/chief) -"bbx" = ( +"bdY" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -25679,7 +27607,7 @@ dir = 5 }, /area/crew_quarters/heads/chief) -"bby" = ( +"bdZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -25691,7 +27619,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"bbz" = ( +"bea" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -25702,7 +27630,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/engine/engineering) -"bbA" = ( +"beb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -25719,7 +27647,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"bbB" = ( +"bec" = ( /obj/item/screwdriver{ pixel_y = 10 }, @@ -25734,9684 +27662,56 @@ dir = 8 }, /area/security/checkpoint/engineering) -"bbC" = ( +"bed" = ( /obj/structure/chair/office/dark{ dir = 4 }, /obj/effect/landmark/start/depsec/engineering, /turf/open/floor/plasteel, /area/security/checkpoint/engineering) -"bbD" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_x = 30 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/checkpoint/engineering) -"bbF" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/turf/open/floor/plasteel/vault{ - dir = 1 - }, -/area/ai_monitored/turret_protected/ai) -"bbG" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/clothing/under/assistantformal, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/turf/open/floor/plasteel/vault, -/area/crew_quarters/locker) -"bbH" = ( -/obj/machinery/camera{ - c_tag = "AI Chamber - Starboard"; - dir = 8; - network = list("RD") - }, -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/ai_monitored/turret_protected/ai) -"bbI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bbJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/secondary/entry) -"bbK" = ( -/turf/closed/wall, -/area/security/checkpoint/customs) -"bbL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bbM" = ( -/obj/item/stack/sheet/cardboard, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bbN" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/office) -"bbO" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/conveyor{ - backwards = 1; - dir = 2; - forwards = 2; - id = "packageSort2" - }, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bbP" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/quartermaster/sorting) -"bbQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/power/apc{ - dir = 8; - name = "Cargo Office APC"; - areastring = "/area/quartermaster/office"; - pixel_x = -24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/brown{ - dir = 9 - }, -/area/quartermaster/office) -"bbR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/office) -"bbS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/status_display{ - pixel_y = 32; - supply_display = 1 - }, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/office) -"bbT" = ( -/turf/open/floor/plasteel/brown/corner{ - dir = 1 - }, -/area/quartermaster/office) -"bbU" = ( -/obj/effect/landmark/start/cargo_technician, -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/office) -"bbV" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westleft{ - dir = 8; - name = "Cargo Desk"; - req_access_txt = "50" - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bbW" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbY" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bbZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bca" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Foyer"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/hallway/primary/port) -"bcb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -29 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"bcc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"bcd" = ( -/turf/closed/wall, -/area/janitor) -"bce" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_access_txt = "26" - }, -/turf/open/floor/plasteel, -/area/janitor) -"bcf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/janitor) -"bcg" = ( -/turf/closed/wall, -/area/maintenance/central) -"bch" = ( -/obj/machinery/door/airlock{ - name = "Central Emergency Storage"; - req_access_txt = "0" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bci" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/central) -"bcj" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain/private) -"bck" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain/private) -"bcl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bcm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"bcn" = ( -/obj/structure/rack, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/clothing/suit/hazardvest, -/obj/item/device/multitool, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/storage/tools) -"bco" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/storage/tools) -"bcp" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/storage/tools) -"bcq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/storage/tools) -"bcr" = ( -/obj/machinery/camera{ - c_tag = "Auxiliary Tool Storage"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 4 - }, -/area/storage/tools) -"bcs" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bct" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bcu" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/storage/tech) -"bcv" = ( -/obj/structure/rack, -/obj/item/circuitboard/computer/crew{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/circuitboard/computer/card{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/circuitboard/computer/communications{ - pixel_x = 5; - pixel_y = -5 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bcw" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bcx" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage"; - req_access_txt = "19;23" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bcy" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bcz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bcA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bcB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bcC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bcD" = ( -/obj/structure/table, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/item/wirecutters, -/obj/item/device/multitool, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bcE" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bcF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/heads/chief) -"bcG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/crew_quarters/heads/chief) -"bcH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/heads/chief) -"bcI" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bcJ" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bcK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engine/engineering) -"bcL" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Engineering Security APC"; - areastring = "/area/security/checkpoint/engineering"; - pixel_x = -24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/checkpoint/engineering) -"bcM" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bcN" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring the engine."; - dir = 8; - name = "Engine Monitor"; - network = list("Engine"); - pixel_x = 32 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/checkpoint/engineering) -"bcO" = ( -/obj/machinery/vending/kink, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"bcP" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/ai_status_display{ - pixel_x = -32 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"bcQ" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"bcS" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/arrival) -"bcT" = ( -/obj/machinery/door/airlock/titanium{ - name = "Arrivals Shuttle Airlock" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"bcU" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/arrival) -"bcV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/secondary/entry) -"bcW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/checkpoint/customs) -"bcX" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/checkpoint/customs) -"bcY" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Customs APC"; - areastring = "/area/security/checkpoint/customs"; - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/customs) -"bcZ" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/obj/machinery/computer/security, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/customs) -"bda" = ( -/obj/machinery/computer/card, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/obj/machinery/camera{ - c_tag = "Customs Checkpoint"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/customs) -"bdb" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/newscaster/security_unit{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/customs) -"bdc" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 30 - }, -/obj/structure/closet/secure_closet/security, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/checkpoint/customs) -"bdd" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"bde" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bdf" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/closed/wall, -/area/quartermaster/sorting) -"bdg" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bdh" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bdi" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bdj" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/structure/plasticflaps{ - opacity = 0 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bdk" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bdl" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/office) -"bdm" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bdn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bdo" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bdp" = ( -/obj/machinery/computer/cargo{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/office) -"bdq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"bdr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bds" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bdv" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/hallway/primary/port) -"bdw" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/hallway/primary/port) -"bdx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/brown/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bdy" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - sortType = 22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"bdA" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/light_switch{ - pixel_x = 8; - pixel_y = 30 - }, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bdB" = ( -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bdC" = ( -/obj/structure/closet/l3closet/janitor, -/obj/machinery/airalarm{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bdD" = ( -/obj/structure/closet/jcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bdE" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/central) -"bdF" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bdG" = ( -/turf/closed/wall/r_wall, -/area/maintenance/central) -"bdH" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bdI" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/wood, -/obj/item/pinpointer/nuke, -/obj/item/disk/nuclear, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bdJ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/computer/security/wooden_tv, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bdK" = ( -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bdL" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bdM" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/filingcabinet{ - pixel_x = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bdN" = ( -/obj/machinery/light_switch{ - pixel_x = 28 - }, -/obj/structure/dresser, -/obj/item/storage/secure/safe{ - pixel_x = 6; - pixel_y = 28 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bdO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bdP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"bdR" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 10 - }, -/area/storage/tools) -"bdS" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/yellow/side{ - dir = 2 - }, -/area/storage/tools) -"bdT" = ( -/turf/open/floor/plasteel/yellow/side{ - dir = 2 - }, -/area/storage/tools) -"bdU" = ( -/obj/structure/rack, -/obj/item/electronics/apc, -/obj/item/electronics/airlock, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/yellow/side{ - dir = 2 - }, -/area/storage/tools) -"bdV" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/rods/fifty, -/turf/open/floor/plasteel/yellow/side{ - dir = 6 - }, -/area/storage/tools) -"bdW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bdX" = ( -/obj/structure/rack, -/obj/item/circuitboard/computer/robotics{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/circuitboard/computer/mecha_control{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bdY" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bdZ" = ( -/obj/machinery/vending/assist, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bea" = ( -/obj/structure/table, -/obj/item/device/plant_analyzer, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"beb" = ( -/obj/structure/table, -/obj/item/device/analyzer, -/obj/item/device/healthanalyzer, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bec" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/device/multitool, -/obj/item/clothing/glasses/meson, -/obj/machinery/light_switch{ - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bed" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) "bee" = ( /obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bef" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"beg" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -29 - }, -/obj/machinery/suit_storage_unit/ce, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"beh" = ( -/obj/structure/rack, -/obj/item/storage/secure/briefcase, -/obj/item/clothing/mask/cigarette/cigar, -/obj/machinery/computer/security/telescreen{ - dir = 1; - name = "MiniSat Monitor"; - network = list("MiniSat","tcomm"); - pixel_y = -30 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bei" = ( -/obj/structure/rack, -/obj/item/lighter, -/obj/item/clothing/glasses/meson, -/obj/machinery/button/door{ - id = "ceprivacy"; - name = "Privacy Shutters Control"; - pixel_y = -26 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bej" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/simple_animal/parrot/Poly, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bek" = ( -/obj/structure/closet/secure_closet/engineering_chief{ - req_access_txt = "0" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bel" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_access_txt = "10" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engine/engineering) -"bem" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/camera/autoname{ - dir = 4; - network = list("SS13") - }, -/obj/machinery/button/door{ - desc = "A remote control-switch for the engineering security doors."; - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_x = -24; - pixel_y = -6; - req_access_txt = "1" - }, -/obj/machinery/button/door{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_x = -24; - pixel_y = 5; - req_access_txt = "1" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/checkpoint/engineering) -"ben" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/engineering) -"beo" = ( -/obj/structure/closet/secure_closet/security/engine, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/checkpoint/engineering) -"bep" = ( -/turf/closed/wall, -/area/engine/break_room) -"beq" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK" - }, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"bes" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bet" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Port Fore"; - dir = 8; - network = list("MiniSat") - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"beu" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"bew" = ( -/obj/machinery/power/apc{ - aidisabled = 0; - dir = 1; - name = "AI Chamber APC"; - areastring = "/area/ai_monitored/turret_protected/ai"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"bex" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"bey" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Starboard Fore"; - dir = 4; - network = list("MiniSat") - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bez" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/aisat) -"beA" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"beB" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"beC" = ( -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"beD" = ( -/obj/machinery/computer/arcade, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"beE" = ( -/obj/structure/closet/wardrobe/green, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"beF" = ( -/obj/structure/closet/wardrobe/black, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"beG" = ( -/obj/structure/closet/wardrobe/mixed, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"beH" = ( -/obj/structure/closet/wardrobe/grey, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"beI" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle"; - dir = 2; - network = list("SS13") - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"beJ" = ( -/obj/structure/shuttle/engine/propulsion/burst/right{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/shuttle/arrival) -"beK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/checkpoint/customs) -"beL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/checkpoint/customs) -"beM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"beN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"beO" = ( -/obj/structure/chair/office/dark, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"beP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"beQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/checkpoint/customs) -"beR" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"beS" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"beT" = ( -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"beU" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mailroom Maintenance"; - req_access_txt = "50" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"beV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"beW" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"beX" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort2"; - pixel_x = -2; - pixel_y = 12 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"beY" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Office"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/office) -"beZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bfa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bfb" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bfc" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/office) -"bfd" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bfe" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bff" = ( -/turf/open/floor/plasteel/brown/corner{ - dir = 4 - }, -/area/hallway/primary/port) -"bfg" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/hallway/primary/port) -"bfh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/brown/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"bfi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"bfj" = ( -/obj/item/restraints/legcuffs/beartrap, -/obj/item/restraints/legcuffs/beartrap, -/obj/structure/table, -/obj/machinery/requests_console{ - department = "Janitorial"; - departmentType = 1; - pixel_x = -29 - }, -/obj/item/reagent_containers/spray/cleaner, -/obj/machinery/camera{ - c_tag = "Custodial Closet"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bfk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plating, -/area/janitor) -"bfl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bfm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bfn" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Custodial Maintenance"; - req_access_txt = "26" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bfo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bfp" = ( -/obj/item/device/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bfq" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/central) -"bfr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/bridge) -"bfs" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/bridge) -"bft" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bfu" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bfv" = ( -/turf/closed/wall/r_wall, -/area/bridge) -"bfw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bfx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/bridge) -"bfy" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster/security_unit{ - pixel_x = -30; - pixel_y = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bfz" = ( -/obj/effect/landmark/start/captain, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bfA" = ( -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bfB" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bfC" = ( -/obj/machinery/door/window/westright, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bfD" = ( -/obj/structure/bed, -/obj/item/bedsheet/captain, -/obj/effect/landmark/start/captain, -/obj/machinery/camera{ - c_tag = "Captain's Quarters"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bfE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bfF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/yellow/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"bfG" = ( -/obj/structure/sign/directions/security{ - desc = "A direction sign, pointing out which way the security department is."; - dir = 1; - icon_state = "direction_sec"; - pixel_y = 8 - }, -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the engineering department is."; - dir = 4; - icon_state = "direction_eng" - }, -/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 = -8 - }, -/turf/closed/wall/r_wall, -/area/storage/tools) -"bfH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/storage/tools) -"bfI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Auxiliary Tool Storage"; - req_access_txt = "12" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/storage/tools) -"bfJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/storage/tools) -"bfK" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/map/left{ - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault, -/area/hallway/primary/starboard) -"bfL" = ( -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/vault, -/area/hallway/primary/starboard) -"bfM" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bfN" = ( -/turf/closed/wall, -/area/hallway/primary/starboard) -"bfO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/storage/tech) -"bfP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage"; - req_access_txt = "0"; - req_one_access_txt = "23;30" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bfQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "ceprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/chief) -"bfR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "ceprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/chief) -"bfS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bfT" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Security Doors" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bfU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bfV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"bfW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Engineering Security Post"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bfX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"bfY" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/engine/break_room) -"bfZ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/break_room) -"bga" = ( -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 8 - }, -/turf/closed/wall/mineral/titanium, -/area/shuttle/pod_4) -"bgb" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/pod_4) -"bgc" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Space Access Airlock"; - req_one_access_txt = "32;19" - }, -/turf/open/floor/plating, -/area/aisat) -"bgd" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/aisat) -"bge" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/aisat) -"bgf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/aisat) -"bgg" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "MiniSat Airlock Access"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bgh" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bgi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bgj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"bgk" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"bgl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bgm" = ( -/obj/structure/table/reinforced, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_x = 28 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bgn" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/space, -/area/space/nearstation) -"bgo" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/space, -/area/space/nearstation) -"bgq" = ( -/obj/structure/chair, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"bgt" = ( -/obj/structure/shuttle/engine/heater{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/shuttle/arrival) -"bgu" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/shuttle/arrival) -"bgv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/secondary/entry) -"bgw" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/closet, -/obj/item/crowbar, -/obj/item/device/assembly/flash/handheld, -/obj/item/device/radio, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/checkpoint/customs) -"bgx" = ( -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/customs) -"bgy" = ( -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/structure/table/reinforced, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/customs) -"bgz" = ( -/obj/item/paper, -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor{ - dir = 2; - name = "Arrivals Security Checkpoint"; - pixel_y = -8; - req_access_txt = "1" - }, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/customs) -"bgA" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table/reinforced, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/customs) -"bgB" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 28 - }, -/obj/structure/closet/crate/secure/weapon{ - desc = "A secure clothing crate."; - name = "formal uniform crate"; - req_access_txt = "3" - }, -/obj/item/clothing/under/rank/security/navyblue, -/obj/item/clothing/under/rank/security/navyblue, -/obj/item/clothing/under/rank/security/navyblue, -/obj/item/clothing/under/rank/security/navyblue, -/obj/item/clothing/under/rank/security/navyblue, -/obj/item/clothing/under/rank/security/navyblue, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/under/rank/warden/navyblue, -/obj/item/clothing/suit/security/warden, -/obj/item/clothing/under/rank/head_of_security/navyblue, -/obj/item/clothing/suit/security/hos, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navywarden, -/obj/item/clothing/head/beret/sec/navyhos, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/warden) -"bgC" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bgD" = ( -/obj/machinery/space_heater, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bgE" = ( -/obj/structure/disposalpipe/sorting/wrap{ - dir = 1 - }, -/turf/closed/wall, -/area/quartermaster/sorting) -"bgF" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bgG" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/eastleft{ - name = "Mail"; - req_access_txt = "50" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bgH" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bgI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bgJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bgK" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bgL" = ( -/obj/machinery/status_display{ - pixel_y = 32; - supply_display = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bgM" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bgN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Mailroom"; - req_access_txt = "0"; - req_one_access_txt = "48;50" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bgO" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/office) -"bgP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bgQ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bgR" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/cargo_technician, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bgS" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/office) -"bgT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Office"; - req_access_txt = "0"; - req_one_access_txt = "48;50" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bgU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/hallway/primary/port) -"bgV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgY" = ( -/turf/open/floor/plasteel/brown/corner{ - dir = 2 - }, -/area/hallway/primary/port) -"bgZ" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/brown{ - dir = 2 - }, -/area/hallway/primary/port) -"bha" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Custodial Closet APC"; - areastring = "/area/janitor"; - pixel_x = -24 - }, -/obj/structure/table, -/obj/item/clothing/gloves/color/orange, -/obj/item/storage/box/mousetraps, -/obj/item/storage/box/mousetraps, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bhb" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/portable_atmospherics/canister/water_vapor, -/mob/living/simple_animal/hostile/lizard{ - name = "Wags-His-Tail"; - real_name = "Wags-His-Tail" - }, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bhc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/landmark/start/janitor, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bhd" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bhe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/central) -"bhf" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/power/apc{ - dir = 4; - name = "Central Maintenance APC"; - areastring = "/area/maintenance/central"; - pixel_x = 26 - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/maintenance/central) -"bhg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/bridge) -"bhh" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/computer/card, -/turf/open/floor/plasteel/darkgreen/side{ - dir = 9 - }, -/area/bridge) -"bhi" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/plasteel/darkgreen/side{ - dir = 1 - }, -/area/bridge) -"bhj" = ( -/obj/machinery/computer/crew, -/turf/open/floor/plasteel/darkgreen/side{ - dir = 1 - }, -/area/bridge) -"bhk" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/item/folder/yellow{ - pixel_y = 4 - }, -/obj/machinery/camera{ - c_tag = "Bridge - Central"; - dir = 2; - network = list("SS13") - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/darkbrown/side{ - dir = 1 - }, -/area/bridge) -"bhl" = ( -/obj/machinery/computer/station_alert, -/turf/open/floor/plasteel/darkbrown/side{ - dir = 1 - }, -/area/bridge) -"bhm" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/computer/monitor{ - name = "Bridge Power Monitoring Console" - }, -/turf/open/floor/plasteel/darkbrown/side{ - dir = 1 - }, -/area/bridge) -"bhn" = ( -/obj/machinery/computer/atmos_alert, -/turf/open/floor/plasteel/darkbrown/side{ - dir = 1 - }, -/area/bridge) -"bho" = ( -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/darkbrown/side{ - dir = 1 - }, -/area/bridge) -"bhp" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel/darkred/side{ - dir = 1 - }, -/area/bridge) -"bhq" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel/darkred/side{ - dir = 1 - }, -/area/bridge) -"bhr" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/computer/prisoner, -/turf/open/floor/plasteel/darkred/side{ - dir = 5 - }, -/area/bridge) -"bhs" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/bridge) -"bht" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album{ - pixel_y = -4 - }, -/obj/item/device/camera{ - pixel_y = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Captain)"; - pixel_x = -28 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bhu" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/item/razor{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/clothing/mask/cigarette/cigar, -/obj/item/reagent_containers/food/drinks/flask/gold, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bhv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bhw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bhx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bhy" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/holopad, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bhz" = ( -/obj/structure/table/wood, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bhA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bhB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=14.2-Central-CrewQuarters"; - location = "14-Starboard-Central" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhC" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"bhD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Primary Hallway" - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bhE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bhF" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bhG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bhH" = ( -/obj/machinery/firealarm{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bhI" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway - Tech Storage"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bhJ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bhK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bhL" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bhM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bhN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bhO" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bhP" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bhQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Starboard Hallway APC"; - areastring = "/area/hallway/primary/starboard"; - pixel_y = 26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bhR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bhS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=14-Starboard-Central"; - location = "13.3-Engineering-Central" - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bhT" = ( -/turf/closed/wall/r_wall, -/area/engine/break_room) -"bhU" = ( -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/glass, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bhV" = ( -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/book/manual/wiki/engineering_construction{ - pixel_y = 3 - }, -/obj/item/book/manual/wiki/engineering_guide{ - pixel_x = -4 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bhW" = ( -/obj/item/folder/yellow, -/obj/item/folder/yellow, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/obj/structure/table/glass, -/obj/item/storage/firstaid/fire{ - pixel_y = 8 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bhX" = ( -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bhY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bhZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bia" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bib" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bic" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bid" = ( -/obj/machinery/disposal/bin{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bie" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/break_room) -"bif" = ( -/turf/open/floor/plating, -/area/engine/break_room) -"big" = ( -/obj/machinery/door/airlock/titanium{ - name = "Escape Pod Airlock" - }, -/obj/docking_port/mobile/pod{ - dir = 4; - id = "pod4"; - name = "escape pod 4"; - port_direction = 2; - preferred_direction = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_4) -"bih" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/item/storage/pod{ - pixel_x = 6; - pixel_y = -32 - }, -/obj/machinery/light/small, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_3) -"bii" = ( -/obj/docking_port/stationary/random{ - dir = 4; - id = "pod_lavaland3"; - name = "lavaland" - }, -/turf/open/space, -/area/space/nearstation) -"bij" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/pod_4) -"bik" = ( -/obj/machinery/light/small, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Space Access"; - dir = 1; - network = list("MiniSat") - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/aisat) -"bil" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window{ - dir = 8; - name = "MiniSat Airlock Access"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bim" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue{ - pixel_y = 2 - }, -/obj/item/pen, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bin" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bio" = ( -/obj/machinery/camera{ - c_tag = "AI Chamber - Aft"; - dir = 1; - network = list("RD") - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bip" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"biq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bir" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bis" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue{ - pixel_y = 2 - }, -/obj/item/pen, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"biu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biv" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/secondary/entry) -"biw" = ( -/obj/structure/sign/pods, -/turf/closed/wall, -/area/security/checkpoint/customs) -"bix" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/security/checkpoint/customs) -"biy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/security{ - name = "Customs Desk"; - req_access = null; - req_access_txt = "1" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"biz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/security/checkpoint/customs) -"biA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"biB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;48;50;1" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"biC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/port/fore) -"biD" = ( -/obj/machinery/door/window/eastleft{ - base_state = "right"; - icon_state = "right"; - name = "Deliveries"; - req_access_txt = "50" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"biE" = ( -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - id = "packageExternal"; - pixel_y = 18 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"biF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"biG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"biH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"biI" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"biJ" = ( -/obj/structure/table, -/obj/item/device/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/quartermaster/sorting) -"biK" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/folder/yellow, -/obj/item/device/multitool, -/obj/item/pen/red, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/office) -"biL" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"biM" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/office) -"biN" = ( -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/hallway/primary/port) -"biO" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"biP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"biQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"biR" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/hallway/primary/port) -"biS" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/box/lights/mixed, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"biT" = ( -/obj/structure/janitorialcart, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"biU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light/small, -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/vehicle/ridden/janicart, -/obj/item/key/janitor, -/turf/open/floor/plating, -/area/janitor) -"biV" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"biW" = ( -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/central) -"biX" = ( -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/maintenance/central) -"biY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - layer = 2.9; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"biZ" = ( -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/darkgreen/side{ - dir = 8 - }, -/area/bridge) -"bja" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bjb" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bjc" = ( -/turf/open/floor/plasteel/dark, -/area/bridge) -"bjd" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bje" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bjf" = ( -/obj/item/folder/red{ - pixel_y = 3 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/folder/red{ - pixel_y = 3 - }, -/turf/open/floor/plasteel/darkred/side{ - dir = 4 - }, -/area/bridge) -"bjg" = ( -/turf/closed/wall, -/area/crew_quarters/heads/captain/private) -"bjh" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/bikehorn/rubberducky, -/obj/machinery/light_switch{ - pixel_x = -28 - }, -/obj/item/card/id/captains_spare, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bji" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Captain's Bedroom"; - req_access_txt = "20" - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bjj" = ( -/obj/structure/closet/secure_closet/captains, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bjk" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/machinery/suit_storage_unit/captain, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bjl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bjm" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjn" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjo" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Primary Hallway" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjp" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjr" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjs" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjt" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bju" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjv" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjx" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjy" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjz" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjB" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjC" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjD" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjE" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 28 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/caution/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bjF" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/light_switch{ - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bjG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bjH" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bjI" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bjJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bjK" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bjL" = ( -/turf/open/floor/plasteel, -/area/engine/break_room) -"bjM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - name = "Escape Pod Four"; - req_access = null; - req_access_txt = "32" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bjO" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bjP" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat/foyer) -"bjQ" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bjR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bjS" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = -24; - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bjT" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/satellite) -"bjU" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"bjV" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bjW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white/corner{ - dir = 4 - }, -/area/hallway/secondary/entry) -"bjX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/arrival{ - dir = 5 - }, -/area/hallway/secondary/entry) -"bjY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bjZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 9 - }, -/area/hallway/primary/port) -"bka" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bkb" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bkc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 5 - }, -/area/hallway/primary/port) -"bkd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 9 - }, -/area/hallway/primary/port) -"bke" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/hallway/primary/port) -"bkf" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 30 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 5 - }, -/area/hallway/primary/port) -"bkg" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageExternal" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bkh" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/machinery/computer/stockexchange, -/turf/open/floor/plasteel/arrival{ - dir = 2 - }, -/area/quartermaster/sorting) -"bki" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair/office/dark, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel/arrival{ - dir = 2 - }, -/area/quartermaster/sorting) -"bkj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/arrival{ - dir = 2 - }, -/area/quartermaster/sorting) -"bkk" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Mailroom"; - dir = 1; - network = list("SS13") - }, -/turf/open/floor/plasteel/arrival{ - dir = 2 - }, -/area/quartermaster/sorting) -"bkl" = ( -/obj/structure/table, -/obj/item/stack/wrapping_paper, -/obj/item/stack/wrapping_paper, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_y = -30 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/storage/box/lights/mixed, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/arrival{ - dir = 2 - }, -/area/quartermaster/sorting) -"bkm" = ( -/obj/item/storage/box, -/obj/structure/table, -/obj/item/storage/box, -/obj/item/storage/box, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/item/hand_labeler, -/obj/machinery/power/apc{ - dir = 4; - name = "Delivery Office APC"; - areastring = "/area/quartermaster/sorting"; - pixel_x = 26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/arrival{ - dir = 6 - }, -/area/quartermaster/sorting) -"bkn" = ( -/obj/structure/table, -/obj/machinery/computer/stockexchange, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/turf/open/floor/plasteel/brown{ - dir = 10 - }, -/area/quartermaster/office) -"bko" = ( -/obj/machinery/photocopier, -/turf/open/floor/plasteel/brown{ - dir = 2 - }, -/area/quartermaster/office) -"bkp" = ( -/turf/open/floor/plasteel/brown{ - dir = 2 - }, -/area/quartermaster/office) -"bkq" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/holopad, -/turf/open/floor/plasteel/brown{ - dir = 2 - }, -/area/quartermaster/office) -"bkr" = ( -/obj/machinery/autolathe, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/turf/open/floor/plasteel/brown{ - dir = 6 - }, -/area/quartermaster/office) -"bks" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/brown{ - dir = 10 - }, -/area/hallway/primary/port) -"bkt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/holopad, -/turf/open/floor/plasteel/brown/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bku" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/brown/corner{ - dir = 2 - }, -/area/hallway/primary/port) -"bkv" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/rack, -/obj/item/storage/box, -/obj/item/storage/box, -/obj/item/storage/box, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/hand_labeler, -/turf/open/floor/plasteel/brown{ - dir = 2 - }, -/area/hallway/primary/port) -"bkw" = ( -/obj/structure/table, -/obj/item/device/toner, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 30 - }, -/turf/open/floor/plasteel/brown{ - dir = 6 - }, -/area/hallway/primary/port) -"bkx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"bky" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"bkz" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hop) -"bkA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/tank/internals/air, -/turf/open/floor/plating, -/area/maintenance/central) -"bkB" = ( -/obj/item/extinguisher, -/turf/open/floor/plating, -/area/maintenance/central) -"bkC" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/modular_computer/console/preset/command, -/turf/open/floor/plasteel/darkblue/side{ - dir = 9 - }, -/area/bridge) -"bkD" = ( -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_y = 29 - }, -/obj/machinery/modular_computer/console/preset/engineering, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bkE" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/darkgreen/corner{ - dir = 1 - }, -/area/bridge) -"bkF" = ( -/obj/item/device/radio/beacon, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bkG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/recharger{ - pixel_y = 3 - }, -/obj/item/restraints/handcuffs{ - pixel_y = 3 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/darkred/corner{ - dir = 4 - }, -/area/bridge) -"bkH" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/computer/security/mining{ - network = list("MINE","AuxBase") - }, -/obj/machinery/keycard_auth{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bkI" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_x = 32 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/computer/cargo/request, -/turf/open/floor/plasteel/darkblue/side{ - dir = 5 - }, -/area/bridge) -"bkJ" = ( -/obj/effect/landmark/xeno_spawn, -/obj/item/soap/deluxe, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/shower{ - pixel_y = 12 - }, -/obj/structure/curtain, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/captain/private) -"bkK" = ( -/obj/structure/mirror{ - pixel_y = 28 - }, -/obj/structure/sink{ - pixel_y = 17 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/revenantspawn, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/captain/private) -"bkL" = ( -/obj/structure/toilet{ - pixel_y = 13 - }, -/obj/machinery/light{ - dir = 2 - }, -/obj/effect/landmark/start/captain, -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/captain/private) -"bkM" = ( -/obj/machinery/door/airlock/silver{ - name = "Bathroom" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/captain/private) -"bkN" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bkO" = ( -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bkP" = ( -/obj/effect/landmark/start/captain, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bkQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bkR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=13.1-Engineering-Enter"; - location = "12-Central-Starboard" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bkS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/yellow/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"bkT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Primary Hallway" - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bkU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bkV" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bkW" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bkX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bkY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bkZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bla" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"blb" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway - Auxiliary Tool Storage"; - dir = 1; - network = list("SS13") - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"blc" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bld" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"ble" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"blf" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway - Engineering"; - dir = 1; - network = list("SS13") - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"blg" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=13.2-Tcommstore"; - location = "13.1-Engineering-Enter" - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"blh" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bli" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/caution/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"blj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/engine/break_room) -"blk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bll" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/engine/break_room) -"blm" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bln" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"blo" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"blp" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/break_room) -"blq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"blr" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bls" = ( -/obj/structure/sign/pods, -/turf/closed/wall/r_wall, -/area/engine/break_room) -"blt" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/maintenance/disposal) -"blu" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved/flipped{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"blv" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/crossing/horizontal, -/turf/open/space, -/area/space/nearstation) -"blw" = ( -/obj/structure/transit_tube/curved{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"blx" = ( -/turf/closed/wall, -/area/space/nearstation) -"bly" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/space, -/area/space/nearstation) -"blA" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/obj/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/aisat) -"blB" = ( -/obj/machinery/computer/teleporter, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat/foyer) -"blC" = ( -/obj/machinery/teleport/station, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat/foyer) -"blD" = ( -/obj/machinery/teleport/hub, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat/foyer) -"blE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"blF" = ( -/obj/structure/showcase/cyborg/old{ - dir = 2; - pixel_y = 20 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"blG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"blH" = ( -/obj/structure/showcase/cyborg/old{ - dir = 2; - pixel_y = 20 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 4 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"blI" = ( -/obj/machinery/door/airlock/highsecurity{ - locked = 0; - name = "AI Chamber"; - req_access_txt = "16" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "AI Chamber entrance shutters"; - name = "AI Chamber entrance shutters" - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = -26; - pixel_y = 3 - }, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_x = 28 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"blJ" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/storage/satellite) -"blK" = ( -/obj/machinery/recharge_station, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/storage/satellite) -"blL" = ( -/obj/machinery/airalarm{ - pixel_y = 26 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 2; - name = "Auxiliary MiniSat Distribution Port" - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/storage/satellite) -"blM" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/storage/satellite) -"blN" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"blO" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/machinery/light, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"blP" = ( -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = -32 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"blQ" = ( -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = -32 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"blR" = ( -/obj/machinery/requests_console{ - department = "Arrival shuttle"; - name = "Arrivals Shuttle console"; - pixel_y = -30 - }, -/obj/machinery/light, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"blS" = ( -/obj/structure/shuttle/engine/propulsion/burst/left{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/shuttle/arrival) -"blT" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"blU" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/secondary/entry) -"blV" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"blW" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 10 - }, -/area/hallway/primary/port) -"blX" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral/side, -/area/hallway/primary/port) -"blY" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=5-Customs"; - location = "4-Customs" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/neutral/side, -/area/hallway/primary/port) -"blZ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/side, -/area/hallway/primary/port) -"bma" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 6 - }, -/area/hallway/primary/port) -"bmb" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 10 - }, -/area/hallway/primary/port) -"bmc" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bmd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/hallway/primary/port) -"bme" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageExternal" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bmf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/machinery/door/window/westleft{ - dir = 1; - name = "Delivery Desk"; - req_access_txt = "50" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bmg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bmh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/mineral/ore_redemption, -/obj/machinery/door/window/southright{ - name = "ORM Access"; - req_access_txt = "64" - }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/office) -"bmi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/quartermaster/office) -"bmj" = ( -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the Supply department is."; - dir = 1; - icon_state = "direction_supply"; - name = "cargo department"; - pixel_y = 8 - }, -/turf/closed/wall, -/area/quartermaster/office) -"bmk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/hallway/primary/port) -"bml" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/hallway/primary/port) -"bmm" = ( -/obj/structure/sign/directions/security{ - desc = "A direction sign, pointing out which way the security department is."; - dir = 1; - icon_state = "direction_sec"; - pixel_y = 8 - }, -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the engineering department is."; - dir = 4; - icon_state = "direction_eng" - }, -/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 = -8 - }, -/turf/closed/wall/r_wall, -/area/hallway/primary/port) -"bmn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"bmo" = ( -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/button/door{ - id = "hop"; - name = "Privacy Shutters Control"; - pixel_y = 25; - req_access_txt = "28" - }, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bmp" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/storage/secure/briefcase, -/obj/structure/table/wood, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching Prison Wing holding areas."; - name = "Prison Monitor"; - network = list("Prison"); - pixel_y = 30 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bmq" = ( -/obj/machinery/recharger, -/obj/item/storage/secure/safe{ - pixel_x = 34 - }, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bmr" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/central) -"bms" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/central) -"bmt" = ( -/obj/item/device/radio/off, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bmu" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Bridge" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/central) -"bmv" = ( -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Bridge Deliveries"; - req_access_txt = "19" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/bridge) -"bmw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 8 - }, -/area/bridge) -"bmx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bmy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bmz" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bmA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/darkblue/corner, -/area/bridge) -"bmB" = ( -/obj/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 2 - }, -/area/bridge) -"bmC" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/window/brigdoor{ - dir = 2; - name = "Command Desk"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 2 - }, -/area/bridge) -"bmD" = ( -/obj/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 2 - }, -/area/bridge) -"bmE" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/bridge) -"bmF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bmG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bmH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/camera{ - c_tag = "Bridge - Starboard"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 4 - }, -/area/bridge) -"bmI" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters"; - req_access = null; - req_access_txt = "20" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bmJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bmK" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/yellow/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"bmL" = ( -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the escape arm is."; - icon_state = "direction_evac"; - name = "escape arm" - }, -/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 = 8 - }, -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the research department is."; - icon_state = "direction_sci"; - name = "research department"; - pixel_y = -8 - }, -/turf/closed/wall, -/area/storage/art) -"bmM" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/storage/art) -"bmN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Art Storage" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/storage/art) -"bmO" = ( -/turf/closed/wall, -/area/storage/art) -"bmP" = ( -/turf/closed/wall, -/area/crew_quarters/bar) -"bmQ" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;25;46" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bmR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/starboard) -"bmS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock{ - name = "Starboard Emergency Storage"; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bmT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;25;46" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bmU" = ( -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the engineering department is."; - dir = 4; - icon_state = "direction_eng"; - pixel_y = 8 - }, -/turf/closed/wall, -/area/maintenance/starboard) -"bmV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bmW" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bmX" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bmY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Foyer"; - req_access_txt = "0"; - req_one_access_txt = "32;19" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bmZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bna" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bnb" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bnc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bnd" = ( -/obj/structure/table/glass, -/obj/item/device/lightreplacer{ - pixel_y = 7 - }, -/obj/item/storage/belt/utility, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bne" = ( -/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko{ - pixel_y = 4 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bnf" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bng" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Foyer - Starboard"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bnh" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/device/taperecorder{ - pixel_x = -4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"bni" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/syndicatebomb/training, -/turf/open/floor/plasteel, -/area/security/main) -"bnk" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bnl" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bnm" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bnn" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bno" = ( -/obj/structure/transit_tube/diagonal, -/turf/open/space, -/area/space/nearstation) -"bnp" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/transit_tube/curved/flipped, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/aisat) -"bnq" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/aisat) -"bnr" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/aisat) -"bns" = ( -/obj/machinery/door/window{ - dir = 1; - name = "MiniSat Walkway Access"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/aisat) -"bnt" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/aisat) -"bnu" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/aisat) -"bnv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/aisat) -"bnw" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/ai_monitored/turret_protected/aisat/foyer) -"bnx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/ai_monitored/turret_protected/aisat/foyer) -"bny" = ( -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/aisat_interior"; - enabled = 1; - icon_state = "control_standby"; - name = "Antechamber Turret Control"; - pixel_x = 30; - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/ai_monitored/turret_protected/aisat/foyer) -"bnz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bnA" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "MiniSat - Antechamber"; - dir = 4; - network = list("MiniSat") - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bnB" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bnC" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/start/cyborg, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bnD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 4 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bnE" = ( -/obj/machinery/power/apc{ - aidisabled = 0; - dir = 4; - name = "MiniSat Antechamber APC"; - areastring = "/area/ai_monitored/turret_protected/aisat_interior"; - pixel_x = 29 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 4 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bnF" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bnG" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bnH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bnI" = ( -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bnK" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Arrivals - Station Entrance"; - dir = 4; - network = list("SS13") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bnL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bnM" = ( -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/secondary/entry) -"bnN" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bnO" = ( -/obj/structure/chair/comfy/beige, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bnP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bnQ" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/chips, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bnR" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"bnS" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/hallway/primary/port) -"bnT" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/port) -"bnU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bnV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bnW" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bnX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bnY" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bnZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Port Primary Hallway - Middle"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"boa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bob" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Port Hallway APC"; - areastring = "/area/hallway/primary/port"; - pixel_x = -1; - pixel_y = 26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"boc" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bod" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"boe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/brown/corner{ - dir = 4 - }, -/area/hallway/primary/port) -"bof" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/brown/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bog" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/brown/corner{ - dir = 4 - }, -/area/hallway/primary/port) -"boh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/brown/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"boi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Port Primary Hallway" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"boj" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"bok" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=4-Customs"; - location = "3-Central-Port" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bol" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "hop"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hop) -"bom" = ( -/obj/item/folder/blue, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/table/wood, -/obj/item/device/assembly/flash/handheld, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bon" = ( -/obj/effect/landmark/start/head_of_personnel, -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"boo" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = 32 - }, -/obj/machinery/computer/security/mining{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bop" = ( -/obj/machinery/power/apc/highcap/ten_k{ - dir = 8; - name = "Bridge APC"; - areastring = "/area/bridge"; - pixel_x = -27 - }, -/obj/structure/cable/yellow, -/obj/machinery/camera{ - c_tag = "Bridge - Port"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 8 - }, -/area/bridge) -"boq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bor" = ( -/turf/open/floor/plasteel/darkblue/corner, -/area/bridge) -"bos" = ( -/turf/open/floor/plasteel/darkblue/side{ - dir = 2 - }, -/area/bridge) -"bot" = ( -/turf/open/floor/plasteel/darkblue/side{ - dir = 6 - }, -/area/bridge) -"bou" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/recharger, -/obj/item/restraints/handcuffs, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bov" = ( -/obj/machinery/computer/communications, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bow" = ( -/obj/machinery/computer/security/wooden_tv{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/bridge) -"box" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/folder/blue{ - pixel_y = 2 - }, -/obj/item/folder/blue{ - pixel_y = 2 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"boy" = ( -/turf/open/floor/plasteel/darkblue/side{ - dir = 10 - }, -/area/bridge) -"boz" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/bridge) -"boA" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"boB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/darkblue/side{ - dir = 4 - }, -/area/bridge) -"boC" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/item/storage/fancy/donut_box, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/bridge) -"boD" = ( -/obj/structure/displaycase/captain{ - pixel_y = 5 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"boE" = ( -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"boF" = ( -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"boG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"boH" = ( -/obj/machinery/computer/communications{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Captain)"; - pixel_x = 28 - }, -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/machinery/keycard_auth{ - pixel_x = 24; - pixel_y = 24 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"boI" = ( -/obj/structure/rack, -/obj/item/cane, -/obj/item/reagent_containers/food/snacks/grown/mushroom/glowshroom, -/turf/open/floor/plating, -/area/crew_quarters/heads/captain/private) -"boJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Starboard - Art Storage"; - dir = 4; - network = list("SS13") - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"boK" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"boL" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/art) -"boM" = ( -/obj/structure/table, -/obj/item/hand_labeler, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"boN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/storage/art) -"boO" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/easel, -/obj/item/canvas/twentythreeXtwentythree, -/obj/item/canvas/twentythreeXtwentythree, -/turf/open/floor/plasteel, -/area/storage/art) -"boP" = ( -/obj/structure/closet/secure_closet/bar{ - req_access_txt = "25" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"boQ" = ( -/obj/machinery/reagentgrinder, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"boR" = ( -/obj/structure/table/wood, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/gun/ballistic/revolver/doublebarrel, -/obj/machinery/camera{ - c_tag = "Bar - Backroom"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"boS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"boT" = ( -/obj/machinery/door/window/southleft{ - base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Bar Delivery"; - req_access_txt = "25" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"boU" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 8; - freq = 1400; - location = "Bar" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/crew_quarters/bar) -"boV" = ( -/obj/item/storage/box/lights/mixed, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"boW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"boX" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"boY" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/starboard) -"boZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bpa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bpb" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"bpc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bpd" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bpe" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bpf" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/caution/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bpg" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bph" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bpi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bpj" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bpk" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bpl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bpm" = ( -/obj/machinery/door/poddoor/preopen{ - id = "transittube"; - name = "Transit Tube Blast Door" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bpn" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bpp" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) -"bpq" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bpr" = ( -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bps" = ( -/obj/structure/window/reinforced, -/obj/machinery/light/small, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Fore"; - dir = 1; - network = list("MiniSat") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bpt" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/closet/wardrobe/red, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/checkpoint/customs) -"bpu" = ( -/turf/closed/wall/r_wall, -/area/space/nearstation) -"bpv" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/obj/structure/transit_tube/station/reverse/flipped{ - dir = 1 - }, -/obj/structure/transit_tube_pod{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 4 - }, -/area/engine/break_room) -"bpw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/transit_tube/horizontal, -/turf/open/space, -/area/space/nearstation) -"bpx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/transit_tube/crossing/horizontal, -/turf/open/space, -/area/space/nearstation) -"bpy" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/transit_tube/horizontal, -/turf/open/space, -/area/space/nearstation) -"bpz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/transit_tube/junction/flipped{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"bpA" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space, -/area/space/nearstation) -"bpB" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space, -/area/space/nearstation) -"bpC" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/transit_tube/station{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bpD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bpE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bpF" = ( -/obj/machinery/holopad, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bpG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bpH" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bpI" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Foyer"; - req_one_access_txt = "32;19" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bpJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bpK" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/holopad, -/obj/item/device/radio/beacon, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bpL" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bpM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Antechamber"; - req_one_access_txt = "32;19" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bpN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bpO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bpP" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/mob/living/simple_animal/bot/secbot/pingsky, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bpQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bpR" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bpS" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "32" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bpT" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bpU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bpV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bpW" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bpX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bpY" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bpZ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bqa" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bqb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bqc" = ( -/obj/machinery/holopad, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bqd" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Arrivals APC"; - areastring = "/area/hallway/secondary/entry"; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/secondary/entry) -"bqe" = ( -/obj/structure/chair/comfy/beige{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Arrivals - Lounge"; - dir = 4; - network = list("SS13") - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bqf" = ( -/turf/open/floor/carpet, -/area/hallway/primary/port) -"bqg" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/holopad{ - pixel_y = -16 - }, -/turf/open/floor/carpet, -/area/hallway/primary/port) -"bqh" = ( -/obj/structure/chair/comfy/beige{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bqi" = ( -/obj/machinery/vending/cola/random, -/obj/machinery/newscaster{ - pixel_x = -28; - pixel_y = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"bqj" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/hallway/primary/port) -"bqk" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bql" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqm" = ( -/obj/machinery/turretid{ - icon_state = "control_stun"; - name = "AI Chamber turret control"; - pixel_x = 3; - pixel_y = -23 - }, -/obj/machinery/door/window{ - base_state = "leftsecure"; - dir = 8; - obj_integrity = 300; - icon_state = "leftsecure"; - name = "Primary AI Core Access"; - req_access_txt = "16" - }, -/obj/machinery/newscaster/security_unit{ - pixel_x = 4; - pixel_y = 33 - }, -/turf/open/floor/plasteel/vault{ - dir = 6 - }, -/area/ai_monitored/turret_protected/ai) -"bqn" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqo" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqp" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqr" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqs" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqt" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 3 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqu" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqv" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqx" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Port Primary Hallway" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqy" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bqz" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bqA" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"bqB" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen, -/obj/structure/window/reinforced, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bqC" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/window{ - dir = 2; - name = "HoP's Desk"; - req_access_txt = "57" - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bqD" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/cargo/request{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bqE" = ( -/obj/machinery/vending/cart{ - req_access_txt = "57" - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bqF" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 4 - }, -/area/engine/break_room) -"bqG" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bqH" = ( -/turf/closed/wall, -/area/crew_quarters/heads/hop) -"bqI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/darkblue/side{ - dir = 2 - }, -/area/bridge) -"bqJ" = ( -/obj/machinery/light, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/rack, -/obj/item/storage/secure/briefcase, -/obj/item/clothing/mask/cigarette/cigar, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bqK" = ( -/obj/structure/rack, -/obj/item/device/aicard, -/obj/item/device/radio/off, -/obj/machinery/computer/security/telescreen{ - dir = 1; - name = "MiniSat Monitor"; - network = list("MiniSat","tcomm"); - pixel_y = -29 - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bqL" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/cell_charger{ - pixel_y = 4 - }, -/obj/structure/table/glass, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bqM" = ( -/turf/open/floor/carpet, -/area/bridge) -"bqN" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/bridge) -"bqO" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bqP" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/structure/rack, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/timer, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bqQ" = ( -/obj/machinery/light, -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/toolbox/emergency{ - pixel_x = -2; - pixel_y = -3 - }, -/obj/item/wrench, -/obj/item/device/multitool, -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bqR" = ( -/obj/machinery/light_switch{ - pixel_x = 8; - pixel_y = -26 - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 10 - }, -/area/bridge) -"bqS" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 2 - }, -/area/bridge) -"bqT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/darkblue/side{ - dir = 6 - }, -/area/bridge) -"bqU" = ( -/obj/structure/fireaxecabinet{ - pixel_y = -32 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_y = 3 - }, -/obj/machinery/light_switch{ - pixel_x = 28 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bqV" = ( -/obj/structure/table/wood, /obj/item/book/manual/wiki/security_space_law, -/obj/machinery/power/apc{ - dir = 8; - name = "Captain's Quarters APC"; - areastring = "/area/crew_quarters/heads/captain/private"; - pixel_x = -24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/paper/fluff/gateway, -/obj/item/coin/plasma, -/obj/item/melee/chainofcommand, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bqW" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bqX" = ( -/obj/structure/table/wood, -/obj/item/stamp/captain, -/obj/machinery/computer/security/wooden_tv, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bqY" = ( -/obj/effect/landmark/start/captain, -/obj/structure/chair/comfy/brown, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bqZ" = ( -/obj/machinery/computer/card{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Captain's Desk"; - departmentType = 5; - name = "Captain RC"; - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bra" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"brb" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"brc" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"brd" = ( -/obj/structure/table, -/obj/machinery/power/apc{ - dir = 8; - name = "Art Storage APC"; - areastring = "/area/storage/art"; - pixel_x = -25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/item/paper_bin, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/turf/open/floor/plasteel, -/area/storage/art) -"bre" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/storage/art) -"brf" = ( -/obj/structure/table, -/obj/item/paper_bin/construction, -/obj/item/airlock_painter, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"brg" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/vending_refill/cigarette, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brh" = ( -/obj/effect/landmark/start/bartender, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bri" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brk" = ( -/obj/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = -30 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brl" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Bar Maintenance"; - req_access_txt = "25" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bro" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 2; - sortType = 19 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brp" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;25;46" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brr" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"brs" = ( -/obj/item/device/assembly/prox_sensor, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bru" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;25;46" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brx" = ( -/obj/machinery/requests_console{ - department = "AI"; - departmentType = 5; - pixel_x = 30; - pixel_y = 30 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = 23; - pixel_y = -23 - }, -/turf/open/floor/plasteel/vault, -/area/ai_monitored/turret_protected/ai) -"bry" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"brz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/securearea{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 2 - }, -/area/hallway/primary/starboard) -"brA" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/engine/break_room) -"brB" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -30 - }, -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/engine/break_room) -"brC" = ( -/obj/machinery/microwave{ - pixel_y = 4 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Foyer - Port"; - dir = 1; - network = list("SS13") - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/engine/break_room) -"brD" = ( -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/item/storage/box/donkpockets, -/obj/structure/table/glass, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/engine/break_room) -"brE" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"brF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "Engineering Foyer APC"; - areastring = "/area/engine/break_room"; - pixel_x = -1; - pixel_y = -26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/engine/break_room) -"brG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"brH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"brI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"brJ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/structure/transit_tube/curved{ - dir = 8 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 4 - }, -/area/engine/break_room) -"brK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Access"; - req_one_access_txt = "32;19" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) -"brL" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) -"brM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/transit_tube/curved{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"brN" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/table/glass, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) -"brO" = ( -/obj/structure/transit_tube/diagonal/topleft, -/turf/open/space, -/area/space/nearstation) -"brP" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/transit_tube/curved{ - dir = 1 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/aisat) -"brQ" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/light/small, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior Access"; - dir = 1; - network = list("MiniSat") - }, -/obj/machinery/power/apc{ - aidisabled = 0; - dir = 2; - name = "MiniSat Exterior APC"; - areastring = "/area/aisat"; - pixel_y = -24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/aisat) -"brR" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/aisat) -"brS" = ( -/obj/machinery/door/window{ - dir = 2; - name = "MiniSat Walkway Access"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/aisat) -"brT" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/aisat) -"brU" = ( -/obj/structure/window/reinforced, -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/aisat) -"brV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/aisat) -"brW" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat/foyer) -"brX" = ( -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/machinery/porta_turret/ai{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the RD's goons from the safety of his office."; - dir = 4; - name = "Research Monitor"; - network = list("RD"); - pixel_x = -28 - }, -/turf/open/floor/plasteel/vault{ - dir = 1 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"brY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc/highcap/five_k{ - aidisabled = 0; - dir = 2; - name = "MiniSat Foyer APC"; - areastring = "/area/ai_monitored/turret_protected/aisat/foyer"; - pixel_y = -29 - }, -/obj/structure/cable/yellow, -/obj/machinery/camera/motion{ - c_tag = "MiniSat Foyer"; - dir = 8; - network = list("MiniSat") - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat/foyer) -"brZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bsa" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/mob/living/simple_animal/bot/floorbot, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bsb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bsc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bsd" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/darkblue/corner, -/area/ai_monitored/turret_protected/aisat_interior) -"bse" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/porta_turret/ai{ - dir = 2 - }, -/obj/machinery/computer/security/telescreen{ - dir = 8; - name = "MiniSat Monitor"; - network = list("MiniSat","tcomm"); - pixel_x = 28 - }, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bsf" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat/foyer) -"bsg" = ( -/obj/machinery/computer/station_alert{ - dir = 1 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/machinery/computer/security/telescreen{ - dir = 1; - name = "MiniSat Monitor"; - network = list("MiniSat","tcomm"); - pixel_y = -29 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bsh" = ( -/obj/structure/table, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/computer/monitor{ - dir = 1 - }, -/obj/structure/cable/yellow, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bsi" = ( -/obj/machinery/camera/motion{ - c_tag = "MiniSat Maintenance"; - dir = 8; - network = list("MiniSat") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/multitool, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bsj" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bsk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bsl" = ( -/obj/machinery/vending/cola/random, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bsm" = ( -/obj/item/device/radio/beacon, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bsn" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bso" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bsp" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/newscaster{ - pixel_x = 28; - pixel_y = 1 - }, /obj/machinery/light{ dir = 4 }, -/turf/open/floor/plasteel/arrival{ +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_x = 30 + }, +/turf/open/floor/plasteel/red/side{ dir = 4 }, -/area/hallway/secondary/entry) -"bsq" = ( -/obj/structure/chair/comfy/beige{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bsr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/hallway/primary/port) -"bss" = ( -/obj/structure/chair/comfy/beige{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bst" = ( -/obj/machinery/vending/snack/random, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"bsu" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/hallway/primary/port) -"bsv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/port) -"bsw" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bsx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bsy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bsz" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bsA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bsB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bsC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bsD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bsE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bsG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bsH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Port Primary Hallway - Starboard"; - dir = 1; - network = list("SS13") - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bsI" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bsJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Port Primary Hallway" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bsK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bsL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=7-Command-Starboard"; - location = "6-Port-Central" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bsM" = ( -/obj/machinery/button/door{ - id = "hop"; - name = "Privacy Shutters Control"; - pixel_x = -24; - pixel_y = -6; - req_access_txt = "28" - }, -/obj/machinery/light_switch{ - pixel_x = -25; - pixel_y = 5 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bsN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bsO" = ( -/mob/living/simple_animal/pet/dog/corgi/Ian, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bsP" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/bed/dogbed/ian, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bsQ" = ( -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bsR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bsS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bsT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bsU" = ( -/turf/closed/wall, -/area/bridge) -"bsV" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/machinery/vending/cola/random, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bsW" = ( -/obj/machinery/button/door{ - id = "bridge blast"; - name = "Bridge Access Blast Door Control"; - pixel_x = -1; - pixel_y = -24; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/button/door{ - id = "council blast"; - name = "Council Chamber Blast Door Control"; - pixel_x = -1; - pixel_y = -34; - req_access_txt = "19" - }, -/obj/machinery/camera{ - c_tag = "Bridge - Command Chair"; - dir = 1; - network = list("SS13") - }, -/turf/open/floor/carpet, -/area/bridge) -"bsX" = ( -/obj/machinery/holopad, -/turf/open/floor/carpet, -/area/bridge) -"bsY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/button/door{ - id = "evashutter"; - name = "E.V.A. Storage Shutter Control"; - pixel_y = -24; - req_access_txt = "19" - }, -/obj/machinery/button/door{ - id = "gateshutter"; - name = "Gateway Shutter Control"; - pixel_y = -34; - req_access_txt = "19" - }, -/turf/open/floor/carpet, -/area/bridge) -"bsZ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/vending/snack/random, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bta" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"btb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"btc" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced, -/obj/machinery/light_switch{ - pixel_x = -28 - }, -/obj/item/storage/secure/briefcase{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/storage/lockbox/medal, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"btd" = ( -/obj/machinery/door/window{ - name = "Captain's Desk"; - req_access_txt = "20" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bte" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/structure/window/reinforced, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"btf" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/machinery/door/window{ - base_state = "right"; - icon_state = "right"; - name = "Captain's Desk"; - req_access_txt = "20" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/item/stamp/captain, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"btg" = ( -/obj/structure/table/wood, -/obj/item/hand_tele, -/obj/structure/window/reinforced, -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bth" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bti" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "20;12" - }, -/turf/open/floor/plating, -/area/maintenance/central) -"btj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"btk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"btl" = ( -/obj/structure/table, -/obj/item/canvas/twentythreeXtwentythree, -/obj/item/canvas/twentythreeXtwentythree, -/obj/item/canvas/twentythreeXnineteen, -/obj/item/canvas/twentythreeXnineteen, -/obj/item/canvas/nineteenXnineteen, -/obj/item/canvas/nineteenXnineteen, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/turf/open/floor/plasteel, -/area/storage/art) -"btm" = ( -/obj/structure/table, -/obj/item/device/camera, -/turf/open/floor/plasteel, -/area/storage/art) -"btn" = ( -/obj/structure/table, -/obj/item/device/camera_film, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 28 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"bto" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"btp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/landmark/xeno_spawn, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"btq" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/closet/gmcloset, -/obj/item/wrench, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"btr" = ( -/obj/machinery/chem_master/condimaster{ - desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments."; - name = "HoochMaster Deluxe"; - pixel_x = -4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bts" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btt" = ( -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard) -"btu" = ( -/obj/item/storage/toolbox/emergency, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/area/security/checkpoint/engineering) +"bef" = ( /obj/item/cigbutt, /turf/open/floor/plating, /area/maintenance/starboard) -"btw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"btx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/caution{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bty" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/caution{ - dir = 4 - }, -/area/hallway/primary/starboard) -"btz" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Foyer Maintenance"; - req_access_txt = "0"; - req_one_access_txt = "32;19" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +"beg" = ( +/obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard) -"btA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/caution{ - dir = 2 - }, -/area/engine/break_room) -"btB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/caution{ - dir = 2 - }, -/area/engine/break_room) -"btC" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Personnel's Desk"; - departmentType = 5; - name = "Head of Personnel RC"; - pixel_y = 30 - }, -/obj/machinery/pdapainter{ - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"btD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/securearea{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"btE" = ( -/obj/effect/landmark/revenantspawn, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/corner, -/area/engine/break_room) -"btF" = ( -/obj/machinery/airalarm{ +"beh" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space/nearstation) +"bei" = ( +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bej" = ( +/obj/structure/showcase/cyborg/old{ dir = 4; - pixel_x = -22 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) -"btG" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/folder/blue{ - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/pen, -/obj/machinery/computer/security/telescreen{ - dir = 1; - name = "MiniSat Monitor"; - network = list("MiniSat","tcomm"); - pixel_y = -28 - }, -/turf/open/floor/plasteel/darkblue/corner, -/area/engine/break_room) -"btH" = ( -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Head of Personnel APC"; - areastring = "/area/crew_quarters/heads/hop"; - pixel_y = 24 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"btI" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"btJ" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved/flipped{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"btK" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"btL" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"btM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"btN" = ( -/obj/machinery/door/airlock/hatch{ - name = "Telecomms Control Room"; - req_one_access_txt = "19; 61" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" + pixel_x = -9; + pixel_y = 2 }, /turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tcommsat/computer) -"btO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"btP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"btQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"btR" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-18" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"btS" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"btT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"btU" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-08" - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"btV" = ( -/obj/structure/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"btW" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-03" - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"btX" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Port Primary Hallway - Port"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"btY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/hallway/primary/port) -"btZ" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/hallway/primary/port) -"bua" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/vault, -/area/hallway/primary/port) -"bub" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault, -/area/hallway/primary/port) -"buc" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel/vault, -/area/hallway/primary/port) -"bud" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;27;37" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bue" = ( -/turf/closed/wall, -/area/library) -"buf" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"bug" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/turf/open/floor/wood, -/area/library) -"buh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/turf/open/floor/wood, -/area/library) -"bui" = ( -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the escape arm is."; - icon_state = "direction_evac"; - name = "escape arm" - }, -/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 = 8 - }, -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the research department is."; - icon_state = "direction_sci"; - name = "research department"; - pixel_y = -8 - }, -/turf/closed/wall, -/area/library) -"buj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"buk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - sortType = 15 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bul" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"bum" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access = null; - req_access_txt = "57" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bun" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"buo" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bup" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"buq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/holopad, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bur" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bus" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"but" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"buu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access = null; - req_access_txt = "57" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) -"buv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/darkblue/corner, -/area/bridge) -"buw" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bux" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/bridge) -"buy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/bookcase, -/turf/open/floor/wood, -/area/bridge) -"buz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/bridge) -"buA" = ( -/obj/machinery/door/airlock/command{ - name = "Command Desk"; - req_access = null; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/vault, -/area/bridge) -"buB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/bridge) -"buC" = ( -/obj/structure/bookcase, -/turf/open/floor/wood, -/area/bridge) -"buD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = -26 - }, -/turf/open/floor/plasteel/darkblue/corner, -/area/bridge) -"buE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/bridge) -"buF" = ( -/obj/machinery/vending/boozeomat, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"buG" = ( -/obj/machinery/holopad{ - pixel_x = 9; - pixel_y = -9 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"buH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"buI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"buJ" = ( -/obj/machinery/camera{ - c_tag = "Captain's Office"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"buK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Captain's Office - Emergency Escape"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/central) -"buL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"buM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"buN" = ( -/obj/machinery/vending/boozeomat, -/turf/closed/wall, -/area/crew_quarters/bar) -"buO" = ( -/obj/machinery/door/airlock{ - name = "Bar Storage"; - req_access_txt = "25" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "wood" - }, -/area/crew_quarters/bar) -"buP" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/obj/structure/sign/barsign{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/crew_quarters/bar) -"buQ" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/turf/open/floor/carpet, -/area/crew_quarters/bar) -"buR" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"buS" = ( -/obj/machinery/disposal/bin{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"buT" = ( -/obj/machinery/computer/arcade, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"buU" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/starboard) -"buV" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard) -"buX" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"buY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;25;46" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"buZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/caution{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bva" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bvb" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/caution{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bvc" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bvd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bve" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard) -"bvf" = ( +/area/ai_monitored/turret_protected/ai) +"bek" = ( /obj/item/device/radio/intercom{ broadcasting = 0; freerange = 1; @@ -35453,72 +27753,8988 @@ }, /turf/open/floor/circuit/green, /area/ai_monitored/turret_protected/ai) -"bvg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +"bel" = ( +/obj/machinery/camera{ + c_tag = "AI Chamber - Starboard"; + dir = 8; + network = list("RD") + }, +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/turf/open/floor/plasteel/vault{ dir = 4 }, -/obj/effect/landmark/blobstart, +/area/ai_monitored/turret_protected/ai) +"bem" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 1; + name = "Arrival Airlock" + }, /turf/open/floor/plating, -/area/maintenance/starboard) -"bvh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 +/area/hallway/secondary/entry) +"ben" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"bvi" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/engine/break_room) -"bvj" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmos Blast Door" - }, -/obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, -/area/engine/break_room) -"bvk" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmos Blast Door" - }, +/area/hallway/secondary/entry) +"beo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 +/turf/open/floor/plasteel/arrival{ + dir = 4 }, +/area/hallway/secondary/entry) +"bep" = ( +/turf/closed/wall, +/area/security/checkpoint/customs) +"beq" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ber" = ( +/obj/item/stack/sheet/cardboard, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bes" = ( +/turf/closed/wall, +/area/quartermaster/sorting) +"bet" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"beu" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/conveyor{ + backwards = 1; + dir = 2; + forwards = 2; + id = "packageSort2" + }, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bev" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/quartermaster/sorting) +"bew" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/power/apc{ + dir = 8; + name = "Cargo Office APC"; + areastring = "/area/quartermaster/office"; + pixel_x = -24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/brown{ + dir = 9 + }, +/area/quartermaster/office) +"bex" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/office) +"bey" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/status_display{ + pixel_y = 32; + supply_display = 1 + }, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/office) +"bez" = ( +/turf/open/floor/plasteel/brown/corner{ + dir = 1 + }, +/area/quartermaster/office) +"beA" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/office) +"beB" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + dir = 8; + name = "Cargo Desk"; + req_access_txt = "50" + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"beC" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, -/area/engine/break_room) -"bvl" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmos Blast Door" +/area/hallway/primary/port) +"beD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beE" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beF" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"beG" = ( +/obj/structure/chair{ + dir = 8 }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Cargo - Foyer"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/hallway/primary/port) +"beH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -29 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"beI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"beJ" = ( +/turf/closed/wall, +/area/janitor) +"beK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_access_txt = "26" + }, +/turf/open/floor/plasteel, +/area/janitor) +"beL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/janitor) +"beM" = ( +/turf/closed/wall, +/area/maintenance/central) +"beN" = ( +/obj/machinery/door/airlock{ + name = "Central Emergency Storage"; + req_access_txt = "0" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"beO" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/central) +"beP" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain/private) +"beQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain/private) +"beR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"beS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"beT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"beU" = ( +/obj/structure/rack, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/clothing/suit/hazardvest, +/obj/item/device/multitool, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/storage/tools) +"beV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/storage/tools) +"beW" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/storage/tools) +"beX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/storage/tools) +"beY" = ( +/obj/machinery/camera{ + c_tag = "Auxiliary Tool Storage"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 4 + }, +/area/storage/tools) +"beZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bfa" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bfb" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/storage/tech) +"bfc" = ( +/obj/structure/rack, +/obj/item/circuitboard/computer/crew{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/circuitboard/computer/card{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/circuitboard/computer/communications{ + pixel_x = 5; + pixel_y = -5 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bfd" = ( +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bfe" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage"; + req_access_txt = "19;23" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bff" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bfg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bfh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bfi" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bfj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bfk" = ( +/obj/structure/table, +/obj/item/screwdriver{ + pixel_y = 16 + }, +/obj/item/wirecutters, +/obj/item/device/multitool, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bfl" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bfm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/crew_quarters/heads/chief) +"bfn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/crew_quarters/heads/chief) +"bfo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/heads/chief) +"bfp" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bfq" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bfr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engine/engineering) +"bfs" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/delivery, +/obj/item/clothing/glasses/meson/engine, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bft" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Engineering Security APC"; + areastring = "/area/security/checkpoint/engineering"; + pixel_x = -24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/checkpoint/engineering) +"bfu" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bfv" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for monitoring the engine."; + dir = 8; + name = "Engine Monitor"; + network = list("Engine"); + pixel_x = 32 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/checkpoint/engineering) +"bfw" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard) +"bfx" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bfy" = ( +/obj/structure/closet/firecloset, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bfz" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space/nearstation) +"bfA" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"bfB" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"bfC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/secondary/entry) +"bfD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/checkpoint/customs) +"bfE" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/checkpoint/customs) +"bfF" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Customs APC"; + areastring = "/area/security/checkpoint/customs"; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/customs) +"bfG" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/machinery/computer/security, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/customs) +"bfH" = ( +/obj/machinery/computer/card, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/obj/machinery/camera{ + c_tag = "Customs Checkpoint"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/customs) +"bfI" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/newscaster/security_unit{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/customs) +"bfJ" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 + }, +/obj/structure/closet/secure_closet/security, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/checkpoint/customs) +"bfK" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"bfL" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bfM" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/closed/wall, +/area/quartermaster/sorting) +"bfN" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bfO" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bfP" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bfQ" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/structure/plasticflaps{ + opacity = 0 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bfR" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bfS" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/office) +"bfT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bfU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bfV" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bfW" = ( +/obj/machinery/computer/cargo{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/office) +"bfX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"bfY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bfZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bga" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgc" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/hallway/primary/port) +"bgd" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/hallway/primary/port) +"bge" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/brown/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bgf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + sortType = 22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"bgh" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light_switch{ + pixel_x = 8; + pixel_y = 30 + }, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bgi" = ( +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bgj" = ( +/obj/structure/closet/l3closet/janitor, +/obj/machinery/airalarm{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bgk" = ( +/obj/structure/closet/jcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bgl" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/central) +"bgm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bgn" = ( +/turf/closed/wall/r_wall, +/area/maintenance/central) +"bgo" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bgp" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/wood, +/obj/item/pinpointer/nuke, +/obj/item/disk/nuclear, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bgq" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/security/wooden_tv, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bgr" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bgs" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bgt" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/filingcabinet{ + pixel_x = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bgu" = ( +/obj/machinery/light_switch{ + pixel_x = 28 + }, +/obj/structure/dresser, +/obj/item/storage/secure/safe{ + pixel_x = 6; + pixel_y = 28 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bgv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bgw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bgy" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 10 + }, +/area/storage/tools) +"bgz" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/storage/box/lights/mixed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/yellow/side{ + dir = 2 + }, +/area/storage/tools) +"bgA" = ( +/turf/open/floor/plasteel/yellow/side{ + dir = 2 + }, +/area/storage/tools) +"bgB" = ( +/obj/structure/rack, +/obj/item/electronics/apc, +/obj/item/electronics/airlock, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/yellow/side{ + dir = 2 + }, +/area/storage/tools) +"bgC" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/rods/fifty, +/turf/open/floor/plasteel/yellow/side{ + dir = 6 + }, +/area/storage/tools) +"bgD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bgE" = ( +/obj/structure/rack, +/obj/item/circuitboard/computer/robotics{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/circuitboard/computer/mecha_control{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bgF" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bgG" = ( +/obj/machinery/vending/assist, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bgH" = ( +/obj/structure/table, +/obj/item/device/plant_analyzer, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bgI" = ( +/obj/structure/table, +/obj/item/device/analyzer, +/obj/item/device/healthanalyzer, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bgJ" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/device/multitool, +/obj/item/clothing/glasses/meson, +/obj/machinery/light_switch{ + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bgK" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bgL" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bgM" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bgN" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -29 + }, +/obj/machinery/suit_storage_unit/ce, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bgO" = ( +/obj/structure/rack, +/obj/item/storage/secure/briefcase, +/obj/item/clothing/mask/cigarette/cigar, +/obj/machinery/computer/security/telescreen{ + dir = 1; + name = "MiniSat Monitor"; + network = list("MiniSat","tcomm"); + pixel_y = -30 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bgP" = ( +/obj/structure/rack, +/obj/item/lighter, +/obj/item/clothing/glasses/meson, +/obj/machinery/button/door{ + id = "ceprivacy"; + name = "Privacy Shutters Control"; + pixel_y = -26 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bgQ" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/parrot/Poly, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bgR" = ( +/obj/structure/closet/secure_closet/engineering_chief{ + req_access_txt = "0" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bgS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engine/engineering) +"bgT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/camera/autoname{ + dir = 4; + network = list("SS13") + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for the engineering security doors."; + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_x = -24; + pixel_y = -6; + req_access_txt = "1" + }, +/obj/machinery/button/door{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_x = -24; + pixel_y = 5; + req_access_txt = "1" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/checkpoint/engineering) +"bgU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/engineering) +"bgV" = ( +/obj/structure/closet/secure_closet/security/engine, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/checkpoint/engineering) +"bgW" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bgX" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 5 + }, +/turf/open/space, +/area/space/nearstation) +"bgY" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bgZ" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bha" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 10 + }, +/turf/open/space, +/area/space/nearstation) +"bhb" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall/r_wall, +/area/space/nearstation) +"bhc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bhd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Port Fore"; + dir = 8; + network = list("MiniSat") + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bhe" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"bhf" = ( +/obj/machinery/porta_turret/ai{ + dir = 2 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_y = 24 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/ai) +"bhg" = ( +/obj/machinery/power/apc{ + aidisabled = 0; + dir = 1; + name = "AI Chamber APC"; + areastring = "/area/ai_monitored/turret_protected/ai"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"bhh" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"bhi" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Starboard Fore"; + dir = 4; + network = list("MiniSat") + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bhj" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bhk" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bhl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/checkpoint/customs) +"bhm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/checkpoint/customs) +"bhn" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"bho" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"bhp" = ( +/obj/structure/chair/office/dark, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"bhq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"bhr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/checkpoint/customs) +"bhs" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bht" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bhu" = ( +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bhv" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mailroom Maintenance"; + req_access_txt = "50" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bhw" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bhx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bhy" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bhz" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort2"; + pixel_x = -2; + pixel_y = 12 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bhA" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Cargo - Office"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/office) +"bhB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bhC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bhD" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bhE" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/office) +"bhF" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/office) +"bhG" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bhH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bhI" = ( +/turf/open/floor/plasteel/brown/corner{ + dir = 4 + }, +/area/hallway/primary/port) +"bhJ" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/hallway/primary/port) +"bhK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/brown/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bhL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"bhM" = ( +/obj/item/restraints/legcuffs/beartrap, +/obj/item/restraints/legcuffs/beartrap, +/obj/structure/table, +/obj/machinery/requests_console{ + department = "Janitorial"; + departmentType = 1; + pixel_x = -29 + }, +/obj/item/reagent_containers/spray/cleaner, +/obj/machinery/camera{ + c_tag = "Custodial Closet"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bhN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plating, +/area/janitor) +"bhO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bhP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bhQ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Custodial Maintenance"; + req_access_txt = "26" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bhR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bhS" = ( +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bhT" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/central) +"bhU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/bridge) +"bhV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/bridge) +"bhW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bhX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bhY" = ( +/turf/closed/wall/r_wall, +/area/bridge) +"bhZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bia" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/bridge) +"bib" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster/security_unit{ + pixel_x = -30; + pixel_y = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bic" = ( +/obj/effect/landmark/start/captain, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bid" = ( +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bie" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bif" = ( +/obj/machinery/door/window/westright, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"big" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/effect/landmark/start/captain, +/obj/machinery/camera{ + c_tag = "Captain's Quarters"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bih" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bii" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/yellow/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bij" = ( +/obj/structure/sign/directions/security{ + desc = "A direction sign, pointing out which way the security department is."; + dir = 1; + icon_state = "direction_sec"; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the engineering department is."; + dir = 4; + icon_state = "direction_eng" + }, +/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 = -8 + }, +/turf/closed/wall/r_wall, +/area/storage/tools) +"bik" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/storage/tools) +"bil" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Auxiliary Tool Storage"; + req_access_txt = "12" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/storage/tools) +"bim" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/storage/tools) +"bin" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/map/left{ + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault, +/area/hallway/primary/starboard) +"bio" = ( +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/vault, +/area/hallway/primary/starboard) +"bip" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"biq" = ( +/turf/closed/wall, +/area/hallway/primary/starboard) +"bir" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/storage/tech) +"bis" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage"; + req_access_txt = "0"; + req_one_access_txt = "23;30" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bit" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/chief) +"biu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/chief) +"biv" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "Engineering Security Doors" + }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/break_room) -"bvm" = ( +"biw" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "Engineering Security Doors" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bix" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"biy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Engineering Security Post"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"biz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"biA" = ( +/turf/open/floor/plating, +/area/engine/break_room) +"biB" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/break_room) +"biC" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 8 + }, +/turf/closed/wall/mineral/titanium, +/area/shuttle/pod_4) +"biD" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/pod_4) +"biE" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space/nearstation) +"biF" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Space Access Airlock"; + req_one_access_txt = "32;19" + }, +/turf/open/floor/plating, +/area/aisat) +"biG" = ( +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/aisat) +"biH" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/aisat) +"biI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/aisat) +"biJ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "MiniSat Airlock Access"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"biK" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"biL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"biM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"biN" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"biO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"biP" = ( +/obj/structure/table/reinforced, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"biQ" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/space, +/area/space/nearstation) +"biR" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/space, +/area/space/nearstation) +"biS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/secondary/entry) +"biT" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/closet, +/obj/item/crowbar, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/radio, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/checkpoint/customs) +"biU" = ( +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/customs) +"biV" = ( +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/structure/table/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/customs) +"biW" = ( +/obj/item/paper, +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 2; + name = "Arrivals Security Checkpoint"; + pixel_y = -8; + req_access_txt = "1" + }, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/customs) +"biX" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/customs) +"biY" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/closet/wardrobe/red, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/checkpoint/customs) +"biZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bja" = ( +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bjb" = ( +/obj/structure/disposalpipe/sorting/wrap{ + dir = 1 + }, +/turf/closed/wall, +/area/quartermaster/sorting) +"bjc" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bjd" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/eastleft{ + name = "Mail"; + req_access_txt = "50" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bje" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bjf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bjg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bjh" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bji" = ( +/obj/machinery/status_display{ + pixel_y = 32; + supply_display = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bjj" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bjk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Mailroom"; + req_access_txt = "0"; + req_one_access_txt = "48;50" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bjl" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/office) +"bjm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bjn" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bjo" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/cargo_technician, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bjp" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/office) +"bjq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Office"; + req_access_txt = "0"; + req_one_access_txt = "48;50" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bjr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/hallway/primary/port) +"bjs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bjt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bju" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bjv" = ( +/turf/open/floor/plasteel/brown/corner{ + dir = 2 + }, +/area/hallway/primary/port) +"bjw" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/brown{ + dir = 2 + }, +/area/hallway/primary/port) +"bjx" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Custodial Closet APC"; + areastring = "/area/janitor"; + pixel_x = -24 + }, +/obj/structure/table, +/obj/item/clothing/gloves/color/orange, +/obj/item/storage/box/mousetraps, +/obj/item/storage/box/mousetraps, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bjy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/portable_atmospherics/canister/water_vapor, +/mob/living/simple_animal/hostile/lizard{ + name = "Wags-His-Tail"; + real_name = "Wags-His-Tail" + }, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bjz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/landmark/start/janitor, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bjA" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bjB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/central) +"bjC" = ( +/obj/effect/landmark/blobstart, +/obj/machinery/power/apc{ + dir = 4; + name = "Central Maintenance APC"; + areastring = "/area/maintenance/central"; + pixel_x = 26 + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/maintenance/central) +"bjD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/bridge) +"bjE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/computer/card, +/turf/open/floor/plasteel/darkgreen/side{ + dir = 9 + }, +/area/bridge) +"bjF" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel/darkgreen/side{ + dir = 1 + }, +/area/bridge) +"bjG" = ( +/obj/machinery/computer/crew, +/turf/open/floor/plasteel/darkgreen/side{ + dir = 1 + }, +/area/bridge) +"bjH" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/item/folder/yellow{ + pixel_y = 4 + }, +/obj/machinery/camera{ + c_tag = "Bridge - Central"; + dir = 2; + network = list("SS13") + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/darkbrown/side{ + dir = 1 + }, +/area/bridge) +"bjI" = ( +/obj/machinery/computer/station_alert, +/turf/open/floor/plasteel/darkbrown/side{ + dir = 1 + }, +/area/bridge) +"bjJ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/computer/monitor{ + name = "Bridge Power Monitoring Console" + }, +/turf/open/floor/plasteel/darkbrown/side{ + dir = 1 + }, +/area/bridge) +"bjK" = ( +/obj/machinery/computer/atmos_alert, +/turf/open/floor/plasteel/darkbrown/side{ + dir = 1 + }, +/area/bridge) +"bjL" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/darkbrown/side{ + dir = 1 + }, +/area/bridge) +"bjM" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel/darkred/side{ + dir = 1 + }, +/area/bridge) +"bjN" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/darkred/side{ + dir = 1 + }, +/area/bridge) +"bjO" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/computer/prisoner, +/turf/open/floor/plasteel/darkred/side{ + dir = 5 + }, +/area/bridge) +"bjP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/bridge) +"bjQ" = ( +/obj/structure/table/wood, +/obj/item/storage/photo_album{ + pixel_y = -4 + }, +/obj/item/device/camera{ + pixel_y = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Captain)"; + pixel_x = -28 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bjR" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/item/razor{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/clothing/mask/cigarette/cigar, +/obj/item/reagent_containers/food/drinks/flask/gold, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bjS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bjT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bjU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bjV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bjW" = ( +/obj/structure/table/wood, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bjX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bjY" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=14.2-Central-CrewQuarters"; + location = "14-Starboard-Central" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bka" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Primary Hallway" + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bkb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bkc" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bkd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bke" = ( +/obj/machinery/firealarm{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bkf" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway - Tech Storage"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bkg" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bkh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bki" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bkj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bkk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bkl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bkm" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bkn" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bko" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Starboard Hallway APC"; + areastring = "/area/hallway/primary/starboard"; + pixel_y = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bkp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bkq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=14-Starboard-Central"; + location = "13.3-Engineering-Central" + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bkr" = ( +/turf/closed/wall/r_wall, +/area/engine/break_room) +"bks" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/glass, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bkt" = ( +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_guide{ + pixel_x = -4 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bku" = ( +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/structure/table/glass, +/obj/item/storage/firstaid/fire{ + pixel_y = 8 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bkv" = ( +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bkw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bkx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bky" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bkz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bkA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bkB" = ( +/obj/machinery/disposal/bin{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bkC" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/break_room) +"bkD" = ( +/obj/machinery/door/airlock/titanium{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + dir = 4; + id = "pod4"; + name = "escape pod 4"; + port_direction = 2; + preferred_direction = 4; + timid = 0 + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/pod_4) +"bkE" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/item/storage/pod{ + pixel_x = 6; + pixel_y = -32 + }, +/obj/machinery/light/small, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/pod_4) +"bkF" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_y = -32; + possible_destinations = "pod_lavaland4"; + shuttleId = "pod4" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/pod_4) +"bkG" = ( +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/pod_4) +"bkH" = ( +/obj/docking_port/stationary/random{ + dir = 4; + id = "pod_lavaland4"; + name = "lavaland" + }, +/turf/open/space, +/area/space/nearstation) +"bkI" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space/nearstation) +"bkJ" = ( +/obj/machinery/light/small, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Space Access"; + dir = 1; + network = list("MiniSat") + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/aisat) +"bkK" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window{ + dir = 8; + name = "MiniSat Airlock Access"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bkL" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue{ + pixel_y = 2 + }, +/obj/item/pen, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bkM" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bkN" = ( +/obj/machinery/camera{ + c_tag = "AI Chamber - Aft"; + dir = 1; + network = list("RD") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bkO" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bkP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bkQ" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bkR" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue{ + pixel_y = 2 + }, +/obj/item/pen, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bkS" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 15; + id = "arrivals_stationary"; + name = "arrivals"; + width = 7; + roundstart_template = /datum/map_template/shuttle/arrival/box; + + }, +/turf/open/space/basic, +/area/space) +"bkT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bkU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/secondary/entry) +"bkV" = ( +/obj/structure/sign/warning/pods, +/turf/closed/wall, +/area/security/checkpoint/customs) +"bkW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/security/checkpoint/customs) +"bkX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/security{ + name = "Customs Desk"; + req_access = null; + req_access_txt = "1" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"bkY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/checkpoint/customs) +"bkZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bla" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;48;50;1" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"blb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/port/fore) +"blc" = ( +/obj/machinery/door/window/eastleft{ + base_state = "right"; + icon_state = "right"; + name = "Deliveries"; + req_access_txt = "50" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bld" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "packageExternal"; + pixel_y = 18 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"ble" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"blf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"blg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"blh" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bli" = ( +/obj/structure/table, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/quartermaster/sorting) +"blj" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/obj/item/device/multitool, +/obj/item/pen/red, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/office) +"blk" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bll" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"blm" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/office) +"bln" = ( +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/hallway/primary/port) +"blo" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"blp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"blq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"blr" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/hallway/primary/port) +"bls" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"blt" = ( +/obj/structure/janitorialcart, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"blu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/vehicle/ridden/janicart, +/obj/item/key/janitor, +/turf/open/floor/plating, +/area/janitor) +"blv" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"blw" = ( +/obj/item/storage/box/lights/mixed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/central) +"blx" = ( +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/maintenance/central) +"bly" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"blz" = ( +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/darkgreen/side{ + dir = 8 + }, +/area/bridge) +"blA" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"blB" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"blC" = ( +/turf/open/floor/plasteel/dark, +/area/bridge) +"blD" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"blE" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"blF" = ( +/obj/item/folder/red{ + pixel_y = 3 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/folder/red{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/darkred/side{ + dir = 4 + }, +/area/bridge) +"blG" = ( +/turf/closed/wall, +/area/crew_quarters/heads/captain/private) +"blH" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/bikehorn/rubberducky, +/obj/machinery/light_switch{ + pixel_x = -28 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"blI" = ( +/obj/machinery/door/window{ + dir = 1; + name = "Captain's Bedroom"; + req_access_txt = "20" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"blJ" = ( +/obj/structure/closet/secure_closet/captains, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"blK" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/machinery/suit_storage_unit/captain, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"blL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"blM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"blN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"blO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Primary Hallway" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"blP" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"blQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"blR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"blS" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"blT" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"blU" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"blV" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"blW" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"blX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"blY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"blZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bma" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bmb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bmc" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bmd" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bme" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/caution/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bmf" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/light_switch{ + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bmg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bmh" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bmi" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bmj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bmk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bml" = ( +/turf/open/floor/plasteel, +/area/engine/break_room) +"bmm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Escape Pod Four"; + req_access = null; + req_access_txt = "32" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bmn" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/engine/break_room) +"bmo" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bmp" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat/foyer) +"bmq" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bmr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bms" = ( +/obj/machinery/door/airlock/highsecurity{ + locked = 0; + name = "AI Chamber"; + req_access_txt = "16" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Chamber entrance shutters"; + name = "AI Chamber entrance shutters" + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -26; + pixel_y = 3 + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bmt" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/satellite) +"bmu" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bmv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/hallway/secondary/entry) +"bmw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/arrival{ + dir = 5 + }, +/area/hallway/secondary/entry) +"bmx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bmy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 9 + }, +/area/hallway/primary/port) +"bmz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bmA" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bmB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 5 + }, +/area/hallway/primary/port) +"bmC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bmD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 9 + }, +/area/hallway/primary/port) +"bmE" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/hallway/primary/port) +"bmF" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 30 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 5 + }, +/area/hallway/primary/port) +"bmG" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageExternal" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bmH" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/computer/stockexchange, +/turf/open/floor/plasteel/arrival{ + dir = 2 + }, +/area/quartermaster/sorting) +"bmI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/plasteel/arrival{ + dir = 2 + }, +/area/quartermaster/sorting) +"bmJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/arrival{ + dir = 2 + }, +/area/quartermaster/sorting) +"bmK" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/machinery/camera{ + c_tag = "Cargo - Mailroom"; + dir = 1; + network = list("SS13") + }, +/turf/open/floor/plasteel/arrival{ + dir = 2 + }, +/area/quartermaster/sorting) +"bmL" = ( +/obj/structure/table, +/obj/item/stack/wrapping_paper, +/obj/item/stack/wrapping_paper, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_y = -30 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/storage/box/lights/mixed, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/arrival{ + dir = 2 + }, +/area/quartermaster/sorting) +"bmM" = ( +/obj/item/storage/box, +/obj/structure/table, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/item/hand_labeler, +/obj/machinery/power/apc{ + dir = 4; + name = "Delivery Office APC"; + areastring = "/area/quartermaster/sorting"; + pixel_x = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/arrival{ + dir = 6 + }, +/area/quartermaster/sorting) +"bmN" = ( +/obj/structure/table, +/obj/machinery/computer/stockexchange, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/turf/open/floor/plasteel/brown{ + dir = 10 + }, +/area/quartermaster/office) +"bmO" = ( +/obj/machinery/photocopier, +/turf/open/floor/plasteel/brown{ + dir = 2 + }, +/area/quartermaster/office) +"bmP" = ( +/turf/open/floor/plasteel/brown{ + dir = 2 + }, +/area/quartermaster/office) +"bmQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/holopad, +/turf/open/floor/plasteel/brown{ + dir = 2 + }, +/area/quartermaster/office) +"bmR" = ( +/obj/machinery/autolathe, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/turf/open/floor/plasteel/brown{ + dir = 6 + }, +/area/quartermaster/office) +"bmS" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/brown{ + dir = 10 + }, +/area/hallway/primary/port) +"bmT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/holopad, +/turf/open/floor/plasteel/brown/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bmU" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/brown/corner{ + dir = 2 + }, +/area/hallway/primary/port) +"bmV" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/rack, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/brown{ + dir = 2 + }, +/area/hallway/primary/port) +"bmW" = ( +/obj/structure/table, +/obj/item/device/toner, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 30 + }, +/turf/open/floor/plasteel/brown{ + dir = 6 + }, +/area/hallway/primary/port) +"bmX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bmY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"bmZ" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hop) +"bna" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/tank/internals/air, +/turf/open/floor/plating, +/area/maintenance/central) +"bnb" = ( +/obj/item/extinguisher, +/turf/open/floor/plating, +/area/maintenance/central) +"bnc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/modular_computer/console/preset/command, +/turf/open/floor/plasteel/darkblue/side{ + dir = 9 + }, +/area/bridge) +"bnd" = ( +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_y = 29 + }, +/obj/machinery/modular_computer/console/preset/engineering, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bne" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/darkgreen/corner{ + dir = 1 + }, +/area/bridge) +"bnf" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bng" = ( +/obj/item/device/radio/beacon, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bnh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/recharger{ + pixel_y = 3 + }, +/obj/item/restraints/handcuffs{ + pixel_y = 3 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/darkred/corner{ + dir = 4 + }, +/area/bridge) +"bni" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/computer/security/mining{ + network = list("MINE","AuxBase") + }, +/obj/machinery/keycard_auth{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bnj" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_x = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/computer/cargo/request, +/turf/open/floor/plasteel/darkblue/side{ + dir = 5 + }, +/area/bridge) +"bnk" = ( +/obj/effect/landmark/xeno_spawn, +/obj/item/soap/deluxe, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/shower{ + pixel_y = 12 + }, +/obj/structure/curtain, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/captain/private) +"bnl" = ( +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/structure/sink{ + pixel_y = 17 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/captain/private) +"bnm" = ( +/obj/structure/toilet{ + pixel_y = 13 + }, +/obj/machinery/light{ + dir = 2 + }, +/obj/effect/landmark/start/captain, +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/captain/private) +"bnn" = ( +/obj/machinery/door/airlock/silver{ + name = "Bathroom" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/captain/private) +"bno" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bnp" = ( +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bnq" = ( +/obj/effect/landmark/start/captain, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bnr" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bns" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=13.1-Engineering-Enter"; + location = "12-Central-Starboard" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bnt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/yellow/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"bnu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Primary Hallway" + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bnv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bnw" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bnx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bny" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bnz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bnA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bnB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bnC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway - Auxiliary Tool Storage"; + dir = 1; + network = list("SS13") + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bnD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bnE" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bnF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bnG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bnH" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway - Engineering"; + dir = 1; + network = list("SS13") + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bnI" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=13.2-Tcommstore"; + location = "13.1-Engineering-Enter" + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bnJ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bnK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/caution/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bnL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/engine/break_room) +"bnM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bnN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bnO" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bnP" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bnQ" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bnR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bnS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bnT" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bnU" = ( +/obj/structure/sign/warning/pods, +/turf/closed/wall/r_wall, +/area/engine/break_room) +"bnV" = ( +/turf/closed/wall/mineral/plastitanium, +/area/engine/break_room) +"bnW" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/curved/flipped{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bnX" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/crossing/horizontal, +/turf/open/space, +/area/space/nearstation) +"bnY" = ( +/obj/structure/transit_tube/curved{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"bnZ" = ( +/turf/closed/wall, +/area/space/nearstation) +"boa" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/space, +/area/space/nearstation) +"bob" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/obj/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/aisat) +"boc" = ( +/obj/machinery/computer/teleporter, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat/foyer) +"bod" = ( +/obj/machinery/teleport/station, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat/foyer) +"boe" = ( +/obj/machinery/teleport/hub, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat/foyer) +"bof" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/machinery/porta_turret/ai{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the RD's goons from the safety of his office."; + dir = 4; + name = "Research Monitor"; + network = list("RD"); + pixel_x = -28 + }, +/turf/open/floor/plasteel/vault{ + dir = 1 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bog" = ( +/obj/structure/showcase/cyborg/old{ + dir = 2; + pixel_y = 20 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"boh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"boi" = ( +/obj/structure/showcase/cyborg/old{ + dir = 2; + pixel_y = 20 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 4 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"boj" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/porta_turret/ai{ + dir = 2 + }, +/obj/machinery/computer/security/telescreen{ + dir = 8; + name = "MiniSat Monitor"; + network = list("MiniSat","tcomm"); + pixel_x = 28 + }, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bok" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/storage/satellite) +"bol" = ( +/obj/machinery/recharge_station, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/storage/satellite) +"bom" = ( +/obj/machinery/airalarm{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 2; + name = "Auxiliary MiniSat Distribution Port" + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/storage/satellite) +"bon" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/storage/satellite) +"boo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bop" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/secondary/entry) +"boq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bor" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 10 + }, +/area/hallway/primary/port) +"bos" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral/side, +/area/hallway/primary/port) +"bot" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=5-Customs"; + location = "4-Customs" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/neutral/side, +/area/hallway/primary/port) +"bou" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/side, +/area/hallway/primary/port) +"bov" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 6 + }, +/area/hallway/primary/port) +"bow" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 10 + }, +/area/hallway/primary/port) +"box" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"boy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/hallway/primary/port) +"boz" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageExternal" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"boA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/window/westleft{ + dir = 1; + name = "Delivery Desk"; + req_access_txt = "50" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"boB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"boC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/mineral/ore_redemption, +/turf/open/floor/plasteel/dark, +/area/quartermaster/office) +"boD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/quartermaster/office) +"boE" = ( +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the Supply department is."; + dir = 1; + icon_state = "direction_supply"; + name = "cargo department"; + pixel_y = 8 + }, +/turf/closed/wall, +/area/quartermaster/office) +"boF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/hallway/primary/port) +"boG" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/hallway/primary/port) +"boH" = ( +/obj/structure/sign/directions/security{ + desc = "A direction sign, pointing out which way the security department is."; + dir = 1; + icon_state = "direction_sec"; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the engineering department is."; + dir = 4; + icon_state = "direction_eng" + }, +/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 = -8 + }, +/turf/closed/wall/r_wall, +/area/hallway/primary/port) +"boI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"boJ" = ( +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/button/door{ + id = "hop"; + name = "Privacy Shutters Control"; + pixel_y = 25; + req_access_txt = "28" + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"boK" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/storage/secure/briefcase, +/obj/structure/table/wood, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching Prison Wing holding areas."; + name = "Prison Monitor"; + network = list("Prison"); + pixel_y = 30 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"boL" = ( +/obj/machinery/recharger, +/obj/item/storage/secure/safe{ + pixel_x = 34 + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"boM" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/central) +"boN" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/central) +"boO" = ( +/obj/item/device/radio/off, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"boP" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "Bridge" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/central) +"boQ" = ( +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Bridge Deliveries"; + req_access_txt = "19" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/bridge) +"boR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 8 + }, +/area/bridge) +"boS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"boT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"boU" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"boV" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/darkblue/corner, +/area/bridge) +"boW" = ( +/obj/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 2 + }, +/area/bridge) +"boX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/window/brigdoor{ + dir = 2; + name = "Command Desk"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 2 + }, +/area/bridge) +"boY" = ( +/obj/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 2 + }, +/area/bridge) +"boZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/bridge) +"bpa" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bpb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bpc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/camera{ + c_tag = "Bridge - Starboard"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 4 + }, +/area/bridge) +"bpd" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access = null; + req_access_txt = "20" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bpe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bpf" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/yellow/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"bpg" = ( +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the escape arm is."; + icon_state = "direction_evac"; + name = "escape arm" + }, +/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 = 8 + }, +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the research department is."; + icon_state = "direction_sci"; + name = "research department"; + pixel_y = -8 + }, +/turf/closed/wall, +/area/storage/art) +"bph" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/storage/art) +"bpi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Art Storage" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/storage/art) +"bpj" = ( +/turf/closed/wall, +/area/storage/art) +"bpk" = ( +/turf/closed/wall, +/area/crew_quarters/bar) +"bpl" = ( +/turf/closed/wall, +/area/maintenance/starboard) +"bpm" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;25;46" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bpn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/starboard) +"bpo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock{ + name = "Starboard Emergency Storage"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bpp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;25;46" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bpq" = ( +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the engineering department is."; + dir = 4; + icon_state = "direction_eng"; + pixel_y = 8 + }, +/turf/closed/wall, +/area/maintenance/starboard) +"bpr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bps" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bpt" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bpu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Foyer"; + req_access_txt = "0"; + req_one_access_txt = "32;19" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bpv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bpw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bpx" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bpy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bpz" = ( +/obj/structure/table/glass, +/obj/item/device/lightreplacer{ + pixel_y = 7 + }, +/obj/item/storage/belt/utility, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bpA" = ( +/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko{ + pixel_y = 4 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bpB" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bpC" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Foyer - Starboard"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bpD" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 4 + }, +/area/engine/break_room) +"bpE" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/structure/transit_tube/station/reverse/flipped{ + dir = 1 + }, +/obj/structure/transit_tube_pod{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 4 + }, +/area/engine/break_room) +"bpF" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/structure/transit_tube/curved{ + dir = 8 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 4 + }, +/area/engine/break_room) +"bpG" = ( +/obj/structure/transit_tube/diagonal, +/turf/open/space, +/area/space/nearstation) +"bpH" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/transit_tube/curved/flipped, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/aisat) +"bpI" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/aisat) +"bpJ" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/aisat) +"bpK" = ( +/obj/machinery/door/window{ + dir = 1; + name = "MiniSat Walkway Access"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/aisat) +"bpL" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/aisat) +"bpM" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/aisat) +"bpN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/aisat) +"bpO" = ( +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/ai_monitored/turret_protected/aisat/foyer) +"bpP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/ai_monitored/turret_protected/aisat/foyer) +"bpQ" = ( +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/aisat_interior"; + enabled = 1; + icon_state = "control_standby"; + name = "Antechamber Turret Control"; + pixel_x = 30; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/ai_monitored/turret_protected/aisat/foyer) +"bpR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bpS" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "MiniSat - Antechamber"; + dir = 4; + network = list("MiniSat") + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bpT" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bpU" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/start/cyborg, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bpV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 4 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bpW" = ( +/obj/machinery/power/apc{ + aidisabled = 0; + dir = 4; + name = "MiniSat Antechamber APC"; + areastring = "/area/ai_monitored/turret_protected/aisat_interior"; + pixel_x = 29 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 4 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bpX" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bpY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bpZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bqa" = ( +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bqb" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Arrivals - Station Entrance"; + dir = 4; + network = list("SS13") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bqc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bqd" = ( +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/secondary/entry) +"bqe" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bqf" = ( +/obj/structure/chair/comfy/beige, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bqg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bqh" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/chips, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bqi" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"bqj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/hallway/primary/port) +"bqk" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/port) +"bql" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bqm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bqn" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bqo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bqp" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bqq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Port Primary Hallway - Middle"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bqr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bqs" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Port Hallway APC"; + areastring = "/area/hallway/primary/port"; + pixel_x = -1; + pixel_y = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bqt" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bqu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bqv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/brown/corner{ + dir = 4 + }, +/area/hallway/primary/port) +"bqw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/brown/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bqx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/brown/corner{ + dir = 4 + }, +/area/hallway/primary/port) +"bqy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/brown/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bqz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Port Primary Hallway" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bqA" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bqB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=4-Customs"; + location = "3-Central-Port" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bqC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "hop"; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hop) +"bqD" = ( +/obj/item/folder/blue, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/table/wood, +/obj/item/device/assembly/flash/handheld, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bqE" = ( +/obj/effect/landmark/start/head_of_personnel, +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bqF" = ( +/obj/machinery/newscaster/security_unit{ + pixel_x = 32 + }, +/obj/machinery/computer/security/mining{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bqG" = ( +/obj/machinery/power/apc/highcap/ten_k{ + dir = 8; + name = "Bridge APC"; + areastring = "/area/bridge"; + pixel_x = -27 + }, +/obj/structure/cable/yellow, +/obj/machinery/camera{ + c_tag = "Bridge - Port"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 8 + }, +/area/bridge) +"bqH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bqI" = ( +/turf/open/floor/plasteel/darkblue/corner, +/area/bridge) +"bqJ" = ( +/turf/open/floor/plasteel/darkblue/side{ + dir = 2 + }, +/area/bridge) +"bqK" = ( +/turf/open/floor/plasteel/darkblue/side{ + dir = 6 + }, +/area/bridge) +"bqL" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/recharger, +/obj/item/restraints/handcuffs, +/obj/structure/table/glass, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bqM" = ( +/obj/machinery/computer/communications, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bqN" = ( +/obj/machinery/computer/security/wooden_tv{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bqO" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/folder/blue{ + pixel_y = 2 + }, +/obj/item/folder/blue{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bqP" = ( +/turf/open/floor/plasteel/darkblue/side{ + dir = 10 + }, +/area/bridge) +"bqQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/bridge) +"bqR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bqS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/darkblue/side{ + dir = 4 + }, +/area/bridge) +"bqT" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/item/storage/fancy/donut_box, +/obj/structure/table/glass, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bqU" = ( +/obj/structure/displaycase/captain{ + pixel_y = 5 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bqV" = ( +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bqW" = ( +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bqX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bqY" = ( +/obj/machinery/computer/communications{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Captain)"; + pixel_x = 28 + }, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/machinery/keycard_auth{ + pixel_x = 24; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bqZ" = ( +/obj/structure/rack, +/obj/item/cane, +/obj/item/reagent_containers/food/snacks/grown/mushroom/glowshroom, +/turf/open/floor/plating, +/area/crew_quarters/heads/captain/private) +"bra" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway - Starboard - Art Storage"; + dir = 4; + network = list("SS13") + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"brb" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"brc" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/art) +"brd" = ( +/obj/structure/table, +/obj/item/hand_labeler, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"bre" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/storage/art) +"brf" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/easel, +/obj/item/canvas/twentythreeXtwentythree, +/obj/item/canvas/twentythreeXtwentythree, +/turf/open/floor/plasteel, +/area/storage/art) +"brg" = ( +/obj/structure/closet/secure_closet/bar{ + req_access_txt = "25" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brh" = ( +/obj/machinery/reagentgrinder, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bri" = ( +/obj/structure/table/wood, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/gun/ballistic/revolver/doublebarrel, +/obj/machinery/camera{ + c_tag = "Bar - Backroom"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brj" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brk" = ( +/obj/machinery/door/window/southleft{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Bar Delivery"; + req_access_txt = "25" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"brl" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 8; + freq = 1400; + location = "Bar" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/crew_quarters/bar) +"brm" = ( +/obj/item/storage/box/lights/mixed, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brn" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"bro" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brp" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brq" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brt" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"bru" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"brv" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brw" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"brx" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bry" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/caution/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"brz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/engine/break_room) +"brA" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/break_room) +"brB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/break_room) +"brC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"brD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"brE" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"brF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"brG" = ( +/obj/machinery/door/poddoor/preopen{ + id = "transittube"; + name = "Transit Tube Blast Door" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"brH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Access"; + req_one_access_txt = "32;19" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"brI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"brJ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"brK" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/table/glass, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"brL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/transit_tube/curved{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"brM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/transit_tube/horizontal, +/turf/open/space, +/area/space/nearstation) +"brN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/transit_tube/horizontal, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space/nearstation) +"brO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/transit_tube/crossing/horizontal, +/turf/open/space, +/area/space/nearstation) +"brP" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/transit_tube/horizontal, +/turf/open/space, +/area/space/nearstation) +"brQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/transit_tube/junction/flipped{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"brR" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space, +/area/space/nearstation) +"brS" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space, +/area/space/nearstation) +"brT" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/transit_tube/station{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"brU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"brV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"brW" = ( +/obj/machinery/holopad, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/aisat) +"brX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"brY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"brZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Foyer"; + req_one_access_txt = "32;19" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"bsa" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"bsb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/holopad, +/obj/item/device/radio/beacon, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"bsc" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"bsd" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Antechamber"; + req_one_access_txt = "32;19" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bse" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bsf" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bsg" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/mob/living/simple_animal/bot/secbot/pingsky, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bsh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bsi" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bsj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "32" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bsk" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bsl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bsm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bsn" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bso" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bsp" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bsq" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bsr" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bss" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bst" = ( +/obj/machinery/holopad, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bsu" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Arrivals APC"; + areastring = "/area/hallway/secondary/entry"; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/secondary/entry) +"bsv" = ( +/obj/structure/chair/comfy/beige{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arrivals - Lounge"; + dir = 4; + network = list("SS13") + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bsw" = ( +/turf/open/floor/carpet, +/area/hallway/primary/port) +"bsx" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/holopad{ + pixel_y = -16 + }, +/turf/open/floor/carpet, +/area/hallway/primary/port) +"bsy" = ( +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bsz" = ( +/obj/machinery/vending/cola/random, +/obj/machinery/newscaster{ + pixel_x = -28; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"bsA" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/hallway/primary/port) +"bsB" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsD" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/goonplaque{ + desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of sentient postcards in a realm of darkness. The station model number is MSv42A-160516" + }, +/area/hallway/primary/port) +"bsE" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsF" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsG" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsH" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsI" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsL" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 3 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsP" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Port Primary Hallway" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bsR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bsS" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"bsT" = ( +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/pen, +/obj/structure/window/reinforced, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bsU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/window{ + dir = 2; + name = "HoP's Desk"; + req_access_txt = "57" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bsV" = ( +/obj/structure/window/reinforced, +/obj/machinery/computer/cargo/request{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bsW" = ( +/obj/machinery/vending/cart{ + req_access_txt = "57" + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bsX" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Personnel's Desk"; + departmentType = 5; + name = "Head of Personnel RC"; + pixel_y = 30 + }, +/obj/machinery/pdapainter{ + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bsY" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/bed/dogbed/ian, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bsZ" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bta" = ( +/turf/closed/wall, +/area/crew_quarters/heads/hop) +"btb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/darkblue/side{ + dir = 2 + }, +/area/bridge) +"btc" = ( +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/rack, +/obj/item/storage/secure/briefcase, +/obj/item/clothing/mask/cigarette/cigar, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"btd" = ( +/obj/structure/rack, +/obj/item/device/aicard, +/obj/item/device/radio/off, +/obj/machinery/computer/security/telescreen{ + dir = 1; + name = "MiniSat Monitor"; + network = list("MiniSat","tcomm"); + pixel_y = -29 + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bte" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/cell_charger{ + pixel_y = 4 + }, +/obj/structure/table/glass, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"btf" = ( +/turf/open/floor/carpet, +/area/bridge) +"btg" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/bridge) +"bth" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bti" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/structure/rack, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/timer, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"btj" = ( +/obj/machinery/light, +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/item/storage/toolbox/emergency{ + pixel_x = -2; + pixel_y = -3 + }, +/obj/item/wrench, +/obj/item/device/multitool, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"btk" = ( +/obj/machinery/light_switch{ + pixel_x = 8; + pixel_y = -26 + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 10 + }, +/area/bridge) +"btl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 2 + }, +/area/bridge) +"btm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/darkblue/side{ + dir = 6 + }, +/area/bridge) +"btn" = ( +/obj/structure/fireaxecabinet{ + pixel_y = -32 + }, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/machinery/light_switch{ + pixel_x = 28 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bto" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/power/apc{ + dir = 8; + name = "Captain's Quarters APC"; + areastring = "/area/crew_quarters/heads/captain/private"; + pixel_x = -24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/paper/fluff/gateway, +/obj/item/coin/plasma, +/obj/item/melee/chainofcommand, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"btp" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"btq" = ( +/obj/structure/table/wood, +/obj/item/stamp/captain, +/obj/machinery/computer/security/wooden_tv, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"btr" = ( +/obj/effect/landmark/start/captain, +/obj/structure/chair/comfy/brown, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bts" = ( +/obj/machinery/computer/card{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Captain's Desk"; + departmentType = 5; + name = "Captain RC"; + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"btt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"btu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"btv" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"btw" = ( +/obj/structure/table, +/obj/machinery/power/apc{ + dir = 8; + name = "Art Storage APC"; + areastring = "/area/storage/art"; + pixel_x = -25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/item/paper_bin, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/turf/open/floor/plasteel, +/area/storage/art) +"btx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/storage/art) +"bty" = ( +/obj/structure/table, +/obj/item/paper_bin/construction, +/obj/item/airlock_painter, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"btz" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/vending_refill/cigarette, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"btA" = ( +/obj/effect/landmark/start/bartender, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"btB" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"btC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"btD" = ( +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = -30 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"btE" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Bar Maintenance"; + req_access_txt = "25" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"btF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"btG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"btH" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 2; + sortType = 19 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"btI" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;25;46" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"btJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"btK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"btL" = ( +/obj/item/device/assembly/prox_sensor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"btM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/item/storage/box/lights/mixed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"btN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"btO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;25;46" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"btP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"btQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"btR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"btS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 2 + }, +/area/hallway/primary/starboard) +"btT" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/engine/break_room) +"btU" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -30 + }, +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/engine/break_room) +"btV" = ( +/obj/machinery/microwave{ + pixel_y = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Foyer - Port"; + dir = 1; + network = list("SS13") + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/engine/break_room) +"btW" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/item/storage/box/donkpockets, +/obj/structure/table/glass, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/engine/break_room) +"btX" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"btY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Engineering Foyer APC"; + areastring = "/area/engine/break_room"; + pixel_x = -1; + pixel_y = -26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/engine/break_room) +"btZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bua" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bub" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"buc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bud" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"bue" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/corner, +/area/engine/break_room) +"buf" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/folder/blue{ + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/pen, +/obj/machinery/computer/security/telescreen{ + dir = 1; + name = "MiniSat Monitor"; + network = list("MiniSat","tcomm"); + pixel_y = -28 + }, +/turf/open/floor/plasteel/darkblue/corner, +/area/engine/break_room) +"bug" = ( +/obj/structure/transit_tube/diagonal/topleft, +/turf/open/space, +/area/space/nearstation) +"buh" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/transit_tube/curved{ + dir = 1 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/aisat) +"bui" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/light/small, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior Access"; + dir = 1; + network = list("MiniSat") + }, +/obj/machinery/power/apc{ + aidisabled = 0; + dir = 2; + name = "MiniSat Exterior APC"; + areastring = "/area/aisat"; + pixel_y = -24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/aisat) +"buj" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/aisat) +"buk" = ( +/obj/machinery/door/window{ + dir = 2; + name = "MiniSat Walkway Access"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/aisat) +"bul" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/aisat) +"bum" = ( +/obj/structure/window/reinforced, +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/aisat) +"bun" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/closed/wall/r_wall, -/area/engine/break_room) +/area/aisat) +"buo" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat/foyer) +"bup" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat/foyer) +"buq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc/highcap/five_k{ + aidisabled = 0; + dir = 2; + name = "MiniSat Foyer APC"; + areastring = "/area/ai_monitored/turret_protected/aisat/foyer"; + pixel_y = -29 + }, +/obj/structure/cable/yellow, +/obj/machinery/camera/motion{ + c_tag = "MiniSat Foyer"; + dir = 8; + network = list("MiniSat") + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat/foyer) +"bur" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bus" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/mob/living/simple_animal/bot/floorbot, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"but" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"buu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"buv" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/darkblue/corner, +/area/ai_monitored/turret_protected/aisat_interior) +"buw" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/mob/living/simple_animal/bot/cleanbot, +/turf/open/floor/plasteel/darkblue/corner, +/area/ai_monitored/turret_protected/aisat_interior) +"bux" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/machinery/power/apc{ + dir = 2; + name = "MiniSat Maint APC"; + areastring = "/area/ai_monitored/storage/satellite"; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow, +/obj/item/stack/sheet/mineral/plasma{ + amount = 35 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"buy" = ( +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/computer/security/telescreen{ + dir = 1; + name = "MiniSat Monitor"; + network = list("MiniSat","tcomm"); + pixel_y = -29 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"buz" = ( +/obj/structure/table, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/computer/monitor{ + dir = 1 + }, +/obj/structure/cable/yellow, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"buA" = ( +/obj/machinery/camera/motion{ + c_tag = "MiniSat Maintenance"; + dir = 8; + network = list("MiniSat") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/multitool, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"buB" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"buC" = ( +/obj/machinery/vending/cola/random, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"buD" = ( +/obj/item/device/radio/beacon, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"buE" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"buF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"buG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/newscaster{ + pixel_x = 28; + pixel_y = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/secondary/entry) +"buH" = ( +/obj/structure/chair/comfy/beige{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"buI" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/hallway/primary/port) +"buJ" = ( +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"buK" = ( +/obj/machinery/vending/snack/random, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"buL" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/hallway/primary/port) +"buM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/port) +"buN" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"buO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"buP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"buQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"buR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"buS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"buT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"buU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"buV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"buW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/plaques/kiddie/library{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"buX" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"buY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"buZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bva" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Port Primary Hallway - Starboard"; + dir = 1; + network = list("SS13") + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bvb" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bvc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Port Primary Hallway" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bvd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bve" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=7-Command-Starboard"; + location = "6-Port-Central" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bvf" = ( +/obj/machinery/button/door{ + id = "hop"; + name = "Privacy Shutters Control"; + pixel_x = -24; + pixel_y = -6; + req_access_txt = "28" + }, +/obj/machinery/light_switch{ + pixel_x = -25; + pixel_y = 5 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bvg" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bvh" = ( +/mob/living/simple_animal/pet/dog/corgi/Ian, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bvi" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Head of Personnel APC"; + areastring = "/area/crew_quarters/heads/hop"; + pixel_y = 24 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bvj" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bvk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bvl" = ( +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bvm" = ( +/obj/machinery/keycard_auth{ + pixel_x = 26 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) "bvn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bvo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bvp" = ( +/turf/closed/wall, +/area/bridge) +"bvq" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/machinery/vending/cola/random, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bvr" = ( +/obj/machinery/button/door{ + id = "bridge blast"; + name = "Bridge Access Blast Door Control"; + pixel_x = -1; + pixel_y = -24; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/button/door{ + id = "council blast"; + name = "Council Chamber Blast Door Control"; + pixel_x = -1; + pixel_y = -34; + req_access_txt = "19" + }, +/obj/machinery/camera{ + c_tag = "Bridge - Command Chair"; + dir = 1; + network = list("SS13") + }, +/turf/open/floor/carpet, +/area/bridge) +"bvs" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet, +/area/bridge) +"bvt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/button/door{ + id = "evashutter"; + name = "E.V.A. Storage Shutter Control"; + pixel_y = -24; + req_access_txt = "19" + }, +/obj/machinery/button/door{ + id = "gateshutter"; + name = "Gateway Shutter Control"; + pixel_y = -34; + req_access_txt = "19" + }, +/turf/open/floor/carpet, +/area/bridge) +"bvu" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/vending/snack/random, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bvv" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bvw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bvx" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced, +/obj/machinery/light_switch{ + pixel_x = -28 + }, +/obj/item/storage/secure/briefcase{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/storage/lockbox/medal, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bvy" = ( +/obj/machinery/door/window{ + name = "Captain's Desk"; + req_access_txt = "20" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bvz" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bvA" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/machinery/door/window{ + base_state = "right"; + icon_state = "right"; + name = "Captain's Desk"; + req_access_txt = "20" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/item/stamp/captain, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bvB" = ( +/obj/structure/table/wood, +/obj/item/hand_tele, +/obj/structure/window/reinforced, +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bvC" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bvD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "20;12" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bvE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bvF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bvG" = ( +/obj/structure/table, +/obj/item/canvas/twentythreeXtwentythree, +/obj/item/canvas/twentythreeXtwentythree, +/obj/item/canvas/twentythreeXnineteen, +/obj/item/canvas/twentythreeXnineteen, +/obj/item/canvas/nineteenXnineteen, +/obj/item/canvas/nineteenXnineteen, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/turf/open/floor/plasteel, +/area/storage/art) +"bvH" = ( +/obj/structure/table, +/obj/item/device/camera, +/turf/open/floor/plasteel, +/area/storage/art) +"bvI" = ( +/obj/structure/table, +/obj/item/device/camera_film, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 28 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"bvJ" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bvK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/xeno_spawn, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bvL" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/closet/gmcloset, +/obj/item/wrench, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bvM" = ( +/obj/machinery/chem_master/condimaster{ + desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments."; + name = "HoochMaster Deluxe"; + pixel_x = -4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bvN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bvO" = ( +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard) +"bvP" = ( +/obj/item/storage/toolbox/emergency, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bvQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bvR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"bvS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/caution{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bvT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/caution{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bvU" = ( +/turf/closed/wall, +/area/engine/break_room) +"bvV" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Foyer Maintenance"; + req_access_txt = "0"; + req_one_access_txt = "32;19" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bvW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/caution{ + dir = 2 + }, +/area/engine/break_room) +"bvX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/caution{ + dir = 2 + }, +/area/engine/break_room) +"bvY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/caution{ dir = 2 }, /area/engine/break_room) -"bvo" = ( +"bvZ" = ( /obj/structure/table/glass, /obj/item/wrench, /obj/item/crowbar, @@ -35528,7 +36744,7 @@ }, /turf/open/floor/plasteel/dark, /area/engine/break_room) -"bvp" = ( +"bwa" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/machinery/camera{ c_tag = "Engineering - Transit Tube Access"; @@ -35540,11 +36756,698 @@ }, /turf/open/floor/plasteel/dark, /area/engine/break_room) -"bvq" = ( +"bwb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/engine/break_room) -"bvr" = ( +"bwc" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/curved{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bwd" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/curved/flipped{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"bwe" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"bwf" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"bwg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"bwh" = ( +/obj/machinery/door/airlock/hatch{ + name = "Telecomms Control Room"; + req_one_access_txt = "19; 61" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tcommsat/computer) +"bwi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bwj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bwk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bwl" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-18" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bwm" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bwn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bwo" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-08" + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bwp" = ( +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bwq" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-03" + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bwr" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Port Primary Hallway - Port"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"bws" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/hallway/primary/port) +"bwt" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/hallway/primary/port) +"bwu" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/vault, +/area/hallway/primary/port) +"bwv" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault, +/area/hallway/primary/port) +"bww" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/vault, +/area/hallway/primary/port) +"bwx" = ( +/turf/closed/wall, +/area/maintenance/port) +"bwy" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;27;37" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bwz" = ( +/turf/closed/wall, +/area/library) +"bwA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/turf/open/floor/wood, +/area/library) +"bwB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/turf/open/floor/wood, +/area/library) +"bwC" = ( +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the escape arm is."; + icon_state = "direction_evac"; + name = "escape arm" + }, +/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 = 8 + }, +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the research department is."; + icon_state = "direction_sci"; + name = "research department"; + pixel_y = -8 + }, +/turf/closed/wall, +/area/library) +"bwD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bwE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + sortType = 15 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bwF" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"bwG" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access = null; + req_access_txt = "57" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bwH" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bwI" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bwJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bwK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/holopad, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bwL" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bwM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bwN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bwO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access = null; + req_access_txt = "57" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"bwP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/darkblue/corner, +/area/bridge) +"bwQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bwR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/bridge) +"bwS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/bookcase, +/turf/open/floor/wood, +/area/bridge) +"bwT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/bridge) +"bwU" = ( +/obj/machinery/door/airlock/command{ + name = "Command Desk"; + req_access = null; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/vault, +/area/bridge) +"bwV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/bridge) +"bwW" = ( +/obj/structure/bookcase, +/turf/open/floor/wood, +/area/bridge) +"bwX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -26 + }, +/turf/open/floor/plasteel/darkblue/corner, +/area/bridge) +"bwY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bwZ" = ( +/obj/machinery/vending/boozeomat, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bxa" = ( +/obj/machinery/holopad{ + pixel_x = 9; + pixel_y = -9 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bxb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bxc" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bxd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bxe" = ( +/obj/machinery/camera{ + c_tag = "Captain's Office"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bxf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Captain's Office - Emergency Escape"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/central) +"bxg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bxh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bxi" = ( +/obj/machinery/vending/boozeomat, +/turf/closed/wall, +/area/crew_quarters/bar) +"bxj" = ( +/obj/machinery/door/airlock{ + name = "Bar Storage"; + req_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "wood" + }, +/area/crew_quarters/bar) +"bxk" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/obj/structure/sign/barsign{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/crew_quarters/bar) +"bxl" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/turf/open/floor/carpet, +/area/crew_quarters/bar) +"bxm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bxn" = ( +/obj/machinery/disposal/bin{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bxo" = ( +/obj/machinery/computer/arcade, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bxp" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bxq" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bxr" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard) +"bxs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bxt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bxu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;25;46" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bxv" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/caution{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bxw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bxx" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/caution{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bxy" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bxz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bxA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard) +"bxB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bxC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bxD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"bxE" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/engine/break_room) +"bxF" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bxG" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bxH" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bxI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/break_room) +"bxJ" = ( /obj/structure/table/glass, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -35561,7 +37464,17 @@ }, /turf/open/floor/plasteel/dark, /area/engine/break_room) -"bvs" = ( +"bxK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"bxL" = ( /obj/machinery/door/airlock/hatch{ name = "MiniSat Space Access Airlock"; req_one_access_txt = "32;19" @@ -35571,10 +37484,32 @@ }, /turf/open/floor/plasteel/dark, /area/engine/break_room) -"bvt" = ( +"bxM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"bxN" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Space Access Airlock"; + req_one_access_txt = "32;19" + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"bxO" = ( /turf/closed/wall, /area/aisat) -"bvu" = ( +"bxP" = ( /obj/structure/table/wood, /obj/machinery/light/small{ dir = 8 @@ -35587,17 +37522,17 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bvv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +"bxQ" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/machinery/status_display{ + pixel_y = 31 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) -"bvw" = ( +/obj/item/folder/blue, +/obj/item/pen, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bxR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/showcase/cyborg/old{ dir = 2; @@ -35605,14 +37540,14 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bvx" = ( +"bxS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bvy" = ( +"bxT" = ( /obj/machinery/light_switch{ pixel_y = 28 }, @@ -35622,7 +37557,7 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bvz" = ( +"bxU" = ( /obj/structure/table/wood, /obj/machinery/ai_status_display{ pixel_y = 31 @@ -35630,7 +37565,7 @@ /obj/item/device/flashlight/lamp, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bvA" = ( +"bxV" = ( /obj/machinery/light/small{ dir = 4 }, @@ -35651,7 +37586,7 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bvB" = ( +"bxW" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-20" }, @@ -35660,13 +37595,16 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bvC" = ( +"bxX" = ( /obj/structure/chair, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bxY" = ( +/obj/structure/chair, +/obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /obj/effect/turf_decal/stripes/line{ @@ -35674,7 +37612,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bvD" = ( +"bxZ" = ( /obj/structure/chair, /obj/effect/landmark/start/assistant, /obj/effect/turf_decal/stripes/line{ @@ -35682,16 +37620,19 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bvE" = ( +"bya" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bvF" = ( +"byb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bvG" = ( +"byc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -35700,7 +37641,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bvH" = ( +"byd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -35709,7 +37650,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bvI" = ( +"bye" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -35718,7 +37659,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bvJ" = ( +"byf" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -35727,7 +37668,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bvK" = ( +"byg" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -35737,7 +37678,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bvL" = ( +"byh" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -35749,7 +37690,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bvM" = ( +"byi" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -35757,14 +37698,14 @@ dir = 4 }, /area/hallway/secondary/entry) -"bvN" = ( +"byj" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/hallway/primary/port) -"bvO" = ( +"byk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -35772,7 +37713,7 @@ dir = 9 }, /area/hallway/primary/port) -"bvP" = ( +"byl" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -35780,7 +37721,7 @@ dir = 1 }, /area/hallway/primary/port) -"bvQ" = ( +"bym" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=6-Port-Central"; location = "5-Customs" @@ -35795,7 +37736,7 @@ dir = 1 }, /area/hallway/primary/port) -"bvR" = ( +"byn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -35803,7 +37744,7 @@ dir = 1 }, /area/hallway/primary/port) -"bvS" = ( +"byo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -35811,16 +37752,7 @@ dir = 5 }, /area/hallway/primary/port) -"bvT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"bvU" = ( +"byp" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, @@ -35831,7 +37763,7 @@ dir = 1 }, /area/hallway/primary/port) -"bvV" = ( +"byq" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -35839,14 +37771,19 @@ dir = 4 }, /area/hallway/primary/port) -"bvW" = ( +"byr" = ( /turf/closed/wall, /area/crew_quarters/toilet/auxiliary) -"bvX" = ( +"bys" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, /area/crew_quarters/toilet/auxiliary) -"bvY" = ( +"byt" = ( +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/port) +"byu" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -35856,7 +37793,14 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bwa" = ( +"byv" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"byw" = ( /obj/structure/table/wood, /obj/machinery/computer/security/telescreen/entertainment{ pixel_x = -32 @@ -35868,25 +37812,52 @@ }, /turf/open/floor/wood, /area/library) -"bwb" = ( +"byx" = ( /obj/structure/table/wood, /obj/machinery/computer/libraryconsole, /turf/open/floor/wood, /area/library) -"bwc" = ( +"byy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/carpet, /area/library) -"bwd" = ( +"byz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/library) -"bwe" = ( -/obj/structure/chair/comfy/black{ - dir = 8 +"byA" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" }, +/obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/wood, /area/library) -"bwf" = ( +"byB" = ( +/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 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/cult{ + dir = 2 + }, +/area/library) +"byC" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/item/folder, +/obj/item/folder, +/turf/open/floor/plasteel/cult{ + dir = 2 + }, +/area/library) +"byD" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ pixel_x = 1; @@ -35899,18 +37870,19 @@ dir = 2 }, /area/library) -"bwg" = ( +"byE" = ( /obj/structure/table/wood, /obj/machinery/newscaster{ pixel_y = 32 }, /obj/item/folder, /obj/item/folder, +/obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plasteel/cult{ dir = 2 }, /area/library) -"bwh" = ( +"byF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/extinguisher_cabinet{ pixel_x = -27 @@ -35919,14 +37891,14 @@ dir = 8 }, /area/hallway/primary/central) -"bwi" = ( +"byG" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/open/floor/wood, /area/crew_quarters/heads/hop) -"bwj" = ( +"byH" = ( /obj/item/hand_labeler, /obj/item/stack/packageWrap, /obj/structure/cable/yellow{ @@ -35935,24 +37907,33 @@ /obj/structure/table/wood, /turf/open/floor/wood, /area/crew_quarters/heads/hop) -"bwk" = ( +"byI" = ( /obj/structure/closet/secure_closet/hop, /turf/open/floor/wood, /area/crew_quarters/heads/hop) -"bwl" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Space Access Airlock"; - req_one_access_txt = "32;19" +"byJ" = ( +/obj/machinery/camera{ + c_tag = "Head of Personnel's Office"; + dir = 1; + network = list("SS13") }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) -"bwm" = ( +/obj/structure/table/wood, +/obj/item/storage/box/PDAs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/silver_ids, +/obj/item/storage/box/ids, +/obj/machinery/light, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"byK" = ( /obj/machinery/computer/secure_data{ dir = 1 }, /turf/open/floor/wood, /area/crew_quarters/heads/hop) -"bwn" = ( +"byL" = ( /obj/machinery/computer/card{ dir = 1 }, @@ -35961,7 +37942,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/heads/hop) -"bwo" = ( +"byM" = ( /obj/structure/chair/office/dark, /obj/effect/landmark/start/head_of_personnel, /obj/structure/cable/yellow{ @@ -35992,7 +37973,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/heads/hop) -"bwp" = ( +"byN" = ( /obj/structure/table/wood, /obj/item/paper_bin{ pixel_x = -2; @@ -36004,11 +37985,11 @@ }, /turf/open/floor/wood, /area/crew_quarters/heads/hop) -"bwq" = ( +"byO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/darkblue/corner, /area/bridge) -"bwr" = ( +"byP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/firealarm{ dir = 4; @@ -36023,7 +38004,7 @@ dir = 1 }, /area/bridge) -"bws" = ( +"byQ" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ pixel_x = 1; @@ -36031,7 +38012,7 @@ }, /turf/open/floor/plasteel/dark, /area/bridge) -"bwt" = ( +"byR" = ( /obj/structure/table/wood, /obj/item/book/manual/wiki/security_space_law{ pixel_y = 3 @@ -36043,7 +38024,7 @@ }, /turf/open/floor/plasteel/dark, /area/bridge) -"bwu" = ( +"byS" = ( /obj/machinery/holopad, /obj/machinery/status_display{ pixel_y = 32 @@ -36053,7 +38034,7 @@ }, /turf/open/floor/plasteel/dark, /area/bridge) -"bwv" = ( +"byT" = ( /obj/machinery/camera{ c_tag = "Council Chamber"; dir = 2; @@ -36068,7 +38049,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/dark, /area/bridge) -"bww" = ( +"byU" = ( /obj/structure/table/wood, /obj/item/folder/yellow, /obj/machinery/firealarm{ @@ -36076,7 +38057,7 @@ }, /turf/open/floor/plasteel/dark, /area/bridge) -"bwx" = ( +"byV" = ( /obj/structure/table/wood, /obj/item/paper_bin{ pixel_x = -3; @@ -36088,7 +38069,7 @@ }, /turf/open/floor/plasteel/dark, /area/bridge) -"bwy" = ( +"byW" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -36099,7 +38080,7 @@ }, /turf/open/floor/plasteel/darkblue/corner, /area/bridge) -"bwz" = ( +"byX" = ( /obj/machinery/light{ dir = 4 }, @@ -36112,17 +38093,17 @@ dir = 1 }, /area/bridge) -"bwA" = ( +"byY" = ( /obj/machinery/vending/cigarette, /turf/open/floor/wood, /area/crew_quarters/heads/captain/private) -"bwB" = ( +"byZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bwC" = ( +"bza" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -36134,7 +38115,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bwD" = ( +"bzb" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -36145,7 +38126,7 @@ /obj/item/storage/fancy/donut_box, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bwE" = ( +"bzc" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -36160,7 +38141,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bwF" = ( +"bzd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -36172,7 +38153,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bwG" = ( +"bze" = ( /obj/machinery/door/airlock/command{ name = "Emergency Escape"; req_access = null; @@ -36192,7 +38173,7 @@ }, /turf/open/floor/plating, /area/maintenance/central) -"bwH" = ( +"bzf" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -36208,14 +38189,14 @@ }, /turf/open/floor/plating, /area/maintenance/central) -"bwI" = ( +"bzg" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bwJ" = ( +"bzh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, @@ -36223,7 +38204,7 @@ dir = 4 }, /area/hallway/primary/central) -"bwK" = ( +"bzi" = ( /obj/structure/table, /obj/machinery/firealarm{ dir = 8; @@ -36235,12 +38216,12 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bwL" = ( +"bzj" = ( /obj/structure/table, /obj/machinery/chem_dispenser/drinks/beer, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bwM" = ( +"bzk" = ( /obj/machinery/camera{ c_tag = "Bar"; dir = 2; @@ -36262,7 +38243,7 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bwN" = ( +"bzl" = ( /obj/machinery/light{ dir = 1 }, @@ -36271,18 +38252,19 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bwO" = ( +"bzm" = ( +/obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bwP" = ( +"bzn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment{ dir = 5 }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bwQ" = ( -/obj/structure/sign/securearea{ +"bzo" = ( +/obj/structure/sign/warning/securearea{ desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; icon_state = "monkey_painting"; name = "Mr. Deempisi portrait"; @@ -36297,7 +38279,7 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bwR" = ( +"bzp" = ( /obj/machinery/power/apc/highcap/five_k{ dir = 1; name = "Bar APC"; @@ -36312,13 +38294,13 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bwS" = ( +"bzq" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bwT" = ( +"bzr" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -36327,7 +38309,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bwU" = ( +"bzs" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -36347,7 +38329,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bwV" = ( +"bzt" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -36355,25 +38337,28 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/crew_quarters/bar) -"bwW" = ( +"bzu" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/crew_quarters/bar) -"bwX" = ( +"bzv" = ( /obj/structure/chair/stool{ pixel_y = 8 }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bwY" = ( +"bzw" = ( +/turf/closed/wall, +/area/crew_quarters/theatre) +"bzx" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/starboard) -"bwZ" = ( +"bzy" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -23 @@ -36385,7 +38370,7 @@ dir = 8 }, /area/hallway/primary/starboard) -"bxa" = ( +"bzz" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -36395,7 +38380,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/starboard) -"bxb" = ( +"bzA" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -36409,13 +38394,13 @@ dir = 4 }, /area/hallway/primary/starboard) -"bxc" = ( +"bzB" = ( /turf/closed/wall/r_wall, /area/engine/atmos) -"bxd" = ( +"bzC" = ( /turf/closed/wall, /area/engine/atmos) -"bxe" = ( +"bzD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -36427,68 +38412,53 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bxf" = ( +"bzE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/closed/wall, /area/engine/atmos) -"bxg" = ( +"bzF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/engine/atmos) -"bxh" = ( +"bzG" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, /turf/closed/wall/r_wall, /area/engine/atmos) -"bxi" = ( +"bzH" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/engine/atmos) -"bxj" = ( +"bzI" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /turf/closed/wall/r_wall, /area/engine/atmos) -"bxk" = ( +"bzJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/engine/atmos) -"bxl" = ( +"bzK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/closed/wall/r_wall, /area/engine/atmos) -"bxm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_y = -32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) -"bxn" = ( +"bzL" = ( +/obj/machinery/announcement_system, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bzM" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -36497,14 +38467,14 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bxo" = ( +"bzN" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bxp" = ( +"bzO" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -36513,16 +38483,16 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bxq" = ( +"bzP" = ( /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bxr" = ( +"bzQ" = ( /obj/structure/chair/office/dark{ dir = 4 }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bxs" = ( +"bzR" = ( /obj/machinery/computer/security/telescreen{ dir = 8; name = "Telecomms Camera Monitor"; @@ -36535,12 +38505,12 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bxt" = ( +"bzS" = ( /obj/machinery/light, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bxu" = ( +"bzT" = ( /obj/machinery/camera{ c_tag = "Arrivals - Middle Arm - Far"; dir = 1; @@ -36552,35 +38522,31 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bxv" = ( +"bzU" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bxw" = ( +"bzV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bxx" = ( +"bzW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = -32 }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bxy" = ( +"bzX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -36588,7 +38554,20 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bxz" = ( +"bzY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = -25 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bzZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -36600,7 +38579,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bxA" = ( +"bAa" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -36609,7 +38588,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bxB" = ( +"bAb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -36621,7 +38600,7 @@ dir = 2 }, /area/hallway/secondary/entry) -"bxC" = ( +"bAc" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -36633,7 +38612,7 @@ dir = 2 }, /area/hallway/secondary/entry) -"bxD" = ( +"bAd" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -36644,7 +38623,7 @@ dir = 2 }, /area/hallway/secondary/entry) -"bxE" = ( +"bAe" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -36658,7 +38637,7 @@ dir = 6 }, /area/hallway/secondary/entry) -"bxF" = ( +"bAf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -36671,7 +38650,7 @@ dir = 10 }, /area/hallway/primary/port) -"bxG" = ( +"bAg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -36682,7 +38661,7 @@ }, /turf/open/floor/plasteel/neutral/side, /area/hallway/primary/port) -"bxH" = ( +"bAh" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -36697,7 +38676,7 @@ }, /turf/open/floor/plasteel/neutral/side, /area/hallway/primary/port) -"bxI" = ( +"bAi" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -36706,7 +38685,7 @@ }, /turf/open/floor/plasteel/neutral/side, /area/hallway/primary/port) -"bxJ" = ( +"bAj" = ( /obj/machinery/airalarm{ dir = 1; pixel_y = -22 @@ -36715,11 +38694,11 @@ dir = 6 }, /area/hallway/primary/port) -"bxK" = ( +"bAk" = ( /obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/hallway/primary/port) -"bxL" = ( +"bAl" = ( /obj/structure/sign/map/left{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; @@ -36729,7 +38708,7 @@ dir = 10 }, /area/hallway/primary/port) -"bxM" = ( +"bAm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -36743,7 +38722,7 @@ }, /turf/open/floor/plasteel/neutral/side, /area/hallway/primary/port) -"bxN" = ( +"bAn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -36754,7 +38733,7 @@ dir = 6 }, /area/hallway/primary/port) -"bxO" = ( +"bAo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -36768,7 +38747,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bxP" = ( +"bAp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -36782,7 +38761,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bxQ" = ( +"bAq" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -36794,7 +38773,14 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/crew_quarters/toilet/auxiliary) -"bxS" = ( +"bAr" = ( +/obj/machinery/vending/cigarette, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/crew_quarters/toilet/auxiliary) +"bAs" = ( /obj/item/cigbutt, /obj/machinery/power/apc/highcap/five_k{ dir = 2; @@ -36810,7 +38796,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bxT" = ( +"bAt" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -36820,26 +38806,37 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port) -"bxU" = ( +"bAu" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port) +"bAv" = ( /obj/structure/table/wood, /obj/machinery/newscaster{ pixel_x = -32 }, /turf/open/floor/wood, /area/library) -"bxV" = ( +"bAw" = ( /obj/structure/chair/office/dark{ dir = 1 }, /obj/effect/landmark/start/librarian, /turf/open/floor/wood, /area/library) -"bxW" = ( +"bAx" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/wood, +/area/library) +"bAy" = ( /turf/open/floor/plasteel/cult{ dir = 2 }, /area/library) -"bxX" = ( +"bAz" = ( /obj/structure/chair/comfy/brown{ dir = 1 }, @@ -36847,14 +38844,14 @@ dir = 2 }, /area/library) -"bxY" = ( +"bAA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /turf/open/floor/plasteel/neutral/corner{ dir = 8 }, /area/hallway/primary/central) -"bxZ" = ( +"bAB" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/machinery/door/poddoor/preopen{ @@ -36863,7 +38860,7 @@ }, /turf/open/floor/plating, /area/crew_quarters/heads/hop) -"byb" = ( +"bAC" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/brigdoor{ base_state = "rightsecure"; @@ -36884,12 +38881,11 @@ }, /obj/machinery/door/poddoor/preopen{ id = "hop"; - layer = 3.1; name = "privacy shutters" }, /turf/open/floor/plasteel, /area/crew_quarters/heads/hop) -"byc" = ( +"bAD" = ( /obj/machinery/light{ dir = 8 }, @@ -36901,13 +38897,13 @@ }, /turf/open/floor/plasteel/darkblue/corner, /area/bridge) -"byd" = ( +"bAE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/darkblue/corner{ dir = 1 }, /area/bridge) -"bye" = ( +"bAF" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ name = "Council Chamber"; @@ -36916,38 +38912,38 @@ }, /turf/open/floor/plasteel/dark, /area/bridge) -"byf" = ( +"bAG" = ( /obj/structure/chair/comfy/beige, /turf/open/floor/carpet, /area/bridge) -"byg" = ( +"bAH" = ( /obj/structure/chair/comfy/black, /turf/open/floor/carpet, /area/bridge) -"byh" = ( +"bAI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /obj/structure/chair/comfy/beige, /turf/open/floor/carpet, /area/bridge) -"byi" = ( +"bAJ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/carpet, /area/bridge) -"byj" = ( +"bAK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/carpet, /area/bridge) -"byk" = ( +"bAL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/bridge) -"byl" = ( +"bAM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -36959,7 +38955,7 @@ }, /turf/open/floor/plasteel/dark, /area/bridge) -"bym" = ( +"bAN" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -36968,7 +38964,7 @@ }, /turf/open/floor/plasteel/darkblue/corner, /area/bridge) -"byn" = ( +"bAO" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -36976,7 +38972,7 @@ dir = 1 }, /area/bridge) -"byo" = ( +"bAP" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ name = "Captain's Quarters"; @@ -36985,28 +38981,28 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/captain/private) -"byp" = ( +"bAQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"byq" = ( +"bAR" = ( /obj/structure/chair/comfy/brown{ dir = 4 }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"byr" = ( +"bAS" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/drinks/shaker, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bys" = ( +"bAT" = ( /obj/structure/chair/comfy/brown{ dir = 8 }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"byt" = ( +"bAU" = ( /obj/machinery/airalarm{ dir = 8; pixel_x = 24 @@ -37016,7 +39012,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"byu" = ( +"bAV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -37029,7 +39025,7 @@ icon_state = "platingdmg3" }, /area/maintenance/central) -"byv" = ( +"bAW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/firealarm{ dir = 8; @@ -37039,39 +39035,34 @@ dir = 8 }, /area/hallway/primary/central) -"byw" = ( +"bAX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/neutral/corner{ dir = 4 }, /area/hallway/primary/central) -"byx" = ( -/obj/machinery/porta_turret/ai{ - dir = 2 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_y = 24 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/ai) -"byy" = ( +"bAY" = ( +/obj/structure/sign/poster/random, +/turf/closed/wall, +/area/crew_quarters/bar) +"bAZ" = ( +/turf/open/floor/plasteel/bar, +/area/crew_quarters/bar) +"bBa" = ( /obj/effect/landmark/start/bartender, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"byz" = ( +"bBb" = ( /mob/living/carbon/monkey/punpun, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"byA" = ( +"bBc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/landmark/start/bartender, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"byB" = ( +"bBd" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Bar Access"; @@ -37079,10 +39070,10 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"byC" = ( +"bBe" = ( /turf/open/floor/wood, /area/crew_quarters/bar) -"byD" = ( +"bBf" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -37090,14 +39081,14 @@ /obj/item/clothing/head/fedora, /turf/open/floor/wood, /area/crew_quarters/bar) -"byE" = ( +"bBg" = ( /obj/structure/table/wood/poker, /obj/item/toy/cards/deck{ pixel_y = 4 }, /turf/open/floor/wood, /area/crew_quarters/bar) -"byF" = ( +"bBh" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, @@ -37109,7 +39100,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"byG" = ( +"bBi" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -37118,7 +39109,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"byH" = ( +"bBj" = ( /obj/structure/disposalpipe/segment{ dir = 10 }, @@ -37127,30 +39118,35 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"byI" = ( +"bBk" = ( +/obj/structure/piano, /obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"byJ" = ( -/obj/structure/chair/wood/wings{ dir = 8 }, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"byK" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Security Doors" +"bBl" = ( +/obj/structure/chair/wood/wings{ + dir = 8 }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"byL" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bBm" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bBn" = ( /obj/machinery/power/apc{ dir = 1; name = "Theatre APC"; @@ -37164,55 +39160,40 @@ /obj/item/clothing/glasses/monocle, /turf/open/floor/wood, /area/crew_quarters/theatre) -"byM" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; +"bBo" = ( +/obj/structure/table/wood, +/obj/item/staff/broom, +/obj/item/wrench, +/obj/machinery/airalarm{ + dir = 8; pixel_x = 24 }, -/mob/living/simple_animal/bot/cleanbot, -/turf/open/floor/plasteel/darkblue/corner, -/area/ai_monitored/turret_protected/aisat_interior) -"byN" = ( -/turf/closed/wall, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/open/floor/wood, /area/crew_quarters/theatre) -"byO" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/machinery/power/apc{ - dir = 2; - name = "MiniSat Maint APC"; - areastring = "/area/ai_monitored/storage/satellite"; - pixel_y = -26 +"bBp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow, -/obj/item/stack/sheet/mineral/plasma{ - amount = 35 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"byP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bBq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/item/device/radio/beacon, /turf/open/floor/plasteel/caution{ dir = 8 }, /area/hallway/primary/starboard) -"byQ" = ( +"bBr" = ( /turf/open/floor/plasteel/caution{ dir = 4 }, /area/hallway/primary/starboard) -"byR" = ( +"bBs" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -37232,7 +39213,7 @@ dir = 9 }, /area/engine/atmos) -"byS" = ( +"bBt" = ( /obj/machinery/status_display{ pixel_y = 32 }, @@ -37244,7 +39225,7 @@ dir = 1 }, /area/engine/atmos) -"byT" = ( +"bBu" = ( /obj/structure/sign/map/left{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; @@ -37259,7 +39240,7 @@ dir = 1 }, /area/engine/atmos) -"byU" = ( +"bBv" = ( /obj/structure/sign/map/right{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; @@ -37269,8 +39250,8 @@ dir = 1 }, /area/engine/atmos) -"byV" = ( -/obj/structure/sign/atmosplaque{ +"bBw" = ( +/obj/structure/sign/plaques/atmos{ pixel_y = 32 }, /obj/item/phone{ @@ -37289,7 +39270,7 @@ dir = 5 }, /area/engine/atmos) -"byW" = ( +"bBx" = ( /obj/structure/table, /obj/item/clothing/head/welding{ pixel_x = -3; @@ -37309,7 +39290,7 @@ dir = 8 }, /area/engine/atmos) -"byX" = ( +"bBy" = ( /obj/machinery/power/apc/highcap/ten_k{ dir = 1; name = "Atmospherics APC"; @@ -37325,14 +39306,14 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"byY" = ( +"bBz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/engine/atmos) -"byZ" = ( +"bBA" = ( /obj/machinery/space_heater, /obj/machinery/firealarm{ dir = 2; @@ -37343,11 +39324,11 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bza" = ( +"bBB" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/engine/atmos) -"bzb" = ( +"bBC" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 8 }, @@ -37360,7 +39341,7 @@ dir = 1 }, /area/engine/atmos) -"bzc" = ( +"bBD" = ( /obj/machinery/light{ dir = 1 }, @@ -37376,7 +39357,7 @@ dir = 1 }, /area/engine/atmos) -"bzd" = ( +"bBE" = ( /obj/machinery/meter{ frequency = 1441; id_tag = "distro_meter"; @@ -37387,7 +39368,7 @@ dir = 1 }, /area/engine/atmos) -"bze" = ( +"bBF" = ( /obj/machinery/atmospherics/pipe/manifold/supply/visible{ dir = 1 }, @@ -37395,7 +39376,7 @@ dir = 1 }, /area/engine/atmos) -"bzf" = ( +"bBG" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; name = "Air to Distro"; @@ -37414,7 +39395,7 @@ dir = 1 }, /area/engine/atmos) -"bzg" = ( +"bBH" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 10 }, @@ -37422,7 +39403,7 @@ dir = 1 }, /area/engine/atmos) -"bzh" = ( +"bBI" = ( /obj/machinery/atmospherics/components/unary/thermomachine/heater{ dir = 2; on = 1 @@ -37431,17 +39412,17 @@ dir = 1 }, /area/engine/atmos) -"bzi" = ( +"bBJ" = ( /obj/structure/lattice, /obj/structure/grille, /turf/closed/wall/r_wall, /area/space/nearstation) -"bzj" = ( +"bBK" = ( /obj/structure/grille, /obj/structure/lattice, /turf/closed/wall/r_wall, /area/space/nearstation) -"bzk" = ( +"bBL" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 @@ -37451,7 +39432,7 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"bzl" = ( +"bBM" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -37462,7 +39443,7 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"bzm" = ( +"bBN" = ( /obj/structure/window/reinforced{ dir = 1; layer = 2.9 @@ -37483,7 +39464,7 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"bzn" = ( +"bBO" = ( /obj/machinery/computer/message_monitor{ dir = 4 }, @@ -37493,19 +39474,19 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bzo" = ( +"bBP" = ( /obj/structure/chair/office/dark{ dir = 8 }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bzp" = ( +"bBQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bzq" = ( +"bBR" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -37519,7 +39500,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bzr" = ( +"bBS" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -37528,7 +39509,7 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bzs" = ( +"bBT" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -37538,7 +39519,7 @@ /obj/structure/chair/office/dark, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bzt" = ( +"bBU" = ( /obj/machinery/power/apc/highcap/five_k{ dir = 4; name = "Telecomms Control Room APC"; @@ -37554,7 +39535,7 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bzu" = ( +"bBV" = ( /obj/structure/window/reinforced{ dir = 1; layer = 2.9 @@ -37572,14 +39553,14 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"bzv" = ( +"bBW" = ( /obj/structure/window/reinforced{ dir = 4 }, /obj/structure/window/reinforced, /turf/open/floor/plasteel/dark, /area/aisat) -"bzw" = ( +"bBX" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -37590,14 +39571,14 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bzx" = ( +"bBY" = ( /turf/closed/wall, /area/security/vacantoffice) -"bzy" = ( +"bBZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/security/vacantoffice) -"bzz" = ( +"bCa" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/centcom/abandoned{ name = "Vacant Office"; @@ -37610,7 +39591,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/security/vacantoffice) -"bzA" = ( +"bCb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -37620,29 +39601,33 @@ }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bzB" = ( +"bCc" = ( /obj/structure/mirror{ pixel_x = 28 }, /turf/open/floor/plating, /area/crew_quarters/toilet/auxiliary) -"bzC" = ( +"bCd" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port) -"bzD" = ( +"bCe" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/port) +"bCf" = ( /obj/machinery/photocopier{ pixel_y = 3 }, /turf/open/floor/wood, /area/library) -"bzE" = ( +"bCg" = ( /turf/open/floor/wood, /area/library) -"bzF" = ( +"bCh" = ( /obj/machinery/light{ dir = 4 }, @@ -37653,7 +39638,14 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/library) -"bzG" = ( +"bCi" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)" + }, +/turf/closed/wall, +/area/library) +"bCj" = ( /obj/machinery/door/morgue{ name = "Study #1"; req_access_txt = "0" @@ -37662,7 +39654,7 @@ dir = 2 }, /area/library) -"bzH" = ( +"bCk" = ( /obj/machinery/door/morgue{ name = "Study #2"; req_access_txt = "0" @@ -37671,7 +39663,7 @@ dir = 2 }, /area/library) -"bzI" = ( +"bCl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light{ dir = 8 @@ -37680,41 +39672,49 @@ dir = 8 }, /area/hallway/primary/central) -"bzJ" = ( +"bCm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway - Port"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"bCn" = ( /turf/closed/wall, /area/hallway/secondary/command) -"bzK" = ( +"bCo" = ( /obj/machinery/vending/cola/random, /turf/open/floor/plasteel/dark, /area/hallway/secondary/command) -"bzL" = ( +"bCp" = ( /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bzM" = ( +"bCq" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; name = "Station Intercom (General)"; pixel_y = 21 }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; +/obj/structure/sign/warning/electricshock{ pixel_y = 32 }, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bzN" = ( +"bCr" = ( /obj/machinery/status_display{ pixel_y = 32 }, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bzO" = ( +"bCs" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -37725,7 +39725,7 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bzP" = ( +"bCt" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -37737,7 +39737,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bzQ" = ( +"bCu" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -2; @@ -37747,10 +39747,10 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bzR" = ( +"bCv" = ( /turf/closed/wall/r_wall, /area/hallway/secondary/command) -"bzS" = ( +"bCw" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -37765,7 +39765,7 @@ dir = 1 }, /area/bridge) -"bzT" = ( +"bCx" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -37780,7 +39780,7 @@ }, /turf/open/floor/plasteel/dark, /area/bridge) -"bzU" = ( +"bCy" = ( /obj/structure/chair/comfy/teal{ dir = 4 }, @@ -37789,7 +39789,7 @@ }, /turf/open/floor/carpet, /area/bridge) -"bzV" = ( +"bCz" = ( /obj/structure/table/wood, /obj/item/folder/white{ pixel_x = 4; @@ -37797,24 +39797,24 @@ }, /turf/open/floor/carpet, /area/bridge) -"bzW" = ( +"bCA" = ( /obj/structure/table/wood, /obj/item/folder/blue, /obj/item/lighter, /turf/open/floor/carpet, /area/bridge) -"bzX" = ( +"bCB" = ( /obj/structure/table/wood, /obj/item/folder/red, /turf/open/floor/carpet, /area/bridge) -"bzY" = ( +"bCC" = ( /obj/structure/chair/comfy/black{ dir = 8 }, /turf/open/floor/carpet, /area/bridge) -"bzZ" = ( +"bCD" = ( /obj/machinery/airalarm{ dir = 8; pixel_x = 24 @@ -37822,7 +39822,7 @@ /obj/machinery/vending/cigarette, /turf/open/floor/plasteel/dark, /area/bridge) -"bAa" = ( +"bCE" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -37835,13 +39835,13 @@ }, /turf/open/floor/plasteel/dark, /area/bridge) -"bAb" = ( +"bCF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/darkblue/corner{ dir = 1 }, /area/bridge) -"bAc" = ( +"bCG" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -37851,13 +39851,13 @@ }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bAd" = ( +"bCH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bAe" = ( +"bCI" = ( /obj/machinery/light, /obj/machinery/computer/security/telescreen{ dir = 1; @@ -37869,7 +39869,7 @@ /mob/living/simple_animal/pet/fox/Renault, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bAf" = ( +"bCJ" = ( /obj/item/device/radio/intercom{ dir = 0; name = "Station Intercom (General)"; @@ -37877,14 +39877,14 @@ }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bAg" = ( +"bCK" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bAh" = ( +"bCL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -37893,7 +39893,14 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/central) -"bAi" = ( +"bCM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bCN" = ( /obj/structure/table/reinforced, /obj/item/lighter, /obj/machinery/computer/security/telescreen/entertainment{ @@ -37901,30 +39908,30 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bAj" = ( +"bCO" = ( /obj/structure/table/reinforced, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bAk" = ( +"bCP" = ( /obj/structure/table/reinforced, /obj/item/clothing/head/that{ throwforce = 1 }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bAl" = ( +"bCQ" = ( /obj/structure/table/reinforced, /obj/item/storage/box/matches{ pixel_y = 5 }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bAm" = ( +"bCR" = ( /obj/structure/table/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bAn" = ( +"bCS" = ( /obj/structure/table/reinforced, /obj/item/reagent_containers/food/condiment/saltshaker{ pixel_x = -3 @@ -37934,13 +39941,13 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bAo" = ( +"bCT" = ( /obj/machinery/smartfridge/drinks{ icon_state = "boozeomat" }, /turf/closed/wall, /area/crew_quarters/bar) -"bAp" = ( +"bCU" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -37950,7 +39957,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bAq" = ( +"bCV" = ( /obj/structure/table/wood/poker, /obj/effect/spawner/lootdrop{ loot = list(/obj/item/gun/ballistic/revolver/russian = 5, /obj/item/storage/box/syndie_kit/throwing_weapons, /obj/item/toy/cards/deck/syndicate = 2); @@ -37958,7 +39965,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bAr" = ( +"bCW" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 @@ -37968,7 +39975,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bAs" = ( +"bCX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -37977,19 +39984,19 @@ }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bAt" = ( +"bCY" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bAu" = ( +"bCZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bAv" = ( +"bDa" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -37998,7 +40005,18 @@ }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bAx" = ( +"bDb" = ( +/obj/structure/table/wood, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/clothing/head/sombrero, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"bDc" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -38016,7 +40034,7 @@ dir = 8 }, /area/hallway/primary/starboard) -"bAy" = ( +"bDd" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -38026,7 +40044,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/hallway/primary/starboard) -"bAz" = ( +"bDe" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -38034,18 +40052,18 @@ dir = 4 }, /area/hallway/primary/starboard) -"bAA" = ( +"bDf" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "atmos"; - name = "Atmos Blast Door" + name = "Atmospherics Blast Door" }, /obj/structure/cable/yellow{ icon_state = "0-2" }, /turf/open/floor/plating, /area/engine/atmos) -"bAB" = ( +"bDg" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -38056,26 +40074,26 @@ dir = 8 }, /area/engine/atmos) -"bAC" = ( +"bDh" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bAD" = ( +"bDi" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bAE" = ( +"bDj" = ( /obj/structure/chair/office/dark{ dir = 4 }, /obj/effect/landmark/start/atmospheric_technician, /turf/open/floor/plasteel, /area/engine/atmos) -"bAF" = ( +"bDk" = ( /obj/machinery/computer/atmos_control{ dir = 8 }, @@ -38089,7 +40107,7 @@ dir = 4 }, /area/engine/atmos) -"bAG" = ( +"bDl" = ( /obj/machinery/light{ dir = 8 }, @@ -38102,7 +40120,7 @@ dir = 8 }, /area/engine/atmos) -"bAH" = ( +"bDm" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -38111,36 +40129,36 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bAI" = ( +"bDn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-8" }, /turf/open/floor/plasteel, /area/engine/atmos) -"bAJ" = ( +"bDo" = ( /obj/machinery/space_heater, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bAK" = ( +"bDp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /turf/open/floor/plasteel, /area/engine/atmos) -"bAL" = ( +"bDq" = ( /obj/machinery/atmospherics/components/unary/thermomachine/freezer, /turf/open/floor/plasteel, /area/engine/atmos) -"bAM" = ( +"bDr" = ( /obj/machinery/atmospherics/components/unary/thermomachine/heater{ dir = 1; on = 1 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bAN" = ( +"bDs" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1; name = "Mix to Distro"; @@ -38148,30 +40166,30 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bAO" = ( +"bDt" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bAP" = ( +"bDu" = ( /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 8 }, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmos) -"bAQ" = ( +"bDv" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bAR" = ( +"bDw" = ( /obj/structure/grille, /turf/closed/wall/r_wall, /area/engine/atmos) -"bAS" = ( +"bDx" = ( /obj/structure/window/reinforced{ dir = 1; pixel_y = 2 @@ -38179,7 +40197,7 @@ /obj/structure/lattice, /turf/open/space, /area/space/nearstation) -"bAT" = ( +"bDy" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -38189,59 +40207,52 @@ }, /turf/open/space, /area/space/nearstation) -"bAU" = ( +"bDz" = ( /obj/machinery/microwave{ pixel_y = 4 }, /obj/structure/table/wood, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bAV" = ( +"bDA" = ( /obj/machinery/light/small, /obj/item/storage/box/donkpockets, /obj/structure/table/wood, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bAW" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/machinery/status_display{ - pixel_y = 31 +"bDB" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" }, -/obj/item/folder/blue, -/obj/item/pen, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bAX" = ( +"bDC" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bAY" = ( +"bDD" = ( /obj/structure/filingcabinet{ pixel_x = 3 }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bAZ" = ( +"bDE" = ( +/obj/machinery/light/small, +/obj/item/folder, +/obj/item/folder, /obj/machinery/camera{ - c_tag = "Head of Personnel's Office"; + c_tag = "Telecomms - Control Room"; dir = 1; - network = list("SS13") + network = list("SS13","tcomm") }, /obj/structure/table/wood, -/obj/item/storage/box/PDAs{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/silver_ids, -/obj/item/storage/box/ids, -/obj/machinery/light, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bBa" = ( +/obj/item/pen, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bDF" = ( /obj/machinery/requests_console{ announcementConsole = 1; department = "Telecomms Admin"; @@ -38260,7 +40271,7 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bBb" = ( +"bDG" = ( /obj/structure/window/reinforced{ dir = 1; layer = 2.9 @@ -38268,12 +40279,12 @@ /obj/structure/lattice, /turf/open/space, /area/space/nearstation) -"bBc" = ( +"bDH" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bBd" = ( +"bDI" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -38282,12 +40293,16 @@ dir = 4 }, /area/hallway/secondary/entry) -"bBe" = ( +"bDJ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port) +"bDK" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/maintenance/port) -"bBf" = ( +"bDL" = ( /obj/structure/table/wood, /obj/machinery/light_switch{ pixel_x = -28 @@ -38296,28 +40311,31 @@ /obj/item/folder, /turf/open/floor/wood, /area/security/vacantoffice) -"bBg" = ( +"bDM" = ( /turf/open/floor/wood, /area/security/vacantoffice) -"bBh" = ( +"bDN" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/security/vacantoffice) -"bBi" = ( +"bDO" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp, /turf/open/floor/wood, /area/security/vacantoffice) -"bBj" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "panelscorched" +"bDP" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/paper, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 }, -/area/maintenance/starboard) -"bBk" = ( +/turf/open/floor/wood, +/area/security/vacantoffice) +"bDQ" = ( /obj/structure/table/wood, /obj/item/device/camera_film{ pixel_y = 9 @@ -38328,30 +40346,39 @@ }, /turf/open/floor/wood, /area/security/vacantoffice) -"bBl" = ( +"bDR" = ( +/obj/structure/urinal{ + pixel_y = 29 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/crew_quarters/toilet/auxiliary) +"bDS" = ( /obj/structure/urinal{ pixel_y = 29 }, /turf/open/floor/plating, /area/crew_quarters/toilet/auxiliary) -"bBm" = ( +"bDT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bBn" = ( +"bDU" = ( /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bBo" = ( +"bDV" = ( /obj/machinery/door/airlock{ id_tag = "AuxToilet1"; name = "Unit 1" }, /turf/open/floor/plasteel, /area/crew_quarters/toilet/auxiliary) -"bBp" = ( +"bDW" = ( /obj/structure/toilet{ pixel_y = 8 }, @@ -38371,13 +40398,13 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/toilet/auxiliary) -"bBq" = ( +"bDX" = ( /obj/structure/rack, /obj/item/device/flashlight, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port) -"bBr" = ( +"bDY" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -23 @@ -38385,40 +40412,51 @@ /obj/structure/displaycase/trophy, /turf/open/floor/wood, /area/library) -"bBs" = ( -/obj/structure/chair/office/dark{ - dir = 8 +"bDZ" = ( +/obj/structure/displaycase/trophy, +/turf/open/floor/wood, +/area/library) +"bEa" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 }, /turf/open/floor/wood, /area/library) -"bBt" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bBu" = ( +"bEb" = ( /obj/machinery/vending/coffee, /obj/machinery/newscaster{ pixel_y = 32 }, /turf/open/floor/wood, /area/library) -"bBv" = ( +"bEc" = ( /obj/structure/chair/comfy/black, /obj/effect/landmark/start/assistant, /turf/open/floor/wood, /area/library) -"bBw" = ( -/obj/machinery/bookbinder, -/turf/open/floor/wood, -/area/library) -"bBx" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" +"bEd" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/machinery/photocopier{ + pixel_y = 3 }, /turf/open/floor/wood, /area/library) -"bBy" = ( +"bEe" = ( +/obj/machinery/bookbinder, +/turf/open/floor/wood, +/area/library) +"bEf" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/wood, +/area/library) +"bEg" = ( /obj/structure/sign/directions/engineering{ desc = "A direction sign, pointing out which way the bridge is."; dir = 4; @@ -38439,14 +40477,14 @@ }, /turf/closed/wall, /area/hallway/secondary/command) -"bBz" = ( +"bEh" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" }, /turf/open/floor/plating, /area/hallway/secondary/command) -"bBA" = ( +"bEi" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "hopqueue"; name = "HoP Queue Shutters" @@ -38459,7 +40497,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bBB" = ( +"bEj" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" @@ -38469,7 +40507,7 @@ }, /turf/open/floor/plating, /area/hallway/secondary/command) -"bBC" = ( +"bEk" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -38483,7 +40521,7 @@ /obj/effect/turf_decal/loading_area, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bBD" = ( +"bEl" = ( /obj/structure/sign/directions/engineering{ desc = "A direction sign, pointing out which way the bridge is."; dir = 1; @@ -38493,7 +40531,7 @@ }, /turf/closed/wall/r_wall, /area/hallway/secondary/command) -"bBE" = ( +"bEm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; @@ -38506,7 +40544,7 @@ }, /turf/open/floor/plasteel/vault, /area/bridge) -"bBF" = ( +"bEn" = ( /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; name = "bridge blast door" @@ -38519,22 +40557,14 @@ }, /turf/open/floor/plasteel/vault, /area/bridge) -"bBG" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/goonplaque{ - desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of sentient postcards in a realm of darkness. The station model number is MSv42A-160516" - }, -/area/hallway/primary/port) -"bBH" = ( +"bEo" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/bridge) +"bEp" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "council blast"; - layer = 2.9; name = "Council Blast Doors" }, /obj/structure/cable/yellow{ @@ -38542,11 +40572,10 @@ }, /turf/open/floor/plating, /area/bridge) -"bBI" = ( +"bEq" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "council blast"; - layer = 2.9; name = "Council Blast Doors" }, /obj/structure/cable/yellow{ @@ -38557,11 +40586,10 @@ }, /turf/open/floor/plating, /area/bridge) -"bBJ" = ( +"bEr" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "council blast"; - layer = 2.9; name = "Council Blast Doors" }, /obj/structure/cable/yellow{ @@ -38575,11 +40603,10 @@ }, /turf/open/floor/plating, /area/bridge) -"bBK" = ( +"bEs" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "council blast"; - layer = 2.9; name = "Council Blast Doors" }, /obj/structure/cable/yellow{ @@ -38590,11 +40617,10 @@ }, /turf/open/floor/plating, /area/bridge) -"bBL" = ( +"bEt" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "council blast"; - layer = 2.9; name = "Council Blast Doors" }, /obj/structure/cable/yellow{ @@ -38602,7 +40628,7 @@ }, /turf/open/floor/plating, /area/bridge) -"bBM" = ( +"bEu" = ( /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; name = "bridge blast door" @@ -38617,7 +40643,7 @@ }, /turf/open/floor/plasteel/vault, /area/bridge) -"bBN" = ( +"bEv" = ( /obj/structure/sign/directions/engineering{ desc = "A direction sign, pointing out which way the bridge is."; dir = 1; @@ -38627,7 +40653,7 @@ }, /turf/closed/wall/r_wall, /area/crew_quarters/heads/captain/private) -"bBO" = ( +"bEw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -38639,7 +40665,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/central) -"bBP" = ( +"bEx" = ( /obj/structure/sign/directions/engineering{ desc = "A direction sign, pointing out which way the engineering department is."; dir = 4; @@ -38660,7 +40686,7 @@ }, /turf/closed/wall, /area/maintenance/central) -"bBQ" = ( +"bEy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/light{ dir = 8 @@ -38669,7 +40695,7 @@ dir = 8 }, /area/hallway/primary/central) -"bBR" = ( +"bEz" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -38679,31 +40705,35 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bBS" = ( +"bEA" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/crew_quarters/bar) -"bBT" = ( +"bEB" = ( /obj/structure/chair/stool/bar, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bBU" = ( +"bEC" = ( /obj/machinery/holopad, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bBV" = ( +"bED" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/landmark/start/assistant, /obj/structure/chair/stool/bar, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bBX" = ( +"bEE" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bBY" = ( +"bEF" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bEG" = ( /obj/structure/disposalpipe/segment, /obj/structure/table/wood/poker, /obj/item/toy/cards/deck{ @@ -38711,29 +40741,29 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bBZ" = ( +"bEH" = ( /obj/structure/window/reinforced{ dir = 8 }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bCa" = ( +"bEI" = ( /obj/structure/chair/wood/wings, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/landmark/start/mime, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bCb" = ( +"bEJ" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bCc" = ( +"bEK" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bCd" = ( +"bEL" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -38742,7 +40772,15 @@ /obj/item/reagent_containers/food/snacks/pie/cream, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bCe" = ( +"bEM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bEN" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -38752,7 +40790,7 @@ dir = 8 }, /area/hallway/primary/starboard) -"bCf" = ( +"bEO" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -38760,14 +40798,8 @@ dir = 4 }, /area/hallway/primary/starboard) -"bCg" = ( +"bEP" = ( /obj/structure/table/reinforced, -/obj/machinery/door/poddoor{ - density = 0; - icon_state = "pdoor0"; - id = "atmos"; - name = "Atmos Blast Door" - }, /obj/machinery/door/window/northleft{ dir = 4; icon_state = "left"; @@ -38780,7 +40812,7 @@ /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/preopen{ id = "atmos"; - name = "Atmos Blast Door" + name = "Atmospherics Blast Door" }, /obj/effect/turf_decal/delivery, /obj/structure/cable/yellow{ @@ -38791,7 +40823,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bCh" = ( +"bEQ" = ( /obj/structure/chair{ dir = 8 }, @@ -38803,10 +40835,13 @@ dir = 8 }, /area/engine/atmos) -"bCi" = ( +"bER" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, /turf/open/floor/plasteel, /area/engine/atmos) -"bCj" = ( +"bES" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -38815,13 +40850,13 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bCk" = ( +"bET" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bCl" = ( +"bEU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -38832,14 +40867,14 @@ dir = 4 }, /area/engine/atmos) -"bCm" = ( +"bEV" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plating, /area/engine/atmos) -"bCn" = ( +"bEW" = ( /obj/structure/table, /obj/item/storage/belt/utility, /obj/item/device/t_scanner, @@ -38852,7 +40887,7 @@ dir = 8 }, /area/engine/atmos) -"bCo" = ( +"bEX" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -38861,14 +40896,14 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bCp" = ( +"bEY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bCq" = ( +"bEZ" = ( /obj/machinery/space_heater, /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -38879,7 +40914,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bCr" = ( +"bFa" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; name = "Waste to Filter"; @@ -38887,24 +40922,30 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bCt" = ( +"bFb" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bFc" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/purple/visible{ dir = 1 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bCu" = ( +"bFd" = ( /obj/machinery/atmospherics/pipe/manifold/purple/visible, /turf/open/floor/plasteel, /area/engine/atmos) -"bCv" = ( +"bFe" = ( /obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bCw" = ( +"bFf" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; name = "Air to Mix"; @@ -38915,7 +40956,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bCx" = ( +"bFg" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 4 @@ -38924,14 +40965,14 @@ dir = 5 }, /area/engine/atmos) -"bCy" = ( +"bFh" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 4 }, /turf/open/floor/plating, /area/engine/atmos) -"bCz" = ( +"bFi" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 4 @@ -38939,15 +40980,15 @@ /obj/machinery/atmospherics/pipe/simple/orange/visible, /turf/open/space, /area/space/nearstation) -"bCA" = ( +"bFj" = ( /obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 4 }, -/obj/structure/grille, /turf/closed/wall/r_wall, /area/engine/atmos) -"bCB" = ( +"bFk" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 8; frequency = 1441; @@ -38956,17 +40997,17 @@ }, /turf/open/floor/engine/vacuum, /area/engine/atmos) -"bCC" = ( +"bFl" = ( /turf/open/floor/engine/vacuum, /area/engine/atmos) -"bCD" = ( +"bFm" = ( /turf/closed/wall/r_wall, /area/tcommsat/server) -"bCE" = ( +"bFn" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/tcommsat/server) -"bCF" = ( +"bFo" = ( /obj/machinery/door/airlock/hatch{ name = "Telecomms Server Room" }, @@ -38976,17 +41017,12 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/tcommsat/server) -"bCG" = ( +"bFp" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK" - }, +/obj/structure/sign/warning/vacuum/external, /turf/open/floor/plating, /area/hallway/secondary/entry) -"bCH" = ( +"bFq" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -39000,7 +41036,7 @@ dir = 4 }, /area/hallway/secondary/entry) -"bCI" = ( +"bFr" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -39009,7 +41045,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bCJ" = ( +"bFs" = ( /obj/item/storage/toolbox/emergency, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 @@ -39018,30 +41054,43 @@ icon_state = "panelscorched" }, /area/maintenance/port) -"bCK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +"bFt" = ( +/obj/item/tank/internals/air, +/obj/item/tank/internals/air, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/machinery/light/small{ dir = 4 }, -/obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, -/area/maintenance/starboard) -"bCL" = ( +/area/maintenance/port) +"bFu" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, /turf/open/floor/wood, /area/security/vacantoffice) -"bCM" = ( +"bFv" = ( /obj/structure/table/wood, /turf/open/floor/wood, /area/security/vacantoffice) -"bCN" = ( +"bFw" = ( /obj/structure/chair/office/dark{ dir = 8 }, /turf/open/floor/wood, /area/security/vacantoffice) -"bCP" = ( +"bFx" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/pen/red, +/obj/machinery/newscaster{ + pixel_x = 30; + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bFy" = ( /obj/machinery/light/small, /obj/machinery/camera{ c_tag = "Auxilary Restrooms"; @@ -39050,13 +41099,13 @@ }, /turf/open/floor/plating, /area/crew_quarters/toilet/auxiliary) -"bCQ" = ( +"bFz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bCR" = ( +"bFA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -39069,18 +41118,46 @@ /obj/structure/cable/yellow, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bCS" = ( +"bFB" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bCV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +"bFC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port) +"bFD" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/port) +"bFE" = ( +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/library) +"bFF" = ( /turf/open/floor/carpet, /area/library) -"bCW" = ( +"bFG" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/library) +"bFH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/turf/open/floor/wood, +/area/library) +"bFI" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, @@ -39088,7 +41165,7 @@ dir = 8 }, /area/hallway/primary/central) -"bCX" = ( +"bFJ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -39100,7 +41177,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bCY" = ( +"bFK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -39112,7 +41189,7 @@ dir = 4 }, /area/hallway/primary/central) -"bCZ" = ( +"bFL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -39127,7 +41204,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bDa" = ( +"bFM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -39138,7 +41215,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bDb" = ( +"bFN" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -39149,19 +41226,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bDc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/secondary/command) -"bDd" = ( +"bFO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -39175,7 +41240,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bDe" = ( +"bFP" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -39186,13 +41251,13 @@ dir = 1 }, /area/hallway/secondary/command) -"bDf" = ( +"bFQ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plasteel/neutral/corner{ dir = 1 }, /area/hallway/secondary/command) -"bDg" = ( +"bFR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -39201,7 +41266,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bDh" = ( +"bFS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -39215,7 +41280,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bDi" = ( +"bFT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -39227,7 +41292,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bDj" = ( +"bFU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -39235,7 +41300,7 @@ dir = 4 }, /area/hallway/secondary/command) -"bDk" = ( +"bFV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -39243,7 +41308,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bDl" = ( +"bFW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -39254,7 +41319,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bDm" = ( +"bFX" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -39262,7 +41327,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bDn" = ( +"bFY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -39270,7 +41335,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bDo" = ( +"bFZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -39281,7 +41346,7 @@ dir = 4 }, /area/hallway/secondary/command) -"bDp" = ( +"bGa" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -39298,7 +41363,7 @@ dir = 4 }, /area/hallway/secondary/command) -"bDq" = ( +"bGb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -39309,13 +41374,13 @@ dir = 4 }, /area/hallway/secondary/command) -"bDr" = ( +"bGc" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plasteel/neutral/corner{ dir = 4 }, /area/hallway/secondary/command) -"bDs" = ( +"bGd" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -39323,16 +41388,7 @@ dir = 4 }, /area/hallway/secondary/command) -"bDt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/secondary/command) -"bDu" = ( +"bGe" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -39351,7 +41407,7 @@ dir = 4 }, /area/hallway/secondary/command) -"bDv" = ( +"bGf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -39363,7 +41419,7 @@ dir = 4 }, /area/hallway/secondary/command) -"bDw" = ( +"bGg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -39375,7 +41431,7 @@ dir = 4 }, /area/hallway/secondary/command) -"bDx" = ( +"bGh" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -39389,7 +41445,7 @@ dir = 4 }, /area/hallway/secondary/command) -"bDy" = ( +"bGi" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -39404,7 +41460,7 @@ dir = 4 }, /area/hallway/secondary/command) -"bDz" = ( +"bGj" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -39416,7 +41472,7 @@ dir = 1 }, /area/hallway/primary/central) -"bDA" = ( +"bGk" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -39428,7 +41484,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bDB" = ( +"bGl" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -39439,26 +41495,22 @@ dir = 4 }, /area/hallway/primary/central) -"bDC" = ( +"bGm" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Bar" }, /turf/open/floor/plasteel, /area/crew_quarters/bar) -"bDD" = ( +"bGn" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bDE" = ( -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/bar, -/area/crew_quarters/bar) -"bDF" = ( +"bGo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bDG" = ( +"bGp" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/centcom{ name = "Club"; @@ -39466,7 +41518,7 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bDH" = ( +"bGq" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -39475,25 +41527,54 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bDI" = ( +"bGr" = ( +/obj/effect/landmark/xmastree, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bGs" = ( /obj/structure/chair/stool{ pixel_y = 8 }, /obj/effect/landmark/start/assistant, /turf/open/floor/wood, /area/crew_quarters/bar) -"bDJ" = ( +"bGt" = ( /obj/structure/disposalpipe/segment, /obj/structure/table/wood/poker, /obj/item/clothing/mask/cigarette/cigar, /turf/open/floor/wood, /area/crew_quarters/bar) -"bDK" = ( +"bGu" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bDM" = ( +"bGv" = ( +/obj/structure/chair/wood/wings{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bGw" = ( +/obj/structure/table/wood, +/obj/item/lipstick{ + pixel_y = 5 + }, +/obj/machinery/camera{ + c_tag = "Theatre - Stage"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/device/instrument/guitar, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"bGx" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -39506,7 +41587,7 @@ dir = 8 }, /area/hallway/primary/starboard) -"bDN" = ( +"bGy" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -39516,7 +41597,16 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/starboard) -"bDO" = ( +"bGz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/engine/atmos) +"bGA" = ( /obj/structure/tank_dispenser{ pixel_x = -1 }, @@ -39524,7 +41614,11 @@ dir = 1 }, /area/engine/atmos) -"bDP" = ( +"bGB" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bGC" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ @@ -39532,7 +41626,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bDQ" = ( +"bGD" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -39540,7 +41634,7 @@ dir = 4 }, /area/engine/atmos) -"bDR" = ( +"bGE" = ( /obj/machinery/door/airlock/atmos/glass{ name = "Atmospherics Monitoring"; req_access_txt = "24" @@ -39550,12 +41644,15 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bDS" = ( +"bGF" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, /turf/open/floor/plasteel/caution{ dir = 8 }, /area/engine/atmos) -"bDT" = ( +"bGG" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -39565,22 +41662,22 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/engine/atmos) -"bDU" = ( +"bGH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/engine/atmos) -"bDV" = ( +"bGI" = ( /obj/structure/closet/crate, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/atmos) -"bDW" = ( +"bGJ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bDX" = ( +"bGK" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; name = "Mix to Filter"; @@ -39588,33 +41685,33 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bDY" = ( +"bGL" = ( /obj/machinery/atmospherics/pipe/manifold/purple/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bDZ" = ( +"bGM" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 6 }, /obj/effect/landmark/start/atmospheric_technician, /turf/open/floor/plasteel, /area/engine/atmos) -"bEa" = ( +"bGN" = ( /obj/machinery/atmospherics/pipe/manifold/green/visible{ dir = 1 }, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmos) -"bEb" = ( +"bGO" = ( /obj/machinery/atmospherics/pipe/manifold/green/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bEc" = ( +"bGP" = ( /obj/machinery/computer/atmos_control/tank{ dir = 8; frequency = 1441; @@ -39628,20 +41725,24 @@ dir = 4 }, /area/engine/atmos) -"bEd" = ( +"bGQ" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/atmos) +"bGR" = ( /obj/machinery/air_sensor{ frequency = 1441; id_tag = "mix_sensor" }, /turf/open/floor/engine/vacuum, /area/engine/atmos) -"bEe" = ( +"bGS" = ( /obj/machinery/light/small{ dir = 4 }, /turf/open/floor/engine/vacuum, /area/engine/atmos) -"bEf" = ( +"bGT" = ( /obj/machinery/telecomms/processor/preset_one, /obj/machinery/camera{ c_tag = "Telecomms - Server Room - Fore-Port"; @@ -39650,29 +41751,29 @@ }, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"bEg" = ( +"bGU" = ( /obj/structure/showcase/cyborg/old{ dir = 2; pixel_y = 20 }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bEh" = ( +"bGV" = ( /obj/machinery/telecomms/receiver/preset_left, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"bEi" = ( +"bGW" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/tcommsat/server) -"bEj" = ( +"bGX" = ( /obj/machinery/telecomms/receiver/preset_right, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"bEk" = ( +"bGY" = ( /obj/machinery/telecomms/processor/preset_three, /obj/machinery/camera{ c_tag = "Telecomms - Server Room - Fore-Starboard"; @@ -39681,19 +41782,31 @@ }, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"bEl" = ( +"bGZ" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 13; + id = "ferry_home"; + name = "port bay 2"; + turf_type = /turf/open/space; + width = 5 + }, +/turf/open/space/basic, +/area/space) +"bHa" = ( /obj/machinery/door/airlock/external{ name = "Transport Airlock" }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"bEm" = ( +"bHb" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"bEn" = ( +"bHc" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -39704,7 +41817,7 @@ dir = 4 }, /area/hallway/secondary/entry) -"bEo" = ( +"bHd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -39712,32 +41825,36 @@ /obj/item/storage/box/lights/mixed, /turf/open/floor/plating, /area/maintenance/port) -"bEp" = ( +"bHe" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 }, /obj/machinery/portable_atmospherics/canister/air, /turf/open/floor/plating, /area/maintenance/port) -"bEq" = ( +"bHf" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/port) +"bHg" = ( /obj/structure/light_construct{ dir = 8 }, /turf/open/floor/wood, /area/security/vacantoffice) -"bEr" = ( -/obj/effect/landmark/lightsout, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bEs" = ( +"bHh" = ( /obj/item/paper_bin{ pixel_x = -2; pixel_y = 6 }, /obj/structure/table/wood, -/turf/open/floor/carpet, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/wood, /area/security/vacantoffice) -"bEt" = ( +"bHi" = ( /obj/machinery/door/airlock{ id_tag = "AuxShower"; name = "Shower" @@ -39745,14 +41862,14 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bEu" = ( +"bHj" = ( /obj/machinery/door/airlock{ id_tag = "AuxToilet2"; name = "Unit 2" }, /turf/open/floor/plasteel, /area/crew_quarters/toilet/auxiliary) -"bEv" = ( +"bHk" = ( /obj/structure/toilet{ pixel_y = 8 }, @@ -39772,7 +41889,25 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/toilet/auxiliary) -"bEw" = ( +"bHl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bHm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bHn" = ( /obj/machinery/computer/security/telescreen/entertainment{ pixel_x = -32 }, @@ -39783,32 +41918,39 @@ /obj/structure/displaycase/trophy, /turf/open/floor/wood, /area/library) -"bEx" = ( +"bHo" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, /turf/open/floor/carpet, /area/library) -"bEy" = ( +"bHp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/library) -"bEz" = ( +"bHq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/library) +"bHr" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/carpet, /area/library) -"bEA" = ( +"bHs" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/carpet, /area/library) -"bEB" = ( +"bHt" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -39822,7 +41964,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bEC" = ( +"bHu" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -39833,7 +41975,7 @@ dir = 2 }, /area/hallway/primary/central) -"bED" = ( +"bHv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -39848,7 +41990,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bEE" = ( +"bHw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -39859,7 +42001,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bEF" = ( +"bHx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -39871,7 +42013,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bEG" = ( +"bHy" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -39885,7 +42027,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bEH" = ( +"bHz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -39897,7 +42039,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bEI" = ( +"bHA" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -39919,7 +42061,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bEJ" = ( +"bHB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -39933,7 +42075,19 @@ dir = 8 }, /area/hallway/secondary/command) -"bEK" = ( +"bHC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/secondary/command) +"bHD" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -39949,7 +42103,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bEL" = ( +"bHE" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -39960,7 +42114,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bEM" = ( +"bHF" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -39974,7 +42128,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bEN" = ( +"bHG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -39988,7 +42142,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bEO" = ( +"bHH" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -40000,7 +42154,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bEP" = ( +"bHI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -40009,7 +42163,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bEQ" = ( +"bHJ" = ( /obj/machinery/holopad, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -40025,7 +42179,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bER" = ( +"bHK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -40035,7 +42189,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bES" = ( +"bHL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -40049,7 +42203,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bET" = ( +"bHM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -40061,7 +42215,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bEU" = ( +"bHN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -40078,7 +42232,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bEV" = ( +"bHO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -40095,7 +42249,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bEW" = ( +"bHP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -40106,7 +42260,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bEX" = ( +"bHQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -40121,7 +42275,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bEY" = ( +"bHR" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -40132,7 +42286,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bEZ" = ( +"bHS" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -40146,7 +42300,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bFa" = ( +"bHT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -40162,7 +42316,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bFb" = ( +"bHU" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -40173,7 +42327,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bFc" = ( +"bHV" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -40185,7 +42339,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bFd" = ( +"bHW" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -40196,7 +42350,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bFe" = ( +"bHX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -40213,7 +42367,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bFf" = ( +"bHY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -40228,7 +42382,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bFg" = ( +"bHZ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -40239,7 +42393,7 @@ dir = 8 }, /area/hallway/primary/central) -"bFh" = ( +"bIa" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -40255,7 +42409,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bFi" = ( +"bIb" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -40266,7 +42420,7 @@ dir = 2 }, /area/hallway/primary/central) -"bFj" = ( +"bIc" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -40279,7 +42433,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/bar) -"bFk" = ( +"bId" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -40288,7 +42442,7 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bFl" = ( +"bIe" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -40298,7 +42452,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bFm" = ( +"bIf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -40307,7 +42461,17 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bFn" = ( +"bIg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/bar, +/area/crew_quarters/bar) +"bIh" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -40316,7 +42480,7 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bFo" = ( +"bIi" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -40325,7 +42489,7 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bFp" = ( +"bIj" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -40339,7 +42503,7 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bFq" = ( +"bIk" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -40351,7 +42515,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bFr" = ( +"bIl" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -40363,7 +42527,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bFs" = ( +"bIm" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -40377,11 +42541,11 @@ /obj/item/storage/pill_bottle/dice, /turf/open/floor/wood, /area/crew_quarters/bar) -"bFt" = ( +"bIn" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/wood, /area/crew_quarters/bar) -"bFu" = ( +"bIo" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, @@ -40391,7 +42555,7 @@ /obj/structure/table/wood/poker, /turf/open/floor/wood, /area/crew_quarters/bar) -"bFv" = ( +"bIp" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -40400,7 +42564,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bFw" = ( +"bIq" = ( /obj/structure/chair/wood/wings{ dir = 1 }, @@ -40411,7 +42575,7 @@ /obj/effect/landmark/start/clown, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bFx" = ( +"bIr" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -40420,7 +42584,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bFy" = ( +"bIs" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -40435,7 +42599,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bFz" = ( +"bIt" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -40447,7 +42611,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bFA" = ( +"bIu" = ( /obj/machinery/door/airlock{ name = "Theatre Stage"; req_access_txt = "0"; @@ -40464,7 +42628,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bFB" = ( +"bIv" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -40482,7 +42646,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bFC" = ( +"bIw" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -40496,7 +42660,7 @@ dir = 8 }, /area/hallway/primary/starboard) -"bFD" = ( +"bIx" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -40508,7 +42672,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/starboard) -"bFE" = ( +"bIy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment{ dir = 4 @@ -40517,7 +42681,7 @@ dir = 4 }, /area/hallway/primary/starboard) -"bFF" = ( +"bIz" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -40532,12 +42696,12 @@ }, /obj/machinery/door/poddoor/preopen{ id = "atmos"; - name = "Atmos Blast Door" + name = "Atmospherics Blast Door" }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/atmos) -"bFG" = ( +"bIA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -40546,20 +42710,20 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bFH" = ( +"bIB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bFI" = ( +"bIC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/atmos) -"bFJ" = ( +"bID" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -40568,7 +42732,7 @@ dir = 2 }, /area/engine/atmos) -"bFK" = ( +"bIE" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 8 @@ -40588,13 +42752,13 @@ dir = 6 }, /area/engine/atmos) -"bFL" = ( +"bIF" = ( /obj/machinery/holopad, /turf/open/floor/plasteel/caution{ dir = 8 }, /area/engine/atmos) -"bFM" = ( +"bIG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 6 }, @@ -40603,21 +42767,21 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bFN" = ( +"bIH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/engine/atmos) -"bFO" = ( +"bII" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/atmos) -"bFP" = ( +"bIJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, @@ -40627,25 +42791,25 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bFQ" = ( +"bIK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 9 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bFR" = ( +"bIL" = ( /obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 6 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bFS" = ( +"bIM" = ( /obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 9 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bFT" = ( +"bIN" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1; name = "Pure to Mix"; @@ -40653,13 +42817,13 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bFU" = ( +"bIO" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 5 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bFV" = ( +"bIP" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, /obj/machinery/atmospherics/components/binary/pump{ dir = 4; @@ -40668,7 +42832,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bFW" = ( +"bIQ" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 }, @@ -40677,21 +42841,22 @@ dir = 6 }, /area/engine/atmos) -"bFX" = ( +"bIR" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 }, /turf/open/floor/plating, /area/engine/atmos) -"bFY" = ( +"bIS" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/orange/visible, /turf/open/space, /area/space/nearstation) -"bFZ" = ( +"bIT" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 @@ -40699,7 +42864,7 @@ /obj/structure/grille, /turf/closed/wall/r_wall, /area/engine/atmos) -"bGa" = ( +"bIU" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 8; frequency = 1441; @@ -40708,7 +42873,7 @@ }, /turf/open/floor/engine/vacuum, /area/engine/atmos) -"bGb" = ( +"bIV" = ( /obj/machinery/camera{ c_tag = "Atmospherics Tank - Mix"; dir = 8; @@ -40716,34 +42881,54 @@ }, /turf/open/floor/engine/vacuum, /area/engine/atmos) -"bGc" = ( +"bIW" = ( /obj/machinery/telecomms/bus/preset_one, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"bGd" = ( +"bIX" = ( /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bGe" = ( +"bIY" = ( /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"bGf" = ( +"bIZ" = ( /obj/machinery/telecomms/bus/preset_three, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"bGg" = ( -/obj/structure/chair/wood/wings{ - dir = 8 +"bJa" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/obj/machinery/light_switch{ - pixel_y = 28 +/obj/machinery/light{ + dir = 4 }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bGh" = ( -/obj/machinery/announcement_system, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bGj" = ( +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/secondary/entry) +"bJb" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;27;37" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bJc" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bJd" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -40752,7 +42937,7 @@ }, /turf/open/floor/wood, /area/security/vacantoffice) -"bGk" = ( +"bJe" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -40761,7 +42946,7 @@ }, /turf/open/floor/wood, /area/security/vacantoffice) -"bGl" = ( +"bJf" = ( /obj/machinery/shower{ dir = 4 }, @@ -40776,22 +42961,21 @@ /obj/item/soap/nanotrasen, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bGm" = ( +"bJg" = ( /obj/machinery/shower{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bGp" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" +"bJh" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, -/area/maintenance/starboard) -"bGq" = ( +/area/crew_quarters/toilet/auxiliary) +"bJi" = ( /obj/machinery/door/airlock/maintenance{ name = "Library Maintenance"; req_access_txt = "0"; @@ -40799,48 +42983,46 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bGr" = ( +"bJj" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /turf/open/floor/carpet, /area/library) -"bGs" = ( +"bJk" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/wood, /area/library) -"bGt" = ( +"bJl" = ( /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/library) -"bGu" = ( +"bJm" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, /turf/open/floor/wood, /area/library) -"bGv" = ( -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)" - }, -/turf/closed/wall, +"bJn" = ( +/obj/machinery/holopad, +/turf/open/floor/wood, /area/library) -"bGw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Port"; - dir = 8; - network = list("SS13") +"bJo" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" }, +/turf/open/floor/wood, +/area/library) +"bJp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/neutral/corner{ - dir = 2 + dir = 4 }, /area/hallway/primary/central) -"bGx" = ( +"bJq" = ( /obj/structure/sign/directions/engineering{ desc = "A direction sign, pointing out which way the research department is."; icon_state = "direction_sci"; @@ -40860,10 +43042,10 @@ }, /turf/closed/wall/r_wall, /area/ai_monitored/storage/eva) -"bGy" = ( +"bJr" = ( /turf/closed/wall/r_wall, /area/ai_monitored/storage/eva) -"bGz" = ( +"bJs" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/command{ @@ -40873,11 +43055,11 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bGA" = ( -/obj/structure/sign/securearea, +"bJt" = ( +/obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/ai_monitored/storage/eva) -"bGB" = ( +"bJu" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -40890,10 +43072,10 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bGC" = ( +"bJv" = ( /turf/closed/wall/r_wall, /area/teleporter) -"bGD" = ( +"bJw" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -40908,17 +43090,17 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/teleporter) -"bGE" = ( +"bJx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/teleporter) -"bGF" = ( +"bJy" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /turf/open/floor/plating, /area/hallway/secondary/command) -"bGG" = ( +"bJz" = ( /obj/structure/chair{ dir = 1 }, @@ -40929,17 +43111,17 @@ dir = 8 }, /area/hallway/secondary/command) -"bGH" = ( +"bJA" = ( /obj/structure/chair{ dir = 1 }, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bGI" = ( +"bJB" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bGJ" = ( +"bJC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -40948,13 +43130,13 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bGK" = ( +"bJD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bGL" = ( +"bJE" = ( /obj/structure/chair{ dir = 1 }, @@ -40973,14 +43155,14 @@ dir = 2 }, /area/hallway/secondary/command) -"bGM" = ( +"bJF" = ( /turf/closed/wall/r_wall, /area/gateway) -"bGN" = ( -/obj/structure/sign/securearea, +"bJG" = ( +/obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/gateway) -"bGO" = ( +"bJH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -40993,26 +43175,26 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/gateway) -"bGP" = ( +"bJI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/r_wall, /area/gateway) -"bGQ" = ( +"bJJ" = ( /obj/machinery/vending/cola/random, /turf/open/floor/plasteel/vault, /area/hallway/secondary/command) -"bGR" = ( +"bJK" = ( /obj/machinery/vending/cigarette, /obj/machinery/newscaster{ pixel_y = -29 }, /turf/open/floor/plasteel/vault, /area/hallway/secondary/command) -"bGS" = ( +"bJL" = ( /obj/machinery/vending/coffee, /turf/open/floor/plasteel/vault, /area/hallway/secondary/command) -"bGT" = ( +"bJM" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "0"; req_one_access_txt = "12;17" @@ -41022,7 +43204,7 @@ }, /turf/open/floor/plating, /area/maintenance/central) -"bGU" = ( +"bJN" = ( /obj/structure/sign/directions/engineering{ desc = "A direction sign, pointing out which way the escape arm is."; icon_state = "direction_evac"; @@ -41042,7 +43224,7 @@ }, /turf/closed/wall, /area/maintenance/central) -"bGV" = ( +"bJO" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -41050,7 +43232,7 @@ dir = 1 }, /area/hallway/primary/central) -"bGW" = ( +"bJP" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -41059,7 +43241,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bGX" = ( +"bJQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -41068,38 +43250,38 @@ dir = 2 }, /area/hallway/primary/central) -"bGY" = ( +"bJR" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plating, /area/crew_quarters/bar) -"bGZ" = ( +"bJS" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bHa" = ( +"bJT" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bHb" = ( +"bJU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bHc" = ( +"bJV" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bHd" = ( +"bJW" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -41111,7 +43293,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bHe" = ( +"bJX" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -41120,7 +43302,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bHf" = ( +"bJY" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -41129,7 +43311,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bHg" = ( +"bJZ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -41141,7 +43323,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bHh" = ( +"bKa" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -41151,7 +43333,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bHi" = ( +"bKb" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -41160,7 +43342,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bHj" = ( +"bKc" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -41169,7 +43351,18 @@ }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bHl" = ( +"bKd" = ( +/obj/item/soap/nanotrasen, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"bKe" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -41177,7 +43370,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/starboard) -"bHm" = ( +"bKf" = ( /obj/item/crowbar, /obj/item/wrench, /obj/structure/table, @@ -41186,7 +43379,7 @@ dir = 8 }, /area/hallway/primary/starboard) -"bHn" = ( +"bKg" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -41197,7 +43390,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/hallway/primary/starboard) -"bHo" = ( +"bKh" = ( /obj/machinery/light/small{ dir = 4 }, @@ -41212,7 +43405,7 @@ dir = 4 }, /area/hallway/primary/starboard) -"bHp" = ( +"bKi" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/light/small{ dir = 8 @@ -41223,7 +43416,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/atmos) -"bHq" = ( +"bKj" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -41231,7 +43424,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/atmos) -"bHr" = ( +"bKk" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -41240,7 +43433,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/atmos) -"bHs" = ( +"bKl" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /obj/machinery/light/small{ dir = 4 @@ -41251,7 +43444,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/atmos) -"bHt" = ( +"bKm" = ( /obj/machinery/light{ dir = 8 }, @@ -41259,25 +43452,25 @@ dir = 8 }, /area/engine/atmos) -"bHu" = ( +"bKn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/engine/atmos) -"bHv" = ( +"bKo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/atmos) -"bHw" = ( +"bKp" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 6 }, /turf/open/floor/plating, /area/engine/atmos) -"bHx" = ( +"bKq" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/purple/visible, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ @@ -41285,14 +43478,14 @@ }, /turf/open/floor/plating, /area/engine/atmos) -"bHy" = ( +"bKr" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /turf/open/floor/plating, /area/engine/atmos) -"bHz" = ( +"bKs" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/yellow/visible, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ @@ -41300,7 +43493,7 @@ }, /turf/open/floor/plating, /area/engine/atmos) -"bHA" = ( +"bKt" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/green/visible, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ @@ -41308,26 +43501,42 @@ }, /turf/open/floor/plating, /area/engine/atmos) -"bHB" = ( +"bKu" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 4 }, /turf/open/floor/plating, /area/engine/atmos) -"bHC" = ( +"bKv" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bKw" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bKx" = ( /obj/machinery/light/small{ dir = 8 }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bHD" = ( +"bKy" = ( /obj/machinery/light/small{ dir = 1 }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bHE" = ( +"bKz" = ( /obj/machinery/holopad, /obj/structure/cable/yellow{ icon_state = "1-4" @@ -41337,7 +43546,7 @@ }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bHF" = ( +"bKA" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -41349,18 +43558,18 @@ }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bHG" = ( +"bKB" = ( /obj/machinery/light/small{ dir = 4 }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bHH" = ( +"bKC" = ( /obj/structure/closet/firecloset, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bHI" = ( +"bKD" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -41372,13 +43581,13 @@ dir = 4 }, /area/hallway/secondary/entry) -"bHJ" = ( +"bKE" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating{ icon_state = "platingdmg1" }, /area/maintenance/port) -"bHK" = ( +"bKF" = ( /obj/item/book/manual/wiki/security_space_law{ pixel_x = -3; pixel_y = 5 @@ -41386,13 +43595,13 @@ /obj/structure/table/wood, /turf/open/floor/wood, /area/security/vacantoffice) -"bHL" = ( +"bKG" = ( /obj/structure/chair/comfy/black{ dir = 4 }, /turf/open/floor/carpet, /area/security/vacantoffice) -"bHM" = ( +"bKH" = ( /obj/item/folder/white{ pixel_x = 4; pixel_y = -3 @@ -41400,17 +43609,30 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/security/vacantoffice) -"bHN" = ( +"bKI" = ( +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/security/vacantoffice) +"bKJ" = ( +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bKK" = ( /obj/machinery/shower{ dir = 4 }, /obj/machinery/light/small, -/obj/effect/landmark/revenantspawn, /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/blood/gibs/old, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bHO" = ( +"bKL" = ( /obj/machinery/shower{ dir = 8 }, @@ -41419,14 +43641,21 @@ }, /turf/open/floor/plating, /area/crew_quarters/toilet/auxiliary) -"bHP" = ( +"bKM" = ( +/obj/machinery/light/small, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/crew_quarters/toilet/auxiliary) +"bKN" = ( /obj/machinery/door/airlock{ id_tag = "AuxToilet3"; name = "Unit 3" }, /turf/open/floor/plating, /area/crew_quarters/toilet/auxiliary) -"bHQ" = ( +"bKO" = ( /obj/structure/toilet{ pixel_y = 8 }, @@ -41447,27 +43676,38 @@ /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/crew_quarters/toilet/auxiliary) -"bHR" = ( +"bKP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bKQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bKR" = ( /obj/structure/bookcase/random/nonfiction, /turf/open/floor/wood, /area/library) -"bHS" = ( +"bKS" = ( /obj/structure/bookcase/random/fiction, /turf/open/floor/wood, /area/library) -"bHT" = ( +"bKT" = ( /obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, +/obj/item/device/paicard, /turf/open/floor/wood, /area/library) -"bHU" = ( -/obj/machinery/holopad, -/turf/open/floor/wood, -/area/library) -"bHV" = ( +"bKU" = ( /obj/structure/table/wood, /obj/item/paper_bin{ pixel_x = -3; @@ -41475,7 +43715,37 @@ }, /turf/open/floor/wood, /area/library) -"bHW" = ( +"bKV" = ( +/obj/structure/table/wood, +/obj/item/device/camera_film{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/device/camera_film{ + pixel_y = 9 + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/turf/open/floor/wood, +/area/library) +"bKW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -30 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bKX" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -41485,13 +43755,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bHX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"bHY" = ( +"bKY" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/structure/extinguisher_cabinet{ pixel_x = -27 @@ -41500,20 +43764,20 @@ dir = 8 }, /area/ai_monitored/storage/eva) -"bHZ" = ( +"bKZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line{ dir = 9 }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bIa" = ( +"bLa" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bIb" = ( +"bLb" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -41523,7 +43787,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bIc" = ( +"bLc" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/machinery/light_switch{ pixel_x = -8; @@ -41533,10 +43797,10 @@ dir = 8 }, /area/ai_monitored/storage/eva) -"bId" = ( +"bLd" = ( /turf/closed/wall, /area/ai_monitored/storage/eva) -"bIe" = ( +"bLe" = ( /obj/structure/table, /obj/item/hand_tele, /obj/item/device/radio/beacon, @@ -41548,7 +43812,7 @@ dir = 4 }, /area/teleporter) -"bIf" = ( +"bLf" = ( /obj/structure/table, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high{ @@ -41562,7 +43826,7 @@ dir = 4 }, /area/teleporter) -"bIg" = ( +"bLg" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -41575,7 +43839,7 @@ dir = 8 }, /area/teleporter) -"bIh" = ( +"bLh" = ( /obj/structure/closet/crate{ icon_state = "crate"; opened = 0 @@ -41599,7 +43863,7 @@ dir = 1 }, /area/teleporter) -"bIi" = ( +"bLi" = ( /obj/structure/chair{ dir = 1 }, @@ -41613,7 +43877,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bIj" = ( +"bLj" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -41622,7 +43886,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bIk" = ( +"bLk" = ( /obj/structure/chair{ dir = 1 }, @@ -41636,14 +43900,14 @@ dir = 2 }, /area/hallway/secondary/command) -"bIl" = ( +"bLl" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/open/floor/plating, /area/hallway/secondary/command) -"bIm" = ( +"bLm" = ( /obj/structure/closet/secure_closet/exile, /obj/structure/extinguisher_cabinet{ pixel_x = -27 @@ -41655,7 +43919,7 @@ dir = 1 }, /area/gateway) -"bIn" = ( +"bLn" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -41668,7 +43932,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bIo" = ( +"bLo" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -41678,10 +43942,9 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bIp" = ( +"bLp" = ( /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/item/stack/sheet/rglass{ amount = 50 @@ -41706,7 +43969,7 @@ dir = 1 }, /area/gateway) -"bIq" = ( +"bLq" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -41715,7 +43978,7 @@ }, /turf/open/floor/plating, /area/maintenance/central) -"bIr" = ( +"bLr" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -41724,13 +43987,13 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bIs" = ( +"bLs" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/neutral/corner{ dir = 2 }, /area/hallway/primary/central) -"bIt" = ( +"bLt" = ( /obj/structure/table, /obj/item/clothing/head/hardhat/cakehat, /obj/machinery/newscaster{ @@ -41742,7 +44005,7 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bIu" = ( +"bLu" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -41751,13 +44014,12 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bIv" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bIw" = ( +"bLv" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/bar, +/area/crew_quarters/bar) +"bLw" = ( /obj/machinery/light, /obj/machinery/camera{ c_tag = "Kitchen Hatch"; @@ -41766,13 +44028,7 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bIx" = ( -/obj/structure/rack, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/suit/hooded/wintercoat, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"bIy" = ( +"bLx" = ( /obj/machinery/firealarm{ dir = 1; pixel_y = -24 @@ -41780,7 +44036,20 @@ /obj/machinery/light, /turf/open/floor/wood, /area/crew_quarters/bar) -"bIA" = ( +"bLy" = ( +/obj/machinery/door/window{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Theatre Stage"; + req_access_txt = "0" + }, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bLz" = ( /obj/machinery/light_switch{ pixel_y = -28 }, @@ -41790,13 +44059,13 @@ /obj/machinery/light, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bIB" = ( +"bLA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bIC" = ( +"bLB" = ( /obj/structure/table/wood, /obj/machinery/light/small, /obj/item/clothing/glasses/regular/hipster{ @@ -41804,7 +44073,21 @@ }, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bIE" = ( +"bLC" = ( +/obj/item/device/instrument/violin, +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"bLD" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -41814,13 +44097,13 @@ icon_state = "platingdmg2" }, /area/maintenance/starboard) -"bIF" = ( +"bLE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/yellow/side{ dir = 10 }, /area/hallway/primary/starboard) -"bIG" = ( +"bLF" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -41831,7 +44114,7 @@ dir = 2 }, /area/hallway/primary/starboard) -"bIH" = ( +"bLG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -41842,7 +44125,7 @@ dir = 6 }, /area/hallway/primary/starboard) -"bII" = ( +"bLH" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -41850,7 +44133,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/atmos) -"bIJ" = ( +"bLI" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -41858,7 +44141,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/atmos) -"bIK" = ( +"bLJ" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 @@ -41866,7 +44149,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/atmos) -"bIL" = ( +"bLK" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -41874,13 +44157,13 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/atmos) -"bIM" = ( +"bLL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/closed/wall/r_wall, /area/engine/atmos) -"bIN" = ( +"bLM" = ( /obj/structure/table, /obj/item/stack/sheet/glass/fifty, /obj/item/stack/sheet/glass/fifty, @@ -41896,7 +44179,7 @@ dir = 1 }, /area/engine/atmos) -"bIO" = ( +"bLN" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; name = "Air to External Air Ports"; @@ -41906,7 +44189,7 @@ dir = 8 }, /area/engine/atmos) -"bIP" = ( +"bLO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 @@ -41916,49 +44199,49 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bIQ" = ( +"bLP" = ( /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 1 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bIR" = ( +"bLQ" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/atmos) -"bIS" = ( +"bLR" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bIT" = ( +"bLS" = ( /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 4 }, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmos) -"bIU" = ( +"bLT" = ( /obj/machinery/atmospherics/pipe/simple/purple/visible, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmos) -"bIV" = ( +"bLU" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 6 }, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmos) -"bIW" = ( +"bLV" = ( /obj/machinery/atmospherics/pipe/manifold/yellow/visible, /turf/open/floor/plasteel, /area/engine/atmos) -"bIX" = ( +"bLW" = ( /obj/machinery/atmospherics/pipe/manifold/yellow/visible{ dir = 1 }, @@ -41967,7 +44250,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bIY" = ( +"bLX" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -41981,28 +44264,37 @@ dir = 5 }, /area/engine/atmos) -"bIZ" = ( +"bLY" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"bJa" = ( +"bLZ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 }, /turf/open/floor/plating, /area/engine/atmos) -"bJb" = ( +"bMa" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/orange/visible, /turf/open/space, /area/space/nearstation) -"bJc" = ( +"bMb" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bMc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 8; frequency = 1441; @@ -42011,79 +44303,65 @@ }, /turf/open/floor/engine/n2o, /area/engine/atmos) -"bJd" = ( +"bMd" = ( /turf/open/floor/engine/n2o, /area/engine/atmos) -"bJe" = ( +"bMe" = ( /obj/structure/lattice, /obj/structure/grille, /obj/structure/lattice, /obj/structure/lattice, /turf/closed/wall/r_wall, /area/space/nearstation) -"bJf" = ( +"bMf" = ( /obj/structure/lattice, /obj/structure/grille, /obj/structure/lattice, /turf/closed/wall/r_wall, /area/space/nearstation) -"bJg" = ( -/obj/machinery/message_server, +"bMg" = ( +/obj/machinery/telecomms/message_server, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"bJh" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" +"bMh" = ( +/obj/machinery/telecomms/bus/preset_two, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bMi" = ( +/obj/machinery/telecomms/processor/preset_two, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bMj" = ( +/obj/structure/table/glass, +/obj/item/folder{ + pixel_y = 2 }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bJi" = ( -/obj/machinery/light/small, -/obj/item/folder, -/obj/item/folder, -/obj/machinery/camera{ - c_tag = "Telecomms - Control Room"; - dir = 1; - network = list("SS13","tcomm") +/obj/item/folder{ + pixel_y = 2 }, -/obj/structure/table/wood, /obj/item/pen, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bJj" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;27;37" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bJk" = ( +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"bMk" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bJl" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bJm" = ( -/obj/machinery/telecomms/bus/preset_two, +"bMl" = ( +/obj/machinery/telecomms/processor/preset_four, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"bJn" = ( +"bMm" = ( +/obj/machinery/telecomms/bus/preset_four, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bMn" = ( /obj/machinery/blackbox_recorder, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"bJo" = ( +"bMo" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -42094,7 +44372,7 @@ dir = 4 }, /area/hallway/secondary/entry) -"bJp" = ( +"bMp" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "0"; req_one_access_txt = "12;27;37" @@ -42104,7 +44382,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bJq" = ( +"bMq" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -42116,20 +44394,20 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bJr" = ( +"bMr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/effect/landmark/event_spawn, /turf/open/floor/plating, /area/maintenance/port) -"bJs" = ( +"bMs" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/open/floor/plating, /area/maintenance/port) -"bJt" = ( +"bMt" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -42141,7 +44419,7 @@ }, /turf/open/floor/wood, /area/security/vacantoffice) -"bJu" = ( +"bMu" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -42150,25 +44428,25 @@ }, /turf/open/floor/wood, /area/security/vacantoffice) -"bJv" = ( +"bMv" = ( /obj/item/folder/blue, /obj/structure/table/wood, /turf/open/floor/carpet, /area/security/vacantoffice) -"bJw" = ( +"bMw" = ( /obj/structure/chair/office/dark{ dir = 8 }, /turf/open/floor/carpet, /area/security/vacantoffice) -"bJx" = ( +"bMx" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 }, /turf/open/floor/wood, /area/security/vacantoffice) -"bJy" = ( +"bMy" = ( /obj/machinery/light/small{ dir = 8 }, @@ -42179,12 +44457,12 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/wood, /area/library) -"bJz" = ( +"bMz" = ( /turf/open/floor/wood{ icon_state = "wood-broken5" }, /area/library) -"bJA" = ( +"bMA" = ( /obj/machinery/door/window/northright{ base_state = "left"; dir = 8; @@ -42195,14 +44473,29 @@ }, /turf/open/floor/wood, /area/library) -"bJB" = ( +"bMB" = ( /obj/effect/landmark/start/librarian, /obj/structure/chair/office/dark{ dir = 1 }, /turf/open/floor/wood, /area/library) -"bJC" = ( +"bMC" = ( +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole/bookmanagement, +/obj/structure/noticeboard{ + desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; + dir = 8; + name = "requests board"; + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/library) +"bMD" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"bME" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/extinguisher_cabinet{ pixel_x = 27 @@ -42211,13 +44504,13 @@ dir = 4 }, /area/hallway/primary/central) -"bJD" = ( +"bMF" = ( /obj/machinery/suit_storage_unit/standard_unit, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/ai_monitored/storage/eva) -"bJE" = ( +"bMG" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -42226,7 +44519,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bJF" = ( +"bMH" = ( /obj/structure/table, /obj/item/storage/belt/utility, /obj/item/storage/belt/utility, @@ -42237,7 +44530,7 @@ /obj/item/device/multitool, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bJG" = ( +"bMI" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -42247,7 +44540,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bJH" = ( +"bMJ" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/machinery/firealarm{ dir = 4; @@ -42257,7 +44550,7 @@ dir = 8 }, /area/ai_monitored/storage/eva) -"bJI" = ( +"bMK" = ( /obj/structure/window/reinforced, /obj/structure/table, /obj/item/stack/packageWrap, @@ -42269,7 +44562,7 @@ dir = 4 }, /area/teleporter) -"bJJ" = ( +"bML" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -42278,7 +44571,7 @@ }, /turf/open/floor/plasteel, /area/teleporter) -"bJK" = ( +"bMM" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -42292,7 +44585,7 @@ }, /turf/open/floor/plasteel, /area/teleporter) -"bJL" = ( +"bMN" = ( /obj/structure/closet/crate{ icon_state = "crate"; opened = 0 @@ -42314,14 +44607,14 @@ dir = 1 }, /area/teleporter) -"bJM" = ( +"bMO" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/open/floor/plating, /area/teleporter) -"bJN" = ( +"bMP" = ( /obj/structure/chair{ dir = 1 }, @@ -42332,7 +44625,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bJO" = ( +"bMQ" = ( /obj/structure/chair{ dir = 1 }, @@ -42340,7 +44633,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bJP" = ( +"bMR" = ( /obj/structure/chair{ dir = 1 }, @@ -42348,7 +44641,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bJQ" = ( +"bMS" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -42357,7 +44650,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bJR" = ( +"bMT" = ( /obj/structure/chair{ dir = 1 }, @@ -42368,14 +44661,14 @@ dir = 2 }, /area/hallway/secondary/command) -"bJS" = ( +"bMU" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" }, /turf/open/floor/plating, /area/gateway) -"bJT" = ( +"bMV" = ( /obj/structure/closet/l3closet/scientist, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -42387,7 +44680,7 @@ dir = 1 }, /area/gateway) -"bJU" = ( +"bMW" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -42405,7 +44698,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bJV" = ( +"bMX" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -42418,7 +44711,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bJW" = ( +"bMY" = ( /obj/structure/table, /obj/item/folder/yellow, /obj/structure/cable/yellow{ @@ -42435,7 +44728,7 @@ dir = 1 }, /area/gateway) -"bJX" = ( +"bMZ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -42445,7 +44738,7 @@ }, /turf/open/floor/plating, /area/gateway) -"bJY" = ( +"bNa" = ( /obj/machinery/gateway{ dir = 9 }, @@ -42454,7 +44747,7 @@ dir = 1 }, /area/gateway) -"bJZ" = ( +"bNb" = ( /obj/machinery/gateway{ dir = 1 }, @@ -42466,7 +44759,7 @@ dir = 8 }, /area/gateway) -"bKa" = ( +"bNc" = ( /obj/machinery/gateway{ dir = 5 }, @@ -42475,7 +44768,7 @@ dir = 4 }, /area/gateway) -"bKb" = ( +"bNd" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -42483,24 +44776,28 @@ icon_state = "panelscorched" }, /area/maintenance/central) -"bKc" = ( +"bNe" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/firedoor, /turf/open/floor/plasteel/neutral/corner{ dir = 1 }, /area/hallway/primary/central) -"bKd" = ( +"bNf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /turf/open/floor/plasteel/neutral/corner{ dir = 2 }, /area/hallway/primary/central) -"bKe" = ( +"bNg" = ( +/obj/structure/sign/poster/official/random, /turf/closed/wall, /area/crew_quarters/kitchen) -"bKf" = ( +"bNh" = ( +/turf/closed/wall, +/area/crew_quarters/kitchen) +"bNi" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "kitchen"; name = "Serving Hatch" @@ -42511,7 +44808,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bKg" = ( +"bNj" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ @@ -42524,11 +44821,11 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bKh" = ( +"bNk" = ( /obj/machinery/computer/security/telescreen/entertainment, /turf/closed/wall, /area/crew_quarters/kitchen) -"bKi" = ( +"bNl" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ @@ -42545,7 +44842,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bKj" = ( +"bNm" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ @@ -42557,7 +44854,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bKk" = ( +"bNn" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -42570,18 +44867,18 @@ dir = 2 }, /area/crew_quarters/kitchen) -"bKl" = ( +"bNo" = ( /obj/machinery/vending/snack/random, /obj/machinery/newscaster{ pixel_y = -29 }, /turf/open/floor/carpet, /area/crew_quarters/bar) -"bKm" = ( +"bNp" = ( /obj/machinery/vending/coffee, /turf/open/floor/carpet, /area/crew_quarters/bar) -"bKn" = ( +"bNq" = ( /obj/machinery/camera{ c_tag = "Club - Aft"; dir = 1; @@ -42594,15 +44891,15 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/crew_quarters/bar) -"bKo" = ( +"bNr" = ( /obj/machinery/vending/cigarette, /turf/open/floor/carpet, /area/crew_quarters/bar) -"bKp" = ( +"bNs" = ( /obj/machinery/vending/cola/random, /turf/open/floor/carpet, /area/crew_quarters/bar) -"bKq" = ( +"bNt" = ( /obj/machinery/door/airlock{ name = "Theatre Backstage"; req_access_txt = "46" @@ -42610,14 +44907,14 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bKr" = ( +"bNu" = ( /turf/closed/wall/r_wall, /area/storage/tcom) -"bKs" = ( +"bNv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/storage/tcom) -"bKt" = ( +"bNw" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/airlock/engineering{ @@ -42630,13 +44927,33 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/storage/tcom) -"bKu" = ( +"bNx" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNy" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNz" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNA" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/closed/wall/r_wall, /area/engine/atmos) -"bKv" = ( +"bNC" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; name = "External Waste Ports to Filter"; @@ -42650,7 +44967,7 @@ dir = 8 }, /area/engine/atmos) -"bKw" = ( +"bND" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 4 }, @@ -42659,26 +44976,26 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bKx" = ( +"bNE" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 2 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bKy" = ( +"bNF" = ( /obj/item/device/radio/beacon, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bKz" = ( +"bNG" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bKA" = ( +"bNH" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; name = "Air to Ports"; @@ -42686,7 +45003,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bKB" = ( +"bNI" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; name = "Mix to Ports"; @@ -42694,7 +45011,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bKC" = ( +"bNJ" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; name = "Pure to Ports"; @@ -42702,15 +45019,15 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bKD" = ( +"bNK" = ( /obj/effect/landmark/start/atmospheric_technician, /turf/open/floor/plasteel, /area/engine/atmos) -"bKE" = ( +"bNL" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible, /turf/open/floor/plasteel, /area/engine/atmos) -"bKF" = ( +"bNM" = ( /obj/machinery/computer/atmos_control/tank{ dir = 8; frequency = 1441; @@ -42727,70 +45044,85 @@ dir = 4 }, /area/engine/atmos) -"bKG" = ( +"bNN" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"bKH" = ( +"bNO" = ( /obj/machinery/air_sensor{ frequency = 1441; id_tag = "n2o_sensor" }, /turf/open/floor/engine/n2o, /area/engine/atmos) -"bKI" = ( +"bNP" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide{ valve_open = 1 }, /turf/open/floor/engine/n2o, /area/engine/atmos) -"bKJ" = ( +"bNQ" = ( /obj/machinery/light/small{ dir = 4 }, /turf/open/floor/engine/n2o, /area/engine/atmos) -"bKK" = ( +"bNR" = ( /obj/structure/grille, /obj/structure/lattice, /obj/structure/lattice, /turf/closed/wall/r_wall, /area/space/nearstation) -"bKL" = ( -/obj/machinery/telecomms/processor/preset_two, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bKM" = ( -/obj/structure/table/glass, -/obj/item/folder{ - pixel_y = 2 +"bNS" = ( +/obj/machinery/light/small{ + dir = 4 }, -/obj/item/folder{ - pixel_y = 2 +/obj/machinery/door/window{ + dir = 2; + name = "MiniSat Walkway Access"; + req_access_txt = "0" }, -/obj/item/pen, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bKN" = ( -/obj/machinery/telecomms/bus/preset_four, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bKO" = ( -/obj/machinery/telecomms/hub/preset, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bKP" = ( -/obj/machinery/telecomms/processor/preset_four, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bKQ" = ( +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Aft Port"; + dir = 8; + network = list("MiniSat") + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bNT" = ( /obj/structure/lattice, /obj/structure/window/reinforced{ dir = 8 }, /turf/open/space, /area/aisat) -"bKR" = ( +"bNU" = ( +/obj/machinery/telecomms/server/presets/common, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bNV" = ( +/obj/machinery/telecomms/server/presets/engineering, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bNW" = ( +/obj/machinery/telecomms/hub/preset, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"bNX" = ( +/obj/machinery/telecomms/server/presets/science, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bNY" = ( +/obj/machinery/telecomms/server/presets/medical, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bNZ" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -42814,7 +45146,7 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"bKS" = ( +"bOa" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-06" }, @@ -42823,7 +45155,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bKT" = ( +"bOb" = ( /obj/structure/chair, /obj/effect/landmark/start/assistant, /obj/machinery/light{ @@ -42834,14 +45166,14 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bKU" = ( +"bOc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bKV" = ( +"bOd" = ( /obj/machinery/light{ dir = 1 }, @@ -42850,7 +45182,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bKW" = ( +"bOe" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -42867,7 +45199,7 @@ dir = 4 }, /area/hallway/secondary/entry) -"bKX" = ( +"bOf" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -42875,7 +45207,11 @@ icon_state = "platingdmg2" }, /area/maintenance/port) -"bKY" = ( +"bOg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bOh" = ( /obj/machinery/power/apc{ dir = 8; name = "Vacant Office APC"; @@ -42887,27 +45223,26 @@ }, /turf/open/floor/wood, /area/security/vacantoffice) -"bKZ" = ( +"bOi" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, /turf/open/floor/wood, /area/security/vacantoffice) -"bLa" = ( +"bOj" = ( /obj/structure/light_construct{ dir = 4 }, /turf/open/floor/wood, /area/security/vacantoffice) -"bLb" = ( +"bOk" = ( /obj/structure/table, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port) -"bLc" = ( +"bOl" = ( /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 3; @@ -42915,7 +45250,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bLd" = ( +"bOm" = ( /obj/structure/closet, /obj/item/clothing/shoes/jackboots, /obj/effect/spawner/lootdrop/maintenance{ @@ -42924,43 +45259,42 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bLe" = ( +"bOn" = ( /obj/machinery/vending/autodrobe{ req_access_txt = "0" }, /turf/open/floor/plating, /area/maintenance/port) -"bLf" = ( +"bOo" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/costume, /obj/effect/spawner/lootdrop/costume, /turf/open/floor/plating, /area/maintenance/port) -"bLg" = ( +"bOp" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/rack, /obj/effect/spawner/lootdrop/costume, /obj/effect/spawner/lootdrop/costume, /turf/open/floor/plating, /area/maintenance/port) -"bLh" = ( +"bOq" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/port) +"bOr" = ( /obj/structure/bookcase/random/religion, /turf/open/floor/wood, /area/library) -"bLi" = ( +"bOs" = ( /obj/structure/bookcase/random/adult, /turf/open/floor/wood, /area/library) -"bLj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/lightsout, -/turf/open/floor/carpet, -/area/library) -"bLk" = ( +"bOt" = ( /obj/structure/bookcase/random/reference, /turf/open/floor/wood, /area/library) -"bLl" = ( +"bOu" = ( /obj/structure/table/wood, /obj/item/pen/red, /obj/item/pen/blue{ @@ -42969,7 +45303,17 @@ }, /turf/open/floor/wood, /area/library) -"bLm" = ( +"bOv" = ( +/obj/machinery/light_switch{ + pixel_x = 28 + }, +/turf/open/floor/wood, +/area/library) +"bOw" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"bOx" = ( /obj/item/stack/sheet/rglass{ amount = 50 }, @@ -43000,7 +45344,7 @@ dir = 8 }, /area/ai_monitored/storage/eva) -"bLn" = ( +"bOy" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -43009,13 +45353,13 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bLo" = ( +"bOz" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bLp" = ( +"bOA" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -43025,7 +45369,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bLq" = ( +"bOB" = ( /obj/machinery/door/window/northleft{ dir = 8; name = "Magboot Storage"; @@ -43050,11 +45394,11 @@ dir = 8 }, /area/ai_monitored/storage/eva) -"bLr" = ( +"bOC" = ( /obj/machinery/teleport/hub, /turf/open/floor/plating, /area/teleporter) -"bLs" = ( +"bOD" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -43063,7 +45407,7 @@ }, /turf/open/floor/plasteel, /area/teleporter) -"bLt" = ( +"bOE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment{ dir = 5 @@ -43073,7 +45417,7 @@ }, /turf/open/floor/plasteel, /area/teleporter) -"bLu" = ( +"bOF" = ( /obj/machinery/door/window/northleft{ dir = 8; name = "Disposals Chute"; @@ -43095,7 +45439,7 @@ dir = 1 }, /area/teleporter) -"bLv" = ( +"bOG" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -43106,10 +45450,10 @@ }, /turf/open/floor/plating, /area/bridge/showroom/corporate) -"bLw" = ( +"bOH" = ( /turf/closed/wall/r_wall, /area/bridge/showroom/corporate) -"bLx" = ( +"bOI" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -43120,7 +45464,7 @@ }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bLy" = ( +"bOJ" = ( /obj/structure/closet/secure_closet/medical1, /obj/machinery/airalarm{ dir = 4; @@ -43133,7 +45477,7 @@ dir = 1 }, /area/gateway) -"bLz" = ( +"bOK" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -43142,7 +45486,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bLA" = ( +"bOL" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ @@ -43150,7 +45494,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bLB" = ( +"bOM" = ( /obj/structure/table, /obj/item/paper/pamphlet/gateway, /obj/effect/turf_decal/bot{ @@ -43160,12 +45504,12 @@ dir = 1 }, /area/gateway) -"bLC" = ( +"bON" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /turf/open/floor/plating, /area/gateway) -"bLD" = ( +"bOO" = ( /obj/machinery/gateway{ dir = 8 }, @@ -43174,11 +45518,11 @@ dir = 8 }, /area/gateway) -"bLE" = ( +"bOP" = ( /obj/machinery/gateway/centerstation, /turf/open/floor/plasteel/dark, /area/gateway) -"bLF" = ( +"bOQ" = ( /obj/machinery/gateway{ dir = 4 }, @@ -43187,7 +45531,7 @@ dir = 8 }, /area/gateway) -"bLG" = ( +"bOR" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -43195,7 +45539,7 @@ /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/central) -"bLH" = ( +"bOS" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/status_display{ pixel_x = -32 @@ -43209,7 +45553,7 @@ dir = 1 }, /area/hallway/primary/central) -"bLI" = ( +"bOT" = ( /obj/structure/table, /obj/machinery/microwave{ pixel_x = -3; @@ -43225,7 +45569,7 @@ dir = 2 }, /area/crew_quarters/kitchen) -"bLJ" = ( +"bOU" = ( /obj/structure/table, /obj/machinery/microwave{ pixel_x = -3; @@ -43246,18 +45590,18 @@ dir = 2 }, /area/crew_quarters/kitchen) -"bLK" = ( +"bOV" = ( /turf/open/floor/plasteel/cafeteria{ dir = 5 }, /area/crew_quarters/kitchen) -"bLL" = ( +"bOW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/cafeteria{ dir = 5 }, /area/crew_quarters/kitchen) -"bLM" = ( +"bOX" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -43269,7 +45613,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bLN" = ( +"bOY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -43277,7 +45621,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bLO" = ( +"bOZ" = ( /obj/structure/disposalpipe/segment{ dir = 10 }, @@ -43291,7 +45635,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bLP" = ( +"bPa" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -43299,29 +45643,34 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bLQ" = ( +"bPb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/light_switch{ pixel_x = -26 }, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bLR" = ( +"bPc" = ( /obj/structure/dresser, /obj/machinery/newscaster{ pixel_y = 32 }, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bLS" = ( +"bPd" = ( /obj/machinery/vending/autodrobe, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bLT" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/bridge) -"bLU" = ( +"bPe" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bPf" = ( /obj/structure/rack, /obj/item/circuitboard/machine/telecomms/bus, /obj/item/circuitboard/machine/telecomms/broadcaster, @@ -43335,7 +45684,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tcom) -"bLV" = ( +"bPg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/holopad, /obj/structure/cable/yellow{ @@ -43343,7 +45692,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tcom) -"bLW" = ( +"bPh" = ( /obj/structure/table, /obj/item/stock_parts/subspace/analyzer, /obj/item/stock_parts/subspace/analyzer, @@ -43353,21 +45702,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tcom) -"bLX" = ( -/obj/structure/closet, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"bLY" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bLZ" = ( -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bMa" = ( +"bPi" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -43376,7 +45711,7 @@ dir = 8 }, /area/engine/atmos) -"bMb" = ( +"bPj" = ( /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 1 }, @@ -43384,7 +45719,7 @@ dir = 8 }, /area/engine/atmos) -"bMc" = ( +"bPk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -43394,14 +45729,14 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bMd" = ( +"bPl" = ( /obj/structure/reagent_dispensers/watertank, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 9 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bMe" = ( +"bPm" = ( /obj/structure/reagent_dispensers/fueltank, /obj/item/device/radio/intercom{ freerange = 0; @@ -43417,7 +45752,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/atmos) -"bMf" = ( +"bPn" = ( /obj/structure/rack, /obj/item/clothing/suit/hazardvest, /obj/item/clothing/suit/hazardvest, @@ -43430,26 +45765,28 @@ /obj/item/clothing/mask/gas, /turf/open/floor/plasteel, /area/engine/atmos) -"bMg" = ( +"bPo" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bMh" = ( +"bPp" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmos) -"bMi" = ( +"bPq" = ( /obj/machinery/atmospherics/pipe/manifold4w/general/visible, /turf/open/floor/plasteel, /area/engine/atmos) -"bMj" = ( -/obj/machinery/holopad, +"bPr" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, /turf/open/floor/plasteel, /area/engine/atmos) -"bMk" = ( +"bPs" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1; filter_type = "n2o"; @@ -43463,14 +45800,14 @@ dir = 6 }, /area/engine/atmos) -"bMl" = ( +"bPt" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"bMm" = ( +"bPu" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 8; frequency = 1441; @@ -43479,7 +45816,7 @@ }, /turf/open/floor/engine/n2o, /area/engine/atmos) -"bMn" = ( +"bPv" = ( /obj/machinery/camera{ c_tag = "Atmospherics Tank - N2O"; dir = 8; @@ -43487,7 +45824,7 @@ }, /turf/open/floor/engine/n2o, /area/engine/atmos) -"bMo" = ( +"bPw" = ( /obj/machinery/airalarm/server{ dir = 4; pixel_x = -22 @@ -43502,13 +45839,13 @@ }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bMp" = ( +"bPx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bMq" = ( +"bPy" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -43517,13 +45854,13 @@ }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bMr" = ( +"bPz" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bMs" = ( +"bPA" = ( /obj/machinery/power/apc/highcap/five_k{ dir = 4; name = "Telecomms Server Room APC"; @@ -43543,16 +45880,7 @@ }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bMt" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bMu" = ( +"bPB" = ( /obj/machinery/camera{ c_tag = "Arrivals - Aft Arm - Far"; dir = 1; @@ -43561,27 +45889,14 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bMv" = ( +"bPC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bMw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = -25 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bMx" = ( +"bPD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -43590,7 +45905,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bMy" = ( +"bPE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -43598,7 +45913,7 @@ dir = 2 }, /area/hallway/secondary/entry) -"bMz" = ( +"bPF" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -43609,7 +45924,7 @@ dir = 2 }, /area/hallway/secondary/entry) -"bMA" = ( +"bPG" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -43625,7 +45940,7 @@ dir = 2 }, /area/hallway/secondary/entry) -"bMB" = ( +"bPH" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -43644,11 +45959,21 @@ dir = 6 }, /area/hallway/secondary/entry) -"bMC" = ( +"bPI" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bPJ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/port) +"bPK" = ( /obj/structure/chair/office/dark, /turf/open/floor/wood, /area/security/vacantoffice) -"bMD" = ( +"bPL" = ( /obj/structure/table/wood, /obj/item/paper_bin{ pixel_x = 1; @@ -43656,7 +45981,7 @@ }, /turf/open/floor/wood, /area/security/vacantoffice) -"bME" = ( +"bPM" = ( /obj/structure/mirror{ pixel_x = -28 }, @@ -43672,7 +45997,20 @@ /obj/structure/table, /turf/open/floor/plating, /area/maintenance/port) -"bMF" = ( +"bPN" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bPO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/port) +"bPP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -43680,16 +46018,15 @@ icon_state = "panelscorched" }, /area/maintenance/port) -"bMG" = ( +"bPQ" = ( /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/item/rack_parts, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port) -"bMH" = ( +"bPR" = ( /obj/machinery/light/small, /obj/machinery/power/apc{ dir = 8; @@ -43703,27 +46040,27 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/wood, /area/library) -"bMI" = ( +"bPS" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/wood, /area/library) -"bMJ" = ( +"bPT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/carpet, /area/library) -"bMK" = ( +"bPU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "2-8" }, /turf/open/floor/carpet, /area/library) -"bML" = ( +"bPV" = ( /obj/machinery/light/small, /obj/machinery/airalarm{ dir = 1; @@ -43731,7 +46068,7 @@ }, /turf/open/floor/wood, /area/library) -"bMM" = ( +"bPW" = ( /obj/item/folder, /obj/item/folder, /obj/machinery/camera/autoname{ @@ -43743,24 +46080,26 @@ /obj/item/device/tape, /turf/open/floor/wood, /area/library) -"bMN" = ( +"bPX" = ( /obj/machinery/light/small, /obj/machinery/libraryscanner, /turf/open/floor/wood, /area/library) -"bMO" = ( +"bPY" = ( /obj/machinery/newscaster{ pixel_x = -1; pixel_y = -29 }, /turf/open/floor/wood, /area/library) -"bMP" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/bar, -/area/crew_quarters/bar) -"bMR" = ( +"bPZ" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/wood, +/area/library) +"bQa" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/light{ dir = 4 @@ -43769,7 +46108,7 @@ dir = 4 }, /area/hallway/primary/central) -"bMS" = ( +"bQb" = ( /obj/structure/closet/crate/rcd{ pixel_y = 4 }, @@ -43788,13 +46127,13 @@ dir = 8 }, /area/ai_monitored/storage/eva) -"bMT" = ( +"bQc" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bMU" = ( +"bQd" = ( /obj/structure/tank_dispenser/oxygen{ layer = 2.9; pixel_x = -1; @@ -43802,7 +46141,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bMV" = ( +"bQe" = ( /obj/machinery/camera/motion{ c_tag = "E.V.A. Storage"; dir = 8 @@ -43820,7 +46159,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bMW" = ( +"bQf" = ( /obj/machinery/teleport/station, /obj/machinery/firealarm{ dir = 8; @@ -43828,21 +46167,21 @@ }, /turf/open/floor/plating, /area/teleporter) -"bMX" = ( +"bQg" = ( /obj/machinery/bluespace_beacon, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/teleporter) -"bMY" = ( +"bQh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plasteel, /area/teleporter) -"bMZ" = ( +"bQi" = ( /obj/machinery/camera{ c_tag = "Teleporter Room"; dir = 8; @@ -43861,7 +46200,7 @@ dir = 1 }, /area/teleporter) -"bNa" = ( +"bQj" = ( /obj/structure/window/reinforced, /obj/structure/showcase/mecha/ripley, /obj/structure/cable/yellow{ @@ -43870,8 +46209,8 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bNb" = ( -/obj/structure/sign/kiddieplaque/perfect_drone{ +"bQk" = ( +/obj/structure/sign/plaques/kiddie/perfect_drone{ pixel_y = 32 }, /obj/structure/table/wood, @@ -43879,7 +46218,7 @@ /obj/structure/window/reinforced, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bNc" = ( +"bQl" = ( /obj/structure/showcase/mecha/marauder, /obj/structure/window/reinforced{ dir = 4 @@ -43890,17 +46229,13 @@ }, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bNd" = ( -/obj/item/tank/internals/air, -/obj/item/tank/internals/air, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/machinery/light/small{ - dir = 4 +"bQm" = ( +/obj/structure/bookcase{ + name = "bookcase" }, -/turf/open/floor/plating, -/area/maintenance/port) -"bNe" = ( +/turf/open/floor/wood, +/area/bridge/showroom/corporate) +"bQn" = ( /obj/structure/table/wood, /obj/item/phone{ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; @@ -43922,13 +46257,13 @@ }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bNf" = ( +"bQo" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bNg" = ( +"bQp" = ( /obj/machinery/light_switch{ pixel_y = 24 }, @@ -43946,17 +46281,7 @@ }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bNh" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen/red, -/obj/machinery/newscaster{ - pixel_x = 30; - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bNi" = ( +"bQq" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -43971,15 +46296,15 @@ }, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bNj" = ( +"bQr" = ( /obj/structure/showcase/perfect_employee, -/obj/structure/sign/kiddieplaque/perfect_man{ +/obj/structure/sign/plaques/kiddie/perfect_man{ pixel_y = 32 }, /obj/structure/window/reinforced, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bNk" = ( +"bQs" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -43991,10 +46316,10 @@ }, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bNl" = ( +"bQt" = ( /turf/closed/wall, /area/gateway) -"bNm" = ( +"bQu" = ( /obj/structure/bed/roller, /obj/machinery/vending/wallmed{ pixel_x = -28 @@ -44011,14 +46336,14 @@ dir = 1 }, /area/gateway) -"bNn" = ( +"bQv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plasteel, /area/gateway) -"bNo" = ( +"bQw" = ( /obj/structure/tank_dispenser/oxygen{ pixel_x = -1; pixel_y = 2 @@ -44038,7 +46363,7 @@ dir = 1 }, /area/gateway) -"bNp" = ( +"bQx" = ( /obj/machinery/gateway{ dir = 10 }, @@ -44047,7 +46372,7 @@ dir = 4 }, /area/gateway) -"bNq" = ( +"bQy" = ( /obj/machinery/gateway, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -44057,7 +46382,7 @@ dir = 8 }, /area/gateway) -"bNr" = ( +"bQz" = ( /obj/machinery/gateway{ dir = 6 }, @@ -44066,13 +46391,13 @@ dir = 1 }, /area/gateway) -"bNs" = ( +"bQA" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plating, /area/maintenance/central) -"bNt" = ( +"bQB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/item/device/radio/intercom{ dir = 8; @@ -44083,7 +46408,7 @@ dir = 1 }, /area/hallway/primary/central) -"bNu" = ( +"bQC" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, @@ -44091,7 +46416,7 @@ dir = 2 }, /area/hallway/primary/central) -"bNv" = ( +"bQD" = ( /obj/effect/spawner/structure/window, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -44102,7 +46427,7 @@ }, /turf/open/floor/plating, /area/crew_quarters/kitchen) -"bNw" = ( +"bQE" = ( /obj/structure/rack, /obj/item/book/manual/chef_recipes{ pixel_x = 2; @@ -44117,7 +46442,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bNx" = ( +"bQF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -44125,7 +46450,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bNy" = ( +"bQG" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -44133,7 +46458,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bNz" = ( +"bQH" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -44141,7 +46466,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bNA" = ( +"bQI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -44149,7 +46474,13 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bNB" = ( +"bQJ" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/kitchen) +"bQK" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -44158,7 +46489,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bNC" = ( +"bQL" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -44168,14 +46499,14 @@ dir = 2 }, /area/crew_quarters/kitchen) -"bND" = ( +"bQM" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, /obj/structure/closet/secure_closet/freezer/meat, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bNE" = ( +"bQN" = ( /obj/structure/sink/kitchen{ desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; @@ -44183,40 +46514,52 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bNF" = ( +"bQO" = ( /obj/machinery/gibber, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bNG" = ( +"bQP" = ( /obj/structure/kitchenspike, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bNI" = ( +"bQQ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/clothing/mask/pig, +/obj/item/bikehorn, +/obj/structure/table/wood, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"bQR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bNJ" = ( +"bQS" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/effect/landmark/start/mime, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bNK" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 +"bQT" = ( +/obj/machinery/light/small{ + dir = 4 }, -/obj/structure/table/wood, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/sign/poster/contraband/clown{ + pixel_x = 32 }, /turf/open/floor/wood, -/area/security/vacantoffice) -"bNL" = ( +/area/crew_quarters/theatre) +"bQU" = ( /obj/structure/table, /obj/item/stock_parts/subspace/transmitter, /obj/item/stock_parts/subspace/transmitter, @@ -44237,7 +46580,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tcom) -"bNM" = ( +"bQV" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -44246,7 +46589,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tcom) -"bNN" = ( +"bQW" = ( /obj/structure/table, /obj/item/stock_parts/subspace/treatment, /obj/item/stock_parts/subspace/treatment, @@ -44260,11 +46603,26 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tcom) -"bNO" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, +"bQX" = ( +/obj/structure/closet, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"bQY" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, /turf/open/floor/plating, /area/maintenance/starboard) -"bNP" = ( +"bQZ" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bRa" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bRb" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 9 }, @@ -44272,7 +46630,7 @@ dir = 8 }, /area/engine/atmos) -"bNQ" = ( +"bRc" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -44282,11 +46640,11 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bNR" = ( +"bRd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/engine/atmos) -"bNS" = ( +"bRe" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, @@ -44300,11 +46658,10 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bNT" = ( -/obj/effect/landmark/lightsout, +"bRf" = ( /turf/open/floor/plasteel, /area/engine/atmos) -"bNU" = ( +"bRg" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; name = "Port Mix to East Ports"; @@ -44313,7 +46670,22 @@ /obj/item/crowbar, /turf/open/floor/plasteel, /area/engine/atmos) -"bNV" = ( +"bRh" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bRi" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Mix to Engine"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bRj" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, /obj/machinery/door/window/northleft{ dir = 8; @@ -44321,39 +46693,45 @@ name = "Inner Pipe Access"; req_access_txt = "24" }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"bNW" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/door/window{ - dir = 2; - name = "MiniSat Walkway Access"; - req_access_txt = "0" - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Aft Port"; - dir = 8; - network = list("MiniSat") - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ +"bRk" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 4 }, /turf/open/floor/plasteel/dark, -/area/aisat) -"bNX" = ( -/obj/machinery/telecomms/server/presets/common, +/area/engine/atmos) +"bRl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"bRm" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 9 + }, +/turf/open/space, +/area/space/nearstation) +"bRn" = ( +/obj/machinery/telecomms/broadcaster/preset_left, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"bNY" = ( -/obj/machinery/telecomms/server/presets/engineering, +"bRo" = ( +/obj/machinery/telecomms/server/presets/command, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"bNZ" = ( +"bRp" = ( +/obj/machinery/telecomms/server/presets/security, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bRq" = ( /obj/machinery/light/small, /obj/machinery/camera{ c_tag = "Telecomms - Server Room - Aft"; @@ -44364,25 +46742,25 @@ /obj/machinery/ntnet_relay, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bOa" = ( -/obj/machinery/telecomms/server/presets/medical, +"bRr" = ( +/obj/machinery/telecomms/server/presets/service, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"bOb" = ( -/obj/machinery/telecomms/server/presets/science, +"bRs" = ( +/obj/machinery/telecomms/server/presets/supply, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"bOc" = ( -/obj/machinery/telecomms/broadcaster/preset_left, +"bRt" = ( +/obj/machinery/telecomms/broadcaster/preset_right, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"bOd" = ( +"bRu" = ( /obj/machinery/door/airlock/external{ name = "Auxiliary Airlock" }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"bOe" = ( +"bRv" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "0"; req_one_access_txt = "12;27" @@ -44393,16 +46771,15 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port) -"bOf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 +"bRw" = ( +/obj/structure/table/wood, +/obj/item/paper, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bOg" = ( +/turf/open/floor/wood, +/area/security/vacantoffice) +"bRx" = ( /obj/structure/table/wood, /obj/item/folder/white{ pixel_x = 4; @@ -44410,17 +46787,30 @@ }, /turf/open/floor/wood, /area/security/vacantoffice) -"bOh" = ( +"bRy" = ( /obj/item/toy/cards/deck, /obj/structure/table/wood, /turf/open/floor/wood, /area/security/vacantoffice) -"bOi" = ( +"bRz" = ( /obj/structure/table, /obj/item/clothing/mask/cigarette/pipe, /turf/open/floor/plating, /area/maintenance/port) -"bOk" = ( +"bRA" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port) +"bRB" = ( +/turf/open/floor/plating, +/area/maintenance/port) +"bRC" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/port) +"bRD" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/centcom{ name = "Quiet Room"; @@ -44429,7 +46819,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/library) -"bOl" = ( +"bRE" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/centcom{ name = "Quiet Room"; @@ -44441,21 +46831,21 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/library) -"bOm" = ( +"bRF" = ( /obj/machinery/door/morgue{ name = "Private Study"; req_access_txt = "37" }, /turf/open/floor/engine/cult, /area/library) -"bOn" = ( +"bRG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/firedoor, /turf/open/floor/plasteel/neutral/corner{ dir = 4 }, /area/hallway/primary/central) -"bOo" = ( +"bRH" = ( /obj/item/stack/sheet/metal/fifty, /obj/item/stack/sheet/metal/fifty, /obj/structure/table, @@ -44478,32 +46868,25 @@ dir = 8 }, /area/ai_monitored/storage/eva) -"bOp" = ( +"bRI" = ( /obj/machinery/holopad, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bOq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"bOr" = ( +"bRJ" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"bRK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bOs" = ( +"bRL" = ( /obj/machinery/door/window/northleft{ dir = 8; name = "Jetpack Storage"; @@ -44525,32 +46908,38 @@ dir = 8 }, /area/ai_monitored/storage/eva) -"bOt" = ( +"bRM" = ( /obj/machinery/computer/teleporter{ dir = 4 }, /turf/open/floor/plating, /area/teleporter) -"bOu" = ( +"bRN" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/teleporter) -"bOv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 +"bRO" = ( +/obj/structure/rack, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = 27 }, -/obj/structure/cable/yellow{ - icon_state = "1-4" +/turf/open/floor/plasteel/vault{ + dir = 1 }, -/turf/open/floor/plating, -/area/maintenance/port) -"bOw" = ( +/area/teleporter) +"bRP" = ( /turf/closed/wall, /area/teleporter) -"bOx" = ( +"bRQ" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -44563,14 +46952,14 @@ }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bOy" = ( +"bRR" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/effect/decal/cleanable/oil, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bOz" = ( +"bRS" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -44579,20 +46968,35 @@ }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bOB" = ( +"bRT" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/bridge/showroom/corporate) +"bRU" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bOC" = ( +"bRV" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bOD" = ( +"bRW" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/bridge/showroom/corporate) +"bRX" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -44606,14 +47010,14 @@ icon_state = "wood-broken6" }, /area/bridge/showroom/corporate) -"bOE" = ( +"bRY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bOF" = ( +"bRZ" = ( /obj/machinery/power/apc/highcap/five_k{ dir = 4; name = "Nanotrasen Corporate Showroom APC"; @@ -44632,7 +47036,7 @@ }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bOG" = ( +"bSa" = ( /obj/structure/rack, /obj/item/stack/medical/ointment, /obj/item/stack/medical/bruise_pack, @@ -44648,44 +47052,44 @@ dir = 1 }, /area/gateway) -"bOH" = ( +"bSb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/corner{ dir = 8 }, /turf/open/floor/plasteel, /area/gateway) -"bOI" = ( +"bSc" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 }, /turf/open/floor/plasteel, /area/gateway) -"bOJ" = ( +"bSd" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" }, /turf/open/floor/plating, /area/gateway) -"bOK" = ( +"bSe" = ( /turf/open/floor/plasteel/vault, /area/gateway) -"bOL" = ( +"bSf" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/vault, /area/gateway) -"bOM" = ( +"bSg" = ( /obj/machinery/light{ dir = 4 }, /turf/open/floor/plasteel/vault, /area/gateway) -"bON" = ( -/obj/structure/sign/securearea{ +"bSh" = ( +/obj/structure/sign/warning/securearea{ pixel_x = -32 }, /obj/structure/cable/yellow{ @@ -44695,7 +47099,7 @@ icon_state = "platingdmg2" }, /area/maintenance/central) -"bOO" = ( +"bSi" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/light{ dir = 8 @@ -44704,7 +47108,7 @@ dir = 1 }, /area/hallway/primary/central) -"bOP" = ( +"bSj" = ( /obj/effect/spawner/structure/window, /obj/machinery/door/poddoor/preopen{ id = "kitchenwindow"; @@ -44712,23 +47116,23 @@ }, /turf/open/floor/plating, /area/crew_quarters/kitchen) -"bOQ" = ( +"bSk" = ( /obj/machinery/food_cart, /turf/open/floor/plasteel/cafeteria{ dir = 5 }, /area/crew_quarters/kitchen) -"bOR" = ( +"bSl" = ( /obj/effect/landmark/start/cook, /turf/open/floor/plasteel/cafeteria, /area/crew_quarters/kitchen) -"bOS" = ( +"bSm" = ( /obj/structure/table, /turf/open/floor/plasteel/cafeteria{ dir = 5 }, /area/crew_quarters/kitchen) -"bOT" = ( +"bSn" = ( /obj/structure/table, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/item/storage/box/donkpockets, @@ -44736,20 +47140,25 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bOU" = ( +"bSo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/table, /turf/open/floor/plasteel/cafeteria{ dir = 5 }, /area/crew_quarters/kitchen) -"bOV" = ( +"bSp" = ( /obj/machinery/deepfryer, /turf/open/floor/plasteel/cafeteria{ dir = 5 }, /area/crew_quarters/kitchen) -"bOW" = ( +"bSq" = ( +/obj/effect/landmark/start/cook, +/obj/machinery/holopad, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bSr" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -44758,37 +47167,27 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bOX" = ( +"bSs" = ( /obj/structure/closet/secure_closet/freezer/kitchen, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bOY" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bOZ" = ( +"bSt" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"bSu" = ( /obj/machinery/chem_master/condimaster{ name = "CondiMaster Neo"; pixel_x = -4 }, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bPa" = ( +"bSv" = ( /mob/living/simple_animal/hostile/retaliate/goat{ name = "Pete" }, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bPb" = ( +"bSw" = ( /obj/structure/table/wood, /obj/structure/mirror{ pixel_x = -28 @@ -44804,20 +47203,20 @@ }, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bPc" = ( +"bSx" = ( /obj/structure/chair/wood/wings{ dir = 8 }, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bPd" = ( +"bSy" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /obj/effect/landmark/start/clown, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bPe" = ( +"bSz" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -44829,7 +47228,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bPf" = ( +"bSA" = ( /obj/machinery/door/airlock{ name = "Theatre Backstage"; req_access_txt = "46" @@ -44842,7 +47241,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bPg" = ( +"bSB" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -44858,7 +47257,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bPh" = ( +"bSC" = ( /obj/structure/table, /obj/item/stock_parts/subspace/ansible, /obj/item/stock_parts/subspace/ansible, @@ -44868,7 +47267,7 @@ /obj/item/stock_parts/subspace/crystal, /turf/open/floor/plasteel/dark, /area/storage/tcom) -"bPi" = ( +"bSD" = ( /obj/structure/table, /obj/item/stock_parts/micro_laser, /obj/item/stock_parts/manipulator, @@ -44886,7 +47285,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tcom) -"bPj" = ( +"bSE" = ( /obj/structure/table, /obj/item/stock_parts/subspace/filter, /obj/item/stock_parts/subspace/filter, @@ -44895,37 +47294,37 @@ /obj/item/stock_parts/subspace/filter, /turf/open/floor/plasteel/dark, /area/storage/tcom) -"bPk" = ( +"bSF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/plating, /area/maintenance/starboard) -"bPl" = ( +"bSG" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/starboard) -"bPm" = ( +"bSH" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/starboard) -"bPn" = ( +"bSI" = ( /obj/machinery/atmospherics/components/trinary/filter, /turf/open/floor/plating, /area/maintenance/starboard) -"bPo" = ( +"bSJ" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, /obj/machinery/portable_atmospherics/scrubber, /turf/open/floor/plasteel/red, /area/engine/atmos) -"bPp" = ( +"bSK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, @@ -44933,7 +47332,7 @@ dir = 8 }, /area/engine/atmos) -"bPq" = ( +"bSL" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -44942,14 +47341,14 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bPr" = ( +"bSM" = ( /obj/structure/closet/secure_closet/atmospherics, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bPs" = ( +"bSN" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -44961,14 +47360,14 @@ dir = 1 }, /area/engine/atmos) -"bPt" = ( +"bSO" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4 }, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmos) -"bPu" = ( +"bSP" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 }, @@ -44980,13 +47379,13 @@ dir = 1 }, /area/engine/atmos) -"bPv" = ( +"bSQ" = ( /obj/machinery/atmospherics/pipe/manifold/yellow/visible{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bPw" = ( +"bSR" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, /obj/machinery/atmospherics/components/binary/pump{ dir = 8; @@ -45002,7 +47401,14 @@ }, /turf/open/floor/plasteel/purple, /area/engine/atmos) -"bPx" = ( +"bSS" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bST" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 8; frequency = 1441; @@ -45011,14 +47417,14 @@ }, /turf/open/floor/engine/plasma, /area/engine/atmos) -"bPy" = ( +"bSU" = ( /turf/open/floor/engine/plasma, /area/engine/atmos) -"bPz" = ( +"bSV" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/engine/plasma, /area/engine/atmos) -"bPA" = ( +"bSW" = ( /obj/machinery/light/small{ dir = 8 }, @@ -45027,7 +47433,7 @@ }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"bPC" = ( +"bSX" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -45039,7 +47445,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bPD" = ( +"bSY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -45048,14 +47454,22 @@ icon_state = "platingdmg2" }, /area/maintenance/port) -"bPF" = ( +"bSZ" = ( +/obj/structure/closet/crate, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/poster/random_official, +/turf/open/floor/plating, +/area/maintenance/port) +"bTa" = ( /obj/structure/grille, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/port) -"bPG" = ( +"bTb" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -45064,14 +47478,14 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bPH" = ( +"bTc" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, /obj/item/trash/candy, /turf/open/floor/plating, /area/maintenance/port) -"bPI" = ( +"bTd" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Vacant Office Maintenance"; req_access_txt = "32"; @@ -45079,22 +47493,22 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bPJ" = ( +"bTe" = ( /obj/structure/rack, /obj/item/clothing/mask/horsehead, /turf/open/floor/plating, /area/maintenance/port) -"bPK" = ( +"bTf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/port) -"bPL" = ( +"bTg" = ( /obj/structure/rack, /obj/item/storage/box, /turf/open/floor/plating, /area/maintenance/port) -"bPM" = ( +"bTh" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -45103,12 +47517,12 @@ icon_state = "platingdmg2" }, /area/maintenance/port) -"bPN" = ( +"bTi" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/maintenance/port) -"bPO" = ( +"bTj" = ( /obj/structure/table/wood, /obj/item/paper_bin{ pixel_x = -2; @@ -45118,19 +47532,19 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/wood, /area/library) -"bPP" = ( +"bTk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, /turf/open/floor/wood, /area/library) -"bPQ" = ( +"bTl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, /turf/open/floor/wood, /area/library) -"bPR" = ( +"bTm" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -45139,7 +47553,7 @@ }, /turf/open/floor/wood, /area/library) -"bPS" = ( +"bTn" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -45148,17 +47562,12 @@ }, /turf/open/floor/wood, /area/library) -"bPT" = ( -/obj/structure/table/wood, -/obj/item/device/paicard, -/turf/open/floor/wood, -/area/library) -"bPU" = ( +"bTo" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/machinery/vending/games, /turf/open/floor/wood, /area/library) -"bPV" = ( +"bTp" = ( /obj/structure/destructible/cult/tome, /obj/machinery/newscaster{ pixel_x = -30 @@ -45168,11 +47577,11 @@ /obj/item/book/codex_gigas, /turf/open/floor/engine/cult, /area/library) -"bPW" = ( +"bTq" = ( /obj/structure/chair/comfy/brown, /turf/open/floor/engine/cult, /area/library) -"bPX" = ( +"bTr" = ( /obj/effect/landmark/blobstart, /obj/machinery/light/small{ dir = 1 @@ -45183,7 +47592,7 @@ /obj/structure/closet/wardrobe/curator, /turf/open/floor/engine/cult, /area/library) -"bPY" = ( +"bTs" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/airalarm{ dir = 8; @@ -45193,7 +47602,7 @@ dir = 4 }, /area/hallway/primary/central) -"bPZ" = ( +"bTt" = ( /obj/structure/table, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high{ @@ -45206,7 +47615,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bQa" = ( +"bTu" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -45215,7 +47624,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bQb" = ( +"bTv" = ( /obj/machinery/shieldwallgen, /obj/structure/window/reinforced{ dir = 1; @@ -45228,7 +47637,7 @@ dir = 4 }, /area/teleporter) -"bQc" = ( +"bTw" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -45237,7 +47646,7 @@ }, /turf/open/floor/plasteel, /area/teleporter) -"bQd" = ( +"bTx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -45246,7 +47655,7 @@ }, /turf/open/floor/plasteel, /area/teleporter) -"bQe" = ( +"bTy" = ( /obj/machinery/shieldwallgen, /obj/structure/window/reinforced{ dir = 1; @@ -45259,7 +47668,7 @@ dir = 1 }, /area/teleporter) -"bQf" = ( +"bTz" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -45280,32 +47689,32 @@ }, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bQg" = ( +"bTA" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bQh" = ( +"bTB" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bQi" = ( +"bTC" = ( /turf/open/floor/wood{ icon_state = "wood-broken3" }, /area/bridge/showroom/corporate) -"bQj" = ( +"bTD" = ( /obj/machinery/cell_charger, /obj/item/stock_parts/cell/crap, /obj/structure/table/wood, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bQk" = ( +"bTE" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/holopad, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bQl" = ( +"bTF" = ( /obj/structure/table/wood, /obj/item/toy/plush/carpplushie{ color = "red"; @@ -45313,17 +47722,36 @@ }, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bQm" = ( +"bTG" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bQn" = ( +"bTH" = ( /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bQp" = ( +"bTI" = ( +/obj/structure/table/wood, +/obj/machinery/button/door{ + id = "corporate_privacy"; + name = "corporate showroom shutters control"; + pixel_x = 28; + req_access_txt = "19" + }, +/obj/item/poster/random_official, +/obj/item/poster/random_official, +/obj/item/poster/random_official, +/obj/item/poster/random_official, +/obj/item/poster/random_official, +/obj/item/device/paicard{ + desc = "A real Nanotrasen success, these personal AIs provide all of the companionship of an AI without any law related red-tape."; + name = "Nanotrasen-brand personal AI device exhibit" + }, +/turf/open/floor/carpet, +/area/bridge/showroom/corporate) +"bTJ" = ( /obj/structure/rack, /obj/item/clothing/suit/hazardvest, /obj/item/clothing/suit/hazardvest, @@ -45342,7 +47770,7 @@ dir = 1 }, /area/gateway) -"bQq" = ( +"bTK" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -45354,7 +47782,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bQr" = ( +"bTL" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -45366,7 +47794,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bQs" = ( +"bTM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -45378,7 +47806,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bQt" = ( +"bTN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -45397,7 +47825,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bQu" = ( +"bTO" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -45406,7 +47834,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bQv" = ( +"bTP" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -45415,7 +47843,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bQw" = ( +"bTQ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -45424,7 +47852,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bQx" = ( +"bTR" = ( /obj/machinery/door/airlock/maintenance{ name = "Gateway Maintenance"; req_access_txt = "17" @@ -45437,7 +47865,7 @@ }, /turf/open/floor/plating, /area/maintenance/central) -"bQy" = ( +"bTS" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -45452,7 +47880,7 @@ }, /turf/open/floor/plating, /area/maintenance/central) -"bQz" = ( +"bTT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/extinguisher_cabinet{ pixel_x = -27 @@ -45461,7 +47889,7 @@ dir = 1 }, /area/hallway/primary/central) -"bQA" = ( +"bTU" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -45470,7 +47898,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bQB" = ( +"bTV" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -45478,7 +47906,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bQC" = ( +"bTW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -45489,7 +47917,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bQD" = ( +"bTX" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -45503,7 +47931,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bQE" = ( +"bTY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -45514,7 +47942,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bQF" = ( +"bTZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -45525,7 +47953,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bQG" = ( +"bUa" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-8" @@ -45537,7 +47965,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bQH" = ( +"bUb" = ( /obj/machinery/requests_console{ department = "Kitchen"; departmentType = 2; @@ -45548,11 +47976,11 @@ dir = 2 }, /area/crew_quarters/kitchen) -"bQI" = ( +"bUc" = ( /obj/structure/closet/chefcloset, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bQJ" = ( +"bUd" = ( /obj/effect/landmark/start/cook, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 @@ -45560,58 +47988,114 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bQK" = ( +"bUe" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bQN" = ( +"bUf" = ( +/obj/machinery/icecream_vat, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"bUg" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/clothing/mask/horsehead, +/obj/structure/table/wood, /obj/machinery/airalarm{ - dir = 8; + dir = 1; + pixel_y = -22 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/obj/item/clothing/mask/cigarette/pipe, +/obj/item/clothing/mask/fakemoustache, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"bUh" = ( +/obj/machinery/camera{ + c_tag = "Theatre - Backstage"; + dir = 1; + network = list("SS13") + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/obj/structure/closet/crate/wooden/toy, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"bUi" = ( +/obj/machinery/light/small, +/obj/item/toy/dummy, +/obj/item/toy/prize/honk{ + pixel_y = 12 + }, +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"bUj" = ( +/obj/machinery/firealarm{ + dir = 4; pixel_x = 24 }, -/turf/open/floor/plating, -/area/crew_quarters/toilet/auxiliary) -"bQQ" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"bUk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/item/wrench, /turf/open/floor/plating, /area/maintenance/starboard) -"bQR" = ( +"bUl" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 }, /obj/machinery/portable_atmospherics/canister, /turf/open/floor/plating, /area/maintenance/starboard) -"bQS" = ( +"bUm" = ( /obj/machinery/suit_storage_unit/atmos, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bQT" = ( -/obj/structure/sign/nosmoking_2, +"bUn" = ( +/obj/structure/sign/warning/nosmoking, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/engine/atmos) -"bQU" = ( +"bUo" = ( /obj/machinery/atmospherics/components/trinary/filter{ filter_type = -1; on = 1 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bQV" = ( +"bUp" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 8 }, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmos) -"bQW" = ( +"bUq" = ( /obj/machinery/computer/atmos_control/tank{ dir = 8; frequency = 1441; @@ -45626,44 +48110,54 @@ }, /turf/open/floor/plasteel/purple, /area/engine/atmos) -"bQX" = ( +"bUr" = ( /obj/machinery/air_sensor{ frequency = 1441; id_tag = "tox_sensor" }, /turf/open/floor/engine/plasma, /area/engine/atmos) -"bQY" = ( +"bUs" = ( /obj/machinery/portable_atmospherics/canister/toxins, /turf/open/floor/engine/plasma, /area/engine/atmos) -"bQZ" = ( +"bUt" = ( /obj/machinery/light/small{ dir = 4 }, /turf/open/floor/engine/plasma, /area/engine/atmos) -"bRa" = ( +"bUu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, /area/aisat) -"bRc" = ( +"bUv" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, /turf/open/floor/plating, /area/maintenance/port) -"bRd" = ( +"bUw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bUx" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port) +"bUy" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/port) -"bRe" = ( +"bUz" = ( /obj/item/trash/cheesie, /turf/open/floor/plating, /area/maintenance/port) -"bRf" = ( +"bUA" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; req_access_txt = "12" @@ -45671,22 +48165,22 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port) -"bRg" = ( +"bUB" = ( /obj/machinery/holopad, /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, /turf/open/floor/wood, /area/library) -"bRh" = ( +"bUC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/library) -"bRi" = ( +"bUD" = ( /obj/structure/chair/office/dark, /turf/open/floor/wood, /area/library) -"bRj" = ( +"bUE" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -45697,7 +48191,7 @@ icon_state = "wood-broken" }, /area/library) -"bRk" = ( +"bUF" = ( /obj/machinery/computer/security/telescreen/entertainment{ pixel_x = 30 }, @@ -45707,7 +48201,7 @@ }, /turf/open/floor/wood, /area/library) -"bRl" = ( +"bUG" = ( /obj/structure/table/wood, /obj/item/paper_bin{ pixel_x = -3; @@ -45716,7 +48210,7 @@ /obj/item/pen/invisible, /turf/open/floor/engine/cult, /area/library) -"bRm" = ( +"bUH" = ( /obj/item/device/taperecorder, /obj/item/device/camera, /obj/item/device/radio/intercom{ @@ -45725,13 +48219,13 @@ /obj/structure/table/wood, /turf/open/floor/engine/cult, /area/library) -"bRn" = ( +"bUI" = ( /obj/structure/bookcase{ name = "Forbidden Knowledge" }, /turf/open/floor/engine/cult, /area/library) -"bRo" = ( +"bUJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/item/device/radio/intercom{ dir = 4; @@ -45742,49 +48236,49 @@ dir = 4 }, /area/hallway/primary/central) -"bRp" = ( +"bUK" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bRq" = ( +"bUL" = ( /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bRr" = ( +"bUM" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bRs" = ( +"bUN" = ( /obj/machinery/shieldwallgen, /turf/open/floor/plasteel/vault{ dir = 4 }, /area/teleporter) -"bRt" = ( +"bUO" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/plasteel, /area/teleporter) -"bRu" = ( +"bUP" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/plasteel, /area/teleporter) -"bRv" = ( +"bUQ" = ( /obj/machinery/shieldwallgen, /turf/open/floor/plasteel/vault{ dir = 1 }, /area/teleporter) -"bRw" = ( +"bUR" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -45801,7 +48295,7 @@ }, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bRx" = ( +"bUS" = ( /obj/structure/table/wood, /obj/item/storage/secure/briefcase{ desc = "A large briefcase with a digital locking system, and the Nanotrasen logo emblazoned on the sides."; @@ -45810,11 +48304,11 @@ }, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bRy" = ( +"bUT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bRz" = ( +"bUU" = ( /obj/structure/showcase/machinery/microwave{ dir = 1; pixel_y = 2 @@ -45822,7 +48316,7 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bRA" = ( +"bUV" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -45835,7 +48329,7 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bRB" = ( +"bUW" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -45853,7 +48347,7 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bRC" = ( +"bUX" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -45878,7 +48372,7 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bRD" = ( +"bUY" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -45890,7 +48384,7 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bRE" = ( +"bUZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-8" @@ -45901,7 +48395,7 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bRF" = ( +"bVa" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -45925,7 +48419,7 @@ }, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bRG" = ( +"bVb" = ( /obj/item/book/manual/wiki/security_space_law{ name = "space law"; pixel_y = 2 @@ -45952,7 +48446,7 @@ }, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bRH" = ( +"bVc" = ( /obj/structure/table, /obj/item/storage/fancy/donut_box, /obj/machinery/firealarm{ @@ -45966,7 +48460,7 @@ dir = 1 }, /area/gateway) -"bRI" = ( +"bVd" = ( /obj/structure/table, /obj/machinery/recharger, /obj/effect/turf_decal/bot{ @@ -45976,7 +48470,7 @@ dir = 1 }, /area/gateway) -"bRJ" = ( +"bVe" = ( /obj/structure/table, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high{ @@ -45990,7 +48484,7 @@ dir = 1 }, /area/gateway) -"bRK" = ( +"bVf" = ( /obj/item/storage/belt/utility, /obj/item/device/radio/off, /obj/item/device/radio/off, @@ -46009,13 +48503,13 @@ dir = 1 }, /area/gateway) -"bRL" = ( +"bVg" = ( /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plasteel, /area/gateway) -"bRM" = ( +"bVh" = ( /obj/machinery/airalarm{ dir = 8; pixel_x = 24 @@ -46030,7 +48524,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bRN" = ( +"bVi" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -46038,7 +48532,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/central) -"bRO" = ( +"bVj" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/firealarm{ dir = 8; @@ -46048,7 +48542,7 @@ dir = 1 }, /area/hallway/primary/central) -"bRP" = ( +"bVk" = ( /obj/structure/table, /obj/item/reagent_containers/food/snacks/mint, /obj/machinery/airalarm{ @@ -46066,7 +48560,7 @@ dir = 2 }, /area/crew_quarters/kitchen) -"bRQ" = ( +"bVl" = ( /obj/structure/table, /obj/item/reagent_containers/glass/beaker{ pixel_x = 5 @@ -46078,7 +48572,7 @@ dir = 2 }, /area/crew_quarters/kitchen) -"bRR" = ( +"bVm" = ( /obj/structure/table, /obj/item/stack/packageWrap, /obj/item/hand_labeler, @@ -46092,7 +48586,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bRS" = ( +"bVn" = ( /obj/structure/table, /obj/item/reagent_containers/food/condiment/saltshaker{ pixel_x = -3 @@ -46110,7 +48604,7 @@ dir = 2 }, /area/crew_quarters/kitchen) -"bRT" = ( +"bVo" = ( /obj/structure/extinguisher_cabinet{ pixel_y = -30 }, @@ -46120,7 +48614,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bRU" = ( +"bVp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -46134,7 +48628,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bRV" = ( +"bVq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -46144,12 +48638,11 @@ /obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/effect/turf_decal/bot, /turf/open/floor/plasteel/cafeteria{ dir = 5 }, /area/crew_quarters/kitchen) -"bRW" = ( +"bVr" = ( /obj/machinery/door/airlock{ name = "Kitchen Cold Room"; req_access_txt = "28" @@ -46165,7 +48658,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bRX" = ( +"bVs" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -46181,7 +48674,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bRY" = ( +"bVt" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -46202,7 +48695,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bRZ" = ( +"bVu" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -46218,7 +48711,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bSa" = ( +"bVv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -46230,7 +48723,22 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bSc" = ( +"bVw" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 28 + }, +/obj/structure/reagent_dispensers/cooking_oil, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"bVx" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -46240,22 +48748,26 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard) -"bSd" = ( +"bVy" = ( /obj/machinery/portable_atmospherics/canister, /turf/open/floor/plating, /area/maintenance/starboard) -"bSe" = ( +"bVz" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bVA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/starboard) -"bSf" = ( +"bVB" = ( /obj/item/crowbar, /turf/open/floor/plating{ icon_state = "platingdmg1" }, /area/maintenance/starboard) -"bSg" = ( +"bVC" = ( /obj/structure/fireaxecabinet{ pixel_x = -32 }, @@ -46271,7 +48783,7 @@ dir = 8 }, /area/engine/atmos) -"bSh" = ( +"bVD" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -46287,7 +48799,7 @@ dir = 1 }, /area/engine/atmos) -"bSi" = ( +"bVE" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4 }, @@ -46295,7 +48807,7 @@ /obj/item/wrench, /turf/open/floor/plasteel, /area/engine/atmos) -"bSj" = ( +"bVF" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1; filter_type = "plasma"; @@ -46307,7 +48819,14 @@ /obj/structure/window/reinforced, /turf/open/floor/plasteel/purple, /area/engine/atmos) -"bSk" = ( +"bVG" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bVH" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 8; frequency = 1441; @@ -46316,7 +48835,7 @@ }, /turf/open/floor/engine/plasma, /area/engine/atmos) -"bSl" = ( +"bVI" = ( /obj/machinery/camera{ c_tag = "Atmospherics Tank - Toxins"; dir = 8; @@ -46324,7 +48843,18 @@ }, /turf/open/floor/engine/plasma, /area/engine/atmos) -"bSn" = ( +"bVJ" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 11; + height = 15; + id = "whiteship_home"; + name = "SS13: Auxiliary Dock, Station-Port"; + width = 28 + }, +/turf/open/space/basic, +/area/space) +"bVK" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -46335,7 +48865,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/port) -"bSo" = ( +"bVL" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -46344,16 +48874,17 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bSp" = ( +"bVM" = ( /obj/structure/cable/yellow{ - icon_state = "1-8" + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 + dir = 4 }, +/obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port) -"bSq" = ( +"bVN" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -46363,7 +48894,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/port) -"bSr" = ( +"bVO" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -46372,7 +48903,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bSs" = ( +"bVP" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -46384,7 +48915,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bSt" = ( +"bVQ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -46395,7 +48926,20 @@ icon_state = "platingdmg1" }, /area/maintenance/port) -"bSu" = ( +"bVR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port) +"bVS" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -46406,7 +48950,7 @@ icon_state = "panelscorched" }, /area/maintenance/port) -"bSv" = ( +"bVT" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -46418,48 +48962,50 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bSw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, +"bVU" = ( +/obj/item/storage/box, /turf/open/floor/plating, /area/maintenance/port) -"bSx" = ( +"bVV" = ( /obj/machinery/newscaster{ pixel_x = -32 }, +/obj/effect/landmark/event_spawn, /turf/open/floor/wood, /area/library) -"bSy" = ( +"bVW" = ( /obj/structure/chair/office/dark{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/library) -"bSz" = ( +"bVX" = ( /obj/structure/table/wood, /obj/item/folder, /obj/item/folder, /obj/item/pen, /turf/open/floor/wood, /area/library) -"bSA" = ( +"bVY" = ( /obj/structure/table/wood, /obj/item/storage/crayons, /turf/open/floor/wood, /area/library) -"bSB" = ( +"bVZ" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/wood, +/area/library) +"bWa" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/library) -"bSC" = ( +"bWb" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /obj/item/device/radio/intercom{ @@ -46469,7 +49015,7 @@ }, /turf/open/floor/wood, /area/library) -"bSD" = ( +"bWc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/firealarm{ dir = 8; @@ -46479,7 +49025,7 @@ dir = 8 }, /area/hallway/primary/central) -"bSE" = ( +"bWd" = ( /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters{ id = "evashutter"; @@ -46488,7 +49034,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bSF" = ( +"bWe" = ( /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters{ id = "evashutter"; @@ -46503,7 +49049,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bSG" = ( +"bWf" = ( /obj/machinery/door/poddoor/shutters{ id = "teleshutter"; name = "Teleporter Access Shutter" @@ -46511,7 +49057,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/teleporter) -"bSH" = ( +"bWg" = ( /obj/machinery/door/poddoor/shutters{ id = "teleshutter"; name = "Teleporter Access Shutter" @@ -46526,7 +49072,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/teleporter) -"bSI" = ( +"bWh" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/machinery/door/poddoor/shutters/preopen{ @@ -46535,7 +49081,11 @@ }, /turf/open/floor/plating, /area/bridge/showroom/corporate) -"bSK" = ( +"bWi" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/bridge/showroom/corporate) +"bWj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -46544,7 +49094,7 @@ }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bSM" = ( +"bWk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -46553,7 +49103,7 @@ }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bSO" = ( +"bWl" = ( /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters{ id = "gateshutter"; @@ -46562,7 +49112,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/gateway) -"bSP" = ( +"bWm" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -46573,25 +49123,25 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/central) -"bSQ" = ( +"bWn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/neutral/corner{ dir = 1 }, /area/hallway/primary/central) -"bSR" = ( +"bWo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/green/corner{ dir = 2 }, /area/hallway/primary/central) -"bSS" = ( +"bWp" = ( /turf/closed/wall, /area/hallway/primary/central) -"bST" = ( +"bWq" = ( /turf/closed/wall, /area/hydroponics) -"bSU" = ( +"bWr" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "kitchenhydro"; name = "Service Shutter" @@ -46605,7 +49155,11 @@ dir = 5 }, /area/hydroponics) -"bSV" = ( +"bWs" = ( +/obj/structure/sign/poster/official/random, +/turf/closed/wall, +/area/hydroponics) +"bWt" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/eastleft{ dir = 1; @@ -46625,11 +49179,11 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hydroponics) -"bSW" = ( +"bWu" = ( /obj/machinery/smartfridge, -/turf/open/floor/plating, +/turf/closed/wall, /area/hydroponics) -"bSX" = ( +"bWv" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -46638,7 +49192,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/kitchen) -"bSY" = ( +"bWw" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -46654,7 +49208,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/kitchen) -"bSZ" = ( +"bWx" = ( /obj/machinery/door/airlock/maintenance{ name = "Kitchen Maintenance"; req_access_txt = "28" @@ -46667,13 +49221,10 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bTa" = ( +"bWy" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -46686,7 +49237,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bTb" = ( +"bWz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -46698,7 +49249,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bTc" = ( +"bWA" = ( /obj/machinery/power/apc{ dir = 1; name = "Starboard Maintenance APC"; @@ -46709,24 +49260,30 @@ /obj/structure/cable/yellow{ icon_state = "0-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bTd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard) -"bTe" = ( +"bWB" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bWC" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -46736,30 +49293,42 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, /turf/open/floor/plating, /area/maintenance/starboard) -"bTf" = ( +"bWD" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 2 }, /obj/machinery/meter, /turf/open/floor/plating, /area/maintenance/starboard) -"bTg" = ( +"bWE" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 }, /turf/open/floor/plating, /area/maintenance/starboard) -"bTh" = ( +"bWF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/starboard) -"bTi" = ( +"bWG" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bWH" = ( /obj/structure/closet/wardrobe/atmospherics_yellow, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"bTj" = ( +"bWI" = ( +/turf/open/floor/plasteel/caution{ + dir = 8 + }, +/area/engine/atmos) +"bWJ" = ( /obj/machinery/requests_console{ department = "Atmospherics"; departmentType = 4; @@ -46776,7 +49345,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bTk" = ( +"bWK" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; name = "Port to Filter"; @@ -46792,22 +49361,32 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bTl" = ( +"bWL" = ( /obj/machinery/atmospherics/components/unary/thermomachine/heater{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bTm" = ( +"bWM" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/door/window/northleft{ + dir = 8; + icon_state = "left"; + name = "Inner Pipe Access"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"bWN" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/lattice/catwalk, /obj/structure/window/reinforced, /turf/open/space, /area/aisat) -"bTn" = ( +"bWO" = ( /turf/closed/wall, /area/maintenance/solars/port/aft) -"bTo" = ( +"bWP" = ( /obj/machinery/door/airlock/engineering{ name = "Port Quarter Solar Access"; req_access_txt = "10" @@ -46818,21 +49397,11 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"bTp" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, +"bWQ" = ( +/obj/structure/sign/warning/electricshock, /turf/closed/wall, /area/maintenance/solars/port/aft) -"bTq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"bTr" = ( +"bWR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; @@ -46840,26 +49409,32 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bTs" = ( -/turf/closed/wall, -/area/maintenance/aft) -"bTt" = ( -/obj/item/storage/box, +"bWS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, /turf/open/floor/plating, /area/maintenance/port) -"bTv" = ( +"bWT" = ( +/turf/closed/wall, +/area/maintenance/port/aft) +"bWU" = ( /obj/structure/rack, /obj/item/paper, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port) -"bTw" = ( +"bWV" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/wood, /area/library) -"bTx" = ( +"bWW" = ( /obj/structure/chair/office/dark{ dir = 4 }, @@ -46872,7 +49447,7 @@ }, /turf/open/floor/wood, /area/library) -"bTy" = ( +"bWX" = ( /obj/machinery/firealarm{ dir = 1; pixel_y = -24 @@ -46884,12 +49459,12 @@ /obj/structure/table/wood, /turf/open/floor/wood, /area/library) -"bTz" = ( +"bWY" = ( /obj/structure/table/wood, /obj/machinery/light, /turf/open/floor/wood, /area/library) -"bTA" = ( +"bWZ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -46901,7 +49476,7 @@ }, /turf/open/floor/wood, /area/library) -"bTB" = ( +"bXa" = ( /obj/machinery/door/airlock/maintenance{ name = "Library Maintenance"; req_access_txt = "0"; @@ -46915,7 +49490,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bTC" = ( +"bXb" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -46927,14 +49502,14 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bTD" = ( +"bXc" = ( /obj/machinery/vending/snack/random, /obj/machinery/newscaster{ pixel_x = -30 }, /turf/open/floor/plasteel/dark, /area/hallway/primary/central) -"bTE" = ( +"bXd" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -46945,7 +49520,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bTF" = ( +"bXe" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -46953,7 +49528,7 @@ dir = 4 }, /area/hallway/primary/central) -"bTG" = ( +"bXf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -46961,7 +49536,7 @@ dir = 4 }, /area/hallway/primary/central) -"bTH" = ( +"bXg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -46974,7 +49549,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bTI" = ( +"bXh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -46983,7 +49558,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bTJ" = ( +"bXi" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -46992,7 +49567,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bTK" = ( +"bXj" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -47001,7 +49576,7 @@ dir = 4 }, /area/hallway/primary/central) -"bTL" = ( +"bXk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -47013,7 +49588,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bTM" = ( +"bXl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -47028,7 +49603,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bTN" = ( +"bXm" = ( /obj/machinery/light{ dir = 1 }, @@ -47042,7 +49617,7 @@ dir = 4 }, /area/hallway/primary/central) -"bTO" = ( +"bXn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -47051,7 +49626,18 @@ dir = 1 }, /area/hallway/primary/central) -"bTP" = ( +"bXo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/hallway/primary/central) +"bXp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -47059,7 +49645,7 @@ dir = 1 }, /area/hallway/primary/central) -"bTQ" = ( +"bXq" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -47067,7 +49653,7 @@ dir = 1 }, /area/hallway/primary/central) -"bTR" = ( +"bXr" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -47075,7 +49661,7 @@ dir = 1 }, /area/hallway/primary/central) -"bTS" = ( +"bXs" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -47083,7 +49669,7 @@ dir = 1 }, /area/hallway/primary/central) -"bTT" = ( +"bXt" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -47097,7 +49683,7 @@ dir = 1 }, /area/hallway/primary/central) -"bTU" = ( +"bXu" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -47114,7 +49700,7 @@ dir = 1 }, /area/hallway/primary/central) -"bTV" = ( +"bXv" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -47127,7 +49713,7 @@ dir = 1 }, /area/hallway/primary/central) -"bTW" = ( +"bXw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -47140,7 +49726,7 @@ dir = 1 }, /area/hallway/primary/central) -"bTX" = ( +"bXx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -47154,7 +49740,7 @@ dir = 1 }, /area/hallway/primary/central) -"bTY" = ( +"bXy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -47170,13 +49756,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bTZ" = ( -/obj/structure/bookcase{ - name = "bookcase" - }, -/turf/open/floor/wood, -/area/bridge/showroom/corporate) -"bUa" = ( +"bXz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -47188,7 +49768,7 @@ dir = 1 }, /area/hallway/primary/central) -"bUb" = ( +"bXA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -47196,9 +49776,9 @@ dir = 1 }, /area/hallway/primary/central) -"bUc" = ( +"bXB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/botany{ +/obj/structure/sign/departments/botany{ pixel_x = 32; pixel_y = 32 }, @@ -47206,7 +49786,7 @@ dir = 4 }, /area/hallway/primary/central) -"bUd" = ( +"bXC" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -2; @@ -47215,11 +49795,11 @@ /obj/item/pen, /turf/open/floor/plasteel/green, /area/hallway/primary/central) -"bUe" = ( +"bXD" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/hydroponics) -"bUf" = ( +"bXE" = ( /obj/machinery/vending/hydroseeds{ slogan_delay = 700 }, @@ -47231,7 +49811,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics) -"bUg" = ( +"bXF" = ( /obj/machinery/vending/hydronutrients, /obj/machinery/light{ dir = 1 @@ -47239,11 +49819,11 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics) -"bUh" = ( +"bXG" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics) -"bUi" = ( +"bXH" = ( /obj/item/storage/box/syringes, /obj/item/storage/box/beakers{ pixel_x = 2; @@ -47253,23 +49833,18 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics) -"bUj" = ( +"bXI" = ( /obj/machinery/reagentgrinder, /obj/structure/table/glass, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics) -"bUk" = ( +"bXJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics) -"bUl" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hydroponics) -"bUm" = ( +"bXK" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/chem_master/condimaster{ desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; @@ -47278,7 +49853,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"bUn" = ( +"bXL" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/reagent_dispensers/watertank/high, /obj/item/reagent_containers/glass/bucket, @@ -47287,7 +49862,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"bUo" = ( +"bXM" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/window/reinforced{ dir = 4 @@ -47296,7 +49871,7 @@ /obj/item/reagent_containers/glass/bucket, /turf/open/floor/plasteel, /area/hydroponics) -"bUp" = ( +"bXN" = ( /obj/structure/closet{ name = "spare parts locker" }, @@ -47312,7 +49887,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/crew_quarters/kitchen) -"bUq" = ( +"bXO" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, @@ -47327,7 +49902,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/crew_quarters/kitchen) -"bUr" = ( +"bXP" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; dir = 8; @@ -47350,36 +49925,39 @@ dir = 1 }, /area/crew_quarters/kitchen) -"bUs" = ( +"bXQ" = ( /obj/structure/disposalpipe/sorting/mail{ dir = 2; sortType = 20 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bUt" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 + dir = 4 }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bXR" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, /obj/structure/disposalpipe/segment{ dir = 5 }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, /turf/open/floor/plating, /area/maintenance/starboard) -"bUu" = ( +"bXS" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -47389,56 +49967,73 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, /turf/open/floor/plating, /area/maintenance/starboard) -"bUv" = ( +"bXT" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plating{ icon_state = "panelscorched" }, /area/maintenance/starboard) -"bUw" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"bUx" = ( +"bXU" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bXV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bXW" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard) -"bUy" = ( +"bXX" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 }, /obj/machinery/portable_atmospherics/canister, /turf/open/floor/plating, /area/maintenance/starboard) -"bUz" = ( +"bXY" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"bUA" = ( +"bXZ" = ( /obj/machinery/pipedispenser, /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bUB" = ( +"bYa" = ( /obj/machinery/light{ dir = 1 }, @@ -47450,7 +50045,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/engine/atmos) -"bUC" = ( +"bYb" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -47463,7 +50058,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bUD" = ( +"bYc" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; name = "Port to Filter"; @@ -47471,25 +50066,25 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bUE" = ( +"bYd" = ( /obj/item/cigbutt, /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bUF" = ( +"bYe" = ( /obj/machinery/atmospherics/components/unary/thermomachine/heater{ dir = 4; on = 1 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bUG" = ( +"bYf" = ( /obj/machinery/atmospherics/pipe/manifold4w/yellow/visible, /turf/open/floor/plasteel, /area/engine/atmos) -"bUH" = ( +"bYg" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; name = "CO2 to Pure"; @@ -47505,7 +50100,7 @@ }, /turf/open/floor/plasteel/vault, /area/engine/atmos) -"bUI" = ( +"bYh" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 8; frequency = 1441; @@ -47514,28 +50109,47 @@ }, /turf/open/floor/engine/co2, /area/engine/atmos) -"bUJ" = ( +"bYi" = ( /turf/open/floor/engine/co2, /area/engine/atmos) -"bUK" = ( +"bYj" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/aisat) -"bUL" = ( -/obj/machinery/telecomms/server/presets/security, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bUM" = ( +"bYk" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bYl" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Aft"; + dir = 2; + network = list("MiniSat") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bYm" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/aisat) -"bUN" = ( +"bYn" = ( /obj/machinery/power/apc{ dir = 8; name = "Port Quarter Solar APC"; @@ -47550,7 +50164,7 @@ icon_state = "platingdmg1" }, /area/maintenance/solars/port/aft) -"bUO" = ( +"bYo" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -47563,14 +50177,14 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"bUP" = ( +"bYp" = ( /obj/structure/cable/yellow{ icon_state = "0-8" }, /obj/machinery/power/smes, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"bUQ" = ( +"bYq" = ( /obj/item/cigbutt, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 @@ -47580,7 +50194,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bUR" = ( +"bYr" = ( /obj/structure/closet, /obj/item/storage/box/donkpockets, /obj/effect/spawner/lootdrop/maintenance{ @@ -47589,7 +50203,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bUS" = ( +"bYs" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "0"; req_one_access_txt = "12;5;39;25;28" @@ -47600,7 +50214,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bUT" = ( +"bYt" = ( /obj/structure/rack, /obj/item/weldingtool, /obj/item/screwdriver{ @@ -47609,23 +50223,23 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"bUU" = ( +"bYu" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bUV" = ( +"bYv" = ( /obj/machinery/recharge_station, /turf/open/floor/plating, /area/maintenance/port/aft) -"bUW" = ( +"bYw" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bUX" = ( +"bYx" = ( /obj/structure/rack, /obj/item/stack/cable_coil{ pixel_x = -1; @@ -47636,12 +50250,19 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"bUY" = ( +"bYy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"bYz" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /turf/open/floor/plasteel/dark, /area/hallway/primary/central) -"bUZ" = ( +"bYA" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -47654,7 +50275,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bVa" = ( +"bYB" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -47663,7 +50284,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bVb" = ( +"bYC" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -47672,7 +50293,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bVc" = ( +"bYD" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -47681,7 +50302,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bVd" = ( +"bYE" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -47691,7 +50312,7 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bVe" = ( +"bYF" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -47701,7 +50322,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bVf" = ( +"bYG" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -47710,7 +50331,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bVg" = ( +"bYH" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -47723,7 +50344,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bVh" = ( +"bYI" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -47735,7 +50356,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bVi" = ( +"bYJ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -47749,7 +50370,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bVj" = ( +"bYK" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -47758,7 +50379,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bVk" = ( +"bYL" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -47767,7 +50388,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bVl" = ( +"bYM" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -47780,7 +50401,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bVm" = ( +"bYN" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -47789,7 +50410,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bVn" = ( +"bYO" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -47799,7 +50420,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bVo" = ( +"bYP" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -47815,7 +50436,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bVp" = ( +"bYQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "2-8" @@ -47824,10 +50445,10 @@ dir = 4 }, /area/hallway/primary/central) -"bVq" = ( +"bYR" = ( /turf/open/floor/plasteel/green, /area/hallway/primary/central) -"bVr" = ( +"bYS" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, /obj/machinery/door/window/westleft{ @@ -47840,22 +50461,22 @@ dir = 4 }, /area/hydroponics) -"bVs" = ( +"bYT" = ( /turf/open/floor/plasteel/green/side{ dir = 9 }, /area/hydroponics) -"bVt" = ( +"bYU" = ( /turf/open/floor/plasteel/green/side{ dir = 5 }, /area/hydroponics) -"bVu" = ( +"bYV" = ( /turf/open/floor/plasteel/green/side{ dir = 1 }, /area/hydroponics) -"bVv" = ( +"bYW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -47863,7 +50484,7 @@ dir = 5 }, /area/hydroponics) -"bVw" = ( +"bYX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -47871,7 +50492,7 @@ dir = 9 }, /area/hydroponics) -"bVx" = ( +"bYY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -47879,7 +50500,7 @@ dir = 1 }, /area/hydroponics) -"bVy" = ( +"bYZ" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 @@ -47891,19 +50512,27 @@ dir = 2 }, /area/hydroponics) -"bVz" = ( +"bZa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/hallway/secondary/service) +"bZb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock{ + name = "Service Hall"; + req_access_txt = "null"; + req_one_access_txt = "25;26;35;28" + }, /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, /turf/open/floor/plating, -/area/maintenance/starboard) -"bVA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bVB" = ( +/area/hallway/secondary/service) +"bZc" = ( +/turf/closed/wall, +/area/hallway/secondary/service) +"bZd" = ( /obj/structure/rack, /obj/item/extinguisher, /obj/item/storage/belt/utility, @@ -47912,17 +50541,44 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard) -"bVC" = ( +"bZe" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bZf" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bZg" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/maintenance/starboard) -"bVE" = ( +"bZh" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/storage/box/lights/mixed, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bZi" = ( /obj/structure/closet/crate, /obj/item/storage/belt/utility, /obj/item/stack/cable_coil/random, /turf/open/floor/plating, /area/maintenance/starboard) -"bVF" = ( +"bZj" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Storage Room"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bZk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 6 }, @@ -47953,7 +50609,7 @@ dir = 9 }, /area/engine/atmos) -"bVG" = ( +"bZl" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 1 }, @@ -47961,7 +50617,7 @@ dir = 1 }, /area/engine/atmos) -"bVH" = ( +"bZm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, @@ -47970,7 +50626,7 @@ dir = 1 }, /area/engine/atmos) -"bVI" = ( +"bZn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, @@ -47978,7 +50634,7 @@ dir = 1 }, /area/engine/atmos) -"bVJ" = ( +"bZo" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 2 }, @@ -47988,13 +50644,13 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bVK" = ( +"bZp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bVL" = ( +"bZq" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; name = "Port to Fuel Pipe"; @@ -48002,7 +50658,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bVM" = ( +"bZr" = ( /obj/machinery/computer/atmos_control/tank{ dir = 8; frequency = 1441; @@ -48017,24 +50673,34 @@ }, /turf/open/floor/plasteel/vault, /area/engine/atmos) -"bVN" = ( +"bZs" = ( /obj/machinery/air_sensor{ frequency = 1441; id_tag = "co2_sensor" }, /turf/open/floor/engine/co2, /area/engine/atmos) -"bVO" = ( +"bZt" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /turf/open/floor/engine/co2, /area/engine/atmos) -"bVP" = ( +"bZu" = ( /obj/machinery/light/small{ dir = 4 }, /turf/open/floor/engine/co2, /area/engine/atmos) -"bVQ" = ( +"bZv" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bZw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bZx" = ( /obj/structure/chair/stool, /obj/structure/cable{ icon_state = "2-4" @@ -48046,7 +50712,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"bVR" = ( +"bZy" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -48056,7 +50722,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"bVS" = ( +"bZz" = ( /obj/machinery/power/terminal{ dir = 1 }, @@ -48073,20 +50739,20 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"bVT" = ( +"bZA" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/port) -"bVU" = ( +"bZB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating{ icon_state = "panelscorched" }, /area/maintenance/port) -"bVV" = ( +"bZC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -48096,28 +50762,39 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bVW" = ( +"bZD" = ( /turf/open/floor/plating{ icon_state = "platingdmg1" }, /area/maintenance/port/aft) -"bVX" = ( +"bZE" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bVZ" = ( +"bZF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bZG" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bWa" = ( +"bZH" = ( /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/port/aft) -"bWb" = ( +"bZI" = ( +/obj/item/hand_labeler_refill, +/obj/structure/easel, +/turf/open/floor/plating, +/area/maintenance/port) +"bZJ" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -48126,7 +50803,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bWc" = ( +"bZK" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48141,7 +50818,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bWd" = ( +"bZL" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48153,7 +50830,23 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bWe" = ( +"bZM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port) +"bZN" = ( /obj/structure/disposalpipe/sorting/mail/flip{ dir = 4; sortType = 16 @@ -48169,7 +50862,22 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bWf" = ( +"bZO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bZP" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48185,7 +50893,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bWg" = ( +"bZQ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48197,7 +50905,7 @@ }, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"bWh" = ( +"bZR" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48211,7 +50919,7 @@ dir = 8 }, /area/hallway/primary/central) -"bWi" = ( +"bZS" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -48230,7 +50938,7 @@ dir = 8 }, /area/hallway/primary/central) -"bWj" = ( +"bZT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -48238,7 +50946,7 @@ dir = 8 }, /area/hallway/primary/central) -"bWk" = ( +"bZU" = ( /obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -48247,7 +50955,7 @@ dir = 8 }, /area/hallway/primary/central) -"bWl" = ( +"bZV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -48259,7 +50967,7 @@ dir = 8 }, /area/hallway/primary/central) -"bWm" = ( +"bZW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -48270,7 +50978,7 @@ dir = 8 }, /area/hallway/primary/central) -"bWn" = ( +"bZX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -48279,13 +50987,13 @@ dir = 8 }, /area/hallway/primary/central) -"bWo" = ( +"bZY" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bWp" = ( +"bZZ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -48294,14 +51002,14 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bWq" = ( +"caa" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bWr" = ( +"cab" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -48310,7 +51018,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bWs" = ( +"cac" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -48319,7 +51027,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bWt" = ( +"cad" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -48328,20 +51036,19 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bWu" = ( +"cae" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/effect/landmark/lightsout, /obj/effect/turf_decal/plaque{ icon_state = "L8" }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bWv" = ( +"caf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -48351,7 +51058,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bWw" = ( +"cag" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -48360,7 +51067,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bWx" = ( +"cah" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -48369,13 +51076,13 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bWy" = ( +"cai" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bWz" = ( +"caj" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -48388,7 +51095,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bWA" = ( +"cak" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -48397,7 +51104,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bWB" = ( +"cal" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -48408,7 +51115,7 @@ dir = 2 }, /area/hallway/primary/central) -"bWC" = ( +"cam" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -48420,7 +51127,7 @@ dir = 2 }, /area/hallway/primary/central) -"bWD" = ( +"can" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -48431,7 +51138,7 @@ dir = 2 }, /area/hallway/primary/central) -"bWE" = ( +"cao" = ( /obj/machinery/light, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 @@ -48448,7 +51155,7 @@ dir = 2 }, /area/hallway/primary/central) -"bWF" = ( +"cap" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -48456,7 +51163,7 @@ dir = 2 }, /area/hallway/primary/central) -"bWG" = ( +"caq" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -48468,7 +51175,7 @@ dir = 2 }, /area/hallway/primary/central) -"bWH" = ( +"car" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -48476,7 +51183,7 @@ dir = 2 }, /area/hallway/primary/central) -"bWI" = ( +"cas" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -48487,13 +51194,13 @@ dir = 6 }, /area/hallway/primary/central) -"bWJ" = ( +"cat" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/green, /area/hallway/primary/central) -"bWK" = ( +"cau" = ( /obj/structure/table/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -48517,7 +51224,7 @@ dir = 4 }, /area/hydroponics) -"bWL" = ( +"cav" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -48529,7 +51236,7 @@ dir = 10 }, /area/hydroponics) -"bWM" = ( +"caw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -48537,7 +51244,7 @@ dir = 6 }, /area/hydroponics) -"bWN" = ( +"cax" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -48545,64 +51252,109 @@ dir = 8 }, /area/hydroponics) -"bWO" = ( +"cay" = ( /obj/machinery/hydroponics/constructable, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/hydroponics) -"bWP" = ( +"caz" = ( /obj/machinery/hydroponics/constructable, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/open/floor/plasteel, /area/hydroponics) -"bWQ" = ( +"caA" = ( /turf/open/floor/plasteel/green/side{ dir = 4 }, /area/hydroponics) -"bWR" = ( +"caB" = ( +/obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/green/side{ dir = 8 }, /area/hydroponics) -"bWS" = ( +"caC" = ( /obj/machinery/hydroponics/constructable, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/hydroponics) -"bWT" = ( +"caD" = ( /obj/machinery/hydroponics/constructable, /turf/open/floor/plasteel, /area/hydroponics) -"bWU" = ( +"caE" = ( /obj/machinery/seed_extractor, /obj/effect/turf_decal/stripes/line{ dir = 9 }, /turf/open/floor/plasteel, /area/hydroponics) -"bWV" = ( +"caF" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, /obj/structure/closet/wardrobe/botanist, /turf/open/floor/plasteel/hydrofloor, /area/hydroponics) -"bWX" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" +"caG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/firealarm{ + pixel_y = 29 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/obj/structure/closet/crate/hydroponics, +/obj/item/shovel/spade, +/obj/item/wrench, +/obj/item/reagent_containers/glass/bucket, +/obj/item/cultivator, +/obj/item/wirecutters, +/turf/open/floor/plasteel/hydrofloor, +/area/hydroponics) +"caH" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "platingdmg1" +/obj/structure/table, +/obj/item/storage/bag/plants, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 }, -/area/maintenance/starboard) -"bWY" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"caI" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"caJ" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/hallway/secondary/service"; + dir = 1; + name = "Service Hall APC"; + pixel_y = 25 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"caK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -48614,7 +51366,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bWZ" = ( +"caL" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48628,7 +51380,7 @@ icon_state = "platingdmg2" }, /area/maintenance/starboard) -"bXa" = ( +"caM" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48640,7 +51392,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bXb" = ( +"caN" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48655,7 +51407,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bXc" = ( +"caO" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48665,7 +51417,7 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plating, /area/maintenance/starboard) -"bXd" = ( +"caP" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48680,7 +51432,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bXe" = ( +"caQ" = ( /obj/machinery/door/airlock/maintenance{ name = "Atmospherics Maintenance"; req_access_txt = "24" @@ -48696,7 +51448,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bXf" = ( +"caR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -48711,7 +51463,7 @@ dir = 8 }, /area/engine/atmos) -"bXg" = ( +"caS" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48726,7 +51478,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bXh" = ( +"caT" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48740,7 +51492,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bXi" = ( +"caU" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48749,7 +51501,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bXj" = ( +"caV" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -48758,14 +51510,14 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bXk" = ( +"caW" = ( /obj/effect/landmark/start/atmospheric_technician, /obj/machinery/atmospherics/pipe/simple/dark/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bXl" = ( +"caX" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -48774,20 +51526,27 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bXm" = ( +"caY" = ( /obj/machinery/atmospherics/pipe/simple/dark/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bXn" = ( +"caZ" = ( +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cba" = ( /obj/machinery/atmospherics/pipe/manifold/dark/visible, /obj/machinery/meter{ color = "" }, /turf/open/floor/plasteel, /area/engine/atmos) -"bXo" = ( +"cbb" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; name = "Pure to Fuel Pipe"; @@ -48795,13 +51554,13 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bXp" = ( +"cbc" = ( /obj/machinery/atmospherics/pipe/manifold/yellow/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bXq" = ( +"cbd" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1; filter_type = "co2"; @@ -48813,7 +51572,7 @@ /obj/structure/window/reinforced, /turf/open/floor/plasteel/vault, /area/engine/atmos) -"bXr" = ( +"cbe" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 8; frequency = 1441; @@ -48822,7 +51581,7 @@ }, /turf/open/floor/engine/co2, /area/engine/atmos) -"bXs" = ( +"cbf" = ( /obj/machinery/camera{ c_tag = "Atmospherics Tank - CO2"; dir = 8; @@ -48830,7 +51589,19 @@ }, /turf/open/floor/engine/co2, /area/engine/atmos) -"bXt" = ( +"cbg" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/aisat) +"cbh" = ( +/obj/structure/window/reinforced, +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/aisat) +"cbi" = ( /obj/machinery/power/solar_control{ dir = 1; id = "aftport"; @@ -48843,7 +51614,7 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"bXu" = ( +"cbj" = ( /obj/structure/cable{ icon_state = "2-8" }, @@ -48852,28 +51623,30 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"bXv" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +"cbk" = ( +/obj/structure/sign/warning/vacuum/external{ pixel_x = 32 }, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"bXx" = ( +"cbl" = ( +/obj/structure/rack, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"cbm" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/port) -"bXy" = ( +"cbn" = ( /obj/structure/closet, /obj/item/device/flashlight, /turf/open/floor/plating, /area/maintenance/port/aft) -"bXz" = ( +"cbo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -48883,22 +51656,22 @@ icon_state = "panelscorched" }, /area/maintenance/port/aft) -"bXA" = ( +"cbp" = ( /obj/structure/table, /obj/item/device/flashlight/lamp, /turf/open/floor/plating, /area/maintenance/port/aft) -"bXB" = ( +"cbq" = ( /obj/structure/chair/stool, /turf/open/floor/plating, /area/maintenance/port/aft) -"bXC" = ( +"cbr" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bXD" = ( +"cbs" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -48906,15 +51679,15 @@ icon_state = "platingdmg2" }, /area/maintenance/port/aft) -"bXE" = ( +"cbt" = ( /turf/open/floor/plating, /area/maintenance/port/aft) -"bXF" = ( +"cbu" = ( /obj/structure/girder, /obj/structure/grille, /turf/open/floor/plating, /area/maintenance/port/aft) -"bXG" = ( +"cbv" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -48925,33 +51698,33 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bXH" = ( +"cbw" = ( /obj/structure/closet/crate, /obj/item/coin/silver, /obj/item/device/flashlight, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port) -"bXI" = ( +"cbx" = ( /obj/structure/closet, /obj/item/clothing/neck/stethoscope, /obj/item/hemostat, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port) -"bXJ" = ( +"cby" = ( /obj/item/storage/box/lights/mixed, /turf/open/floor/plating{ icon_state = "platingdmg3" }, /area/maintenance/port) -"bXK" = ( +"cbz" = ( /turf/closed/wall, /area/medical/storage) -"bXL" = ( +"cbA" = ( /turf/closed/wall, /area/security/checkpoint/medical) -"bXM" = ( +"cbB" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, @@ -48962,12 +51735,12 @@ dir = 8 }, /area/hallway/primary/central) -"bXN" = ( +"cbC" = ( /turf/open/floor/plasteel/blue/corner{ dir = 8 }, /area/hallway/primary/central) -"bXO" = ( +"cbD" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -48976,13 +51749,13 @@ dir = 8 }, /area/hallway/primary/central) -"bXP" = ( +"cbE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/blue/corner{ dir = 8 }, /area/hallway/primary/central) -"bXQ" = ( +"cbF" = ( /obj/machinery/camera{ c_tag = "Central Primary Hallway - Aft-Port"; dir = 1; @@ -48992,36 +51765,36 @@ dir = 8 }, /area/hallway/primary/central) -"bXR" = ( +"cbG" = ( /obj/machinery/light/small, /turf/open/floor/plasteel/blue/corner{ dir = 8 }, /area/hallway/primary/central) -"bXS" = ( +"cbH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/blue/corner{ dir = 8 }, /area/hallway/primary/central) -"bXT" = ( +"cbI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/purple/corner{ dir = 2 }, /area/hallway/primary/central) -"bXU" = ( +"cbJ" = ( /obj/machinery/light/small, /turf/open/floor/plasteel/purple/corner{ dir = 2 }, /area/hallway/primary/central) -"bXV" = ( +"cbK" = ( /turf/open/floor/plasteel/purple/corner{ dir = 2 }, /area/hallway/primary/central) -"bXW" = ( +"cbL" = ( /obj/machinery/camera{ c_tag = "Central Primary Hallway - Aft-Starboard"; dir = 1; @@ -49031,13 +51804,13 @@ dir = 2 }, /area/hallway/primary/central) -"bXX" = ( +"cbM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/purple/corner{ dir = 2 }, /area/hallway/primary/central) -"bXY" = ( +"cbN" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -49047,7 +51820,7 @@ dir = 2 }, /area/hallway/primary/central) -"bXZ" = ( +"cbO" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -49059,7 +51832,7 @@ dir = 2 }, /area/hallway/primary/central) -"bYa" = ( +"cbP" = ( /obj/structure/disposalpipe/trunk{ dir = 1 }, @@ -49069,7 +51842,7 @@ }, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"bYb" = ( +"cbQ" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "0"; req_one_access_txt = "12;35;47" @@ -49077,11 +51850,11 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"bYc" = ( +"cbR" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/hallway/primary/central) -"bYd" = ( +"cbS" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -49091,7 +51864,7 @@ }, /turf/open/floor/plasteel/hydrofloor, /area/hallway/primary/central) -"bYe" = ( +"cbT" = ( /obj/machinery/camera/autoname{ dir = 4; network = list("SS13") @@ -49107,7 +51880,7 @@ /obj/structure/table/glass, /turf/open/floor/plasteel/green, /area/hydroponics) -"bYf" = ( +"cbU" = ( /obj/item/stack/packageWrap, /obj/item/stack/packageWrap, /obj/item/stack/packageWrap, @@ -49117,33 +51890,38 @@ /obj/structure/table/glass, /turf/open/floor/plasteel/green, /area/hydroponics) -"bYg" = ( +"cbV" = ( +/turf/open/floor/plasteel/green/side{ + dir = 8 + }, +/area/hydroponics) +"cbW" = ( /obj/effect/landmark/start/botanist, /obj/machinery/holopad, /turf/open/floor/plasteel, /area/hydroponics) -"bYh" = ( +"cbX" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel, /area/hydroponics) -"bYi" = ( +"cbY" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, /turf/open/floor/plasteel, /area/hydroponics) -"bYj" = ( +"cbZ" = ( /turf/open/floor/plasteel, /area/hydroponics) -"bYk" = ( +"cca" = ( /obj/effect/landmark/start/botanist, /turf/open/floor/plasteel/green/side{ dir = 4 }, /area/hydroponics) -"bYl" = ( +"ccb" = ( /obj/item/seeds/wheat, /obj/item/seeds/sugarcane, /obj/item/seeds/potato, @@ -49170,11 +51948,11 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"bYm" = ( +"ccc" = ( /obj/structure/closet/secure_closet/hydroponics, /turf/open/floor/plasteel/hydrofloor, /area/hydroponics) -"bYn" = ( +"ccd" = ( /obj/machinery/light/small{ dir = 4 }, @@ -49186,50 +51964,75 @@ /obj/effect/landmark/start/botanist, /turf/open/floor/plasteel/hydrofloor, /area/hydroponics) -"bYo" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, +"cce" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, /obj/structure/disposalpipe/junction/flip{ dir = 2 }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bYp" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, +/obj/structure/table, +/obj/item/kitchen/rollingpin, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"ccf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"ccg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/rnd/protolathe/department/service, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"cch" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/hallway/secondary/service) +"cci" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, /turf/open/floor/plating, /area/maintenance/starboard) -"bYq" = ( -/obj/structure/rack, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = 27 +"ccj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/turf/open/floor/plasteel/vault{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/teleporter) -"bYr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cck" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -49241,20 +52044,20 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bYs" = ( +"ccl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, /obj/effect/landmark/event_spawn, /turf/open/floor/plating, /area/maintenance/starboard) -"bYt" = ( +"ccm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/plating, /area/maintenance/starboard) -"bYu" = ( +"ccn" = ( /obj/item/cigbutt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ @@ -49263,7 +52066,12 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard) -"bYv" = ( +"cco" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"ccp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/machinery/light{ dir = 8 @@ -49281,17 +52089,17 @@ dir = 8 }, /area/engine/atmos) -"bYw" = ( +"ccq" = ( /obj/machinery/atmospherics/pipe/simple/dark/visible, /turf/open/floor/plasteel, /area/engine/atmos) -"bYx" = ( +"ccr" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 6 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bYy" = ( +"ccs" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; name = "N2 to Airmix"; @@ -49299,7 +52107,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bYz" = ( +"cct" = ( /obj/machinery/atmospherics/components/trinary/mixer{ dir = 4; node1_concentration = 0.8; @@ -49309,24 +52117,28 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bYA" = ( +"ccu" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 10 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bYB" = ( +"ccv" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/engine/atmos) +"ccw" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/machinery/light{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"bYC" = ( +"ccx" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"bYD" = ( +"ccy" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -49337,14 +52149,23 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"bYE" = ( +"ccz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bYG" = ( +"ccA" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/poster/random_contraband, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ccB" = ( /obj/structure/table, /obj/item/folder/white{ pixel_x = 4; @@ -49361,20 +52182,20 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"bYH" = ( +"ccC" = ( /obj/structure/light_construct, /turf/open/floor/plating{ icon_state = "panelscorched" }, /area/maintenance/port/aft) -"bYI" = ( +"ccD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bYJ" = ( +"ccE" = ( /obj/structure/table, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high{ @@ -49383,43 +52204,42 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bYK" = ( +"ccF" = ( /obj/machinery/mech_bay_recharge_port, /obj/structure/cable/yellow{ icon_state = "0-2" }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bYL" = ( +"ccG" = ( /turf/open/floor/mech_bay_recharge_floor, /area/maintenance/port/aft) -"bYM" = ( +"ccH" = ( /obj/machinery/computer/mech_bay_power_console, /obj/structure/cable/yellow{ icon_state = "0-2" }, /turf/open/floor/circuit, /area/maintenance/port/aft) -"bYN" = ( +"ccI" = ( /obj/machinery/space_heater, /turf/open/floor/plating{ icon_state = "platingdmg3" }, /area/maintenance/port/aft) -"bYO" = ( +"ccJ" = ( /obj/item/vending_refill/cola, /turf/open/floor/plating, /area/maintenance/port/aft) -"bYP" = ( +"ccK" = ( /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/item/storage/box/donkpockets, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"bYQ" = ( +"ccL" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -49431,13 +52251,13 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bYR" = ( +"ccM" = ( /obj/machinery/vending/medical, /turf/open/floor/plasteel/whiteblue/side{ dir = 9 }, /area/medical/storage) -"bYS" = ( +"ccN" = ( /obj/structure/noticeboard{ pixel_y = 32 }, @@ -49462,19 +52282,19 @@ dir = 1 }, /area/medical/storage) -"bYT" = ( +"ccO" = ( /obj/structure/closet/secure_closet/medical3, /obj/item/screwdriver{ pixel_y = 6 }, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = 30 }, /turf/open/floor/plasteel/whiteblue/side{ dir = 1 }, /area/medical/storage) -"bYU" = ( +"ccP" = ( /obj/structure/closet/secure_closet/medical3, /obj/machinery/light{ dir = 1 @@ -49489,7 +52309,7 @@ dir = 1 }, /area/medical/storage) -"bYV" = ( +"ccQ" = ( /obj/item/device/radio/intercom{ broadcasting = 1; freerange = 0; @@ -49515,14 +52335,14 @@ dir = 1 }, /area/medical/storage) -"bYW" = ( +"ccR" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /turf/open/floor/plasteel/whiteblue/side{ dir = 5 }, /area/medical/storage) -"bYX" = ( +"ccS" = ( /obj/machinery/power/apc{ dir = 8; name = "Medical Security Checkpoint APC"; @@ -49540,7 +52360,7 @@ dir = 9 }, /area/security/checkpoint/medical) -"bYY" = ( +"ccT" = ( /obj/machinery/recharger{ pixel_y = 4 }, @@ -49562,7 +52382,7 @@ dir = 1 }, /area/security/checkpoint/medical) -"bYZ" = ( +"ccU" = ( /obj/item/pen, /obj/structure/table/reinforced, /obj/structure/reagent_dispensers/peppertank{ @@ -49584,15 +52404,15 @@ dir = 5 }, /area/security/checkpoint/medical) -"bZa" = ( +"ccV" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/medical/medbay/central) -"bZb" = ( -/obj/structure/sign/bluecross_2, +"ccW" = ( +/obj/structure/sign/departments/medbay/alt, /turf/closed/wall, /area/medical/medbay/central) -"bZc" = ( +"ccX" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -49602,14 +52422,14 @@ dir = 2 }, /area/medical/medbay/central) -"bZd" = ( +"ccY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/firedoor, /turf/open/floor/plasteel/white/side{ dir = 2 }, /area/medical/medbay/central) -"bZe" = ( +"ccZ" = ( /obj/structure/sign/directions/security{ desc = "A direction sign, pointing out which way the security department is."; dir = 1; @@ -49630,7 +52450,7 @@ }, /turf/closed/wall, /area/medical/medbay/central) -"bZf" = ( +"cda" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -49640,7 +52460,7 @@ dir = 8 }, /area/hallway/primary/aft) -"bZg" = ( +"cdb" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -49650,7 +52470,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/aft) -"bZh" = ( +"cdc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -49660,7 +52480,7 @@ dir = 2 }, /area/hallway/primary/aft) -"bZi" = ( +"cdd" = ( /obj/structure/sign/directions/engineering{ desc = "A direction sign, pointing out which way the medical department is."; dir = 8; @@ -49682,22 +52502,22 @@ }, /turf/closed/wall, /area/science/research) -"bZj" = ( +"cde" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/science/research) -"bZk" = ( -/obj/structure/sign/science, +"cdf" = ( +/obj/structure/sign/departments/science, /turf/closed/wall, /area/science/research) -"bZl" = ( +"cdg" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white/side{ dir = 2 }, /area/science/research) -"bZm" = ( +"cdh" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -49708,13 +52528,20 @@ dir = 2 }, /area/science/research) -"bZn" = ( +"cdi" = ( /turf/closed/wall, /area/science/research) -"bZo" = ( +"cdj" = ( /turf/closed/wall, /area/security/checkpoint/science/research) -"bZq" = ( +"cdk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cdl" = ( /obj/item/reagent_containers/food/snacks/grown/wheat, /obj/item/reagent_containers/food/snacks/grown/watermelon, /obj/item/reagent_containers/food/snacks/grown/citrus/orange, @@ -49725,13 +52552,13 @@ /obj/structure/table/glass, /turf/open/floor/plasteel/hydrofloor, /area/hallway/primary/central) -"bZr" = ( +"cdm" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/hydrofloor, /area/hallway/primary/central) -"bZs" = ( +"cdn" = ( /obj/item/cultivator, /obj/item/crowbar, /obj/item/device/plant_analyzer, @@ -49739,7 +52566,7 @@ /obj/structure/table/glass, /turf/open/floor/plasteel/hydrofloor, /area/hallway/primary/central) -"bZt" = ( +"cdo" = ( /obj/structure/sink{ dir = 8; pixel_x = -12; @@ -49749,13 +52576,13 @@ dir = 9 }, /area/hydroponics) -"bZu" = ( +"cdp" = ( /obj/effect/landmark/start/botanist, /turf/open/floor/plasteel/green/side{ dir = 8 }, /area/hydroponics) -"bZv" = ( +"cdq" = ( /obj/machinery/biogenerator, /obj/machinery/light_switch{ pixel_x = 26 @@ -49765,53 +52592,65 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"bZw" = ( +"cdr" = ( /obj/structure/closet/secure_closet/hydroponics, /obj/machinery/light_switch{ pixel_x = -26 }, /turf/open/floor/plasteel/hydrofloor, /area/hydroponics) -"bZx" = ( -/obj/machinery/icecream_vat, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 +"cds" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"bZy" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = 32 }, +/turf/open/floor/plasteel/hydrofloor, +/area/hydroponics) +"cdt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock{ + name = "Service Hall"; + req_access_txt = "null"; + req_one_access_txt = "25;26;35;28" + }, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"cdu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cdv" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/open/floor/plating{ - icon_state = "platingdmg1" + icon_state = "platingdmg3" }, /area/maintenance/starboard) -"bZz" = ( +"cdw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/starboard) -"bZA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"bZB" = ( +"cdx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, /turf/open/floor/plating, /area/maintenance/starboard) -"bZC" = ( +"cdy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/disposal/incinerator) -"bZD" = ( +"cdz" = ( /obj/machinery/door/airlock/maintenance{ name = "Incinerator Access"; req_access_txt = "12" @@ -49822,10 +52661,10 @@ }, /turf/open/floor/plating, /area/maintenance/disposal/incinerator) -"bZE" = ( +"cdA" = ( /turf/closed/wall, /area/maintenance/disposal/incinerator) -"bZF" = ( +"cdB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 5 }, @@ -49839,46 +52678,46 @@ dir = 8 }, /area/engine/atmos) -"bZG" = ( +"cdC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 10 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bZH" = ( +"cdD" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; name = "N2 to Pure" }, /turf/open/floor/plasteel, /area/engine/atmos) -"bZI" = ( +"cdE" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bZJ" = ( +"cdF" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bZK" = ( +"cdG" = ( /obj/machinery/atmospherics/pipe/manifold/yellow/visible{ dir = 1 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bZL" = ( +"cdH" = ( /obj/machinery/atmospherics/pipe/manifold/yellow/visible{ dir = 4 }, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmos) -"bZM" = ( +"cdI" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -49896,13 +52735,13 @@ dir = 4 }, /area/engine/atmos) -"bZN" = ( +"cdJ" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/plating/airless, /area/maintenance/solars/port/aft) -"bZO" = ( +"cdK" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; req_access_txt = "12" @@ -49910,16 +52749,16 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port/aft) -"bZP" = ( +"cdL" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/circuit, /area/maintenance/port/aft) -"bZQ" = ( +"cdM" = ( /turf/open/floor/circuit, /area/maintenance/port/aft) -"bZR" = ( +"cdN" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -49930,15 +52769,15 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bZS" = ( +"cdO" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating, /area/maintenance/port/aft) -"bZT" = ( +"cdP" = ( /obj/machinery/space_heater, /turf/open/floor/plating, -/area/maintenance/aft) -"bZU" = ( +/area/maintenance/port/aft) +"cdQ" = ( /obj/machinery/light/small{ dir = 1 }, @@ -49946,13 +52785,13 @@ /obj/item/mop, /turf/open/floor/plating, /area/maintenance/port/aft) -"bZV" = ( +"cdR" = ( /obj/item/storage/toolbox/emergency, /obj/item/hand_labeler, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"bZW" = ( +"cdS" = ( /obj/item/cigbutt, /obj/structure/disposalpipe/segment{ dir = 6 @@ -49962,7 +52801,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bZX" = ( +"cdT" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=4"; dir = 4; @@ -49983,7 +52822,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/medical/storage) -"bZY" = ( +"cdU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -49991,20 +52830,20 @@ dir = 8 }, /area/medical/storage) -"bZZ" = ( +"cdV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plasteel/white, /area/medical/storage) -"caa" = ( +"cdW" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plasteel/white, /area/medical/storage) -"cab" = ( +"cdX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -50013,7 +52852,7 @@ }, /turf/open/floor/plasteel/white, /area/medical/storage) -"cac" = ( +"cdY" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50027,7 +52866,7 @@ dir = 4 }, /area/medical/storage) -"cad" = ( +"cdZ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Medbay Security Post"; @@ -50041,7 +52880,7 @@ }, /turf/open/floor/plasteel/red, /area/security/checkpoint/medical) -"cae" = ( +"cea" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -50055,10 +52894,10 @@ dir = 8 }, /area/security/checkpoint/medical) -"caf" = ( +"ceb" = ( /turf/open/floor/plasteel, /area/security/checkpoint/medical) -"cag" = ( +"cec" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -50066,14 +52905,14 @@ dir = 4 }, /area/security/checkpoint/medical) -"cah" = ( +"ced" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plating, /area/security/checkpoint/medical) -"cai" = ( +"cee" = ( /obj/structure/table, /obj/item/pen, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -50084,7 +52923,7 @@ dir = 1 }, /area/medical/medbay/central) -"caj" = ( +"cef" = ( /obj/machinery/light/small{ dir = 1 }, @@ -50110,31 +52949,31 @@ dir = 1 }, /area/medical/medbay/central) -"cak" = ( +"ceg" = ( /obj/structure/chair, /turf/open/floor/plasteel/whiteblue/side{ dir = 1 }, /area/medical/medbay/central) -"cal" = ( +"ceh" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cam" = ( +"cei" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"can" = ( +"cej" = ( /obj/structure/chair, /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel/whiteblue/side{ dir = 1 }, /area/medical/medbay/central) -"cao" = ( +"cek" = ( /obj/structure/table, /obj/item/storage/box/bodybags{ pixel_x = 3; @@ -50144,7 +52983,7 @@ dir = 1 }, /area/medical/medbay/central) -"cap" = ( +"cel" = ( /obj/structure/table, /obj/item/stack/medical/gauze, /obj/item/stack/medical/ointment, @@ -50153,25 +52992,25 @@ dir = 1 }, /area/medical/medbay/central) -"caq" = ( +"cem" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/blue/corner{ dir = 8 }, /area/hallway/primary/aft) -"car" = ( +"cen" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/hallway/primary/aft) -"cas" = ( +"ceo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/purple/corner{ dir = 2 }, /area/hallway/primary/aft) -"cat" = ( +"cep" = ( /obj/structure/table, /obj/item/folder/white{ pixel_x = 4; @@ -50182,25 +53021,25 @@ dir = 1 }, /area/science/research) -"cau" = ( +"ceq" = ( /obj/structure/table, /obj/item/paper/pamphlet/gateway, /turf/open/floor/plasteel/whitepurple/side{ dir = 1 }, /area/science/research) -"cav" = ( +"cer" = ( /obj/structure/chair, /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel/whitepurple/side{ dir = 1 }, /area/science/research) -"caw" = ( +"ces" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white, /area/science/research) -"cax" = ( +"cet" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -50208,13 +53047,13 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/white, /area/science/research) -"cay" = ( +"ceu" = ( /obj/structure/chair, /turf/open/floor/plasteel/whitepurple/side{ dir = 1 }, /area/science/research) -"caz" = ( +"cev" = ( /obj/structure/table, /obj/item/stack/cable_coil, /obj/item/device/assembly/igniter{ @@ -50231,7 +53070,7 @@ dir = 1 }, /area/science/research) -"caA" = ( +"cew" = ( /obj/structure/table, /obj/item/stack/sheet/glass, /obj/item/electronics/airlock, @@ -50243,7 +53082,7 @@ dir = 1 }, /area/science/research) -"caB" = ( +"cex" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -2; @@ -50269,7 +53108,7 @@ dir = 1 }, /area/science/research) -"caC" = ( +"cey" = ( /obj/structure/table, /obj/machinery/recharger{ pixel_y = 4 @@ -50285,7 +53124,7 @@ dir = 9 }, /area/security/checkpoint/science/research) -"caD" = ( +"cez" = ( /obj/structure/table, /obj/machinery/requests_console{ department = "Security"; @@ -50318,7 +53157,7 @@ dir = 1 }, /area/security/checkpoint/science/research) -"caE" = ( +"ceA" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = 1; @@ -50333,7 +53172,16 @@ dir = 5 }, /area/security/checkpoint/science/research) -"caG" = ( +"ceB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"ceC" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -50345,19 +53193,19 @@ }, /turf/open/floor/plasteel/hydrofloor, /area/hallway/primary/central) -"caH" = ( +"ceD" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, /turf/open/floor/plasteel/hydrofloor, /area/hallway/primary/central) -"caI" = ( +"ceE" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/hydrofloor, /area/hallway/primary/central) -"caJ" = ( +"ceF" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical/glass{ name = "Hydroponics"; @@ -50368,7 +53216,7 @@ }, /turf/open/floor/plasteel/hydrofloor, /area/hydroponics) -"caK" = ( +"ceG" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -50379,7 +53227,7 @@ dir = 10 }, /area/hydroponics) -"caL" = ( +"ceH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -50390,7 +53238,7 @@ dir = 6 }, /area/hydroponics) -"caM" = ( +"ceI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -50401,7 +53249,7 @@ dir = 10 }, /area/hydroponics) -"caN" = ( +"ceJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -50412,7 +53260,7 @@ dir = 2 }, /area/hydroponics) -"caO" = ( +"ceK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -50426,7 +53274,7 @@ dir = 2 }, /area/hydroponics) -"caP" = ( +"ceL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -50440,7 +53288,7 @@ dir = 2 }, /area/hydroponics) -"caQ" = ( +"ceM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -50460,7 +53308,7 @@ dir = 2 }, /area/hydroponics) -"caR" = ( +"ceN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -50470,7 +53318,7 @@ }, /turf/open/floor/plasteel/hydrofloor, /area/hydroponics) -"caS" = ( +"ceO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -50482,7 +53330,7 @@ }, /turf/open/floor/plasteel/hydrofloor, /area/hydroponics) -"caT" = ( +"ceP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -50499,10 +53347,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"caU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, +"ceQ" = ( /obj/structure/disposalpipe/sorting/mail{ sortType = 21 }, @@ -50515,31 +53360,44 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"caV" = ( -/obj/structure/rack, -/obj/item/extinguisher, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/structure/cable/yellow{ + icon_state = "2-4" }, /turf/open/floor/plating, /area/maintenance/starboard) -"caW" = ( -/obj/structure/closet, -/obj/item/stack/cable_coil/random, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +"ceR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 }, /turf/open/floor/plating, /area/maintenance/starboard) -"caX" = ( +"ceS" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ceT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ceU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/light_switch, /turf/closed/wall, /area/maintenance/disposal/incinerator) -"caY" = ( +"ceV" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -50549,18 +53407,18 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"caZ" = ( +"ceW" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, -/obj/structure/sign/deathsposal{ +/obj/structure/sign/warning/deathsposal{ pixel_y = 32 }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cba" = ( +"ceX" = ( /obj/machinery/power/smes{ capacity = 9e+006; charge = 10000 @@ -50570,7 +53428,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cbb" = ( +"ceY" = ( /obj/machinery/door/window/northleft{ dir = 1; icon_state = "left"; @@ -50579,7 +53437,7 @@ }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cbc" = ( +"ceZ" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -50591,7 +53449,7 @@ }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cbd" = ( +"cfa" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 4; filter_type = "n2"; @@ -50600,7 +53458,7 @@ /obj/structure/window/reinforced, /turf/open/floor/plasteel/red, /area/engine/atmos) -"cbe" = ( +"cfb" = ( /obj/structure/window/reinforced, /obj/machinery/computer/atmos_control/tank{ dir = 1; @@ -50616,7 +53474,7 @@ /obj/machinery/atmospherics/pipe/simple/dark/visible, /turf/open/floor/plasteel/red, /area/engine/atmos) -"cbf" = ( +"cfc" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/components/binary/pump{ dir = 1; @@ -50628,7 +53486,7 @@ }, /turf/open/floor/plasteel/red, /area/engine/atmos) -"cbg" = ( +"cfd" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -50646,7 +53504,7 @@ }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cbh" = ( +"cfe" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/components/trinary/filter{ dir = 4; @@ -50655,7 +53513,7 @@ }, /turf/open/floor/plasteel/blue, /area/engine/atmos) -"cbi" = ( +"cff" = ( /obj/structure/window/reinforced, /obj/machinery/computer/atmos_control/tank{ dir = 1; @@ -50670,7 +53528,7 @@ }, /turf/open/floor/plasteel/blue, /area/engine/atmos) -"cbj" = ( +"cfg" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/components/binary/pump{ dir = 1; @@ -50682,7 +53540,7 @@ }, /turf/open/floor/plasteel/blue, /area/engine/atmos) -"cbk" = ( +"cfh" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -50704,7 +53562,7 @@ }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cbl" = ( +"cfi" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/machinery/atmospherics/pipe/simple/green/visible{ @@ -50714,7 +53572,24 @@ dir = 8 }, /area/engine/atmos) -"cbn" = ( +"cfj" = ( +/obj/structure/window/reinforced, +/obj/machinery/computer/atmos_control/tank{ + dir = 1; + frequency = 1441; + input_tag = "air_in"; + name = "Mixed Air Supply Control"; + output_tag = "air_out"; + sensors = list("air_sensor" = "Tank") + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/engine/atmos) +"cfk" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/components/binary/pump{ dir = 1; @@ -50727,7 +53602,7 @@ dir = 8 }, /area/engine/atmos) -"cbo" = ( +"cfl" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -50739,7 +53614,7 @@ dir = 8 }, /area/engine/atmos) -"cbp" = ( +"cfm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -50748,7 +53623,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cbq" = ( +"cfn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -50759,7 +53634,7 @@ icon_state = "panelscorched" }, /area/maintenance/port/aft) -"cbr" = ( +"cfo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -50768,13 +53643,13 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cbs" = ( +"cfp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cbt" = ( +"cfq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -50783,12 +53658,12 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cbu" = ( +"cfr" = ( /turf/open/floor/plating{ icon_state = "panelscorched" }, -/area/maintenance/aft) -"cbv" = ( +/area/maintenance/port/aft) +"cfs" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -50800,7 +53675,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cbw" = ( +"cft" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50808,13 +53683,13 @@ icon_state = "platingdmg3" }, /area/maintenance/port/aft) -"cbx" = ( +"cfu" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cby" = ( +"cfv" = ( /obj/machinery/mecha_part_fabricator{ dir = 2; name = "counterfeit exosuit fabricator"; @@ -50822,7 +53697,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cbz" = ( +"cfw" = ( /obj/structure/rack, /obj/item/stack/sheet/cardboard, /obj/item/device/radio/off, @@ -50832,7 +53707,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"cbA" = ( +"cfx" = ( /obj/structure/closet, /obj/item/stack/sheet/metal{ amount = 34 @@ -50841,7 +53716,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"cbB" = ( +"cfy" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -50852,7 +53727,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port/aft) -"cbC" = ( +"cfz" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -50860,8 +53735,8 @@ dir = 4 }, /turf/open/floor/plating, -/area/maintenance/aft) -"cbD" = ( +/area/maintenance/port/aft) +"cfA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -50871,7 +53746,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cbE" = ( +"cfB" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -50881,7 +53756,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cbF" = ( +"cfC" = ( /obj/item/reagent_containers/glass/bottle/morphine, /obj/item/trash/candy, /obj/structure/disposalpipe/segment{ @@ -50892,7 +53767,7 @@ icon_state = "platingdmg1" }, /area/maintenance/port/aft) -"cbG" = ( +"cfD" = ( /obj/item/storage/box/lights/mixed, /obj/structure/disposalpipe/segment{ dir = 4 @@ -50902,7 +53777,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cbH" = ( +"cfE" = ( /obj/item/tank/internals/air, /obj/item/tank/internals/air, /obj/item/clothing/mask/breath, @@ -50918,7 +53793,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cbI" = ( +"cfF" = ( /obj/machinery/door/airlock{ name = "Medbay Emergency Storage"; req_access_txt = "5" @@ -50928,7 +53803,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cbJ" = ( +"cfG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -50939,7 +53814,7 @@ dir = 8 }, /area/medical/storage) -"cbK" = ( +"cfH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -50948,8 +53823,7 @@ }, /turf/open/floor/plasteel/white, /area/medical/storage) -"cbL" = ( -/obj/effect/landmark/lightsout, +"cfI" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -50958,7 +53832,7 @@ }, /turf/open/floor/plasteel/white, /area/medical/storage) -"cbM" = ( +"cfJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -50967,7 +53841,7 @@ }, /turf/open/floor/plasteel/white, /area/medical/storage) -"cbN" = ( +"cfK" = ( /obj/machinery/holopad, /obj/effect/landmark/start/medical_doctor, /obj/structure/cable/yellow{ @@ -50978,7 +53852,7 @@ }, /turf/open/floor/plasteel/white, /area/medical/storage) -"cbO" = ( +"cfL" = ( /obj/machinery/camera{ c_tag = "Medbay Storage"; dir = 8; @@ -50991,7 +53865,7 @@ dir = 4 }, /area/medical/storage) -"cbP" = ( +"cfM" = ( /obj/machinery/requests_console{ announcementConsole = 0; department = "Medbay"; @@ -51000,7 +53874,7 @@ }, /turf/closed/wall, /area/security/checkpoint/medical) -"cbQ" = ( +"cfN" = ( /obj/machinery/computer/secure_data{ dir = 4 }, @@ -51019,7 +53893,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/checkpoint/medical) -"cbR" = ( +"cfO" = ( /obj/structure/chair/office/dark, /obj/machinery/button/door{ desc = "A remote control switch for the medbay foyer."; @@ -51034,11 +53908,11 @@ dir = 6 }, /area/security/checkpoint/medical) -"cbS" = ( +"cfP" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/checkpoint/medical) -"cbT" = ( +"cfQ" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -51047,7 +53921,7 @@ }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cbU" = ( +"cfR" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -51057,7 +53931,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cbV" = ( +"cfS" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -51066,7 +53940,7 @@ }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cbW" = ( +"cfT" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -51076,62 +53950,62 @@ /obj/machinery/holopad, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cbX" = ( +"cfU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cbY" = ( +"cfV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cbZ" = ( +"cfW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cca" = ( +"cfX" = ( /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"ccb" = ( +"cfY" = ( /obj/machinery/door/firedoor, /turf/open/floor/plasteel/white/side{ dir = 8 }, /area/medical/medbay/central) -"ccc" = ( +"cfZ" = ( /obj/machinery/door/firedoor, /turf/open/floor/plasteel/white/side{ dir = 4 }, /area/science/research) -"ccd" = ( +"cga" = ( /turf/open/floor/plasteel/white, /area/science/research) -"cce" = ( +"cgb" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /turf/open/floor/plasteel/white, /area/science/research) -"ccf" = ( +"cgc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/white, /area/science/research) -"ccg" = ( +"cgd" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/white, /area/science/research) -"cch" = ( +"cge" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -51142,26 +54016,26 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/white, /area/science/research) -"cci" = ( +"cgf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel/white, /area/science/research) -"ccj" = ( +"cgg" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, /turf/open/floor/plasteel/white, /area/science/research) -"cck" = ( +"cgh" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plating, /area/security/checkpoint/science/research) -"ccl" = ( +"cgi" = ( /obj/item/screwdriver{ pixel_y = 10 }, @@ -51173,7 +54047,7 @@ dir = 8 }, /area/security/checkpoint/science/research) -"ccm" = ( +"cgj" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/chair/office/dark{ dir = 1 @@ -51181,7 +54055,7 @@ /obj/effect/landmark/start/depsec/science, /turf/open/floor/plasteel, /area/security/checkpoint/science/research) -"ccn" = ( +"cgk" = ( /obj/machinery/computer/secure_data{ dir = 8 }, @@ -51198,26 +54072,18 @@ dir = 4 }, /area/security/checkpoint/science/research) -"cco" = ( -/obj/machinery/light/small, -/obj/item/toy/dummy, -/obj/item/toy/prize/honk{ - pixel_y = 12 - }, -/obj/structure/table/wood, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"ccp" = ( +"cgl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cgm" = ( /obj/machinery/vending/hydroseeds{ slogan_delay = 700 }, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"ccq" = ( +"cgn" = ( /obj/structure/table, /obj/item/book/manual/hydroponics_pod_people, /obj/machinery/light, @@ -51232,11 +54098,11 @@ }, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"ccr" = ( +"cgo" = ( /obj/machinery/vending/hydronutrients, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"ccs" = ( +"cgp" = ( /obj/machinery/disposal/bin{ pixel_x = -2; pixel_y = -2 @@ -51252,13 +54118,13 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"cct" = ( +"cgq" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 }, /turf/open/floor/plasteel, /area/hydroponics) -"ccu" = ( +"cgr" = ( /obj/machinery/hydroponics/constructable, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -51269,14 +54135,14 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"ccv" = ( +"cgs" = ( /obj/machinery/hydroponics/constructable, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, /area/hydroponics) -"ccw" = ( +"cgt" = ( /obj/machinery/hydroponics/constructable, /obj/machinery/light, /obj/machinery/power/apc{ @@ -51291,7 +54157,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"ccx" = ( +"cgu" = ( /obj/machinery/hydroponics/constructable, /obj/machinery/airalarm{ dir = 1; @@ -51302,7 +54168,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"ccy" = ( +"cgv" = ( /obj/machinery/hydroponics/constructable, /obj/machinery/firealarm{ dir = 1; @@ -51313,7 +54179,14 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"ccz" = ( +"cgw" = ( +/obj/machinery/plantgenes, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"cgx" = ( /obj/item/wrench, /obj/item/clothing/suit/apron, /obj/item/clothing/accessory/armband/hydro, @@ -51323,7 +54196,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"ccA" = ( +"cgy" = ( /obj/item/reagent_containers/spray/plantbgone{ pixel_y = 3 }, @@ -51346,7 +54219,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"ccB" = ( +"cgz" = ( /obj/machinery/door/window/eastright{ dir = 1; name = "Hydroponics Delivery"; @@ -51361,7 +54234,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hydroponics) -"ccC" = ( +"cgA" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; dir = 8; @@ -51381,7 +54254,7 @@ dir = 1 }, /area/hydroponics) -"ccD" = ( +"cgB" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -51395,21 +54268,21 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"ccE" = ( +"cgC" = ( /obj/machinery/atmospherics/components/unary/tank/toxins{ dir = 4 }, /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"ccF" = ( +"cgD" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; name = "plasma tank pump" }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"ccG" = ( +"cgE" = ( /obj/structure/sink/kitchen{ desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; @@ -51423,7 +54296,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"ccH" = ( +"cgF" = ( /obj/machinery/light{ dir = 1 }, @@ -51439,7 +54312,7 @@ /obj/item/pen, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"ccI" = ( +"cgG" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -51448,7 +54321,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"ccJ" = ( +"cgH" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ icon_state = "2-4" @@ -51458,7 +54331,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"ccK" = ( +"cgI" = ( /obj/structure/cable{ icon_state = "0-8" }, @@ -51470,59 +54343,68 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"ccL" = ( +"cgJ" = ( /obj/machinery/atmospherics/pipe/simple/dark/visible{ dir = 4 }, /turf/closed/wall/r_wall, /area/engine/atmos) -"ccM" = ( +"cgK" = ( /obj/machinery/atmospherics/pipe/simple/dark/visible{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"ccN" = ( +"cgL" = ( +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/valve/digital{ + name = "Waste Release" + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cgM" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, /obj/machinery/atmospherics/pipe/simple/dark/visible{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"ccO" = ( +"cgN" = ( /obj/machinery/atmospherics/pipe/simple/dark/visible{ dir = 9 }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"ccP" = ( +"cgO" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"ccQ" = ( +"cgP" = ( /turf/open/floor/plasteel/dark, /area/engine/atmos) -"ccR" = ( +"cgQ" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"ccS" = ( +"cgR" = ( /obj/machinery/light, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"ccT" = ( +"cgS" = ( /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"ccU" = ( +"cgT" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"ccV" = ( +"cgU" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 9 }, @@ -51533,19 +54415,15 @@ }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"ccW" = ( +"cgV" = ( /obj/machinery/door/airlock/external{ req_access_txt = "24"; req_one_access_txt = "0" }, /turf/open/floor/plating, /area/engine/atmos) -"ccX" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +"cgW" = ( +/obj/structure/sign/warning/vacuum/external{ pixel_y = -32 }, /obj/machinery/light/small{ @@ -51556,10 +54434,10 @@ }, /turf/open/floor/plating, /area/engine/atmos) -"ccY" = ( +"cgX" = ( /turf/open/floor/plating, /area/engine/atmos) -"ccZ" = ( +"cgY" = ( /obj/machinery/door/window/northleft{ dir = 8; icon_state = "left"; @@ -51574,12 +54452,12 @@ }, /turf/open/floor/plating, /area/engine/atmos) -"cda" = ( +"cgZ" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, /turf/open/space, /area/solar/port/aft) -"cdb" = ( +"cha" = ( /obj/structure/girder, /obj/structure/grille, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -51590,7 +54468,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cdc" = ( +"chb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51599,7 +54477,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cdd" = ( +"chc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51611,7 +54489,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cde" = ( +"chd" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; req_access_txt = "12" @@ -51624,7 +54502,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cdf" = ( +"che" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51636,19 +54514,19 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cdg" = ( +"chf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cdh" = ( +"chg" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cdi" = ( +"chh" = ( /obj/structure/closet, /obj/item/stack/sheet/glass{ amount = 12 @@ -51656,7 +54534,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"cdj" = ( +"chi" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -51664,31 +54542,31 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port/aft) -"cdk" = ( +"chj" = ( /obj/item/trash/semki, /turf/open/floor/plating, /area/maintenance/port/aft) -"cdl" = ( +"chk" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/maintenance/port/aft) -"cdm" = ( +"chl" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, -/area/maintenance/aft) -"cdn" = ( +/area/maintenance/port/aft) +"chm" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 }, /obj/machinery/portable_atmospherics/canister/air, /turf/open/floor/plating, /area/maintenance/port/aft) -"cdo" = ( +"chn" = ( /obj/effect/landmark/xeno_spawn, /obj/structure/closet/firecloset, /turf/open/floor/plating, /area/maintenance/port/aft) -"cdp" = ( +"cho" = ( /obj/machinery/light_switch{ pixel_x = -26 }, @@ -51707,7 +54585,7 @@ dir = 10 }, /area/medical/storage) -"cdq" = ( +"chp" = ( /obj/machinery/firealarm{ dir = 1; pixel_y = -24 @@ -51717,7 +54595,7 @@ dir = 2 }, /area/medical/storage) -"cdr" = ( +"chq" = ( /obj/item/storage/box/bodybags{ pixel_x = 3; pixel_y = 3 @@ -51749,37 +54627,37 @@ dir = 8 }, /area/medical/storage) -"cds" = ( +"chr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white, /area/medical/storage) -"cdt" = ( +"chs" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/white, /area/medical/storage) -"cdu" = ( +"cht" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/whiteblue/corner{ dir = 4 }, /area/medical/storage) -"cdv" = ( +"chu" = ( /obj/machinery/rnd/protolathe/department/medical, /turf/open/floor/plasteel/whiteblue/side{ dir = 5 }, /area/medical/storage) -"cdw" = ( +"chv" = ( /turf/closed/wall, /area/medical/medbay/central) -"cdx" = ( +"chw" = ( /obj/machinery/computer/crew, /turf/open/floor/plasteel/vault, /area/medical/medbay/central) -"cdy" = ( +"chx" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -51794,19 +54672,19 @@ }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cdz" = ( +"chy" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cdA" = ( +"chz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cdB" = ( +"chA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -51817,25 +54695,29 @@ }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cdC" = ( +"chB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cdD" = ( +"chC" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"chD" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cdE" = ( +"chE" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cdF" = ( +"chF" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 @@ -51844,7 +54726,7 @@ dir = 8 }, /area/medical/medbay/central) -"cdG" = ( +"chG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment{ dir = 4 @@ -51853,7 +54735,7 @@ dir = 8 }, /area/hallway/primary/aft) -"cdH" = ( +"chH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -51865,7 +54747,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/aft) -"cdI" = ( +"chI" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, @@ -51873,13 +54755,17 @@ dir = 2 }, /area/hallway/primary/aft) -"cdJ" = ( +"chJ" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/research) +"chK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /turf/open/floor/plasteel/white, /area/science/research) -"cdK" = ( +"chL" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -51891,7 +54777,7 @@ }, /turf/open/floor/plasteel/white, /area/science/research) -"cdL" = ( +"chM" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -51903,7 +54789,7 @@ }, /turf/open/floor/plasteel/white, /area/science/research) -"cdM" = ( +"chN" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -51912,7 +54798,7 @@ }, /turf/open/floor/plasteel/white, /area/science/research) -"cdN" = ( +"chO" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -51924,7 +54810,7 @@ }, /turf/open/floor/plasteel/white, /area/science/research) -"cdO" = ( +"chP" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -51937,7 +54823,7 @@ }, /turf/open/floor/plasteel/white, /area/science/research) -"cdP" = ( +"chQ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -51947,7 +54833,7 @@ }, /turf/open/floor/plating, /area/security/checkpoint/science/research) -"cdQ" = ( +"chR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -51959,13 +54845,13 @@ dir = 8 }, /area/security/checkpoint/science/research) -"cdR" = ( +"chS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /turf/open/floor/plasteel, /area/security/checkpoint/science/research) -"cdS" = ( +"chT" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = 30 }, @@ -51981,7 +54867,12 @@ dir = 4 }, /area/security/checkpoint/science/research) -"cdU" = ( +"chU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"chV" = ( /obj/machinery/door/airlock/maintenance{ name = "Hydroponics Maintenance"; req_access_txt = "35"; @@ -51989,7 +54880,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cdV" = ( +"chW" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -51999,26 +54890,29 @@ icon_state = "panelscorched" }, /area/maintenance/starboard) -"cdW" = ( +"chX" = ( /obj/item/device/flashlight, +/obj/machinery/light/small{ + dir = 4 + }, /turf/open/floor/plating, /area/maintenance/starboard) -"cdX" = ( +"chY" = ( /obj/structure/closet/crate, /obj/item/coin/silver, /obj/effect/spawner/lootdrop/maintenance, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard) -"cdY" = ( +"chZ" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/storage/box/lights/mixed, /obj/effect/spawner/lootdrop/maintenance, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard) -"cdZ" = ( -/obj/structure/sign/nosmoking_2{ +"cia" = ( +/obj/structure/sign/warning/nosmoking{ pixel_x = -28 }, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ @@ -52028,14 +54922,14 @@ /obj/machinery/portable_atmospherics/canister/oxygen, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cea" = ( +"cib" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; name = "input port pump" }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"ceb" = ( +"cic" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -52048,7 +54942,7 @@ /obj/machinery/meter, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cec" = ( +"cid" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -52057,7 +54951,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"ced" = ( +"cie" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -52066,7 +54960,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cee" = ( +"cif" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -52078,8 +54972,8 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cef" = ( -/obj/structure/sign/fire{ +"cig" = ( +/obj/structure/sign/warning/fire{ pixel_x = 32 }, /obj/machinery/atmospherics/components/binary/pump{ @@ -52089,37 +54983,38 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"ceg" = ( +"cih" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/atmos) +"cii" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/green/visible, /turf/open/floor/plating, /area/engine/atmos) -"ceh" = ( +"cij" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/yellow/visible, /turf/open/floor/plating, /area/engine/atmos) -"cei" = ( +"cik" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/open/floor/plating, /area/engine/atmos) -"cej" = ( +"cil" = ( /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/aft) -"cek" = ( +"cim" = ( /obj/machinery/door/airlock/external{ req_access_txt = "13" }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cel" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +"cin" = ( +/obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /obj/effect/turf_decal/stripes/line{ @@ -52127,7 +55022,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cem" = ( +"cio" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -52139,7 +55034,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cen" = ( +"cip" = ( /obj/structure/girder, /obj/structure/grille, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -52150,7 +55045,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"ceo" = ( +"ciq" = ( /obj/structure/girder, /obj/structure/grille, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -52161,7 +55056,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cep" = ( +"cir" = ( /obj/structure/rack, /obj/item/screwdriver{ pixel_y = 16 @@ -52170,7 +55065,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"ceq" = ( +"cis" = ( /obj/structure/rack, /obj/item/stack/cable_coil{ pixel_x = -1; @@ -52181,7 +55076,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"cer" = ( +"cit" = ( /obj/structure/rack, /obj/item/stack/rods{ amount = 23 @@ -52189,7 +55084,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"ces" = ( +"ciu" = ( /obj/structure/table, /obj/item/folder/white{ pixel_x = 4; @@ -52202,14 +55097,23 @@ /obj/item/pen, /turf/open/floor/plating, /area/maintenance/port/aft) -"ceu" = ( +"civ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ciw" = ( /obj/structure/grille, /turf/open/floor/plating, /area/maintenance/port/aft) -"cev" = ( +"cix" = ( /turf/closed/wall, /area/medical/sleeper) -"cew" = ( +"ciy" = ( /obj/item/storage/firstaid/regular{ pixel_x = 3; pixel_y = -3 @@ -52233,7 +55137,7 @@ dir = 8 }, /area/medical/storage) -"cex" = ( +"ciz" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -52242,13 +55146,13 @@ }, /turf/open/floor/plasteel/white, /area/medical/storage) -"cey" = ( +"ciA" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel/white, /area/medical/storage) -"cez" = ( +"ciB" = ( /obj/item/storage/firstaid/regular{ pixel_x = 3; pixel_y = -3 @@ -52274,7 +55178,7 @@ dir = 4 }, /area/medical/storage) -"ceA" = ( +"ciC" = ( /obj/structure/sink{ dir = 8; pixel_x = -12; @@ -52296,7 +55200,7 @@ dir = 9 }, /area/medical/medbay/central) -"ceB" = ( +"ciD" = ( /obj/structure/chair/office/light{ dir = 4 }, @@ -52313,11 +55217,23 @@ dir = 5 }, /area/medical/medbay/central) -"ceC" = ( -/obj/machinery/telecomms/server/presets/command, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"ceD" = ( +"ciE" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/syringe, +/obj/item/pen, +/turf/open/floor/plasteel/whitegreen, +/area/medical/medbay/central) +"ciF" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -52326,13 +55242,13 @@ dir = 2 }, /area/medical/medbay/central) -"ceE" = ( +"ciG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/whiteblue/side{ dir = 2 }, /area/medical/medbay/central) -"ceF" = ( +"ciH" = ( /obj/structure/bed/roller, /obj/item/device/radio/intercom{ broadcasting = 0; @@ -52351,20 +55267,20 @@ dir = 2 }, /area/medical/medbay/central) -"ceG" = ( +"ciI" = ( /obj/machinery/light, /obj/structure/bed/roller, /turf/open/floor/plasteel/whiteblue/side{ dir = 2 }, /area/medical/medbay/central) -"ceH" = ( +"ciJ" = ( /obj/structure/bed/roller, /turf/open/floor/plasteel/whiteblue/side{ dir = 2 }, /area/medical/medbay/central) -"ceI" = ( +"ciK" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-11" }, @@ -52372,12 +55288,12 @@ dir = 2 }, /area/medical/medbay/central) -"ceJ" = ( +"ciL" = ( /turf/open/floor/plasteel/whiteyellow/side{ dir = 2 }, /area/medical/medbay/central) -"ceK" = ( +"ciM" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -52391,19 +55307,14 @@ dir = 2 }, /area/medical/medbay/central) -"ceL" = ( +"ciN" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/hallway/primary/aft) -"ceM" = ( -/turf/open/floor/plasteel/whitepurple/side{ - dir = 2 - }, -/area/science/research) -"ceN" = ( +"ciO" = ( /obj/structure/table, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high{ @@ -52414,7 +55325,14 @@ dir = 2 }, /area/science/research) -"ceO" = ( +"ciP" = ( +/obj/structure/table, +/obj/item/device/paicard, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 2 + }, +/area/science/research) +"ciQ" = ( /obj/structure/table, /obj/item/stock_parts/cell/potato, /obj/machinery/light, @@ -52426,15 +55344,7 @@ dir = 2 }, /area/science/research) -"ceP" = ( -/obj/structure/table, -/obj/item/stock_parts/cell/potato, -/obj/machinery/light, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 2 - }, -/area/science/research) -"ceQ" = ( +"ciR" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -52443,7 +55353,15 @@ dir = 2 }, /area/science/research) -"ceR" = ( +"ciS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 2 + }, +/area/science/research) +"ciT" = ( /obj/structure/disposalpipe/junction/flip{ dir = 4 }, @@ -52451,7 +55369,7 @@ dir = 2 }, /area/science/research) -"ceS" = ( +"ciU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -52468,7 +55386,7 @@ dir = 2 }, /area/science/research) -"ceT" = ( +"ciV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment{ dir = 10 @@ -52477,7 +55395,7 @@ dir = 2 }, /area/science/research) -"ceU" = ( +"ciW" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -52494,7 +55412,7 @@ dir = 2 }, /area/science/research) -"ceV" = ( +"ciX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -52505,13 +55423,13 @@ dir = 8 }, /area/security/checkpoint/science/research) -"ceW" = ( +"ciY" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel, /area/security/checkpoint/science/research) -"ceX" = ( +"ciZ" = ( /obj/item/device/radio/intercom{ dir = 4; name = "Station Intercom (General)"; @@ -52527,7 +55445,7 @@ dir = 4 }, /area/security/checkpoint/science/research) -"ceY" = ( +"cja" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -52539,7 +55457,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"ceZ" = ( +"cjb" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -52551,7 +55469,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cfa" = ( +"cjc" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -52565,7 +55483,7 @@ icon_state = "platingdmg2" }, /area/maintenance/starboard/aft) -"cfb" = ( +"cjd" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -52580,7 +55498,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cfc" = ( +"cje" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -52595,7 +55513,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cfd" = ( +"cjf" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -52609,7 +55527,48 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/aft) -"cff" = ( +"cjg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cjh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cji" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cjj" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -52623,7 +55582,7 @@ icon_state = "panelscorched" }, /area/maintenance/starboard/aft) -"cfg" = ( +"cjk" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -52641,7 +55600,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cfh" = ( +"cjl" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -52656,7 +55615,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cfi" = ( +"cjm" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -52671,7 +55630,20 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"cfj" = ( +"cjn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cjo" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -52683,7 +55655,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"cfk" = ( +"cjp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -52692,7 +55664,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"cfl" = ( +"cjq" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; req_access_txt = "12" @@ -52702,7 +55674,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"cfm" = ( +"cjr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -52711,7 +55683,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"cfn" = ( +"cjs" = ( /obj/machinery/portable_atmospherics/canister, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4; @@ -52719,7 +55691,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cfo" = ( +"cjt" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -52727,20 +55699,20 @@ /obj/machinery/atmospherics/pipe/manifold/general/visible, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cfp" = ( +"cju" = ( /obj/effect/landmark/xeno_spawn, /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 4 }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cfq" = ( +"cjv" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 4 }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cfr" = ( +"cjw" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -52751,63 +55723,64 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cfs" = ( +"cjx" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4 }, /obj/machinery/meter, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cft" = ( +"cjy" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/disposal/incinerator) -"cfu" = ( +"cjz" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "n2_in"; + volume_rate = 200 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/engine/atmos) +"cjA" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/green/visible, /turf/open/space, /area/space/nearstation) -"cfv" = ( +"cjB" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/yellow/visible, /turf/open/space, /area/space/nearstation) -"cfw" = ( +"cjC" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/manifold/yellow/visible{ dir = 8 }, /turf/open/space, /area/space/nearstation) -"cfx" = ( +"cjD" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 9 }, /turf/open/space, /area/space/nearstation) -"cfy" = ( +"cjE" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/open/space, /area/space/nearstation) -"cfz" = ( +"cjF" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ icon_state = "0-2" }, /turf/open/space, /area/solar/port/aft) -"cfA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cfB" = ( +"cjG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -52817,7 +55790,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfC" = ( +"cjH" = ( /obj/item/trash/pistachios, /obj/structure/closet, /obj/item/stack/sheet/glass, @@ -52825,41 +55798,41 @@ /obj/item/storage/belt/utility, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfD" = ( +"cjI" = ( /obj/item/storage/box, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfE" = ( +"cjJ" = ( /obj/structure/closet/crate, /obj/item/reagent_containers/dropper, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfF" = ( +"cjK" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfG" = ( +"cjL" = ( /obj/structure/closet/wardrobe/pjs, /turf/open/floor/plasteel/vault, /area/medical/sleeper) -"cfH" = ( +"cjM" = ( /obj/structure/closet/wardrobe/pjs, /obj/machinery/airalarm{ pixel_y = 24 }, /turf/open/floor/plasteel/vault, /area/medical/sleeper) -"cfI" = ( +"cjN" = ( /obj/machinery/computer/med_data, /obj/machinery/light{ dir = 1 }, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = 30 }, /turf/open/floor/plasteel/vault, /area/medical/sleeper) -"cfJ" = ( +"cjO" = ( /obj/structure/table, /obj/item/folder/white{ pixel_x = 4; @@ -52882,7 +55855,7 @@ /obj/item/clothing/neck/stethoscope, /turf/open/floor/plasteel/vault, /area/medical/sleeper) -"cfK" = ( +"cjP" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -2; @@ -52894,7 +55867,7 @@ }, /turf/open/floor/plasteel/vault, /area/medical/sleeper) -"cfL" = ( +"cjQ" = ( /obj/item/storage/firstaid/regular{ pixel_x = 3; pixel_y = -3 @@ -52921,7 +55894,7 @@ dir = 10 }, /area/medical/storage) -"cfM" = ( +"cjR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -52929,7 +55902,7 @@ dir = 2 }, /area/medical/storage) -"cfN" = ( +"cjS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -52944,13 +55917,13 @@ dir = 2 }, /area/medical/storage) -"cfO" = ( +"cjT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/whiteblue/side{ dir = 2 }, /area/medical/storage) -"cfP" = ( +"cjU" = ( /obj/item/storage/firstaid/regular{ pixel_x = 3; pixel_y = -3 @@ -52973,7 +55946,7 @@ dir = 6 }, /area/medical/storage) -"cfQ" = ( +"cjV" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -23 @@ -52983,7 +55956,7 @@ dir = 10 }, /area/medical/medbay/central) -"cfR" = ( +"cjW" = ( /obj/structure/chair/office/light{ dir = 4 }, @@ -52992,20 +55965,20 @@ dir = 6 }, /area/medical/medbay/central) -"cfS" = ( +"cjX" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, /obj/item/reagent_containers/food/drinks/britcup, /turf/open/floor/plasteel/whitegreen, /area/medical/medbay/central) -"cfT" = ( +"cjY" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/whiteblue, /area/medical/medbay/central) -"cfU" = ( +"cjZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/sink{ dir = 4; @@ -53013,17 +55986,17 @@ }, /turf/open/floor/plasteel/whiteblue, /area/medical/medbay/central) -"cfV" = ( +"cka" = ( /obj/structure/sign/directions/medical{ pixel_y = -7 }, /turf/closed/wall, /area/medical/chemistry) -"cfW" = ( -/obj/structure/sign/chemistry, +"ckb" = ( +/obj/structure/sign/departments/chemistry, /turf/closed/wall, /area/medical/chemistry) -"cfX" = ( +"ckc" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "chemistry_shutters"; @@ -53031,11 +56004,11 @@ }, /turf/open/floor/plating, /area/medical/chemistry) -"cfY" = ( +"ckd" = ( /obj/machinery/smartfridge/chemistry/preloaded, /turf/closed/wall, /area/medical/chemistry) -"cfZ" = ( +"cke" = ( /obj/structure/table/reinforced, /obj/item/folder/white{ pixel_x = 4; @@ -53059,10 +56032,10 @@ dir = 4 }, /area/medical/chemistry) -"cga" = ( +"ckf" = ( /turf/closed/wall, /area/medical/chemistry) -"cgb" = ( +"ckg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light{ dir = 8 @@ -53072,7 +56045,7 @@ dir = 8 }, /area/hallway/primary/aft) -"cgc" = ( +"ckh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/airalarm{ dir = 8; @@ -53082,10 +56055,10 @@ dir = 2 }, /area/hallway/primary/aft) -"cgd" = ( +"cki" = ( /turf/closed/wall/r_wall, /area/science/lab) -"cge" = ( +"ckj" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "research_shutters"; @@ -53093,7 +56066,7 @@ }, /turf/open/floor/plating, /area/science/lab) -"cgf" = ( +"ckk" = ( /obj/structure/table/reinforced, /obj/item/pen, /obj/item/folder/white{ @@ -53116,13 +56089,29 @@ }, /turf/open/floor/plating, /area/science/lab) -"cgg" = ( +"ckl" = ( +/obj/machinery/autolathe{ + name = "public autolathe" + }, +/obj/machinery/door/window/eastright{ + dir = 2; + name = "Research and Development Desk"; + req_access_txt = "7" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters"; + name = "research shutters" + }, +/turf/open/floor/plasteel/whitepurple, +/area/science/lab) +"ckm" = ( /obj/structure/sign/directions/science{ pixel_y = -8 }, /turf/closed/wall/r_wall, /area/science/lab) -"cgh" = ( +"ckn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, /obj/machinery/door/poddoor/preopen{ @@ -53132,7 +56121,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/science/research) -"cgi" = ( +"cko" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -53144,7 +56133,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/science/research) -"cgj" = ( +"ckp" = ( /obj/machinery/power/apc{ dir = 8; name = "Security Post - Research Division APC"; @@ -53156,11 +56145,11 @@ dir = 10 }, /area/security/checkpoint/science/research) -"cgk" = ( +"ckq" = ( /obj/structure/closet/secure_closet/security/science, /turf/open/floor/plasteel/red/side, /area/security/checkpoint/science/research) -"cgl" = ( +"ckr" = ( /obj/structure/filingcabinet, /obj/machinery/airalarm{ dir = 8; @@ -53170,7 +56159,7 @@ dir = 6 }, /area/security/checkpoint/science/research) -"cgm" = ( +"cks" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -53181,16 +56170,16 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cgn" = ( +"ckt" = ( /obj/item/cigbutt, /turf/open/floor/plating{ icon_state = "platingdmg3" }, /area/maintenance/starboard/aft) -"cgo" = ( +"cku" = ( /turf/closed/wall/r_wall, /area/science/research) -"cgp" = ( +"ckv" = ( /obj/machinery/door/airlock/maintenance{ name = "Research Maintenance"; req_access_txt = "47"; @@ -53199,15 +56188,25 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/science/research) -"cgq" = ( +"ckw" = ( /turf/closed/wall/r_wall, /area/science/explab) -"cgs" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" +"ckx" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, /area/maintenance/starboard/aft) -"cgt" = ( +"cky" = ( +/turf/closed/wall, +/area/maintenance/starboard/aft) +"ckz" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"ckA" = ( /obj/machinery/power/apc{ dir = 8; name = "Incinerator APC"; @@ -53219,13 +56218,13 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cgu" = ( +"ckB" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cgv" = ( +"ckC" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-8" @@ -53235,33 +56234,40 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cgw" = ( +"ckD" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 10 }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cgx" = ( +"ckE" = ( /obj/structure/cable{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cgy" = ( -/obj/machinery/telecomms/server/presets/service, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cgz" = ( +"ckF" = ( +/obj/machinery/airalarm/all_access{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plasteel/floorgrime, +/area/maintenance/disposal/incinerator) +"ckG" = ( /turf/closed/wall/r_wall, /area/maintenance/disposal/incinerator) -"cgA" = ( +"ckH" = ( /obj/machinery/atmospherics/pipe/simple, /obj/machinery/meter, /obj/structure/grille, /turf/closed/wall/r_wall, /area/engine/atmos) -"cgB" = ( +"ckI" = ( /obj/machinery/atmospherics/pipe/simple, /obj/machinery/meter{ name = "Mixed Air Tank In" @@ -53269,7 +56275,7 @@ /obj/structure/grille, /turf/closed/wall/r_wall, /area/engine/atmos) -"cgC" = ( +"ckJ" = ( /obj/machinery/atmospherics/pipe/simple, /obj/machinery/meter{ name = "Mixed Air Tank Out" @@ -53277,7 +56283,7 @@ /obj/structure/grille, /turf/closed/wall/r_wall, /area/engine/atmos) -"cgD" = ( +"ckK" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -53286,7 +56292,7 @@ }, /turf/open/floor/plating, /area/engine/atmos) -"cgE" = ( +"ckL" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -53295,39 +56301,31 @@ }, /turf/open/floor/plating, /area/engine/atmos) -"cgF" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 +"ckM" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 28 - }, -/obj/structure/reagent_dispensers/cooking_oil, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"cgG" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"ckN" = ( /obj/structure/closet/emcloset/anchored, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cgH" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, +"ckO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, -/area/maintenance/port) -"cgI" = ( +/area/maintenance/port/aft) +"ckP" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -53342,7 +56340,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cgJ" = ( +"ckQ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -53353,8 +56351,37 @@ dir = 4 }, /turf/open/floor/plating, -/area/maintenance/aft) -"cgL" = ( +/area/maintenance/port/aft) +"ckR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ckS" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ckT" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -53372,7 +56399,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cgM" = ( +"ckU" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -53380,8 +56407,8 @@ dir = 4 }, /turf/open/floor/plating, -/area/maintenance/aft) -"cgN" = ( +/area/maintenance/port/aft) +"ckV" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -53392,8 +56419,8 @@ dir = 4 }, /turf/open/floor/plating, -/area/maintenance/aft) -"cgO" = ( +/area/maintenance/port/aft) +"ckW" = ( /obj/machinery/door/airlock/maintenance{ name = "Medbay Maintenance"; req_access_txt = "5" @@ -53406,7 +56433,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cgP" = ( +"ckX" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -53417,7 +56444,7 @@ dir = 9 }, /area/medical/sleeper) -"cgQ" = ( +"ckY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -53428,7 +56455,7 @@ dir = 1 }, /area/medical/sleeper) -"cgR" = ( +"ckZ" = ( /obj/structure/chair/office/light{ dir = 1 }, @@ -53443,7 +56470,7 @@ dir = 1 }, /area/medical/sleeper) -"cgS" = ( +"cla" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -53457,7 +56484,7 @@ dir = 1 }, /area/medical/sleeper) -"cgT" = ( +"clb" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -53473,7 +56500,7 @@ dir = 5 }, /area/medical/sleeper) -"cgU" = ( +"clc" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical/glass{ id_tag = null; @@ -53482,7 +56509,7 @@ }, /turf/open/floor/plasteel/whiteblue, /area/medical/storage) -"cgV" = ( +"cld" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -53490,7 +56517,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/medical/storage) -"cgW" = ( +"cle" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/airlock/medical/glass{ @@ -53500,7 +56527,7 @@ }, /turf/open/floor/plasteel/whiteblue, /area/medical/storage) -"cgX" = ( +"clf" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/medical/glass{ @@ -53510,12 +56537,12 @@ }, /turf/open/floor/plasteel/whiteblue, /area/medical/medbay/central) -"cgY" = ( +"clg" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/medical/medbay/central) -"cgZ" = ( +"clh" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -53528,7 +56555,7 @@ }, /turf/open/floor/plasteel/whiteblue, /area/medical/medbay/central) -"cha" = ( +"cli" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical/glass{ @@ -53538,7 +56565,7 @@ }, /turf/open/floor/plasteel/whiteblue, /area/medical/medbay/central) -"chb" = ( +"clj" = ( /obj/machinery/chem_heater, /obj/machinery/light_switch{ pixel_x = -23 @@ -53547,14 +56574,14 @@ dir = 9 }, /area/medical/chemistry) -"chc" = ( +"clk" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /turf/open/floor/plasteel/whiteyellow/side{ dir = 5 }, /area/medical/chemistry) -"chd" = ( +"cll" = ( /obj/item/reagent_containers/glass/beaker/large, /obj/item/reagent_containers/glass/beaker/large, /obj/item/reagent_containers/glass/beaker{ @@ -53572,7 +56599,7 @@ dir = 4 }, /area/medical/chemistry) -"che" = ( +"clm" = ( /obj/structure/chair/office/light{ dir = 1 }, @@ -53581,7 +56608,7 @@ dir = 4 }, /area/medical/chemistry) -"chf" = ( +"cln" = ( /obj/machinery/chem_dispenser{ layer = 2.7 }, @@ -53596,19 +56623,19 @@ dir = 4 }, /area/medical/chemistry) -"chg" = ( +"clo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/neutral/corner{ dir = 8 }, /area/hallway/primary/aft) -"chh" = ( +"clp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/neutral/corner{ dir = 2 }, /area/hallway/primary/aft) -"chi" = ( +"clq" = ( /obj/structure/table, /obj/item/crowbar, /obj/item/wrench, @@ -53626,7 +56653,7 @@ }, /turf/open/floor/plasteel, /area/science/lab) -"chj" = ( +"clr" = ( /obj/structure/sink/kitchen{ desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; @@ -53636,22 +56663,21 @@ dir = 9 }, /area/science/lab) -"chk" = ( +"cls" = ( /turf/open/floor/plasteel/whitepurple/side{ dir = 1 }, /area/science/lab) -"chl" = ( -/obj/structure/noticeboard{ - desc = "A board for pinning important notices upon."; - name = "notice board"; - pixel_y = 31 +"clt" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 }, /turf/open/floor/plasteel/whitepurple/side{ dir = 1 }, /area/science/lab) -"chm" = ( +"clu" = ( /obj/machinery/button/door{ id = "research_shutters"; name = "research shutters control"; @@ -53662,18 +56688,40 @@ dir = 5 }, /area/science/lab) -"chn" = ( -/obj/machinery/telecomms/broadcaster/preset_right, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cho" = ( -/obj/machinery/telecomms/server/presets/supply, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"chp" = ( +"clv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + cyclelinkeddir = 2; + id_tag = "ResearchExt"; + name = "Research Division"; + req_access_txt = "0"; + req_one_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"clw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + cyclelinkeddir = 2; + id_tag = "ResearchExt"; + name = "Research Division"; + req_access_txt = "0"; + req_one_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"clx" = ( /turf/closed/wall/r_wall, /area/security/checkpoint/science/research) -"chq" = ( +"cly" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Security Post - Research Division"; @@ -53681,7 +56729,7 @@ }, /turf/open/floor/plasteel/red, /area/security/checkpoint/science/research) -"chr" = ( +"clz" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -53693,7 +56741,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"chs" = ( +"clA" = ( /obj/item/paper, /obj/structure/sign/map/left{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; @@ -53709,7 +56757,7 @@ dir = 5 }, /area/science/research) -"cht" = ( +"clB" = ( /obj/structure/sign/map/right{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; @@ -53721,7 +56769,7 @@ dir = 5 }, /area/science/research) -"chu" = ( +"clC" = ( /obj/machinery/ai_status_display{ pixel_y = 32 }, @@ -53730,21 +56778,29 @@ dir = 5 }, /area/science/research) -"chv" = ( +"clD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/cafeteria{ dir = 5 }, /area/science/research) -"chw" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/bridge/showroom/corporate) -"chx" = ( +"clE" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"clF" = ( /turf/open/floor/engine, /area/science/explab) -"chy" = ( -/obj/structure/sign/nosmoking_2{ +"clG" = ( +/obj/structure/sign/warning/nosmoking{ pixel_y = 32 }, /obj/machinery/camera{ @@ -53757,20 +56813,13 @@ }, /turf/open/floor/engine, /area/science/explab) -"chz" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"chA" = ( +"clH" = ( /obj/item/device/radio/intercom{ pixel_y = 25 }, /turf/open/floor/engine, /area/science/explab) -"chB" = ( +"clI" = ( /obj/machinery/space_heater, /obj/effect/landmark/blobstart, /obj/effect/turf_decal/stripes/line{ @@ -53778,7 +56827,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"chC" = ( +"clJ" = ( /obj/structure/closet/crate, /obj/item/storage/belt/utility, /obj/item/stack/cable_coil/random, @@ -53788,10 +56837,9 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"chD" = ( +"clK" = ( /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/item/cane, /obj/effect/spawner/lootdrop/maintenance, @@ -53800,14 +56848,14 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"chE" = ( +"clL" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/starboard) -"chF" = ( +"clM" = ( /obj/structure/closet, /obj/item/device/flashlight, /obj/effect/spawner/lootdrop/maintenance, @@ -53816,7 +56864,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"chG" = ( +"clN" = ( /obj/structure/reagent_dispensers/fueltank, /obj/item/storage/toolbox/emergency, /obj/item/device/radio/intercom{ @@ -53825,7 +56873,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"chH" = ( +"clO" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/extinguisher, /obj/machinery/light/small, @@ -53834,7 +56882,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"chI" = ( +"clP" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/components/binary/valve{ dir = 2; @@ -53842,7 +56890,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"chJ" = ( +"clQ" = ( /obj/structure/extinguisher_cabinet{ pixel_y = -31 }, @@ -53852,14967 +56900,14 @@ /obj/machinery/portable_atmospherics/canister, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"chL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/floorgrime, -/area/maintenance/disposal/incinerator) -"chM" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Aft"; - dir = 2; - network = list("MiniSat") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/aisat) -"chN" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1441; - id = "n2_in" - }, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"chO" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "n2_sensor" - }, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"chP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 1; - frequency = 1441; - id_tag = "n2_out"; - name = "n2 out" - }, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"chQ" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1441; - id = "o2_in" - }, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"chR" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "o2_sensor" - }, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"chS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 1; - frequency = 1441; - id_tag = "o2_out"; - name = "o2 out" - }, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"chT" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1441; - id = "air_in" - }, -/turf/open/floor/engine/air, -/area/engine/atmos) -"chU" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "air_sensor" - }, -/turf/open/floor/engine/air, -/area/engine/atmos) -"chV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/on{ - dir = 1; - frequency = 1441; - id_tag = "air_out"; - name = "air out" - }, -/turf/open/floor/engine/air, -/area/engine/atmos) -"chW" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/engine/atmos) -"chX" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/engine/atmos) -"chY" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"chZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cia" = ( -/turf/closed/wall, -/area/medical/surgery) -"cib" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/medical/surgery) -"cic" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/surgery) -"cid" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cie" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/sleeper) -"cif" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cig" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cih" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cii" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/sleeper) -"cij" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/whiteblue, -/area/medical/sleeper) -"cik" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 9 - }, -/area/medical/medbay/central) -"cil" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/medbay/central) -"cim" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/medbay/central) -"cin" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/medbay/central) -"cio" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cip" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Medbay Central APC"; - areastring = "/area/medical/medbay/central"; - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Medbay Hallway Fore"; - dir = 2; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"ciq" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/medbay/central) -"cir" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cis" = ( -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer"; - name = "Medbay Exit Button"; - normaldoorcontrol = 1; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cit" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/medbay/central) -"ciu" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/medbay/central) -"civ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = null; - name = "Chemistry Lab"; - req_access_txt = "5; 33" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"ciw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 8 - }, -/area/medical/chemistry) -"cix" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whiteyellow/corner{ - dir = 4 - }, -/area/medical/chemistry) -"ciy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 1 - }, -/area/medical/chemistry) -"ciz" = ( -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 5 - }, -/area/medical/chemistry) -"ciA" = ( -/obj/machinery/chem_master, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/noticeboard{ - desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; - name = "requests board"; - pixel_x = 32 - }, -/turf/open/floor/plasteel/whiteyellow{ - dir = 4 - }, -/area/medical/chemistry) -"ciB" = ( -/obj/machinery/rnd/destructive_analyzer, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"ciC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"ciD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/rnd/protolathe/department/science, -/turf/open/floor/plasteel, -/area/science/lab) -"ciE" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"ciF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/white, -/area/science/lab) -"ciG" = ( -/obj/machinery/disposal/bin{ - pixel_x = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 4 - }, -/area/science/lab) -"ciH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ciI" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ciJ" = ( -/obj/machinery/power/apc/highcap/ten_k{ - dir = 1; - name = "Research Division APC"; - areastring = "/area/science/research"; - pixel_y = 25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/camera{ - c_tag = "Research Division - Airlock"; - dir = 2; - network = list("SS13","RD") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ciK" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research) -"ciL" = ( -/obj/effect/landmark/revenantspawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ciM" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/cigbutt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ciN" = ( -/obj/structure/chair/stool, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"ciO" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"ciP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"ciQ" = ( -/obj/item/cigbutt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"ciR" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/vending/cola/random, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"ciS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/mob/living/simple_animal/pet/dog/pug{ - desc = "It's Pugley IV, the research department's lovable pug clone. Hopefully nothing happens to this one - fourth time lucky!"; - name = "Pugley IV"; - real_name = "Pugley IV" - }, -/turf/open/floor/engine, -/area/science/explab) -"ciT" = ( -/obj/item/device/radio/beacon, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/engine, -/area/science/explab) -"ciU" = ( -/obj/machinery/rnd/experimentor, -/turf/open/floor/engine, -/area/science/explab) -"ciV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/explab) -"ciW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/engine, -/area/science/explab) -"ciX" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"ciY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"ciZ" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 2 - }, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"cja" = ( -/obj/machinery/door/airlock/public/glass{ - autoclose = 0; - frequency = 1449; - heat_proof = 1; - icon_state = "door_locked"; - id_tag = "incinerator_airlock_interior"; - locked = 1; - name = "Incinerator Interior Airlock"; - req_access_txt = "12" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"cjb" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"cjc" = ( -/turf/open/floor/engine/n2, -/area/engine/atmos) -"cjd" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"cje" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - N2"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"cjf" = ( -/turf/open/floor/engine/o2, -/area/engine/atmos) -"cjg" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"cjh" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - O2"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"cji" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/engine/air, -/area/engine/atmos) -"cjj" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine/air, -/area/engine/atmos) -"cjk" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - Air"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/engine/air, -/area/engine/atmos) -"cjl" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 2 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"cjm" = ( -/obj/machinery/door/airlock/atmos/glass{ - heat_proof = 1; - name = "Auxiliary Chamber"; - req_access_txt = "24" - }, -/turf/open/floor/plating, -/area/engine/atmos) -"cjn" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"cjo" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/plating/airless, -/area/engine/atmos) -"cjp" = ( -/obj/machinery/vending/boozeomat, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cjq" = ( -/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/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/maintenance/port/aft) -"cjr" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cjs" = ( -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/structure/table/wood, -/obj/structure/light_construct/small{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cjt" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cjv" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cjw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/landmark/revenantspawn, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cjx" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cjy" = ( -/obj/item/cigbutt, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cjz" = ( -/obj/structure/chair, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cjA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cjB" = ( -/obj/item/cigbutt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cjC" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cjD" = ( -/obj/structure/chair, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cjE" = ( -/obj/structure/bed/roller, -/obj/item/device/radio/intercom{ - broadcasting = 1; - freerange = 0; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_x = -30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/machinery/camera{ - c_tag = "Medbay Sleepers"; - dir = 4; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 10 - }, -/area/medical/sleeper) -"cjF" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/sleeper) -"cjG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cjH" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 2 - }, -/area/medical/sleeper) -"cjI" = ( -/obj/structure/bed/roller, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 6 - }, -/area/medical/sleeper) -"cjJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/whiteblue, -/area/medical/sleeper) -"cjK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/medbay/central) -"cjL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cjM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cjN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cjO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cjP" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cjQ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cjR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/turf/open/floor/plasteel/whiteyellow/corner{ - dir = 2 - }, -/area/medical/medbay/central) -"cjS" = ( -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/item/storage/pill_bottle/epinephrine{ - pixel_x = 3 - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 8 - }, -/area/medical/chemistry) -"cjT" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cjU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cjV" = ( -/obj/machinery/smoke_machine, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 4 - }, -/area/medical/chemistry) -"cjW" = ( -/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/structure/table/glass, -/turf/open/floor/plasteel/whiteyellow{ - dir = 4 - }, -/area/medical/chemistry) -"cjX" = ( -/obj/machinery/computer/rdconsole/core{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/lab) -"cjY" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/lab) -"cjZ" = ( -/obj/item/reagent_containers/glass/beaker/sulphuric, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/rnd/circuit_imprinter/department/science, -/turf/open/floor/plasteel, -/area/science/lab) -"cka" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"ckb" = ( -/obj/effect/landmark/start/scientist, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"ckc" = ( -/obj/structure/table, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/micro_laser, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"ckd" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/lab) -"cke" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ckf" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ckg" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ckh" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"cki" = ( -/obj/item/storage/toolbox/emergency, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ckj" = ( -/obj/machinery/light/small, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ckk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/device/flashlight, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ckl" = ( -/obj/item/stack/packageWrap, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ckm" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/item/cigbutt, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"ckn" = ( -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"cko" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"ckp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"ckq" = ( -/obj/machinery/vending/coffee, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"ckr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/engine, -/area/science/explab) -"cks" = ( -/obj/machinery/button/door{ - id = "telelab"; - name = "Test Chamber Blast Doors"; - pixel_y = -25 - }, -/turf/open/floor/engine, -/area/science/explab) -"ckt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/engine, -/area/science/explab) -"cku" = ( -/obj/structure/closet, -/obj/item/storage/box/donkpockets, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ckv" = ( -/obj/structure/closet/crate, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/item/device/assembly/infra, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ckw" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/item/shard, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ckx" = ( -/obj/structure/table, -/obj/structure/sign/bluecross{ - pixel_y = 32 - }, -/obj/item/reagent_containers/glass/beaker/large, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cky" = ( -/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/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ckz" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ckA" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/syringe, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ckB" = ( -/obj/item/reagent_containers/glass/bottle/toxin{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/reagentgrinder{ - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ckC" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 2; - name = "Incinerator Output Pump"; - on = 1; - use_power = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/open/space, -/area/maintenance/disposal/incinerator) -"ckD" = ( -/obj/machinery/doorButtons/access_button{ - idDoor = "incinerator_airlock_exterior"; - layer = 3.1; - idSelf = "incinerator_access_control"; - name = "Incinerator airlock control"; - pixel_x = 8; - pixel_y = -24 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/fire{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - on = 1 - }, -/obj/machinery/doorButtons/access_button{ - idDoor = "incinerator_airlock_interior"; - idSelf = "incinerator_access_control"; - name = "Incinerator airlock control"; - pixel_x = 8; - pixel_y = 24 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"ckE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"ckF" = ( -/obj/structure/sign/fire{ - pixel_x = 32 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 2; - on = 1 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"ckG" = ( -/obj/machinery/light/small, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"ckH" = ( -/obj/machinery/light/small, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"ckI" = ( -/turf/open/floor/engine/air, -/area/engine/atmos) -"ckJ" = ( -/obj/machinery/light/small, -/turf/open/floor/engine/air, -/area/engine/atmos) -"ckK" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"ckL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"ckM" = ( -/obj/structure/girder, -/turf/open/floor/plating/airless, -/area/engine/atmos) -"ckN" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ckO" = ( -/obj/structure/closet/secure_closet/bar{ - pixel_x = -3; - pixel_y = -1; - req_access_txt = "25" - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"ckP" = ( -/turf/open/floor/wood, -/area/maintenance/port/aft) -"ckQ" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/port/aft) -"ckR" = ( -/obj/item/reagent_containers/glass/rag, -/obj/structure/table/wood, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/maintenance/port/aft) -"ckS" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/port/aft) -"ckT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"ckU" = ( -/obj/structure/chair, -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"ckV" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"ckW" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"ckX" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"ckY" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"ckZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Observation"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cla" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"clb" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"clc" = ( -/obj/item/cigbutt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cld" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue, -/area/medical/sleeper) -"cle" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 10 - }, -/area/medical/sleeper) -"clf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 2 - }, -/area/medical/sleeper) -"clg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 6 - }, -/area/medical/sleeper) -"clh" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue, -/area/medical/sleeper) -"cli" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"clj" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"clk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cll" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"clm" = ( -/obj/item/device/radio/intercom{ - broadcasting = 1; - freerange = 0; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_y = -30 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cln" = ( -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 2 - }, -/area/medical/medbay/central) -"clo" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 2 - }, -/area/medical/medbay/central) -"clp" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"clq" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/whiteyellow/corner{ - dir = 2 - }, -/area/medical/medbay/central) -"clr" = ( -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 6 - }, -/area/medical/medbay/central) -"cls" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastright{ - name = "Chemistry Desk"; - req_access_txt = "5; 33" - }, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Chemistry Desk"; - req_access_txt = "5" - }, -/obj/item/reagent_containers/glass/bottle/morphine, -/obj/item/reagent_containers/glass/bottle/toxin{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 8 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = -5 - }, -/obj/item/reagent_containers/syringe/epinephrine, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"clt" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/chemist, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 8 - }, -/area/medical/chemistry) -"clu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/chemist, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"clv" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 4 - }, -/area/medical/chemistry) -"clw" = ( -/obj/structure/table/glass, -/obj/item/folder/white{ - pixel_y = 2 - }, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/screwdriver{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/device/radio/headset/headset_med, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/whiteyellow{ - dir = 4 - }, -/area/medical/chemistry) -"clx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cly" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway - Fore"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"clz" = ( -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/metal/fifty, -/obj/item/clothing/glasses/welding, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"clA" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/lab) -"clB" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/white, -/area/science/lab) -"clC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/chair/stool, -/turf/open/floor/plasteel/white, -/area/science/lab) -"clD" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"clE" = ( -/obj/structure/table, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/scanning_module, -/obj/item/stock_parts/scanning_module, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 30 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"clF" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"clG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"clH" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/research) -"clI" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"clJ" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Research Division" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"clK" = ( -/turf/closed/wall/r_wall, -/area/maintenance/aft) -"clL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"clN" = ( -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"clO" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"clP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"clQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/noticeboard{ - pixel_y = -32 - }, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Research Division - Break Room"; - dir = 1; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) "clR" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) +/turf/open/floor/plasteel/floorgrime, +/area/maintenance/disposal/incinerator) "clS" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/science/explab) -"clT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "telelab"; - name = "test chamber blast door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/science/explab) -"clU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "telelab"; - name = "test chamber blast door" - }, -/turf/open/floor/plating, -/area/science/explab) -"clV" = ( -/obj/machinery/door/poddoor/preopen{ - id = "telelab"; - name = "test chamber blast door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/engine, -/area/science/explab) -"clW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"clX" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - locked = 0; - name = "Storage Room"; - req_access_txt = "0"; - req_one_access_txt = "12;47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"clY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"clZ" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cma" = ( -/obj/structure/rack, -/obj/item/clothing/suit/apron, -/obj/item/clothing/mask/surgical, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cmb" = ( -/obj/machinery/chem_master/condimaster{ - name = "CondiMaster Neo"; - pixel_x = -4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cmc" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/space, -/area/space/nearstation) -"cmd" = ( -/obj/machinery/door/airlock/public/glass{ - autoclose = 0; - frequency = 1449; - heat_proof = 1; - icon_state = "door_locked"; - id_tag = "incinerator_airlock_exterior"; - locked = 1; - name = "Incinerator Exterior Airlock"; - req_access_txt = "12" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"cme" = ( -/obj/item/stack/rods{ - amount = 25 - }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"cmf" = ( -/turf/open/floor/plating/airless, -/area/engine/atmos) -"cmg" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/item/reagent_containers/glass/beaker/cryoxadone, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/dropper, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cmh" = ( -/obj/item/reagent_containers/food/drinks/ale, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cmi" = ( -/obj/structure/light_construct/small{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 30 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cmk" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/surgery) -"cml" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/medical/surgery) -"cmm" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/medical/surgery) -"cmn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Observation"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/medical/surgery) -"cmo" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/medical/sleeper) -"cmp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"cmr" = ( -/obj/machinery/door/firedoor, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cms" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cmt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cmu" = ( -/turf/closed/wall, -/area/crew_quarters/heads/cmo) -"cmv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "cmoprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"cmw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "cmoprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"cmx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "cmoprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"cmy" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/turf/open/floor/plating, -/area/medical/medbay/central) -"cmz" = ( -/obj/machinery/reagentgrinder, -/obj/machinery/requests_console{ - department = "Chemistry"; - departmentType = 2; - pixel_x = -30; - receive_ore_updates = 1 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 8 - }, -/area/medical/chemistry) -"cmA" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cmB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cmC" = ( -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/structure/table/glass, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 4 - }, -/area/medical/chemistry) -"cmD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/chemistry{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cmE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/science{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/purple/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"cmF" = ( -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/lab) -"cmG" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/structure/table, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cmH" = ( -/obj/structure/table, -/obj/structure/disposalpipe/segment, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/disk/tech_disk, -/obj/item/disk/tech_disk, -/obj/item/disk/design_disk, -/obj/item/disk/design_disk, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cmI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cmJ" = ( -/obj/machinery/camera{ - c_tag = "Research and Development"; - dir = 8; - network = list("SS13","RD") - }, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/scanning_module{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/stock_parts/scanning_module, -/turf/open/floor/plasteel, -/area/science/lab) -"cmK" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/dark, -/area/aisat) -"cmL" = ( -/obj/machinery/door/window/westleft{ - dir = 2; - name = "Research Division Deliveries"; - req_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"cmM" = ( -/obj/machinery/door/airlock{ - name = "Research Emergency Storage"; - req_access_txt = "0"; - req_one_access_txt = "47" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cmN" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/medical{ - name = "Research Break Room"; - req_access_txt = "0"; - req_one_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"cmO" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/window/reinforced/tinted/fulltile, -/turf/open/floor/plating, -/area/science/research) -"cmP" = ( -/turf/closed/wall, -/area/science/explab) -"cmQ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_y = 30; - receive_ore_updates = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cmR" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/pen, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cmS" = ( -/obj/structure/table/reinforced, -/obj/item/hand_labeler, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/device/taperecorder, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cmT" = ( -/obj/machinery/computer/rdconsole/experiment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cmU" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/book/manual/experimentor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cmV" = ( -/obj/machinery/button/door{ - id = "telelab"; - name = "Test Chamber Blast Doors"; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/reagent_containers/dropper, -/obj/item/stack/medical/bruise_pack{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/stack/medical/ointment, -/obj/item/device/healthanalyzer, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cmW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cmX" = ( -/obj/structure/window/reinforced, -/obj/machinery/holopad, -/turf/open/floor/plasteel/dark, -/area/aisat) -"cmY" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cmZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cna" = ( -/obj/structure/rack, -/obj/item/clothing/under/color/white, -/obj/item/clothing/head/soft/mime, -/obj/item/clothing/under/color/white, -/obj/item/clothing/head/soft/mime, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/mask/surgical, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cnb" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"cnc" = ( -/obj/machinery/chem_heater, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cnd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon{ - dir = 1; - name = "incinerator output intake" - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cne" = ( -/obj/machinery/igniter{ - icon_state = "igniter0"; - id = "Incinerator"; - luminosity = 2; - on = 0 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cnf" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1441; - id = "air_in" - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cng" = ( -/obj/machinery/door/poddoor{ - id = "auxincineratorvent"; - name = "Incineration Chamber Vent" - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cnh" = ( -/obj/item/device/flashlight/lamp, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cni" = ( -/obj/item/reagent_containers/food/drinks/bottle/tequila, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cnj" = ( -/obj/item/reagent_containers/food/drinks/beer, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cnk" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/port/aft) -"cnl" = ( -/obj/structure/mineral_door/wood{ - name = "The Gobbetting Barmaid" - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cnm" = ( -/obj/structure/table, -/obj/item/hemostat, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel, -/area/medical/surgery) -"cnn" = ( -/obj/structure/table, -/obj/item/surgicaldrill, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/surgery) -"cno" = ( -/obj/structure/table, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/item/circular_saw, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/surgery) -"cnp" = ( -/obj/structure/table, -/obj/item/cautery{ - pixel_x = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/razor{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/surgery) -"cnq" = ( -/obj/structure/table, -/obj/item/retractor, -/turf/open/floor/plasteel, -/area/medical/surgery) -"cnr" = ( -/obj/machinery/computer/med_data{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/surgery) -"cns" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/surgery) -"cnt" = ( -/obj/structure/table/reinforced, -/obj/item/device/radio/intercom{ - broadcasting = 1; - freerange = 0; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_x = 30 - }, -/obj/structure/bedsheetbin{ - pixel_x = 2 - }, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/obj/item/gun/syringe, -/obj/item/clothing/glasses/eyepatch, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/surgery) -"cnu" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Cryogenics APC"; - areastring = "/area/medical/cryo"; - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 6; - pixel_y = 2 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/cryo) -"cnv" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/closet/secure_closet/medical1{ - pixel_x = -3 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cnw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cnx" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cny" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cnz" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/cryo) -"cnA" = ( -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"cnB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cnC" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cnD" = ( -/obj/item/cartridge/medical{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/cartridge/medical{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/cartridge/medical, -/obj/item/cartridge/chemistry{ - pixel_y = 2 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cnE" = ( -/obj/item/folder/blue, -/obj/structure/table/glass, -/obj/item/stamp/cmo, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cnF" = ( -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/clothing/glasses/hud/health, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cnG" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/item/storage/secure/safe{ - pixel_x = 5; - pixel_y = 26 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 30 - }, -/obj/item/screwdriver{ - pixel_y = 6 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cnH" = ( -/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") - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 10 - }, -/area/medical/chemistry) -"cnI" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whiteyellow/corner{ - dir = 8 - }, -/area/medical/chemistry) -"cnJ" = ( -/obj/machinery/disposal/bin{ - pixel_x = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cnK" = ( -/obj/machinery/chem_dispenser{ - layer = 2.7 - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 4 - }, -/area/medical/chemistry) -"cnL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters_2"; - name = "chemistry shutters" - }, -/turf/open/floor/plating, -/area/medical/chemistry) -"cnM" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/turf/open/floor/plasteel/yellow{ - dir = 4 - }, -/area/hallway/primary/aft) -"cnN" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/hallway/primary/aft) -"cnO" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cnP" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/purple/side{ - dir = 4 - }, -/area/hallway/primary/aft) -"cnQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/purple, -/area/hallway/primary/aft) -"cnR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters_2"; - name = "research shutters" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/lab) -"cnS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/lab) -"cnT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair/stool, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cnU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cnV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cnW" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/lab) -"cnX" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/science/lab) -"cnY" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 9 - }, -/area/science/research) -"cnZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/research) -"coa" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"cob" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Research Division Hallway - Central"; - dir = 2; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"coc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cod" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 - }, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/science/research) -"coe" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/science/research) -"cof" = ( -/turf/open/floor/plasteel/white/side{ - dir = 6 - }, -/area/science/research) -"cog" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/research) -"coh" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/research) -"coi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"coj" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-10" - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 2 - }, -/area/science/research) -"cok" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/explab) -"col" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"com" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"con" = ( -/obj/effect/landmark/start/scientist, -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"coo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/crowbar, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/glasses/science, -/obj/item/device/multitool{ - pixel_x = 3 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cop" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/science/explab) -"coq" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cor" = ( -/obj/structure/girder, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cos" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_y = 6 - }, -/obj/item/pen, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cot" = ( -/obj/structure/table, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/empty{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/reagent_containers/blood/empty{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cou" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cov" = ( -/obj/structure/bed, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cow" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cox" = ( -/obj/structure/mineral_door/wood{ - name = "The Gobbetting Barmaid" - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/port/aft) -"coy" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/suit/apron/surgical, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/surgery) -"coz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"coA" = ( -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"coB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"coC" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Surgery APC"; - areastring = "/area/medical/surgery"; - pixel_x = 26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/table, -/obj/item/surgical_drapes, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/surgery) -"coD" = ( -/obj/structure/bed/roller, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"coE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"coF" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/bedsheet/medical, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"coG" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/surgery) -"coH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/cryo) -"coI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"coJ" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"coK" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 2 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel, -/area/medical/cryo) -"coL" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"coM" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/cryo) -"coN" = ( -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/medbay/central) -"coO" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"coP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"coQ" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/chief_medical_officer, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"coR" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/mob/living/simple_animal/pet/cat/Runtime, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"coS" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "CMO's Office APC"; - areastring = "/area/crew_quarters/heads/cmo"; - pixel_x = 26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/camera{ - c_tag = "CMO's Office"; - dir = 8; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"coT" = ( -/obj/structure/closet/wardrobe/chemistry_white{ - pixel_x = -3 - }, -/obj/item/storage/backpack/satchel/chem, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"coU" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 8 - }, -/area/medical/chemistry) -"coV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"coW" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/chemist, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 4 - }, -/area/medical/chemistry) -"coX" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Chemistry Desk"; - req_access_txt = "5; 33" - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters_2"; - name = "chemistry shutters" - }, -/turf/open/floor/plasteel/whiteyellow{ - dir = 4 - }, -/area/medical/chemistry) -"coY" = ( -/turf/open/floor/plasteel/yellow{ - dir = 4 - }, -/area/hallway/primary/aft) -"coZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/hallway/primary/aft) -"cpa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/purple/side{ - dir = 4 - }, -/area/hallway/primary/aft) -"cpb" = ( -/turf/open/floor/plasteel/purple, -/area/hallway/primary/aft) -"cpc" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - dir = 4; - name = "Research and Development Desk"; - req_access_txt = "7" - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/door/firedoor, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters_2"; - name = "research shutters" - }, -/turf/open/floor/plating, -/area/science/lab) -"cpd" = ( -/obj/effect/landmark/start/scientist, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/lab) -"cpe" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cpf" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cpg" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cph" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 4 - }, -/area/science/lab) -"cpj" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/research) -"cpk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpl" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpm" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpn" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpo" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpp" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpr" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cps" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpt" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpu" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpw" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 4 - }, -/area/science/research) -"cpx" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Experimentation Lab"; - req_access_txt = "8" - }, -/turf/open/floor/plasteel/whitepurple{ - dir = 4 - }, -/area/science/explab) -"cpy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/explab) -"cpz" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cpA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cpB" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cpC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cpD" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cpE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cpF" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Experimentation Lab Maintenance"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cpG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cpH" = ( -/obj/structure/bed/roller, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cpI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"cpJ" = ( -/obj/structure/barricade/wooden, -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cpK" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cpL" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/structure/rack, -/obj/item/storage/firstaid/regular, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cpM" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/space, -/area/space/nearstation) -"cpN" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/maintenance/disposal/incinerator) -"cpO" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/aisat) -"cpP" = ( -/obj/structure/lattice/catwalk, -/obj/item/wrench, -/turf/open/space, -/area/space/nearstation) -"cpQ" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/port/aft) -"cpR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Port"; - dir = 8; - network = list("SS13","Engine") - }, -/obj/machinery/airalarm/engine{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"cpS" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cpT" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Surgery Maintenance"; - req_access_txt = "45" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cpU" = ( -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cpW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cpX" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre"; - req_access_txt = "45" - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cpY" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cpZ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cqa" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cqb" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Surgery Observation"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cqc" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/cryo) -"cqd" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cqe" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cqf" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cqg" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cqh" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cqi" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/medbay/central) -"cqj" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cqk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "cmoprivacy"; - name = "privacy shutter" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"cql" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cqm" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cqn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cqo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cqp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "CMO Maintenance"; - req_access_txt = "40" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cqq" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cqr" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Chemistry APC"; - areastring = "/area/medical/chemistry"; - pixel_x = -24 - }, -/obj/structure/closet/secure_closet/chemical{ - pixel_x = -3 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cqs" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 10 - }, -/area/medical/chemistry) -"cqt" = ( -/obj/machinery/chem_heater{ - pixel_x = 4 - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 2 - }, -/area/medical/chemistry) -"cqu" = ( -/obj/machinery/chem_master, -/obj/structure/noticeboard{ - desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; - dir = 1; - name = "requests board"; - pixel_y = -32 - }, -/obj/machinery/button/door{ - id = "chemistry_shutters_2"; - name = "chemistry shutters control"; - pixel_x = 26; - pixel_y = -26; - req_access_txt = "5; 33" - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 6 - }, -/area/medical/chemistry) -"cqv" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/turf/open/floor/plasteel/purple, -/area/hallway/primary/aft) -"cqw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters_2"; - name = "research shutters" - }, -/turf/open/floor/plating, -/area/science/lab) -"cqx" = ( -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "Research Lab APC"; - areastring = "/area/science/lab"; - pixel_y = -26 - }, -/obj/structure/cable/yellow, -/obj/structure/table, -/obj/machinery/button/door{ - id = "research_shutters_2"; - name = "research shutters control"; - pixel_x = -26; - pixel_y = -26; - req_access_txt = "7" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cqy" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cqz" = ( -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_y = -30; - receive_ore_updates = 1 - }, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cqA" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/eastleft{ - dir = 1; - name = "Research and Development Deliveries"; - req_access_txt = "7" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/lab) -"cqB" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cqC" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"cqD" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cqE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/research) -"cqF" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cqG" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cqH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cqI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"cqJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cqK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Research Division Hallway - Starboard"; - dir = 1; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cqL" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cqM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cqN" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 2 - }, -/area/science/research) -"cqO" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 6 - }, -/area/science/research) -"cqP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/science/explab) -"cqQ" = ( -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/explab) -"cqR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "Experimentation Lab APC"; - areastring = "/area/science/explab"; - pixel_y = -24 - }, -/obj/structure/cable/yellow, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cqS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/machinery/camera{ - c_tag = "Experimentation Lab"; - dir = 1; - network = list("SS13","RD") - }, -/obj/machinery/light, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cqT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cqU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cqV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cqW" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cqX" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cqY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cqZ" = ( -/obj/structure/barricade/wooden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cra" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"crb" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"crc" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/space, -/area/space/nearstation) -"crd" = ( -/obj/structure/disposaloutlet{ - dir = 2 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"cre" = ( -/obj/structure/sign/fire, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"crf" = ( -/obj/machinery/door/poddoor{ - id = "turbinevent"; - name = "Turbine Vent" - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"crg" = ( -/obj/item/toy/cards/deck, -/obj/structure/table/wood/poker, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"crh" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/maintenance/port/aft) -"crj" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/light_switch{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/surgery) -"crk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"crl" = ( -/obj/machinery/computer/operating{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"crm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"crn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/surgery) -"cro" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"crq" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"crr" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/cryo) -"crs" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/table/reinforced, -/obj/item/crowbar, -/obj/machinery/camera{ - c_tag = "Medbay Cryo"; - dir = 1; - network = list("SS13","Medbay") - }, -/obj/item/screwdriver{ - pixel_y = 6 - }, -/obj/item/clothing/neck/stethoscope, -/obj/item/wrench/medical, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"crt" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - broadcasting = 1; - freerange = 0; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_y = -30 - }, -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cru" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1; - name = "Connector Port (Air Supply)" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"crv" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1; - name = "Connector Port (Air Supply)" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"crw" = ( -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"crx" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 2 - }, -/area/medical/medbay/central) -"cry" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"crz" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"crA" = ( -/obj/structure/table/glass, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/storage/secure/briefcase, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"crB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"crC" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/keycard_auth{ - pixel_x = 26; - pixel_y = -7 - }, -/obj/machinery/computer/med_data/laptop, -/obj/structure/table/glass, -/obj/machinery/button/door{ - id = "cmoprivacy"; - name = "Privacy Shutters Control"; - pixel_x = 26; - pixel_y = 4 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"crD" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"crE" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chemistry Lab Maintenance"; - req_access_txt = "5; 33" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"crF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -29 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/aft) -"crG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"crH" = ( -/obj/machinery/power/apc/highcap/five_k{ - dir = 4; - name = "Aft Hallway APC"; - areastring = "/area/hallway/primary/aft"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/purple/corner{ - dir = 4 - }, -/area/hallway/primary/aft) -"crI" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Research and Development" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/lab) -"crJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"crK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white/side{ - dir = 5 - }, -/area/science/research) -"crL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/science/research) -"crM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/science/research) -"crN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "rdprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"crO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/door/poddoor/preopen{ - id = "rdprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"crP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/door/poddoor/preopen{ - id = "rdprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"crQ" = ( -/turf/closed/wall, -/area/crew_quarters/heads/hor) -"crR" = ( -/turf/closed/wall/r_wall, -/area/science/storage) -"crS" = ( -/obj/structure/sign/biohazard, -/turf/closed/wall/r_wall, -/area/science/storage) -"crT" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/research{ - name = "Toxins Storage"; - req_access_txt = "8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "toxins_blastdoor"; - name = "biohazard containment shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"crU" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"crV" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"crW" = ( -/obj/structure/closet/l3closet/scientist{ - pixel_x = -2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"crX" = ( -/obj/structure/closet/wardrobe/science_white, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"crY" = ( -/obj/structure/rack, -/obj/item/reagent_containers/blood/random, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"crZ" = ( -/obj/structure/table, -/obj/structure/bedsheetbin{ - pixel_x = 2 - }, -/obj/item/clothing/mask/muzzle, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"csa" = ( -/obj/structure/table, -/obj/item/restraints/handcuffs/cable/white, -/obj/item/gun/syringe, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"csb" = ( -/obj/structure/rack, -/obj/item/hatchet, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"csc" = ( -/obj/machinery/iv_drip, -/obj/item/roller, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"csd" = ( -/obj/structure/rack, -/obj/item/tank/internals/anesthetic, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cse" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"csf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"csg" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"csh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/port/aft) -"csi" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"csj" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 - }, -/turf/open/floor/plasteel, -/area/medical/surgery) -"csk" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/surgery) -"csl" = ( -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Medbay Surgery"; - dir = 1; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"csm" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/surgery) -"csn" = ( -/obj/item/device/radio/intercom{ - broadcasting = 1; - freerange = 0; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_y = -30 - }, -/obj/structure/closet/crate/freezer/blood, -/turf/open/floor/plasteel, -/area/medical/surgery) -"cso" = ( -/obj/structure/bed/roller, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 - }, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 2 - }, -/area/medical/surgery) -"csp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 2 - }, -/area/medical/surgery) -"csq" = ( -/obj/structure/bed, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/item/bedsheet/medical, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/camera{ - c_tag = "Medbay Recovery Room"; - dir = 1; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 2 - }, -/area/medical/surgery) -"csr" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"css" = ( -/turf/closed/wall, -/area/medical/cryo) -"cst" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/camera{ - c_tag = "Medbay Hallway Central"; - dir = 4; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"csu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"csv" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/medbay/central) -"csw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Chief Medical Officer's Office"; - req_access_txt = "40"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"csx" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"csy" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"csz" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/table/glass, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/pen, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"csA" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Medical Officer's Desk"; - departmentType = 5; - name = "Chief Medical Officer RC"; - pixel_y = -32 - }, -/obj/effect/landmark/start/chief_medical_officer, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"csB" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring medbay to ensure patient safety."; - dir = 8; - name = "Medbay Monitor"; - network = list("Medbay"); - pixel_x = 29 - }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/machinery/computer/card/minor/cmo{ - dir = 8 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"csC" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/aft) -"csD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"csE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/aft) -"csF" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 11 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"csH" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"csI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;5;9" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"csJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"csK" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"csL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"csM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Aft Emergency Storage"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"csN" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 14 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"csO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"csP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "7;47;29;12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"csQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"csR" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 12 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"csS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"csT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"csU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Research Maintenance"; - req_access_txt = "0"; - req_one_access_txt = "7;47;29" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"csV" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"csW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 13 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"csX" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"csY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "rdprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"csZ" = ( -/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_y = 2 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"ctb" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Research Director's Desk"; - departmentType = 5; - name = "Research Director RC"; - pixel_y = 30; - receive_ore_updates = 1 - }, -/obj/machinery/modular_computer/console/preset/research{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"ctc" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/landmark/xmastree/rdrod, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/hor) -"ctd" = ( -/obj/structure/displaycase/labcage, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/biohazard{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/hor) -"cte" = ( -/obj/item/storage/secure/safe{ - pixel_x = 32 - }, -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/hor) -"ctf" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"ctg" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"cth" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"cti" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/power/apc/highcap/five_k{ - dir = 1; - name = "Toxins Storage APC"; - areastring = "/area/science/storage"; - pixel_y = 25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"ctj" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"ctk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ctl" = ( -/obj/machinery/camera{ - active_power_usage = 0; - c_tag = "Turbine Vent"; - dir = 4; - network = list("Turbine"); - use_power = 0 - }, -/turf/open/space, -/area/space/nearstation) -"ctm" = ( -/obj/structure/grille/broken, -/turf/open/space, -/area/space/nearstation) -"ctn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/vending/kink, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cto" = ( -/obj/machinery/vending/assist, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ctq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"ctr" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/patients_rooms/room_a) -"cts" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/vending/wallmed{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms/room_a) -"ctt" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/patients_rooms/room_a) -"ctu" = ( -/obj/machinery/door/airlock/medical{ - name = "Patient Room A"; - req_access_txt = "5" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms/room_a) -"ctv" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ctw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"ctx" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = -28 - }, -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cty" = ( -/obj/machinery/suit_storage_unit/cmo, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"ctz" = ( -/obj/structure/table/glass, -/obj/item/pen, -/obj/item/clothing/neck/stethoscope, -/obj/structure/extinguisher_cabinet{ - pixel_x = 6; - pixel_y = -30 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"ctA" = ( -/turf/closed/wall/r_wall, -/area/medical/genetics) -"ctB" = ( -/turf/closed/wall, -/area/medical/genetics) -"ctC" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Genetics Maintenance"; - req_access_txt = "9"; - req_one_access_txt = "0" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/aft) -"ctD" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall, -/area/medical/genetics) -"ctE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/blue/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"ctF" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ctG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"ctH" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall, -/area/maintenance/aft) -"ctJ" = ( -/obj/item/storage/toolbox/emergency, -/obj/structure/closet/firecloset, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"ctK" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"ctL" = ( -/turf/closed/wall/r_wall, -/area/science/misc_lab/range) -"ctM" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Research Testing Range Maintenance"; - req_access_txt = "0"; - req_one_access_txt = "7;47;29" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"ctN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 6 - }, -/area/science/research) -"ctO" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/research) -"ctP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"ctQ" = ( -/obj/machinery/button/door{ - id = "xeno_blastdoor"; - name = "Secure Lab Shutter Control"; - pixel_x = -5; - pixel_y = -5; - req_access_txt = "47" - }, -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "rdprivacy"; - name = "Privacy Shutters Control"; - pixel_x = 5; - pixel_y = 5 - }, -/obj/machinery/button/door{ - id = "Biohazard"; - name = "Entrance Shutter Control"; - pixel_x = -5; - pixel_y = 5; - req_access_txt = "47" - }, -/obj/machinery/button/door{ - id = "toxins_blastdoor"; - name = "Toxins Shutter Control"; - pixel_x = 5; - pixel_y = -5; - req_access_txt = "47" - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"ctR" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/research_director, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"ctS" = ( -/obj/machinery/computer/robotics{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"ctT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/hor) -"ctU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/hor) -"ctV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/hor) -"ctW" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"ctX" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"ctY" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/chair/stool, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"ctZ" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"cua" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"cub" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cuc" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cud" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cue" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/solar{ - id = "aftport"; - name = "Aft-Port Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port/aft) -"cuf" = ( -/obj/structure/closet, -/obj/item/extinguisher, -/obj/effect/decal/cleanable/cobweb, -/obj/item/device/flashlight, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cug" = ( -/obj/structure/closet, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/dropper, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cuh" = ( -/obj/structure/closet/crate, -/obj/item/stack/cable_coil, -/obj/item/grenade/chem_grenade, -/obj/item/device/flashlight, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cui" = ( -/obj/structure/closet/crate, -/obj/item/coin/silver, -/obj/item/reagent_containers/spray/weedspray, -/obj/item/paper, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cuj" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Port Quarter Maintenance APC"; - areastring = "/area/maintenance/port/aft"; - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cuk" = ( -/obj/structure/table, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/clothing/neck/stethoscope, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Patient Room A APC"; - areastring = "/area/medical/patients_rooms/room_a"; - pixel_x = -26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/patients_rooms/room_a) -"cul" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms/room_a) -"cum" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/button/door{ - id = "isola"; - name = "Privacy Shutters"; - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/patients_rooms/room_a) -"cun" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "isola"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/medical/patients_rooms/room_a) -"cuo" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cup" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cuq" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cur" = ( -/obj/item/storage/box/rxglasses{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -29 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/vault, -/area/medical/genetics) -"cus" = ( -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/gloves/color/latex, -/obj/item/storage/box/disks{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/vault, -/area/medical/genetics) -"cut" = ( -/obj/machinery/requests_console{ - department = "Genetics"; - departmentType = 0; - name = "Genetics Requests Console"; - pixel_y = 30 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/storage/box/monkeycubes, -/obj/item/device/radio/headset/headset_medsci, -/obj/item/device/flashlight/pen{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/device/flashlight/pen{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/structure/noticeboard{ - desc = "A board for pinning important notices upon."; - name = "notice board"; - pixel_x = -32; - pixel_y = 32 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/vault, -/area/medical/genetics) -"cuu" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Genetics Lab APC"; - areastring = "/area/medical/genetics"; - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/storage/pill_bottle/mutadone, -/obj/item/storage/pill_bottle/mannitol, -/obj/structure/table/glass, -/turf/open/floor/plasteel/vault, -/area/medical/genetics) -"cuv" = ( -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/vault, -/area/medical/genetics) -"cuw" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel/blue/side{ - dir = 9 - }, -/area/medical/genetics) -"cux" = ( -/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 = 32 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/blue/side{ - dir = 5 - }, -/area/medical/genetics) -"cuy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "genetics_shutters"; - name = "genetics shutters" - }, -/turf/open/floor/plating, -/area/medical/genetics) -"cuz" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/turf/open/floor/plasteel/blue, -/area/medical/genetics) -"cuA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/blue/side{ - dir = 8 - }, -/area/hallway/primary/aft) -"cuB" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/aft) -"cuC" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/wrench, -/turf/open/floor/plating, -/area/maintenance/aft) -"cuD" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/storage/box/lights/mixed, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cuE" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cuF" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cuG" = ( -/turf/open/floor/engine{ - dir = 9; - icon_state = "floor" - }, -/area/science/misc_lab/range) -"cuH" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cuI" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 5 - }, -/area/science/research) -"cuJ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cuK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 2 - }, -/area/science/research) -"cuL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/machinery/door/poddoor/preopen{ - id = "rdprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"cuM" = ( -/obj/machinery/computer/card/minor/rd{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cuN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cuO" = ( -/obj/machinery/computer/mecha{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cuP" = ( -/obj/structure/table, -/obj/item/device/aicard, -/obj/item/circuitboard/aicore{ - pixel_x = -2; - pixel_y = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cuQ" = ( -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cuR" = ( -/obj/structure/table, -/obj/item/device/taperecorder{ - pixel_x = -3 - }, -/obj/item/device/paicard{ - pixel_x = 4 - }, -/obj/item/storage/secure/briefcase, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cuS" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"cuT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"cuU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"cuV" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"cuW" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Toxins Storage"; - dir = 8; - network = list("SS13","RD") - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"cuX" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cuY" = ( -/obj/structure/rack, -/obj/item/extinguisher, -/obj/item/storage/belt/utility, -/obj/item/clothing/mask/gas, -/obj/item/storage/box/lights/mixed, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cuZ" = ( -/turf/closed/wall/r_wall, -/area/science/circuit) -"cva" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cvb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cvc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cvd" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"cve" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"cvf" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"cvg" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"cvh" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"cvi" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"cvj" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cvk" = ( -/obj/structure/closet/crate, -/obj/item/crowbar/red, -/obj/item/pen, -/obj/item/device/flashlight/pen{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cvl" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cvm" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cvn" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cvo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/medical/patients_rooms/room_a) -"cvp" = ( -/turf/closed/wall, -/area/medical/patients_rooms/room_a) -"cvq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/examroom{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cvr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cvs" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cvt" = ( -/turf/closed/wall, -/area/medical/genetics/cloning) -"cvu" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/door/window/southleft{ - dir = 2; - name = "Cloning Shower" - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/vault, -/area/medical/genetics/cloning) -"cvv" = ( -/obj/machinery/door/window/southleft{ - base_state = "right"; - dir = 2; - icon_state = "right"; - name = "Cloning Shower" - }, -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "sink"; - pixel_y = 28 - }, -/turf/open/floor/plasteel/vault, -/area/medical/genetics/cloning) -"cvw" = ( -/obj/machinery/clonepod{ - pixel_y = 2 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/vault, -/area/medical/genetics/cloning) -"cvx" = ( -/obj/machinery/computer/scan_consolenew{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Genetics Lab"; - dir = 4; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/whiteblue, -/area/medical/genetics) -"cvy" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/geneticist, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 9 - }, -/area/medical/genetics) -"cvz" = ( -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/genetics) -"cvA" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/geneticist, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 5 - }, -/area/medical/genetics) -"cvB" = ( -/obj/machinery/computer/scan_consolenew{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue, -/area/medical/genetics) -"cvC" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/storage/box/syringes, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/blue/side{ - dir = 8 - }, -/area/medical/genetics) -"cvD" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/geneticist, -/turf/open/floor/plasteel/blue/side{ - dir = 4 - }, -/area/medical/genetics) -"cvE" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/pen, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Genetics Desk"; - req_access_txt = "5;9" - }, -/obj/machinery/door/window/southleft{ - dir = 4; - name = "Outer Window" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "genetics_shutters"; - name = "genetics shutters" - }, -/turf/open/floor/plating, -/area/medical/genetics) -"cvF" = ( -/turf/open/floor/plasteel/blue, -/area/medical/genetics) -"cvG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"cvH" = ( -/turf/closed/wall, -/area/science/robotics/mechbay) -"cvI" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mech Bay Maintenance"; - req_access_txt = "29" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/aft) -"cvJ" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -29 - }, -/turf/open/floor/engine{ - dir = 9; - icon_state = "floor" - }, -/area/science/misc_lab/range) -"cvK" = ( -/obj/machinery/magnetic_module, -/obj/effect/landmark/blobstart, -/obj/structure/target_stake, -/obj/effect/turf_decal/bot{ - dir = 9 - }, -/turf/open/floor/plasteel{ - dir = 9 - }, -/area/science/misc_lab/range) -"cvL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "researchrangeshutters"; - name = "blast door" - }, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"cvM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"cvN" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cvO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/science/research) -"cvP" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Research Director's Office"; - req_access_txt = "30"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cvQ" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cvR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cvS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cvT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cvU" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cvV" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"cvW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"cvX" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"cvY" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"cvZ" = ( -/obj/structure/closet/crate, -/obj/item/device/multitool, -/obj/item/clothing/gloves/color/fyellow, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cwa" = ( -/obj/structure/reagent_dispensers/watertank/high, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cwb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"cwc" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/aft) -"cwd" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cwe" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "aftport"; - name = "Aft-Port Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port/aft) -"cwf" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"cwg" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"cwh" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cwi" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cwj" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cwm" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cwn" = ( -/obj/structure/rack, -/obj/item/clothing/glasses/sunglasses, -/obj/item/device/flashlight/pen, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cwo" = ( -/obj/structure/table, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/clothing/neck/stethoscope, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Patient Room B APC"; - areastring = "/area/medical/patients_rooms/room_b"; - pixel_x = -26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/patients_rooms/room_b) -"cwp" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/vending/wallmed{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms/room_b) -"cwq" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/button/door{ - id = "isolb"; - name = "Privacy Shutters"; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/patients_rooms/room_b) -"cwr" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "isolb"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/medical/patients_rooms/room_b) -"cws" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/aft) -"cwt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cwu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cwv" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 9 - }, -/area/medical/genetics/cloning) -"cww" = ( -/obj/effect/landmark/start/geneticist, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/genetics/cloning) -"cwx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/computer/cloning{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 5 - }, -/area/medical/genetics/cloning) -"cwy" = ( -/obj/machinery/dna_scannernew, -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/turf/open/floor/plasteel/whiteblue, -/area/medical/genetics) -"cwz" = ( -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/genetics) -"cwA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cwB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/genetics) -"cwC" = ( -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel/whiteblue, -/area/medical/genetics) -"cwD" = ( -/obj/item/storage/box/disks{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -29 - }, -/obj/machinery/camera{ - c_tag = "Genetics Desk"; - dir = 4; - network = list("SS13","Medbay") - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/blue/side{ - dir = 8 - }, -/area/medical/genetics) -"cwE" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/button/door{ - id = "genetics_shutters"; - name = "genetics shutters control"; - pixel_x = 28; - req_access_txt = "9" - }, -/turf/open/floor/plasteel/blue/side{ - dir = 4 - }, -/area/medical/genetics) -"cwF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel/blue/corner{ - dir = 1 - }, -/area/hallway/primary/aft) -"cwG" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cwH" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/science/robotics/mechbay) -"cwI" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 31 - }, -/turf/open/floor/mech_bay_recharge_floor, -/area/science/robotics/mechbay) -"cwJ" = ( -/obj/machinery/computer/mech_bay_power_console, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"cwK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cwL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cwM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Research Division Hallway - Mech Bay"; - dir = 4; - network = list("SS13","RD") - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/white/side{ - dir = 6 - }, -/area/science/research) -"cwN" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cwO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/science/research) -"cwP" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "RD Office APC"; - areastring = "/area/crew_quarters/heads/hor"; - pixel_y = -27 - }, -/obj/structure/cable/yellow, -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/obj/item/twohanded/required/kirbyplants/dead, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cwQ" = ( -/obj/item/paper_bin{ - pixel_y = 7 - }, -/obj/structure/table, -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/obj/item/stamp/rd{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/folder/white{ - pixel_x = 9; - pixel_y = -1 - }, -/obj/item/pen, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cwR" = ( -/obj/structure/table, -/obj/item/cartridge/signal/toxins, -/obj/item/cartridge/signal/toxins{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/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/machinery/light, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cwS" = ( -/obj/structure/closet/secure_closet/RD, -/obj/machinery/keycard_auth{ - pixel_y = -24 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cwT" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cwU" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cwV" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"cwW" = ( -/obj/item/cigbutt, -/obj/machinery/light_switch{ - pixel_y = -23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"cwX" = ( -/obj/effect/landmark/start/scientist, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/science/storage) -"cwY" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/light/small, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"cwZ" = ( -/turf/open/floor/plasteel, -/area/science/circuit) -"cxa" = ( -/obj/item/stack/cable_coil, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"cxb" = ( -/obj/structure/rack, -/obj/item/tank/internals/air, -/obj/item/wrench, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port/aft) -"cxc" = ( -/obj/item/trash/chips, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cxd" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cxe" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/patients_rooms/room_b) -"cxf" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms/room_b) -"cxg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/patients_rooms/room_b) -"cxh" = ( -/obj/machinery/door/airlock/medical{ - name = "Patient Room B"; - req_access_txt = "5" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms/room_b) -"cxi" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cxj" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cxk" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 2 - }, -/area/medical/medbay/aft) -"cxl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/genetics/cloning) -"cxm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/genetics/cloning) -"cxn" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics/cloning) -"cxo" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/genetics/cloning) -"cxp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/genetics) -"cxq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 9 - }, -/area/medical/genetics) -"cxr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/genetics) -"cxs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cxt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/genetics) -"cxu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 5 - }, -/area/medical/genetics) -"cxv" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/genetics) -"cxw" = ( -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/stack/packageWrap, -/obj/item/pen, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/table/glass, -/turf/open/floor/plasteel/blue/side{ - dir = 8 - }, -/area/medical/genetics) -"cxx" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/blue/corner{ - dir = 4 - }, -/area/medical/genetics) -"cxy" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 5 - }, -/area/medical/genetics) -"cxz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=10.1-Central-from-Aft"; - location = "10-Aft-To-Central" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cxA" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cxB" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=9.1-Escape-1"; - location = "8.1-Aft-to-Escape" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"cxC" = ( -/obj/machinery/door/poddoor/shutters{ - id = "Skynet_launch"; - name = "Mech Bay" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cxD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cxE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"cxF" = ( -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"cxG" = ( -/obj/machinery/camera{ - c_tag = "Mech Bay"; - dir = 8; - network = list("SS13","RD") - }, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"cxH" = ( -/turf/open/floor/plating, -/area/science/misc_lab/range) -"cxI" = ( -/obj/machinery/camera{ - c_tag = "Research Testing Range"; - dir = 8; - network = list("SS13","RD"); - pixel_y = -22 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"cxJ" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"cxK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Toxins Storage"; - req_access_txt = "8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/science/storage) -"cxL" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/aft) -"cxM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cxN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"cxO" = ( -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cxP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cxQ" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"cxR" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cxS" = ( -/obj/item/latexballon, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cxT" = ( -/obj/item/clothing/suit/ianshirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cxU" = ( -/turf/closed/wall, -/area/medical/medbay/aft) -"cxV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/aft) -"cxW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cxX" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/medbay/aft) -"cxY" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "CloningDoor"; - name = "Cloning Lab"; - req_access_txt = "5; 68" - }, -/turf/open/floor/plasteel/whiteblue, -/area/medical/genetics/cloning) -"cxZ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/genetics/cloning) -"cya" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics/cloning) -"cyb" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/genetics/cloning) -"cyc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "Genetics Lab"; - req_access_txt = "5; 9; 68" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue, -/area/medical/genetics) -"cyd" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/genetics) -"cye" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cyf" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/landmark/start/geneticist, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cyg" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cyh" = ( -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/genetics) -"cyi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - id_tag = "AuxGenetics"; - locked = 0; - name = "Genetics Lab"; - req_access_txt = "9"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"cyj" = ( -/turf/open/floor/plasteel/blue/side{ - dir = 8 - }, -/area/medical/genetics) -"cyk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"cyl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 4 - }, -/area/medical/genetics) -"cym" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - id_tag = "AuxGenetics"; - locked = 0; - name = "Genetics Access"; - req_access_txt = "9"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"cyn" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cyo" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"cyp" = ( -/obj/machinery/door/poddoor/shutters{ - id = "Skynet_launch"; - name = "Mech Bay" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cyq" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cyr" = ( -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"cys" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/landmark/start/roboticist, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"cyt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"cyu" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"cyv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cyw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cyx" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cyy" = ( -/obj/structure/sign/biohazard, -/turf/closed/wall, -/area/science/mixing) -"cyz" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/structure/closet/l3closet/scientist{ - pixel_x = -2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cyA" = ( -/obj/structure/closet/wardrobe/science_white, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cyB" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cyC" = ( -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cyD" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cyE" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Toxins - Lab"; - dir = 2; - network = list("SS13","RD") - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cyF" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cyG" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cyH" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cyI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"cyJ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cyK" = ( -/turf/closed/wall/r_wall, -/area/science/mixing) -"cyM" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/circuit) -"cyN" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/medbay/aft) -"cyO" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/medbay/aft) -"cyP" = ( -/obj/machinery/vending/coffee, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/medbay/aft) -"cyQ" = ( -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/machinery/vending/cola/random, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/medbay/aft) -"cyR" = ( -/obj/machinery/vending/cigarette, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/medbay/aft) -"cyT" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cyU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/aft) -"cyV" = ( -/obj/machinery/button/door{ - desc = "A remote control switch for the cloning door."; - id = "CloningDoor"; - name = "Cloning Exit Button"; - normaldoorcontrol = 1; - pixel_x = -23; - pixel_y = 8 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 10 - }, -/area/medical/genetics/cloning) -"cyW" = ( -/obj/effect/landmark/start/geneticist, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 2 - }, -/area/medical/genetics/cloning) -"cyX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/machinery/power/apc{ - dir = 4; - locked = 0; - name = "Cloning Lab APC"; - areastring = "/area/medical/genetics/cloning"; - pixel_x = 24 - }, -/obj/structure/cable/yellow, -/obj/machinery/camera{ - c_tag = "Genetics Cloning Lab"; - dir = 8; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 6 - }, -/area/medical/genetics/cloning) -"cyY" = ( -/turf/open/floor/plasteel/whiteblue/side{ - dir = 10 - }, -/area/medical/genetics) -"cyZ" = ( -/turf/open/floor/plasteel/whiteblue/side{ - dir = 2 - }, -/area/medical/genetics) -"cza" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 6 - }, -/area/medical/genetics) -"czb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 10 - }, -/area/medical/genetics) -"czc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 0 - }, -/area/medical/genetics) -"czd" = ( -/obj/machinery/light_switch{ - pixel_x = 23 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 6 - }, -/area/medical/genetics) -"cze" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/genetics) -"czf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"czg" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"czh" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/button/door{ - dir = 2; - id = "Skynet_launch"; - name = "Mech Bay Door Control"; - pixel_x = 26; - pixel_y = 6; - req_one_access_txt = "29" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"czi" = ( -/obj/machinery/button/door{ - dir = 2; - id = "Skynet_launch"; - name = "Mech Bay Door Control"; - pixel_x = -26; - pixel_y = 6 - }, -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = -2 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"czj" = ( -/turf/open/floor/mech_bay_recharge_floor, -/area/science/robotics/mechbay) -"czk" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"czl" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/paper/guides/jobs/security/range{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"czm" = ( -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "door"; - req_access_txt = "0" - }, -/turf/open/floor/engine{ - dir = 9; - icon_state = "floor" - }, -/area/science/misc_lab/range) -"czn" = ( -/obj/structure/table/reinforced, -/obj/machinery/magnetic_controller{ - autolink = 1; - pixel_y = 3 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/clothing/ears/earmuffs, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"czo" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"czp" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"czq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 2 - }, -/area/science/research) -"czr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "toxins_blastdoor"; - name = "biohazard containment door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/mixing) -"czs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"czt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"czu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"czv" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"czw" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"czx" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"czy" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"czz" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"czA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"czB" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"czC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;47" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"czD" = ( -/turf/closed/wall, -/area/science/mixing) -"czE" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/door/firedoor, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/syringe, -/obj/item/pen, -/turf/open/floor/plasteel/whitegreen, -/area/medical/medbay/central) -"czF" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/science/mixing) -"czG" = ( -/obj/item/stack/rods/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/target, -/obj/item/target/syndicate, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/structure/closet/crate/secure{ - desc = "A secure crate containing various materials for building a customised test-site."; - name = "Test Site Materials Crate"; - req_access_txt = "8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/science/mixing) -"czH" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plasteel/floorgrime, -/area/maintenance/disposal/incinerator) -"czI" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/wall, -/area/science/mixing) -"czJ" = ( -/turf/closed/wall, -/area/science/test_area) -"czK" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/test_area) -"czL" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"czN" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/turf/open/floor/plating, -/area/medical/medbay/aft) -"czO" = ( -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"czP" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"czQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"czR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"czS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/cigbutt, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"czT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/medical{ - name = "Medbay Break Room"; - req_access_txt = "5" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"czU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"czV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"czW" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Medbay Aft APC"; - areastring = "/area/medical/medbay/aft"; - pixel_x = 26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/disposalpipe/junction, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"czX" = ( -/obj/item/book/manual/medical_cloning{ - pixel_y = 6 - }, -/obj/item/paper, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/vault, -/area/medical/genetics/cloning) -"czY" = ( -/obj/item/storage/box/rxglasses{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/table/glass, -/turf/open/floor/plasteel/vault, -/area/medical/genetics/cloning) -"czZ" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/vault, -/area/medical/genetics/cloning) -"cAa" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/closet/wardrobe/genetics_white, -/turf/open/floor/plasteel/vault, -/area/medical/genetics) -"cAb" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/bed/roller, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/genetics) -"cAc" = ( -/obj/structure/bed/roller, -/obj/machinery/door/window/westleft{ - dir = 1; - name = "Monkey Pen"; - pixel_y = 2; - req_access_txt = "9" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/genetics) -"cAd" = ( -/obj/machinery/light, -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "Monkey Pen"; - pixel_y = 2; - req_access_txt = "9" - }, -/obj/structure/bed/roller, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/genetics) -"cAe" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/bed/roller, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/genetics) -"cAf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/vault, -/area/medical/genetics) -"cAg" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel/vault, -/area/medical/genetics) -"cAh" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway - Middle"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cAi" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cAj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"cAk" = ( -/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/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cAl" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cAm" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cAn" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cAo" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Mech Bay APC"; - areastring = "/area/science/robotics/mechbay"; - pixel_x = 28 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cAp" = ( -/obj/structure/rack, -/obj/item/target, -/obj/item/target, -/obj/item/target/alien, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/item/target/clown, -/obj/item/target/syndicate, -/obj/item/target/syndicate, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light_switch{ - pixel_x = -25 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cAq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cAr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cAs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Research Testing Range"; - req_access_txt = "0"; - req_one_access_txt = "7;47;29" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/purple, -/area/science/misc_lab/range) -"cAt" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/research) -"cAu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cAv" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 4 - }, -/area/science/research) -"cAw" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/research{ - name = "Toxins Lab"; - req_access_txt = "8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "toxins_blastdoor"; - name = "biohazard containment shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"cAx" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cAy" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cAz" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cAA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cAB" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cAC" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cAD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cAE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/holopad, -/obj/effect/landmark/start/scientist, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cAF" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cAG" = ( -/obj/structure/window/reinforced, -/obj/machinery/portable_atmospherics/scrubber, -/obj/item/storage/firstaid/toxin, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cAH" = ( -/obj/structure/sign/biohazard, -/turf/closed/wall/r_wall, -/area/science/mixing) -"cAI" = ( -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/chair/comfy{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cAJ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/floorgrime, -/area/science/mixing) -"cAK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cAL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/science/mixing) -"cAM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - cyclelinkeddir = 2; - id_tag = "ResearchExt"; - name = "Research Division"; - req_access_txt = "0"; - req_one_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"cAN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cAO" = ( -/obj/structure/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 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cAP" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/mixing) -"cAQ" = ( -/obj/structure/window/reinforced, -/obj/item/target, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/science/test_area) -"cAS" = ( -/obj/structure/chair/stool, -/obj/item/device/radio/intercom{ - broadcasting = 1; - freerange = 0; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_x = -30 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cAT" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cAU" = ( -/obj/item/cigbutt, -/obj/machinery/holopad, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cAV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cAW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cAX" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay/aft) -"cAY" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/aft) -"cAZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cBa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/item/device/radio/intercom{ - broadcasting = 1; - freerange = 0; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_x = 30 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cBb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/medical/genetics/cloning) -"cBc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/centcom{ - name = "Genetics"; - opacity = 1; - req_access_txt = "9" - }, -/turf/open/floor/plasteel/dark, -/area/medical/genetics) -"cBd" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall, -/area/hallway/primary/aft) -"cBe" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cBf" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall, -/area/science/robotics/mechbay) -"cBg" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cBh" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cBi" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 28 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cBj" = ( -/obj/structure/table, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cBk" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "researchrangeshutters"; - name = "Blast Door Control"; - pixel_y = -24; - req_access_txt = "0" - }, -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cBl" = ( -/obj/item/gun/energy/laser/practice, -/obj/machinery/power/apc{ - dir = 2; - name = "Research Firing Range APC"; - areastring = "/area/science/misc_lab/range"; - pixel_y = -28 - }, -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cBm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "researchrangeshutters"; - name = "blast door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"cBn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"cBo" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cBp" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/research) -"cBq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "toxins_blastdoor"; - name = "biohazard containment door" - }, -/turf/open/floor/plating, -/area/science/mixing) -"cBr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cBs" = ( -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cBt" = ( -/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_y = 2 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cBu" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/scientist, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cBv" = ( -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cBw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cBx" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cBy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cBz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cBA" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cBB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"cBC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Room Access"; - req_access_txt = "8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "toxins_blastdoor"; - name = "biohazard containment shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"cBD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cBE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cBF" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cBG" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Room"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"cBH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cBI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/mixing) -"cBJ" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/mixing) -"cBK" = ( -/obj/machinery/light/small, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/mixing) -"cBL" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/button/massdriver{ - dir = 2; - id = "toxinsdriver"; - pixel_x = 24; - pixel_y = -24 - }, -/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 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cBM" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/wall, -/area/science/test_area) -"cBN" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cBO" = ( -/obj/item/device/flashlight/lamp, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cBP" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cBQ" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"cBR" = ( -/turf/closed/wall/r_wall, -/area/medical/virology) -"cBS" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/virology) -"cBT" = ( -/obj/item/cigbutt, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cBU" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cBV" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -30 - }, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/table/glass, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cBW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light/small, -/obj/structure/extinguisher_cabinet{ - pixel_y = -29 - }, -/obj/machinery/camera{ - c_tag = "Medbay Break Room"; - dir = 1; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cBX" = ( -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cBY" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cBZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cCa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white/side{ - dir = 9 - }, -/area/medical/medbay/aft) -"cCb" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel/white/corner{ - dir = 2 - }, -/area/medical/medbay/aft) -"cCc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/medbay/aft) -"cCd" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel/white/corner{ - dir = 8 - }, -/area/medical/medbay/aft) -"cCe" = ( -/turf/closed/wall, -/area/medical/morgue) -"cCf" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/landmark/revenantspawn, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cCg" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cCi" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cCj" = ( -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cCk" = ( -/obj/machinery/airalarm{ - pixel_y = 32 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/paper/guides/jobs/medical/morgue{ - pixel_x = -4 - }, -/obj/effect/landmark/revenantspawn, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cCl" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"cCm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel/purple/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"cCn" = ( -/turf/closed/wall/r_wall, -/area/science/robotics/mechbay) -"cCo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics_shutters"; - name = "robotics shutters" - }, -/turf/open/floor/plating, -/area/science/robotics/mechbay) -"cCp" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cCq" = ( -/turf/closed/wall/r_wall, -/area/science/robotics/lab) -"cCr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/science/research) -"cCs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/science/research) -"cCt" = ( -/obj/structure/closet/bombcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cCu" = ( -/obj/item/device/assembly/signaler{ - 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, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cCv" = ( -/obj/item/device/transfer_valve{ - pixel_x = -5 - }, -/obj/item/device/transfer_valve{ - pixel_x = -5 - }, -/obj/item/device/transfer_valve, -/obj/item/device/transfer_valve, -/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_y = -30; - receive_ore_updates = 1 - }, -/obj/structure/table/reinforced, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/science/mixing) -"cCw" = ( -/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, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cCx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/structure/tank_dispenser, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cCy" = ( -/obj/machinery/disposal/bin{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cCz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cCA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cCB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cCC" = ( -/obj/structure/table, -/obj/item/device/assembly/igniter{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 2; - pixel_y = -1 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Toxins Lab APC"; - areastring = "/area/science/mixing"; - pixel_x = 26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cCD" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cCE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/floorgrime, -/area/science/mixing) -"cCF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/science/mixing) -"cCG" = ( -/obj/machinery/door/window/southleft{ - name = "Mass Driver Door"; - req_access_txt = "7" - }, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plasteel, -/area/science/mixing) -"cCH" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cCI" = ( -/turf/open/floor/plating/airless, -/area/science/test_area) -"cCJ" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cCK" = ( -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cCL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cCM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cCN" = ( -/obj/machinery/camera{ - c_tag = "Medbay Hallway Aft"; - dir = 4; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/white/side{ - dir = 5 - }, -/area/medical/medbay/aft) -"cCO" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cCP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cCQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/medical/medbay/aft) -"cCR" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/medbay/aft) -"cCS" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cCT" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cCU" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/bodycontainer/morgue, -/obj/effect/landmark/revenantspawn, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cCV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cCW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cCX" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cCY" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cCZ" = ( -/obj/machinery/vending/cola/random, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"cDa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics_shutters"; - name = "robotics shutters" - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"cDb" = ( -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/machinery/button/door{ - id = "robotics_shutters"; - name = "robotics shutters control"; - pixel_x = -26; - pixel_y = 26; - req_access_txt = "29" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cDc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cDd" = ( -/obj/machinery/mecha_part_fabricator{ - dir = 2 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cDe" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = 32 - }, -/obj/structure/rack, -/obj/item/book/manual/robotics_cyborgs{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/storage/belt/utility, -/obj/item/reagent_containers/glass/beaker/large, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cDf" = ( -/obj/machinery/mecha_part_fabricator{ - dir = 2 - }, -/obj/machinery/camera{ - c_tag = "Robotics - Fore"; - dir = 2; - network = list("SS13","RD") - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cDg" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Robotics Lab APC"; - areastring = "/area/science/robotics/lab"; - pixel_y = 25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cDh" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - cyclelinkeddir = 2; - id_tag = "ResearchExt"; - name = "Research Division"; - req_access_txt = "0"; - req_one_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"cDi" = ( -/turf/closed/wall, -/area/science/robotics/lab) -"cDj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cDk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/science/mixing) -"cDl" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/science/mixing) -"cDm" = ( -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cDn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cDo" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cDp" = ( -/obj/structure/table, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/item/device/multitool{ - pixel_x = 3 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cDq" = ( -/obj/machinery/mass_driver{ - dir = 4; - id = "toxinsdriver" - }, -/turf/open/floor/plating, -/area/science/mixing) -"cDr" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_y = -32 - }, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/science/mixing) -"cDs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/mixing) -"cDt" = ( -/obj/machinery/door/poddoor{ - id = "toxinsdriver"; - name = "Toxins Launcher Bay Door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/science/mixing) -"cDu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cDv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cDw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cDx" = ( -/obj/item/device/radio/beacon, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cDy" = ( -/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. An external light is attached to the top."; - dir = 8; - invuln = 1; - light = null; - luminosity = 3; - name = "Hardened Bomb-Test Camera"; - network = list("Toxins"); - use_power = 0 - }, -/obj/item/target/alien/anchored, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless{ - luminosity = 2 - }, -/area/science/test_area) -"cDz" = ( -/turf/closed/indestructible{ - desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; - icon_state = "riveted"; - name = "hyper-reinforced wall" - }, -/area/science/test_area) -"cDA" = ( -/obj/structure/bed/roller, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cDB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cDC" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cDD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cDE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/medical/virology) -"cDF" = ( -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/box/syringes, -/obj/machinery/power/apc/highcap/five_k{ - dir = 1; - name = "Virology APC"; - areastring = "/area/medical/virology"; - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/table/glass, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 9 - }, -/area/medical/virology) -"cDG" = ( -/obj/item/book/manual/wiki/infections{ - pixel_y = 7 - }, -/obj/item/reagent_containers/syringe/antiviral, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/table/glass, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 5 - }, -/area/medical/virology) -"cDH" = ( -/obj/machinery/smartfridge/chemistry/virology/preloaded, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/whitegreen, -/area/medical/virology) -"cDI" = ( -/obj/machinery/reagentgrinder{ - pixel_y = 8 - }, -/obj/structure/table/glass, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 9 - }, -/area/medical/virology) -"cDJ" = ( -/obj/item/clothing/gloves/color/latex, -/obj/item/device/healthanalyzer, -/obj/item/clothing/glasses/hud/health, -/obj/structure/reagent_dispensers/virusfood{ - pixel_y = 30 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 5 - }, -/area/medical/virology) -"cDK" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cDL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cDM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"cDN" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cDO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cDP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cDQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/medbay/aft) -"cDR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cDS" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cDT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/medical/medbay/aft) -"cDU" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/medbay/aft) -"cDV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cDW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cDX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/centcom{ - name = "Morgue"; - opacity = 1; - req_access_txt = "5" - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cDY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cDZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cEa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cEb" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cEc" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cEd" = ( -/obj/structure/table, -/obj/machinery/power/apc{ - dir = 4; - name = "Morgue APC"; - areastring = "/area/medical/morgue"; - pixel_x = 26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/clothing/gloves/color/latex, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cEe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/morgue) -"cEf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/hallway/primary/aft) -"cEg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cEh" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/purple/side{ - dir = 4 - }, -/area/hallway/primary/aft) -"cEi" = ( -/turf/open/floor/plasteel/purple, -/area/science/robotics/lab) -"cEj" = ( -/obj/structure/table/reinforced, -/obj/item/pen, -/obj/machinery/door/window/eastright{ - dir = 4; - name = "Robotics Desk"; - req_access_txt = "29" - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics_shutters"; - name = "robotics shutters" - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"cEk" = ( -/obj/effect/landmark/start/roboticist, -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cEl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cEm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cEn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cEo" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/item/device/assembly/flash/handheld, -/obj/item/device/assembly/flash/handheld, -/obj/item/device/assembly/flash/handheld, -/obj/item/device/assembly/flash/handheld, -/obj/item/device/assembly/flash/handheld, -/obj/item/device/assembly/flash/handheld, -/obj/item/device/assembly/flash/handheld, -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cEp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/white/side{ - dir = 9 - }, -/area/science/research) -"cEq" = ( -/obj/structure/lattice, -/turf/open/space, -/area/science/mixing) -"cEr" = ( -/obj/machinery/door/poddoor{ - id = "mixvent"; - name = "Mixer Room Vent" - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"cEs" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_y = 32 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"cEt" = ( -/obj/machinery/sparker{ - dir = 2; - id = "mixingsparker"; - pixel_x = 25 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"cEu" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"cEv" = ( -/obj/machinery/airlock_sensor{ - id_tag = "tox_airlock_sensor"; - master_tag = "tox_airlock_control"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/engine, -/area/science/mixing) -"cEw" = ( -/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; - sanitize_external = 1; - sensor_tag = "tox_airlock_sensor" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cEx" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4; - name = "manual outlet valve" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cEy" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cEz" = ( -/obj/structure/closet/wardrobe/grey, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cEA" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/space/nearstation) -"cEB" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cEC" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cED" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"cEE" = ( -/turf/closed/wall, -/area/medical/virology) -"cEF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/medical/virology) -"cEG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Test Subject Cell"; - req_access_txt = "39" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cEH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/medical/virology) -"cEI" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/structure/sign/deathsposal{ - pixel_x = -30 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/virology) -"cEJ" = ( -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 4 - }, -/area/medical/virology) -"cEK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) -"cEL" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/virologist, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 1 - }, -/area/medical/virology) -"cEM" = ( -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/pen/red, -/obj/machinery/requests_console{ - department = "Virology"; - name = "Virology Requests Console"; - pixel_x = 29; - receive_ore_updates = 1 - }, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/structure/table/glass, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/virology) -"cEN" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;5;39;6" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cEO" = ( -/turf/open/floor/plasteel/white/side{ - dir = 6 - }, -/area/medical/medbay/aft) -"cEP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cEQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/medical/medbay/aft) -"cER" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 4 - }, -/area/medical/medbay/aft) -"cES" = ( -/obj/item/device/healthanalyzer{ - pixel_x = 1; - pixel_y = 4 - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = -30 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/medbay/aft) -"cET" = ( -/obj/machinery/vending/medical, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/medical/medbay/aft) -"cEU" = ( -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/obj/structure/bodycontainer/morgue, -/obj/effect/landmark/revenantspawn, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cEV" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cEW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cEX" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cEY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/centcom{ - name = "Morgue"; - opacity = 1; - req_access_txt = "6" - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cEZ" = ( -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"cFa" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cFb" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cFc" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/science{ - name = "\improper ROBOTICS!"; - pixel_x = 32 - }, -/turf/open/floor/plasteel/purple/corner{ - dir = 4 - }, -/area/hallway/primary/aft) -"cFd" = ( -/obj/structure/noticeboard{ - dir = 4; - pixel_x = -27 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/aug_manipulator, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cFe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cFf" = ( -/obj/effect/landmark/start/roboticist, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cFg" = ( -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cFh" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cFi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cFj" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 28; - pixel_y = 5 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table, -/obj/item/wrench, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/item/device/multitool{ - pixel_x = 3 - }, -/obj/item/stack/cable_coil, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cFk" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Research Division Hallway - Robotics"; - dir = 4; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cFl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cFm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/science/research) -"cFn" = ( -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"cFo" = ( -/obj/machinery/door/airlock/research/glass{ - autoclose = 0; - frequency = 1449; - heat_proof = 1; - id_tag = "tox_airlock_exterior"; - locked = 1; - name = "Mixing Room Exterior Airlock"; - req_access_txt = "8" - }, -/turf/open/floor/engine, -/area/science/mixing) -"cFp" = ( -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{ - dir = 2; - frequency = 1449; - id = "tox_airlock_pump" - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/engine, -/area/science/mixing) -"cFq" = ( -/obj/machinery/door/airlock/research/glass{ - autoclose = 0; - frequency = 1449; - heat_proof = 1; - id_tag = "tox_airlock_interior"; - locked = 1; - name = "Mixing Room Interior Airlock"; - req_access_txt = "8" - }, -/turf/open/floor/engine, -/area/science/mixing) -"cFr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cFs" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Toxins - Mixing Area"; - dir = 8; - network = list("SS13","RD") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cFt" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cFu" = ( -/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 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cFv" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cFw" = ( -/obj/item/device/flashlight/lamp, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cFx" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cFy" = ( -/obj/item/device/radio/intercom{ - pixel_x = -28 - }, -/obj/structure/table/glass, -/obj/item/hand_labeler, -/obj/item/device/radio/headset/headset_med, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/machinery/camera{ - c_tag = "Virology - Cells"; - dir = 4; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 9 - }, -/area/medical/virology) -"cFz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) -"cFA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) -"cFB" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) -"cFC" = ( -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/obj/item/wrench, -/obj/item/restraints/handcuffs, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 5 - }, -/area/medical/virology) -"cFD" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/virology) -"cFE" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/virology) -"cFF" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cFG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cFH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cFI" = ( -/obj/machinery/computer/pandemic{ - layer = 2.5; - pixel_x = -4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/virology) -"cFJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"cFK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/virology) -"cFL" = ( -/obj/structure/sign/biohazard{ - pixel_y = 32 - }, -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cFM" = ( -/obj/structure/sink{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cFN" = ( -/obj/structure/sign/securearea{ - pixel_y = 32 - }, -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cFO" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cFP" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/medbay/aft) -"cFQ" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21"; - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 8 - }, -/area/medical/medbay/aft) -"cFR" = ( -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cFS" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cFT" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/white/side{ - dir = 9 - }, -/area/medical/medbay/aft) -"cFU" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cFV" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cFW" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cFX" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light_switch{ - pixel_x = 23 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cFY" = ( -/obj/structure/closet, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"cFZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/aft) -"cGa" = ( -/obj/machinery/computer/rdconsole/robotics{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Robotics"; - departmentType = 2; - name = "Robotics RC"; - pixel_x = -31; - receive_ore_updates = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cGb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cGc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cGd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cGe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cGf" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cGg" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cGh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel/white, -/area/science/research) -"cGi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/science/research) -"cGj" = ( -/obj/machinery/sparker{ - dir = 2; - id = "mixingsparker"; - pixel_x = 25 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4; - frequency = 1441; - id = "air_in" - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"cGk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/fire{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/engine, -/area/science/mixing) -"cGl" = ( -/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 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cGm" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4; - name = "manual inlet valve" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cGn" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cGo" = ( -/obj/structure/closet/crate, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cGp" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/item/target, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/science/test_area) -"cGq" = ( -/obj/structure/table/glass, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/pen/red, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/virology) -"cGr" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cGs" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cGt" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cGu" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/virology) -"cGv" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Containment Cells"; - req_access_txt = "39" - }, -/turf/open/floor/plasteel/whitegreen, -/area/medical/virology) -"cGw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/virology) -"cGx" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cGy" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/landmark/lightsout, -/obj/machinery/holopad, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cGz" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cGA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/virology) -"cGB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/virology{ - name = "Virology Access"; - req_access_txt = "39" - }, -/turf/open/floor/plasteel/whitegreen, -/area/medical/virology) -"cGC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/virology) -"cGD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cGE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/doorButtons/airlock_controller{ - idExterior = "virology_airlock_exterior"; - idSelf = "virology_airlock_control"; - idInterior = "virology_airlock_interior"; - name = "Virology Access Console"; - pixel_x = 26; - pixel_y = 26; - req_access_txt = "39" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/virology) -"cGF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - icon_state = "door_locked"; - id_tag = "virology_airlock_interior"; - locked = 1; - name = "Virology Interior Airlock"; - req_access_txt = "39" - }, -/turf/open/floor/plasteel/whitegreen, -/area/medical/virology) -"cGG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/doorButtons/access_button{ - idDoor = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = -26; - pixel_y = 28; - req_access_txt = "39" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cGH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cGI" = ( -/obj/machinery/doorButtons/access_button{ - idDoor = "virology_airlock_exterior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_y = 24; - req_access_txt = "39" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - icon_state = "door_locked"; - id_tag = "virology_airlock_exterior"; - locked = 1; - name = "Virology Exterior Airlock"; - req_access_txt = "39" - }, -/turf/open/floor/plasteel/whitegreen, -/area/medical/virology) -"cGJ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cGK" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/medbay/aft) -"cGL" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - name = "Virology Access"; - req_access_txt = "39" - }, -/turf/open/floor/plasteel/whitegreen, -/area/medical/medbay/aft) -"cGM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cGN" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cGO" = ( -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cGP" = ( -/obj/machinery/door/airlock/abandoned{ - name = "Medical Surplus Storeroom"; - req_access_txt = "5" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cGQ" = ( -/turf/open/floor/plasteel/floorgrime, -/area/maintenance/aft) -"cGR" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/storage/backpack/duffelbag/med, -/obj/item/device/flashlight/pen{ - pixel_x = 4; - pixel_y = 3 - }, -/turf/open/floor/plasteel/floorgrime, -/area/maintenance/aft) -"cGS" = ( -/obj/structure/table, -/obj/item/retractor, -/obj/item/hemostat, -/obj/item/device/healthanalyzer, -/obj/item/clothing/glasses/eyepatch, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/floorgrime, -/area/maintenance/aft) -"cGT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/maintenance{ - name = "Morgue Maintenance"; - req_access_txt = "6" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cGU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/aft) -"cGV" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/rnd/circuit_imprinter, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cGW" = ( -/obj/effect/landmark/start/roboticist, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cGX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cGY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/rack, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/device/healthanalyzer{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/device/healthanalyzer{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/device/healthanalyzer{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/device/radio/headset/headset_sci{ - pixel_x = -3 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cGZ" = ( -/obj/effect/spawner/structure/window, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"cHa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"cHb" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cHc" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 2 - }, -/area/science/research) -"cHd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM" - }, -/turf/closed/wall/r_wall, -/area/science/server) -"cHe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/server) -"cHf" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/closed/wall/r_wall, -/area/science/server) -"cHg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"cHh" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Toxins Lab Maintenance"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "toxins_blastdoor"; - name = "biohazard containment shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cHi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"cHj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/aft) -"cHk" = ( -/obj/structure/cable, -/obj/machinery/power/tracker, -/turf/open/floor/plating/airless, -/area/solar/port/aft) -"cHl" = ( -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 10 - }, -/area/medical/virology) -"cHm" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/side, -/area/medical/virology) -"cHn" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitegreen/side, -/area/medical/virology) -"cHo" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/side, -/area/medical/virology) -"cHp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 6 - }, -/area/medical/virology) -"cHq" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/medical/virology) -"cHr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 10 - }, -/area/medical/virology) -"cHs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitegreen/side, -/area/medical/virology) -"cHt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/side, -/area/medical/virology) -"cHu" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/whitegreen/side, -/area/medical/virology) -"cHv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/machinery/camera{ - c_tag = "Virology - Lab"; - dir = 8; - network = list("SS13","Medbay") - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 6 - }, -/area/medical/virology) -"cHw" = ( -/obj/structure/closet/emcloset, -/obj/item/device/radio/intercom{ - pixel_x = -28 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cHx" = ( -/obj/machinery/camera{ - c_tag = "Virology - Airlock"; - dir = 1; - network = list("SS13","Medbay") - }, -/obj/machinery/light, -/obj/structure/closet/l3closet, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cHy" = ( -/obj/structure/closet/l3closet, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cHz" = ( -/obj/structure/sign/biohazard{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cHA" = ( -/obj/machinery/camera{ - c_tag = "Virology - Entrance"; - dir = 8; - network = list("SS13","Medbay") - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/medbay/aft) -"cHB" = ( -/obj/structure/sign/biohazard{ - pixel_x = -32 - }, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/storage/box/masks, -/obj/structure/table/glass, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 1 - }, -/area/medical/medbay/aft) -"cHC" = ( -/obj/structure/sign/nosmoking_2{ - pixel_y = -30 - }, -/obj/item/storage/box/beakers{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/bodybags, -/obj/structure/table/glass, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cHD" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/light, -/obj/item/hand_labeler, -/obj/item/pen, -/obj/item/pen, -/obj/structure/table/glass, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cHE" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/medical/medbay/aft) -"cHF" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel/floorgrime, -/area/maintenance/aft) -"cHG" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel/floorgrime, -/area/maintenance/aft) -"cHH" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/dropper, -/obj/structure/sign/biohazard{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/floorgrime, -/area/maintenance/aft) -"cHI" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cHJ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/aft) -"cHK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/aft) -"cHL" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cHM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;5;39;6" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cHN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/aft) -"cHO" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cHP" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cHQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cHR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cHS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cHT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cHU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cHV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Robotics Lab"; - req_access_txt = "29"; - req_one_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/purple, -/area/science/robotics/lab) -"cHW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/research) -"cHX" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"cHY" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/science/research) -"cHZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Research Division Server Room"; - req_access = null; - req_access_txt = "30" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cIa" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cIb" = ( -/obj/machinery/camera{ - c_tag = "Research Division - Server Room"; - dir = 2; - network = list("SS13","RD"); - pixel_x = 22 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Research Division Server Room APC"; - areastring = "/area/science/server"; - pixel_y = 25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/effect/landmark/revenantspawn, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cIc" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - target_temperature = 80; - dir = 2; - on = 1 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cId" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/science/server) -"cIe" = ( -/obj/machinery/rnd/server, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"cIf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - external_pressure_bound = 140; - name = "server vent"; - pressure_checks = 0 - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"cIg" = ( -/turf/closed/wall/r_wall, -/area/science/server) -"cIh" = ( -/obj/structure/closet, -/obj/item/storage/box/lights/mixed, -/obj/item/device/flashlight, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cIi" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cIj" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/biohazard{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cIk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cIl" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cIm" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Research and Development Lab"; - req_access_txt = "0"; - req_one_access_txt = "7;29" - }, -/turf/open/floor/plasteel/whitepurple{ - dir = 4 - }, -/area/science/lab) -"cIn" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cIp" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/medical/virology) -"cIq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation B"; - req_access_txt = "39" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cIr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation A"; - req_access_txt = "39" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cIs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/closed/wall, -/area/medical/virology) -"cIt" = ( -/obj/structure/closet/wardrobe/virology_white, -/obj/item/storage/backpack/satchel/vir, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/turf/open/floor/plasteel/vault, -/area/medical/virology) -"cIu" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/blood/empty, -/obj/item/reagent_containers/blood/empty{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/reagent_containers/blood/AMinus, -/obj/item/reagent_containers/blood/BMinus{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/reagent_containers/blood/BPlus{ - pixel_x = 1; - pixel_y = 2 - }, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OPlus{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/turf/open/floor/plasteel/vault, -/area/medical/virology) -"cIv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/vault, -/area/medical/virology) -"cIw" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/plasteel/vault, -/area/medical/virology) -"cIx" = ( -/obj/structure/closet/l3closet/virology, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/vault, -/area/medical/virology) -"cIy" = ( -/obj/structure/sign/biohazard{ - pixel_x = -32 - }, -/turf/open/space, -/area/space/nearstation) -"cIz" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;5;39;6" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cIA" = ( -/obj/structure/bed/roller, -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/floorgrime, -/area/maintenance/aft) -"cIB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plating, -/area/maintenance/aft) -"cIC" = ( -/obj/item/clothing/gloves/color/latex/nitrile, -/obj/structure/rack, -/obj/item/clothing/suit/toggle/labcoat, -/obj/item/clothing/suit/apron/surgical, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/mask/breath/medical, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/aft) -"cID" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cIE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/escape{ - dir = 2 - }, -/area/hallway/primary/aft) -"cIF" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/escape{ - dir = 2 - }, -/area/hallway/primary/aft) -"cIG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway - Aft"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel/escape{ - dir = 2 - }, -/area/hallway/primary/aft) -"cIH" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall/r_wall, -/area/hallway/primary/aft) -"cII" = ( -/obj/structure/table, -/obj/item/circular_saw, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/item/razor{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/robotics/lab) -"cIJ" = ( -/obj/effect/landmark/start/roboticist, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"cIK" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"cIL" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/surgical_drapes, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/science/robotics/lab) -"cIM" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cIN" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/borg/upgrade/rename, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cIO" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/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/item/device/multitool{ - pixel_x = 3 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cIP" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/science/robotics/lab) -"cIQ" = ( -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"cIR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"cIS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/science/research) -"cIT" = ( -/turf/closed/wall, -/area/science/server) -"cIU" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cIV" = ( -/obj/structure/chair/office/light, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cIW" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cIX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Server Access"; - req_access_txt = "30" - }, -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cIY" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/telecomms/server/walkway, -/area/science/server) -"cIZ" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/manifold{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/airalarm/server{ - dir = 8; - pixel_x = 22 - }, -/turf/open/floor/plasteel/dark/telecomms/server/walkway, -/area/science/server) -"cJa" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cJb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cJc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"cJd" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cJe" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_y = -32 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cJf" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"cJg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/bedsheet/medical, -/obj/structure/bed, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cJh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cJi" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/bedsheet/medical, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cJj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/medical/virology) -"cJk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/virology{ - name = "Break Room"; - req_access_txt = "39" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen, -/area/medical/virology) -"cJl" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJm" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Research Lab Maintenance"; - req_access_txt = "0"; - req_one_access_txt = "7;29" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJn" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJo" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJr" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/closet/crate, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/wrench, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJs" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJt" = ( -/obj/structure/rack, -/obj/item/screwdriver{ - pixel_y = 6 - }, -/obj/item/crowbar, -/obj/item/storage/pill_bottle, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/item/cigbutt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/aft) -"cJv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/generic, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Medical Surplus Storeroom"; - req_access_txt = "12"; - req_one_access_txt = "0" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJy" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/vault, -/area/hallway/secondary/exit/departure_lounge) -"cJz" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel/vault, -/area/hallway/secondary/exit/departure_lounge) -"cJA" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/plasteel/vault, -/area/hallway/secondary/exit/departure_lounge) -"cJB" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault, -/area/hallway/secondary/exit/departure_lounge) -"cJC" = ( -/obj/machinery/vending/coffee, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault, -/area/hallway/secondary/exit/departure_lounge) -"cJD" = ( -/obj/machinery/vending/snack/random, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault, -/area/hallway/secondary/exit/departure_lounge) -"cJE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"cJF" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cJG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/secondary/exit/departure_lounge) -"cJH" = ( -/obj/structure/table, -/obj/item/retractor, -/obj/item/hemostat, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -29 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 4 - }, -/area/science/robotics/lab) -"cJI" = ( -/obj/structure/table/optable, -/obj/item/surgical_drapes, -/obj/item/storage/firstaid/regular, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small/built{ - dir = 1 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cJJ" = ( -/obj/machinery/computer/operating{ - dir = 1; - name = "Robotics Operating Computer" - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/science/robotics/lab) -"cJK" = ( -/obj/structure/table, -/obj/item/device/mmi, -/obj/item/device/mmi, -/obj/item/device/mmi, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/science/robotics/lab) -"cJL" = ( -/obj/machinery/door/window/eastleft{ - dir = 1; - name = "Robotics Deliveries"; - req_access_txt = "29" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cJM" = ( -/obj/structure/closet/wardrobe/robotics_black{ - pixel_x = 2 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cJN" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/crowbar, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cJO" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 2 - }, -/area/science/research) -"cJP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 2 - }, -/area/science/research) -"cJQ" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-10" - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"cJR" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cJS" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/machinery/computer/rdservercontrol{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cJT" = ( -/obj/structure/table, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cJU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/server) -"cJW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 1; - external_pressure_bound = 120; - name = "server vent" - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"cJX" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"cJY" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cJZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cKa" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/science, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cKb" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cKc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cKe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cKf" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cKg" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cKh" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cKi" = ( -/obj/structure/table/glass, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/paper, -/obj/item/pen/red, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 9 - }, -/area/medical/virology) -"cKj" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 29 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) -"cKk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) -"cKl" = ( -/obj/structure/table/glass, -/obj/item/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/obj/machinery/camera{ - c_tag = "Virology - Break Room"; - dir = 2; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) -"cKm" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/structure/table/glass, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 5 - }, -/area/medical/virology) -"cKn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/aft) -"cKp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 17 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKu" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKv" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKy" = ( -/obj/machinery/power/apc/highcap/five_k{ - dir = 1; - name = "Departure Lounge APC"; - areastring = "/area/hallway/secondary/exit/departure_lounge"; - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKz" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKA" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKD" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKE" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKF" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKG" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Robotics" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cKH" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Robotics Maintenance"; - req_access_txt = "29" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKI" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/science/research) -"cKJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKK" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cKL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/abandoned{ - locked = 0; - name = "Storage Room"; - req_access_txt = "0"; - req_one_access_txt = "12;47" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cKM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cKN" = ( -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cKO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"cKP" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/aft) -"cKQ" = ( -/obj/machinery/door/airlock/engineering{ - name = "Starboard Quarter Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cKR" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/aft) -"cKS" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/glass/beaker, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cKT" = ( -/obj/structure/table/glass, -/obj/item/folder/white{ - pixel_y = 4 - }, -/obj/item/pen/red, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cKU" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/closed/wall, -/area/medical/virology) -"cKV" = ( -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/virology) -"cKW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cKX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cKY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cKZ" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/virology) -"cLa" = ( -/turf/closed/wall, -/area/chapel/office) -"cLb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/maintenance{ - name = "Crematorium Maintenance"; - req_access_txt = "0"; - req_one_access_txt = "27" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - name = "Chapel Office Maintenance"; - req_access_txt = "0"; - req_one_access_txt = "22" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLd" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLg" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/aft) -"cLj" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLk" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;5;39;6" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLm" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLn" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=10-Aft-To-Central"; - location = "9.4-Escape-4" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLo" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLp" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLr" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLs" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLv" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;47" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLx" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"cLy" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLz" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLC" = ( /obj/machinery/doorButtons/airlock_controller{ idExterior = "incinerator_airlock_exterior"; idInterior = "incinerator_airlock_interior"; @@ -68855,22 +56950,16039 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cLD" = ( +"clT" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "n2_in" + }, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"clU" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "n2_sensor" + }, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"clV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 1; + frequency = 1441; + id_tag = "n2_out"; + name = "n2 out" + }, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"clW" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "o2_in" + }, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"clX" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "o2_sensor" + }, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"clY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 1; + frequency = 1441; + id_tag = "o2_out"; + name = "o2 out" + }, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"clZ" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "air_in" + }, +/turf/open/floor/engine/air, +/area/engine/atmos) +"cma" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "air_sensor" + }, +/turf/open/floor/engine/air, +/area/engine/atmos) +"cmb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/on{ + dir = 1; + frequency = 1441; + id_tag = "air_out"; + name = "air out" + }, +/turf/open/floor/engine/air, +/area/engine/atmos) +"cmc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/engine/atmos) +"cmd" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/engine/atmos) +"cme" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"cmf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cmg" = ( +/turf/closed/wall, +/area/medical/surgery) +"cmh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/medical/surgery) +"cmi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/surgery) +"cmj" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cmk" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/sleeper) +"cml" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"cmm" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"cmn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"cmo" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/sleeper) +"cmp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/whiteblue, +/area/medical/sleeper) +"cmq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 9 + }, +/area/medical/medbay/central) +"cmr" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/medbay/central) +"cms" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/medbay/central) +"cmt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/medbay/central) +"cmu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cmv" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Medbay Central APC"; + areastring = "/area/medical/medbay/central"; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Medbay Hallway Fore"; + dir = 2; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"cmw" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/medbay/central) +"cmx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cmy" = ( +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Exit Button"; + normaldoorcontrol = 1; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"cmz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/medbay/central) +"cmA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/medbay/central) +"cmB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + id_tag = null; + name = "Chemistry Lab"; + req_access_txt = "5; 33" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cmC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 8 + }, +/area/medical/chemistry) +"cmD" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whiteyellow/corner{ + dir = 4 + }, +/area/medical/chemistry) +"cmE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 1 + }, +/area/medical/chemistry) +"cmF" = ( +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 5 + }, +/area/medical/chemistry) +"cmG" = ( +/obj/machinery/chem_master, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/noticeboard{ + desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; + name = "requests board"; + pixel_x = 32 + }, +/turf/open/floor/plasteel/whiteyellow{ + dir = 4 + }, +/area/medical/chemistry) +"cmH" = ( +/obj/machinery/rnd/destructive_analyzer, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cmI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cmJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/rnd/protolathe/department/science, +/turf/open/floor/plasteel, +/area/science/lab) +"cmK" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cmL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cmM" = ( +/obj/machinery/disposal/bin{ + pixel_x = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 4 + }, +/area/science/lab) +"cmN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cmO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cmP" = ( +/obj/machinery/power/apc/highcap/ten_k{ + dir = 1; + name = "Research Division APC"; + areastring = "/area/science/research"; + pixel_y = 25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/camera{ + c_tag = "Research Division - Airlock"; + dir = 2; + network = list("SS13","RD") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cmQ" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research) +"cmR" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cmS" = ( +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cmT" = ( +/obj/effect/landmark/blobstart, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/cigbutt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cmU" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cmV" = ( +/obj/structure/chair/stool, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"cmW" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"cmX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"cmY" = ( +/obj/item/cigbutt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"cmZ" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/vending/cola/random, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"cna" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/mob/living/simple_animal/pet/dog/pug{ + desc = "It's Pugley IV, the research department's lovable pug clone. Hopefully nothing happens to this one - fourth time lucky!"; + name = "Pugley IV"; + real_name = "Pugley IV" + }, +/turf/open/floor/engine, +/area/science/explab) +"cnb" = ( +/obj/item/device/radio/beacon, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/engine, +/area/science/explab) +"cnc" = ( +/obj/machinery/rnd/experimentor, +/turf/open/floor/engine, +/area/science/explab) +"cnd" = ( +/obj/effect/landmark/blobstart, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/engine, +/area/science/explab) +"cne" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/explab) +"cnf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/engine, +/area/science/explab) +"cng" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"cnh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"cni" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 2 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"cnj" = ( +/obj/machinery/door/airlock/public/glass{ + autoclose = 0; + frequency = 1449; + heat_proof = 1; + icon_state = "door_locked"; + id_tag = "incinerator_airlock_interior"; + locked = 1; + name = "Incinerator Interior Airlock"; + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"cnk" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"cnl" = ( +/turf/open/floor/engine/n2, +/area/engine/atmos) +"cnm" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"cnn" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - N2"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"cno" = ( +/turf/open/floor/engine/o2, +/area/engine/atmos) +"cnp" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"cnq" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - O2"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"cnr" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/engine/air, +/area/engine/atmos) +"cns" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/engine/air, +/area/engine/atmos) +"cnt" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - Air"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/engine/air, +/area/engine/atmos) +"cnu" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"cnv" = ( +/obj/machinery/door/airlock/atmos/glass{ + heat_proof = 1; + name = "Auxiliary Chamber"; + req_access_txt = "24" + }, +/turf/open/floor/plating, +/area/engine/atmos) +"cnw" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"cnx" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating/airless, +/area/engine/atmos) +"cny" = ( +/obj/machinery/vending/boozeomat, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cnz" = ( +/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/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/maintenance/port/aft) +"cnA" = ( +/obj/structure/rack, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/bottle/vermouth{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cnB" = ( +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/structure/table/wood, +/obj/structure/light_construct/small{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cnC" = ( +/obj/structure/chair/stool, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cnD" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"cnE" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cnF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cnG" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cnH" = ( +/obj/item/cigbutt, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cnI" = ( +/obj/structure/chair, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cnJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cnK" = ( +/obj/item/cigbutt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cnL" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cnM" = ( +/obj/structure/chair, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cnN" = ( +/obj/structure/bed/roller, +/obj/item/device/radio/intercom{ + broadcasting = 1; + freerange = 0; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_x = -30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/machinery/camera{ + c_tag = "Medbay Sleepers"; + dir = 4; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 10 + }, +/area/medical/sleeper) +"cnO" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/sleeper) +"cnP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"cnQ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 2 + }, +/area/medical/sleeper) +"cnR" = ( +/obj/structure/bed/roller, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 6 + }, +/area/medical/sleeper) +"cnS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/whiteblue, +/area/medical/sleeper) +"cnT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/medbay/central) +"cnU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cnV" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cnW" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cnX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cnY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cnZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"coa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/turf/open/floor/plasteel/whiteyellow/corner{ + dir = 2 + }, +/area/medical/medbay/central) +"cob" = ( +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/storage/pill_bottle/epinephrine{ + pixel_x = 3 + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 8 + }, +/area/medical/chemistry) +"coc" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cod" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"coe" = ( +/obj/machinery/smoke_machine, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 4 + }, +/area/medical/chemistry) +"cof" = ( +/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/structure/table/glass, +/turf/open/floor/plasteel/whiteyellow{ + dir = 4 + }, +/area/medical/chemistry) +"cog" = ( +/obj/machinery/computer/rdconsole/core{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/lab) +"coh" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/lab) +"coi" = ( +/obj/item/reagent_containers/glass/beaker/sulphuric, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/rnd/circuit_imprinter/department/science, +/turf/open/floor/plasteel, +/area/science/lab) +"coj" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cok" = ( +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"col" = ( +/obj/structure/table, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/micro_laser, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/clothing/glasses/science, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"com" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/lab) +"con" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"coo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cop" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"coq" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"cor" = ( +/obj/item/storage/toolbox/emergency, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cos" = ( +/obj/machinery/light/small, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cot" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/device/flashlight, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cou" = ( +/obj/item/stack/packageWrap, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cov" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/item/cigbutt, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"cow" = ( +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"cox" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"coy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"coz" = ( +/obj/machinery/vending/coffee, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"coA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/engine, +/area/science/explab) +"coB" = ( +/obj/machinery/button/door{ + id = "telelab"; + name = "Test Chamber Blast Doors"; + pixel_y = -25 + }, +/turf/open/floor/engine, +/area/science/explab) +"coC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/engine, +/area/science/explab) +"coD" = ( +/obj/structure/closet, +/obj/item/storage/box/donkpockets, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"coE" = ( +/obj/structure/closet/crate, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/item/device/assembly/infra, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"coF" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/item/shard, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"coG" = ( +/obj/structure/table, +/obj/structure/sign/departments/medbay{ + pixel_y = 32 + }, +/obj/item/reagent_containers/glass/beaker/large, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"coH" = ( +/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/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"coI" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"coJ" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/syringe, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"coK" = ( +/obj/item/reagent_containers/glass/bottle/toxin{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/reagentgrinder{ + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"coL" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + name = "Incinerator Output Pump"; + on = 1; + use_power = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/space, +/area/maintenance/disposal/incinerator) +"coM" = ( +/obj/machinery/doorButtons/access_button{ + idDoor = "incinerator_airlock_exterior"; + layer = 3.1; + idSelf = "incinerator_access_control"; + name = "Incinerator airlock control"; + pixel_x = 8; + pixel_y = -24 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/warning/fire{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + on = 1 + }, +/obj/machinery/doorButtons/access_button{ + idDoor = "incinerator_airlock_interior"; + idSelf = "incinerator_access_control"; + name = "Incinerator airlock control"; + pixel_x = 8; + pixel_y = 24 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"coN" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"coO" = ( +/obj/structure/sign/warning/fire{ + pixel_x = 32 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"coP" = ( +/obj/machinery/light/small, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"coQ" = ( +/obj/machinery/light/small, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"coR" = ( +/turf/open/floor/engine/air, +/area/engine/atmos) +"coS" = ( +/obj/machinery/light/small, +/turf/open/floor/engine/air, +/area/engine/atmos) +"coT" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"coU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"coV" = ( +/obj/structure/girder, +/turf/open/floor/plating/airless, +/area/engine/atmos) +"coW" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"coX" = ( +/obj/structure/closet/secure_closet/bar{ + pixel_x = -3; + pixel_y = -1; + req_access_txt = "25" + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"coY" = ( +/turf/open/floor/wood, +/area/maintenance/port/aft) +"coZ" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/port/aft) +"cpa" = ( +/obj/item/reagent_containers/glass/rag, +/obj/structure/table/wood, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/maintenance/port/aft) +"cpb" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cpc" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/maintenance/port/aft) +"cpd" = ( +/obj/structure/chair/stool, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"cpe" = ( +/obj/structure/chair, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cpf" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cpg" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cph" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cpi" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cpj" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Observation"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cpk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cpl" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cpm" = ( +/obj/item/cigbutt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 28 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cpn" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue, +/area/medical/sleeper) +"cpo" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 10 + }, +/area/medical/sleeper) +"cpp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 2 + }, +/area/medical/sleeper) +"cpq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 6 + }, +/area/medical/sleeper) +"cpr" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue, +/area/medical/sleeper) +"cps" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"cpt" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cpu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cpv" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cpw" = ( +/obj/item/device/radio/intercom{ + broadcasting = 1; + freerange = 0; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_y = -30 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cpx" = ( +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 2 + }, +/area/medical/medbay/central) +"cpy" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 2 + }, +/area/medical/medbay/central) +"cpz" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"cpA" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/whiteyellow/corner{ + dir = 2 + }, +/area/medical/medbay/central) +"cpB" = ( +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 6 + }, +/area/medical/medbay/central) +"cpC" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastright{ + name = "Chemistry Desk"; + req_access_txt = "5; 33" + }, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Chemistry Desk"; + req_access_txt = "5" + }, +/obj/item/reagent_containers/glass/bottle/morphine, +/obj/item/reagent_containers/glass/bottle/toxin{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 8 + }, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = -5 + }, +/obj/item/reagent_containers/syringe/epinephrine, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cpD" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 8 + }, +/area/medical/chemistry) +"cpE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cpF" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 4 + }, +/area/medical/chemistry) +"cpG" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_y = 2 + }, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/screwdriver{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/device/radio/headset/headset_med, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/whiteyellow{ + dir = 4 + }, +/area/medical/chemistry) +"cpH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cpI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway - Fore"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"cpJ" = ( +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/item/clothing/glasses/welding, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cpK" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/lab) +"cpL" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cpM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cpN" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cpO" = ( +/obj/structure/table, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/scanning_module, +/obj/item/stock_parts/scanning_module, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 30 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cpP" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpR" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpS" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"cpT" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Research Division" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"cpU" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboard/aft) +"cpV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/item/storage/box/lights/mixed, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cpW" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cpX" = ( +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"cpY" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"cpZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"cqa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/noticeboard{ + pixel_y = -32 + }, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Research Division - Break Room"; + dir = 1; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"cqb" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"cqc" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/science/explab) +"cqd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/science/explab) +"cqe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/turf/open/floor/plating, +/area/science/explab) +"cqf" = ( +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/engine, +/area/science/explab) +"cqg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cqh" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + locked = 0; + name = "Storage Room"; + req_access_txt = "0"; + req_one_access_txt = "12;47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cqi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cqj" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cqk" = ( +/obj/structure/rack, +/obj/item/clothing/suit/apron, +/obj/item/clothing/mask/surgical, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cql" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cqm" = ( +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo"; + pixel_x = -4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cqn" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/space, +/area/space/nearstation) +"cqo" = ( +/obj/machinery/door/airlock/public/glass{ + autoclose = 0; + frequency = 1449; + heat_proof = 1; + icon_state = "door_locked"; + id_tag = "incinerator_airlock_exterior"; + locked = 1; + name = "Incinerator Exterior Airlock"; + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"cqp" = ( +/obj/item/stack/rods{ + amount = 25 + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"cqq" = ( +/turf/open/floor/plating/airless, +/area/engine/atmos) +"cqr" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/glass/beaker/cryoxadone, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/dropper, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cqs" = ( +/obj/item/reagent_containers/food/drinks/ale, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cqt" = ( +/obj/structure/light_construct/small{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 30 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cqu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cqv" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/surgery) +"cqw" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/medical/surgery) +"cqx" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/medical/surgery) +"cqy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Observation"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/medical/surgery) +"cqz" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/medical/sleeper) +"cqA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"cqB" = ( +/obj/machinery/door/firedoor, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cqC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cqD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cqE" = ( +/turf/closed/wall, +/area/crew_quarters/heads/cmo) +"cqF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"cqG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"cqH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"cqI" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/medical/medbay/central) +"cqJ" = ( +/obj/machinery/reagentgrinder, +/obj/machinery/requests_console{ + department = "Chemistry"; + departmentType = 2; + pixel_x = -30; + receive_ore_updates = 1 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 8 + }, +/area/medical/chemistry) +"cqK" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cqL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cqM" = ( +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/structure/table/glass, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 4 + }, +/area/medical/chemistry) +"cqN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/departments/chemistry{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cqO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/departments/science{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/purple/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"cqP" = ( +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/lab) +"cqQ" = ( +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/structure/table, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cqR" = ( +/obj/structure/table, +/obj/structure/disposalpipe/segment, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/disk/tech_disk, +/obj/item/disk/tech_disk, +/obj/item/disk/design_disk, +/obj/item/disk/design_disk, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cqS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cqT" = ( +/obj/machinery/camera{ + c_tag = "Research and Development"; + dir = 8; + network = list("SS13","RD") + }, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stock_parts/scanning_module{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/stock_parts/scanning_module, +/turf/open/floor/plasteel, +/area/science/lab) +"cqU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + cyclelinkeddir = 1; + id_tag = "ResearchInt"; + name = "Research Division"; + req_access_txt = "0"; + req_one_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"cqV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + cyclelinkeddir = 1; + id_tag = "ResearchInt"; + name = "Research Division"; + req_access_txt = "0"; + req_one_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"cqW" = ( +/obj/machinery/door/window/westleft{ + dir = 2; + name = "Research Division Deliveries"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"cqX" = ( +/obj/machinery/door/airlock{ + name = "Research Emergency Storage"; + req_access_txt = "0"; + req_one_access_txt = "47" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cqY" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/medical{ + name = "Research Break Room"; + req_access_txt = "0"; + req_one_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"cqZ" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/window/reinforced/tinted/fulltile, +/turf/open/floor/plating, +/area/science/research) +"cra" = ( +/turf/closed/wall, +/area/science/explab) +"crb" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_y = 30; + receive_ore_updates = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"crc" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/pen, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"crd" = ( +/obj/structure/table/reinforced, +/obj/item/hand_labeler, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/device/taperecorder, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cre" = ( +/obj/machinery/computer/rdconsole/experiment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"crf" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/book/manual/experimentor, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"crg" = ( +/obj/machinery/button/door{ + id = "telelab"; + name = "Test Chamber Blast Doors"; + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/reagent_containers/dropper, +/obj/item/stack/medical/bruise_pack{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/stack/medical/ointment, +/obj/item/device/healthanalyzer, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"crh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cri" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"crj" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"crk" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/white, +/obj/item/clothing/head/soft/mime, +/obj/item/clothing/under/color/white, +/obj/item/clothing/head/soft/mime, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/mask/surgical, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"crl" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"crm" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"crn" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/aft) +"cro" = ( +/obj/machinery/chem_heater, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"crp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon{ + dir = 1; + name = "incinerator output intake" + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"crq" = ( +/obj/machinery/igniter{ + icon_state = "igniter0"; + id = "Incinerator"; + luminosity = 2; + on = 0 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"crr" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "air_in" + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"crs" = ( +/obj/machinery/door/poddoor{ + id = "auxincineratorvent"; + name = "Incineration Chamber Vent" + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"crt" = ( +/obj/item/device/flashlight/lamp, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cru" = ( +/obj/item/reagent_containers/food/drinks/bottle/tequila, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"crv" = ( +/obj/item/reagent_containers/food/drinks/beer, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"crw" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/maintenance/port/aft) +"crx" = ( +/obj/structure/mineral_door/wood{ + name = "The Gobbetting Barmaid" + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cry" = ( +/obj/structure/table, +/obj/item/hemostat, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"crz" = ( +/obj/structure/table, +/obj/item/surgicaldrill, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/surgery) +"crA" = ( +/obj/structure/table, +/obj/item/scalpel{ + pixel_y = 12 + }, +/obj/item/circular_saw, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/surgery) +"crB" = ( +/obj/structure/table, +/obj/item/cautery{ + pixel_x = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/razor{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/surgery) +"crC" = ( +/obj/structure/table, +/obj/item/retractor, +/turf/open/floor/plasteel, +/area/medical/surgery) +"crD" = ( +/obj/machinery/computer/med_data{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/surgery) +"crE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/surgery) +"crF" = ( +/obj/structure/table/reinforced, +/obj/item/device/radio/intercom{ + broadcasting = 1; + freerange = 0; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_x = 30 + }, +/obj/structure/bedsheetbin{ + pixel_x = 2 + }, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/item/gun/syringe, +/obj/item/clothing/glasses/eyepatch, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/surgery) +"crG" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Cryogenics APC"; + areastring = "/area/medical/cryo"; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/reagent_containers/dropper, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/cryo) +"crH" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/closet/secure_closet/medical1{ + pixel_x = -3 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"crI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"crJ" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"crK" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"crL" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/cryo) +"crM" = ( +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"crN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"crO" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"crP" = ( +/obj/item/cartridge/medical{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/cartridge/medical{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/cartridge/medical, +/obj/item/cartridge/chemistry{ + pixel_y = 2 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"crQ" = ( +/obj/item/folder/blue, +/obj/structure/table/glass, +/obj/item/stamp/cmo, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"crR" = ( +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/clothing/glasses/hud/health, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"crS" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/item/storage/secure/safe{ + pixel_x = 5; + pixel_y = 26 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 30 + }, +/obj/item/screwdriver{ + pixel_y = 6 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"crT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"crU" = ( +/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") + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 10 + }, +/area/medical/chemistry) +"crV" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whiteyellow/corner{ + dir = 8 + }, +/area/medical/chemistry) +"crW" = ( +/obj/machinery/disposal/bin{ + pixel_x = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"crX" = ( +/obj/machinery/chem_dispenser{ + layer = 2.7 + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 4 + }, +/area/medical/chemistry) +"crY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters_2"; + name = "chemistry shutters" + }, +/turf/open/floor/plating, +/area/medical/chemistry) +"crZ" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/floor/plasteel/yellow{ + dir = 4 + }, +/area/hallway/primary/aft) +"csa" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/hallway/primary/aft) +"csb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"csc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/purple/side{ + dir = 4 + }, +/area/hallway/primary/aft) +"csd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/purple, +/area/hallway/primary/aft) +"cse" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters_2"; + name = "research shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/lab) +"csf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/lab) +"csg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/white, +/area/science/lab) +"csh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"csi" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"csj" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/lab) +"csk" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/science/lab) +"csl" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 9 + }, +/area/science/research) +"csm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/research) +"csn" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"cso" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Research Division Hallway - Central"; + dir = 2; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"csp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"csq" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 29 + }, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/science/research) +"csr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/science/research) +"css" = ( +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/science/research) +"cst" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/research) +"csu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/research) +"csv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"csw" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 2 + }, +/area/science/research) +"csx" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/explab) +"csy" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"csz" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"csA" = ( +/obj/effect/landmark/start/scientist, +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"csB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/science, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"csC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/science/explab) +"csD" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"csE" = ( +/obj/structure/girder, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"csF" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 6 + }, +/obj/item/pen, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"csG" = ( +/obj/structure/table, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"csH" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"csI" = ( +/obj/structure/bed, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"csJ" = ( +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/compressor{ + comp_id = "incineratorturbine"; + dir = 1; + luminosity = 2 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"csK" = ( +/obj/structure/mineral_door/wood{ + name = "The Gobbetting Barmaid" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/maintenance/port/aft) +"csL" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/suit/apron/surgical, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/surgery) +"csM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"csN" = ( +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"csO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"csP" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Surgery APC"; + areastring = "/area/medical/surgery"; + pixel_x = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/table, +/obj/item/surgical_drapes, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/surgery) +"csQ" = ( +/obj/structure/bed/roller, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"csR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"csS" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/bedsheet/medical, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"csT" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/surgery) +"csU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/cryo) +"csV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"csW" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"csX" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 2 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel, +/area/medical/cryo) +"csY" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"csZ" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cta" = ( +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/medbay/central) +"ctb" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"ctc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"ctd" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/chief_medical_officer, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cte" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/mob/living/simple_animal/pet/cat/Runtime, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"ctf" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "CMO's Office APC"; + areastring = "/area/crew_quarters/heads/cmo"; + pixel_x = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/camera{ + c_tag = "CMO's Office"; + dir = 8; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"ctg" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/aft) +"cth" = ( +/obj/structure/closet/wardrobe/chemistry_white{ + pixel_x = -3 + }, +/obj/item/storage/backpack/satchel/chem, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cti" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 8 + }, +/area/medical/chemistry) +"ctj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"ctk" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 4 + }, +/area/medical/chemistry) +"ctl" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Chemistry Desk"; + req_access_txt = "5; 33" + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters_2"; + name = "chemistry shutters" + }, +/turf/open/floor/plasteel/whiteyellow{ + dir = 4 + }, +/area/medical/chemistry) +"ctm" = ( +/turf/open/floor/plasteel/yellow{ + dir = 4 + }, +/area/hallway/primary/aft) +"ctn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/hallway/primary/aft) +"cto" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/purple/side{ + dir = 4 + }, +/area/hallway/primary/aft) +"ctp" = ( +/turf/open/floor/plasteel/purple, +/area/hallway/primary/aft) +"ctq" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + dir = 4; + name = "Research and Development Desk"; + req_access_txt = "7" + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/door/firedoor, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters_2"; + name = "research shutters" + }, +/turf/open/floor/plating, +/area/science/lab) +"ctr" = ( +/obj/effect/landmark/start/scientist, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/lab) +"cts" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"ctt" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"ctu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"ctv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 4 + }, +/area/science/lab) +"ctw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Research and Development Lab"; + req_access_txt = "0"; + req_one_access_txt = "7;29" + }, +/turf/open/floor/plasteel/whitepurple{ + dir = 4 + }, +/area/science/lab) +"ctx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/research) +"cty" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ctz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"ctA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ctB" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"ctC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ctD" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ctE" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ctF" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ctG" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"ctH" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ctI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ctJ" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 4 + }, +/area/science/research) +"ctK" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Experimentation Lab"; + req_access_txt = "8" + }, +/turf/open/floor/plasteel/whitepurple{ + dir = 4 + }, +/area/science/explab) +"ctL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/explab) +"ctM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"ctN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"ctO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"ctP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"ctQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"ctR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"ctS" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Experimentation Lab Maintenance"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ctT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ctU" = ( +/obj/structure/bed/roller, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ctV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"ctW" = ( +/obj/structure/barricade/wooden, +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ctX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ctY" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ctZ" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/structure/rack, +/obj/item/storage/firstaid/regular, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/ointment, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cua" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cub" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/space, +/area/space/nearstation) +"cuc" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/maintenance/disposal/incinerator) +"cud" = ( +/obj/structure/cable, +/obj/machinery/power/turbine{ + luminosity = 2 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cue" = ( +/obj/structure/lattice/catwalk, +/obj/item/wrench, +/turf/open/space, +/area/space/nearstation) +"cuf" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/port/aft) +"cug" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/maintenance/port/aft) +"cuh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cui" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Surgery Maintenance"; + req_access_txt = "45" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cuj" = ( +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cuk" = ( +/obj/structure/table/optable, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cul" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cum" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre"; + req_access_txt = "45" + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cun" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cuo" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cup" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cuq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Surgery Observation"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cur" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/cryo) +"cus" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"cut" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cuu" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cuv" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cuw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cux" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/medbay/central) +"cuy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cuz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "privacy shutter" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"cuA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cuB" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cuC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cuD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cuE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cuF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "CMO Maintenance"; + req_access_txt = "40" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cuG" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cuH" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Chemistry APC"; + areastring = "/area/medical/chemistry"; + pixel_x = -24 + }, +/obj/structure/closet/secure_closet/chemical{ + pixel_x = -3 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cuI" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 10 + }, +/area/medical/chemistry) +"cuJ" = ( +/obj/machinery/chem_heater{ + pixel_x = 4 + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 2 + }, +/area/medical/chemistry) +"cuK" = ( +/obj/machinery/chem_master, +/obj/structure/noticeboard{ + desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; + dir = 1; + name = "requests board"; + pixel_y = -32 + }, +/obj/machinery/button/door{ + id = "chemistry_shutters_2"; + name = "chemistry shutters control"; + pixel_x = 26; + pixel_y = -26; + req_access_txt = "5; 33" + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 6 + }, +/area/medical/chemistry) +"cuL" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/floor/plasteel/purple, +/area/hallway/primary/aft) +"cuM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters_2"; + name = "research shutters" + }, +/turf/open/floor/plating, +/area/science/lab) +"cuN" = ( +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Research Lab APC"; + areastring = "/area/science/lab"; + pixel_y = -26 + }, +/obj/structure/cable/yellow, +/obj/structure/table, +/obj/machinery/button/door{ + id = "research_shutters_2"; + name = "research shutters control"; + pixel_x = -26; + pixel_y = -26; + req_access_txt = "7" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cuO" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cuP" = ( +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_y = -30; + receive_ore_updates = 1 + }, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cuQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + dir = 1; + name = "Research and Development Deliveries"; + req_access_txt = "7" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/lab) +"cuR" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cuS" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"cuT" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cuU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"cuV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cuW" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cuX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cuY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"cuZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cva" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Research Division Hallway - Starboard"; + dir = 1; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cvb" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cvc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cvd" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 2 + }, +/area/science/research) +"cve" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 6 + }, +/area/science/research) +"cvf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/science/explab) +"cvg" = ( +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/explab) +"cvh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Experimentation Lab APC"; + areastring = "/area/science/explab"; + pixel_y = -24 + }, +/obj/structure/cable/yellow, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cvi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/machinery/camera{ + c_tag = "Experimentation Lab"; + dir = 1; + network = list("SS13","RD") + }, +/obj/machinery/light, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cvj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cvk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cvl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cvm" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cvn" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cvo" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cvp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cvq" = ( +/obj/structure/barricade/wooden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cvr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cvs" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard/aft) +"cvt" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cvu" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/space, +/area/space/nearstation) +"cvv" = ( +/obj/structure/disposaloutlet{ + dir = 2 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"cvw" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"cvx" = ( +/obj/machinery/door/poddoor{ + id = "turbinevent"; + name = "Turbine Vent" + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cvy" = ( +/obj/item/toy/cards/deck, +/obj/structure/table/wood/poker, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cvz" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/maintenance/port/aft) +"cvA" = ( +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/reagent_containers/food/drinks/beer{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/ale, +/obj/structure/table/wood, +/obj/item/device/instrument/eguitar, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cvB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/light_switch{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/surgery) +"cvC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cvD" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cvE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cvF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/surgery) +"cvG" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cvH" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/light_switch{ + pixel_x = 26 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cvI" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/cryo) +"cvJ" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/machinery/camera{ + c_tag = "Medbay Cryo"; + dir = 1; + network = list("SS13","Medbay") + }, +/obj/item/screwdriver{ + pixel_y = 6 + }, +/obj/item/clothing/neck/stethoscope, +/obj/item/wrench/medical, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"cvK" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + freerange = 0; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_y = -30 + }, +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cvL" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Connector Port (Air Supply)" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cvM" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Connector Port (Air Supply)" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cvN" = ( +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cvO" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 2 + }, +/area/medical/medbay/central) +"cvP" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cvQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cvR" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/storage/secure/briefcase, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cvS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cvT" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/keycard_auth{ + pixel_x = 26; + pixel_y = -7 + }, +/obj/machinery/computer/med_data/laptop, +/obj/structure/table/glass, +/obj/machinery/button/door{ + id = "cmoprivacy"; + name = "Privacy Shutters Control"; + pixel_x = 26; + pixel_y = 4 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cvU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cvV" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chemistry Lab Maintenance"; + req_access_txt = "5; 33" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cvW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -29 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/aft) +"cvX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cvY" = ( +/obj/machinery/power/apc/highcap/five_k{ + dir = 4; + name = "Aft Hallway APC"; + areastring = "/area/hallway/primary/aft"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/purple/corner{ + dir = 4 + }, +/area/hallway/primary/aft) +"cvZ" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Research and Development" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/lab) +"cwa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Research Lab Maintenance"; + req_access_txt = "0"; + req_one_access_txt = "7;29" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cwb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white/side{ + dir = 5 + }, +/area/science/research) +"cwc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/science/research) +"cwd" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/science/research) +"cwe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"cwf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"cwg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"cwh" = ( +/turf/closed/wall, +/area/crew_quarters/heads/hor) +"cwi" = ( +/turf/closed/wall/r_wall, +/area/science/storage) +"cwj" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall/r_wall, +/area/science/storage) +"cwk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage"; + req_access_txt = "8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "toxins_blastdoor"; + name = "biohazard containment shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"cwl" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cwm" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cwn" = ( +/obj/structure/closet/l3closet/scientist{ + pixel_x = -2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cwo" = ( +/obj/structure/closet/wardrobe/science_white, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cwp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cwq" = ( +/obj/structure/rack, +/obj/item/reagent_containers/blood/random, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cwr" = ( +/obj/structure/table, +/obj/structure/bedsheetbin{ + pixel_x = 2 + }, +/obj/item/clothing/mask/muzzle, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cws" = ( +/obj/structure/table, +/obj/item/restraints/handcuffs/cable/white, +/obj/item/gun/syringe, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cwt" = ( +/obj/structure/rack, +/obj/item/hatchet, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cwu" = ( +/obj/machinery/iv_drip, +/obj/item/roller, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cwv" = ( +/obj/structure/rack, +/obj/item/tank/internals/anesthetic, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cww" = ( +/obj/structure/light_construct/small, +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cwx" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"cwy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"cwz" = ( +/obj/item/dice/d20, +/obj/item/dice, +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cwA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/port/aft) +"cwB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cwC" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -28 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"cwD" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/surgery) +"cwE" = ( +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Medbay Surgery"; + dir = 1; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cwF" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/surgery) +"cwG" = ( +/obj/item/device/radio/intercom{ + broadcasting = 1; + freerange = 0; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_y = -30 + }, +/obj/structure/closet/crate/freezer/blood, +/turf/open/floor/plasteel, +/area/medical/surgery) +"cwH" = ( +/obj/structure/bed/roller, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -28 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 2 + }, +/area/medical/surgery) +"cwI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 2 + }, +/area/medical/surgery) +"cwJ" = ( +/obj/structure/bed, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/item/bedsheet/medical, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/camera{ + c_tag = "Medbay Recovery Room"; + dir = 1; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 2 + }, +/area/medical/surgery) +"cwK" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cwL" = ( +/turf/closed/wall, +/area/medical/cryo) +"cwM" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/camera{ + c_tag = "Medbay Hallway Central"; + dir = 4; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"cwN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cwO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/medbay/central) +"cwP" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Chief Medical Officer's Office"; + req_access_txt = "40"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cwQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cwR" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cwS" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/table/glass, +/obj/item/folder/blue, +/obj/item/folder/blue, +/obj/item/pen, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cwT" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer RC"; + pixel_y = -32 + }, +/obj/effect/landmark/start/chief_medical_officer, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cwU" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for monitoring medbay to ensure patient safety."; + dir = 8; + name = "Medbay Monitor"; + network = list("Medbay"); + pixel_x = 29 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/machinery/computer/card/minor/cmo{ + dir = 8 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cwV" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/aft) +"cwW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cwX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/aft) +"cwY" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 11 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cwZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxa" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;5;9" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cxe" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"cxg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Aft Emergency Storage"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxh" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 14 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "7;47;29;12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxm" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 12 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Research Maintenance"; + req_access_txt = "0"; + req_one_access_txt = "7;47;29" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxq" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"cxr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 13 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cxs" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"cxt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"cxu" = ( +/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_y = 2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cxv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cxw" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Research Director's Desk"; + departmentType = 5; + name = "Research Director RC"; + pixel_y = 30; + receive_ore_updates = 1 + }, +/obj/machinery/modular_computer/console/preset/research{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cxx" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/landmark/xmastree/rdrod, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/hor) +"cxy" = ( +/obj/structure/displaycase/labcage, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/warning/biohazard{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/hor) +"cxz" = ( +/obj/item/storage/secure/safe{ + pixel_x = 32 + }, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/hor) +"cxA" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"cxB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"cxC" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"cxD" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/power/apc/highcap/five_k{ + dir = 1; + name = "Toxins Storage APC"; + areastring = "/area/science/storage"; + pixel_y = 25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"cxE" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"cxF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cxG" = ( +/obj/machinery/camera{ + active_power_usage = 0; + c_tag = "Turbine Vent"; + dir = 4; + network = list("Turbine"); + use_power = 0 + }, +/turf/open/space, +/area/space/nearstation) +"cxH" = ( +/obj/structure/grille/broken, +/turf/open/space, +/area/space/nearstation) +"cxI" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cxJ" = ( +/obj/machinery/vending/assist, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cxK" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/patients_rooms/room_a) +"cxL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/vending/wallmed{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/white, +/area/medical/patients_rooms/room_a) +"cxM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/patients_rooms/room_a) +"cxN" = ( +/obj/machinery/door/airlock/medical{ + name = "Patient Room A"; + req_access_txt = "5" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/patients_rooms/room_a) +"cxO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cxP" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"cxQ" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = -28 + }, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cxR" = ( +/obj/machinery/suit_storage_unit/cmo, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cxS" = ( +/obj/structure/table/glass, +/obj/item/pen, +/obj/item/clothing/neck/stethoscope, +/obj/structure/extinguisher_cabinet{ + pixel_x = 6; + pixel_y = -30 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cxT" = ( +/turf/closed/wall/r_wall, +/area/medical/genetics) +"cxU" = ( +/turf/closed/wall, +/area/medical/genetics) +"cxV" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Genetics Maintenance"; + req_access_txt = "9"; + req_one_access_txt = "0" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxW" = ( +/obj/structure/sign/directions/evac, +/turf/closed/wall, +/area/medical/genetics) +"cxX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/blue/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cxY" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"cya" = ( +/obj/structure/sign/directions/evac, +/turf/closed/wall, +/area/maintenance/aft) +"cyb" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/aft) -"cLE" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1; - name = "euthanization chamber freezer"; - on = 1; - target_temperature = 80 +"cyc" = ( +/obj/item/storage/toolbox/emergency, +/obj/structure/closet/firecloset, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cyd" = ( +/obj/item/tank/internals/air, +/obj/item/tank/internals/air, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/machinery/space_heater, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 }, /turf/open/floor/plating, -/area/science/xenobiology) +/area/maintenance/aft) +"cye" = ( +/turf/closed/wall, +/area/maintenance/aft) +"cyf" = ( +/turf/closed/wall/r_wall, +/area/science/misc_lab/range) +"cyg" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Research Testing Range Maintenance"; + req_access_txt = "0"; + req_one_access_txt = "7;47;29" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cyh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/science/research) +"cyi" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"cyj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"cyk" = ( +/obj/machinery/button/door{ + id = "xeno_blastdoor"; + name = "Secure Lab Shutter Control"; + pixel_x = -5; + pixel_y = -5; + req_access_txt = "47" + }, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "rdprivacy"; + name = "Privacy Shutters Control"; + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/button/door{ + id = "Biohazard"; + name = "Entrance Shutter Control"; + pixel_x = -5; + pixel_y = 5; + req_access_txt = "47" + }, +/obj/machinery/button/door{ + id = "toxins_blastdoor"; + name = "Toxins Shutter Control"; + pixel_x = 5; + pixel_y = -5; + req_access_txt = "47" + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cyl" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/research_director, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cym" = ( +/obj/machinery/computer/robotics{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cyn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/hor) +"cyo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/hor) +"cyp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/hor) +"cyq" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"cyr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"cys" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/chair/stool, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"cyt" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"cyu" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"cyv" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cyw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cyx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cyy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/science/circuit) +"cyz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cyA" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cyB" = ( +/obj/structure/target_stake, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cyC" = ( +/obj/structure/closet/crate, +/obj/item/target/alien, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/item/target/clown, +/obj/item/target/syndicate, +/obj/item/target/syndicate, +/obj/item/gun/energy/laser/practice, +/obj/item/gun/energy/laser/practice, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cyD" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cyE" = ( +/obj/structure/reagent_dispensers/beerkeg{ + desc = "One of the more successful achievements of the Nanotrasen Corporate Warfare Division, their nuclear fission explosives are renowned for being cheap to produce and devastatingly effective. Signs explain that though this particular device has been decommissioned, every Nanotrasen station is equipped with an equivalent one, just in case. All Captains carefully guard the disk needed to detonate them - at least, the sign says they do. There seems to be a tap on the back."; + icon = 'icons/obj/machines/nuke.dmi'; + icon_state = "nuclearbomb_base"; + name = "Nanotrasen-brand nuclear fission explosive"; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cyF" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/space) +"cyG" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"cyH" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/solar{ + id = "aftport"; + name = "Aft-Port Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port/aft) +"cyI" = ( +/obj/structure/closet, +/obj/item/extinguisher, +/obj/effect/decal/cleanable/cobweb, +/obj/item/device/flashlight, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cyJ" = ( +/obj/structure/closet, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/dropper, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cyK" = ( +/obj/structure/closet/crate, +/obj/item/stack/cable_coil, +/obj/item/grenade/chem_grenade, +/obj/item/device/flashlight, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cyL" = ( +/obj/structure/closet/crate, +/obj/item/coin/silver, +/obj/item/reagent_containers/spray/weedspray, +/obj/item/paper, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cyM" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Port Quarter Maintenance APC"; + areastring = "/area/maintenance/port/aft"; + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cyN" = ( +/obj/structure/table, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/clothing/neck/stethoscope, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Patient Room A APC"; + areastring = "/area/medical/patients_rooms/room_a"; + pixel_x = -26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/patients_rooms/room_a) +"cyO" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/patients_rooms/room_a) +"cyP" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/button/door{ + id = "isola"; + name = "Privacy Shutters"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/patients_rooms/room_a) +"cyQ" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "isola"; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/medical/patients_rooms/room_a) +"cyR" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cyS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cyT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cyU" = ( +/obj/item/storage/box/rxglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -29 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/vault, +/area/medical/genetics) +"cyV" = ( +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/gloves/color/latex, +/obj/item/storage/box/disks{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/vault, +/area/medical/genetics) +"cyW" = ( +/obj/machinery/requests_console{ + department = "Genetics"; + departmentType = 0; + name = "Genetics Requests Console"; + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/storage/box/monkeycubes, +/obj/item/device/radio/headset/headset_medsci, +/obj/item/device/flashlight/pen{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/device/flashlight/pen{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/structure/noticeboard{ + desc = "A board for pinning important notices upon."; + name = "notice board"; + pixel_x = -32; + pixel_y = 32 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/vault, +/area/medical/genetics) +"cyX" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Genetics Lab APC"; + areastring = "/area/medical/genetics"; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/storage/pill_bottle/mutadone, +/obj/item/storage/pill_bottle/mannitol, +/obj/structure/table/glass, +/turf/open/floor/plasteel/vault, +/area/medical/genetics) +"cyY" = ( +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/vault, +/area/medical/genetics) +"cyZ" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/blue/side{ + dir = 9 + }, +/area/medical/genetics) +"cza" = ( +/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 = 32 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/blue/side{ + dir = 5 + }, +/area/medical/genetics) +"czb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "genetics_shutters"; + name = "genetics shutters" + }, +/turf/open/floor/plating, +/area/medical/genetics) +"czc" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/floor/plasteel/blue, +/area/medical/genetics) +"czd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/blue/side{ + dir = 8 + }, +/area/hallway/primary/aft) +"cze" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/aft) +"czf" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/aft) +"czg" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/storage/box/lights/mixed, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"czh" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"czi" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"czj" = ( +/turf/open/floor/engine{ + dir = 9; + icon_state = "floor" + }, +/area/science/misc_lab/range) +"czk" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"czl" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 5 + }, +/area/science/research) +"czm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"czn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 2 + }, +/area/science/research) +"czo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"czp" = ( +/obj/machinery/computer/card/minor/rd{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"czq" = ( +/obj/machinery/computer/mecha{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"czr" = ( +/obj/structure/table, +/obj/item/device/aicard, +/obj/item/circuitboard/aicore{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"czs" = ( +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"czt" = ( +/obj/structure/table, +/obj/item/device/taperecorder{ + pixel_x = -3 + }, +/obj/item/device/paicard{ + pixel_x = 4 + }, +/obj/item/storage/secure/briefcase, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"czu" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"czv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"czw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"czx" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"czy" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Toxins Storage"; + dir = 8; + network = list("SS13","RD") + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"czz" = ( +/obj/structure/rack, +/obj/item/extinguisher, +/obj/item/storage/belt/utility, +/obj/item/clothing/mask/gas, +/obj/item/storage/box/lights/mixed, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"czA" = ( +/turf/closed/wall/r_wall, +/area/science/circuit) +"czB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/research/glass{ + name = "Circuitry Lab"; + req_access_txt = "47" + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"czC" = ( +/turf/closed/wall, +/area/science/circuit) +"czD" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"czE" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"czF" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"czG" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"czH" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"czI" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"czJ" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"czK" = ( +/obj/structure/closet/crate, +/obj/item/crowbar/red, +/obj/item/pen, +/obj/item/device/flashlight/pen{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"czL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"czM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"czN" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"czO" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"czP" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"czQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"czR" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"czS" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"czT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/medical/patients_rooms/room_a) +"czU" = ( +/turf/closed/wall, +/area/medical/patients_rooms/room_a) +"czV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/departments/examroom{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"czW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"czX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"czY" = ( +/turf/closed/wall, +/area/medical/genetics/cloning) +"czZ" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/door/window/southleft{ + dir = 2; + name = "Cloning Shower" + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/vault, +/area/medical/genetics/cloning) +"cAa" = ( +/obj/machinery/door/window/southleft{ + base_state = "right"; + dir = 2; + icon_state = "right"; + name = "Cloning Shower" + }, +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "sink"; + pixel_y = 28 + }, +/turf/open/floor/plasteel/vault, +/area/medical/genetics/cloning) +"cAb" = ( +/obj/machinery/clonepod{ + pixel_y = 2 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/vault, +/area/medical/genetics/cloning) +"cAc" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Genetics Lab"; + dir = 4; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/whiteblue, +/area/medical/genetics) +"cAd" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 9 + }, +/area/medical/genetics) +"cAe" = ( +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/genetics) +"cAf" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 5 + }, +/area/medical/genetics) +"cAg" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue, +/area/medical/genetics) +"cAh" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/storage/box/syringes, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/blue/side{ + dir = 8 + }, +/area/medical/genetics) +"cAi" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/plasteel/blue/side{ + dir = 4 + }, +/area/medical/genetics) +"cAj" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/pen, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Genetics Desk"; + req_access_txt = "5;9" + }, +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Outer Window" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "genetics_shutters"; + name = "genetics shutters" + }, +/turf/open/floor/plating, +/area/medical/genetics) +"cAk" = ( +/turf/open/floor/plasteel/blue, +/area/medical/genetics) +"cAl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/blue/side{ + dir = 8 + }, +/area/hallway/primary/aft) +"cAm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"cAn" = ( +/turf/closed/wall, +/area/science/robotics/mechbay) +"cAo" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mech Bay Maintenance"; + req_access_txt = "29" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft) +"cAp" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = -29 + }, +/turf/open/floor/engine{ + dir = 9; + icon_state = "floor" + }, +/area/science/misc_lab/range) +"cAq" = ( +/obj/machinery/magnetic_module, +/obj/effect/landmark/blobstart, +/obj/structure/target_stake, +/obj/effect/turf_decal/bot{ + dir = 9 + }, +/turf/open/floor/plasteel{ + dir = 9 + }, +/area/science/misc_lab/range) +"cAr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "researchrangeshutters"; + name = "blast door" + }, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"cAs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"cAt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cAu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/science/research) +"cAv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Research Director's Office"; + req_access_txt = "30"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cAw" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cAx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cAy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cAz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cAA" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cAB" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"cAC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"cAD" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"cAE" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"cAF" = ( +/obj/structure/reagent_dispensers/watertank/high, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cAG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"cAH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"cAI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"cAJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"cAK" = ( +/obj/machinery/airalarm{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cAL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cAM" = ( +/obj/item/device/multitool, +/obj/item/screwdriver, +/obj/structure/table/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cAN" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + dir = 2; + name = "Science Requests Console"; + pixel_y = 30; + receive_ore_updates = 1 + }, +/obj/item/device/integrated_electronics/debugger, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cAO" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/stock_parts/cell/super, +/obj/item/stock_parts/cell/super, +/obj/item/stack/sheet/metal/fifty, +/obj/structure/table/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/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_y = 32 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cAP" = ( +/obj/item/screwdriver, +/obj/structure/table/reinforced, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cAQ" = ( +/obj/machinery/power/apc{ + areastring = "/area/science/circuit"; + dir = 1; + name = "Circuitry Lab APC"; + pixel_y = 30 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/table/reinforced, +/obj/item/device/multitool, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cAR" = ( +/obj/item/stock_parts/cell/super, +/obj/item/stock_parts/cell/super, +/obj/item/stack/sheet/metal/fifty, +/obj/structure/table/reinforced, +/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_y = 32 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cAS" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "aftport"; + name = "Aft-Port Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port/aft) +"cAT" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"cAU" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"cAV" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cAW" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cAX" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cAY" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cAZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cBa" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cBb" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cBc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cBd" = ( +/obj/structure/rack, +/obj/item/clothing/glasses/sunglasses, +/obj/item/device/flashlight/pen, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cBe" = ( +/obj/structure/table, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/clothing/neck/stethoscope, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Patient Room B APC"; + areastring = "/area/medical/patients_rooms/room_b"; + pixel_x = -26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/patients_rooms/room_b) +"cBf" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/vending/wallmed{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/white, +/area/medical/patients_rooms/room_b) +"cBg" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/button/door{ + id = "isolb"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/patients_rooms/room_b) +"cBh" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "isolb"; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/medical/patients_rooms/room_b) +"cBi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/aft) +"cBj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cBk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cBl" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 9 + }, +/area/medical/genetics/cloning) +"cBm" = ( +/obj/effect/landmark/start/geneticist, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/genetics/cloning) +"cBn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/computer/cloning{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 5 + }, +/area/medical/genetics/cloning) +"cBo" = ( +/obj/machinery/dna_scannernew, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/turf/open/floor/plasteel/whiteblue, +/area/medical/genetics) +"cBp" = ( +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/genetics) +"cBq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cBr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/genetics) +"cBs" = ( +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel/whiteblue, +/area/medical/genetics) +"cBt" = ( +/obj/item/storage/box/disks{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -29 + }, +/obj/machinery/camera{ + c_tag = "Genetics Desk"; + dir = 4; + network = list("SS13","Medbay") + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/blue/side{ + dir = 8 + }, +/area/medical/genetics) +"cBu" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/button/door{ + id = "genetics_shutters"; + name = "genetics shutters control"; + pixel_x = 28; + req_access_txt = "9" + }, +/turf/open/floor/plasteel/blue/side{ + dir = 4 + }, +/area/medical/genetics) +"cBv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel/blue/corner{ + dir = 1 + }, +/area/hallway/primary/aft) +"cBw" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -28 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cBx" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/science/robotics/mechbay) +"cBy" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = 31 + }, +/turf/open/floor/mech_bay_recharge_floor, +/area/science/robotics/mechbay) +"cBz" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"cBA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cBB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cBC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Research Division Hallway - Mech Bay"; + dir = 4; + network = list("SS13","RD") + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/science/research) +"cBD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/research) +"cBE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/science/research) +"cBF" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "RD Office APC"; + areastring = "/area/crew_quarters/heads/hor"; + pixel_y = -27 + }, +/obj/structure/cable/yellow, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/obj/item/twohanded/required/kirbyplants/dead, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cBG" = ( +/obj/item/paper_bin{ + pixel_y = 7 + }, +/obj/structure/table, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/obj/item/stamp/rd{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/folder/white{ + pixel_x = 9; + pixel_y = -1 + }, +/obj/item/pen, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cBH" = ( +/obj/structure/table, +/obj/item/cartridge/signal/toxins, +/obj/item/cartridge/signal/toxins{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/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/machinery/light, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cBI" = ( +/obj/structure/closet/secure_closet/RD, +/obj/machinery/keycard_auth{ + pixel_y = -24 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cBJ" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cBK" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cBL" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"cBM" = ( +/obj/item/cigbutt, +/obj/machinery/light_switch{ + pixel_y = -23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"cBN" = ( +/obj/effect/landmark/start/scientist, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/storage) +"cBO" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light/small, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"cBP" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cBQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"cBR" = ( +/turf/open/floor/plasteel, +/area/science/circuit) +"cBS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"cBT" = ( +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cBU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cBV" = ( +/obj/structure/table/reinforced, +/obj/item/device/integrated_electronics/analyzer, +/obj/item/device/integrated_circuit_printer, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cBW" = ( +/obj/effect/landmark/start/scientist, +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cBX" = ( +/obj/item/device/integrated_electronics/wirer, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cBY" = ( +/obj/structure/table/reinforced, +/obj/item/device/integrated_circuit_printer, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cBZ" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cCa" = ( +/obj/item/device/integrated_electronics/analyzer, +/obj/item/device/integrated_electronics/debugger, +/obj/item/device/integrated_electronics/wirer, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cCb" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/circuit) +"cCc" = ( +/obj/item/stack/cable_coil, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"cCd" = ( +/obj/structure/rack, +/obj/item/tank/internals/air, +/obj/item/wrench, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/port/aft) +"cCe" = ( +/obj/item/trash/chips, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cCf" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cCg" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cCh" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/patients_rooms/room_b) +"cCi" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/patients_rooms/room_b) +"cCj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/patients_rooms/room_b) +"cCk" = ( +/obj/machinery/door/airlock/medical{ + name = "Patient Room B"; + req_access_txt = "5" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/patients_rooms/room_b) +"cCl" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cCm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cCn" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 2 + }, +/area/medical/medbay/aft) +"cCo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/genetics/cloning) +"cCp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/genetics/cloning) +"cCq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"cCr" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/genetics/cloning) +"cCs" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/genetics) +"cCt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 9 + }, +/area/medical/genetics) +"cCu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/genetics) +"cCv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cCw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/genetics) +"cCx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 5 + }, +/area/medical/genetics) +"cCy" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/genetics) +"cCz" = ( +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/stack/packageWrap, +/obj/item/pen, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/table/glass, +/turf/open/floor/plasteel/blue/side{ + dir = 8 + }, +/area/medical/genetics) +"cCA" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/blue/corner{ + dir = 4 + }, +/area/medical/genetics) +"cCB" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = 28 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 5 + }, +/area/medical/genetics) +"cCC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=10.1-Central-from-Aft"; + location = "10-Aft-To-Central" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cCD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cCE" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=9.1-Escape-1"; + location = "8.1-Aft-to-Escape" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"cCF" = ( +/obj/machinery/door/poddoor/shutters{ + id = "Skynet_launch"; + name = "Mech Bay" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cCG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cCH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"cCI" = ( +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"cCJ" = ( +/obj/machinery/camera{ + c_tag = "Mech Bay"; + dir = 8; + network = list("SS13","RD") + }, +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"cCK" = ( +/turf/open/floor/plating, +/area/science/misc_lab/range) +"cCL" = ( +/obj/machinery/camera{ + c_tag = "Research Testing Range"; + dir = 8; + network = list("SS13","RD"); + pixel_y = -22 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"cCM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cCN" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"cCO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage"; + req_access_txt = "8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/storage) +"cCP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cCQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"cCR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cCS" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cCT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cCU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/rnd/protolathe/department/science, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cCV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/autolathe, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cCW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cCX" = ( +/obj/item/stack/sheet/glass/fifty, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cCY" = ( +/obj/structure/rack, +/obj/item/device/flashlight, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cCZ" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cDa" = ( +/obj/item/latexballon, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cDb" = ( +/obj/item/clothing/suit/ianshirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cDc" = ( +/turf/closed/wall, +/area/medical/medbay/aft) +"cDd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/aft) +"cDe" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cDf" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/medbay/aft) +"cDg" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "CloningDoor"; + name = "Cloning Lab"; + req_access_txt = "5; 68" + }, +/turf/open/floor/plasteel/whiteblue, +/area/medical/genetics/cloning) +"cDh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/genetics/cloning) +"cDi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"cDj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/genetics/cloning) +"cDk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Genetics Lab"; + req_access_txt = "5; 9; 68" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue, +/area/medical/genetics) +"cDl" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/genetics) +"cDm" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cDn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cDo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cDp" = ( +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/genetics) +"cDq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + id_tag = "AuxGenetics"; + locked = 0; + name = "Genetics Lab"; + req_access_txt = "9"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"cDr" = ( +/turf/open/floor/plasteel/blue/side{ + dir = 8 + }, +/area/medical/genetics) +"cDs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"cDt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 4 + }, +/area/medical/genetics) +"cDu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + id_tag = "AuxGenetics"; + locked = 0; + name = "Genetics Access"; + req_access_txt = "9"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"cDv" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cDw" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"cDx" = ( +/obj/machinery/door/poddoor/shutters{ + id = "Skynet_launch"; + name = "Mech Bay" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cDy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cDz" = ( +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"cDA" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"cDB" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/landmark/start/roboticist, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"cDC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"cDD" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"cDE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cDF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cDG" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cDH" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall, +/area/science/mixing) +"cDI" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/structure/closet/l3closet/scientist{ + pixel_x = -2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cDJ" = ( +/obj/structure/closet/wardrobe/science_white, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cDK" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cDL" = ( +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cDM" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cDN" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Toxins - Lab"; + dir = 2; + network = list("SS13","RD") + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cDO" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cDP" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cDQ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cDR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"cDS" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cDT" = ( +/turf/closed/wall/r_wall, +/area/science/mixing) +"cDU" = ( +/obj/structure/chair/comfy, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"cDV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"cDW" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"cDX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"cDY" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/circuit) +"cDZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"cEa" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cEb" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/medbay/aft) +"cEc" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/medbay/aft) +"cEd" = ( +/obj/machinery/vending/coffee, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/medbay/aft) +"cEe" = ( +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/obj/machinery/vending/cola/random, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/medbay/aft) +"cEf" = ( +/obj/machinery/vending/cigarette, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/medbay/aft) +"cEg" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/aft) +"cEh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cEi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 28 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/aft) +"cEj" = ( +/obj/machinery/button/door{ + desc = "A remote control switch for the cloning door."; + id = "CloningDoor"; + name = "Cloning Exit Button"; + normaldoorcontrol = 1; + pixel_x = -23; + pixel_y = 8 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 10 + }, +/area/medical/genetics/cloning) +"cEk" = ( +/obj/effect/landmark/start/geneticist, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 2 + }, +/area/medical/genetics/cloning) +"cEl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/power/apc{ + dir = 4; + locked = 0; + name = "Cloning Lab APC"; + areastring = "/area/medical/genetics/cloning"; + pixel_x = 24 + }, +/obj/structure/cable/yellow, +/obj/machinery/camera{ + c_tag = "Genetics Cloning Lab"; + dir = 8; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 6 + }, +/area/medical/genetics/cloning) +"cEm" = ( +/turf/open/floor/plasteel/whiteblue/side{ + dir = 10 + }, +/area/medical/genetics) +"cEn" = ( +/turf/open/floor/plasteel/whiteblue/side{ + dir = 2 + }, +/area/medical/genetics) +"cEo" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 6 + }, +/area/medical/genetics) +"cEp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 10 + }, +/area/medical/genetics) +"cEq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 0 + }, +/area/medical/genetics) +"cEr" = ( +/obj/machinery/light_switch{ + pixel_x = 23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 6 + }, +/area/medical/genetics) +"cEs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/genetics) +"cEt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cEu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cEv" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/button/door{ + dir = 2; + id = "Skynet_launch"; + name = "Mech Bay Door Control"; + pixel_x = 26; + pixel_y = 6; + req_one_access_txt = "29" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"cEw" = ( +/obj/machinery/button/door{ + dir = 2; + id = "Skynet_launch"; + name = "Mech Bay Door Control"; + pixel_x = -26; + pixel_y = 6 + }, +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = -2 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cEx" = ( +/turf/open/floor/mech_bay_recharge_floor, +/area/science/robotics/mechbay) +"cEy" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"cEz" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/paper/guides/jobs/security/range{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cEA" = ( +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "door"; + req_access_txt = "0" + }, +/turf/open/floor/engine{ + dir = 9; + icon_state = "floor" + }, +/area/science/misc_lab/range) +"cEB" = ( +/obj/structure/table/reinforced, +/obj/machinery/magnetic_controller{ + autolink = 1; + pixel_y = 3 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/clothing/ears/earmuffs, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cEC" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"cED" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cEE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 2 + }, +/area/science/research) +"cEF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "toxins_blastdoor"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/mixing) +"cEG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cEH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cEI" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cEJ" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cEK" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cEL" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cEM" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cEN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cEO" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cEP" = ( +/obj/structure/table/glass, +/obj/machinery/camera/autoname{ + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"cEQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"cER" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/research/glass{ + name = "Circuitry Lab"; + req_access_txt = "47" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/science/circuit) +"cES" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cET" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cEU" = ( +/obj/machinery/light, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cEV" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cEW" = ( +/obj/item/device/radio/intercom{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cEX" = ( +/obj/machinery/camera{ + c_tag = "Research Division Circuitry Lab"; + dir = 1; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cEY" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cEZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/libraryconsole/bookmanagement, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cFa" = ( +/obj/machinery/bookbinder, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cFb" = ( +/obj/machinery/libraryscanner, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cFc" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"cFd" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cFe" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/medical/medbay/aft) +"cFf" = ( +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cFg" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cFh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cFi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cFj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/cigbutt, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cFk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + name = "Medbay Break Room"; + req_access_txt = "5" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cFl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cFm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cFn" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Medbay Aft APC"; + areastring = "/area/medical/medbay/aft"; + pixel_x = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cFo" = ( +/obj/item/book/manual/medical_cloning{ + pixel_y = 6 + }, +/obj/item/paper, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/vault, +/area/medical/genetics/cloning) +"cFp" = ( +/obj/item/storage/box/rxglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/table/glass, +/turf/open/floor/plasteel/vault, +/area/medical/genetics/cloning) +"cFq" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/vault, +/area/medical/genetics/cloning) +"cFr" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/closet/wardrobe/genetics_white, +/turf/open/floor/plasteel/vault, +/area/medical/genetics) +"cFs" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/bed/roller, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/genetics) +"cFt" = ( +/obj/structure/bed/roller, +/obj/machinery/door/window/westleft{ + dir = 1; + name = "Monkey Pen"; + pixel_y = 2; + req_access_txt = "9" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/genetics) +"cFu" = ( +/obj/machinery/light, +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "Monkey Pen"; + pixel_y = 2; + req_access_txt = "9" + }, +/obj/structure/bed/roller, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/genetics) +"cFv" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/bed/roller, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/genetics) +"cFw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/vault, +/area/medical/genetics) +"cFx" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel/vault, +/area/medical/genetics) +"cFy" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway - Middle"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cFz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cFA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"cFB" = ( +/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/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cFC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cFD" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cFE" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cFF" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Mech Bay APC"; + areastring = "/area/science/robotics/mechbay"; + pixel_x = 28 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cFG" = ( +/obj/structure/rack, +/obj/item/target, +/obj/item/target, +/obj/item/target/alien, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/item/target/clown, +/obj/item/target/syndicate, +/obj/item/target/syndicate, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cFH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cFI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cFJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Research Testing Range"; + req_access_txt = "0"; + req_one_access_txt = "7;47;29" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/purple, +/area/science/misc_lab/range) +"cFK" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/research) +"cFL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cFM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 4 + }, +/area/science/research) +"cFN" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Lab"; + req_access_txt = "8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "toxins_blastdoor"; + name = "biohazard containment shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"cFO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cFP" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cFQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cFR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cFS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cFT" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cFU" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cFV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cFW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/effect/landmark/start/scientist, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cFX" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cFY" = ( +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/scrubber, +/obj/item/storage/firstaid/toxin, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cFZ" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall/r_wall, +/area/science/mixing) +"cGa" = ( +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/chair/comfy{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"cGb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"cGc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/closed/wall, +/area/science/circuit) +"cGd" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cGe" = ( +/obj/structure/chair/stool, +/obj/item/device/radio/intercom{ + broadcasting = 1; + freerange = 0; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_x = -30 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cGf" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cGg" = ( +/obj/item/cigbutt, +/obj/machinery/holopad, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cGh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cGi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cGj" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay/aft) +"cGk" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/aft) +"cGl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cGm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + broadcasting = 1; + freerange = 0; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_x = 30 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cGn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/medical/genetics/cloning) +"cGo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/centcom{ + name = "Genetics"; + opacity = 1; + req_access_txt = "9" + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics) +"cGp" = ( +/obj/structure/sign/directions/evac, +/turf/closed/wall, +/area/hallway/primary/aft) +"cGq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cGr" = ( +/obj/structure/sign/directions/evac, +/turf/closed/wall, +/area/science/robotics/mechbay) +"cGs" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cGt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cGu" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 28 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cGv" = ( +/obj/structure/table, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/item/clothing/glasses/science, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cGw" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "researchrangeshutters"; + name = "Blast Door Control"; + pixel_y = -24; + req_access_txt = "0" + }, +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cGx" = ( +/obj/item/gun/energy/laser/practice, +/obj/machinery/power/apc{ + dir = 2; + name = "Research Firing Range APC"; + areastring = "/area/science/misc_lab/range"; + pixel_y = -28 + }, +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cGy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "researchrangeshutters"; + name = "blast door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"cGz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"cGA" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cGB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/research) +"cGC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "toxins_blastdoor"; + name = "biohazard containment door" + }, +/turf/open/floor/plating, +/area/science/mixing) +"cGD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cGE" = ( +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cGF" = ( +/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_y = 2 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cGG" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/scientist, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cGH" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cGI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cGJ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cGK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cGL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cGM" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cGN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"cGO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room Access"; + req_access_txt = "8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "toxins_blastdoor"; + name = "biohazard containment shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"cGP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"cGQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"cGR" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"cGS" = ( +/turf/closed/wall, +/area/science/mixing) +"cGT" = ( +/obj/machinery/camera{ + c_tag = "Toxins - Launch Area"; + dir = 2; + network = list("SS13","RD") + }, +/obj/machinery/suit_storage_unit/rd, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/science/mixing) +"cGU" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/science/mixing) +"cGV" = ( +/obj/item/stack/rods/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/target, +/obj/item/target/syndicate, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/structure/closet/crate/secure{ + desc = "A secure crate containing various materials for building a customised test-site."; + name = "Test Site Materials Crate"; + req_access_txt = "8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/science/mixing) +"cGW" = ( +/obj/machinery/doppler_array{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 22 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/science/mixing) +"cGX" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/wall, +/area/science/mixing) +"cGY" = ( +/turf/closed/wall, +/area/science/test_area) +"cGZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/test_area) +"cHa" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"cHb" = ( +/turf/closed/wall/r_wall, +/area/medical/virology) +"cHc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/medical/virology) +"cHd" = ( +/obj/item/cigbutt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cHe" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cHf" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -30 + }, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/table/glass, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cHg" = ( +/obj/structure/chair/stool, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cHh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/structure/extinguisher_cabinet{ + pixel_y = -29 + }, +/obj/machinery/camera{ + c_tag = "Medbay Break Room"; + dir = 1; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cHi" = ( +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cHj" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cHk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cHl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/medical/medbay/aft) +"cHm" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel/white/corner{ + dir = 2 + }, +/area/medical/medbay/aft) +"cHn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/medbay/aft) +"cHo" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/medical/medbay/aft) +"cHp" = ( +/turf/closed/wall, +/area/medical/morgue) +"cHq" = ( +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cHr" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cHs" = ( +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cHt" = ( +/obj/machinery/camera{ + c_tag = "Morgue"; + dir = 2; + network = list("SS13","Medbay") + }, +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cHu" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cHv" = ( +/obj/machinery/airalarm{ + pixel_y = 32 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/paper/guides/jobs/medical/morgue{ + pixel_x = -4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cHw" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cHx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel/purple/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"cHy" = ( +/turf/closed/wall/r_wall, +/area/science/robotics/mechbay) +"cHz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics_shutters"; + name = "robotics shutters" + }, +/turf/open/floor/plating, +/area/science/robotics/mechbay) +"cHA" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cHB" = ( +/turf/closed/wall/r_wall, +/area/science/robotics/lab) +"cHC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/science/research) +"cHD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/science/research) +"cHE" = ( +/obj/structure/closet/bombcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cHF" = ( +/obj/item/device/assembly/signaler{ + 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, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cHG" = ( +/obj/item/device/transfer_valve{ + pixel_x = -5 + }, +/obj/item/device/transfer_valve{ + pixel_x = -5 + }, +/obj/item/device/transfer_valve, +/obj/item/device/transfer_valve, +/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_y = -30; + receive_ore_updates = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/science/mixing) +"cHH" = ( +/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, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cHI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cHJ" = ( +/obj/machinery/disposal/bin{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cHK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cHL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cHM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cHN" = ( +/obj/structure/table, +/obj/item/device/assembly/igniter{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 2; + pixel_y = -1 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Toxins Lab APC"; + areastring = "/area/science/mixing"; + pixel_x = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cHO" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cHP" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/floorgrime, +/area/science/mixing) +"cHQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/science/mixing) +"cHR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/science/mixing) +"cHS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cHT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cHU" = ( +/obj/structure/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 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cHV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/mixing) +"cHW" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"cHX" = ( +/obj/structure/window/reinforced, +/obj/item/target, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/science/test_area) +"cHY" = ( +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cHZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cIa" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cIb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cIc" = ( +/obj/machinery/camera{ + c_tag = "Medbay Hallway Aft"; + dir = 4; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/white/side{ + dir = 5 + }, +/area/medical/medbay/aft) +"cId" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cIe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cIf" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/medical/medbay/aft) +"cIg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/medbay/aft) +"cIh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cIi" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cIj" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cIk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cIl" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cIm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cIn" = ( +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cIo" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cIp" = ( +/obj/machinery/vending/cola/random, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cIq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics_shutters"; + name = "robotics shutters" + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"cIr" = ( +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/machinery/button/door{ + id = "robotics_shutters"; + name = "robotics shutters control"; + pixel_x = -26; + pixel_y = 26; + req_access_txt = "29" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cIs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cIt" = ( +/obj/machinery/mecha_part_fabricator{ + dir = 2 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cIu" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/structure/rack, +/obj/item/book/manual/robotics_cyborgs{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/storage/belt/utility, +/obj/item/reagent_containers/glass/beaker/large, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cIv" = ( +/obj/machinery/mecha_part_fabricator{ + dir = 2 + }, +/obj/machinery/camera{ + c_tag = "Robotics - Fore"; + dir = 2; + network = list("SS13","RD") + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cIw" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Robotics Lab APC"; + areastring = "/area/science/robotics/lab"; + pixel_y = 25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cIx" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 40; + pixel_x = 3; + pixel_y = -4 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cIy" = ( +/turf/closed/wall, +/area/science/robotics/lab) +"cIz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cIA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/science/mixing) +"cIB" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/science/mixing) +"cIC" = ( +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cID" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cIE" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cIF" = ( +/obj/structure/table, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cIG" = ( +/obj/machinery/vending/assist, +/turf/open/floor/plasteel, +/area/science/mixing) +"cIH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/floorgrime, +/area/science/mixing) +"cII" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cIJ" = ( +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"cIK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cIL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/mixing) +"cIM" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/mixing) +"cIN" = ( +/obj/machinery/light/small, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/mixing) +"cIO" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/button/massdriver{ + dir = 2; + id = "toxinsdriver"; + pixel_x = 24; + pixel_y = -24 + }, +/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 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cIP" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/wall, +/area/science/test_area) +"cIQ" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cIR" = ( +/obj/item/device/flashlight/lamp, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cIS" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cIT" = ( +/obj/structure/bed/roller, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cIU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cIV" = ( +/obj/effect/landmark/blobstart, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cIW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cIX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/medical/virology) +"cIY" = ( +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/box/syringes, +/obj/machinery/power/apc/highcap/five_k{ + dir = 1; + name = "Virology APC"; + areastring = "/area/medical/virology"; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/table/glass, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 9 + }, +/area/medical/virology) +"cIZ" = ( +/obj/item/book/manual/wiki/infections{ + pixel_y = 7 + }, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/table/glass, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 5 + }, +/area/medical/virology) +"cJa" = ( +/obj/machinery/smartfridge/chemistry/virology/preloaded, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/whitegreen, +/area/medical/virology) +"cJb" = ( +/obj/machinery/reagentgrinder{ + pixel_y = 8 + }, +/obj/structure/table/glass, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 9 + }, +/area/medical/virology) +"cJc" = ( +/obj/item/clothing/gloves/color/latex, +/obj/item/device/healthanalyzer, +/obj/item/clothing/glasses/hud/health, +/obj/structure/reagent_dispensers/virusfood{ + pixel_y = 30 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 5 + }, +/area/medical/virology) +"cJd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cJe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cJf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"cJg" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cJh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cJi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cJj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/medbay/aft) +"cJk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cJl" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cJm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/medical/medbay/aft) +"cJn" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/medbay/aft) +"cJo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cJp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cJq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/centcom{ + name = "Morgue"; + opacity = 1; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cJr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cJs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cJt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cJu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cJv" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cJw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cJx" = ( +/obj/structure/table, +/obj/machinery/power/apc{ + dir = 4; + name = "Morgue APC"; + areastring = "/area/medical/morgue"; + pixel_x = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/clothing/gloves/color/latex, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cJy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/morgue) +"cJz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/hallway/primary/aft) +"cJA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cJB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/purple/side{ + dir = 4 + }, +/area/hallway/primary/aft) +"cJC" = ( +/turf/open/floor/plasteel/purple, +/area/science/robotics/lab) +"cJD" = ( +/obj/structure/table/reinforced, +/obj/item/pen, +/obj/machinery/door/window/eastright{ + dir = 4; + name = "Robotics Desk"; + req_access_txt = "29" + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics_shutters"; + name = "robotics shutters" + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"cJE" = ( +/obj/effect/landmark/start/roboticist, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cJF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cJG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cJH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cJI" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/machinery/ai_status_display{ + pixel_x = 32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cJJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/science/research) +"cJK" = ( +/obj/structure/lattice, +/turf/open/space, +/area/science/mixing) +"cJL" = ( +/obj/machinery/door/poddoor{ + id = "mixvent"; + name = "Mixer Room Vent" + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"cJM" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"cJN" = ( +/obj/machinery/sparker{ + dir = 2; + id = "mixingsparker"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"cJO" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"cJP" = ( +/obj/machinery/airlock_sensor{ + id_tag = "tox_airlock_sensor"; + master_tag = "tox_airlock_control"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/engine, +/area/science/mixing) +"cJQ" = ( +/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; + sanitize_external = 1; + sensor_tag = "tox_airlock_sensor" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cJR" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "manual outlet valve" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cJS" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cJT" = ( +/obj/machinery/vending/snack/random, +/turf/open/floor/plasteel, +/area/science/mixing) +"cJU" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel, +/area/science/mixing) +"cJV" = ( +/obj/machinery/door/window/southleft{ + name = "Mass Driver Door"; + req_access_txt = "7" + }, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel, +/area/science/mixing) +"cJW" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cJX" = ( +/turf/open/floor/plating/airless, +/area/science/test_area) +"cJY" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cJZ" = ( +/turf/closed/wall, +/area/medical/virology) +"cKa" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/medical/virology) +"cKb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Test Subject Cell"; + req_access_txt = "39" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cKc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/medical/virology) +"cKd" = ( +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/structure/sign/warning/deathsposal{ + pixel_x = -30 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/virology) +"cKe" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 4 + }, +/area/medical/virology) +"cKf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/virology) +"cKg" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/virologist, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 1 + }, +/area/medical/virology) +"cKh" = ( +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/pen/red, +/obj/machinery/requests_console{ + department = "Virology"; + name = "Virology Requests Console"; + pixel_x = 29; + receive_ore_updates = 1 + }, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/structure/table/glass, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/virology) +"cKi" = ( +/turf/closed/wall/r_wall, +/area/maintenance/port/aft) +"cKj" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;5;39;6" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cKk" = ( +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/medical/medbay/aft) +"cKl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cKm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/medical/medbay/aft) +"cKn" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/medical/medbay/aft) +"cKo" = ( +/obj/item/device/healthanalyzer{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = -30 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/medbay/aft) +"cKp" = ( +/obj/machinery/vending/medical, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/medical/medbay/aft) +"cKq" = ( +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cKr" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cKs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cKt" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cKu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/centcom{ + name = "Morgue"; + opacity = 1; + req_access_txt = "6" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cKv" = ( +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cKw" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cKx" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cKy" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/departments/science{ + name = "\improper ROBOTICS!"; + pixel_x = 32 + }, +/turf/open/floor/plasteel/purple/corner{ + dir = 4 + }, +/area/hallway/primary/aft) +"cKz" = ( +/obj/structure/noticeboard{ + dir = 4; + pixel_x = -27 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/aug_manipulator, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cKA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cKB" = ( +/obj/effect/landmark/start/roboticist, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cKC" = ( +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cKD" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cKE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cKF" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 28; + pixel_y = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table, +/obj/item/wrench, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/obj/item/stack/cable_coil, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cKG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Research Division Hallway - Robotics"; + dir = 4; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cKH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cKI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/research) +"cKJ" = ( +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"cKK" = ( +/obj/machinery/door/airlock/research/glass{ + autoclose = 0; + frequency = 1449; + heat_proof = 1; + id_tag = "tox_airlock_exterior"; + locked = 1; + name = "Mixing Room Exterior Airlock"; + req_access_txt = "8" + }, +/turf/open/floor/engine, +/area/science/mixing) +"cKL" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{ + dir = 2; + frequency = 1449; + id = "tox_airlock_pump" + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/engine, +/area/science/mixing) +"cKM" = ( +/obj/machinery/door/airlock/research/glass{ + autoclose = 0; + frequency = 1449; + heat_proof = 1; + id_tag = "tox_airlock_interior"; + locked = 1; + name = "Mixing Room Interior Airlock"; + req_access_txt = "8" + }, +/turf/open/floor/engine, +/area/science/mixing) +"cKN" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Toxins - Mixing Area"; + dir = 8; + network = list("SS13","RD") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cKO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;47" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKP" = ( +/obj/machinery/mass_driver{ + dir = 4; + id = "toxinsdriver" + }, +/turf/open/floor/plating, +/area/science/mixing) +"cKQ" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/science/mixing) +"cKR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/mixing) +"cKS" = ( +/obj/machinery/door/poddoor{ + id = "toxinsdriver"; + name = "Toxins Launcher Bay Door" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/science/mixing) +"cKT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cKU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cKV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cKW" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cKX" = ( +/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. An external light is attached to the top."; + dir = 8; + invuln = 1; + light = null; + luminosity = 3; + name = "Hardened Bomb-Test Camera"; + network = list("Toxins"); + use_power = 0 + }, +/obj/item/target/alien/anchored, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless{ + luminosity = 2 + }, +/area/science/test_area) +"cKY" = ( +/turf/closed/indestructible{ + desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; + icon_state = "riveted"; + name = "hyper-reinforced wall" + }, +/area/science/test_area) +"cKZ" = ( +/obj/item/device/radio/intercom{ + pixel_x = -28 + }, +/obj/structure/table/glass, +/obj/item/hand_labeler, +/obj/item/device/radio/headset/headset_med, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/camera{ + c_tag = "Virology - Cells"; + dir = 4; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 9 + }, +/area/medical/virology) +"cLa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/virology) +"cLb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/virology) +"cLc" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/virology) +"cLd" = ( +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/machinery/light_switch{ + pixel_y = 26 + }, +/obj/item/wrench, +/obj/item/restraints/handcuffs, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 5 + }, +/area/medical/virology) +"cLe" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/virology) +"cLf" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/virology) +"cLg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cLh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cLi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cLj" = ( +/obj/machinery/computer/pandemic{ + layer = 2.5; + pixel_x = -4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/virology) +"cLk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"cLl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/virology) +"cLm" = ( +/obj/structure/sign/warning/biohazard{ + pixel_y = 32 + }, +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cLn" = ( +/obj/structure/sink{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cLo" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/machinery/shower{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cLp" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cLq" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/medbay/aft) +"cLr" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21"; + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 8 + }, +/area/medical/medbay/aft) +"cLs" = ( +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cLt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cLu" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/medical/medbay/aft) +"cLv" = ( +/obj/machinery/light/small, +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cLw" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cLx" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cLy" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light_switch{ + pixel_x = 23 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cLz" = ( +/obj/structure/closet, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cLA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/aft) +"cLB" = ( +/obj/machinery/computer/rdconsole/robotics{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Robotics"; + departmentType = 2; + name = "Robotics RC"; + pixel_x = -31; + receive_ore_updates = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cLC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cLD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cLE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/science/robotics/lab) "cLF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cLG" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cLH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cLI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cLJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/science/research) +"cLK" = ( +/obj/machinery/sparker{ + dir = 2; + id = "mixingsparker"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4; + frequency = 1441; + id = "air_in" + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"cLL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/warning/fire{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/engine, +/area/science/mixing) +"cLM" = ( +/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 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cLN" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "manual inlet valve" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cLO" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cLP" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cLQ" = ( +/obj/structure/closet/wardrobe/grey, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cLR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cLS" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/space/nearstation) +"cLT" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cLU" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cLV" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/pen/red, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/virology) +"cLW" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cLX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cLY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cLZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/virology) +"cMa" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Containment Cells"; + req_access_txt = "39" + }, +/turf/open/floor/plasteel/whitegreen, +/area/medical/virology) +"cMb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/virology) +"cMc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cMd" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/holopad, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cMe" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cMf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/virology) +"cMg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/virology{ + name = "Virology Access"; + req_access_txt = "39" + }, +/turf/open/floor/plasteel/whitegreen, +/area/medical/virology) +"cMh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/virology) +"cMi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cMj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/doorButtons/airlock_controller{ + idExterior = "virology_airlock_exterior"; + idSelf = "virology_airlock_control"; + idInterior = "virology_airlock_interior"; + name = "Virology Access Console"; + pixel_x = 26; + pixel_y = 26; + req_access_txt = "39" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/virology) +"cMk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + icon_state = "door_locked"; + id_tag = "virology_airlock_interior"; + locked = 1; + name = "Virology Interior Airlock"; + req_access_txt = "39" + }, +/turf/open/floor/plasteel/whitegreen, +/area/medical/virology) +"cMl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/doorButtons/access_button{ + idDoor = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -26; + pixel_y = 28; + req_access_txt = "39" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cMm" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cMn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cMo" = ( +/obj/machinery/doorButtons/access_button{ + idDoor = "virology_airlock_exterior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_y = 24; + req_access_txt = "39" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + icon_state = "door_locked"; + id_tag = "virology_airlock_exterior"; + locked = 1; + name = "Virology Exterior Airlock"; + req_access_txt = "39" + }, +/turf/open/floor/plasteel/whitegreen, +/area/medical/virology) +"cMp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cMq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/medbay/aft) +"cMr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + name = "Virology Access"; + req_access_txt = "39" + }, +/turf/open/floor/plasteel/whitegreen, +/area/medical/medbay/aft) +"cMs" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cMt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cMu" = ( +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cMv" = ( +/obj/machinery/door/airlock/abandoned{ + name = "Medical Surplus Storeroom"; + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cMw" = ( +/turf/open/floor/plasteel/floorgrime, +/area/maintenance/aft) +"cMx" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/storage/backpack/duffelbag/med, +/obj/item/device/flashlight/pen{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/floor/plasteel/floorgrime, +/area/maintenance/aft) +"cMy" = ( +/obj/structure/table, +/obj/item/retractor, +/obj/item/hemostat, +/obj/item/device/healthanalyzer, +/obj/item/clothing/glasses/eyepatch, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/floorgrime, +/area/maintenance/aft) +"cMz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance{ + name = "Morgue Maintenance"; + req_access_txt = "6" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cMA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/aft) +"cMB" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/rnd/circuit_imprinter, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cMC" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cMD" = ( +/obj/effect/landmark/start/roboticist, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cME" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cMF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/rack, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/device/healthanalyzer{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/device/healthanalyzer{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/device/healthanalyzer{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/device/radio/headset/headset_sci{ + pixel_x = -3 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cMG" = ( +/obj/effect/spawner/structure/window, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"cMH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"cMI" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cMJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 2 + }, +/area/science/research) +"cMK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM" + }, +/turf/closed/wall/r_wall, +/area/science/server) +"cML" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/server) +"cMM" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/closed/wall/r_wall, +/area/science/server) +"cMN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"cMO" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Toxins Lab Maintenance"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "toxins_blastdoor"; + name = "biohazard containment shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cMP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"cMQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cMR" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cMS" = ( +/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 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cMT" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cMU" = ( +/obj/item/device/flashlight/lamp, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cMV" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cMW" = ( +/obj/structure/cable, +/obj/machinery/power/tracker, +/turf/open/floor/plating/airless, +/area/solar/port/aft) +"cMX" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 10 + }, +/area/medical/virology) +"cMY" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/side, +/area/medical/virology) +"cMZ" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen/side, +/area/medical/virology) +"cNa" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/side, +/area/medical/virology) +"cNb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 6 + }, +/area/medical/virology) +"cNc" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/medical/virology) +"cNd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 10 + }, +/area/medical/virology) +"cNe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen/side, +/area/medical/virology) +"cNf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/side, +/area/medical/virology) +"cNg" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/whitegreen/side, +/area/medical/virology) +"cNh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/machinery/camera{ + c_tag = "Virology - Lab"; + dir = 8; + network = list("SS13","Medbay") + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/light_switch{ + pixel_x = 26 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 6 + }, +/area/medical/virology) +"cNi" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/virology) +"cNj" = ( +/obj/structure/closet/emcloset, +/obj/item/device/radio/intercom{ + pixel_x = -28 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cNk" = ( +/obj/machinery/camera{ + c_tag = "Virology - Airlock"; + dir = 1; + network = list("SS13","Medbay") + }, +/obj/machinery/light, +/obj/structure/closet/l3closet, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cNl" = ( +/obj/structure/closet/l3closet, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cNm" = ( +/obj/structure/sign/warning/biohazard{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cNn" = ( +/obj/machinery/camera{ + c_tag = "Virology - Entrance"; + dir = 8; + network = list("SS13","Medbay") + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/medbay/aft) +"cNo" = ( +/obj/structure/sign/warning/biohazard{ + pixel_x = -32 + }, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/storage/box/masks, +/obj/structure/table/glass, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 1 + }, +/area/medical/medbay/aft) +"cNp" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_y = -30 + }, +/obj/item/storage/box/beakers{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/bodybags, +/obj/structure/table/glass, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cNq" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/light, +/obj/item/hand_labeler, +/obj/item/pen, +/obj/item/pen, +/obj/structure/table/glass, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cNr" = ( +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/medical/medbay/aft) +"cNs" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel/floorgrime, +/area/maintenance/aft) +"cNt" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel/floorgrime, +/area/maintenance/aft) +"cNu" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/blood, +/obj/item/reagent_containers/blood, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/dropper, +/obj/structure/sign/warning/biohazard{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/floorgrime, +/area/maintenance/aft) +"cNv" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cNw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cNx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/aft) +"cNy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cNz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cNA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/aft) +"cNB" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cNC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/aft) +"cND" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cNE" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;5;39;6" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cNF" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/aft) +"cNG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cNH" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cNI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cNJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cNK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cNL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cNM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cNN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Robotics Lab"; + req_access_txt = "29"; + req_one_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/purple, +/area/science/robotics/lab) +"cNO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/research) +"cNP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"cNQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/science/research) +"cNR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Research Division Server Room"; + req_access = null; + req_access_txt = "30" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cNS" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cNT" = ( +/obj/machinery/camera{ + c_tag = "Research Division - Server Room"; + dir = 2; + network = list("SS13","RD"); + pixel_x = 22 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Research Division Server Room APC"; + areastring = "/area/science/server"; + pixel_y = 25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cNU" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + target_temperature = 80; + dir = 2; + on = 1 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cNV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/science/server) +"cNW" = ( +/obj/machinery/rnd/server, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"cNX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + external_pressure_bound = 140; + name = "server vent"; + pressure_checks = 0 + }, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"cNY" = ( +/turf/closed/wall/r_wall, +/area/science/server) +"cNZ" = ( +/obj/structure/closet, +/obj/item/storage/box/lights/mixed, +/obj/item/device/flashlight, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cOa" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cOb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/biohazard{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cOc" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cOd" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cOe" = ( +/obj/machinery/power/apc/highcap/five_k{ + dir = 2; + name = "Starboard Quarter Maintenance APC"; + areastring = "/area/maintenance/starboard/aft"; + pixel_y = -24 + }, +/obj/structure/cable/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cOf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cOg" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/item/target, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/science/test_area) +"cOh" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/medical/virology) +"cOi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation B"; + req_access_txt = "39" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cOj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation A"; + req_access_txt = "39" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cOk" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/medical/virology) +"cOl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/closed/wall, +/area/medical/virology) +"cOm" = ( +/obj/structure/closet/wardrobe/virology_white, +/obj/item/storage/backpack/satchel/vir, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/turf/open/floor/plasteel/vault, +/area/medical/virology) +"cOn" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/blood, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood/AMinus, +/obj/item/reagent_containers/blood/BMinus{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/blood/BPlus{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OPlus{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/turf/open/floor/plasteel/vault, +/area/medical/virology) +"cOo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/vault, +/area/medical/virology) +"cOp" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/plasteel/vault, +/area/medical/virology) +"cOq" = ( +/obj/structure/closet/l3closet/virology, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/vault, +/area/medical/virology) +"cOr" = ( +/obj/structure/sign/warning/biohazard{ + pixel_x = -32 + }, +/turf/open/space, +/area/space/nearstation) +"cOs" = ( +/turf/closed/wall/r_wall, +/area/maintenance/aft) +"cOt" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;5;39;6" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cOu" = ( +/obj/structure/bed/roller, +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/floorgrime, +/area/maintenance/aft) +"cOv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plating, +/area/maintenance/aft) +"cOw" = ( +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/structure/rack, +/obj/item/clothing/suit/toggle/labcoat, +/obj/item/clothing/suit/apron/surgical, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/mask/breath/medical, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/aft) +"cOx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cOy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/escape{ + dir = 2 + }, +/area/hallway/primary/aft) +"cOz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/escape{ + dir = 2 + }, +/area/hallway/primary/aft) +"cOA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway - Aft"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel/escape{ + dir = 2 + }, +/area/hallway/primary/aft) +"cOB" = ( +/obj/structure/sign/directions/evac, +/turf/closed/wall/r_wall, +/area/hallway/primary/aft) +"cOC" = ( +/obj/structure/table, +/obj/item/circular_saw, +/obj/item/scalpel{ + pixel_y = 12 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/item/razor{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/robotics/lab) +"cOD" = ( +/obj/effect/landmark/start/roboticist, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"cOE" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"cOF" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/surgical_drapes, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/robotics/lab) +"cOG" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cOH" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table, +/obj/item/storage/box/bodybags{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/borg/upgrade/rename, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cOI" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/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/item/device/multitool{ + pixel_x = 3 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cOJ" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/science/robotics/lab) +"cOK" = ( +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"cOL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"cOM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/science/research) +"cON" = ( +/turf/closed/wall, +/area/science/server) +"cOO" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cOP" = ( +/obj/structure/chair/office/light, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cOQ" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cOR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Server Access"; + req_access_txt = "30" + }, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cOS" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/telecomms/server/walkway, +/area/science/server) +"cOT" = ( +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/manifold{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/airalarm/server{ + dir = 8; + pixel_x = 22 + }, +/turf/open/floor/plasteel/dark/telecomms/server/walkway, +/area/science/server) +"cOU" = ( +/obj/item/storage/box, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cOV" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/sunglasses, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cOW" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/solar{ + id = "aftstarboard"; + name = "Aft-Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard/aft) +"cOX" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/space, +/area/solar/starboard/aft) +"cOY" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/solar{ + id = "aftstarboard"; + name = "Aft-Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard/aft) +"cOZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/bedsheet/medical, +/obj/structure/bed, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cPa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cPb" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/bedsheet/medical, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cPc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/medical/virology) +"cPd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/virology{ + name = "Break Room"; + req_access_txt = "39" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen, +/area/medical/virology) +"cPe" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/aft) +"cPf" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/aft) +"cPg" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cPh" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/aft) +"cPi" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cPj" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cPk" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/stack/ore/slag, +/turf/open/floor/plating, +/area/maintenance/aft) +"cPl" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/aft) +"cPm" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/aft) +"cPn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/wrench, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cPo" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/aft) +"cPp" = ( +/obj/structure/rack, +/obj/item/screwdriver{ + pixel_y = 6 + }, +/obj/item/crowbar, +/obj/item/storage/pill_bottle, +/turf/open/floor/plating, +/area/maintenance/aft) +"cPq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/item/cigbutt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/aft) +"cPr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cPs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Medical Surplus Storeroom"; + req_access_txt = "12"; + req_one_access_txt = "0" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cPt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cPu" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/vault, +/area/hallway/secondary/exit/departure_lounge) +"cPv" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/vault, +/area/hallway/secondary/exit/departure_lounge) +"cPw" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plasteel/vault, +/area/hallway/secondary/exit/departure_lounge) +"cPx" = ( +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"cPy" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault, +/area/hallway/secondary/exit/departure_lounge) +"cPz" = ( +/obj/machinery/vending/coffee, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault, +/area/hallway/secondary/exit/departure_lounge) +"cPA" = ( +/obj/machinery/vending/snack/random, +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault, +/area/hallway/secondary/exit/departure_lounge) +"cPB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"cPC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cPD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/secondary/exit/departure_lounge) +"cPE" = ( +/obj/structure/table, +/obj/item/retractor, +/obj/item/hemostat, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -29 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/science/robotics/lab) +"cPF" = ( +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/machinery/camera{ + c_tag = "Robotics - Aft"; + dir = 1; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/robotics/lab) +"cPG" = ( +/obj/machinery/computer/operating{ + dir = 1; + name = "Robotics Operating Computer" + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/robotics/lab) +"cPH" = ( +/obj/structure/table, +/obj/item/device/mmi, +/obj/item/device/mmi, +/obj/item/device/mmi, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/science/robotics/lab) +"cPI" = ( +/obj/machinery/door/window/eastleft{ + dir = 1; + name = "Robotics Deliveries"; + req_access_txt = "29" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cPJ" = ( +/obj/structure/closet/wardrobe/robotics_black{ + pixel_x = 2 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cPK" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/crowbar, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cPL" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 2 + }, +/area/science/research) +"cPM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 2 + }, +/area/science/research) +"cPN" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"cPO" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cPP" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/machinery/computer/rdservercontrol{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cPQ" = ( +/obj/structure/table, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cPR" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/server) +"cPS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 1; + external_pressure_bound = 120; + name = "server vent" + }, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"cPT" = ( +/obj/structure/easel, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cPU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/aft) +"cPV" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/costume, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cPW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cPX" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/science, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cPY" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cPZ" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cQa" = ( +/obj/structure/closet/crate, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cQb" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space, +/area/solar/starboard/aft) +"cQc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cQd" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cQe" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cQf" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cQg" = ( +/obj/structure/table/glass, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/paper, +/obj/item/pen/red, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 9 + }, +/area/medical/virology) +"cQh" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 29 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/virology) +"cQi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/virology) +"cQj" = ( +/obj/structure/table/glass, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/light_switch{ + pixel_y = 26 + }, +/obj/machinery/camera{ + c_tag = "Virology - Break Room"; + dir = 2; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/virology) +"cQk" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/structure/table/glass, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 5 + }, +/area/medical/virology) +"cQl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/aft) +"cQm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/aft) +"cQn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/aft) +"cQo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cQp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 17 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/aft) +"cQq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cQr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/grille, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/aft) +"cQs" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cQt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"cQu" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cQv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cQw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cQx" = ( +/obj/machinery/power/apc/highcap/five_k{ + dir = 1; + name = "Departure Lounge APC"; + areastring = "/area/hallway/secondary/exit/departure_lounge"; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cQy" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cQz" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cQA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cQB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cQC" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cQD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cQE" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cQF" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Robotics" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cQG" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Robotics Maintenance"; + req_access_txt = "29" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cQH" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/science/research) +"cQI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitepurple{ + dir = 4 + }, +/area/science/research) +"cQJ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cQK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/abandoned{ + locked = 0; + name = "Storage Room"; + req_access_txt = "0"; + req_one_access_txt = "12;47" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cQL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cQM" = ( +/obj/item/storage/box/lights/mixed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cQN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"cQO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cQP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"cQQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cQR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cQS" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cQT" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"cQU" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/glass/beaker, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cQV" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_y = 4 + }, +/obj/item/pen/red, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cQW" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/closed/wall, +/area/medical/virology) +"cQX" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/virology) +"cQY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cQZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cRa" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cRb" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/virology) +"cRc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/medical/virology) +"cRd" = ( +/turf/closed/wall, +/area/chapel/office) +"cRe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/maintenance{ + name = "Crematorium Maintenance"; + req_access_txt = "0"; + req_one_access_txt = "27" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cRf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + name = "Chapel Office Maintenance"; + req_access_txt = "0"; + req_one_access_txt = "22" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cRg" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cRh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cRi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cRj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/aft) +"cRk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cRl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/aft) +"cRm" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cRn" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;5;39;6" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cRo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cRp" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cRq" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=10-Aft-To-Central"; + location = "9.4-Escape-4" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cRr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cRs" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cRt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cRu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cRv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cRw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cRx" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cRy" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;47" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cRz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cRA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"cRB" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cRC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cRD" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cRE" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cRF" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Research Division Hallway - Xenobiology Lab Access"; + dir = 2; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/xenobiology) +"cRG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/xenobiology) +"cRH" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/xenobiology) +"cRI" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cRJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cRK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cRL" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -68881,14 +72993,43 @@ icon_state = "platingdmg2" }, /area/maintenance/starboard/aft) -"cLH" = ( +"cRM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cRN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cRO" = ( /obj/machinery/space_heater, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cLJ" = ( +"cRP" = ( +/obj/structure/closet/crate, +/obj/item/poster/random_official, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cRQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/closet, /obj/item/storage/box/lights/mixed, @@ -68897,44 +73038,42 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cLK" = ( -/obj/machinery/power/smes, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cLL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ +"cRR" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 }, /turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cLM" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Starboard Quarter Solar APC"; - areastring = "/area/maintenance/solars/starboard/aft"; - pixel_y = 24 - }, +/area/maintenance/starboard/aft) +"cRS" = ( /obj/structure/cable/yellow{ - icon_state = "0-8" + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 }, /turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cLN" = ( +/area/maintenance/starboard/aft) +"cRT" = ( +/obj/structure/closet, +/obj/item/device/flashlight, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cRU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/medical/virology) +"cRV" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment, /turf/closed/wall/r_wall, /area/medical/virology) -"cLO" = ( +"cRW" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -23 @@ -68946,13 +73085,13 @@ dir = 10 }, /area/medical/virology) -"cLP" = ( +"cRX" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, /turf/open/floor/plasteel/whitegreen/side, /area/medical/virology) -"cLQ" = ( +"cRY" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -68962,11 +73101,11 @@ }, /turf/open/floor/plasteel/whitegreen/side, /area/medical/virology) -"cLR" = ( +"cRZ" = ( /obj/structure/chair/stool, /turf/open/floor/plasteel/whitegreen/side, /area/medical/virology) -"cLS" = ( +"cSa" = ( /obj/structure/chair/stool, /obj/machinery/firealarm{ dir = 4; @@ -68976,17 +73115,21 @@ dir = 6 }, /area/medical/virology) -"cLT" = ( -/obj/structure/bodycontainer/crematorium, +"cSb" = ( /obj/effect/decal/cleanable/cobweb, +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cLU" = ( -/obj/effect/landmark/blobstart, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/engine, -/area/science/explab) -"cLV" = ( +"cSc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"cSd" = ( /obj/item/device/radio/intercom{ pixel_y = 25 }, @@ -69003,7 +73146,7 @@ /obj/item/clothing/under/burial, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cLW" = ( +"cSe" = ( /obj/machinery/requests_console{ department = "Chapel"; departmentType = 2; @@ -69014,7 +73157,7 @@ }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cLX" = ( +"cSf" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -69026,13 +73169,13 @@ }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cLY" = ( +"cSg" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cLZ" = ( +"cSh" = ( /obj/machinery/door/morgue{ name = "Relic Closet"; req_access_txt = "22" @@ -69041,7 +73184,7 @@ dir = 2 }, /area/chapel/office) -"cMa" = ( +"cSi" = ( /obj/structure/table/wood, /obj/item/spellbook/oneuse/smoke/lesser{ name = "mysterious old book of " @@ -69056,12 +73199,11 @@ }, /obj/item/organ/heart, /obj/item/device/soulstone/anybody/chaplain, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/cult{ dir = 2 }, /area/chapel/office) -"cMb" = ( +"cSj" = ( /obj/machinery/door/airlock/maintenance{ name = "Chapel Maintenance"; req_access_txt = "0"; @@ -69073,32 +73215,52 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/aft) -"cMd" = ( +"cSk" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Departure Lounge - Port Fore"; + dir = 4; + network = list("SS13") + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-24" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cSl" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cMe" = ( +"cSm" = ( /obj/effect/turf_decal/stripes/corner{ dir = 2 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cMf" = ( +"cSn" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cMg" = ( +"cSo" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cMh" = ( +"cSp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cMi" = ( +"cSq" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -69109,7 +73271,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cMj" = ( +"cSr" = ( /obj/machinery/light{ dir = 4 }, @@ -69129,18 +73291,20 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cMk" = ( -/obj/machinery/power/apc/highcap/five_k{ - dir = 2; - name = "Aft Maintenance APC"; - areastring = "/area/maintenance/aft"; - pixel_y = -24 +"cSs" = ( +/obj/machinery/light/small{ + dir = 8 }, -/obj/structure/cable/yellow, -/obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/aft) -"cMl" = ( +"cSt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cSu" = ( /obj/structure/table, /obj/item/stack/sheet/glass/fifty{ pixel_x = 3; @@ -69149,83 +73313,79 @@ /obj/item/stack/sheet/metal/fifty, /turf/open/floor/plating, /area/maintenance/aft) -"cMm" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 +"cSv" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xeno_blastdoor"; + name = "biohazard containment door" }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSw" = ( /obj/structure/cable/yellow{ - icon_state = "2-4" + icon_state = "1-2" }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno_blastdoor"; + name = "biohazard containment door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSx" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno_blastdoor"; + name = "biohazard containment door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSy" = ( +/obj/machinery/space_heater, /turf/open/floor/plating, -/area/maintenance/port/aft) -"cMo" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cMp" = ( +/area/maintenance/starboard/aft) +"cSz" = ( /obj/structure/chair, /obj/item/cigbutt, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cMq" = ( -/obj/machinery/power/terminal{ - dir = 1 +"cSA" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/aft) +"cSB" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/aft) +"cSC" = ( +/obj/machinery/door/airlock/engineering{ + name = "Starboard Quarter Solar Access"; + req_access_txt = "10" }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/camera{ - c_tag = "Aft Starboard Solar Maintenance"; - dir = 4; - network = list("SS13") +/obj/structure/cable/yellow{ + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) -"cMr" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/solars/starboard/aft) -"cMs" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cMt" = ( +"cSD" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, /turf/open/floor/plating/airless, /area/space/nearstation) -"cMu" = ( +"cSE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/airless, /area/space/nearstation) -"cMv" = ( +"cSF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -69234,7 +73394,7 @@ }, /turf/open/floor/plating/airless, /area/medical/virology) -"cMw" = ( +"cSG" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 @@ -69247,7 +73407,7 @@ }, /turf/open/floor/plating, /area/medical/virology) -"cMx" = ( +"cSH" = ( /obj/machinery/atmospherics/components/unary/tank/air{ dir = 1 }, @@ -69256,7 +73416,7 @@ }, /turf/open/floor/plasteel/vault, /area/medical/virology) -"cMy" = ( +"cSI" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1; name = "virology air connector port" @@ -69267,7 +73427,7 @@ }, /turf/open/floor/plasteel/vault, /area/medical/virology) -"cMz" = ( +"cSJ" = ( /obj/item/trash/popcorn, /obj/structure/table/glass, /obj/structure/cable/yellow{ @@ -69275,28 +73435,25 @@ }, /turf/open/floor/plasteel/vault, /area/medical/virology) -"cMA" = ( +"cSK" = ( /obj/item/reagent_containers/food/snacks/sosjerky, /obj/structure/table/glass, /turf/open/floor/plasteel/vault, /area/medical/virology) -"cMB" = ( +"cSL" = ( /obj/item/trash/cheesie{ pixel_y = 4 }, /obj/structure/table/glass, /turf/open/floor/plasteel/vault, /area/medical/virology) -"cMC" = ( +"cSM" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, -/obj/machinery/button/crematorium{ - pixel_x = -25 - }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cMD" = ( +"cSN" = ( /obj/machinery/light/small{ dir = 4 }, @@ -69306,7 +73463,7 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cME" = ( +"cSO" = ( /obj/item/device/flashlight/lamp, /obj/machinery/newscaster{ pixel_x = -30 @@ -69314,13 +73471,13 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cMF" = ( +"cSP" = ( /obj/structure/chair, /obj/effect/landmark/start/chaplain, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cMG" = ( +"cSQ" = ( /obj/item/paper_bin{ pixel_x = -2; pixel_y = 8 @@ -69333,7 +73490,7 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cMH" = ( +"cSR" = ( /obj/machinery/light/small{ dir = 4 }, @@ -69342,10 +73499,10 @@ }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cMI" = ( +"cSS" = ( /turf/closed/wall, /area/chapel/main) -"cMJ" = ( +"cST" = ( /obj/item/candle, /obj/machinery/light_switch{ pixel_x = -27 @@ -69354,7 +73511,7 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cMK" = ( +"cSU" = ( /obj/item/storage/book/bible, /obj/machinery/light/small{ dir = 1 @@ -69370,7 +73527,7 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cML" = ( +"cSV" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/snacks/grown/poppy{ pixel_y = 2 @@ -69389,14 +73546,14 @@ }, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cMM" = ( +"cSW" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cMN" = ( +"cSX" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/snacks/grown/harebell, /obj/item/reagent_containers/food/snacks/grown/harebell, @@ -69405,7 +73562,7 @@ /obj/item/reagent_containers/food/snacks/grown/harebell, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cMO" = ( +"cSY" = ( /obj/item/paper_bin{ pixel_x = -2; pixel_y = 8 @@ -69419,7 +73576,7 @@ }, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cMP" = ( +"cSZ" = ( /obj/item/candle, /obj/machinery/light_switch{ pixel_y = 25 @@ -69428,24 +73585,13 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cMQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/hallway/primary/central) -"cMR" = ( +"cTa" = ( /obj/structure/table, /obj/item/candle, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cMS" = ( +"cTb" = ( /obj/structure/chair{ dir = 4 }, @@ -69455,7 +73601,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cMT" = ( +"cTc" = ( /obj/structure/chair{ dir = 8 }, @@ -69464,13 +73610,13 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cMU" = ( +"cTd" = ( /obj/machinery/status_display{ layer = 4 }, /turf/closed/wall, /area/hallway/secondary/exit/departure_lounge) -"cMV" = ( +"cTe" = ( /obj/structure/chair{ dir = 4 }, @@ -69479,14 +73625,14 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cMW" = ( +"cTf" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cMX" = ( +"cTg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -69496,7 +73642,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cMY" = ( +"cTh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -69505,7 +73651,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cMZ" = ( +"cTi" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/westleft{ base_state = "right"; @@ -69526,7 +73672,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cNa" = ( +"cTj" = ( /obj/structure/chair/office/dark{ dir = 8 }, @@ -69543,7 +73689,7 @@ dir = 9 }, /area/hallway/secondary/exit/departure_lounge) -"cNb" = ( +"cTk" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -69554,7 +73700,7 @@ dir = 1 }, /area/hallway/secondary/exit/departure_lounge) -"cNc" = ( +"cTl" = ( /obj/structure/chair, /obj/structure/sign/map/left{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; @@ -69565,7 +73711,7 @@ dir = 1 }, /area/hallway/secondary/exit/departure_lounge) -"cNd" = ( +"cTm" = ( /obj/structure/table, /obj/machinery/recharger{ pixel_y = 4 @@ -69583,48 +73729,52 @@ dir = 5 }, /area/hallway/secondary/exit/departure_lounge) -"cNe" = ( -/obj/machinery/door/airlock/external{ - name = "Auxiliary Escape Airlock" - }, +"cTn" = ( +/obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/aft) -"cNf" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 +"cTo" = ( +/obj/machinery/power/apc/highcap/five_k{ + dir = 2; + name = "Aft Maintenance APC"; + areastring = "/area/maintenance/aft"; + pixel_y = -24 }, +/obj/structure/cable/yellow, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/aft) +"cTp" = ( +/obj/machinery/droneDispenser, +/turf/open/floor/plating, +/area/maintenance/aft) +"cTq" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall, +/area/science/xenobiology) +"cTr" = ( /obj/structure/cable/yellow{ - icon_state = "1-8" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "47" }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cNg" = ( -/obj/structure/rack, -/obj/item/device/flashlight, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cNh" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 +/turf/open/floor/plasteel/whitepurple{ + dir = 4 }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/aft) -"cNi" = ( +/area/science/xenobiology) +"cTs" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/science/xenobiology) +"cTt" = ( /obj/machinery/biogenerator, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cNj" = ( +"cTu" = ( /obj/item/reagent_containers/food/snacks/grown/banana, /obj/item/reagent_containers/food/snacks/grown/banana, /obj/item/reagent_containers/food/snacks/grown/wheat, @@ -69644,7 +73794,7 @@ /obj/item/seeds/cannabis/rainbow, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cNk" = ( +"cTv" = ( /obj/item/storage/bag/plants/portaseeder, /obj/item/storage/bag/plants/portaseeder, /obj/item/device/plant_analyzer, @@ -69659,7 +73809,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cNl" = ( +"cTw" = ( /obj/machinery/hydroponics/soil{ pixel_y = 8 }, @@ -69668,22 +73818,19 @@ /obj/item/seeds/cannabis/white, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cNm" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 +"cTx" = ( +/obj/machinery/hydroponics/soil{ + pixel_y = 8 }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 +/obj/item/seeds/glowshroom, +/obj/item/seeds/corn, +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 }, /turf/open/floor/plating, -/area/maintenance/port/aft) -"cNn" = ( +/area/maintenance/starboard/aft) +"cTy" = ( /obj/machinery/hydroponics/soil{ pixel_y = 8 }, @@ -69691,57 +73838,69 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cNo" = ( -/obj/structure/cable{ - icon_state = "1-4" +"cTz" = ( +/obj/machinery/power/smes, +/obj/structure/cable/yellow{ + icon_state = "0-4" }, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) -"cNp" = ( -/obj/structure/cable{ +"cTA" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) -"cNq" = ( -/obj/machinery/power/solar_control{ - dir = 8; - id = "aftstarboard"; - name = "Starboard Quarter Solar Control"; - track = 0 +"cTB" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Starboard Quarter Solar APC"; + areastring = "/area/maintenance/solars/starboard/aft"; + pixel_y = 24 }, -/obj/structure/cable, -/obj/structure/cable{ +/obj/structure/cable/yellow{ icon_state = "0-8" }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_y = -32 - }, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) -"cNr" = ( +"cTC" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cTD" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space, +/area/solar/starboard/aft) +"cTE" = ( /obj/structure/disposaloutlet, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/open/floor/plating/airless, /area/space/nearstation) -"cNs" = ( +"cTF" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 1 }, /turf/open/floor/plating/airless, /area/medical/virology) -"cNt" = ( -/obj/structure/bodycontainer/morgue, +"cTG" = ( +/obj/machinery/button/crematorium{ + id = "crematoriumChapel"; + pixel_x = -26; + req_access_txt = "27" + }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cNu" = ( +"cTH" = ( /obj/machinery/camera{ c_tag = "Chapel Office - Backroom"; dir = 8; @@ -69754,7 +73913,7 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cNv" = ( +"cTI" = ( /obj/item/storage/crayons, /obj/machinery/light/small{ dir = 8 @@ -69762,19 +73921,15 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cNw" = ( -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" +"cTJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table/wood, +/obj/item/folder{ + pixel_y = 2 }, -/obj/machinery/power/compressor{ - comp_id = "incineratorturbine"; - dir = 1; - luminosity = 2 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cNx" = ( +/turf/open/floor/plasteel/grimy, +/area/chapel/office) +"cTK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -69785,10 +73940,10 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cNy" = ( +"cTL" = ( /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cNz" = ( +"cTM" = ( /obj/item/device/radio/intercom{ broadcasting = 1; frequency = 1480; @@ -69798,31 +73953,31 @@ /obj/structure/chair, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cNA" = ( +"cTN" = ( /obj/machinery/door/morgue{ name = "Confession Booth" }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cNB" = ( +"cTO" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/carpet, /area/chapel/main) -"cNC" = ( +"cTP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/carpet, /area/chapel/main) -"cND" = ( +"cTQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/carpet, /area/chapel/main) -"cNE" = ( +"cTR" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -69831,7 +73986,7 @@ }, /turf/open/floor/carpet, /area/chapel/main) -"cNF" = ( +"cTS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -69840,7 +73995,7 @@ }, /turf/open/floor/carpet, /area/chapel/main) -"cNG" = ( +"cTT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -69849,7 +74004,7 @@ }, /turf/open/floor/carpet, /area/chapel/main) -"cNH" = ( +"cTU" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -69862,7 +74017,7 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cNI" = ( +"cTV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -69874,7 +74029,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cNJ" = ( +"cTW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -69886,7 +74041,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cNK" = ( +"cTX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -69895,7 +74050,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cNL" = ( +"cTY" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -69904,11 +74059,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cNM" = ( -/obj/effect/landmark/lightsout, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cNN" = ( +"cTZ" = ( /obj/structure/flora/ausbushes/fernybush, /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/ppflowers, @@ -69916,21 +74067,21 @@ /obj/structure/window/reinforced/fulltile, /turf/open/floor/grass, /area/hallway/secondary/exit/departure_lounge) -"cNO" = ( +"cUa" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cNP" = ( +"cUb" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" }, /turf/open/floor/plating, /area/hallway/secondary/exit/departure_lounge) -"cNQ" = ( +"cUc" = ( /obj/machinery/computer/secure_data{ dir = 4 }, @@ -69941,13 +74092,13 @@ dir = 8 }, /area/hallway/secondary/exit/departure_lounge) -"cNR" = ( +"cUd" = ( /obj/structure/chair/office/dark{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cNS" = ( +"cUe" = ( /obj/structure/table, /obj/item/folder/red{ pixel_x = 3 @@ -69970,23 +74121,28 @@ dir = 4 }, /area/hallway/secondary/exit/departure_lounge) -"cNT" = ( -/obj/structure/sign/vacuum{ - pixel_x = 32 +"cUf" = ( +/obj/machinery/door/airlock/external{ + name = "Auxiliary Escape Airlock" }, -/obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/aft) -"cNU" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +"cUg" = ( +/turf/closed/wall, +/area/science/xenobiology) +"cUh" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/xenobiology) +"cUi" = ( +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/maintenance/port/aft) -"cNW" = ( +/area/science/xenobiology) +"cUj" = ( /obj/structure/sink/kitchen{ desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; @@ -69999,42 +74155,140 @@ icon_state = "platingdmg3" }, /area/maintenance/starboard/aft) -"cNX" = ( +"cUk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cUl" = ( /obj/item/seeds/watermelon, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cNY" = ( +"cUm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/grille, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cNZ" = ( +"cUn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /obj/structure/chair, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cOa" = ( -/obj/structure/cable, -/obj/machinery/power/turbine{ - luminosity = 2 +"cUo" = ( +/obj/machinery/power/terminal{ + dir = 1 }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cOb" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/camera{ + c_tag = "Aft Starboard Solar Maintenance"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cUp" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/solars/starboard/aft) +"cUq" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cUr" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cUs" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cUt" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space, +/area/solar/starboard/aft) +"cUu" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/space, +/area/solar/starboard/aft) +"cUv" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/aft) +"cUw" = ( +/obj/structure/lattice/catwalk, +/obj/item/stack/cable_coil, +/turf/open/space, +/area/solar/starboard/aft) +"cUx" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/space, +/area/solar/starboard/aft) +"cUy" = ( +/obj/machinery/power/tracker, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating/airless, +/area/solar/starboard/aft) +"cUz" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"cUA" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /obj/effect/landmark/xeno_spawn, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cOc" = ( +"cUB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -70045,20 +74299,20 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cOd" = ( +"cUC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cOe" = ( +"cUD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cOf" = ( +"cUE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -70068,7 +74322,7 @@ }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cOg" = ( +"cUF" = ( /obj/machinery/light_switch{ pixel_x = 28 }, @@ -70085,11 +74339,11 @@ }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cOh" = ( +"cUG" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cOi" = ( +"cUH" = ( /obj/structure/cable/yellow{ icon_state = "0-4" }, @@ -70101,13 +74355,13 @@ }, /turf/open/floor/carpet, /area/chapel/main) -"cOj" = ( +"cUI" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/carpet, /area/chapel/main) -"cOk" = ( +"cUJ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -70117,7 +74371,7 @@ /obj/effect/landmark/xmastree, /turf/open/floor/carpet, /area/chapel/main) -"cOl" = ( +"cUK" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -70126,14 +74380,14 @@ }, /turf/open/floor/carpet, /area/chapel/main) -"cOm" = ( +"cUL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/chapel/main) -"cOn" = ( +"cUM" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -70143,7 +74397,7 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cOo" = ( +"cUN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -70152,7 +74406,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cOp" = ( +"cUO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -70161,23 +74415,23 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cOq" = ( +"cUP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cOr" = ( +"cUQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cOs" = ( +"cUR" = ( /obj/machinery/ai_status_display, /turf/closed/wall, /area/hallway/secondary/exit/departure_lounge) -"cOt" = ( +"cUS" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -70186,7 +74440,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cOu" = ( +"cUT" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -70198,7 +74452,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cOv" = ( +"cUU" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Departure Lounge Security Post"; @@ -70212,7 +74466,7 @@ }, /turf/open/floor/plasteel/red, /area/hallway/secondary/exit/departure_lounge) -"cOw" = ( +"cUV" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -70230,13 +74484,13 @@ dir = 10 }, /area/hallway/secondary/exit/departure_lounge) -"cOx" = ( +"cUW" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, /turf/open/floor/plasteel/red/side, /area/hallway/secondary/exit/departure_lounge) -"cOy" = ( +"cUX" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -70245,7 +74499,7 @@ /obj/item/pen, /turf/open/floor/plasteel/red/side, /area/hallway/secondary/exit/departure_lounge) -"cOz" = ( +"cUY" = ( /obj/structure/table, /obj/machinery/newscaster/security_unit{ pixel_x = 29; @@ -70273,44 +74527,96 @@ dir = 6 }, /area/hallway/secondary/exit/departure_lounge) -"cOA" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/glasses/sunglasses, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/light/small{ - dir = 4 +"cUZ" = ( +/obj/structure/sign/warning/vacuum{ + pixel_x = 32 }, +/obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOB" = ( +/area/maintenance/aft) +"cVa" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cVb" = ( /obj/item/seeds/sunflower/moonflower, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cOC" = ( +"cVc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cOD" = ( +"cVd" = ( /obj/item/seeds/berry, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cOE" = ( +"cVe" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"cVf" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/reagent_containers/glass/bucket, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cOF" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 +"cVg" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cVh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cVi" = ( +/obj/machinery/power/solar_control{ + dir = 8; + id = "aftstarboard"; + name = "Starboard Quarter Solar Control"; + track = 0 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cVj" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/space, +/area/solar/starboard/aft) +"cVk" = ( +/obj/structure/bodycontainer/crematorium{ + id = "crematoriumChapel"; + dir = 1 }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cOG" = ( +"cVl" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"cVm" = ( /obj/structure/closet/wardrobe/chaplain_black, /obj/machinery/airalarm{ dir = 4; @@ -70318,14 +74624,14 @@ }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cOH" = ( +"cVn" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cOI" = ( +"cVo" = ( /obj/machinery/power/apc{ dir = 2; lighting = 3; @@ -70340,20 +74646,20 @@ /obj/structure/cable/yellow, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cOJ" = ( +"cVp" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cOK" = ( +"cVq" = ( /obj/machinery/door/morgue{ name = "Confession Booth (Chaplain)"; req_access_txt = "22" }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cOL" = ( +"cVr" = ( /obj/item/device/radio/intercom{ broadcasting = 1; frequency = 1480; @@ -70366,58 +74672,58 @@ /obj/effect/landmark/start/chaplain, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cOM" = ( +"cVs" = ( /turf/open/floor/plasteel/chapel{ dir = 4 }, /area/chapel/main) -"cON" = ( +"cVt" = ( /obj/structure/chair/stool, /turf/open/floor/plasteel/chapel{ dir = 1 }, /area/chapel/main) -"cOO" = ( +"cVu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/chair/stool, /turf/open/floor/plasteel/chapel{ dir = 4 }, /area/chapel/main) -"cOP" = ( +"cVv" = ( /turf/open/floor/plasteel/dark, /area/chapel/main) -"cOQ" = ( +"cVw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/chair/stool, /turf/open/floor/plasteel/chapel{ dir = 1 }, /area/chapel/main) -"cOR" = ( +"cVx" = ( /obj/structure/chair/stool, /turf/open/floor/plasteel/chapel{ dir = 4 }, /area/chapel/main) -"cOS" = ( +"cVy" = ( /turf/open/floor/plasteel/chapel{ dir = 1 }, /area/chapel/main) -"cOT" = ( +"cVz" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cOU" = ( +"cVA" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cOV" = ( +"cVB" = ( /obj/structure/chair{ dir = 8 }, @@ -70429,7 +74735,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cOW" = ( +"cVC" = ( /obj/structure/flora/ausbushes/fernybush, /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/brflowers, @@ -70440,7 +74746,7 @@ /obj/structure/window/reinforced/fulltile, /turf/open/floor/grass, /area/hallway/secondary/exit/departure_lounge) -"cOX" = ( +"cVD" = ( /obj/structure/chair{ dir = 4 }, @@ -70452,24 +74758,24 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cOY" = ( +"cVE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cOZ" = ( +"cVF" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cPa" = ( +"cVG" = ( /obj/structure/chair{ dir = 8 }, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_x = 32 }, /obj/effect/turf_decal/stripes/line{ @@ -70477,10 +74783,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cPb" = ( -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"cPc" = ( +"cVH" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/structure/cable/yellow{ @@ -70488,24 +74791,23 @@ }, /turf/open/floor/plating, /area/hallway/secondary/exit/departure_lounge) -"cPd" = ( +"cVI" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/open/floor/plating, /area/hallway/secondary/exit/departure_lounge) -"cPe" = ( +"cVJ" = ( /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +/obj/machinery/light/small{ + dir = 8 }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPf" = ( +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cVK" = ( /obj/machinery/hydroponics/soil{ pixel_y = 8 }, @@ -70516,7 +74818,7 @@ /obj/item/seeds/cannabis/ultimate, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cPg" = ( +"cVL" = ( /obj/machinery/hydroponics/soil{ pixel_y = 8 }, @@ -70526,7 +74828,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cPh" = ( +"cVM" = ( /obj/machinery/hydroponics/soil{ pixel_y = 8 }, @@ -70536,7 +74838,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cPi" = ( +"cVN" = ( /obj/machinery/hydroponics/soil{ pixel_y = 8 }, @@ -70547,7 +74849,7 @@ /obj/item/seeds/cannabis, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cPj" = ( +"cVO" = ( /obj/machinery/hydroponics/soil{ pixel_y = 8 }, @@ -70557,11 +74859,24 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cPk" = ( +"cVP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space, +/area/solar/starboard/aft) +"cVQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/chapel/office) -"cPl" = ( +"cVR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/public/glass{ name = "Chapel Office"; @@ -70569,7 +74884,7 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cPm" = ( +"cVS" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -23 @@ -70579,29 +74894,29 @@ }, /turf/open/floor/plasteel/chapel, /area/chapel/main) -"cPn" = ( +"cVT" = ( /obj/structure/chair/stool, /turf/open/floor/plasteel/chapel{ dir = 8 }, /area/chapel/main) -"cPo" = ( +"cVU" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/chapel, /area/chapel/main) -"cPp" = ( +"cVV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/chair/stool, /turf/open/floor/plasteel/chapel{ dir = 8 }, /area/chapel/main) -"cPq" = ( +"cVW" = ( /obj/structure/chair/stool, /turf/open/floor/plasteel/chapel, /area/chapel/main) -"cPr" = ( +"cVX" = ( /obj/machinery/light{ dir = 4 }, @@ -70609,20 +74924,24 @@ dir = 8 }, /area/chapel/main) -"cPs" = ( +"cVY" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cVZ" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cPt" = ( +"cWa" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cPu" = ( +"cWb" = ( /obj/structure/chair{ dir = 8 }, @@ -70632,29 +74951,11 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cPv" = ( +"cWc" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/hallway/secondary/exit/departure_lounge) -"cPx" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPz" = ( -/obj/structure/closet, -/obj/item/device/flashlight, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPA" = ( +"cWd" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "chapel_shutters_parlour"; @@ -70662,7 +74963,7 @@ }, /turf/open/floor/plating, /area/chapel/main) -"cPB" = ( +"cWe" = ( /obj/structure/closet/coffin, /obj/machinery/light/small{ dir = 1 @@ -70670,14 +74971,14 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating, /area/chapel/main) -"cPC" = ( +"cWf" = ( /obj/structure/closet/coffin, /obj/structure/window/reinforced{ dir = 4 }, /turf/open/floor/plating, /area/chapel/main) -"cPD" = ( +"cWg" = ( /obj/structure/noticeboard{ desc = "A memorial wall for pinning up momentos"; name = "memorial board"; @@ -70692,8 +74993,8 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/chapel/main) -"cPE" = ( -/obj/structure/sign/kiddieplaque/badger{ +"cWh" = ( +/obj/structure/sign/plaques/kiddie/badger{ pixel_y = 32 }, /obj/item/reagent_containers/food/snacks/grown/poppy{ @@ -70717,7 +75018,7 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/chapel/main) -"cPF" = ( +"cWi" = ( /obj/structure/noticeboard{ desc = "A memorial wall for pinning up momentos"; name = "memorial board"; @@ -70727,15 +75028,15 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/chapel/main) -"cPG" = ( +"cWj" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/chapel/main) -"cPH" = ( +"cWk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cPI" = ( +"cWl" = ( /obj/machinery/light/small{ dir = 1 }, @@ -70750,7 +75051,7 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cPJ" = ( +"cWm" = ( /obj/structure/chair/comfy/black{ dir = 4 }, @@ -70759,7 +75060,7 @@ dir = 1 }, /area/chapel/main) -"cPK" = ( +"cWn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -70767,7 +75068,7 @@ dir = 4 }, /area/chapel/main) -"cPL" = ( +"cWo" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -70777,7 +75078,7 @@ dir = 1 }, /area/chapel/main) -"cPM" = ( +"cWp" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 @@ -70786,7 +75087,7 @@ dir = 4 }, /area/chapel/main) -"cPN" = ( +"cWq" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/chair/comfy/black{ dir = 8 @@ -70795,7 +75096,7 @@ dir = 4 }, /area/chapel/main) -"cPO" = ( +"cWr" = ( /obj/machinery/camera{ c_tag = "Departure Lounge - Port Aft"; dir = 4; @@ -70815,19 +75116,19 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cPP" = ( +"cWs" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cPQ" = ( +"cWt" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cPR" = ( +"cWu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -70836,7 +75137,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cPS" = ( +"cWv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -70846,7 +75147,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cPT" = ( +"cWw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -70855,13 +75156,13 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cPU" = ( +"cWx" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cPV" = ( +"cWy" = ( /obj/machinery/camera{ c_tag = "Departure Lounge - Starboard Aft"; dir = 8; @@ -70884,48 +75185,19 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cPW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/grille, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/aft) -"cPX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitepurple{ - dir = 4 - }, -/area/science/research) -"cPY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPZ" = ( +"cWz" = ( /obj/structure/closet/coffin, /turf/open/floor/plating, /area/chapel/main) -"cQa" = ( +"cWA" = ( +/obj/structure/closet/coffin, +/obj/machinery/door/window/eastleft{ + name = "Coffin Storage"; + req_access_txt = "22" + }, +/turf/open/floor/plating, +/area/chapel/main) +"cWB" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -70937,13 +75209,13 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cQb" = ( +"cWC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cQc" = ( +"cWD" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -70959,13 +75231,13 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cQd" = ( +"cWE" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cQf" = ( +"cWF" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -70975,7 +75247,7 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cQg" = ( +"cWG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -70983,20 +75255,20 @@ dir = 8 }, /area/chapel/main) -"cQh" = ( +"cWH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/chapel, /area/chapel/main) -"cQi" = ( +"cWI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/chapel, /area/chapel/main) -"cQj" = ( +"cWJ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -71004,7 +75276,7 @@ dir = 8 }, /area/chapel/main) -"cQk" = ( +"cWK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -71012,22 +75284,22 @@ dir = 8 }, /area/chapel/main) -"cQl" = ( +"cWL" = ( /turf/open/floor/plasteel/chapel, /area/chapel/main) -"cQm" = ( +"cWM" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cQn" = ( +"cWN" = ( /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cQo" = ( +"cWO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=9.4-Escape-4"; @@ -71038,7 +75310,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cQp" = ( +"cWP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=9.3-Escape-3"; @@ -71049,141 +75321,91 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cQq" = ( +"cWQ" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cQr" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Research Division Hallway - Xenobiology Lab Access"; - dir = 2; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/xenobiology) -"cQs" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/xenobiology) -"cQt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, +"cWR" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, +/turf/open/floor/plasteel/white, /area/science/xenobiology) -"cQv" = ( -/obj/machinery/camera{ - c_tag = "Toxins - Launch Area"; - dir = 2; - network = list("SS13","RD") +"cWS" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/obj/machinery/suit_storage_unit/rd, -/obj/effect/turf_decal/bot{ - dir = 1 +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cWT" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" }, -/turf/open/floor/plasteel{ - dir = 1 +/obj/machinery/light/small{ + dir = 4 }, -/area/science/mixing) -"cQx" = ( +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cWU" = ( +/obj/structure/closet/coffin, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/chapel/main) +"cWV" = ( /obj/structure/chair{ pixel_y = -2 }, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cQB" = ( -/obj/machinery/doppler_array{ +"cWW" = ( +/obj/structure/chair{ + pixel_y = -2 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/vault, +/area/chapel/main) +"cWX" = ( +/obj/machinery/light/small{ dir = 4 }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 22 +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 }, -/obj/effect/turf_decal/bot{ +/obj/machinery/camera{ + c_tag = "Chapel - Funeral Parlour"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"cWY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/chapel/main) +"cWZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/chapel/main) +"cXa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/plasteel/chapel{ dir = 1 }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/science/mixing) -"cQC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cQD" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 40; - pixel_x = 3; - pixel_y = -4 - }, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cQE" = ( +/area/chapel/main) +"cXb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -71191,22 +75413,22 @@ dir = 4 }, /area/chapel/main) -"cQF" = ( +"cXc" = ( /obj/structure/table/wood, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cQG" = ( +"cXd" = ( /obj/item/storage/book/bible, /obj/structure/table/wood, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cQH" = ( +"cXe" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/chapel{ dir = 1 }, /area/chapel/main) -"cQI" = ( +"cXf" = ( /obj/structure/chair/comfy/black{ dir = 8 }, @@ -71219,188 +75441,71 @@ dir = 4 }, /area/chapel/main) -"cQJ" = ( -/obj/structure/sign/vacuum{ +"cXg" = ( +/obj/structure/sign/warning/vacuum{ pixel_x = -32 }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cQK" = ( +"cXh" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cQL" = ( +"cXi" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cQM" = ( +"cXj" = ( /obj/machinery/holopad, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cQN" = ( +"cXk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cQO" = ( +"cXl" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cQP" = ( -/obj/structure/sign/vacuum{ +"cXm" = ( +/obj/structure/sign/warning/vacuum{ pixel_x = 32 }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cQR" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xeno_blastdoor"; - name = "biohazard containment door" +"cXn" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-4" }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cQS" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/machinery/door/poddoor/preopen{ - id = "xeno_blastdoor"; - name = "biohazard containment door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cQT" = ( -/obj/structure/closet/coffin, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/chapel/main) -"cQV" = ( -/obj/item/device/flashlight/lantern{ - pixel_y = 7 - }, -/obj/structure/table/wood, -/turf/open/floor/plasteel/dark, -/area/chapel/main) -"cQW" = ( -/obj/effect/landmark/start/chaplain, -/turf/open/floor/plasteel/dark, -/area/chapel/main) -"cQX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/chapel/main) -"cQY" = ( -/obj/machinery/door/airlock/external{ - name = "Departure Lounge Airlock" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xeno_blastdoor"; - name = "biohazard containment door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cRa" = ( -/obj/structure/sign/biohazard, -/turf/closed/wall, -/area/science/xenobiology) -"cRb" = ( -/obj/structure/sign/securearea, -/turf/closed/wall, -/area/science/xenobiology) -"cRc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "47" - }, -/turf/open/floor/plasteel/whitepurple{ - dir = 4 - }, -/area/science/xenobiology) -"cRe" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cRf" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/xenobiology) -"cRg" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRh" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 9 - }, -/area/science/xenobiology) -"cRi" = ( -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"cRj" = ( +/turf/open/space, +/area/solar/starboard/aft) +"cXo" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cRk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRl" = ( +"cXp" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"cXq" = ( /obj/machinery/door/window{ dir = 4; name = "Mass Driver"; @@ -71411,16 +75516,12 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cRm" = ( +"cXr" = ( /obj/machinery/mass_driver{ dir = 2; id = "chapelgun" }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /obj/machinery/light/small{ @@ -71435,7 +75536,7 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cRn" = ( +"cXs" = ( /obj/machinery/camera{ c_tag = "Chapel - Port"; dir = 4; @@ -71448,55 +75549,49 @@ dir = 8 }, /area/chapel/main) -"cRo" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel/chapel{ - dir = 4 +"cXt" = ( +/obj/item/device/flashlight/lantern{ + pixel_y = 7 }, +/obj/structure/table/wood, +/turf/open/floor/plasteel/dark, /area/chapel/main) -"cRp" = ( -/turf/open/floor/plasteel/vault, +"cXu" = ( +/obj/effect/landmark/start/chaplain, +/turf/open/floor/plasteel/dark, /area/chapel/main) -"cRq" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/vault, -/area/chapel/main) -"cRr" = ( -/obj/machinery/light/small, -/obj/machinery/button/door{ - id = "chapel_shutters_space"; - name = "chapel shutters control"; - pixel_x = -6; - pixel_y = -25; - req_access_txt = "0" - }, -/obj/machinery/light_switch{ - pixel_x = 6; - pixel_y = -25 - }, -/turf/open/floor/plasteel/chapel{ +"cXv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, -/area/chapel/main) -"cRs" = ( -/obj/machinery/light/small{ +/turf/open/floor/plasteel/chapel{ dir = 8 }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cRt" = ( -/obj/machinery/light/small{ - dir = 4 +/area/chapel/main) +"cXw" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel/chapel, +/area/chapel/main) +"cXx" = ( +/obj/machinery/door/airlock/external{ + name = "Departure Lounge Airlock" }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cRu" = ( -/obj/structure/sign/biohazard, +"cXy" = ( +/obj/structure/sign/warning/biohazard, /turf/closed/wall/r_wall, /area/science/xenobiology) -"cRv" = ( +"cXz" = ( +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"cXA" = ( /obj/machinery/doorButtons/access_button{ idDoor = "xeno_airlock_exterior"; idSelf = "xeno_airlock_control"; @@ -71521,59 +75616,11 @@ dir = 4 }, /area/science/xenobiology) -"cRw" = ( -/obj/structure/sign/securearea, +"cXB" = ( +/obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/science/xenobiology) -"cRx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"cRy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRz" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/xenobiology) -"cRA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/xenobiology) -"cRC" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRD" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cRE" = ( +"cXC" = ( /obj/machinery/hydroponics/soil{ pixel_y = 8 }, @@ -71588,7 +75635,7 @@ dir = 2 }, /area/chapel/main) -"cRF" = ( +"cXD" = ( /obj/machinery/door/morgue{ name = "Chapel Garden"; req_access_txt = "0" @@ -71597,7 +75644,7 @@ dir = 2 }, /area/chapel/main) -"cRG" = ( +"cXE" = ( /obj/machinery/light/small, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -71610,16 +75657,20 @@ }, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cRH" = ( +"cXF" = ( /obj/structure/chair, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cRI" = ( +"cXG" = ( /obj/structure/chair, /obj/effect/landmark/start/chaplain, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cRJ" = ( +"cXH" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/vault, +/area/chapel/main) +"cXI" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -71637,4077 +75688,16 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cRK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) -"cRL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chapel_shutters_space"; - name = "chapel shutters" - }, -/turf/open/floor/plating, -/area/chapel/main) -"cRM" = ( -/obj/machinery/processor/slime, -/obj/effect/turf_decal/stripes/corner{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRN" = ( -/obj/machinery/monkey_recycler, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/xenobiology) -"cRO" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/aft) -"cRP" = ( -/obj/machinery/door/poddoor{ - id = "chapelgun"; - name = "Chapel Launcher Door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/chapel/main) -"cRR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cRS" = ( -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/xenobiology) -"cRT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"cRU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cRV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRW" = ( -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cRX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRY" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "test chamber blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cRZ" = ( -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cSa" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSb" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cSd" = ( -/turf/closed/wall, -/area/science/xenobiology) -"cSe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSf" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSh" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSj" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSk" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSm" = ( -/obj/structure/window/reinforced, -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio8"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSn" = ( -/turf/open/floor/engine, -/area/science/xenobiology) -"cSo" = ( -/obj/effect/landmark/revenantspawn, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSp" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #1"; - dir = 4; - network = list("SS13","RD","Xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSq" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #1"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSs" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #1"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSt" = ( -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSv" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #2"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "containment blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSw" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #2"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSx" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #2"; - dir = 8; - network = list("SS13","RD","Xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSy" = ( -/mob/living/simple_animal/slime, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSz" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/space, -/area/solar/starboard/aft) -"cSA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSB" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio3"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSC" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/space, -/area/solar/starboard/aft) -"cSD" = ( -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cSE" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSF" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSI" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall, -/area/science/xenobiology) -"cSJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSL" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSM" = ( -/obj/structure/window/reinforced, -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio7"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSN" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #3"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSO" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #3"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSP" = ( -/obj/docking_port/stationary/random{ - id = "pod_lavaland1"; - name = "lavaland" - }, -/turf/open/space, -/area/space/nearstation) -"cSQ" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #4"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "containment blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSR" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #4"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSS" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio2"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cST" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio1"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSU" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_x = -32; - possible_destinations = "pod_lavaland1"; - shuttleId = "pod1" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_1) -"cSV" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSW" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSX" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table/wood, -/obj/item/folder{ - pixel_y = 2 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/office) -"cSZ" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cTa" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cTb" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #5"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTc" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #5"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "containment blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cTd" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - pixel_x = 25 - }, -/obj/item/storage/pod{ - pixel_x = -26 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_1) -"cTe" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #6"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTf" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/item/storage/box/bodybags{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"cTg" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #6"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "containment blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cTh" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor"; - name = "supply dock loading door" - }, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/shuttle/supply) -"cTi" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_y = -32; - possible_destinations = "pod_lavaland4"; - shuttleId = "pod4" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_4) -"cTj" = ( -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTk" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/button/ignition{ - id = "Xenobio"; - pixel_x = -6; - pixel_y = -3 - }, -/obj/machinery/button/door{ - id = "Xenolab"; - name = "Test Chamber Blast Doors"; - pixel_x = 4; - pixel_y = -3; - req_access_txt = "55" - }, -/obj/structure/table/reinforced, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTm" = ( -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "test chamber blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cTn" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"cTo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/chapel/main) -"cTp" = ( -/obj/structure/closet, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"cTq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch{ - name = "Test Chamber Maintenance"; - req_access_txt = "47"; - req_one_access_txt = "0" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cTr" = ( -/obj/machinery/computer/security/telescreen{ - dir = 1; - name = "Test Chamber Monitor"; - network = list("Xeno"); - pixel_y = 2 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTs" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTt" = ( -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Maximum Security Test Chamber"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTu" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/item/storage/pod{ - pixel_x = 6; - pixel_y = -32 - }, -/obj/machinery/light/small, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_4) -"cTw" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cTy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/chapel/main) -"cTz" = ( -/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/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTA" = ( -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"cTB" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"cTC" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"cTD" = ( -/obj/structure/cable/yellow, -/obj/machinery/shieldwallgen/xenobiologyaccess, -/turf/open/floor/plating, -/area/science/xenobiology) -"cTR" = ( -/obj/effect/landmark/xmastree, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"cTT" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"cUH" = ( -/obj/structure/table/optable, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cUL" = ( -/obj/docking_port/stationary/random{ - dir = 4; - id = "pod_lavaland4"; - name = "lavaland" - }, -/turf/open/space, -/area/space/nearstation) -"cUM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/lightsout, -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cUN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cUR" = ( -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/valve/digital{ - name = "Waste Release" - }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) -"cUS" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/supply) -"cUT" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 30 - }, -/obj/machinery/photocopier{ - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/library) -"cUU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/wood, -/area/library) -"cUV" = ( -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/supply) -"cUW" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/machinery/door/poddoor{ - id = "QMLoaddoor2"; - name = "supply dock loading door" - }, -/turf/open/floor/plating, -/area/shuttle/supply) -"cUX" = ( -/obj/machinery/door/airlock/titanium{ - name = "Supply Shuttle Airlock"; - req_access_txt = "31" - }, -/turf/open/floor/plating, -/area/shuttle/supply) -"cUY" = ( -/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 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/supply) -"cUZ" = ( -/obj/machinery/door/airlock/titanium{ - name = "Supply Shuttle Airlock"; - req_access_txt = "31" - }, -/obj/docking_port/mobile/supply{ - dwidth = 5; - roundstart_move = "supply_away"; - width = 12 - }, -/obj/docking_port/stationary{ - dir = 8; - dwidth = 5; - height = 7; - id = "supply_home"; - name = "Cargo Bay"; - width = 12 - }, -/turf/open/floor/plating, -/area/shuttle/supply) -"cVa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cVb" = ( -/obj/structure/table/wood, -/obj/item/device/camera_film{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/device/camera_film{ - pixel_y = 9 - }, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/turf/open/floor/wood, -/area/library) -"cVc" = ( -/turf/closed/wall/mineral/titanium/interior, -/area/shuttle/supply) -"cVd" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -30 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"cVe" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole/bookmanagement, -/obj/structure/noticeboard{ - desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; - dir = 8; - name = "requests board"; - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/library) -"cVf" = ( -/obj/machinery/light_switch{ - pixel_x = 28 - }, -/turf/open/floor/wood, -/area/library) -"cVg" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/shuttle/engine/heater, -/turf/open/floor/plating/airless, -/area/shuttle/supply) -"cVh" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"cVi" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/wood, -/area/library) -"cVj" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/floor/plating/airless, -/area/shuttle/supply) -"cVk" = ( -/obj/structure/shuttle/engine/propulsion/burst/left, -/turf/open/floor/plating/airless, -/area/shuttle/supply) -"cVl" = ( -/obj/structure/shuttle/engine/propulsion/burst/right, -/turf/open/floor/plating/airless, -/area/shuttle/supply) -"cVm" = ( -/obj/structure/shuttle/engine/propulsion/left{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/shuttle/transport) -"cVn" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/transport) -"cVp" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/transport) -"cVr" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/shuttle/transport) -"cVu" = ( -/obj/structure/chair, -/turf/open/floor/pod/dark, -/area/shuttle/transport) -"cVv" = ( -/turf/open/floor/pod/light, -/area/shuttle/transport) -"cVw" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/shuttle/transport) -"cVx" = ( -/obj/machinery/door/airlock/titanium, -/obj/docking_port/mobile{ - dir = 8; - dwidth = 2; - height = 13; - id = "ferry"; - name = "ferry shuttle"; - port_direction = 1; - preferred_direction = 4; - roundstart_move = "ferry_away"; - width = 5 - }, -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 13; - id = "ferry_home"; - name = "port bay 2"; - turf_type = /turf/open/space; - width = 5 - }, -/turf/open/floor/pod/light, -/area/shuttle/transport) -"cVy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/atmos) -"cVz" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1441; - id = "n2_in"; - volume_rate = 200 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/engine/atmos) -"cVB" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/pod/dark, -/area/shuttle/transport) -"cVC" = ( -/mob/living/simple_animal/sloth/citrus, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"cVD" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cVE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"cVF" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"cVG" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/abandoned) -"cVH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"cVI" = ( -/obj/machinery/door/airlock/titanium{ - name = "recovery shuttle external airlock" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cVJ" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/atmos_control/tank{ - dir = 1; - frequency = 1441; - input_tag = "air_in"; - name = "Mixed Air Supply Control"; - output_tag = "air_out"; - sensors = list("air_sensor" = "Tank") - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/engine/atmos) -"cVK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"cVL" = ( -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"cVM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"cVN" = ( -/obj/structure/shuttle/engine/propulsion/left{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/shuttle/abandoned) -"cVO" = ( -/obj/structure/toilet{ - pixel_y = 9 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/greenglow{ - desc = "Looks like something's sprung a leak" - }, -/obj/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cVQ" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"cVR" = ( -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cVS" = ( -/obj/structure/table, -/obj/item/storage/pill_bottle/dice{ - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cVT" = ( -/obj/structure/closet/wardrobe/mixed, -/obj/item/clothing/under/rank/centcom_officer{ - desc = "A badge on the arm indicates that it's meant to be worn by CentCom recovery teams. This one seems dusty and clearly hasn't been cleaned in some time."; - name = "\improper dusty old CentCom jumpsuit" - }, -/obj/item/clothing/under/rank/centcom_commander{ - desc = "A badge on the arm indicates that it's meant to be worn by CentCom recovery teams. This one seems dusty and clearly hasn't been cleaned in some time."; - name = "\improper dusty old CentCom jumpsuit" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cVU" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cVV" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cVX" = ( -/obj/structure/tank_dispenser/oxygen{ - layer = 2.7; - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cVY" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cVZ" = ( -/obj/structure/sign/vacuum{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cWa" = ( -/obj/structure/closet/crate/medical{ - name = "medical crate" - }, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/roller{ - pixel_y = 4 - }, -/obj/item/device/healthanalyzer, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"cWb" = ( -/obj/item/storage/box/lights/mixed, -/obj/item/cigbutt, -/obj/structure/closet/crate{ - icon_state = "crateopen"; - name = "spare equipment crate"; - opened = 1 - }, -/obj/item/tank/internals/oxygen/red, -/obj/item/tank/internals/air, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"cWc" = ( -/obj/structure/closet/crate{ - name = "spare equipment crate" - }, -/obj/item/grenade/chem_grenade/metalfoam, -/obj/item/relic, -/obj/item/device/t_scanner, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"cWd" = ( -/obj/structure/closet/crate{ - name = "emergency supplies crate" - }, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/toolbox/emergency, -/obj/item/device/flashlight/flare{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/flashlight/flare{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/crowbar, -/obj/item/wrench, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/extinguisher, -/obj/item/extinguisher, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"cWe" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/shuttle/abandoned) -"cWf" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/shuttle/abandoned) -"cWg" = ( -/obj/docking_port/mobile/auxillary_base{ - dheight = 4; - dir = 2; - dwidth = 4; - height = 9; - width = 9 - }, -/obj/machinery/bluespace_beacon, -/obj/machinery/computer/auxillary_base, -/turf/closed/wall, -/area/shuttle/auxillary_base) -"cWh" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"cWi" = ( -/obj/machinery/door/airlock/titanium{ - name = "bathroom" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cWj" = ( -/obj/structure/bed, -/obj/item/bedsheet/centcom, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small/built{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cWk" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/remains/human{ - desc = "They look like human remains, and have clearly been gnawed at." - }, -/obj/item/gun/energy/laser/retro, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cWl" = ( -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cWm" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cWn" = ( -/obj/machinery/door/airlock/titanium{ - name = "E.V.A. equipment" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cWo" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cWp" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/remains/human{ - desc = "They look like human remains, and have clearly been gnawed at." - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cWq" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/delivery{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/shuttle/abandoned) -"cWr" = ( -/obj/machinery/door/airlock/titanium{ - name = "cargo bay" - }, -/obj/effect/turf_decal/delivery{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/shuttle/abandoned) -"cWs" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/delivery{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/shuttle/abandoned) -"cWt" = ( -/obj/effect/decal/cleanable/robot_debris/old, -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/delivery{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/shuttle/abandoned) -"cWu" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/door/window/westright{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/soap/nanotrasen, -/obj/effect/decal/remains/human{ - desc = "They look like human remains, and have clearly been gnawed at." - }, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cWv" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small/built{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cWw" = ( -/obj/structure/bed, -/obj/item/bedsheet/centcom, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cWx" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cWy" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/stack/rods/fifty, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/wrench, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cWz" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/item/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/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cWA" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"cWB" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cWC" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"cWD" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"cWE" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/abandoned) -"cWF" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"cWG" = ( -/obj/machinery/door/airlock/titanium{ - name = "bathroom" - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cWH" = ( -/obj/machinery/vending/boozeomat{ - icon_deny = "smartfridge"; - icon_state = "smartfridge"; - req_access_txt = "0"; - use_power = 0 - }, -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"cWI" = ( -/obj/machinery/door/airlock/titanium{ - name = "dormitory" - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cWJ" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"cWK" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"cWL" = ( -/obj/machinery/door/airlock/titanium{ - name = "recovery shuttle interior airlock" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cWM" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; - name = "Construction Zone"; - req_access = null; - req_access_txt = "0"; - req_one_access_txt = "0" - }, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"cWN" = ( -/obj/machinery/door/airlock/titanium{ - name = "cargo bay" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/turf_decal/delivery{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/shuttle/abandoned) -"cWO" = ( -/obj/machinery/vending/cigarette{ - use_power = 0 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cWP" = ( -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/built{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cWQ" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cWR" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cWS" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cWT" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/folder/blue, -/obj/item/pen, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cWU" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/table, -/obj/item/device/camera, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cWV" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -1; - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cWW" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/storage/photo_album, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cWX" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/sign/vacuum{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small/built{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cWY" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cWZ" = ( -/obj/structure/chair, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXa" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXb" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXc" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/easel, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"cXf" = ( -/obj/structure/table, -/obj/item/folder/blue, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/device/gps{ - gpstag = "NTREC1"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXg" = ( -/obj/machinery/door/airlock/titanium{ - name = "recovery shuttle interior airlock" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cXh" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXi" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXj" = ( -/obj/structure/table, -/obj/item/storage/fancy/donut_box, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXk" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXl" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXm" = ( -/obj/machinery/door/airlock/titanium{ - name = "living quarters" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cXn" = ( -/obj/item/clothing/suit/bio_suit, -/obj/item/clothing/suit/bio_suit, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/head/bio_hood, -/obj/item/clothing/head/bio_hood, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/structure/table, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXo" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/roller{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/roller{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/table, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXp" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXq" = ( -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/remains/human{ - desc = "They look like human remains, and have clearly been gnawed at." - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXr" = ( -/obj/item/storage/toolbox/emergency{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/toolbox/emergency{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/table, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXs" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/suit/armor/vest, -/obj/item/clothing/suit/armor/vest, -/obj/structure/table, -/obj/item/clothing/head/helmet/swat/nanotrasen, -/obj/item/clothing/head/helmet/swat/nanotrasen, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXt" = ( -/obj/machinery/door/airlock/titanium{ - name = "bridge" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cXu" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/computer/shuttle/white_ship{ - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXv" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXw" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/light_construct/small{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cXx" = ( -/obj/machinery/vending/cola/random, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXy" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXz" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Aft"; - dir = 1; - network = list("SS13","Engine") - }, -/turf/open/floor/engine, -/area/engine/engineering) -"cXA" = ( -/turf/closed/wall/r_wall, -/area/security/checkpoint/engineering) -"cXC" = ( -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/structure/table, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXD" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/clothing/head/centhat{ - desc = "There's a gouge through the top where something has clawed clean through it. Whoever was wearing it probably doesn't need a hat any more."; - name = "\improper damaged CentCom hat" - }, -/obj/effect/decal/remains/human{ - desc = "They look like human remains, and have clearly been gnawed at." - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cXE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/construction/mining/aux_base) -"cXF" = ( -/obj/machinery/vending/snack/random, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXG" = ( -/obj/structure/sign/science{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cXH" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/computer/camera_advanced/shuttle_docker/whiteship{ - dir = 1; - station_lock_override = 1; - view_range = 15; - x_offset = -3; - y_offset = -7 - }, -/obj/machinery/light/built{ - dir = 2 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXI" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) "cXJ" = ( -/obj/structure/table, -/obj/item/device/radio/off{ - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXK" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXL" = ( -/obj/machinery/door/airlock/titanium{ - name = "hydroponics" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cXM" = ( -/obj/structure/sign/botany, -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"cXN" = ( -/obj/machinery/door/airlock/titanium{ - name = "kitchen" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cXO" = ( -/obj/machinery/door/airlock/titanium{ - name = "laboratory" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cXP" = ( -/obj/structure/sign/bluecross_2, -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"cXQ" = ( -/obj/machinery/door/airlock/titanium{ - name = "medbay"; - welded = 0 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cXR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/construction/mining/aux_base) -"cXS" = ( -/obj/item/storage/bag/plants/portaseeder, -/obj/structure/table, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 13; - pixel_y = 5 - }, -/obj/item/reagent_containers/glass/bottle/nutrient/ez, -/obj/item/reagent_containers/glass/bottle/nutrient/ez, -/obj/item/reagent_containers/glass/bottle/nutrient/ez, -/obj/item/reagent_containers/glass/bottle/nutrient/rh{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXT" = ( -/obj/machinery/biogenerator{ - idle_power_usage = 0; - use_power = 0 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXU" = ( -/obj/machinery/vending/hydroseeds{ - use_power = 0 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small/built{ - dir = 1 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXV" = ( -/obj/machinery/processor, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small/built{ - dir = 1 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXW" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/storage/box/donkpockets, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXX" = ( -/obj/structure/kitchenspike, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXY" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cXZ" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cYa" = ( -/obj/machinery/sleeper{ - dir = 4; - use_power = 0 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cYb" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/blood/empty{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/random, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/xenoblood, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cYc" = ( -/obj/structure/table/optable{ - name = "Robotics Operating Table" - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/machinery/camera{ - c_tag = "Robotics - Aft"; - dir = 1; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/science/robotics/lab) -"cYd" = ( -/obj/structure/table, -/obj/item/wrench, -/obj/item/crowbar, -/obj/item/clothing/suit/apron, -/obj/item/shovel/spade, -/obj/item/cultivator, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/wirecutters, -/obj/item/device/plant_analyzer, -/obj/item/reagent_containers/glass/bucket, -/obj/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cYe" = ( -/obj/machinery/smartfridge{ - use_power = 0 - }, -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"cYf" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cYg" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cYh" = ( -/obj/structure/table, -/obj/item/kitchen/rollingpin, -/obj/item/kitchen/knife, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small/built{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cYi" = ( -/obj/effect/decal/cleanable/egg_smudge, -/obj/effect/decal/cleanable/flour, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cYj" = ( -/obj/structure/closet/firecloset, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cYl" = ( -/obj/structure/chair/office/light, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cYm" = ( -/obj/machinery/vending/wallmed{ - name = "Emergency NanoMed"; - pixel_x = -28; - req_access_txt = "0"; - use_power = 0 - }, -/obj/machinery/iv_drip, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cYn" = ( -/obj/effect/decal/cleanable/xenoblood, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/remains/xeno{ - desc = "A pile of remains that look vaguely humanoid. The skull is abnormally elongated, and there are burns through some of the other bones." - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cYo" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/xenoblood, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cYp" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/xenoblood, -/obj/effect/decal/cleanable/xenoblood/xgibs/limb, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"cYq" = ( -/obj/structure/shuttle/engine/propulsion/right{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/shuttle/abandoned) -"cYr" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cYs" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/seeds/glowshroom, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cYt" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/storage/box/monkeycubes{ - pixel_y = 4 - }, -/obj/item/storage/fancy/egg_box{ - pixel_y = 5 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cYu" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder{ - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cYv" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/soymilk, -/obj/item/reagent_containers/food/condiment/soymilk, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cYw" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 5 - }, -/obj/item/reagent_containers/food/condiment/enzyme{ - layer = 5 - }, -/obj/item/reagent_containers/dropper, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cYx" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 5; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/syringe, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cYy" = ( -/obj/structure/table, -/obj/item/hand_labeler, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cYz" = ( -/obj/structure/table, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cYA" = ( -/obj/structure/table, -/obj/item/defibrillator, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cYB" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/item/clothing/suit/apron/surgical, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cYC" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = -3 - }, -/obj/item/reagent_containers/syringe, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cYD" = ( -/obj/structure/table, -/obj/item/storage/backpack/duffelbag/med/surgery{ - pixel_y = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"cYE" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/construction/mining/aux_base) -"cYF" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/escape) -"cYG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/yellow/side, -/area/construction/mining/aux_base) -"cYH" = ( -/obj/machinery/door/airlock/titanium{ - name = "Emergency Shuttle Airlock" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"cYI" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/escape) -"cYJ" = ( -/obj/machinery/door/airlock/titanium{ - name = "Emergency Shuttle Airlock" - }, -/obj/docking_port/mobile/emergency{ - dir = 2; - dwidth = 5; - height = 14; - name = "Meta emergency shuttle"; - width = 25 - }, -/obj/docking_port/stationary{ - dheight = 0; - dir = 2; - dwidth = 9; - height = 25; - id = "emergency_home"; - name = "MetaStation emergency evac bay"; - width = 29 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"cYK" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for the Auxillary Mining Base."; - dir = 1; - name = "Auxillary Base Monitor"; - network = list("AuxBase"); - pixel_y = -28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/yellow/side, -/area/construction/mining/aux_base) -"cYL" = ( -/obj/machinery/door/poddoor/shutters{ - id = "aux_base_shutters"; - name = "Auxillary Base Shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"cYM" = ( -/obj/structure/tank_dispenser/oxygen{ - layer = 2.7; - pixel_x = -1; - pixel_y = 2 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cYN" = ( -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/structure/closet/crate{ - name = "lifejackets" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cYO" = ( -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"cYP" = ( -/obj/machinery/door/airlock/engineering{ - cyclelinkeddir = 1; - name = "Auxillary Base Construction"; - req_access_txt = "0"; - req_one_access_txt = "32;47;48" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"cYQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/construction/mining/aux_base) -"cYS" = ( -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_y = 27 - }, -/obj/structure/chair, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cYT" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cYU" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/item/hand_labeler_refill, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"cYV" = ( -/turf/open/floor/plasteel/floorgrime, -/area/shuttle/escape) -"cYW" = ( -/obj/structure/closet/crate/medical{ - name = "medical crate" - }, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/device/healthanalyzer{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/lazarus_injector, -/obj/effect/turf_decal/bot, -/mob/living/simple_animal/bot/medbot{ - name = "\improper emergency medibot"; - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"cYX" = ( -/obj/item/cigbutt, -/turf/open/floor/plasteel/floorgrime, -/area/shuttle/escape) -"cYY" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/escape) -"cYZ" = ( -/obj/machinery/vending/wallmed{ - name = "Emergency NanoMed"; - req_access_txt = "0"; - use_power = 0 - }, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/escape) -"cZa" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZb" = ( -/obj/structure/closet/crate{ - name = "emergency supplies crate" - }, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/toolbox/emergency, -/obj/item/device/flashlight/flare{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/flashlight/flare{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/device/radio, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"cZc" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel/chapel, -/area/chapel/main) -"cZd" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/chapel/main) -"cZe" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) -"cZf" = ( -/obj/structure/chair, -/obj/machinery/light{ +/obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"cZg" = ( -/obj/structure/sign/nosmoking_2, -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) -"cZh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 4 - }, -/area/hallway/secondary/entry) -"cZi" = ( -/obj/structure/chair, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cZj" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/shuttle/escape) -"cZk" = ( -/obj/item/device/radio/intercom{ - dir = 2; - name = "Station Intercom (General)"; - pixel_y = -31 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cZl" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/shuttle/escape) -"cZm" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"cZn" = ( -/obj/machinery/status_display, -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) -"cZo" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cZp" = ( -/obj/machinery/door/airlock/medical/glass{ - id_tag = null; - name = "Escape Shuttle Infirmary"; - req_access_txt = "0" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"cZq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"cZr" = ( -/obj/structure/sign/bluecross_2, -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) -"cZs" = ( -/obj/structure/table, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cZt" = ( -/obj/structure/table, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cZv" = ( -/turf/open/floor/circuit/killroom, -/area/science/xenobiology) -"cZw" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = -3 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 4; - pixel_y = 1 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 2; - pixel_y = 8 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cZx" = ( -/obj/structure/table, -/obj/item/defibrillator/loaded, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cZy" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/device/radio/intercom{ - dir = 2; - name = "Station Intercom (General)"; - pixel_y = -31 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"cZz" = ( -/obj/structure/table/optable, -/obj/item/surgical_drapes, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cZA" = ( -/obj/structure/table, -/obj/item/folder/blue, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_y = -27 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"cZB" = ( -/obj/machinery/space_heater, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_y = -27 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"cZC" = ( -/obj/machinery/door/airlock/titanium{ - name = "Emergency Shuttle Cargo Bay Airlock" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"cZD" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"cZE" = ( -/obj/structure/table, -/obj/item/storage/box/handcuffs{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"cZF" = ( -/obj/structure/chair, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"cZG" = ( -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"cZH" = ( -/obj/structure/table, -/obj/machinery/recharger{ - active_power_usage = 0; - idle_power_usage = 0; - use_power = 0 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"cZI" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig"; - req_access_txt = "2" - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"cZJ" = ( -/obj/structure/table, -/obj/item/restraints/handcuffs{ - pixel_y = 3 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"cZK" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cZL" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/floorgrime, -/area/shuttle/escape) -"cZM" = ( -/obj/machinery/shower, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"cZN" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"cZO" = ( -/obj/structure/rack, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/weldingtool, -/obj/item/wirecutters, -/obj/item/stack/cable_coil, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"cZP" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"cZQ" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Cockpit"; - req_access_txt = "19" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"cZR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/main) -"cZS" = ( -/obj/structure/table, -/obj/item/restraints/handcuffs{ - pixel_y = 3 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"cZT" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"cZU" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/delivery, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"cZV" = ( -/obj/machinery/door/airlock/command{ - name = "Emergency Recovery Airlock"; - req_access = null; - req_access_txt = "19" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"cZW" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"cZX" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"cZY" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"cZZ" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"daa" = ( -/obj/machinery/computer/security, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"dab" = ( -/obj/structure/reagent_dispensers/peppertank, -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) -"dac" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_y = -1 - }, -/obj/item/storage/toolbox/emergency{ - pixel_x = 3; - pixel_y = -5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dad" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/open/floor/plasteel/floorgrime, -/area/shuttle/escape) -"dae" = ( -/obj/machinery/door/airlock/external{ - name = "Emergency Recovery Airlock" - }, -/turf/open/floor/plasteel/floorgrime, -/area/shuttle/escape) -"daf" = ( -/obj/machinery/computer/crew, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"dag" = ( -/obj/structure/chair/office/dark, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"dah" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dai" = ( -/obj/structure/table, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"daj" = ( -/obj/structure/table, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"dak" = ( -/obj/machinery/computer/communications{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"dal" = ( -/obj/machinery/computer/emergency_shuttle{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"dam" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency{ - pixel_y = 3 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"dan" = ( -/obj/machinery/computer/station_alert{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"dao" = ( -/obj/structure/table, -/obj/machinery/recharger{ - active_power_usage = 0; - idle_power_usage = 0; - pixel_y = 4; - use_power = 0 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"dap" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/main) -"daq" = ( -/obj/structure/table, -/obj/item/folder/red{ - pixel_x = 3 - }, -/obj/item/folder/white{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/device/radio/intercom{ - dir = 2; - name = "Station Intercom (General)"; - pixel_y = -31 - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -4; - pixel_y = 4 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"dar" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel/floorgrime, -/area/shuttle/escape) -"das" = ( -/obj/structure/table, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/item/circular_saw, -/obj/item/retractor{ - pixel_x = 4 - }, -/obj/item/hemostat{ - pixel_x = -4 - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/device/radio/intercom{ - dir = 2; - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"dat" = ( -/obj/machinery/vending/wallmed{ - name = "Emergency NanoMed"; - req_access_txt = "0"; - use_power = 0 - }, -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) -"dau" = ( -/obj/structure/sink, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"dav" = ( -/obj/structure/rack, -/obj/item/tank/internals/oxygen/red, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/clothing/mask/gas, -/obj/item/clothing/head/hardhat/red, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"daw" = ( -/obj/item/device/radio/intercom{ - dir = 2; - name = "Station Intercom (General)"; - pixel_y = -31 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"dax" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) -"daA" = ( -/obj/machinery/door/window/southleft{ - dir = 2; - name = "Maximum Security Test Chamber"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "test chamber blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"daB" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/engine, -/area/science/xenobiology) -"daC" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"daD" = ( -/obj/structure/disposaloutlet{ dir = 2 }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"daE" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 10 - }, -/obj/item/device/electropack, -/turf/open/floor/engine, -/area/science/xenobiology) -"daF" = ( -/obj/machinery/sparker{ - id = "Xenobio"; - pixel_x = -25 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"daG" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"daH" = ( -/obj/item/device/radio/beacon, -/turf/open/floor/engine, -/area/science/xenobiology) -"daI" = ( -/obj/structure/table, -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/stack/cable_coil, -/obj/item/device/multitool, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"daJ" = ( -/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner, -/turf/open/floor/engine, -/area/science/xenobiology) -"daK" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Test Chamber"; - dir = 1; - network = list("SS13","RD","Xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"daL" = ( -/obj/machinery/light/small, -/turf/open/floor/engine, -/area/science/xenobiology) -"daM" = ( -/obj/structure/table, -/obj/item/device/assembly/igniter{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 2; - pixel_y = -1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"daN" = ( -/obj/item/device/radio/intercom{ - pixel_y = -25 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"daO" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"daP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"daQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"daR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1; - external_pressure_bound = 140; - name = "server vent"; - pressure_checks = 0 - }, -/turf/open/floor/circuit/killroom, -/area/science/xenobiology) -"daS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/circuit/killroom, -/area/science/xenobiology) -"daW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"daX" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port/fore) -"daY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"daZ" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable, -/obj/structure/window/plasma/reinforced, -/turf/open/floor/engine, -/area/engine/supermatter) -"dbb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"dbd" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"dbe" = ( -/obj/machinery/keycard_auth{ - pixel_x = 26 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"dbg" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"dbh" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"dbj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"dbk" = ( -/obj/item/hand_labeler_refill, -/obj/structure/easel, -/turf/open/floor/plating, -/area/maintenance/port) -"dbl" = ( -/obj/machinery/vending/kink, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dbm" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"dbn" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"dbo" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #3"; - dir = 4; - network = list("SS13","RD","Xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbp" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #4"; - dir = 8; - network = list("SS13","RD","Xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbq" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/port/aft) -"dbr" = ( -/obj/machinery/camera{ - c_tag = "Morgue"; - dir = 2; - network = list("SS13","Medbay") - }, /turf/open/floor/plasteel/dark, -/area/medical/morgue) -"dbs" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #5"; - dir = 4; - network = list("SS13","RD","Xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbt" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #6"; - dir = 8; - network = list("SS13","RD","Xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbv" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small, -/turf/open/floor/circuit/killroom, -/area/science/xenobiology) -"dbw" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Kill Chamber"; - dir = 1; - network = list("SS13","RD","Xeno"); - start_active = 1 - }, -/turf/open/floor/circuit/killroom, -/area/science/xenobiology) -"dbE" = ( -/obj/machinery/plantgenes, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"dbF" = ( +/area/chapel/main) +"cXK" = ( /obj/structure/bookcase{ name = "Holy Bookcase" }, @@ -75715,158 +75705,55 @@ dir = 4 }, /area/chapel/main) -"dbH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - cyclelinkeddir = 1; - id_tag = "ResearchInt"; - name = "Research Division"; - req_access_txt = "0"; - req_one_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"dbI" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - cyclelinkeddir = 1; - id_tag = "ResearchInt"; - name = "Research Division"; - req_access_txt = "0"; - req_one_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"dbJ" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/solar{ - id = "aftstarboard"; - name = "Aft-Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"dbK" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/space, -/area/solar/starboard/aft) -"dbL" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/solar{ - id = "aftstarboard"; - name = "Aft-Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"dbM" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space, -/area/solar/starboard/aft) -"dbN" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"dbO" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space, -/area/solar/starboard/aft) -"dbP" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"dbQ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ +"cXL" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel/chapel{ dir = 4 }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"dbR" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" +/area/chapel/main) +"cXM" = ( +/turf/open/floor/plasteel/vault, +/area/chapel/main) +"cXN" = ( +/obj/machinery/light/small, +/obj/machinery/button/door{ + id = "chapel_shutters_space"; + name = "chapel shutters control"; + pixel_x = -6; + pixel_y = -25; + req_access_txt = "0" }, -/turf/open/space, -/area/solar/starboard/aft) -"dbS" = ( -/obj/structure/lattice/catwalk, -/obj/item/stack/cable_coil, -/turf/open/space, -/area/solar/starboard/aft) -"dbT" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-4" +/obj/machinery/light_switch{ + pixel_x = 6; + pixel_y = -25 }, -/turf/open/space, -/area/solar/starboard/aft) -"dbU" = ( -/obj/machinery/power/tracker, -/obj/structure/cable{ - icon_state = "0-8" +/turf/open/floor/plasteel/chapel{ + dir = 1 }, -/turf/open/floor/plating/airless, -/area/solar/starboard/aft) -"dbV" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-4" +/area/chapel/main) +"cXO" = ( +/obj/structure/chair/comfy/black{ + dir = 8 }, -/obj/structure/cable{ - icon_state = "1-8" +/turf/open/floor/plasteel/chapel{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "1-2" +/area/chapel/main) +"cXP" = ( +/obj/machinery/light/small{ + dir = 8 }, -/turf/open/space, -/area/solar/starboard/aft) -"dbW" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-4" +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cXQ" = ( +/obj/machinery/light/small{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/space, -/area/solar/starboard/aft) -"dbX" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cXR" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/sink{ dir = 8; @@ -75878,7 +75765,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dbY" = ( +"cXS" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -75887,7 +75774,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dbZ" = ( +"cXT" = ( /obj/machinery/doorButtons/access_button{ idDoor = "xeno_airlock_interior"; idSelf = "xeno_airlock_control"; @@ -75909,7 +75796,20 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dca" = ( +"cXU" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 9 + }, +/area/science/xenobiology) +"cXV" = ( /obj/machinery/firealarm{ dir = 2; pixel_y = 26 @@ -75918,7 +75818,12 @@ dir = 1 }, /area/science/xenobiology) -"dcb" = ( +"cXW" = ( +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/xenobiology) +"cXX" = ( /obj/machinery/airalarm{ pixel_y = 23 }, @@ -75931,7 +75836,7 @@ dir = 1 }, /area/science/xenobiology) -"dcc" = ( +"cXY" = ( /obj/structure/table/glass, /obj/item/stack/sheet/mineral/plasma{ pixel_y = 4 @@ -75967,7 +75872,7 @@ dir = 1 }, /area/science/xenobiology) -"dcd" = ( +"cXZ" = ( /obj/structure/table/glass, /obj/item/paper_bin{ pixel_y = 4 @@ -75993,7 +75898,7 @@ dir = 1 }, /area/science/xenobiology) -"dce" = ( +"cYa" = ( /obj/structure/table/glass, /obj/item/storage/box/monkeycubes{ pixel_x = 2; @@ -76004,7 +75909,7 @@ dir = 1 }, /area/science/xenobiology) -"dcf" = ( +"cYb" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 @@ -76013,7 +75918,23 @@ dir = 5 }, /area/science/xenobiology) -"dcg" = ( +"cYc" = ( +/obj/machinery/door/poddoor{ + id = "chapelgun"; + name = "Chapel Launcher Door" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/chapel/main) +"cYd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chapel_shutters_space"; + name = "chapel shutters" + }, +/turf/open/floor/plating, +/area/chapel/main) +"cYe" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/shower{ dir = 4 @@ -76029,7 +75950,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dch" = ( +"cYf" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -76038,7 +75959,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dci" = ( +"cYg" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -76050,7 +75971,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dcj" = ( +"cYh" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research{ autoclose = 0; @@ -76071,7 +75992,7 @@ dir = 4 }, /area/science/xenobiology) -"dck" = ( +"cYi" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -76090,7 +76011,7 @@ dir = 8 }, /area/science/xenobiology) -"dcl" = ( +"cYj" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -76099,7 +76020,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dcm" = ( +"cYk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -76112,7 +76033,7 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"dcn" = ( +"cYl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -76128,7 +76049,7 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"dco" = ( +"cYm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -76141,24 +76062,39 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"dcp" = ( +"cYn" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dcq" = ( +"cYo" = ( /obj/structure/chair/office/light{ dir = 1 }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dcr" = ( +"cYp" = ( +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cYq" = ( /turf/open/floor/plasteel/whitepurple/side{ dir = 4 }, /area/science/xenobiology) -"dcs" = ( +"cYr" = ( +/obj/docking_port/stationary{ + dheight = 0; + dir = 2; + dwidth = 9; + height = 25; + id = "emergency_home"; + name = "MetaStation emergency evac bay"; + width = 29 + }, +/turf/open/space/basic, +/area/space) +"cYs" = ( /obj/structure/closet/emcloset, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -76173,7 +76109,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dct" = ( +"cYt" = ( /obj/structure/closet/l3closet/scientist, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -76184,7 +76120,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dcu" = ( +"cYu" = ( /obj/structure/closet/l3closet/scientist, /obj/machinery/airalarm{ dir = 1; @@ -76198,7 +76134,28 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dcv" = ( +"cYv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"cYw" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/xenobiology) +"cYx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cYy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -76210,14 +76167,14 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"dcw" = ( +"cYz" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/science/xenobiology) -"dcx" = ( +"cYA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/chair/comfy/black{ dir = 1 @@ -76227,33 +76184,67 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"dcy" = ( +"cYB" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cYC" = ( /obj/machinery/holopad, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dcz" = ( +"cYD" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/r_wall, /area/science/xenobiology) -"dcA" = ( +"cYE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/xenobiology) +"cYF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cYG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cYH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cYI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dcB" = ( +"cYJ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dcC" = ( +"cYK" = ( /obj/structure/chair/office/light, /obj/effect/landmark/start/scientist, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dcD" = ( +"cYL" = ( /obj/machinery/reagentgrinder{ pixel_x = -1; pixel_y = 8 @@ -76263,20 +76254,49 @@ dir = 4 }, /area/science/xenobiology) -"dcE" = ( +"cYM" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 4 }, /turf/open/floor/plating/airless, /area/science/xenobiology) -"dcG" = ( +"cYN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/science/xenobiology) +"cYO" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cYP" = ( +/obj/machinery/monkey_recycler, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/xenobiology) +"cYQ" = ( +/obj/machinery/processor/slime, +/obj/effect/turf_decal/stripes/corner{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cYR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dcH" = ( +"cYS" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -76288,7 +76308,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dcI" = ( +"cYT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment{ dir = 4 @@ -76298,7 +76318,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dcJ" = ( +"cYU" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/extinguisher{ pixel_x = 4; @@ -76313,9 +76333,9 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dcK" = ( +"cYV" = ( /obj/machinery/disposal/bin, -/obj/structure/sign/deathsposal{ +/obj/structure/sign/warning/deathsposal{ pixel_y = -32 }, /obj/structure/disposalpipe/trunk{ @@ -76325,7 +76345,7 @@ dir = 2 }, /area/science/xenobiology) -"dcL" = ( +"cYW" = ( /obj/machinery/light, /obj/structure/table/glass, /obj/item/storage/box/beakers{ @@ -76337,7 +76357,7 @@ }, /turf/open/floor/plasteel/whitepurple/side, /area/science/xenobiology) -"dcM" = ( +"cYX" = ( /obj/machinery/chem_master, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -76345,13 +76365,339 @@ }, /turf/open/floor/plasteel/whitepurple/side, /area/science/xenobiology) -"dcN" = ( +"cYY" = ( /obj/machinery/chem_heater, /turf/open/floor/plasteel/whitepurple/side{ dir = 6 }, /area/science/xenobiology) -"dcO" = ( +"cYZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cZa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cZb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cZc" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet, +/turf/open/floor/engine, +/area/science/xenobiology) +"cZd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cZe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"cZf" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cZg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cZh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cZi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cZj" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio8"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cZk" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"cZl" = ( +/turf/open/floor/engine, +/area/science/xenobiology) +"cZm" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Pen #1"; + dir = 4; + network = list("SS13","RD","Xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cZn" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen #1"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cZo" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen #1"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cZp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cZq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cZr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cZs" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen #2"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cZt" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen #2"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cZu" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Pen #2"; + dir = 8; + network = list("SS13","RD","Xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cZv" = ( +/mob/living/simple_animal/slime, +/turf/open/floor/engine, +/area/science/xenobiology) +"cZw" = ( +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"cZx" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio3"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cZy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cZz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cZA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cZB" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cZC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"cZD" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cZE" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/science/xenobiology) +"cZF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cZG" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 @@ -76367,7 +76713,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dcP" = ( +"cZH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -76381,14 +76727,35 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/xenobiology) -"dcQ" = ( +"cZI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cZJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/corner{ dir = 8 }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dcR" = ( +"cZK" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio7"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cZL" = ( /obj/structure/cable/yellow{ icon_state = "0-2" }, @@ -76399,7 +76766,138 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/xenobiology) -"dcS" = ( +"cZM" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Pen #3"; + dir = 4; + network = list("SS13","RD","Xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cZN" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen #3"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cZO" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen #3"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cZP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cZQ" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen #4"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cZR" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen #4"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "containment blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cZS" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Pen #4"; + dir = 8; + network = list("SS13","RD","Xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cZT" = ( +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"cZU" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio2"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cZV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cZW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -76414,14 +76912,26 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/xenobiology) -"dcT" = ( +"cZX" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cZY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dcU" = ( +"cZZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -76435,7 +76945,7 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/xenobiology) -"dcV" = ( +"daa" = ( /obj/structure/window/reinforced, /obj/machinery/button/door{ id = "xenobio6"; @@ -76449,7 +76959,7 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"dcW" = ( +"dab" = ( /obj/structure/cable/yellow{ icon_state = "0-2" }, @@ -76460,7 +76970,85 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/xenobiology) -"dcX" = ( +"dac" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Pen #5"; + dir = 4; + network = list("SS13","RD","Xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"dad" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen #5"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio1"; + name = "containment blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"dae" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen #5"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"daf" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen #6"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"dag" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen #6"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"dah" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Pen #6"; + dir = 8; + network = list("SS13","RD","Xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"dai" = ( /obj/structure/cable/yellow{ icon_state = "0-4" }, @@ -76472,7 +77060,26 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/xenobiology) -"dcY" = ( +"daj" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio1"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"dak" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -76482,7 +77089,20 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dcZ" = ( +"dal" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dam" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -76490,7 +77110,7 @@ /obj/effect/turf_decal/stripes/corner, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dda" = ( +"dan" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -76506,7 +77126,7 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"ddb" = ( +"dao" = ( /obj/structure/cable/yellow, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -76521,7 +77141,7 @@ }, /turf/open/floor/plating, /area/science/xenobiology) -"ddc" = ( +"dap" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -76530,7 +77150,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"ddd" = ( +"daq" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -76542,11 +77162,17 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dde" = ( +"dar" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/science/xenobiology) +"das" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"ddf" = ( +"dat" = ( +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"dau" = ( /obj/machinery/portable_atmospherics/canister, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 @@ -76561,7 +77187,60 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"ddg" = ( +"dav" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"daw" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dax" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"day" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"daz" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"daA" = ( /obj/machinery/portable_atmospherics/canister, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 @@ -76576,21 +77255,38 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"ddh" = ( +"daB" = ( /turf/open/floor/plating{ icon_state = "platingdmg3" }, /area/maintenance/department/science/xenobiology) -"ddi" = ( +"daC" = ( /obj/structure/rack, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"ddj" = ( +"daD" = ( /turf/open/floor/plating{ icon_state = "platingdmg2" }, /area/maintenance/department/science/xenobiology) -"ddk" = ( +"daE" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"daF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch{ + name = "Test Chamber Maintenance"; + req_access_txt = "47"; + req_one_access_txt = "0" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"daG" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -76602,7 +77298,19 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"ddl" = ( +"daH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"daI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -76622,7 +77330,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"ddm" = ( +"daJ" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -76637,7 +77345,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"ddn" = ( +"daK" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -76646,7 +77354,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"ddo" = ( +"daL" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -76658,7 +77366,7 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"ddp" = ( +"daM" = ( /obj/machinery/door/airlock/hatch{ name = "Test Chamber Maintenance"; req_access_txt = "47"; @@ -76669,17 +77377,111 @@ }, /turf/open/floor/plating, /area/science/xenobiology) -"ddq" = ( +"daN" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"ddr" = ( +"daO" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"dds" = ( +"daP" = ( +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"daQ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"daR" = ( +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"daS" = ( +/obj/machinery/computer/security/telescreen{ + dir = 1; + name = "Test Chamber Monitor"; + network = list("Xeno"); + pixel_y = 2 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"daT" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/button/ignition{ + id = "Xenobio"; + pixel_x = -6; + pixel_y = -3 + }, +/obj/machinery/button/door{ + id = "Xenolab"; + name = "Test Chamber Blast Doors"; + pixel_x = 4; + pixel_y = -3; + req_access_txt = "55" + }, +/obj/structure/table/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"daU" = ( +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Maximum Security Test Chamber"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"daV" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"daW" = ( +/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/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"daX" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -76688,13 +77490,64 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"ddt" = ( +"daY" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"ddu" = ( +"daZ" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"dba" = ( +/obj/structure/cable/yellow, +/obj/machinery/shieldwallgen/xenobiologyaccess, +/turf/open/floor/plating, +/area/science/xenobiology) +"dbb" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "test chamber blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"dbc" = ( +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "test chamber blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"dbd" = ( +/obj/machinery/door/window/southleft{ + dir = 2; + name = "Maximum Security Test Chamber"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "test chamber blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"dbe" = ( /obj/structure/cable/yellow{ icon_state = "0-8" }, @@ -76709,7 +77562,7 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/xenobiology) -"ddv" = ( +"dbf" = ( /obj/structure/cable/yellow{ icon_state = "0-8" }, @@ -76720,7 +77573,62 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/xenobiology) -"ddw" = ( +"dbg" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"dbh" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/engine, +/area/science/xenobiology) +"dbi" = ( +/obj/structure/disposaloutlet{ + dir = 2 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"dbj" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 10 + }, +/obj/item/device/electropack, +/turf/open/floor/engine, +/area/science/xenobiology) +"dbk" = ( +/obj/machinery/sparker{ + id = "Xenobio"; + pixel_x = -25 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"dbl" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"dbm" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/engine, +/area/science/xenobiology) +"dbn" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/stack/cable_coil, +/obj/item/device/multitool, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"dbo" = ( /obj/structure/cable/yellow, /obj/machinery/power/apc{ dir = 4; @@ -76730,7 +77638,91 @@ }, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"ddx" = ( +"dbp" = ( +/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner, +/turf/open/floor/engine, +/area/science/xenobiology) +"dbq" = ( +/obj/machinery/light/small, +/turf/open/floor/engine, +/area/science/xenobiology) +"dbr" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Test Chamber"; + dir = 1; + network = list("SS13","RD","Xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"dbs" = ( +/obj/item/device/radio/intercom{ + pixel_y = -25 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"dbt" = ( +/obj/structure/table, +/obj/item/device/assembly/igniter{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 2; + pixel_y = -1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"dbu" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"dbv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"dbw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"dbx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + glass = 1; + name = "Slime Euthanization Chamber"; + opacity = 0; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dby" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -76741,17 +77733,56 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"ddy" = ( +"dbz" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dbA" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dbB" = ( +/obj/machinery/door/airlock/research{ + glass = 1; + name = "Slime Euthanization Chamber"; + opacity = 0; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dbC" = ( /turf/open/floor/plating{ icon_state = "platingdmg1" }, /area/maintenance/department/science/xenobiology) -"ddz" = ( +"dbD" = ( +/obj/structure/rack, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/suit/hooded/wintercoat, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"dbE" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1; + name = "euthanization chamber freezer"; + on = 1; + target_temperature = 80 + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"dbF" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/open/floor/plating, /area/science/xenobiology) -"ddA" = ( +"dbG" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research{ @@ -76762,7 +77793,23 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"ddB" = ( +"dbH" = ( +/turf/open/floor/circuit/killroom, +/area/science/xenobiology) +"dbI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1; + external_pressure_bound = 140; + name = "server vent"; + pressure_checks = 0 + }, +/turf/open/floor/circuit/killroom, +/area/science/xenobiology) +"dbJ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/circuit/killroom, +/area/science/xenobiology) +"dbK" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 1; external_pressure_bound = 120; @@ -76770,4492 +77817,31 @@ }, /turf/open/floor/circuit/killroom, /area/science/xenobiology) -"ddC" = ( +"dbL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small, +/turf/open/floor/circuit/killroom, +/area/science/xenobiology) +"dbM" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Kill Chamber"; + dir = 1; + network = list("SS13","RD","Xeno"); + start_active = 1 + }, +/turf/open/floor/circuit/killroom, +/area/science/xenobiology) +"dbN" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"dbO" = ( /obj/structure/disposalpipe/trunk{ dir = 1 }, /obj/structure/disposaloutlet, /turf/open/floor/plating/airless, /area/science/xenobiology) -"ddE" = ( -/obj/effect/landmark/start/cook, -/obj/machinery/holopad, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"ddF" = ( -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"ddG" = ( -/obj/effect/turf_decal/stripes/line, -/obj/docking_port/stationary/public_mining_dock, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"ddH" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/pod/dark, -/area/shuttle/transport) -"ddJ" = ( -/obj/machinery/door/airlock/titanium, -/turf/open/floor/pod/light, -/area/shuttle/transport) -"ddK" = ( -/obj/machinery/computer/shuttle/ferry/request{ - dir = 8 - }, -/turf/open/floor/pod/dark, -/area/shuttle/transport) -"ddL" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/plating/airless, -/area/shuttle/transport) -"ddM" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/pod/light, -/area/shuttle/transport) -"ddO" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"ddP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ddQ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ddS" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Fore"; - dir = 4; - network = list("SS13","Engine") - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"ddT" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"ddU" = ( -/obj/machinery/atmospherics/pipe/manifold4w/general/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"ddV" = ( -/obj/machinery/atmospherics/pipe/manifold4w/general/visible, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"ddW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ddX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ddY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ddZ" = ( -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"dea" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - volume_rate = 200 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"deb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"ded" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) -"dee" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) -"def" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"deh" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) -"dei" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"dej" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"dek" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 2; - name = "Mix to Gas" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"del" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"dem" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Gas to Mix" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"den" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"dep" = ( -/obj/machinery/firealarm{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"deq" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"der" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"des" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"deu" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"dev" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"dew" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Laser Room"; - req_access_txt = "10" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"dex" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"dey" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"deA" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"deB" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"deC" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"deD" = ( -/obj/machinery/status_display, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"deI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"deJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, -/turf/open/floor/engine, -/area/engine/engineering) -"deK" = ( -/obj/structure/cable/white, -/obj/machinery/power/emitter/anchored{ - dir = 2; - state = 2 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"deL" = ( -/obj/structure/cable/white, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"deM" = ( -/obj/structure/sign/securearea, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"deN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"deO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"deS" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable, -/obj/structure/window/plasma/reinforced, -/turf/open/floor/engine, -/area/engine/supermatter) -"deU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, -/turf/open/floor/engine, -/area/engine/engineering) -"deV" = ( -/obj/structure/sign/fire, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"deW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Starboard"; - dir = 4; - network = list("SS13","Engine") - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"deX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"deY" = ( -/obj/structure/reflector/single/anchored{ - dir = 9 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"dfa" = ( -/obj/machinery/power/supermatter_shard/crystal/engine, -/turf/open/floor/engine, -/area/engine/supermatter) -"dfb" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"dfc" = ( -/obj/structure/sign/electricshock, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"dfd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"dfe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, -/turf/open/floor/engine, -/area/engine/engineering) -"dff" = ( -/obj/structure/reflector/double/anchored{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"dfg" = ( -/obj/structure/reflector/single/anchored{ - dir = 10 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"dfh" = ( -/obj/structure/sign/nosmoking_2, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"dfi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"dfj" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"dfk" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/window/plasma/reinforced{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"dfm" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/window/plasma/reinforced{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"dfp" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"dfq" = ( -/obj/machinery/camera{ - c_tag = "Supermatter Chamber"; - dir = 4; - network = list("Engine") - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"dft" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"dfu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - filter_type = "n2" - }, -/turf/open/floor/engine, -/area/engine/engineering) -"dfz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"dfA" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"dfB" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/power/emitter/anchored{ - dir = 1; - state = 2 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"dfC" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/power/emitter/anchored{ - dir = 1; - state = 2 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"dfD" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"dfE" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"dfF" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/meter, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"dfG" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"dfI" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Cooling Loop Bypass" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"dfJ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"dfM" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"dfO" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"dfP" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Atmos to Loop" - }, -/turf/open/floor/engine, -/area/engine/engineering) -"dfQ" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/engine, -/area/engine/engineering) -"dfR" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Gas to Cold Loop"; - on = 1 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/engineering) -"dfS" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/engineering) -"dfT" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/engineering) -"dfU" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Cold Loop to Gas"; - on = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"dfV" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"dfW" = ( -/obj/item/wrench, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"dfX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engine/engineering) -"dfY" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"dfZ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"dga" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"dgb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"dgc" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"dgd" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space, -/area/space/nearstation) -"dge" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"dgf" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/space, -/area/space/nearstation) -"dgg" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"dgh" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"dgi" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/floor/plating, -/area/maintenance/starboard) -"dgj" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"dgk" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"dgm" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"dgo" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"dgp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"dgr" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 10 - }, -/turf/open/space, -/area/space/nearstation) -"dgt" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"dgu" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space, -/area/space/nearstation) -"dgv" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"dgw" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"dgz" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/delivery, -/obj/item/clothing/glasses/meson/engine, -/turf/open/floor/plasteel, -/area/engine/engineering) -"dgA" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"dgB" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"dgI" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 5 - }, -/turf/open/space, -/area/space/nearstation) -"dgJ" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"dgK" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"dgM" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 10 - }, -/turf/open/space, -/area/space/nearstation) -"dgN" = ( -/obj/structure/lattice, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"dgO" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"dgS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/transit_tube/horizontal, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"dha" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"dhc" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"dhe" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"dhg" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"dhh" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Mix to Engine"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"dhi" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/door/window/northleft{ - dir = 8; - icon_state = "left"; - name = "Inner Pipe Access"; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) -"dhj" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) -"dhk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"dhl" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 9 - }, -/turf/open/space, -/area/space/nearstation) -"dhn" = ( -/obj/structure/table, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fore) -"dho" = ( -/obj/item/stack/sheet/cardboard, -/obj/structure/light_construct/small{ - dir = 1 - }, -/obj/structure/closet/crate, -/obj/item/coin/silver, -/obj/item/grenade/chem_grenade, -/obj/item/storage/box/lights/mixed, -/obj/item/watertank, -/obj/item/storage/box/donkpockets, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dhp" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"dhq" = ( -/obj/structure/table/reinforced, -/obj/structure/light_construct/small{ - dir = 8 - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/structure/window/reinforced, -/obj/item/poster/random_official, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dhr" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"dhs" = ( -/obj/structure/rack, -/obj/item/clothing/under/color/blue, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/neck/tie/blue, -/obj/item/clothing/head/soft/blue, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault, -/area/crew_quarters/fitness/recreation) -"dht" = ( -/obj/item/cigbutt, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dhu" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dhv" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Outer Window"; - req_access_txt = "0" - }, -/obj/machinery/door/window/brigdoor{ - dir = 8; - name = "Brig Control Desk"; - req_access_txt = "3" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/item/poster/random_official, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"dhw" = ( -/obj/structure/closet, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dhx" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dhy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet/cardboard, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/floorgrime, -/area/quartermaster/warehouse) -"dhz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"dhA" = ( -/obj/machinery/washing_machine, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/barber, -/area/crew_quarters/dorms) -"dhB" = ( -/obj/item/clothing/glasses/meson, -/obj/structure/closet/crate, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dhC" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/rack, -/obj/item/stack/sheet/cardboard, -/obj/item/stack/rods/fifty, -/obj/item/paper, -/obj/item/storage/box/lights/mixed, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/floorgrime, -/area/quartermaster/warehouse) -"dhD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"dhE" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dhF" = ( -/obj/structure/closet/wardrobe/pjs, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault, -/area/crew_quarters/dorms) -"dhG" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/brown/corner{ - dir = 4 - }, -/area/construction/storage/wing) -"dhH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dhI" = ( -/obj/machinery/vending/assist, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/storage/primary) -"dhJ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/delivery, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"dhK" = ( -/obj/structure/closet, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dhL" = ( -/obj/structure/table, -/obj/item/device/analyzer, -/obj/machinery/power/apc{ - dir = 2; - name = "Tool Storage APC"; - areastring = "/area/storage/primary"; - pixel_y = -27 - }, -/obj/structure/cable/yellow, -/obj/item/wrench, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/brown{ - dir = 10 - }, -/area/storage/primary) -"dhM" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/arrival{ - dir = 5 - }, -/area/hallway/secondary/entry) -"dhN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"dhO" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dhP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"dhQ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"dhR" = ( -/obj/structure/closet, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"dhS" = ( -/obj/machinery/vending/cigarette, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/crew_quarters/toilet/auxiliary) -"dhT" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall, -/area/crew_quarters/bar) -"dhU" = ( -/obj/structure/piano, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"dhV" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"dhW" = ( -/obj/structure/table/wood, -/obj/item/staff/broom, -/obj/item/wrench, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"dhX" = ( -/obj/structure/table/wood, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/clothing/head/sombrero, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"dhZ" = ( -/obj/structure/urinal{ - pixel_y = 29 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/crew_quarters/toilet/auxiliary) -"dib" = ( -/obj/structure/table/wood, -/obj/item/lipstick{ - pixel_y = 5 - }, -/obj/machinery/camera{ - c_tag = "Theatre - Stage"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/device/instrument/guitar, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"dic" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/secondary/entry) -"did" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"dif" = ( -/obj/item/soap/nanotrasen, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"dig" = ( -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"dih" = ( -/obj/machinery/light/small, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/crew_quarters/toilet/auxiliary) -"dii" = ( -/obj/machinery/door/window{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Theatre Stage"; - req_access_txt = "0" - }, -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"dij" = ( -/obj/item/device/instrument/violin, -/obj/structure/table/wood, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"dik" = ( -/obj/structure/sign/poster/official/random, -/turf/closed/wall, -/area/crew_quarters/kitchen) -"dil" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/clothing/mask/pig, -/obj/item/bikehorn, -/obj/structure/table/wood, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"dim" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/sign/poster/contraband/clown{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"din" = ( -/obj/structure/table/wood, -/obj/item/paper, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"dio" = ( -/obj/structure/closet/crate, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/poster/random_official, -/turf/open/floor/plating, -/area/maintenance/port) -"dip" = ( -/obj/structure/table/wood, -/obj/machinery/button/door{ - id = "corporate_privacy"; - name = "corporate showroom shutters control"; - pixel_x = 28; - req_access_txt = "19" - }, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/item/device/paicard{ - desc = "A real Nanotrasen success, these personal AIs provide all of the companionship of an AI without any law related red-tape."; - name = "Nanotrasen-brand personal AI device exhibit" - }, -/turf/open/floor/carpet, -/area/bridge/showroom/corporate) -"diq" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/clothing/mask/horsehead, -/obj/structure/table/wood, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/item/clothing/mask/cigarette/pipe, -/obj/item/clothing/mask/fakemoustache, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"dir" = ( -/obj/machinery/camera{ - c_tag = "Theatre - Backstage"; - dir = 1; - network = list("SS13") - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/obj/structure/closet/crate/wooden/toy, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"dis" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"dit" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port) -"diu" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/storage/box/lights/mixed, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"div" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port) -"diw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/firealarm{ - pixel_y = 29 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/obj/structure/closet/crate/hydroponics, -/obj/item/shovel/spade, -/obj/item/wrench, -/obj/item/reagent_containers/glass/bucket, -/obj/item/cultivator, -/obj/item/wirecutters, -/turf/open/floor/plasteel/hydrofloor, -/area/hydroponics) -"dix" = ( -/obj/structure/rack, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"diy" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/poster/random_contraband, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"diz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/hydrofloor, -/area/hydroponics) -"diA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"diB" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"diC" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"diD" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"diE" = ( -/obj/structure/rack, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/bottle/vermouth{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"diF" = ( -/obj/structure/chair/stool, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"diG" = ( -/obj/structure/chair/stool, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"diH" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"diI" = ( -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/reagent_containers/food/drinks/beer{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/ale, -/obj/structure/table/wood, -/obj/item/device/instrument/eguitar, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"diJ" = ( -/obj/structure/light_construct/small, -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"diK" = ( -/obj/item/dice/d20, -/obj/item/dice, -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"diL" = ( -/obj/item/tank/internals/air, -/obj/item/tank/internals/air, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/machinery/space_heater, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"diM" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"diN" = ( -/obj/structure/chair/stool, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"diP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"diQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/aft) -"diR" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/ore/slag, -/turf/open/floor/plating, -/area/maintenance/aft) -"diS" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/maintenance/aft) -"diT" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"diU" = ( -/obj/structure/closet/crate, -/obj/item/poster/random_official, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"diV" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Departure Lounge - Port Fore"; - dir = 4; - network = list("SS13") - }, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-24" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"diW" = ( -/obj/machinery/hydroponics/soil{ - pixel_y = 8 - }, -/obj/item/seeds/glowshroom, -/obj/item/seeds/corn, -/obj/effect/turf_decal/stripes/line, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"djg" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"djh" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"djj" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/camera{ - c_tag = "Chapel - Funeral Parlour"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/chapel/main) -"djk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/chapel/main) -"djr" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main) -"djs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/science/xenobiology) -"djt" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"djx" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/item/crowbar, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"djz" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; - name = "Arrival Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"djB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/landmark/observer_start, -/obj/effect/turf_decal/plaque{ - icon_state = "L8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"djC" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; - name = "Arrival Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"djE" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"djM" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 4 - }, -/obj/docking_port/mobile/arrivals, -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 15; - id = "arrivals_stationary"; - name = "arrivals"; - width = 7 - }, -/turf/open/floor/plating/airless, -/area/shuttle/arrival) -"djR" = ( -/obj/machinery/door/airlock/titanium{ - name = "Arrivals Shuttle Airlock" - }, -/turf/open/floor/plating, -/area/shuttle/arrival) -"djW" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/paper, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"djX" = ( -/obj/structure/closet/coffin, -/obj/machinery/door/window/eastleft{ - name = "Coffin Storage"; - req_access_txt = "22" - }, -/turf/open/floor/plating, -/area/chapel/main) -"dli" = ( -/obj/structure/chair, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"dlj" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"dlk" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small/built{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"dll" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/built{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"dlm" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/built{ - dir = 2 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"dln" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"dlo" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"dlp" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/light/small/built{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"dlq" = ( -/obj/structure/chair, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"dlr" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"dls" = ( -/obj/machinery/holopad, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"dlt" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"dlv" = ( -/obj/structure/table, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/obj/machinery/status_display{ - dir = 8; - pixel_x = 32 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"dlw" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"dlx" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"dly" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/floorgrime, -/area/shuttle/escape) -"dlz" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"dlA" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/labor) -"dlB" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/mining) -"dlC" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/supply) -"dlD" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/supply) -"dlE" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/pod/light, -/area/shuttle/transport) -"dlF" = ( -/obj/machinery/light/small, -/turf/open/floor/pod/light, -/area/shuttle/transport) -"dlG" = ( -/obj/machinery/light, -/turf/open/floor/pod/light, -/area/shuttle/transport) -"dlH" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"dlI" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"dlN" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/supermatter) -"dlV" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dmq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - glass = 1; - name = "Slime Euthanization Chamber"; - opacity = 0; - req_access_txt = "55" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dmr" = ( -/obj/machinery/door/airlock/research{ - glass = 1; - name = "Slime Euthanization Chamber"; - opacity = 0; - req_access_txt = "55" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dmD" = ( -/obj/structure/displaycase/trophy, -/turf/open/floor/wood, -/area/library) -"dmF" = ( -/turf/closed/wall, -/area/quartermaster/sorting) -"dmH" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"dmT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"dnd" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dne" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dnh" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dni" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dnk" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dnr" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Port Bow Maintenance APC"; - areastring = "/area/maintenance/port/fore"; - pixel_x = 26 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port/fore) -"dnu" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dnz" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dnF" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"dnG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dnH" = ( -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dnM" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dnO" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dnP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dnR" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dnS" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dnZ" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"dod" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"doe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"doh" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/fore) -"dou" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"doA" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"doJ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dpk" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dps" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"dpG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dpL" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"dqe" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dqp" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"dqu" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dqT" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"drQ" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port/fore) -"dsg" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"dss" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dst" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dtl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dtE" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dtP" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dtR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dtS" = ( -/obj/item/cigbutt, -/obj/machinery/power/apc{ - dir = 2; - name = "Starboard Bow Maintenance APC"; - areastring = "/area/maintenance/starboard/fore"; - pixel_y = -28 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"duo" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dux" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dvq" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dvt" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"dvw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dvE" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dvY" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dwb" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dwc" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dwe" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dwi" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dwj" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dwv" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dww" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dwL" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/aft) -"dwN" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dwQ" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dwX" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"dwY" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dxh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dxk" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dxv" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"dxO" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dxQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dyc" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dyg" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dyj" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"dyp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"dyw" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dyQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"dzc" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dzI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dzK" = ( -/turf/closed/wall/r_wall, -/area/maintenance/port/aft) -"dzQ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dzR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dAd" = ( -/obj/machinery/power/apc/highcap/five_k{ - dir = 2; - name = "Starboard Quarter Maintenance APC"; - areastring = "/area/maintenance/starboard/aft"; - pixel_y = -24 - }, -/obj/structure/cable/yellow, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dAh" = ( -/obj/item/storage/box, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dAn" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dAp" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"dAw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dAx" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dAZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dBe" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"dBu" = ( -/turf/closed/wall, -/area/engine/gravity_generator) -"dBw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"dBx" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"dBy" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"dBz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"dBA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"dBB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"dBC" = ( -/obj/machinery/meter, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"dBF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/brig) -"dBG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/brig) -"dBH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Desk"; - req_access_txt = "63" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"dBI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/engine/break_room) -"dBJ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"dBK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmos Blast Door" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/engine/atmos) -"dBM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/caution{ - dir = 8 - }, -/area/engine/atmos) -"dBN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/medical/virology) -"dBO" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"dBS" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dBT" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/medical/virology) -"dBU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/medical/virology) -"dBV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/medical/virology) -"dBX" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"dBY" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/crew_quarters/fitness/recreation) -"dBZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/warden) -"dCa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/warden) -"dCb" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/red, -/area/security/main) -"dCc" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/fitness/recreation) -"dCe" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/fore) -"dCf" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"dCg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/brig) -"dCh" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"dCi" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"dCj" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"dCk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/engineering) -"dCl" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dCn" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"dCo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"dCp" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/fore) -"dCq" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/courtroom) -"dCr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"dCs" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dCt" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/storage/primary) -"dCv" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/floorgrime, -/area/crew_quarters/locker) -"dCw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/engineering) -"dCx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"dCz" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"dCA" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/locker) -"dCB" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"dCC" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dCD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dCE" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"dCH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"dCI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"dCJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"dCK" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/bridge) -"dCM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"dCN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"dCO" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"dCP" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"dCS" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/bar, -/area/crew_quarters/bar) -"dCT" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"dCU" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"dCV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard) -"dCW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port) -"dCX" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/library) -"dCY" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/atmos) -"dCZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/library) -"dDa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/secondary/command) -"dDb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/bar, -/area/crew_quarters/bar) -"dDe" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/kitchen) -"dDf" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/bridge/showroom/corporate) -"dDg" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/bridge/showroom/corporate) -"dDi" = ( -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/library) -"dDl" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/green/side{ - dir = 8 - }, -/area/hydroponics) -"dDm" = ( -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/atmos) -"dDo" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"dDp" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/research) -"dDq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dDr" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dDs" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard) -"dDt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"dDu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dDv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/blue/side{ - dir = 8 - }, -/area/hallway/primary/aft) -"dDw" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dDy" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/research) -"dDz" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"dDA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"dDB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dDC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"dDE" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dDF" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dDG" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dDH" = ( -/obj/structure/chair{ - pixel_y = -2 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/vault, -/area/chapel/main) -"dDI" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dDJ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/construction/mining/aux_base) -"dDK" = ( -/obj/structure/rack, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/device/assault_pod/mining, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/construction/mining/aux_base) -"dDL" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dDN" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"dDO" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/chair/office/light, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"dDP" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/table, -/obj/item/device/megaphone, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"EDa" = ( -/obj/docking_port/stationary{ - dheight = 1; - dir = 8; - dwidth = 12; - height = 17; - id = "syndicate_nw"; - name = "northwest of station"; - turf_type = /turf/open/space; - width = 23 - }, -/turf/open/space/basic, -/area/space/nearstation) -"EDb" = ( -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"EDi" = ( -/obj/docking_port/mobile{ - callTime = 250; - dheight = 0; - dir = 2; - dwidth = 11; - height = 15; - id = "whiteship"; - launch_status = 0; - movement_force = list("KNOCKDOWN" = 0, "THROW" = 0); - name = "NT Recovery White-Ship"; - port_direction = 8; - preferred_direction = 4; - roundstart_move = "whiteship_away"; - width = 28 - }, -/obj/machinery/door/airlock/titanium{ - name = "recovery shuttle external airlock" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/docking_port/stationary{ - dir = 2; - dwidth = 11; - height = 15; - id = "whiteship_home"; - name = "SS13: Auxiliary Dock, Station-Port"; - width = 28 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) -"EDj" = ( -/obj/structure/sign/restroom, -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"EDk" = ( -/obj/structure/sign/cargo, -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"EDl" = ( -/obj/machinery/porta_turret/centcom_shuttle/weak{ - dir = 4 - }, -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"EDm" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/turretid{ - icon_state = "control_kill"; - lethal = 1; - locked = 0; - pixel_x = -28; - req_access = null - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/abandoned) -"EDo" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/atmos) -"EDw" = ( -/obj/machinery/rnd/protolathe/department/service, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/hydroponics) -"EDx" = ( -/turf/closed/wall/mineral/plastitanium, -/area/hallway/secondary/entry) -"EDz" = ( -/turf/closed/wall/mineral/plastitanium, -/area/security/prison) -"EDB" = ( -/turf/closed/wall/mineral/plastitanium, -/area/crew_quarters/fitness/recreation) -"EDC" = ( -/turf/closed/wall/mineral/plastitanium, -/area/engine/break_room) -"EDD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/main) -"EDE" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/engine/engineering) -"EDF" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"EDG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"EDH" = ( -/obj/machinery/droneDispenser, -/turf/open/floor/plating, -/area/maintenance/aft) -"Ljw" = ( -/obj/structure/sign/poster/official/random, -/turf/closed/wall, -/area/hydroponics) -"QsX" = ( -/obj/machinery/autolathe{ - name = "public autolathe" - }, -/obj/machinery/door/window/eastright{ - dir = 2; - name = "Research and Development Desk"; - req_access_txt = "7" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters"; - name = "research shutters" - }, -/turf/open/floor/plating, -/area/science/lab) -"QsY" = ( -/obj/structure/table, -/obj/item/device/paicard, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 2 - }, -/area/science/research) -"QsZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 2 - }, -/area/science/research) -"Qta" = ( -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/lab) -"Qtb" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"Qtc" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/science/circuit) -"Qtd" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"Qte" = ( -/obj/structure/target_stake, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"Qtf" = ( -/obj/structure/closet/crate, -/obj/item/target/alien, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/item/target/clown, -/obj/item/target/syndicate, -/obj/item/target/syndicate, -/obj/item/gun/energy/laser/practice, -/obj/item/gun/energy/laser/practice, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"Qtg" = ( -/obj/structure/falsewall, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"Qth" = ( -/obj/structure/reagent_dispensers/beerkeg{ - desc = "One of the more successful achievements of the Nanotrasen Corporate Warfare Division, their nuclear fission explosives are renowned for being cheap to produce and devastatingly effective. Signs explain that though this particular device has been decommissioned, every Nanotrasen station is equipped with an equivalent one, just in case. All Captains carefully guard the disk needed to detonate them - at least, the sign says they do. There seems to be a tap on the back."; - icon = 'icons/obj/machines/nuke.dmi'; - icon_state = "nuclearbomb_base"; - name = "Nanotrasen-brand nuclear fission explosive"; - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"Qti" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/space) -"Qtj" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"Qtk" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"Qtl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/research/glass{ - name = "Circuitry Lab"; - req_access_txt = "47" - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"Qtm" = ( -/turf/closed/wall, -/area/science/circuit) -"Qtn" = ( -/turf/closed/wall, -/area/science/circuit) -"Qto" = ( -/turf/closed/wall, -/area/science/circuit) -"Qtp" = ( -/turf/closed/wall, -/area/science/circuit) -"Qtq" = ( -/turf/closed/wall, -/area/science/circuit) -"Qtr" = ( -/turf/closed/wall, -/area/science/circuit) -"Qts" = ( -/turf/closed/wall, -/area/science/circuit) -"Qtt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"Qtu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"Qtv" = ( -/obj/machinery/airalarm{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"Qtw" = ( -/obj/item/device/multitool, -/obj/item/screwdriver, -/obj/structure/table/reinforced, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"Qtx" = ( -/obj/structure/table/reinforced, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - dir = 2; - name = "Science Requests Console"; - pixel_y = 30; - receive_ore_updates = 1 - }, -/obj/item/device/integrated_electronics/debugger, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"Qty" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/stock_parts/cell/super, -/obj/item/stock_parts/cell/super, -/obj/item/stack/sheet/metal/fifty, -/obj/structure/table/reinforced, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/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_y = 32 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"Qtz" = ( -/obj/item/screwdriver, -/obj/structure/table/reinforced, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QtA" = ( -/obj/machinery/power/apc{ - areastring = "/area/science/circuit"; - dir = 1; - name = "Circuitry Lab APC"; - pixel_y = 30 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/table/reinforced, -/obj/item/device/multitool, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QtB" = ( -/obj/item/stock_parts/cell/super, -/obj/item/stock_parts/cell/super, -/obj/item/stack/sheet/metal/fifty, -/obj/structure/table/reinforced, -/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_y = 32 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QtC" = ( -/turf/closed/wall, -/area/science/circuit) -"QtD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"QtE" = ( -/turf/open/floor/plasteel, -/area/science/circuit) -"QtF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"QtG" = ( -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QtH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QtI" = ( -/obj/structure/table/reinforced, -/obj/item/device/integrated_circuit_printer/upgraded, -/obj/item/device/integrated_electronics/analyzer, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QtJ" = ( -/obj/effect/landmark/start/scientist, -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QtK" = ( -/obj/item/device/integrated_electronics/wirer, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QtL" = ( -/obj/structure/table/reinforced, -/obj/item/device/integrated_circuit_printer/upgraded, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QtM" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QtN" = ( -/obj/item/device/integrated_electronics/analyzer, -/obj/item/device/integrated_electronics/debugger, -/obj/item/device/integrated_electronics/wirer, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QtO" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/circuit) -"QtP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"QtQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"QtR" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QtS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QtT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/rnd/protolathe/department/science, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QtU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/autolathe, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QtV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QtW" = ( -/obj/item/stack/sheet/glass/fifty, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QtX" = ( -/turf/closed/wall, -/area/science/circuit) -"QtY" = ( -/obj/structure/chair/comfy, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"QtZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"Qua" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"Qub" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"Quc" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/circuit) -"Qud" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"Que" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/circuit) -"Quf" = ( -/obj/structure/table/glass, -/obj/machinery/camera/autoname{ - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"Qug" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"Quh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"Qui" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/research/glass{ - name = "Circuitry Lab"; - req_access_txt = "47" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/science/circuit) -"Quj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"Quk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"Qul" = ( -/obj/machinery/light, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"Qum" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"Qun" = ( -/obj/item/device/radio/intercom{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"Quo" = ( -/obj/machinery/camera{ - c_tag = "Research Division Circuitry Lab"; - dir = 1; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"Qup" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"Quq" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/libraryconsole/bookmanagement, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"Qur" = ( -/obj/machinery/bookbinder, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"Qus" = ( -/obj/machinery/libraryscanner, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"Qut" = ( -/turf/closed/wall, -/area/science/circuit) -"Quu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"Quv" = ( -/turf/closed/wall, -/area/science/circuit) -"Quw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/closed/wall, -/area/science/circuit) -"Qux" = ( -/turf/closed/wall, -/area/science/circuit) -"Quy" = ( -/turf/closed/wall, -/area/science/circuit) -"Quz" = ( -/turf/closed/wall, -/area/science/circuit) -"QuA" = ( -/turf/closed/wall, -/area/science/circuit) -"QuB" = ( -/turf/closed/wall, -/area/science/circuit) -"QuC" = ( -/turf/closed/wall, -/area/science/circuit) -"QuD" = ( -/turf/closed/wall, -/area/science/circuit) -"QuE" = ( -/turf/closed/wall, -/area/science/circuit) -"QuF" = ( -/turf/closed/wall, -/area/science/circuit) -"QuG" = ( -/turf/closed/wall, -/area/science/circuit) -"QuH" = ( -/turf/closed/wall, -/area/science/circuit) -"QuI" = ( -/turf/closed/wall, -/area/science/circuit) -"QuJ" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"QuK" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"QuL" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"QuM" = ( -/obj/machinery/vending/assist, -/turf/open/floor/plasteel, -/area/science/mixing) -"QuN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"QuO" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"QuP" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"QuQ" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"QuR" = ( -/obj/machinery/vending/snack/random, -/turf/open/floor/plasteel, -/area/science/mixing) -"QuS" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel, -/area/science/mixing) -"QuT" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"QuU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"QuV" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"QuW" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"QuX" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/circuit) (1,1,1) = {" aaa @@ -86772,7 +83358,7 @@ aaa aaa aaa aaa -aac +aab aaa aaa aaa @@ -87055,11 +83641,11 @@ aaa aaa aaa aaa -cVF -cVF -cVI -cVF -cVF +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -87305,22 +83891,22 @@ aaa aaa aaa aaa -aac +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa -cVN -cWf -cWf -cWf -cVG -cWX -cVY -cXw -cVG -cWf -cWf -cWf -cYq aaa aaa aaa @@ -87564,21 +84150,21 @@ aaa aaa aaa aaa -cVF -cVF -cWe -cWe -cVF -cVF -cVF -cXg -cVF -cVF -cVF -cWe -cWe -cVF -cVF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -87783,7 +84369,22 @@ aaa aaa aaa aaa -aac +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -87821,21 +84422,6 @@ aaa aaa aaa aaa -cVF -cVF -cVF -cVF -cVF -cWO -cWY -cVY -cXx -cXF -cVF -cVF -cVF -cVF -cVF aaa aaa aaa @@ -88078,21 +84664,21 @@ aaa aaa aaa aaa -cVF -cVO -cVF -cWu -EDj -cWo -cWo -cWo -cWo -cWo -cVF -cXS -cYd -cYr -cVF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -88335,21 +84921,21 @@ aaa aaa aaa aaa -cVG -cVR -cWi -cWv -cWG -cWQ -cXa -cXi -cXb -cWo -cXM -cXT -cVY -cYr -cVG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -88534,7 +85120,7 @@ aaa aaa aaa aaa -aac +aab aaa aaa aaa @@ -88592,21 +85178,21 @@ aaa aaa aaa aaa -cVF -cVF -cVF -cVF -cVF -cWP -cWZ -cXh -cXy -cWo -cXL -cVY -cWo -cYs -cVG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -88849,21 +85435,21 @@ aaa aaa aaa aaa -cVG -cVT -cWk -cWx -cWI -cWR -cWZ -cXk -cXy -dlm -cVF -cXU -cYf -cYr -cVF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -89060,7 +85646,7 @@ aaa aaa aaa aaa -anT +anY aaa aaa aaf @@ -89106,21 +85692,21 @@ aaa aaa aaa aaa -cVF -cVS -cWj -cWw -cWH -cWo -cWZ -cXj -cXy -cWo -cVF -cVF -cYe -cVF -cVF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -89313,7 +85899,7 @@ aaa aaa aaa aaa -anT +anY aaa aaa aaa @@ -89363,21 +85949,21 @@ aaa aaa aaa aaa -cVF -cVF -cVF -cVF -cVF -cWo -cXb -cXl -cXa -cWo -cXN -cWo -cYg -cYu -cVF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -89571,12 +86157,12 @@ aaa aaa aaa aaf -aqB -anS +aqL +anX aaf aaf aaa -anS +anX aaf aaf aaf @@ -89620,21 +86206,21 @@ aaa aaa aaa aaa -cVF -cVU -cWl -cWy -cVF -cWS -cWo -cVY -cWo -cWo -cVF -cXV -cVY -cYt -cVG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -89824,16 +86410,16 @@ aaa aaa aaa aaa -anT +anY aaa aaa -anS +anX aaf -anS +anX aaf aaf aaf -anS +anX aaf aaa aaa @@ -89877,21 +86463,21 @@ aaf aaf aaf aaf -cVG -cVV -cWm -cWz -cVF -cVF -cVF -cXm -cVF -cVF -cVF -cXX -cYi -cYw -cVG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -90081,16 +86667,16 @@ aaa aaa aaa aaa -aqB -anS -anS -anS -anS -anS +aqL +anX +anX +anX +anX +anX aaf -anS -anS -anS +anX +anX +anX aaf aaf aaf @@ -90125,7 +86711,7 @@ aaa aaf aaa aaa -cVm +aaa aaa aaa aaf @@ -90134,21 +86720,21 @@ aaa aaf aaa aaf -cVG -cVV -cVY -cWo -cWn -cVY -cWo -cWo -cWo -cWo -cVF -cXW -cYh -cYv -cVF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -90337,17 +86923,17 @@ aaa aaa aaa aaa -anS +anX aaf aaf -anS -anS -apq -anS +anX +anX +apy +anX aaf -anS -anS -anS +anX +anX +anX aaf aaa aaa @@ -90357,15 +86943,15 @@ aaa aaa aaa aaa -EDx -aRA -aRA -aRA -aRA -aVs -aVs -aVs -aVs +aQu +aRJ +aRJ +aRJ +aRJ +aXC +aXC +aXC +aXC aaf aaa aaa @@ -90375,37 +86961,22 @@ aaa aaa aaa aaf -aVs -aVs -aVs -aVs -aVs +aXC +aXC +aXC +aXC +aXC aaa -cVm -cVw -cVm aaa -aVs -aVs -aVs -aVs +aaa +aaa +aaa +aXC +aXC +aXC +aXC aaa aaf -cVF -cVX -cWo -cWB -cVF -cWo -cXa -cXo -cXa -cWo -cVF -cVF -cVF -cVF -cVF aaa aaa aaa @@ -90430,7 +87001,22 @@ aaa aaa aaa aaa -aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab aaa aaa aaa @@ -90594,17 +87180,17 @@ aaa aaa aaa aaa -anS -anS -anS -anS -anS -anS -anS +anX +anX +anX +anX +anX +anX +anX aaf -anS -anS -anS +anX +anX +anX aaf aaa aaa @@ -90613,56 +87199,56 @@ aaa aaa aaa aaa -aOZ -aOZ -aOZ -aRB -aSH -aUb -aVt -aWT -aVs +aOT +aOT +aOT +aTk +aUA +aWf +aXD +aZh +aXC aaf aaf aaa -bcS -bcS -bcU -bcS -bcS +aaa +aaa +aaa +aaa +aaa aaa aaf aaf -aVs -bvB -aWT -aVs +aXC +bxW +aZh +aXC +aaa +aaa +aaa +aaa +aaa +aXC +bOa +aZh +aXC +aXC +aXC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa -cVr -cVv -ddL aaa -aVs -bKS -aWT -aVs -aVs -aVs -cVF -cVF -cWn -cVF -cVF -dll -cXb -cXn -cXb -cXG -cVF -cXY -dlo -cYx -cVF aaa aaa aaa @@ -90854,13 +87440,13 @@ aaa aaf aaf aaf -anS -anS -anS -anS -anS -anS -anS +anX +anX +anX +anX +anX +anX +anX aaf aaf aaf @@ -90869,57 +87455,57 @@ aaa aaa aaa aaa -cSP -aND -cSU -cTd -aRC -bsk -aUc -aVu -aWU -aYC +aNy +aOU +aQv +aRK +aTl +aUB +aWg +aXE +aZi +baZ aaa aaf aaa -bcS -bgq -beC -bjU -bcS +aaa +aaa +aaa +aaa +aaa aaa aaf aaa -aYC -aVu -aWU -aRA +baZ +aXE +aZi +aRJ +aaa +aaa +aaa +aaa +aaa +aRJ +bwm +aZi +bRu +bSW +bRu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa -cVn -dlF -cVn aaa -aRA -btS -aWU -bOd -bPA -bOd -cVI -cVZ -cWo -cVY -cWL -cWo -cWR -cXq -cWo -cWo -cXO -cWo -cYl -cYz -cVG aaa aaa aaa @@ -91109,15 +87695,15 @@ aaa aaa aaa aaf -aqB -anS -anS -anS -anS -anS -anS -apq -anS +aqL +anX +anX +anX +anX +anX +anX +apy +anX aaf aaf aaf @@ -91127,56 +87713,56 @@ aaa aaa aaa aaa -aOZ -aOZ -aOZ -aRB -aSI -aRA -aVv -aWU -aVs +aOT +aOT +aOT +aTk +aUC +aRJ +aXF +aZi +aXC aaf aaf aaa -bcS -dli -beC -dlj -bcS +aaa +aaa +aaa +aaa +aaa aaa aaf aaf -aVs -aVw -aWU -aVs -cVn -cVn -ddJ -cVn -cVn -aVs -aVw -aWU -bOd -aZZ -bOd -EDi -cVY -cWp -dlk -cWL -cVY -cWo -cXp -cVY -cWo -cVF -cXa -dlp -cYy -cVF +aXC +bxX +aZi +aXC +aaa +aaa +aaa +aaa +aaa +aXC +bxX +aZi +bRu +bcB +bRu +bVJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -91365,16 +87951,16 @@ aaa aaa aaa aaa -anS +anX aaf -anS +anX aaf -anS -anS -anS -anS -anS -anS +anX +anX +anX +anX +anX +anX aaf aaf aaa @@ -91385,55 +87971,55 @@ aaa aaa aaf aaa -EDx -aRA -aRA -aRA -aRA -cZf -aWV -aRA +aQu +aRJ +aRJ +aRJ +aRJ +aXG +aZj +aRJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aRJ +bxY +bzS +baZ +aaa +aaa +aaa +aaa +aaa +baZ +bOb +aZi +aXC +aXC +aXC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa -bcS -bcS -bcS -bcT -bcS -bcS -bcS aaa aaa -aRA -bvC -bxt -aYC -cVp -cVu -cVv -cVB -cVp -aYC -bKT -aWU -aVs -aVs -aVs -cVF -cVF -cWr -cVF -cVF -cWo -cXa -cXs -cXa -dln -cVF -cVF -cVF -cVF -cVF aaa aaa aaa @@ -91622,19 +88208,19 @@ aaa aaa aaa aaa -anS -anS -anS -anS -anS -avI -anS -anS -anS -anS -anS +anX +anX +anX +anX +anX +avW +anX +anX +anX +anX +anX aaf -anS +anX aaa aaf aaa @@ -91646,72 +88232,72 @@ aaf aaa aaf aaf -aRA -aVx -aWU -aVs -aVs -aVs -bcS -beB -beC -beC -beC -blN -bcS -aVs -aVs -aVs -bvD -aWU -aVs -cVn -cVu -cVv -cVB -cVn -aVs -aVw -aWU -aVs +aRJ +aXH +aZi +aXC +aXC +aXC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aXC +aXC +aXC +bxZ +aZi +aXC +aaa +aaa +aaa +aaa +aaa +aXC +bxX +aZi +aXC aaa aaf -cVF -cWa -cWq -cWC -EDk -cWo -cXa -cXr -cXb -cWo -cXP -cYa -cYm -cYA -cVF aaa aaa aaa aaa aaa aaa -ctm -anT -aai -anT -aai -anT -anT -anT -aqB -anT -anT -anT -anT -aqB -anT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cxH +anY +aae +anY +aae +anY +anY +anY +aqL +anY +anY +anY +anY +aqL +anY aaf aaa aaa @@ -91878,82 +88464,82 @@ aaa aaa aaa aaa -anS -anS -anS -apq -anS -anS +anX +anX +anX +apy +anX +anX aaf -anS -anS -anS +anX +anX +anX aaf -anS -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aVu -aWU -djz -aZZ -djC -bcT -beC -djE -djE -djE -beC -djR -djz -bsk -djC -aVu -bxu -aRA -cVn -dlE -cVv -cVv -cVn -aRA -aVu -aWU -aVs +anX +aDo +aDo +aDo +aDo +aDo +aDo +aDo +aDo +aDo +aDo +aDo +aDo +aDo +aDo +aXE +aZi +bba +bcB +bem +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bba +aUB +bem +aXE +bzT +aRJ +aaa +aaa +aaa +aaa +aaa +aRJ +aXE +aZi +aXC aaf aaf -cVG -cWc -cWs -cWs -cWN -cWo -cWo -cVY -cWo -cWo -cXQ -cVY -cYo -cYC -cVG aaa aaa aaa aaa aaa -anT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anY aaa aaa aaf @@ -91968,7 +88554,7 @@ aaf aaf aaa aaa -aai +aae aaa aaa aaa @@ -92110,7 +88696,7 @@ aaa aaa aaa aaa -EDa +aat aaa aaa aaa @@ -92135,97 +88721,97 @@ aaa aaa aaa aaa -anT +anY aaf aaf aaf aaf -anS -anS -anS -anS +anX +anX +anX +anX azg -anS -anS -aDb -aDa -cVK -cVK -cVK -cVK -cVK -cVK -cVK -cWF -cWK -aRD -aSJ -aDb -aVy -aWU -aVs -aVs -aVs -bcS -beD -beC -beC -beC -blO -bcS -aVs -aVs -aVs -aVu -bxv -aVs -ddH -cVv -ddK -cVv -ddM -aVs -aVu -bMu -aRA +anX +anX +aDo +aEM +aGn +aGn +aGn +aGn +aGn +aGn +aGn +aQw +aRL +aTm +aUD +aDo +aXI +aZi +aXC +aXC +aXC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aXC +aXC +aXC +aXE +bzU +aXC +aaa +aaa +aaa +aaa +aaa +aXC +aXE +bPB +aRJ aaa aaf -cVG -cWb -cWs -cWD -cVF -cVF -cVF -cXt -cVF -cVF -cVF -cYb -cYn -cYB -cVG aaa aaa aaa aaa aaa -anT aaa -cue -cvd -cwe +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anY +aaa +cyH +czD +cAS aaf -cue -cvd -cwe +cyH +czD +cAS aaf -cue -cvd -cwe +cyH +czD +cAS aaa aaa -anT +anY aaf aaf aaa @@ -92394,74 +88980,74 @@ aaa aaa aaa aaa -anS +anX aaf -aqB -anS -anS +aqL +anX +anX aaf -anS -anS +anX +anX aaf -aai -aDb -cVE -cVL -cVL -cVL -cVL -cVL -cVL -cVL -cWJ -cWK -aRE -aSK -cYL -aVz -aWW -aWT -baa -aVs -bcU -beE -djE -djE -djE -beC -bcU -aVs -bsl -btO -bvE -bxw -aVs -cVn -cVv -cVv -dlG -cVn -aVs -bKU -bMv -aVs +aae +aDo +aEN +aGo +aGo +aGo +aGo +aGo +aGo +aGo +aQx +aRL +aTn +aUE +aWh +aXJ +aZk +aZh +bcC +aXC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aXC +buC +bwi +bya +bzV +aXC +aaa +aaa +aaa +aaa +aaa +aXC +bOc +bPC +aXC aaa aaf -cVF -cWd -cWt -cWE -cVF -cWU -EDm -cWo -cXa -dDP -cVF -cJI -cYp -cYD -cVF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaf @@ -92469,20 +89055,20 @@ aaf aaf aaf aaa -cue -cve -cwe +cyH +czE +cAS aaa -cue -cve -cwe +cyH +czE +cAS aaa -cue -cve -cwe +cyH +czE +cAS aaf aaa -anT +anY aaa aaa aaa @@ -92650,96 +89236,96 @@ aaa aaa aaa aaa -anS -anS +anX +anX aaf -anS -auC -anS -anS -ayf -anS +anX +auT +anX +anX +ayn +anX aaf aaa -aDb -cVE -cVL -cVL -cVL -cVL -cVL -cVL -cVL -cWJ -cWK -aRE -aSK -cYL -aVz -bvF -aWU -baa -aVs -bcS -beF -beC -beC -beC -blP -bcS -aVs -bsm -aVu -bvF -bxw -aVs -cVn -cVu -cVv -cVB -cVn -aVs -aVu -bMw -aRA +aDo +aEN +aGo +aGo +aGo +aGo +aGo +aGo +aGo +aQx +aRL +aTn +aUE +aWh +aXJ +aZl +aZi +bcC +aXC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aXC +buD +aXE +aZl +bzV +aXC +aaa +aaa +aaa +aaa +aaa +aXC +aXE +bzY +aRJ aaa aaf -cVF -cVF -cVG -cVF -cVF -cWT -dDN -cWo -dDO -cXH -cVF -cVF -cVG -cVF -cVF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaf aaa aaa -aai +aae aaf -cue -cve -cwe +cyH +czE +cAS aaf -cue -cve -cwe +cyH +czE +cAS aaf -cue -cve -cwe +cyH +czE +cAS aaf aaa -anT +anY aaa aaa aaa @@ -92906,72 +89492,72 @@ aaa aaa aaa aaa -anS -anS -anS -anS -anS -anS -anS -anS -anS -anS -anS +anX +anX +anX +anX +anX +anX +anX +anX +anX +anX +anX aaf -aDb -cVE -cVL -cVL -cVL -cVQ -cVL -cVL -cVL -cWJ -cWK -cXE -aIf -aDb -cZh -bvF -aWU -bab -aVs -bcS -beG -djE -djE -djE -blQ -bcS -aVs -baa -btP -aWX -bxx -aRA -cVp -cVu -cVv -cVB -cVp -aRA -btS -bxw -aVs +aDo +aEN +aGo +aGo +aGo +aKt +aGo +aGo +aGo +aQx +aRL +aTo +aUF +aDo +aXK +aZl +aZi +bcD +aXC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aXC +bcC +bwj +byb +bzW +aRJ +aaa +aaa +aaa +aaa +aaa +aRJ +bwm +bzV +aXC aaf aaf aaa aaa aaa aaa -cVG -cWW -cWo -cXv -cXD -cXK -cVG +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -92981,19 +89567,19 @@ aaf aaf aaa aaa -anT +anY aaa -cue -cve -cwe +cyH +czE +cAS aaf -cue -cve -cwe +cyH +czE +cAS aaa -cue -cve -cwe +cyH +czE +cAS aaf aaa aaa @@ -93164,71 +89750,64 @@ aaa aaa aaa aaa -apq -anS -anS +apy +anX +anX aaf aaf -anS -anS +anX +anX aaf -anS -anS +anX +anX aaf -aDb -cVE -cVL -cVL -aHb -cWg -cVL -cVL -cVL -ddG -cWM -cXR -cYG -cYP -aVA -aWY -aYE -bac -aVs -bcU -beH -beC -beC -beC -beC -bcU -aVs -bsn -btQ -bvG -bxw -aVs -cVn -cVp -cVx -cVp -cVn -aVs -aVu -bxw -aRA +aDo +aEN +aGo +aGo +aJd +aKu +aGo +aGo +aGo +aQy +aRM +aTp +aUG +aWi +aXL +aZm +bbb +bcE +aXC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aXC +buE +bwk +byc +bzV +aXC +aaa +aaa +bGZ +aaa +aaa +aXC +aXE +bzV +aRJ aaa aaf aaa aaa aaa aaa -cVG -cWV -cXf -cXu -cXC -cXJ -cVG aaa aaa aaa @@ -93240,23 +89819,30 @@ aaa aaa aaa aaa -cue -cve -cwe +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cyH +czE +cAS aaf -cue -cve -cwe +cyH +czE +cAS aaf -cue -cve -cwe +cyH +czE +cAS aaa aaa aaa -anT -anT -anT +anY +anY +anY aaa aaa aaa @@ -93420,72 +90006,72 @@ aaa aaa aaa aaa -anS -anS -anS +anX +anX +anX aaf aaf -aqB -anS +aqL +anX aaf aaf aaf aaf aaf -aDb -cVE -cVL -cVL -cVL -cWh -cVL -cVL -cVL -cWJ -cWK -cYE -cYK -cYQ -aVB -aWZ -aVs -aVs -aVs -bcS -beI -djE -djE -djE -blR -bcS -aVs -aVs -aVs -bvH -bxy -aRA +aDo +aEN +aGo +aGo +aGo +aKv +aGo +aGo +aGo +aQx +aRL +aTq +aUH +aWj +aXM +aZn +aXC +aXC +aXC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aXC +aXC +aXC +byd +bzX +aRJ aaf -bCG -bEl -aVs +bFp +bHa +aXC aaf -aRA -bKV -bMx -aRA +aRJ +bOd +bPD +aRJ aaa aaf aaa aaa aaa aaa -EDl -cVG -cVG -cVG -cVG -cVG -EDl +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -93495,25 +90081,25 @@ aaa aaa aaf aaa -aai +aae aaa aaf -cvf +czF aaa aaa aaf -cvf +czF aaa aaa aaf -cvf +czF aaa aaa aaa aaa aaf aaa -anT +anY aaa aaa aaa @@ -93678,61 +90264,61 @@ aaa aaa aaa aaa -anS +anX aaa aaa aaf -dne -avJ -dne +akt +avX +akt aaf aaa aaf aaa -aDb -cVE -cVL -cVL -cVL -cVL -cVL -cVL -cVL -cWJ -cWK -dDJ -aSL -aDb -cZq -aWZ -djz -aZZ -djC -bcT -beC -beC -beC -beC -beC -bcT -djz -bsk -djC -bvH -bMw -aRA -aVs -aVs -bEm -aVs -aVs -aRA -btS -bMy -alK -alK -alK -alK +aDo +aEN +aGo +aGo +aGo +aGo +aGo +aGo +aGo +aQx +aRL +aTr +aUI +aDo +aXN +aZn +bba +bcB +bem +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bba +aUB +bem +byd +bzY +aRJ +aXC +aXC +bHb +aXC +aXC +aRJ +bwm +bPE +bwx +bwx +bwx +bwx aaa aaa aaa @@ -93752,25 +90338,25 @@ aaf aaf aaf aaf -anT +anY aaf aaf -cej -cej -cxa -cej -cej -czL -cED -cBQ -cej -czL -cED -cED -cED -cHk +cil +cil +cCc +cil +cil +cFc +ckM +cHa +cil +cFc +ckM +ckM +ckM +cMW aaf -anT +anY aaa aaa aaa @@ -93924,7 +90510,7 @@ aaa aaa aaa aaa -aac +aab aaa aaa aaa @@ -93939,64 +90525,64 @@ aaa aaa aaf aaf -dne -avK -dne +akt +avY +akt aaf aaf -dne -dne -aDb -cVE -cVL -cVL -cVL -cVL -cVL -cVL -cVL -cWJ -cWK -dDK -aSM -aDb -cZq -aWZ -aVs -aVs -aVs -bcS -bcS -bgt -bgt -bgt -bcS -bcS -aVs -aVs -aVs -bvH -bxz -aRA -bBc -aVs -bEl -aVs -bHH -aRA -aVu -bMz -bOe -bPC -bRc -alK +akt +akt +aDo +aEN +aGo +aGo +aGo +aGo +aGo +aGo +aGo +aQx +aRL +aTs +aUJ +aDo +aXN +aZn +aXC +aXC +aXC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aXC +aXC +aXC +byd +bzZ +aRJ +bDH +aXC +bHa +aXC +bKC +aRJ +aXE +bPF +bRv +bSX +bUv +bwx aaf aaf aaf aaf -aai -anT -aai +aae +anY +aae aaf aaf aaf @@ -94009,25 +90595,25 @@ aaa aaa aaa aaa -anT +anY aaa aaf -cvg +czG aaa aaa aaf -cvg +czG aaf aaa aaf -cvg +czG aaa aaf aaa aaa aaf aaa -anT +anY aaa aaa aaa @@ -94195,58 +90781,58 @@ aaf aaf aaa aaf -dne -dne -avJ -dne -dne -aip -dne -dnk -aDb -cVH -cVM -cVM -cVM -cVM -cVM -cVM -cVM -aPb -cWK -aRF -aSN -aDb -aVC -aXa -aYF -aVs +akt +akt +avX +akt +akt +aio +akt +alD +aDo +aEO +aGp +aGp +aGp +aGp +aGp +aGp +aGp +aQz +aRL +aTt +aUK +aDo +aXO +aZo +bbc +aXC aaa -bcS -beJ -bgu -djM -bgu -blS -bcS aaa -aVs -btR -bvI -bxA -biu -bbI -bbI -bbI -bbI -bbI -bjV -btT -bMA -alK -bPD -asa -alK +aaa +aaa +bkS +aaa +aaa +aaa +aaa +aXC +bwl +bye +bAa +bkT +ben +ben +ben +ben +ben +bmu +bwn +bPG +bwx +bSY +bUw +bwx aaa aaa aaf @@ -94268,23 +90854,23 @@ aaa aaa aaf aaa -cue -cvh -cwe +cyH +czH +cAS aaf -cue -cvh -cwe +cyH +czH +cAS aaf -cue -cvh -cwe +cyH +czH +cAS aaa aaa aaa -anT -anT -anT +anY +anY +anY aaa aaa aaa @@ -94449,93 +91035,93 @@ aaa aaa aaa aaf -dne -dne -aip -dne -auD -avL -awM -dnk -dqe -doA -dnk -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aVD -aXb -aYG -aRA -aRA -aRA -aVs -aVs -aVs -aVs -aVs -aRA -aRA -aRA -btS -bvJ -bxB -biv -bBd -bCH -bEn -dic -bHI -bJo -bKW -bMB -alK -dio -asa -alK -bTn -bTn -bTn -bTn -bTn +akt +akt +aio +akt +auU +avZ +awZ +alD +auW +arf +alD +aDo +aDo +aDo +aDo +aDo +aDo +aDo +aDo +aDo +aDo +aDo +aDo +aDo +aDo +aXP +aZp +bbd +aRJ +aRJ +aRJ +aXC +aXC +aXC +aXC +aXC +aRJ +aRJ +aRJ +bwm +byf +bAb +bkU +bDI +bFq +bHc +bJa +bKD +bMo +bOe +bPH +bwx +bSZ +bUw +bwx +bWO +bWO +bWO +bWO +bWO aaa aaf aaa aaf -aai -anT -anT -aai -anT -aai -anT -aai -anT -anT +aae +anY +anY +aae +anY +aae +anY +aae +anY +anY aaf aaf -cue -cvh -cwe +cyH +czH +cAS aaa -cue -cvh -cwe +cyH +czH +cAS aaa -cue -cvh -cwe +cyH +czH +cAS aaa aaa aaa @@ -94706,68 +91292,68 @@ aaa aaa aaa aaf -dne -aqC -arW -ato -auE -avM -avT -avT -avT -avT -aJi -avT -dss -avM -avT -avT -avT -avT -avT -avT -avT -avT -avT -dtl -aUd -aVE -aXc -aYH -bad -bbI -bbI -bbI -bbI -biu -bjV -bjV -bnK +akt +aqM +asj +atC +auV +awa +awh +awh +awh +awh +aCa +awh +aEP +awa +awh +awh +awh +awh +awh +awh +awh +awh +awh +aUL +aWk +aXQ +aZq +bbe +bcF +ben +ben +ben +ben +bkT +bmu +bmu bqb -bbI -btT -bvK -bxC -alK -alK -alK -alK -alK -alK -bJp -alK -alK -alK -bPF -asa -bPL -bTn -bUN -bVQ -bXt -bYC -bYC -bYC +bss +ben +bwn +byg +bAc +bwx +bwx +bwx +bwx +bwx +bwx +bMp +bwx +bwx +bwx +bTa +bUw +bTg +bWO +bYn +bZx +cbi +ccx +ccx +ccx aaa aaa aaf @@ -94782,20 +91368,20 @@ aaa aaa aaf aaa -cue -cvh -cwe +cyH +czH +cAS aaf -cue -cvh -cwe +cyH +czH +cAS aaf -cue -cvh -cwe +cyH +czH +cAS aaf aaa -anT +anY aaa aaa aaa @@ -94963,96 +91549,96 @@ aaa aaa aaa aaa -aip -aqD -arX -dne -dne -dne -dnH -aoc -drQ -dne -aip -dne -dst -aDc -dhE -dnH -dnH -cWA -auG -dnd -dhK -dnk -aRG -aSP -dne -dhM -aXd -aYI -bae -bbJ -bcV -bbJ -bgv -biv -bjW -blT -bnL +aio +aqN +ask +akt +akt +akt +aoh +aoi +azh +akt +aio +akt +aEQ +aGq +aHZ +aoh +aoh +aLL +auX +ako +aQA +alD +aoh +aUM +akt +aXR +aZr +bbf +bcG +beo +bfC +beo +biS +bkU +bmv +boo bqc -bso -bnL -bvL -bxD -bzw -bvY -bCI -bEo -bJj -bzC -bJq -bKX -bbL -bbL -bPG -bxT -bSn -bTo -bUO -bVR -bXu -bYD -bZN -bYD -cda -cej -cfz -cED -chY -cej -cej -cej -cfz -cED -cda -cej -cej -cfz -cED -cvh -cwe +bst +buF +bqc +byh +bAd +bBX +byu +bFr +bHd +bJb +bCd +bMq +bOf +bPI +bPI +bTb +bAt +bVK +bWP +bYo +bZy +cbj +ccy +cdJ +ccy +cgZ +cil +cjF +ckM +cme +cil +cil +cil +cjF +ckM +cgZ +cil +cil +cjF +ckM +czH +cAS aaa -cue -cvh -cwe +cyH +czH +cAS aaf -cue -cvh -cwe +cyH +czH +cAS aaf aaf -anT +anY aaf aaf aaa @@ -95220,68 +91806,68 @@ aaa aaa aaa aaa -dne -dne -arY -dne +akt +akt +asl +akt aaf -dne -dne -aip -dne -dne +akt +akt +aio +akt +akt aaa -dne -dne -dne -dne -aip -dne -dne -dne -dne -dne -dne -aip -dne -dne -dne -dne -dne -baf -bbK -bcW -beK -bbK -biw -bjX -blU -bnM +akt +akt +akt +akt +aio +akt +akt +akt +akt +akt +akt +aio +akt +akt +akt +akt +akt +bcH +bep +bfD +bhl +bep +bkV +bmw +bop bqd -bsp -bnM -bvM -bxE -alK -auF -bCJ -bEp -alK -apz -bJr -alC -aqK -aqO -bPF -aGN -asa -bTp -bUP -bVS -bXv -bYC -bYC -bYC +bsu +buG +bqd +byi +bAe +bwx +bDJ +bFs +bHe +bwx +bFD +bMr +bCe +bPJ +bOq +bTa +bRA +bUw +bWQ +bYp +bZz +cbk +ccx +ccx +ccx aaa aaa aaf @@ -95296,20 +91882,20 @@ aaa aaa aaf aaa -cue -cvi -cwe +cyH +czI +cAS aaf -cue -cvi -cwe +cyH +czI +cAS aaf -cue -cvi -cwe +cyH +czI +cAS aaa aaa -anT +anY aaa aaf aaa @@ -95328,7 +91914,7 @@ aaa aaa aaa aaa -aac +aab aaa aaa aaa @@ -95478,9 +92064,9 @@ aaa aaa aaa aaf -aqE -arZ -atp +aqO +asm +atD aaf aaf aaa @@ -95504,39 +92090,39 @@ aaf aaf aaa aaa -dne -arZ -bbK -bcX -beL -bgw -bix -bjY -blV -baE -baE -baE -baE -bvN -bjY -alK -bBe -bNd -ako -alK -bHJ -bJs -aLd -aLd -aLd -bPH -aLd -bSo -bTn -bTn -bTn -bTn -bTn +akt +asm +bep +bfE +bhm +biT +bkW +bmx +boq +bdf +bdf +bdf +bdf +byj +bmx +bwx +bDK +bFt +bHf +bwx +bKE +bMs +bOg +bOg +bOg +bTc +bOg +bVL +bWO +bWO +bWO +bWO +bWO aaa aaf aaa @@ -95566,7 +92152,7 @@ aaf aaa aaa aaa -aqB +aqL aaa aaf aaa @@ -95735,65 +92321,65 @@ aaa aaa aaa aaa -aqF -doJ -atq +aqP +asn +atE aaf aaa -awN -awN -awO -awN -awO -awN -awN -aaa -cUS -cUS -cUS -cUS -cUS -cUS -cUS -cUS -cUS -cUS -cUS aaa aaa -dne -doJ -bbK -bcY -beM -bgx -biy -bjZ -blW -bnN +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +akt +asn +bep +bfF +bhn +biU +bkX +bmy +bor bqe -bsq -btU -bvO -bxF -bzx -bzx -bzx -bzx -bzx -bzx -bzx -bzx -bzx -bzx -bzx -alC -cgH -alK -aob -aob -dix -alK +bsv +buH +bwo +byk +bAf +bBY +bBY +bBY +bBY +bBY +bBY +bBY +bBY +bBY +bBY +bBY +bCe +bVM +bwx +bRB +bRB +cbl +bwx aaf aaf aaf @@ -95810,20 +92396,20 @@ aaa aaf aaf aaf -anT +anY aaf -anT -anT -anT -aqB -anT -aqB -anT -anT -aqB -anT -aqB -anT +anY +anY +anY +aqL +anY +aqL +anY +anY +aqL +anY +aqL +anY aaf aaf aaa @@ -95992,65 +92578,65 @@ aaa aaa aaa aaf -aqF -doJ -atq +aqP +asn +atE aaf aaa -awN -ayg -azh -dlB -azi -aDe -awN aaa -cUS -cUV -cUV -cUV -cUV -dlD -cUV -cUV -cUV -cVc -cUS -cVk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaf -dne -bag -bbK -bcZ -beN -bgy -biz -bka -blX -bnO +akt +bcI +bep +bfG +bho +biV +bkY +bmz +bos bqf -bqf -btV -bvP -bxG -bzy -bBf -bCL -bEq -did -bHK -bJt -bKY -bBi -bMD -bzx -amZ -bSq -bTr -bUQ -bVT -aob -alK +bsw +bsw +bwp +byl +bAg +bBZ +bDL +bFu +bHg +bJc +bKF +bMt +bOh +bDO +bPL +bBY +bUx +bVN +bWR +bYq +bZA +bRB +bwx aaa aaf aaa @@ -96217,20 +92803,20 @@ aaa aaa aaa aaf -aaj -aag -aag -aag -aai -aag -aag -aag -aaj -aag -aag -aai -aag -aag +aac +aad +aad +aad +aae +aad +aad +aad +aac +aad +aad +aae +aad +aad aaf aaa aaa @@ -96249,69 +92835,69 @@ aaa aaa aaf aaf -aqF -doJ -atq +aqP +asn +atE aaf aaa -awO -ayh -azi -azh -azi -aDf -aEu aaa -cUS -cUV -cUV -cUV -cUV -cUV -cUV -cUV -cUV -cUV -cVg -cVj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaf -aip -doJ -bbK -bda -beO -bgz -biA -bka -blY -bnP +aio +asn +bep +bfH +bhp +biW +bkZ +bmz +bot bqg -bsr -bnP -bvQ -bxH -bzx -bBg -bBg -bBg -bGj -bBh -bJu -bKZ -bMC -din -bzx -auF -bSr -alK -bJs -bVU -bXx -alK +bsx +buI +bqg +bym +bAh +bBY +bDM +bDM +bDM +bJd +bDN +bMu +bOi +bPK +bRw +bBY +bDJ +bVO +bwx +bMs +bZB +cbm +bwx aaa aaf aaf -ack +acg aaf aaf aaf @@ -96470,10 +93056,10 @@ aaa aaa aaa aaa -aac +aab aaa aaa -aai +aae aaa aaf aaf @@ -96487,7 +93073,7 @@ aaf aaf aaa aaa -aag +aad aaf aaa aaa @@ -96506,69 +93092,69 @@ aaa aaa aaa aaf -aqF -doJ -atq +aqP +asn +atE aaf aaa -awN -ayg -azh -azh -azi -aDg -awN aaa -cUS -dlC -cUV -cUV -cUV -cUV -cUV -cUV -cUV -cUV -cVg -cVj aaa -aip -asi -bbK -bdb -beP -bgA -biz -bkb -blZ -bnO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aio +asv +bep +bfI +bhq +biX +bkY +bmA +bou bqf -bqf -btV -bvR -bxI -bzz -bBh -bBh -bBh -bGk -bHL -bHL -bBg -bBg -bOg -bzx -aoa -bSr -alK -bUR -alK -alK -alK +bsw +bsw +bwp +byn +bAi +bCa +bDN +bDN +bDN +bJe +bKG +bKG +bDM +bDM +bRx +bBY +bAu +bVO +bwx +bYr +bwx +bwx +bwx aaa aaf aaa -ack +acg aaf aaa aaa @@ -96730,21 +93316,21 @@ aaa aaa aaa aaa -aaj +aac aaa -aal -aan -aau +aai +aak +aas aaa -aal -aan -aau +aai +aak +aas aaa -aal -aan -aau +aai +aak +aas aaf -aag +aad aaf aaa aaa @@ -96763,104 +93349,104 @@ aaa aaa aaf aaf -aqF -doJ -atq +aqP +asn +atE aaf aaa -awN -awN -awO -aAA -awO -awN -awN aaa -cUS -cUV -cUV -cUV -cUV -cUV -cUV -cUV -cUV -cUV -cVg -cVj aaa -aip -doJ -bbK -bdc -beQ -bpt -bcW -bkc -bma -bnQ +aaa +aAE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aio +asn +bep +bfJ +bhr +biY +bfD +bmB +bov bqh -bss -btW -bvS -bxJ -bzx -bBi -bCM -bEr -bBg -bHM -bJv -bBg -bBg -bBg -bPI -bRd -bSr -alK -alK -alK -bXy -dux -dux -dux -dux -cek -dux -dux -dux -dux -ckN -ckN -ckN -ckN -ckN -ckN -ckN -ckN +bsy +buJ +bwq +byo +bAj +bBY +bDO +bFv +bDM +bDM +bKH +bMv +bDM +bDM +bDM +bTd +bUy +bVO +bwx +bwx +bwx +cbn +bWT +bWT +bWT +bWT +cim +bWT +bWT +bWT +bWT +coW +coW +coW +coW +coW +coW +coW +coW aaa aaf aaa aaf -aai -anT +aae +anY aaf aaf -aai -anT -anT -aai -anT -anT +aae +anY +anY +aae +anY +anY aaf aaf aaf -aai -anT +aae +anY aaf -aai -anT -aai +aae +anY +aae aaa aaa aaa @@ -96987,19 +93573,19 @@ aaa aaa aaa aaa -aag +aad aaf +aai aal -aao -aau +aas aaa +aai aal -aao -aau +aas aaa +aai aal -aao -aau +aas aaf aaf aaf @@ -97020,81 +93606,81 @@ aaa aaa aaa aaf -aqG -asb -atr +aqQ +aso +atF aaf aaa aaf -ayi -ayi -aAB -ayi -ayi +ayo +ayo +aAF +ayo +ayo aaf aaa -cUS -cUV -cUV -cUV -cUV -cUY -cUV -cUV -cUV -cVc -cUS -cVl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaf -dne -daX -bbK -bbK -beR -bbK -bcW -dhP -blV -baE -baE -baE -baE -bvN -bxK -bzx -djW -bCN -bBg -bBg -bEs -bJw -bBg -bMC -bOg -bzx -bRe -bSs -aSO -bUS -bVV -bXz -bYE -bYE -cbp -dux -cel -bUU -cgG -dux -cjp -ckO -cmg -cnh -ckN -cpQ -crg -cjt +akt +bcJ +bep +bep +bhs +bep +bfD +bmC +boq +bdf +bdf +bdf +bdf +byj +bAk +bBY +bDP +bFw +bDM +bDM +bKI +bMw +bDM +bPK +bRx +bBY +bUz +bVP +bWS +bYs +bZC +cbo +ccz +ccz +cfm +bWT +cin +bYu ckN +bWT +cny +coX +cqr +crt +coW +cuf +cvy +cpb +coW aaa aaf aaf @@ -97244,19 +93830,19 @@ aaa aaa aaa aaf -aag +aad aaf +aai aal -aao -aau +aas aaf +aai aal -aao -aau +aas aaf +aai aal -aao -aau +aas aaf aaa aaf @@ -97276,82 +93862,82 @@ aaf aaf aaf aaf -dne -dne -asc -dne +akt +akt +asp +akt aaf aaa aaf -ayi -azj -aAC -aBS -ayi +ayo +azi +aAG +aCb +ayo aaf aaa -cUS -cUS -cUS -cUW -cUX -cUS -cUZ -cTh -cUS -cUS -cUS +aaa +aaa +aaa +aaa +aaa +aaa +aQB +aaa +aaa +aaa +aaa aaa aaf -dne -baj -dhO -bdd -beS -bgC -biB -bkd -bmb -bnR +akt +bcK +beq +bfK +bht +biZ +bla +bmD +bow bqi -bst -btX -bvO -bxL -bzx -bBk -bNh -bNK -bBg -dig -bJx -bLa -bMD -bOh -bzx -aqO -bSt -dux -dux -dux -dux -dux -dux -cbq -dux -dux -cek -dux -dux -cjq -ckP -ckS -ckP -ckP -ckP -cjt -crh -ckN +bsz +buK +bwr +byk +bAl +bBY +bDQ +bFx +bHh +bDM +bKJ +bMx +bOj +bPL +bRy +bBY +bOq +bVQ +bWT +bWT +bWT +bWT +bWT +bWT +cfn +bWT +bWT +cim +bWT +bWT +cnz +coY +cpc +coY +coY +coY +cpb +cvz +coW aaa aaf aaf @@ -97360,18 +93946,18 @@ aaa aaf aaa aaa -cBR -cBR -cBR -cBR -cBR -cDE -cBR -cBR -cBR -cBR -cBR -cBR +cHb +cHb +cHb +cHb +cHb +cIX +cHb +cHb +cHb +cHb +cHb +cHb aaf aaf aaf @@ -97503,137 +94089,137 @@ aaa aaf aaa aaa -aal -aao -aau -aaa -aal -aao -aau -aaa -aal -aao -aau -aaf -aaa -aaf -aaa -aaa -aaf -aaf -aaf -aaa -aaa -aaf -aaa -aaf -aaa -aaf -aaa -aaa -aaf -aaa -aip -dnO -asd -dne -aaf -aaa -aaf -ayi -azk -aAC -aBT -ayi -aaf -aaf -aaf -aaf -aJB -aKN -aMs -aJB -aMs -aQg -aJB -aaf -aaf -aaf -aaf -dne -asb -bbM -bde -beT -bgD -biC -bke -bmc -bnS -bqj -bsu -btY -bvU -bxM -bzx -bzx -bzx -bzx -bzx -bzx -bzx -bzx -bzx -bzx -bzx -alK -bSr -dux -bUT -bVW -bXA -diy -dux -cbr -bYE -cem -cfB -cbp -dux -diE -ckQ -ckP -cni -cjt -dbq -ckQ -cjt -ckN -aaf -aaf -cwf -ack -aaf -aaf -aaa -aaa -cBR -cCK -cDA -cEE -cFy -cGq -cHl -cIp -cJg -cKe -cKS -cBR -aaf -aaa -aaf aai -aag +aal +aas +aaa +aai +aal +aas +aaa +aai +aal +aas +aaf +aaa +aaf +aaa +aaa +aaf +aaf +aaf +aaa +aaa +aaf +aaa +aaf +aaa +aaf +aaa +aaa +aaf +aaa +aio +aok +asq +akt +aaf +aaa +aaf +ayo +azj +aAG +aCc +ayo +aaf +aaf +aaf +aaf +aKw +aLM +aNz +aKw +aNz +aRN +aKw +aaf +aaf +aaf +aaf +akt +aso +ber +bfL +bhu +bja +blb +bmE +box +bqj +bsA +buL +bws +byp +bAm +bBY +bBY +bBY +bBY +bBY +bBY +bBY +bBY +bBY +bBY +bBY +bwx +bVO +bWT +bYt +bZD +cbp +ccA +bWT +cfo +ccz +cio +cjG +cfm +bWT +cnA +coZ +coY +cru +cpb +cug +coZ +cpb +coW +aaf +aaf +cAT +acg +aaf +aaf +aaa +aaa +cHb +cHY +cIT +cJZ +cKZ +cLV +cMX +cOh +cOZ +cQc +cQU +cHb +aaf +aaa +aaf +aae +aad aaa aaa aaa @@ -97755,142 +94341,142 @@ aaa aaa aaa aaa -aaj -aag -aaj -aaa -aaa -aal -aao -aau -aaa -aal -aao -aau -aaa -aal -aao -aau -aaf -aaf -aaf -aaf -aaf -aaf -aaa -aaf -aaf -aaf -aaf -aaf -ahp -aif -ahp -ahq -ahp -ahp -ahp -ahp -aqH -ase -dne -aaf -aaf -aaf -ayj -ayj -aAD -aBU -ayj -ayi -ayi -ayj -aaf -aIg -aKO -aMt -aIg -aPd -aQh -aIg -aaf -aaf -aUe -aUe -aUe -bak -dmF -bdf -beU -bgE -bbP -bkf -bmd -bnT -bqk -bsv -btZ -bvV -bxN -bvW -dhZ -bCP -bvW -bGl -bHN -bvW -bLb -bME -bOi -bPJ -alK -cgH -dux -bUU -bVX -bXB -bYG -dux -dux -dux -cen -dux -cbq -dux -cjs -ckR -cmh -cnj -cjt -ckP -cjt -diJ -dux -dux -ack -cwg -ack -ack -aaf -aaa -aaa -cBR -cCL -cDB -cEF -cFz -cGr -cHm -cIq -cJh -cKf -cKT -dBV -aaf -aaa +aac +aad +aac aaa aaa aai +aal +aas +aaa +aai +aal +aas +aaa +aai +aal +aas +aaf +aaf +aaf +aaf +aaf +aaf +aaa +aaf +aaf +aaf +aaf +aaf +ahn +aid +ahn +aho +ahn +ahn +ahn +ahn +aqR +asr +akt +aaf +aaf +aaf +ayp +ayp +aAH +aCd +ayp +ayo +ayo +ayp +aaf +aJe +aLN +aNA +aJe +aQC +aRO +aJe +aaf +aaf +aWl +aWl +aWl +bcL +bes +bfM +bhv +bjb +bev +bmF +boy +bqk +bsB +buM +bwt +byq +bAn +byr +bDR +bFy +byr +bJf +bKK +byr +bOk +bPM +bRz +bTe +bwx +bVM +bWT +bYu +bZE +cbq +ccB +bWT +bWT +bWT +cip +bWT +cfn +bWT +cnB +cpa +cqs +crv +cpb +coY +cpb +cww +bWT +bWT +acg +cAU +acg +acg +aaf +aaa +aaa +cHb +cHZ +cIU +cKa +cLa +cLW +cMY +cOi +cPa +cQd +cQV +cRU +aaf +aaa +aaa +aaa +aae aaa aaa aaa @@ -98012,21 +94598,21 @@ aaa aaa aaa aaa -aag +aad aaa aaf aaa aaa aaf -aap +aam aaf aaf aaf -aap +aam aaf aaa aaf -aap +aam aaf aaa aaf @@ -98040,111 +94626,111 @@ aaa aaa aaf aaa -ahp -aig +ahn +aie ajc akf -alx -amO -anU -ahp -dne -asf -dne -dne -dne -dne -ayj -azl -aAE -aAE -aDh -aEv -aFF -ayj -aIg -aIg -aKN -aMs -aIg -aMs -aQg -aIg -aIg -aUe -aVG -aXe -aYJ -bal -dmF -bdg -byI -bgF -dmF -dmF -dmF -bnU +aly +amP +anZ +ahn +akt +ass +akt +akt +akt +akt +ayp +azk +aAI +aAI +aDp +aER +aGr +ayp +aJe +aJe +aLM +aNz +aJe +aNz +aRN +aJe +aJe +aWl +aXS +aZs +bbg +bcM +bes +bfN +bhw +bjc +bes +bes +bes bql -bsw -baE -bvW -bxO -bvW -bBl -bCQ -bEt -bGm -bHO -bvW -bLc -aod -aGN -aqK -alK -dit -dux -bUV -duH -bXC -bYH -dux -cbs -cdb -ceo -dux -cdc -dux -diF -cjt -cjt -cjt -ckP -ckP -crh -dxv -ctn -dux -dux -cfA -dux -dux +bsC +buN +bdf +byr +bAo +byr +bDS +bFz +bHi +bJg +bKL +byr +bOl +bPN +bRA +bPJ +bwx +bVR +bWT +bYv +bZF +cbr +ccC +bWT +cfp +cha +ciq +bWT +chb +bWT +cnC +cpb +cpb +cpb +coY +coY +cvz +cwx +cxI +bWT +bWT +cAV +bWT +bWT aaf aaf aaf -dBN -dBO -cDC -cEG -cFA -dBS -cHn -cEE -cEE -cEE -cEE -cBR -cMt -cNr +cHc +cIa +cIV +cKb +cLb +cLX +cMZ +cJZ +cJZ +cJZ +cJZ +cHb +cSD +cTE aaa aaa aaa @@ -98269,138 +94855,138 @@ aaa aaa aaa aaa -aai +aae aaa +aag aah -aak -aak -aam -aaq -aaq -aaq -aaw -aaq -aaq -aaz -aaq -aaq -aaq -abf -aak -aak -aak -aak -acS +aah +aaj +aan +aan +aan +aau +aan +aan +aax +aan +aan +aan +abc +aah +aah +aah +aah +acP aaa aaa aaf aaf aaf aaa -ahq -ahq -ahp -blt -ahp -amP -anV -apr -aqI -asg -ats -dnu -dne -awP -ayj -azm -aAF -aAC -aAC -aEw -aFG -ayj -aIh -aJC -aKP -aMu -aNE -aMu -aQi -aRH -aRH -aUf -aRH -aRH -aYK -bam -dmH -bdh -byI -bgG -biD -bkg -bme -bnV -bBG -bsx -bua -bvW -bxP -bzA -bBm -bCR -bvW -bvW -bvW -bvW -bLd -aof -aob -alC -alK -bSu -dux -bUW -bVZ -bXD -bYI -bZO -cbt -cdc -dux -dux -csT -dux -cxQ -ckS -cmi -cnk -ckP -cmi -dvt -csf -cto -dux -cvj -cwh -cxb -dux +aho +aho +ahn +akg +ahn +amQ +aoa +apz +aqS +ast +atG +ana +akt +axa +ayp +azl +aAJ +aAG +aAG +aES +aGs +ayp +aJf +aKx +aLO +aNB +aOV +aNB +aRP +aTu +aTu +aWm +aTu +aTu +bbh +bcN +bet +bfO +bhw +bjd +blc +bmG +boz +bqm +bsD +buO +bwu +byr +bAp +bCb +bDT +bFA +byr +byr +byr +byr +bOm +bPO +bRB +bCe +bwx +bVS +bWT +bYw +bZG +cbs +ccD +cdK +cfq +chb +bWT +bWT +ckO +bWT +cnD +cpc +cqt +crw +coY +cqt +cfr +cwy +cxJ +bWT +czJ +cAW +cCd +bWT aaa aaa aaa -cBR -cCM -cDD -cEH -cFB -cGt -cHo -cIr -cJh -cKg -cKT -dBV -cMu +cHb +cIb +cIW +cKc +cLc +cLY +cNa +cOj +cPa +cQe +cQV +cRU +cSE aaf aaa aaa @@ -98526,139 +95112,139 @@ aaa aaa aaa aaa -aag +aad aaa aaf aaa aaf aaf -aar +aao aaf aaa aaf -aar +aao aaf aaa aaf -aar +aao aaf aaa aaf aaa aaa aaa -acT +acQ aaf aaa aaf aaa aaf aaa -ahq -aih +aho +aif ajd akh -aly -amP -anW -aps -aqJ -ash -att -dqe -dne -dne -ayj -azn -aAG -aBV -aDi -aEx -aFH -aHc -aIi -aJD -aKQ -aKQ -aKQ -aKQ -aKQ -aKQ -aSQ -aKQ -aKQ -aKQ -aYL -ban -bbO -bdi -beV -bgH -biE -bkh -dmH -bnW -bqn -bsy -bub -bvX -bxQ -bzB -bBn -bCS -bBn -bQN -dih -bvW -bLe -bMF -apz +alz +amQ aob -alK -bSr -dux -bUX -bWa -bXE -bYJ -dux -dvt -cdd -dux -cfC -cdc -dux -cjv -diG -dux -cnl -cox -dux -diI -diK -dux -dux -dux -cwi -dux -dux -dux +apA +aqT +asu +atH +auW +akt +akt +ayp +azm +aAK +aCe +aDq +aET +aGt +aIa +aJg +aKy +aLP +aLP +aLP +aLP +aLP +aLP +aUN +aLP +aLP +aLP +bbi +bcO +beu +bfP +bhx +bje +bld +bmH +bet +bqn +bsE +buP +bwv +bys +bAq +bCc +bDU +bFB +bDU +bJh +bKM +byr +bOn +bPP +bFD +bRB +bwx +bVO +bWT +bYx +bZH +cbt +ccE +bWT +cfr +chc +bWT +cjH +chb +bWT +cnE +cpd +bWT +crx +csK +bWT +cvA +cwz +bWT +bWT +bWT +cAX +bWT +bWT +bWT aaa aaa -cBR -cCK -cDA -cEE -cFC -cGu -cHp -dBT -cJi -cKh -cKS -cBR -cMv -cNs +cHb +cHY +cIT +cJZ +cLd +cLZ +cNb +cOk +cPb +cQf +cQU +cHb +cSF +cTF aaf aaa aaf @@ -98783,161 +95369,161 @@ aaa aaa aaa aaa -aai -aaj -aaj -aaa -aaf -aal -aas -aau -aaa -aal -aas -aau -aaa -aal -aas -aau -aaa -aaf -aaa -aaa -aaa -acT -aaa -aaa -aaa -aaa -aaf -aaa -ahq -aii -ajg -aki -alz -amP -anX -apt -dnk -doJ -atu -dnH -dnZ -awQ -ayk -azo -aAH -aBW -dCn -aEy -aFI -aHd -aIj -aJE -aKR -aMv -aNF -aMv -aMv -aMv -aKR -aMv -cVC -aXf -aYM -bao -dmH -bdh -beW -bgI -biF -bki -bmf -bnX -bqo -bsz -buc -bvW -dhS -bvW -bBo -bvW -bEu -bvW -bHP -bvW -bLf -bJs -aLd -bPK -bRf -bSv -dux -dux -dux -dux -dux -dux -dux -cde -dux -dux -cdc -dux -dux -dux -dux -bXF -bXF -dux -dux -csh -dux -cuf -cvk -cwh -bXE -dvq -dux -aaa -aaa -cBR -cBR -cDE -cEE -cFD -cGv -cHq -cIs -cJj -cJj -cKU -cLN -cMw -cBR -aaf -aaa -aai -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aae aac +aac +aaa +aaf +aai +aap +aas +aaa +aai +aap +aas +aaa +aai +aap +aas +aaa +aaf +aaa +aaa +aaa +acQ +aaa +aaa +aaa +aaa +aaf +aaa +aho +aig +aje +aki +alA +amQ +aoc +apB +alD +asn +atI +aoh +apF +axb +ayq +azn +aAL +aCf +aDr +aEU +aGu +aIb +aJh +aKz +aLQ +aNC +aOW +aNC +aNC +aNC +aLQ +aNC +aXT +aZt +bbj +bcP +bet +bfO +bhy +bjf +ble +bmI +boA +bqo +bsF +buQ +bww +byr +bAr +byr +bDV +byr +bHj +byr +bKN +byr +bOo +bMs +bOg +bTf +bUA +bVT +bWT +bWT +bWT +bWT +bWT +bWT +bWT +chd +bWT +bWT +chb +bWT +bWT +bWT +bWT +cbu +cbu +bWT +bWT +cwA +bWT +cyI +czK +cAW +cbt +cdP +bWT +aaa +aaa +cHb +cHb +cIX +cJZ +cLe +cMa +cNc +cOl +cPc +cPc +cQW +cRV +cSG +cHb +aaf +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab aaa aaa aaa @@ -99045,137 +95631,137 @@ aaa aaa aaa aaa -aal +aai +aap aas -aau aaf -aal +aai +aap aas -aau aaa -aal +aai +aap aas -aau aaa aaf aaa aaa aaa -acT +acQ aaf aaf aaf aaf aaf aaa -ahq -aij +aho +aih ajf akj -alA -amQ -anY -ahp -dhu -doJ -atu -dnk -dnk -doJ -ayj -azp -aAI -aBX -aDj -aEz -aFJ -ayj -aIk -aJE -aKS -aMv -aNG -aMv -aQj -aMv -aKS -dCB -aMv -aMv -aYM -bap -dmF -bdi -beX -bgJ -biG -bkj -bmg -bnY -bql -bsA -baE -bvW -bvW -bvW -bBp -bvW -bEv -bvW -bHQ -bvW -bLg -bLf -amU -bPL -alK -bOf -bOv -alC -dbk -dux -bYK -bZP -cbv -cdf -cep -dux -cgI -chZ -chZ -chZ -cBr -chZ -chZ -cpS -chZ -csi -chZ -chZ -cvl -cbx -ceu -dux -dux +alB +amR +aod +ahn +aqU +asn +atI +alD +alD +asn +ayp +azo +aAM +aCg +aDs +aEV +aGv +ayp +aJi +aKz +aLR +aNC +aOX +aNC +aRQ +aNC +aLR +aWn +aNC +aNC +bbj +bcQ +bes +bfP +bhz +bjg +blf +bmJ +boB +bqp +bsC +buR +bdf +byr +byr +byr +bDW +byr +bHk +byr +bKO +byr +bOp +bOo +bRC +bTg +bwx +bHm +bHl +bCe +bZI +bWT +ccF +cdL +cfs +che +cir +bWT +ckP +cmf +cmf +cmf +cqu +cmf +cmf +cuh +cmf +cwB +cmf +cmf +czL +cfu +ciw +bWT +bWT aaf aaa aaa -cBR -cDF -cEI -cFE -cGw -cHr -cIt -cEE -cKi -cKV -cLO -cMx -cBR +cHb +cIY +cKd +cLf +cMb +cNd +cOm +cJZ +cQg +cQX +cRW +cSH +cHb aaf aaf -aag +aad aaa aaa aaa @@ -99300,139 +95886,139 @@ aaa aaa aaa aaa -aag +aad aaf -aal +aai +aap aas -aau -aaa -aal -aas -aau -aaf -aal -aas -aau -aaf -aaf -aaf -aaf -aaf -acT -aaa -aaa -aaa -aaf -aaf -aaf -ahq -aik -anZ -akk -alB -amR -aoO -ahp -aqL -asi -atu -auG -avN -doJ -ayj -ayj -aAJ -ayj -ayj -ayj -ayj -ayj -aIl -aJF -aKT -aMw -aNH -aMw -aQk -aMw -aSR -aMw -aVH -aXg -aYN -baq -dmF -bdj -dmF -bgK -dmT -bkk -dmF -bnZ -bql -bsB -alK -aoe -bxS -bvW -bvW -bvW -bvW -bvW -bvW -bvW -alK -alK -alK -alK -alK -alC -bSs -bzC -bWb -dux -bYL -bZQ -cbw -cdg -ceq -dux -dwb -cia -cia -cia -cia -cia -cia -cpT -cia -cia -cia -ceu -dyg -dvt -bXE -dvE -dux -aaf -aaf -aaf -dBN -cDG -cEJ -cFF -cGx -cHs -cIu -cEE -cKj -cKW -cLP -cMy -cBR -aaa aaa aai +aap +aas +aaf +aai +aap +aas +aaf +aaf +aaf +aaf +aaf +acQ +aaa +aaa +aaa +aaf +aaf +aaf +aho +aii +ajg +akk +alC +amS +aoe +ahn +aqV +asv +atI +auX +awb +asn +ayp +ayp +aAN +ayp +ayp +ayp +ayp +ayp +aJj +aKA +aLS +aND +aOY +aND +aRR +aND +aUO +aND +aXU +aZu +bbk +bcR +bes +bfQ +bes +bjh +blg +bmK +bes +bqq +bsC +buS +bwx +byt +bAs +byr +byr +byr +byr +byr +byr +byr +bwx +bwx +bwx +bwx +bwx +bCe +bVP +bCd +bZJ +bWT +ccG +cdM +cft +chf +cis +bWT +ckQ +cmg +cmg +cmg +cmg +cmg +cmg +cui +cmg +cmg +cmg +ciw +czM +cfr +cbt +chl +bWT +aaf +aaf +aaf +cHc +cIZ +cKe +cLg +cMc +cNe +cOn +cJZ +cQh +cQY +cRX +cSI +cHb +aaa +aaa +aae aaa aaa aaa @@ -99557,136 +96143,136 @@ aaa aaa aaa aaa +aae +aaf aai -aaf -aal +aap aas -aau aaf -aal +aai +aap aas -aau aaa -aal +aai +aap aas -aau aaa aaf aaa aaa aaa -acT +acQ aaa aaf aaf aaf -aee -bbo -bbo -bbo -bbo +aec +agw +agw +agw +agw akl -ahp -ahp -ahp -ahp -dne -doJ -atD -dnk -dnk -doJ -ayl -aEt -aAK -aBY -aDk -aEA -aFK -aHe -aIm -aJG -aKU -aMv -aNI -aMv -aQl -aMv -aSS -aMv -aVI -aXh -aMv -bar -dmF -bdi -dmF -bgL -biI -bkl -dmF -bnW -bqp -bsC -bud -bvY -bxT -bzC -bzC -dCW -bOv -alC -bSw -bzC -bzC -bzC -bzC -bPM -bzC -bzC -bSp -alC -bSr -dux -bYM -bZP -cbx -cdh -bXE -dux -dwc -cia -cjw -ckU -cmk -cnm -coy -cpU -crj -csj -cia -cug -dyg -dDw -bXE -cNg -dux +ahn +ahn +ahn +ahn +akt +asn +atJ +alD +alD +asn +ayr +azp +aAO +aCh +aDt +aEW +aGw +aIc +aJk +aKB +aLT +aNC +aOZ +aNC +aRS +aNC +aUP +aNC +aRS +aZv +aNC +bcS +bes +bfP +bes +bji +blh +bmL +bes +bqn +bsG +buT +bwy +byu +bAt +bCd +bCd +bFC +bHl +bCe +bKP +bCd +bCd +bCd +bCd +bTh +bCd +bCd +bKQ +bCe +bVO +bWT +ccH +cdL +cfu +chg +cbt +bWT +ckR +cmg +cnF +cpe +cqv +cry +csL +cuj +cvB +cwC +cmg +cyJ +czM +cAY +cbt +cCY +bWT aaa aaa aaa -cBR -cDH -cEK -cFG -cGy -cHt -cIv -cJk -cKk -cKX -cLQ -cMz -cBR +cHb +cJa +cKf +cLh +cMd +cNf +cOo +cPd +cQi +cQZ +cRY +cSJ +cHb aaa aaa aaf @@ -99814,139 +96400,139 @@ aaa aaa aaa aaa -aaj -aaa -aal -aat -aau -aaa -aal -aat -aau -aaa -aal -aat -aau -aaa -aaf -aaa -aaa -aaa -acT -aaa -aaf -aee -aee -aee -agB -ahr -ail -bbo -akm -dnk -amS -dnF -dnk -aqM -asj -atv -auH -avO -awR -ayl -dhy -aAL -aBZ -aDl -aEB -aFL -aHf -aIn -aJH -aKV -aJH -aNJ -aJH -aQm -aJH -aST -aJH -aJH -aXi -aYO -bas -bbP -bdk -dmF -bgM -biJ -bkm -dmF -boa -bqq -bsD -alK -dhR -aoa -alC -bBq -apz -bOf -bzC -bSp -aoa -aqO -bMG -alC -bPN -apz -bTt -bTv -alC -bSr -dux -dux -dux -cby -bXE -cer -dux -dwb -cib -cjx -ckV -cml -cnn -coz -coz -crk -csk -cia -cuh -cvm -cDK -cxc -cxR -dux -aaa -aaa -aaa -dBN -cDI -cEL -cFH -cGz -cHu -cIw -cEE -cKl -cKY -cLR -cMA -cBR -aaa +aac aaa aai +aaq +aas +aaa +aai +aaq +aas +aaa +aai +aaq +aas +aaa +aaf +aaa +aaa +aaa +acQ +aaa +aaf +aec +aec +aec +agx +ahp +aij +agw +akm +alD +amT +aof +alD +aqW +asw +atK +auY +awc +axc +ayr +azq +aAP +aCi +aDu +aEX +aGx +aId +aJl +aKC +aLU +aKC +aPa +aKC +aRT +aKC +aUQ +aKC +aKC +aZw +bbl +bcT +bev +bfR +bes +bjj +bli +bmM +bes +bqr +bsH +buU +bwx +byv +bAu +bCe +bDX +bFD +bHm +bCd +bKQ +bAu +bOq +bPQ +bCe +bTi +bFD +bVU +bWU +bCe +bVO +bWT +bWT +bWT +cfv +cbt +cit +bWT +ckQ +cmh +cnG +cpf +cqw +crz +csM +csM +cvC +cwD +cmg +cyK +czN +cAZ +cCe +cCZ +bWT +aaa +aaa +aaa +cHc +cJb +cKg +cLi +cMe +cNg +cOp +cJZ +cQj +cRa +cRZ +cSK +cHb +aaa +aaa +aae aaa aaa aaa @@ -100071,7 +96657,7 @@ aaa aaa aaa aaa -aaj +aac aaf aaa aaf @@ -100089,125 +96675,125 @@ aaf aaf aaf aaf -acU -aak -aak -aef -aeG -afE -agC -ahs -aim +acR +aah +aah +aed +aeD +afB +agy +ahq +aik ajh akn -alD -amT -dnG -apu -aqN -ask -dpG -auI -avP -awS -ayl -azs -aAM -aCa -aDm -dhC -ayl -aHg -aIo -aJI -aKW -aMx -aNK -aJI -aQn -aQn -aSU -aUg -aVJ -aXj -aYP -bat -dmF -dmF -dmF -bgN -dmF -dmF -dmF -bob -bqr -bsE -bue -bue -bue -bue -bue -bue -bue -bGq -bue -bue -bue -bue -bue -bue -bue -bue -bue -bue -cgH -dux -bYN -dux -cbz -bXE -ces -dux -dwe -cic -cjy -ckW -cmk -cno -coA -cUH -crl -csl -cia -ceu -ceu -dyg -dux -dux -dux +alE +amU +aog +apC +aqX +asx +atL +auZ +awd +axd +ayr +azr +aAQ +aCj +aDv +aEY +ayr +aIe +aJm +aKD +aLV +aNE +aPb +aKD +aRU +aRU +aUR +aWo +aXV +aZx +bbm +bcU +bes +bes +bes +bjk +bes +bes +bes +bqs +bsI +buV +bwz +bwz +bwz +bwz +bwz +bwz +bwz +bJi +bwz +bwz +bwz +bwz +bwz +bwz +bwz +bwz +bwz +bwz +bVM +bWT +ccI +bWT +cfw +cbt +ciu +bWT +ckS +cmi +cnH +cpg +cqv +crA +csN +cuk +cvD +cwE +cmg +ciw +ciw +czM +bWT +bWT +bWT aaa aaa aaa -cBR -cDJ -cEM -cFI -cGA -cHv -cIx -cEE -cKm -cKZ -cLS -cMB -cBR +cHb +cJc +cKh +cLj +cMf +cNh +cOq +cJZ +cQk +cRb +cSa +cSL +cHb aaf aaf -aai -aag -aag -aag -aag +aae +aad +aad +aad +aad aaa aaa aaa @@ -100330,14 +96916,14 @@ aaa aaa aaa aaf -aai -aag -aai -aag -aaj -aag -aai -aaj +aae +aad +aae +aad +aac +aad +aae +aac aaa aaa aaf @@ -100349,118 +96935,118 @@ aaa aaf aaa aaf -aee -aee -aee -agD -aht -ain +aec +aec +aec +agz +ahr +ail aji -dnd -alE -dnr -dnH -alE -dou -dne -dne -auJ -avQ -dne -ayl -azt -aAN -aCb -aDn -aED -ayl -aHh -aIp -aJJ -aKX -aMy -aNL -aPe -aJH -aRI -aSV -aUh -aVK -aXk -aYQ -bau -bbQ -bdl -beY -bgO -biK -bkn -bat -bnW -bqs -bsx -bue -bwa -bxU -bzD -bBr -bSx -bEw -bzE -bHR -bJy -bLh -bMH -bue -bPO -bRg -dDi -bTw -bue -bSr -bXF -bYO -dux -bXE -dvt -dux -dux -dwb -cic -cjz -ckX -cmm -cnp -coB -coB -crm -csm -cia -cui -cwj -dyg -dux -cxS -dux +ako +alF +amV +aoh +alF +aqY +akt +akt +ava +awe +akt +ayr +azs +aAR +aCk +aDw +aEZ +ayr +aIf +aJn +aKE +aLW +aNF +aPc +aQD +aKC +aTv +aUS +aWp +aXW +aZy +bbn +bcV +bew +bfS +bhA +bjl +blj +bmN +bcU +bqn +bsJ +buO +bwz +byw +bAv +bCf +bDY +bFE +bHn +bCg +bKR +bMy +bOr +bPR +bwz +bTj +bUB +bVV +bWV +bwz +bVO +cbu +ccJ +bWT +cbt +cfr +bWT +bWT +ckQ +cmi +cnI +cph +cqx +crB +csO +csO +cvE +cwF +cmg +cyL +czO +czM +bWT +cDa +bWT aaf aaf aaf -cBR -cBR -cBR -cFJ -cGB -cBR -cBR -cBR -cBR -dBU -cBR -cBR -cBR +cHb +cHb +cHb +cLk +cMg +cHb +cHb +cHb +cHb +cRc +cHb +cHb +cHb aaa aaa -aai +aae aaa aaa aaa @@ -100608,107 +97194,107 @@ aaa aaf aaf aaf -aee +aec +agw +agw +aim +aim +ain +alG +ain +akt +apD +akt +akt +atM +avb +awf +axe +ays +azt +aAS +aCl +aDx +aFa +ayr +aIg +aJo +aKF +aLX +aNG +aPd +aQE +aRV +aTw +aUT +aWq +aXX +aZz bbo -bbo -agA -agA -aio -alF -aio -dne -apv -dne -dne -atx -auK -avR -awT -aym -azu -aAO -aCc -aDo -aEE -ayl -aHi -aIq -aJK -aKY -aMz -aNM -aPf -aQo -aRJ -aSW -aUi -aVL -aXl -aYR -bav -bbR -bdm -beZ -bgP -biL -bko -bbN -bnV -dCN -apA -bue -bwb -bxV -bzE -dmD -bzE -dmD -bzE -bHR -bJz -bLi -bMI -bue -bPP -bRh -bSy -bTx -bue -bSu -dux -bYP -dux -cbA -cdi -dux -cdl -dwb -cic -cjA -ckY -cmk -cnq -coC -cpW -crn -csn -cia -cdl -cMm -cMo -dux -cxT -dux +bcW +bex +bfT +bhB +bjm +blk +bmO +bhF +bqm +bsK +buW +bwz +byx +bAw +bCg +bDZ +bCg +bDZ +bCg +bKR +bMz +bOs +bPS +bwz +bTk +bUC +bVW +bWW +bwz +bVS +bWT +ccK +bWT +cfx +chh +bWT +chk +ckQ +cmi +cnJ +cpi +cqv +crC +csP +cul +cvF +cwG +cmg +chk +czP +cBa +bWT +cDb +bWT aaa aaa aaa aaf aaa aaa -cFK -cGC -cBS -cIy +cLl +cMh +cNi +cOr aaf aaa aaa @@ -100868,103 +97454,103 @@ aaf aaf aaf aaf -aio +ain ajj akp -alG -dhq -aoc -alG -aoc -dne -aty -auL -avS -awU -ayl -ayl -ayl -ayl -ayl -ayl -ayl -aHj -aIr -dne -aKZ -dne -aNN -aPg -aQp -aQp -aSX -aSX -aVM -aXm -aSX -bat -bbS -bdn -bfa -bgQ -biH -bkp -bmh -bnV -bql -avH -bug -bCV -bCV -bCV -bCV -bCV -bEx -bCV -bCV -bCV -bCV -bMJ -bOk -bPQ -bRi -bSz -bTy -bue -bSr -dux -dux -dux -dux -dux -dux -cfD -dwb -cic -cia -ckZ -cia -cia -cia -cpX -cia -cia -cia -ceu -dyg -dyw -dux -cxS -dux +alH +amW +aoi +alH +aoi +akt +atN +avc +awg +axf +ayr +ayr +ayr +ayr +ayr +ayr +ayr +aIh +aJp +akt +aLY +akt +aPe +aQF +aRW +aRW +aUU +aUU +aXY +aZA +aUU +bcU +bey +bfU +bhC +bjn +bll +bmP +boC +bqm +bsC +buX +bwA +byy +byy +byy +byy +byy +bHo +byy +byy +byy +byy +bPT +bRD +bTl +bUD +bVX +bWX +bwz +bVO +bWT +bWT +bWT +bWT +bWT +bWT +cjI +ckQ +cmi +cmg +cpj +cmg +cmg +cmg +cum +cmg +cmg +cmg +ciw +czM +cBb +bWT +cDa +bWT aaa aaa aaa aaf aaa aaa -cFK -cGD -cBS +cLl +cMi +cNi aaa aaf aaf @@ -100974,13 +97560,13 @@ aaa aaa aaa aaa -cMI -cPA -cPA -cPA -cMI -cPA -cMI +cSS +cWd +cWd +cWd +cSS +cWd +cSS aaa aaa aaa @@ -101125,119 +97711,119 @@ aaa aaf aaa aaf -aip -dho +aio +ajk akq -alH -amW -dnH -apw -dod -dne -atz -auM -avT -awV -ayn -ayn -dCl -ayn -ayn -ayn -aFM -aHk -aIs -aJL -aLa -dne -aNO -aPh -aQq -aRK -aSX -aUj -aVN -aXn -aSX -baw -bbT -bdo -bfb -bgR -bfb -bkq -bmi -boc +alI +amX +aoh +apE +apH +akt +atO +avd +awh +axg +ayt +ayt +aAT +ayt +ayt +ayt +aGy +aIi +aJq +aKG +aLZ +akt +aPf +aQG +aRX +aTx +aUU +aWr +aXZ +aZB +aUU +bcX +bez +bfV +bhD +bjo +bhD +bmQ +boD bqt -bsy -buh -bwd -bwd -bzF -bwd -bwd -bEy -bGr -bwd -bwd -bLj -bMK -bOl -bPR -bRi -bSA -bTz -bue -bWc -bXG -bYQ -bZR -cbB -cdj -cse -cdj -cgL -cid -cjB -cla -cmk -cnr -coD -cpY -cro -cso -cia -cfD -dyj -ceu -dux -dux -dux -dux -dux -dux -dux -dux +bsL +buP +bwB +byz +byz +bCh +byz +byz +bHp +bJj +byz +byz +byz +bPU +bRE +bTm +bUD +bVY +bWY +bwz +bZK +cbv +ccL +cdN +cfy +chi +civ +chi +ckT +cmj +cnK +cpk +cqv +crD +csQ +cun +cvG +cwH +cmg +cjI +czQ +ciw +bWT +bWT +bWT +bWT +bWT +bWT +bWT +bWT aaa -cFK -cGE -cBS +cLl +cMj +cNi aaa aaf aaa -cLa -cLa -cLa -cLa -cLa -cLa -cMI -cPB -cPZ -cQT -cMI -cRE -cPA +cRd +cRd +cRd +cRd +cRd +cRd +cSS +cWe +cWz +cWU +cSS +cXC +cWd aaa aaa aaa @@ -101368,133 +97954,133 @@ aaf aaa aaa aaa -aaZ -aaZ -aaZ -aaZ -aaZ -aaZ -aaZ -aaZ -aaZ -aaZ -aaZ -aaZ +aaW +aaW +aaW +aaW +aaW +aaW +aaW +aaW +aaW +aaW +aaW +aaW aaa aaf -aio +ain ajl akr -alI -amX -dnH -dnZ -aqP -dne -atA -dne -dne -dne -dne -dne -dne -dne -dne -dne -dne -aHl -aIt -dne -aLb -dne -aNP -aPi -aQr -aRL -aSX -aUk -aVO -aXo -aSX -bax -bbU -bdp -bfc -bgS -biM -bkr -bat -bnV -bql -awL -bue -aze -bwe -bGv -bHT -bwc -dCZ -bGs -bHS -bzE -bLk -bzE -bue -bPS -bPR -bBs -bBs -bue -bWd -bXH -dux -bZS -dvw -cdk -ceu -cfE -dwi -cic -cjC -clb -cmn -cns -coE -cpZ -coB -csp -csr -duH -dyg -ceu -cMm -cwm -cwm -cDK -ceu -cBT -cfF -dux -dzK -cFJ -cGF -cBR -clK -bTs -bTs -cLa -cLT -cMC -cNt -cTf -cNt -cMI -cPC -djX -cPC -cMI -cRF -cMI +alJ +amY +aoh +apF +aqZ +akt +atP +akt +akt +akt +akt +akt +akt +akt +akt +akt +akt +aIj +aJr +akt +aMa +akt +aPg +aQH +aRY +aTy +aUU +aWs +aYa +aZC +aUU +bcY +beA +bfW +bhE +bjp +blm +bmR +bcU +bqm +bsC +buY +bwz +byA +bAx +bCi +bEa +bFF +bHq +bJk +bKS +bCg +bOt +bCg +bwz +bTn +bTm +bVZ +bVZ +bwz +bZL +cbw +bWT +cdO +cfz +chj +ciw +cjJ +ckU +cmi +cnL +cpl +cqy +crE +csR +cuo +csO +cwI +cwK +bZF +czM +ciw +czP +cBc +cBc +cAZ +ciw +cHd +cjK +bWT +cKi +cLk +cMk +cHb +cOs +cye +cye +cRd +cSb +cSM +cTG +cUz +cVk +cSS +cWf +cWA +cWf +cSS +cXD +cSS aaa aaa aaa @@ -101626,30 +98212,30 @@ aaf aaa aaa aaf -abg -abx -abV -acm -acA -acV -adm -adJ -aeg -aeH -aaZ +abd +abu +abS +aci +acw +acS +adj +adH +aee +aeE +aaW aaa aaf -aio -aio +ain +ain aks -alJ -amY -dnH -dnH -aqQ -dne -atB -dne +alK +amZ +aoh +aoh +ara +akt +atQ +akt aaa aaa aaf @@ -101658,100 +98244,100 @@ aaa aaf aaa aaa -aFN -aHm -aHj -dne -aLc -dne -aNQ -aPj -aQs -aRM -aSX -aUl -aVP -aXp -aSX -bay -bbV -bdq -bbN -bgT -bat -bat -bmj -bod -bql -bsG -bue -bue -bue -bue -bBu -bwc -bEz -bGt -bHS -bzE -bLk -bML -bue -bzE -bRj -bSB -bPR -bue -div -bXI -dux -dux -cbD -dux -dux -cfF -dwj -cic -cjD -clc -cmk -cnt -coF -cqa -crq -csq -cia -dux -diM -cwm -cNf -ceu -dvq -cNm -cNU -cwm -cwm -cDK -dzK -cFL -cGG -cHw -clK -cdm -cKn -cLb -cRT -cMD -cNu -cOb -cOF -cLa -cMI -cQa -cPH -cRj -cRG -cMI +aGz +aIk +aIh +akt +aMb +akt +aPh +aQI +aRZ +aTz +aUU +aWt +aYb +aZD +aUU +bcZ +beB +bfX +bhF +bjq +bcU +bcU +boE +bqu +bsC +buZ +bwz +bwz +bwz +bwz +bEb +bFF +bHr +bJl +bKS +bCg +bOt +bPV +bwz +bCg +bUE +bWa +bTm +bwz +bZM +cbx +bWT +bWT +cfA +bWT +bWT +cjK +ckV +cmi +cnM +cpm +cqv +crF +csS +cup +cvH +cwJ +cmg +bWT +czR +cBc +cCf +ciw +cdP +cFd +cGd +cBc +cBc +cAZ +cKi +cLm +cMl +cNj +cOs +cPe +cQl +cRe +cSc +cSN +cTH +cUA +cVl +cRd +cSS +cWB +cWk +cXo +cXE +cSS aaa aaa aaa @@ -101883,132 +98469,132 @@ aaf aaf aaf aaf -abg -aby -abW -acn -acB -acW -adn -adK -aeh -aeI -aaZ +abd +abv +abT +acj +acx +acT +adk +adI +aef +aeF +aaW aaf aaf aaf -aio -aio -aio -aio -dnM -apy -aqR -dne +ain +ain +ain +ain +aoj +apG +arb +akt akm -dne +akt aaf -awW -awW -awW -awW -awW -awW +axh +axh +axh +axh +axh +axh aaf -aFO -aHn -aIu -dne -bOq -dne -aNR -aPk -aQt -aRN -aSX -aUm -aVQ -aXq -aYS -baz -bbW -bdr -bfd -bgU -biN -bks -bdw -boe -bql -bsH -bue -aAz -bxW -bzG -bzE -bwc -bEA -bGu -bHT -bJA -bLl -bMM -bue -bPU -bRk -bSC -bTA -bue -bWd -alC -dux -dvq -cbE -cdl -cev -cev -cgO -cic -cia -cia -cia -cia -coG -cqb -cia -cia -cia -cuj -cbx -dDw -bXE -cxU -cxU -czN -cxU -cxU -cxU -cDL -dzK -cFM -cGs -cHx -clK -bZT -cKo -cLa -cLa -cLa -cLa -cOc -cLa -cLa -cPD -cQb -cQx -cQb -cRH -cPA +aGA +aIl +aJs +akt +aMc +akt +aPi +aQJ +aSa +aTA +aUU +aWu +aYc +aZE +bbp +bda +beC +bfY +bhG +bjr +bln +bmS +bgd +bqv +bsC +bva +bwz +byB +bAy +bCj +bCg +bFF +bHs +bJm +bEa +bMA +bOu +bPW +bwz +bTo +bUF +bWb +bWZ +bwz +bZL +bCe +bWT +cdP +cfB +chk +cix +cix +ckW +cmi +cmg +cmg +cmg +cmg +csT +cuq +cmg +cmg +cmg +cyM +cfu +cAY +cbt +cDc +cDc +cFe +cDc +cDc +cDc +cJd +cKi +cLn +cMm +cNk +cOs +cPf +cQm +cRd +cRd +cRd +cRd +cUB +cRd +cRd +cWg +cWC +cWV +cWC +cXF +cWd aaa aaa aaa @@ -102140,132 +98726,132 @@ aaa aaa aaa aaf -abg -abz -abX -aco -acC -acX -ado -adL -aei -aeJ -aaZ +abd +abw +abU +ack +acy +acU +adl +adJ +aeg +aeG +aaW aaa aaa aaf aaf aaf aaf -dne -dne -dne -dne -dne -dhx -auN +akt +akt +akt +akt +akt +atR +ave aaa -awW -ayo -azv -aAP -aCd -aDp +axh +ayu +azu +aAU +aCm +aDy aaa -aFP -aHo -dhG -dne -aLc -dne -dne -dne -dne -dne -dne -dne -dne -dne -dne -baA -bbX -bds -dCI -bgV -biO -bkt -bmk -bof -bqu -bsz -bue -bwg -bxX -bue -bBv -bwc -bwc -bzE -bPT -bzE -bzE -bMN -bue -bue -bue -bue -bTB -bue -bWd -aqK -dux -bZU -cbF -dvE -cev -cfG -cgP -cie -cjE -cld -cev -cnu -coH -cqc -crr -csr -duH -bXE -cvn -cwn -cxd -cxU -cyN -czO -cAS -cBU -cxU -dDB -dzK -cFN -cGH -cHy -clK -cJl -cKp -cLa -cLV -cME -cNv -cOd -cOG -cLa -cPE -cQb -dDH -cQb -cRI -cPA +aGB +aIm +aJt +akt +aMb +akt +akt +akt +akt +akt +akt +akt +akt +akt +akt +bdb +beD +bfZ +bhH +bjs +blo +bmT +boF +bqw +bsM +buQ +bwz +byC +bAz +bwz +bEc +bFF +bFF +bCg +bKT +bCg +bCg +bPX +bwz +bwz +bwz +bwz +bXa +bwz +bZL +bPJ +bWT +cdQ +cfC +chl +cix +cjL +ckX +cmk +cnN +cpn +cix +crG +csU +cur +cvI +cwK +bZF +cbt +czS +cBd +cCg +cDc +cEb +cFf +cGe +cHe +cDc +cJe +cKi +cLo +cMn +cNl +cOs +cPg +cQn +cRd +cSd +cSO +cTI +cUC +cVm +cRd +cWh +cWC +cWW +cWC +cXG +cWd aaa aaa aaa @@ -102390,139 +98976,139 @@ aaa aaa aaa aaa -aai +aae aaa aaf aaa aaa aaa -aax -aax -aax -aax -aax -aax -acY -adp -adM -aax -aax -aax -aax +aav +aav +aav +aav +aav +aav +acV +adm +adK +aav +aav +aav +aav aaa aaa aaf aaa -dne -dne -dnO -dnk -aqS -dne -atE -auO +akt +akt +aok +alD +arc +akt +atS +avf aaa -awW -ayp -azw -aAQ -aCe -aDq -aEF -aFQ -aHp -aIw -aJM -aLe -avT -bfU -aPl -avT -dCx -aSY -avT -avT -aXr -dne -baB -bbY -bdt -bbY -bgW -biP -bku -bml -bog -bqv -bsI -bue -bue -bue -bue -cUT -bwc -bwc -bHU -bHV -bJB -bzE -bMO -bue -bPV -bRl -bue -bTC -atw -bWe -bXJ -dux -bZV -cbG -cdn -cev -cfH -cgQ -cif -cjF -cle -cmo -cnv -coI -cqd -crs -css -dux -dux -dux -dux -dux -cxU -cyO -czP -cAT -cBV -cxU -cDM -dzK -cBR -cGI -cBR -clK -diQ -cKq -cLa -cLW -cMF -cSY -cOe -cOH -cLa -cPF -cQb -djj -djr -cRq -cPA +axh +ayv +azv +aAV +aCn +aDz +aFb +aGC +aIn +aJu +aKH +aMd +awh +aPj +aQK +awh +aTB +aUV +awh +awh +aZF +akt +bdc +beE +bga +beE +bjt +blp +bmU +boG +bqx +bsN +bvb +bwz +bwz +bwz +bwz +bEd +bFF +bFF +bJn +bKU +bMB +bCg +bPY +bwz +bTp +bUG +bwz +bXb +bYy +bZN +cby +bWT +cdR +cfD +chm +cix +cjM +ckY +cml +cnO +cpo +cqz +crH +csV +cus +cvJ +cwL +bWT +bWT +bWT +bWT +bWT +cDc +cEc +cFg +cGf +cHf +cDc +cJf +cKi +cHb +cMo +cHb +cOs +cPh +cQo +cRd +cSe +cSP +cTJ +cUD +cVn +cRd +cWi +cWC +cWX +cXp +cXH +cWd aaa aaa aaa @@ -102647,139 +99233,139 @@ aaa aaa aaa aaa -aaj +aac aaf aaf aaa aaa aaf -aay -abh -abA -abY -acp -aax -acZ -adq -adN -aej -aeK -afF -aax -aax +aaw +abe +abx +abV +acl +aav +acW +adn +adL +aeh +aeH +afC +aav +aav aaa aaf aaa -dne -dnu -dnP -dod -dnZ -dne -atP -auO +akt +ana +aol +apH +apF +akt +atT +avf aaa -awW -ayq -azx -aAR -aCf -aDr -aEG -aFR -aHq -aIx -aJN -aJN -aJN -aJN -aPm -aJN -aJN -aSZ -aJN -aJN -aXs -aYT -baC -bbZ -bdu -bfe -bgX -biQ -bkv -bdw -boh -bqw -bsx -bue -bwf -bxW -bzH -bzE -dCX -bwc -bzE -cVb -cVe -cVf -cVi -bOm -bPW -bRm -bue -auF -alC -aXt -aqO -dux -bZW -cbH -cdo -cev -cfI -cgR -cig -cjG -clf -cmp -cnw -coJ -cqe -crt -css -ctr -cuk -cvo -cwo -cxe -cxU -cyP -czQ -cAU -diN -cxU -cDL -dux -cFO -cGJ -cHz -bTs -cJn -cKr -cLc -cLX -cMG -cNx -cOf -cOI -cPk -cPG -cQc -djk -cRl -cRJ -cMI +axh +ayw +azw +aAW +aCo +aDA +aFc +aGD +aIo +aJv +aKI +aKI +aKI +aKI +aQL +aKI +aKI +aUW +aKI +aKI +aZG +bbq +bdd +beF +bgb +beF +bju +blq +bmV +bgd +bqy +bsO +buO +bwz +byD +bAy +bCk +bCg +bFG +bFF +bCg +bKV +bMC +bOv +bPZ +bRF +bTq +bUH +bwz +bDJ +bCe +bZO +bOq +bWT +cdS +cfE +chn +cix +cjN +ckZ +cmm +cnP +cpp +cqA +crI +csW +cut +cvK +cwL +cxK +cyN +czT +cBe +cCh +cDc +cEd +cFh +cGg +cHg +cDc +cJd +bWT +cLp +cMp +cNm +cye +cPi +cQp +cRf +cSf +cSQ +cTK +cUE +cVo +cVQ +cWj +cWD +cWY +cXq +cXI +cSS aaa aaa aaa @@ -102904,139 +99490,139 @@ aaa aaa aaa aaa -aai +aae aaa aaf aaf aaf aaf -aax -abi -abB -abe -abe -aax -ada -adr -adr -aek -aeL -afG -agE -aax +aav +abf +aby +abb +abb +aav +acX +ado +ado +aei +aeI +afD +agA +aav aaa aaf aaf -aip -ana -aog -doe -aqT -asl -atG -auO +aio +anb +aom +apI +ard +asy +atU +avf aaa -awW -ayr -azy -aAS -aCg -aDs -aEH -aFS -aHo -aIy -aJO -aLf -aMA -aNT -aPn -aQu -aRO -aTa -dhL -aJN -dtP -dne -baD -bca -bdv -bff -bgY -biR -bkw -bdw -bnV -bqw -bsx -bue -aFE -bxX -bue -bBw -bwc -bwc -bBx -bue -bue -bue -bue -bue -bPX -bRn -bue -alK -alK -bWf -bXK -bXK -bZX -cbI -bXK -cev -cfJ -cgS -cih -cjH -clg -cev -cnx -coK -cqf -cru -css -cts -cul -cvp -cwp -cxf -cxU -cyQ -czR -cAV -cBW -cxU -cDN -cEN -cFP -cGK -cHA -cIz -cJo -cKs -cLa -cLY -cMH -cNy -cOg -cOJ -cPl -cPH -cQd -cTo -cRm -cRK -cRP +axh +ayx +azx +aAX +aCp +aDB +aFd +aGE +aIm +aJw +aKJ +aMe +aNH +aPk +aQM +aSb +aTC +aUX +aWv +aKI +aZH +akt +bde +beG +bgc +bhI +bjv +blr +bmW +bgd +bqm +bsO +buO +bwz +byE +bAz +bwz +bEe +bFF +bFF +bJo +bwz +bwz +bwz +bwz +bwz +bTr +bUI +bwz +bwx +bwx +bZP +cbz +cbz +cdT +cfF +cbz +cix +cjO +cla +cmn +cnQ +cpq +cix +crJ +csX +cuu +cvL +cwL +cxL +cyO +czU +cBf +cCi +cDc +cEe +cFi +cGh +cHh +cDc +cJg +cKj +cLq +cMq +cNn +cOt +cPj +cQq +cRd +cSg +cSR +cTL +cUF +cVp +cVR +cWk +cWE +cWZ +cXr +cXJ +cYc aaa aaa aaa @@ -103167,133 +99753,133 @@ aaa aaa aaf aaa -aax -abj -aaR -abZ -acq -acD -abe -ads -adO -ael -aeM -afH -agF -afW +aav +abg +aaQ +abW +acm +acz +abb +adp +adM +aej +aeJ +afE +agB +afS aaf aaf aaa -dne -dnd -aoh -dne -dne -dne -atH -auP +akt +ako +aon +akt +akt +akt +atV +avg aaa -awW -ays -azz -aAT -aCh -awW +axh +ayy +azy +aAY +aCq +axh aaa -aFT -aHr -aIz -aJP -aLg -aMB -aMB -aMB -aMB -aRP -aTb -aUo -aJN -aXu -dne -baE -baE -bdw -bfg -bgZ -bdw -baE -bmm -boi -bqx -bsJ -bui -bue -bue -bue -cUU -aZO -aZO -cUU -bue -buf -cVh -aVW -bue -bue -bue -bue -bTD -bUY -bWg -bXK -bYR -bZY -cbJ -cdp -cev -cfK -cgT -cii -cjI -clh -cev -cny -coL -cqg -crv -css -ctt -cum -cvp -cwq -cxg -cxU -cyR -czS -cAW -cBX -cxU -cDO -cxU -cxU -cGL -cxU -cxU -diR -cPW -cLa -cLZ -cLa -cLa -cLa -cOK -cLa -cPI -cQb -cTo -cMI -cMI -cMI +aGF +aIp +aJx +aKK +aMf +aNI +aNI +aNI +aNI +aTD +aUY +aWw +aKI +aZI +akt +bdf +bdf +bgd +bhJ +bjw +bgd +bdf +boH +bqz +bsP +bvc +bwC +bwz +bwz +bwz +bEf +bFH +bFH +bEf +bwz +bMD +bOw +aYi +bwz +bwz +bwz +bwz +bXc +bYz +bZQ +cbz +ccM +cdU +cfG +cho +cix +cjP +clb +cmo +cnR +cpr +cix +crK +csY +cuv +cvM +cwL +cxM +cyP +czU +cBg +cCj +cDc +cEf +cFj +cGi +cHi +cDc +cJh +cDc +cDc +cMr +cDc +cDc +cPk +cQr +cRd +cSh +cRd +cRd +cRd +cVq +cRd +cWl +cWC +cWZ +cSS +cSS +cSS aaa aaa aaa @@ -103308,7 +99894,7 @@ aaa aaa aaa aaa -aac +aab aaa aaa aaa @@ -103424,145 +100010,145 @@ aaf aaf aaf aaf -aay -abk -abC -abC -acr -acE -adb -abE -abE -aem -aeN -afI -agG -aax +aaw +abh +abz +abz +acn +acA +acY +abB +abB +aek +aeK +afF +agC +aav aaa aaf aaa -dne -dne -dne -dne -aqU -asm -atI -dne +akt +akt +akt +akt +are +asz +atW +akt aaf -awW -awW -awW -awW -awW -awW +axh +axh +axh +axh +axh +axh aaf -aFU -aHs -aIA -aJQ -aLh -aMC -aNU -dCt -aMB -aRP -aTb -aUp -aJO -aXv -aYU -baF -bcb -bdx -bfh -bdx -bfh -bkx -aYU -boj -bqy -bsK -buj -bwh -bxY -bzI -buj -bCW -buj -buj -cVd -buj -buj -buj -bxY -buj -bwh -bSD -buj -buj -bWh -bXK -bYS -bZZ -cbK -cdq -cev -cev -cev -cij -cjJ -cli -cev -cnz -coM -cqh -cnz -css -ctu -cun -cvp -cwr -cxh -cxU -cxU -czT -cAX -cxU -cxU -cDP -cxU -cFQ -cGJ -cHB -cxU -diS -cKs -cLa -cMa -cLa -cNz -cOh -cOL -cLa -cMI -cQf -cTo -cMI -dbF -cMI +aGG +aIq +aJy +aKL +aMg +aNJ +aPl +aQN +aNI +aTD +aUY +aWx +aKJ +aZJ +bbr +bdg +beH +bge +bhK +bge +bhK +bmX +bbr +bqA +bsQ +bvd +bwD +byF +bAA +bCl +bwD +bFI +bwD +bwD +bKW +bwD +bwD +bwD +bAA +bwD +byF +bWc +bwD +bwD +bZR +cbz +ccN +cdV +cfH +chp +cix +cix +cix +cmp +cnS +cps +cix +crL +csZ +cuw +crL +cwL +cxN +cyQ +czU +cBh +cCk +cDc +cDc +cFk +cGj +cDc +cDc +cJi +cDc +cLr +cMp +cNo +cDc +cPl +cQq +cRd +cSi +cRd +cTM +cUG +cVr +cRd +cSS +cWF +cWZ +cSS +cXK +cSS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa -cZj -cZj -cZj -cZe -cZj -cZj -cZe -cZj -cZj -cZj aaa aaa aaa @@ -103681,31 +100267,137 @@ aaa aaf aaa aaa -aax -abl -abD -abE -aaI -acF -abe -adt -adP -abe -aeO -afJ -aax -aax +aav +abi +abA +abB +aaH +acB +abb +adq +adN +abb +aeL +afG +aav +aav aaa aaf aaa aaa -dne -aoi -apB -apC -dne -dne -dne +akt +aoo +apJ +apK +akt +akt +akt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aGz +aIr +aJz +aKJ +aMh +aNK +aPm +aQO +aSc +aTE +aUZ +aWy +aKJ +aZK +bbs +bdh +bdh +bgf +bdh +bdh +bdh +bgw +bdh +bqB +bsR +bve +bwE +beS +bgw +bdh +bdh +bFJ +bHt +bdh +bKX +bdh +beS +bdh +bgw +bdh +bdh +bdh +bXd +bYA +bZS +cbz +ccO +cdW +cfI +chq +ciy +cjQ +cbz +cmq +cnT +cpt +cqB +crM +cta +cux +cvN +cwM +cux +cyR +czV +cBi +cCl +cDd +cEg +cFl +cGk +cHj +cIc +cJj +cKk +cLs +cMs +cNp +cDc +cPm +cQq +cRd +cRd +cSS +cTN +cRd +cRd +cRd +cWm +cWG +cXa +cXs +cVy +cSS +aaa +aaa +aaa +aaa aaa aaa aaa @@ -103714,113 +100406,7 @@ aaa aaa aaa aaa -aFN -aHt -aIB -aJO -aLi -aMD -aNV -aPo -aQv -aRQ -aTc -aUq -aJO -aXw -aYV -baG -baG -bdy -baG -baG -baG -bdP -baG -bok -bqz -bsL -buk -dCH -bdP -baG -baG -bCX -bEB -baG -bHW -baG -dCH -baG -bdP -baG -baG -baG -bTE -bUZ -bWi -bXK -bYT -caa -cbL -cdr -cew -cfL -bXK -cik -cjK -clj -cmr -cnA -coN -cqi -crw -cst -cqi -cuo -cvq -cws -cxi -cxV -cNh -czU -cAY -cBY -cCN -cDQ -cEO -cFR -cGM -cHC -cxU -cJq -cKs -cLa -cLa -cMI -cNA -cLa -cLa -cLa -cPJ -cQg -cTy -cRn -cOS -cMI aaa -cZe -cZl -cZl -cZl -cZe -cZl -cZl -cZe -cZl -cZl -cZl -cZe aaa aaa aaa @@ -103934,151 +100520,151 @@ aaa aaa aaa aaa -aax -aax -aaF -aax -aax -abm -abE -aaR -aaI -acG -adc -adc -adQ -adc -aeP -afK -agH -aax +aav +aav +aaE +aav +aav +abj +abB +aaQ +aaH +acC +acZ +acZ +adO +acZ +aeM +afH +agD +aav aaa aaf -dne -dne -dne -aoj -apC -doA -dne -auQ -auQ -atJ -auQ -auQ -atJ -auQ -auQ -auQ -aDu -aDu -aDu -aIC -aJN -aLj -aME -aNW -aPp -aQw -aRR -aTd -aUr -aVR -aXx -aYW -baH -bcc -bdz -bfi -bfi -bfi -bky -bmn -bfi -bqA -bqA -bul -bfi -bky -bGw -bfi -bCY -bEC -bHX -bHX -bJC -bHX -bMR -bOn -bPY -bRo -bHX -bTF -bVa -bWj -bXK -bYU -bZZ -cbM -cds -cds -cfM -cgU -cil -cjL -clk -cms -cal -cal -cqj -cal -csu -ctv -cup -cvr -cwt -cxj -cxW -cyT -czV -cAZ -cBZ -cCO -cDR -cEP -cFS -cGN -cHD -cxU -cJr -cKu -cLd -cLa -cMJ -cNB -cOi -cOM -cPm -cPK -cQh -cQE -cQl -cRo -cMI -cZe -cZe -cYF -cYF -cYF -cZe -cYF -cYF -cZe -cYF -cYF -cYF -cZe -cZe +akt +akt +akt +aop +apK +arf +akt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azA +azA +azA +aJA +aKI +aMi +aNL +aPn +aQP +aSd +aTF +aVa +aWz +aYd +aZL +bbt +bdi +beI +bgg +bhL +bhL +bhL +bmY +boI +bhL +bsS +bsS +bwF +bhL +bmY +bCm +bhL +bFK +bHu +bJp +bJp +bME +bJp +bQa +bRG +bTs +bUJ +bJp +bXe +bYB +bZT +cbz +ccP +cdV +cfJ +chr +chr +cjR +clc +cmr +cnU +cpu +cqC +ceh +ceh +cuy +ceh +cwN +cxO +cyS +czW +cBj +cCm +cDe +cEh +cFm +cGl +cHk +cId +cJk +cKl +cLt +cMt +cNq +cDc +cPn +cQs +cRg +cRd +cST +cTO +cUH +cVs +cVS +cWn +cWH +cXb +cWL +cXL +cSS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -104191,151 +100777,151 @@ aaa aaa aaf aaa -aax -aaA -aaG -aaP -aax -abn -abE -abD -acs -acH -abe -adu -adR -abe -aeQ -afL -agI -afW +aav +aay +aaF +aaO +aav +abk +abB +abA +aco +acD +abb +adr +adP +abb +aeN +afI +agE +afS aaf aaf -dne +akt alL -anb -aok -aox -aqV -dne -atJ -auR -avU -awX -ayt -azA -aAU -aCi -aDt -azC -aFV -aHu -aID -aJN -dhI -aME -aNW -dCt -aQx -aMB -aTe -aUs -aJR -aXy -dCE -baI -bcd -bcd -bcd -bcd -bcd -bkz -bkz -bol -bkz -bkz -bum -bkz -bkz -bzJ -bBy -bCZ -bED -bGx -bGy -bGy -bGy -bGy -bGy -bGy -bGy -bGy -bTG -dCE -bWk -bXK -bYV -cab -cbN -cdt -cex -cfN -cgV -cim -cjM -cll -cmt -cnB -cam -cdz -crx -csv -ctw -cuq -cvs -cwu -cxk -cxX -cyU -czW -cBa -cCa -cCP -cDS -cEQ -cFT -cGO -cHE -cxU -cJs -cJX -cLe -cLa -cMK -cNC -cOj -cON -cPn -cPL -cQg -cQF -cQV -cRp -cRL -cYF -daj -dai -dak -dal -dan -dam -dao -dax -cZL -cZL -cZL -dar -cYF +anc +aoq +apL +arg +akt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azz +aGH +aIs +aJB +aKI +aMj +aNL +aPn +aQN +aSe +aNI +aVb +aWA +aKM +aZM +bbu +bdj +beJ +beJ +beJ +beJ +beJ +bmZ +bmZ +bqC +bmZ +bmZ +bwG +bmZ +bmZ +bCn +bEg +bFL +bHv +bJq +bJr +bJr +bJr +bJr +bJr +bJr +bJr +bJr +bXf +bbu +bZU +cbz +ccQ +cdX +cfK +chs +ciz +cjS +cld +cms +cnV +cpv +cqD +crN +cei +chy +cvO +cwO +cxP +cyT +czX +cBk +cCn +cDf +cEi +cFn +cGm +cHl +cIe +cJl +cKm +cLu +cMu +cNr +cDc +cPo +cQt +cRh +cRd +cSU +cTP +cUI +cVt +cVT +cWo +cWG +cXc +cXt +cXM +cYd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -104448,151 +101034,151 @@ aaa aaa aaf aaf -aay -aaB -aaH -aaQ -aba -abo -abF -aca -act -acI -add -adv -adS -aen -aeR -afG -agH -aax +aaw +aaz +aaG +aaP +aaX +abl +abC +abX +acp +acE +ada +ads +adQ +ael +aeO +afD +agD +aav aaf aaf -dne +akt alL -anc -aol -apD -aqW -dne -atJ -auS -avV -auQ -dlA -ayt -ayt -aCi -aDt -azC -aFW -aHv -aIE -aJN -aLl -aME -aNX -aPq -aPq -aPq -aTf -aUt -aVS -aXz -aYY -baI -bcd -bdA -bfj -bha -biS -bkz -bmo -bom -bqB -bsM -bun -bwi -bkz -bzK -bBz -bDa -bEE -bGy -bHY -bJD -bLm -bMS -bOo -bJD -bJD -bGy -bTH -aYX -bWl -bXK -bYW -cac -cbO -cdu -cey -cfO -cgW -cin -cjN -clm -cmu -cmu -cmv -cqk -cmu -csw -cmu -cmu -cvt -cvt -cxl -cxY -cvt -cvt -cvt -cxU -cCQ -cDT -cxU -bTs -cGP -bTs -bTs -bTs -bTs -cLf -cLa -cML -cND -cOk -cOO -cPo -cPM -cQi -cQF -cOP -cRp -cRL -cYF -daf -cYO -dag -cZZ -cZm -cYO -cZy -cZe -cYV -dly -cYV -cYV -dae +and +aor +apM +arh +akt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azz +aGI +aIt +aJC +aKI +aMk +aNL +aPo +aQQ +aQQ +aQQ +aVc +aWB +aYe +aZN +bbv +bdj +beJ +bgh +bhM +bjx +bls +bmZ +boJ +bqD +bsT +bvf +bwH +byG +bmZ +bCo +bEh +bFM +bHw +bJr +bKY +bMF +bOx +bQb +bRH +bMF +bMF +bJr +bXg +bby +bZV +cbz +ccR +cdY +cfL +cht +ciA +cjT +cle +cmt +cnW +cpw +cqE +cqE +cqF +cuz +cqE +cwP +cqE +cqE +czY +czY +cCo +cDg +czY +czY +czY +cDc +cIf +cJm +cDc +cye +cMv +cye +cye +cye +cye +cRi +cRd +cSV +cTQ +cUJ +cVu +cVU +cWp +cWI +cXc +cVv +cXM +cYd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -104705,151 +101291,151 @@ aaa aaa aaf aaa -aax -aaC -aaI -aaR +aav +aaA +aaH +aaQ +aaY +aaH +abD +abY +acq +acF abb -aaI -abG -acb -acu -acJ -abe -adw -adT -adc -aeS -afM -abe -aax -aiq +adt +adR +acZ +aeP +afJ +abb +aav +aip ajm ajm ajm ajm -aom +aos ajm -dne -dne -atJ -auT -avW -awY -ayu -azB -ayt -aCi -aDt -azC -aFW -aHw -aIF -aJN -aLm -aMF -aNY -aPr -aQy -aRS -aTg -aUu -aVT -aXA -aYZ -baJ -bce -bdB -bfk -bhb -biT -bkz -bmp -bon -bqC -bsN -buo -bwj -bxZ -bzL -bBA -bDb -bEF -bGz -bHZ -bJE -bLn -bMT -bOp -bMT -bRp -bSE -bTI -aYX -bWm -bXL -bXL -cad -cbP -cdv -cez -cfP -bXK -cio -cjO -cln +akt +akt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azz +aGI +aIu +aJD +aKI +aMl +aNM +aPp +aQR +aSf +aTG +aVd +aWC +aYf +aZO +bbw +bdk +beK +bgi +bhN +bjy +blt +bmZ +boK +bqE +bsU +bvg +bwI +byH +bAB +bCp +bEi +bFN +bHx +bJs +bKZ +bMG +bOy +bQc +bRI +bQc +bUK +bWd +bXh +bby +bZW +cbA +cbA +cdZ +cfM +chu +ciB +cjU +cbz cmu -cnC -coO -cql -cry -csx -ctx -cmu -cvu -cwv -cxm -cxZ -cyV -czX -cvt -cCb -cCR -cDU -cER -bTs -cGQ -cHF -cIA -cJt -bTs -cLg -cMb -cMM -cNE -cOl -cOP -cOP -cOP -cQb -cQG -cQW -cRq -cRL -cYF -daa -cZm -cYO -cYO -cYO -dag -cZA -cZe -dae -cYI -cYV -cYV -dae +cnX +cpx +cqE +crO +ctb +cuA +cvP +cwQ +cxQ +cqE +czZ +cBl +cCp +cDh +cEj +cFo +czY +cHm +cIg +cJn +cKn +cye +cMw +cNs +cOu +cPp +cye +cRj +cSj +cSW +cTR +cUK +cVv +cVv +cVv +cWC +cXd +cXu +cXH +cYd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -104962,151 +101548,151 @@ aaa aaa aaa aaa -aay -aaD -aaJ -aaS -abc -abp -abH -acc -acv -acK -abe -abe -abe -abe -aeT -afN -abe -ahu -air -ahx -akt +aaw +aaB +aaI +aaR +aaZ +abm +abE +abZ +acr +acG +abb +abb +abb +abb +aeQ +afK +abb +ahs +aiq +ahv +aku alM -and -aon +ane +aot ajm -aqX -dne -auQ -auQ -avX -auQ -auQ -auQ -aAV -auQ -auQ -aDu -aFX -aHx -aIG -aJR -aLn -aJR -aJR -aJR -aJR -aJR -aTh -aJR -aJR -aXB -aZa -baK -bcd -bdC -bfl -bhc -biU -bkz -bmq -boo -bqD -bsO -bup -bwk -bkz -bzM -bBB -bDa -bEE -bGA -bIa -bJF -bLo -bMU -dbm -bPZ -bRq -bSE -bTI -aYX -bWj -bXL -bYX -cae -bXL -cdw -cdw -cdw -cdw -cip -cjP -clo +ari +akt +aaa +aaa +aaa +aaa +aaa +aaa +aAZ +aaa +aaa +azA +aGJ +aIv +aJE +aKM +aMm +aKM +aKM +aKM +aKM +aKM +aVe +aKM +aKM +aZP +bbx +bdl +beJ +bgj +bhO +bjz +blu +bmZ +boL +bqF +bsV +bvh +bwJ +byI +bmZ +bCq +bEj +bFM +bHw +bJt +bLa +bMH +bOz +bQd +bRJ +bTt +bUL +bWd +bXh +bby +bZT +cbA +ccS +cea +cbA +chv +chv +chv +chv cmv -cnD -coP -cqm -crz -csy -cty -cmu -cvv -cww -cxn -cya -cyW -czY -cBb -cCc -cCS -cDV -cES -bTs -cGR -cHG -cIB -cJu -bTs -cPY -cLa -cMN -cNF -cOm -cOQ -cPp -cOQ -cQj -cQF -cOP -cRp -cRL -cYF -cZT -cZS -cYO -cYO -cYO -dlt -cYO -cZV -dlx -cZe -dad -dad -cYF +cnY +cpy +cqF +crP +ctc +cuB +cvQ +cwR +cxR +cqE +cAa +cBm +cCq +cDi +cEk +cFp +cGn +cHn +cIh +cJo +cKo +cye +cMx +cNt +cOv +cPq +cye +cRk +cRd +cSX +cTS +cUL +cVw +cVV +cVw +cWJ +cXc +cVv +cXM +cYd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -105219,151 +101805,151 @@ aaa aaa aaf aaa -aax -aaE -aaK -aaT -aax -abq -abI -abC -acw -acL -abe -adx -adU -ael -aeU -afO -abe +aav +aaC +aaJ +aaS +aav +abn +abF +abz +acs +acH +abb +adu +adS +aej +aeR +afL +abb +aht +air ahv -ais -ahx -aku +akv alN -ane -aoo +anf +aou ajm ajm ajm ajo ajo -avY +awi ajo aaa -azC -aAW -azC -aDu -aDu -aFY -aHx +azz +aBa +azz +azA +azA +aGK +aIv aaa aaa -aLo +aMn aaa aaa aaa aaa aaf aaa -aUv -aVU -aXC -aYX -baL -bcf -bdD -bfm -bhd -biV -bkz -bkz -bkz -bkz -btH -buq -bAZ -bkz -bzN -bBB -bDc -bEG -bGB -bIb -bJG -bLp -bMV -bOr -bQa -bRr -bSF -bTI -aYX -bWj -bXL -bYY -caf -cbQ -cdw -ceA -cfQ -cgX -ciq -cjO -clo +aWD +aYg +aZQ +bby +bdm +beL +bgk +bhP +bjA +blv +bmZ +bmZ +bmZ +bmZ +bvi +bwK +byJ +bmZ +bCr +bEj +bFM +bHy +bJu +bLb +bMI +bOA +bQe +bRK +bTu +bUM +bWe +bXh +bby +bZT +cbA +ccT +ceb +cfN +chv +ciC +cjV +clf cmw -cnE -coQ -dDt -crA -csz -ctz -cmu -cvw -cwx -cxo -cyb -cyX -czZ -cvt -cCd -cCT -cDW -cET -bTs -cGS -cHH -cIC -cJv -bTs -cLf -cLa -cMO -cNG -cNC -cOR -cPq -cOR -cQi -cQF -cQV -cRp -cRL -cZe -cZe -cZn -cZe -cZQ -cZe -cZn -cZe -cZe -cZe -cZe -cZn -cZe -cZe +cnX +cpy +cqG +crQ +ctd +cuC +cvR +cwS +cxS +cqE +cAb +cBn +cCr +cDj +cEl +cFq +czY +cHo +cIi +cJp +cKp +cye +cMy +cNu +cOw +cPr +cye +cRi +cRd +cSY +cTT +cTP +cVx +cVW +cVx +cWI +cXc +cXt +cXM +cYd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -105476,151 +102062,151 @@ aaa aaa aaf aaf -aax -aax -aaL -aax -aax -abr -abJ -abE -abE -abE -ade -abE -abE -aeo -aeV -afP -abe -ahw -air -ahx -akv +aav +aav +aaK +aav +aav +abo +abG +abB +abB +abB +adb +abB +abB +aem +aeS +afM +abb +ahu +aiq +ahv +akw alO -anf -aop -ahx -aqY -asn -atK +ang +aov +ahv +arj +asA +atX ajo -avk +avy ajo aaa -aDu -aAX -aCj -aDv -aEI -aFZ -aHy +azA +aBb +aCr +aDC +aFe +aGL +aIw aaa aaa -aLp -aJS -aNZ -aPs -aJS -aJS +aMo +aKN +aPq +aQS +aKN +aKN aaa -aUw -aVV -aXD -aZb -baM -bcd -bcd -bfn -bcd -bcd -bcg -bmr -bkz -bqE -dCO -bup -bwm -bkz -bzO -bBB -bDa -bEH -bGy -bIc -bJH -bLq -bId -bOs -bJD -bJD -bGy -bTJ -aYX -bWj -bXL -bYZ -cag -cbR -cdx -ceB -cfR -cgY -cir -cjN -clo +aWE +aYh +aZR +bbz +bdn +beJ +beJ +bhQ +beJ +beJ +beM +boM +bmZ +bsW +bvj +bwJ +byK +bmZ +bCs +bEj +bFM +bHz +bJr +bLc +bMJ +bOB +bLd +bRL +bMF +bMF +bJr +bXi +bby +bZT +cbA +ccU +cec +cfO +chw +ciD +cjW +clg cmx -cnF -coR -cqo -crB -csA -ctA -ctA -ctA -ctA -cxp -cyc -ctA -ctA -ctA -cCe -cCe -cDX -cCe -cCe -cCe -bTs -bTs -cJw -bTs -cLi -cLa -cMP -cNG -cNC -cOS -cPr -cOS -cQk -cQH -cQX -cRr -cMI -cZe -cZK -dlr -cYO -cYO -cYO -dlr -cZK -cZe -cZD -cZD -cZD -daq -cZe +cnW +cpy +cqH +crR +cte +cuD +cvS +cwT +cxT +cxT +cxT +cxT +cCs +cDk +cxT +cxT +cxT +cHp +cHp +cJq +cHp +cHp +cHp +cye +cye +cPs +cye +cRl +cRd +cSZ +cTT +cTP +cVy +cVX +cVy +cWK +cXe +cXv +cXN +cSS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -105737,147 +102323,147 @@ aaa aaf aaa aaa -aay -abs -abK -ace -acx -acM -abe -ady -adT -adc -aeW -afQ -agJ -ahx -ait -ahx -akw +aaw +abp +abH +aca +act +acI +abb +adv +adR +acZ +aeT +afH +agF +ahv +ais +ahv +akx alP -ang -aoq -ahx -aqZ -aso -atL -ahx -avZ -ahx -ahx +anh +aow +ahv +ark +asB +atY +ahv +awj +ahv +ahv ajm ajm ajm -aDu -aEJ -aGa -aHx +azA +aFf +aGM +aIv +aaa +aKN +aMo +aNN +aPr +aQT +aSg +aKN +aaa +aWD +aYi +aZQ +bbA +bdo +beM +bgl +bhR +bjB +blw +bna +boN +bmZ +bsX +bvk +bwL +byL +bAB +bCp +bEj +bFN +bHA +bJr +bLd +bLd +bLd +bLd +bLd +bLd +bLd +bJt +bXj +bbx +bZX +cbA +cbA +ced +cfP +chv +ciE +cjX +chv +cmy +cnX +cpz +cqE +crS +ctf +cuE +cvT +cwU +cxT +cyU +cAc +cBo +cCt +cDl +cEm +cFr +cxT +cHq +cIj +cJr +cKq +cHq +cHp +cNv +cOx +cPt +cOx +cRm +cRd +cSS +cTU +cUM +cSS +cSS +cWq +cWL +cXf +cXw +cXO +cSS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa -aJS -aLp -aMG -aOa -aPt -aQz -aJS aaa -aUv -aVW -aXC -aZc -baN -bcg -bdE -bfo -bhe -biW -bkA -bms -bkz -btC -bsR -bur -bwn -bxZ -bzL -bBB -bDb -bEI -bGy -bId -bId -bId -bId -bId -bId -bId -bGA -bTK -aZa -bWn -bXL -bXL -cah -cbS -cdw -czE -cfS -cdw -cis -cjO -clp -cmu -cnG -coS -cqn -crC -csB -ctA -cur -cvx -cwy -cxq -cyd -cyY -cAa -ctA -cCf -cCU -cDY -cEU -cCf -cCe -cHI -cID -cJx -cID -cLj -cLa -cMI -cNH -cOn -cMI -cMI -cPN -cQl -cQI -cZc -cZd -cMI -cYF -cYO -cYO -cYO -cYO -cYO -cYO -cYO -cZI -cZG -cZG -cZG -cZJ -cYF aaa aaa aaa @@ -105993,148 +102579,148 @@ aaf aaf aaf aaa -EDz -aax -aax -aax -aax -aax -abe -abe -abe -abe -abe -aeX -afR -agK -ahy -aiu +aaT +aav +aav +aav +aav +aav +abb +abb +abb +abb +abb +aeU +afN +agG +ahw +ait ajn -akx +aky alQ -anh -aor -apE -dCg -anh -anh -auU -awa -awZ -ayw -azD -aAY -ajm -aDw -aDC -aGb -aHx +ani +aox +apN +arl +ani +ani +avh +awk +axi +ayz +azB +aBc +aCs +aDD +aDJ +aGN +aIv aaf -aJS -aLq -aMH -aMH -aPu -aQA -aJS -aJS -aUx -aUx -aXE -aZd -baO -bch -bdF -bfp -bhf -biX -bkB -bmt -bkz -bsP -bsQ -bus -bwo -byb -bzP -bBC -bDd -bEJ -bGC -bIe -bJI -bLr -bMW -bOt -bQb -bRs -bGC -bTL -aYX -bWj -bXM -bZa -cai -cbT -cdy -ceD -cfT -cgZ -cit -cjQ -clq -cmu -cmu -cmu -cqp -cmu -cmu -ctA -cus -cvy -cwz -cxr +aKN +aMp +aNO +aNO +aQU +aSh +aKN +aKN +aWF +aWF +aZS +bbB +bdp +beN +bgm +bhS +bjC +blx +bnb +boO +bmZ +bsY +bvl +bwM +byM +bAC +bCt +bEk +bFO +bHB +bJv +bLe +bMK +bOC +bQf +bRM +bTv +bUN +bJv +bXk +bby +bZT +cbB +ccV +cee +cfQ +chx +ciF +cjY +clh +cmz +cnZ +cpA +cqE +cqE +cqE +cuF +cqE +cqE +cxT +cyV +cAd +cBp +cCu +cDm +cEn +cFs +cxT +cHr +cIk +cJs +cHs +cHs +cHp +cNw cye -cyZ -cAb -ctA -cCg -cCV -cDZ -cCj -cCj -cCe -cgJ -bTs -bTs -bTs -cLk -cPb -cMR -cNI -cOo -cMR -cMI -cMI -cMI -cMI -cMI -cMI -cMI -cZe -cZi -cYO -cZo -cYF -cZi -cYO -cZo -cYF -cZF -cZG -cZG -cZH -cYF +cye +cye +cRn +cPx +cTa +cTV +cUN +cTa +cSS +cSS +cSS +cSS +cSS +cSS +cSS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -106249,149 +102835,149 @@ aaa aaa aaf aaa -aaV -aaV -aaV -abt -abL -acf -acy -abL -adf -adz -acf -acy -aeY -afG -agL -ahz -aiv +aaL +aaL +aaL +abq +abI +acb +acu +abI +adc +adw +acb +acu +aeV +afD +agH +ahx +aiu ajo -aky -akg -ani -aos -apF -apF -apF -atM -auV -awb -axa -ayx -azE -azE -ajm -aDw -aEK -aGc -aHx +akz +alR +anj +aoy +apO +apO +apO +atZ +avi +awl +axj +ayA +azC +azC +aCt +aDE +aFg +aGO +aIv +aaa +aKN +aMq +aNO +aPs +aQV +aQU +aTH +aKN +aWG +aYj +aZT +bbw +bdq +beM +bgn +bhT +bgn +bgn +beM +boP +bmZ +bsZ +bvm +bwN +byN +bmZ +bCu +bCv +bFM +bHC +bJv +bLf +bML +bOD +bQg +bRN +bTw +bUO +bWf +bXh +bYC +bZY +cbC +ccW +cef +cfR +chy +ciG +cjZ +cli +cmA +coa +cpB +cqI +crT +ctg +cuG +cvU +cwV +cxT +cyW +cAe +cBq +cCv +cDn +cEn +cFt +cxT +cHs +cHs +cJr +cHs +cHs +cHp +cNx +cye +cPu +cQu +cRo +cSk +cTb +cTW +cUO +cTe +cTe +cWr +cWM +cXg +cXx +cXP +cXx +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa -aJS -aLr -aMH -aOb -aPv -aPu -aRT -aJS -aUy -aVX -aXF -aYZ -baP -bcg -bdG -bfq -bdG -bdG -bcg -bmu -bkz -bqG -dbe -but -bwp -bkz -bzQ -bzR -bDa -dDa -bGC -bIf -bJJ -bLs -bMX -bOu -bQc -bRt -bSG -bTI -bVb -bWo -bXN -bZb -caj -cbU -cdz -ceE -cfU -cha -ciu -cjR -clr -cmy -ctq -cbu -cqq -crD -csC -ctA -cut -cvz -cwA -cxs -cyf -cyZ -cAc -ctA -cCf -cCf -cDY -cCf -cCf -cCe -cHJ -bTs -cJy -cKv -cLl -diV -cMS -cNJ -cOp -cMV -cMV -cPO -cQm -cQJ -cQY -cRs -cQY -cYH -cYO -cYO -cZo -dat -cZi -cYO -cZo -cZe -cZF -cZY -dlz -cZE -cZe aaa aaa aaa @@ -106505,150 +103091,150 @@ aaa aaa aaa aaa -adG +aaD aaM -adH -aPa -abu -abM -acg -aax -abe -abe -abe -abe -abe -aeZ -afS -agM -ahA -aiw +aaU +aba +abr +abJ +acc +aav +abb +abb +abb +abb +abb +aeW +afO +agI +ahy +aiv ajp -akz -ajQ -anj -aot -apG -apG -apG -atN +akA alS -awc -axb -ayy -azF -aAZ -ajm -aDw -aEL -aGd -aHx +ank +aoz +apP +apP +apP +aua +avj +awm +axk +ayB +azD +aBd +aCu +aDD +aFh +aGP +aIv aaa -aJS -aLs -aMH -aOc -aPw -aQB -aRU -aTi -aUz -aVY -aXG -aZe -baQ -bci +aKN +aMr +aNO +aPt +aQW +aSi +aTI +aVf +aWH +aYk +aZU +bbC +bdr +beO aaf aaf aaf -bfv -bfv -bmv -bfv -bqH -bqH -buu -bqH -bkz -bzR -bBD -bDe -bEK -bGD -bIg -bJK -bLt -bMY -bMY -bQd -bRu -bSH -bTI -bVc -aXR -bXN -bZa -cak -cbV -cdA -ceF -cfV -cga -civ -cfY -cls -cga -cga -cga -cga -cga -csD -ctA -cuu -cvA -cwB -cxt -cyg -cyZ -cAd -ctA -dbr -cCj -dDC -cCj -cFU -cCe -ctK -bTs -cJz -cKw -cLm -cLm -cLm -cNK -cOq -cLm -cLm -cLm -cQn -cQK +bhY +bhY +boQ +bhY +bta +bta +bwO +bta +bmZ +bCv +bEl +bFP +bHD +bJw +bLg +bMM +bOE +bQh +bQh +bTx +bUP +bWg +bXh +bYD +baf +cbC +ccV +ceg +cfS +chz +ciH +cka +ckf +cmB +ckd +cpC +ckf +ckf +ckf +ckf +ckf +cwW +cxT +cyX +cAf +cBr +cCw +cDo +cEn +cFu +cxT +cHt +cIl +cJt +cIl +cLv +cHp +cNy +cye cPv -cPv -cPv -cZe -dlq -cYO -cZo -cYF -cZi -cYO -cZk -cZe -cZe -dab -cZn -cZe -cZe +cQv +cRp +cRp +cRp +cTX +cUP +cRp +cRp +cRp +cWN +cXh +cWc +cWc +cWc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -106763,149 +103349,149 @@ aaa aaf aaf aaa -aaV -aaV -aaV -abt -abN -ach -aax -acN -adg -adA -adV -adc -afa -afT -agN -ahB -ahB -ahB -ahB -alR -ahB -adY -apH -adY -apH -atO -auW -awd -axc -ahx -ahx -ahx +aaL +aaL +aaL +abq +abK +acd +aav +acJ +add +adx +adT +acZ +aeX +afP +agJ +ahz +ahz +ahz +ahz +alT +ahz +ahA +aoB +ahA +aoB +aub +avk +awn +axl +ahv +ahv +ahv ajm -aDw -aEM -aGe -aHx +aDF +aFi +aGQ +aIv aaa -aJS -aLt -aMH -aOd -aPv -aMH -aRV -aJS -aUA -aVZ -aXH -aYX -baQ -bci +aKN +aMs +aNO +aPu +aQV +aNO +aTJ +aKN +aWI +aYl +aZV +bby +bdr +beO aaf aaf aaf -biY -bkC -bmw -bop -boy -bsS -buv -bwq -byc -buE -bBE -bDf -bEL -bGE -bIh -bJL -bLu -bMZ -bYq -bQe -bRv -bGC -bTM -bVd -bWp -bXO -bZc -cal -cbW -cdB -ceG -cfW -chb -ciw -cjS -clt -cmz -cnH -coT -cqr -cga -csE -ctA -cuv -cvB -cwC -cxu -cyh -cza -cAe -ctA -cCf -cCf -cEa -cCf -cCf -cCe -diC -bTs -cJA -cKx -cLn -cMd -cMd -cNL -cOq -cOT -cLm -cPP -cQo -cQL -cQY -cQK -cQY -cYH -cYO -cYO -cZo -dax -cZi -cYO -cZo -cZe -cZx -cZw -cZz -das -cZe +bly +bnc +boR +bqG +bqP +bvn +bwP +byO +bAD +bwY +bEm +bFQ +bHE +bJx +bLh +bMN +bOF +bQi +bRO +bTy +bUQ +bJv +bXl +bYE +bZZ +cbD +ccX +ceh +cfT +chA +ciI +ckb +clj +cmC +cob +cpD +cqJ +crU +cth +cuH +ckf +cwX +cxT +cyY +cAg +cBs +cCx +cDp +cEo +cFv +cxT +cHq +cHq +cJu +cHq +cHq +cHp +cNz +cye +cPw +cQw +cRq +cSl +cSl +cTY +cUP +cVz +cRp +cWs +cWO +cXi +cXx +cXh +cXx +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -107021,148 +103607,148 @@ aaa aaf aaa aaa -EDz -abe -abe -abe -aci -aax -acO -adh -adB -adW -aep -afb -afU -agO -ahB -aNA +aaT +abb +abb +abb +ace +aav +acK +ade +ady +adU +aen +aeY +afQ +agK +ahz +aiw ajq -aix -akA -ank +akB +alU +anl ajx -apI -ara -asp -anr -auW -awd -axd -ayw -azG -aAY -ajm -aDw -aEN -aGf -aHx +apQ +arm +asC +ans +avk +awn +axm +ayz +azE +aBc +aCs +aDD +aFj +aGR +aIv aaf -aJS -aLu -aMH -aMH -aPu -aQC -aJS -aJS -aUx -aUx -aXI -dCE -baQ -bci +aKN +aMt +aNO +aNO +aQU +aSj +aKN +aKN +aWF +aWF +aZW +bbu +bdr +beO aaf -bfr -bhg -bfv -bkD -bmx -boq -bqI -bsT -buw -bwr -byd -bzS -bBF -bDg -bEM -bGC -bGC -bJM -bGC -bGC -bOw -bOw -bOw -bGC -bTN -aYZ -bWq -bXP -bZd -cam -cbX -cdC -ceH -cfX -chc -cix -cjT -cjT -cmA -cnI -coU -cqs -crE -csF -ctA -ctA -ctA -ctA -cxv -cyi -ctA -ctA -ctA -cCi -cCW -cEb -cEV -cFV -cCe -cHK -bTs -cPb -cKy -cLo -cLm -cLm -cNM -cOr -cOU -dDG -cPQ -cQn -cQK -cPv -cPv -cPv -cZg -cZi -cYO -cZo -cYF -cZi -cYO -cZo -cYF -cZM -cYO -cYO -dau -cYF +bhU +bjD +bhY +bnd +boS +bqH +btb +bvo +bwQ +byP +bAE +bCw +bEn +bFR +bHF +bJv +bJv +bMO +bJv +bJv +bRP +bRP +bRP +bJv +bXm +bbw +caa +cbE +ccY +cei +cfU +chB +ciJ +ckc +clk +cmD +coc +coc +cqK +crV +cti +cuI +cvV +cwY +cxT +cxT +cxT +cxT +cCy +cDq +cxT +cxT +cxT +cHu +cIm +cJv +cKr +cLw +cHp +cNA +cye +cPx +cQx +cRr +cRp +cRp +cRp +cUQ +cVA +cVY +cWt +cWN +cXh +cWc +cWc +cWc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -107281,145 +103867,145 @@ aaa aaa aaf aaa -abe -acj -aax -acR -adi -adC -adX -ael -afd -afV -agP -ahB -aiy -dBZ +abb +acf +aav +acL +adf +adz +adV +aej +aeZ +afR +agL +ahz +aix ajr -alT -anl -aou -apJ -arb -asq -ava -axR -awe -axe -ayz -dCj -azE -ajm -aDw -dCo -aGg -aHx +akC +alV +anm +aoA +apR +arn +asD +auc +avl +awo +axn +ayC +azF +azC +aCt +aDE +aFk +aGS +aIv aaa -aJS -aLv -aMI -aOe -aPx -aQD -aJS +aKN +aMu +aNP +aPv +aQX +aSk +aKN aaa -aUv -aWa -aXC -aYX -baQ -bci +aWD +aYm +aZQ +bby +bdr +beO aaf -bfs -bhh -biZ -bkE -bmy -bor -bot -bsU -bux -bsU -bye -bux -bfv -bDh -bEN -bGF +bhV +bjE +blz +bne +boT +bqI +bqK +bvp +bwR +bvp +bAF +bwR +bhY +bFS +bHG +bJy aaf aaf -bLv -bNa -bOx -bQf -bRw -bSI -bTG -aYX -aXR -bXN -bZa -can -cbY -dDo -ceI -cfY -chd -ciy -cjU -clu -cmB -cnJ -coV -cqt -cga -cKJ -ctB -cuw -cvC -cwD -cxw -cyj -czb -cAf -cBc -cCj -cCX -cEc -cEW -cFW -cGT -cHL -bTs -cJB -cKz -cLp -cMe -cMT -cMT -cMT -cOV -cMT -cPR -cQn -cQK -cPv +bOG +bQj +bRQ +bTz +bUR +bWh +bXf +bby +baf +cbC +ccV +cej +cfV +chC +ciK +ckd +cll +cmE +cod +cpE +cqL +crW +ctj +cuJ +ckf +cwZ +cxU +cyZ +cAh +cBt +cCz +cDr +cEp +cFw +cGo +cHs +cIn +cJw +cKs +cLx +cMz +cNB +cye +cPy +cQy +cRs +cSm +cTc +cTc +cTc +cVB +cTc +cWu +cWN +cXh +cWc aaa aaf -cYF -cZi -cYO -cYO -cYO -cYO -cYO -cYO -cZp -cYO -cYO -cYO -cZt -cYF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -107538,145 +104124,145 @@ aaf aaf aaf aaf -abe -aci -aax -aax -aaL -aax -aax -aax -afc -afW -aax -adY -aiz -ajt -akB -akA -anm +abb +ace +aav +aav +aaK +aav +aav +aav +afa +afS +aav +ahA +aiy +ajs +akD +alU +ann ajx -apK -arc -asr -anr -auY -awc -axb -ayy -azF -aBa -ajm -aDw -aEO -aGh -aHx +apS +aro +asE +ans +avm +awm +axk +ayB +azD +aBe +aCu +aDD +aFl +aGT +aIv aaa aaa -aLv -aJS -aNZ -aPy -aJS -aJS +aMu +aKN +aPq +aQY +aKN +aKN aaa -aUw -aWb -aXJ -aZf -baQ -bci +aWE +aYn +aZX +bbD +bdr +beO aaf -bft -bhi -bja -bjc -bmz -bos +bhW +bjF +blA +blC +boU bqJ -bsU -buy -bws -bjc -bzT -bfv -bDi -bEO -bzR -bBz -bBz -bLw -bNb -bOy -bQg -bRx -chw -bTG -aYX -aXR -bXQ -bZb -cao -cbZ -cdD -ceJ -cfZ -che -ciz -cjV -clv -cmC -cnK -coW -cqu -cga -csH -ctC -cux -cvD -cwE -cxx -cyk -czc -cAg -ctB -cCk -cCY -cEd -cEX -cFX -cCe -cxL -bTs -cJC -cKA -cLq -cMf -cMU -cNN -cOs -cOW -cMU -cPS -cQn -cQM -cPv +btc +bvp +bwS +byQ +blC +bCx +bhY +bFT +bHH +bCv +bEh +bEh +bOH +bQk +bRR +bTA +bUS +bWi +bXf +bby +baf +cbF +ccW +cek +cfW +chD +ciL +cke +clm +cmF +coe +cpF +cqM +crX +ctk +cuK +ckf +cxa +cxV +cza +cAi +cBu +cCA +cDs +cEq +cFx +cxU +cHv +cIo +cJx +cKt +cLy +cHp +cNC +cye +cPz +cQz +cRt +cSn +cTd +cTZ +cUR +cVC +cTd +cWv +cWN +cXj +cWc aaa aaf -cYF -cZi -cYO -cZo -cYF -cZi -cYO -cZo -cYF -dlH -cZN -cYO -cZs -cZe +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -107796,7 +104382,7 @@ aaa aaf aaa aaa -ack +acg aaa aaa aaf @@ -107806,134 +104392,134 @@ aaf aaf aaf aaf -adY -adY -adY -adY -alV -adY -adY -apL -dCh -ass -adY -auW -awd -axf -ahx -ahx -ahx +ahA +ahA +ahA +ahA +alW +ahA +ahA +apT +arp +asF +ahA +avk +awn +axo +ahv +ahv +ahv ajm -aDz -aEP -aGi -aHy +aDG +aFm +aGU +aIw aaa aaa -aLw +aMv aaa aaa aaa aaa aaf aaa -aUv -aWc -aXK -aZg -baQ -bci +aWD +aYo +aZY +bbE +bdr +beO aaf -bfu -bhj -bjb -bjc -bmA -bot +bhX +bjG +blB +blC +boV bqK -bsU -bux -bwt -bqM -bqM -bLT -bDj -bEN -bGG -bIi -bJN -bLv -bNc -bOz -bQh -bRy -bSK -bTO -bVe -bWr -bXN -bZa -cap -cca -cdE -ceK -cfX -chf -ciA -cjW -clw -cga -cnL -coX -cnL -cga +btd +bvp +bwR +byR +btf +btf +bEo +bFU +bHG +bJz +bLi +bMP +bOG +bQl +bRS +bTB +bUT +bWj +bXn +bYF +cab cbC -ctB -cuy -cvE -ctB -cxy -cyl -czd -cAg -ctB -cCe -cCe -cEe -cEY -cCe -cCe -cgN -bTs -cJD -cKB -cLr -cMg -cMV -cMV -cMV -cOX -cMV -cPT -cQn -cQK -cPv +ccV +cel +cfX +chE +ciM +ckc +cln +cmG +cof +cpG +ckf +crY +ctl +crY +ckf +cxb +cxU +czb +cAj +cxU +cCB +cDt +cEr +cFx +cxU +cHp +cHp +cJy +cKu +cHp +cHp +cND +cye +cPA +cQA +cRu +cSo +cTe +cTe +cTe +cVD +cTe +cWw +cWN +cXh +cWc aaa aaf -cYF -cZi -cYO -cZo -cYY -cZi -cYO -cZo -cZr -cZe -cYF -cZp -cZr -cZe +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -108053,144 +104639,144 @@ aaa aaf aaf aaf -ack +acg aaf aaf aaf aaf aaf aaf -aeq -aeq -aeq -aeq -aeq -bgB -akC -alU -ann -adY -apM -ard -ast -adY -auW -awd -axd -ayw -azH -aAY -ajm -aDw -aEO -aGg -aHx -aIH -aHx -aLx -aHx -aHx -aHx -aHx -aHx -aIH -aUB -aWd -aXL -aZh -baQ -bci +adW +adW +adW +adW +adW +ajt +akE +alX +ano +ahA +apU +arq +asG +ahA +avk +awn +axm +ayz +azG +aBc +aCs +aDD +aFl +aGS +aIv +aJF +aIv +aMw +aIv +aIv +aIv +aIv +aIv +aJF +aWJ +aYp +aZZ +bbF +bdr +beO aaf -bfv -bhk -bjc -dCK -bmB -bou +bhY +bjH +blC +bnf +boW bqL -bsV -bux -bwu -bqM -bzU -bBH -bDk -bEP -bGH -bGH -bJO -bLw -bTZ -dDf -bQi -bRz -bLw -cMQ -bVf -bWs -bXR -bZe -bZb -ccb -cdF -bZa -cga -cfX -cga -cfX -cga -cga -cnM -coY -coY -cga -csI -ctD -cuz -cvF -ctB -ctB -cym -cze -ctB -cBd -cCl -cCZ -cEf -cEZ -cFY -bTs -cHM -ctH -cPb -cKC -cLr -cLm -cLm -cLm -cLm -cOq -cLm -cPQ -cQn -cQK -cPv -cPv -cPv -cZe -cYS -cYO -cZo -cYF -cZi -cYO -dlw -cZe -cZO -dac -dah -dav -cZe +bte +bvq +bwR +byS +btf +bCy +bEp +bFV +bHI +bJA +bJA +bMQ +bOH +bQm +bRT +bTC +bUU +bOH +bXo +bYG +cac +cbG +ccZ +ccW +cfY +chF +ccV +ckf +ckc +ckf +ckc +ckf +ckf +crZ +ctm +ctm +ckf +cxc +cxW +czc +cAk +cxU +cxU +cDu +cEs +cxU +cGp +cHw +cIp +cJz +cKv +cLz +cye +cNE +cya +cPx +cQB +cRu +cRp +cRp +cRp +cRp +cUP +cRp +cWt +cWN +cXh +cWc +cWc +cWc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -108316,138 +104902,138 @@ aaa aaf aaa aaf -aeq -aeq -afZ -agR -ahE -aiA -akD -akD -dCa -ano -apH -apN -are -asu -atQ -auZ -awf -axa -ayA -azE -azE -ajm -aDw -aEQ -aGj -aHz -aII -aJT -aLy -aMJ -aHz -aHz -aQE -aJT -aII -aUC -aWe -aXM -aZi -baR -bci +adW +adW +afT +agM +ahB +aiz +aju +aju +alY +anp +aoB +apV +arr +asH +aud +avn +awp +axj +ayD +azC +azC +aCt +aDE +aFn +aGV +aIx +aJG +aKO +aMx +aNQ +aIx +aIx +aSl +aKO +aJG +aWK +aYq +baa +bbG +bds +beO aaf -bfw -bhl -bjb -bjc -bmC -bjc -bqM -bsW -buz -bjc -byf -bzV -bBI -bDk -bEP -bGI -bGH -bJP -bLw -bNe -bOB -bQj -bRA -bSI -bTP -bVg -bWt -bXS -bZf -caq -caq -cdG -caq -cgb -chg -chg -chg -clx -cmD -cnN -coZ -coZ -crF -csJ -ctE -dDv -cuA -cwF -cxz -cyn -czf -cAh -cBe -chg -chg -cEg -cFa -cFZ -cGU -cHN -cIE -cJE -cKD -cLs -cMh -cMW -cMh -cMh -cOY -cPs -cPU -cQp -cQN -cQY -cQK -cQY -cYJ -cYO -cYO -cZo -cYZ -cZi -cYO -cZo -cYF -cZP -cYX -cYV -cZB -cZe +bhZ +bjI +blB +blC +boX +blC +btf +bvr +bwT +blC +bAG +bCz +bEq +bFV +bHI +bJB +bJA +bMR +bOH +bQn +bRU +bTD +bUV +bWh +bXp +bYH +cad +cbH +cda +cem +cem +chG +cem +ckg +clo +clo +clo +cpH +cqN +csa +ctn +ctn +cvW +cxd +cxX +czd +cAl +cBv +cCC +cDv +cEt +cFy +cGq +clo +clo +cJA +cKw +cLA +cMA +cNF +cOy +cPB +cQC +cRv +cSp +cTf +cSp +cSp +cVE +cVZ +cWx +cWP +cXk +cXx +cXh +cXx +cYr +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -108572,139 +105158,139 @@ aaa aaa aaf aaa -aeq -aeq -aff -afY -afY -ahD -ahP +adW +adW +afb +afU +afU +ahC +aiA ajv -akE -alW -anp -aow -ans -arf -asv -atR -azb -azq -axg -ayy -azF -aBb -ajm -aDw -aEN -aGk -aHA -aIJ -aJU -aGk -dCr -aHA -aPz -aJU -aRW -aTj -aUD -aWf -aXN -djB -baS -bci +akF +alZ +anq +aoC +ant +ars +asI +aue +avo +awq +axp +ayB +azD +aBf +aCu +aDD +aFj +aGW +aIy +aJH +aKP +aGW +aNR +aIy +aQZ +aKP +aTK +aVg +aWL +aYr +bab +bbH +bdt +beO aaf -bfs -bhm -bjd -bkF -bmD -bov -bqN -bsX -buA -dCK -byg -bzW -bBJ -bDl -bEQ -bGJ -bIj -bJQ -bLx -bNf -bOz -bQk -bRB -bSI -bTP -bVh -bWu -aWf -bZg -car -car -cdH -ceL -ceL -ceL -ceL -ceL -ceL -ceL -cnO -ceL -ceL -crG -csK -ctF -car -car -car -cxA -car -czg -cAi -ctF -car -car -czg -cFb -car -car -cHO -cIF -cJF -cKE -cLt -cMi -cMX -cNO -cOt -cOZ -cPt -cLm -cQn -cQO -cPv -cPv -cPv -cYF -cZi -cYO -cZo -cYF -cZi -cYO -cZo -dax -cZU -cYV -cYV -cZb -cYF +bhV +bjJ +blD +bng +boY +bqM +btg +bvs +bwU +bnf +bAH +bCA +bEr +bFW +bHJ +bJC +bLj +bMS +bOI +bQo +bRS +bTE +bUW +bWh +bXp +bYI +cae +aYr +cdb +cen +cen +chH +ciN +ciN +ciN +ciN +ciN +ciN +ciN +csb +ciN +ciN +cvX +cxe +cxY +cen +cen +cen +cCD +cen +cEu +cFz +cxY +cen +cen +cEu +cKx +cen +cen +cNG +cOz +cPC +cQD +cRw +cSq +cTg +cUa +cUS +cVF +cWa +cRp +cWN +cXl +cWc +cWc +cWc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -108829,139 +105415,139 @@ aaa aaa aaf aaa -aeq -aes -afh -agb -agT -ahG -aiC +adW +aeo +afc +afV +agN +ahD +aiB ajw -akF -alZ -anq -aoA -aoy -arg -asw +akG +ama anr -auW -awg -axh -ahx -ahx -ahx +aoD +apW +art +asJ +ans +avk +awr +axq +ahv +ahv +ahv ajm -aDA -aER -aGl -aHB -aIK -aJV -aIK -aHB -aHB -aPA -aJV -aHB -aHB -aUE -aWg -aXO -aZk -baT -bci +aDH +aFo +aGX +aIz +aJI +aKQ +aJI +aIz +aIz +aRa +aKQ +aIz +aIz +aWM +aYs +bac +bbI +bdu +beO aaf -bfu -bhn -bjb -bjc -bmB -bow -bqM -bsY -buB -buE -byh -bzX -bBK -bDm -bER -bGK -bGH -bJO -bLw -bNg -bOC -bQl -bRC -bSI -bTQ -bVi -bWv -bXT -bZh -cas -cas -cdI -cas -cgc -chh -chh -chh -cly -cmE -cnP -cpa -cpa -crH -csL -ctG -cgc -cvG -chh -cxB -cyo -czh -cAj -ctG -cCm -cpa -cEh -cFc -chh -chh -cvG -cIG -cJG -cKF -cLu -cMj -cMY -cMT -cOu -cPa -cPu -cPV -cQq -cQP -cQY -cRt -cQY -cYH -cYO -cYO -cYO -cYO -cYO -cYO -cYO -cZC -cZW -cYV -cYX -cYW -cYF +bhX +bjK +blB +blC +boW +bqN +btf +bvt +bwV +bwY +bAI +bCB +bEs +bFX +bHK +bJD +bJA +bMQ +bOH +bQp +bRV +bTF +bUX +bWh +bXq +bYJ +caf +cbI +cdc +ceo +ceo +chI +ceo +ckh +clp +clp +clp +cpI +cqO +csc +cto +cto +cvY +cxf +cxZ +ckh +cAm +clp +cCE +cDw +cEv +cFA +cxZ +cHx +cto +cJB +cKy +clp +clp +cAm +cOA +cPD +cQE +cRx +cSr +cTh +cTc +cUT +cVG +cWb +cWy +cWQ +cXm +cXx +cXQ +cXx +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -109085,140 +105671,140 @@ aaa aaa aaa aaf -adD -aeq -aer -afg -aga -agS -ahF -aeq +adA +adW +aep +afd +afW +agO +ahE +adW ajx -akG -ama -anr -adY -adY -dhv -anr -adY -avb -awh -axi -ayB -azI -aBc -aCn -aDB -aES -aGm -aHC -aHD -aJW -aHD -aHD -aHD -aHD -aQF -aRX -aTk -aUF -aWh -aXP -aZl -baT -bci +akH +amb +ans +ahA +ahA +aru +ans +ahA +avp +aws +axr +ayE +azH +aBg +aCv +aDI +aFp +aGY +aIA +aIB +aKR +aIB +aIB +aIB +aIB +aSm +aTL +aVh +aWN +aYt +bad +bbJ +bdu +beO aaf -bfv -bho -bjc -bjc -bmB -box +bhY +bjL +blC +blC +boW bqO -bsZ -bsU -bwv -byi -bzY -bBL -bDk -bEP -bGH -bGH -bJP -bLw -bTZ -dDg -bQg -bRD -bLw -bTP -bVj -bWw -bXU -bZi -bZk -ccc -ccc -bZj -cgd -cge -cgd -cge -cgd -cgd -cnQ -cpb -cqv -cgd -csM -ctH -bTs -cvH -cvH -cxC -cyp -cvH -cAk -cBf -cvH -cqv -cEi -cCq -cCq -cCq -cCq -cIH -cCq -cCq -cLv -cPb -cMZ -cNP -cOv -cPb -cPv -cPb -cPv -cPb -cPv -cPv -cPv -cZe -cYO -cYO -cYO -cYO -cYO -cYO -cYO -cZC -cZW -cYV -cYV -daw -cZe +bth +bvu +bvp +byT +bAJ +bCC +bEt +bFV +bHI +bJA +bJA +bMR +bOH +bQm +bRW +bTA +bUY +bOH +bXp +bYK +cag +cbJ +cdd +cdf +cfZ +cfZ +cde +cki +ckj +cki +ckj +cki +cki +csd +ctp +cuL +cki +cxg +cya +cye +cAn +cAn +cCF +cDx +cAn +cFB +cGr +cAn +cuL +cJC +cHB +cHB +cHB +cHB +cOB +cHB +cHB +cRy +cPx +cTi +cUb +cUU +cPx +cWc +cPx +cWc +cPx +cWc +cWc +cWc +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -109343,118 +105929,118 @@ aaa aaa aaf aaa +adW aeq -aex -afg -agd -agU -ahH -aeq +afd +afX +agP +ahF +adW ajy -akH -amb -ans -amf -dCf +akI +amc +ant +aoE +apX ajz ajz -atS -auW -awi -axj -aiq -azJ -aBd -aCo -aDC -aET -aGn -aHD -aIL -aJX -aLz -aMK -aOf -aPB -aQG -aRY -aTl -aHD -aWi -aXQ -aZm -baT -bci +auf +avk +awt +axs +aip +azI +aBh +aCw +aDJ +aFq +aGZ +aIB +aJJ +aKS +aMy +aNS +aPw +aRb +aSn +aTM +aVi +aIB +aYu +bae +bbK +bdu +beO aaf -bfw -bhp -bjb -dCK -bmE -boy +bhZ +bjM +blB +bnf +boZ bqP -bsU -bsU -bww -byj -bqM -bLT -bDn -bES -bGL -bIk -bJR -bLv -bNi -bOD -bQm -bRE -bSM -bTR -bVk -bWx -bXV -bZj -cat -ccd -ccd -ceN -cgd -chi -ciB -cjX -clz -cgd -cnR -cpc -cqw -cgd -csN -cLD -cuB -cvI -cwG -cxD -cyq -czi -cAl -cBg -cCn -cDa -cEj -cCq -cGa -cGV -cHP -cII -cJH -cCq -cLw -cPb -cNa -cNQ -cOw -cPb +bti +bvp +bvp +byU +bAK +btf +bEo +bFY +bHL +bJE +bLk +bMT +bOG +bQq +bRX +bTG +bUZ +bWk +bXr +bYL +cah +cbK +cde +cep +cga +cga +ciO +cki +clq +cmH +cog +cpJ +cki +cse +ctq +cuM +cki +cxh +cyb +cze +cAo +cBw +cCG +cDy +cEw +cFC +cGs +cHy +cIq +cJD +cHB +cLB +cMB +cNH +cOC +cPE +cHB +cRz +cPx +cTj +cUc +cUV +cPx aaf aaa aaa @@ -109462,20 +106048,20 @@ aaf aaa aaa aaf -cZe -cYN -cYM -cYO -dls -cYO -dlv -cYN -cZg -cZX -cZW -cZW -cYU -cZe +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -109584,7 +106170,7 @@ aaa aaa aaa aaa -aav +aar aaa aaa aaa @@ -109592,7 +106178,7 @@ aaa aaa aaa aaa -aav +aar aaa aaa aaa @@ -109600,118 +106186,118 @@ aaa aaa aaf aaa -aeq -aeq -afX -agc -dBX -agc -ajs +adW +adW +afe +afY +agQ +afY +aiC ajz -akI -amc -ant -ame -apO -ari -asx -aiB -avc -awj -axk -ayC -azK -aBe -aCp -aDD -aEU -aGo -aHD -aIM -aIR -aIR -aML -aOg -aPB -aQH -aQH -aIT -aHD -aWj -aXR -aYX -baT -bci +akJ +amd +anu +aoF +apY +arv +asK +aug +avq +awu +axt +ayF +azJ +aBi +aCx +aDK +aFr +aHa +aIB +aJK +aJP +aJP +aNT +aPx +aRb +aSo +aSo +aJR +aIB +aYv +baf +bby +bdu +beO aaf -bft -bhq -bje -bjc -bmz -bos -bqQ -bsU -buC -bwx -byk -bzZ -bfv -bDo -bET -bzR -bIl -bIl -bLw -bNj -bOE -bQn -bRF -chw -bTS -aYX -aXR -bXW -bZk -cau -cce -ccd -QsY -cgd -chj -ciC -cjY -clA -cmF -cnS -cpd -cqx -cgd -cLh -ctJ -cuC -cvH -cwH -cxE -cyr -cwH -cAm -cBg -cCo -cDb -cEk -cFd -cGb -cGb -cHQ -cIJ -cYc -cCq -cLx -cPb -cNb -cLm -cOx -cPc +bhW +bjN +blE +blC +boU +bqJ +btj +bvp +bwW +byV +bAL +bCD +bhY +bFZ +bHM +bCv +bLl +bLl +bOH +bQr +bRY +bTH +bVa +bWi +bXs +bby +baf +cbL +cdf +ceq +cgb +cga +ciP +cki +clr +cmI +coh +cpK +cqP +csf +ctr +cuN +cki +cxi +cyc +czf +cAn +cBx +cCH +cDz +cBx +cFD +cGs +cHz +cIr +cJE +cKz +cLC +cLC +cNI +cOD +cPF +cHB +cRA +cPx +cTk +cRp +cUW +cVH aaf aaf aaf @@ -109719,20 +106305,20 @@ aaf aaf aaf aaf -cZe -cZe -cZe -cYF -cYF -cYF -cZe -cZe -cZe -cZe -cYF -cYF -cZe -cZe +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -109829,7 +106415,7 @@ aaa aaa aaa aaa -aac +aab aaa aaa aaa @@ -109858,117 +106444,117 @@ aaa aaf aaa aaf -aeq -aeq -agQ -ahC -ahI -aeq +adW +adW +afZ +agR +ahG +adW ajA -akJ -amc -anu -aoz -apQ -arj -asz -ahB -avd -awk -axl -ahx -ahx -ahx +akK +amd +anv +aoG +apZ +arw +asL +ahz +avr +awv +axu +ahv +ahv +ahv ajm -aDE -aEV -aGp -aHE -aIN -aJY -aLA -aMM -aOh -aPB -aQH -aQH -aTm -aHD -aWk -aXS -aYX -baT -bci +aDL +aFs +aHb +aIC +aJL +aKT +aMz +aNU +aPy +aRb +aSo +aSo +aVj +aIB +aYw +bag +bby +bdu +beO aaf -bft -bhr -bjf -bkG -bmF -boz -bqR -bsU -bsU -bsU -byl -bsU -bfv -bDp -bEU -bGF +bhW +bjO +blF +bnh +bpa +bqQ +btk +bvp +bvp +bvp +bAM +bvp +bhY +bGa +bHN +bJy aaf aaf -bLv -bNk -bOF -dip -bRG -bSI -bTS -aYX -aXR -bXV -bZj -cav -ccf -dDp -ceO -cgd -chk -ciD -cjZ -clB -cmG -cnT -cpe -cqy -cgd -csO -diL -cuD -cvH -cwI -cxF -dDz -czj +bOG +bQs +bRZ +bTI +bVb +bWh +bXs +bby +baf +cbK +cde +cer +cgc +chJ +ciQ +cki +cls +cmJ +coi +cpL +cqQ +csg +cts +cuO +cki +cxj +cyd +czg cAn -cBh -cCp -cDc -cEl -cFe -cGc -cFg -cHR -cIK -cJJ -cCq -cgM -cPb -cNc -cNR -cOy -cPd +cBy +cCI +cDA +cEx +cFE +cGt +cHA +cIs +cJF +cKA +cLD +cKC +cNJ +cOE +cPG +cHB +cRB +cPx +cTl +cUd +cUX +cVI aaa aaa aaf @@ -110116,116 +106702,116 @@ aaf aaf aaf aaf -aeq -aeq -aeq -aeq -aeq -adY -akK -alX -ahB -aoA -ahB -ark -asA -ahB -ave -awl -axm -aiq -azL -aBf -ahx -aDF -aEW -aGq -aHE -aIO -aJZ -aIR -aIR -aOi -aPB -aQH -aQH -aTn -aHD -aHD -aXS -aYX -baT -bci +adW +adW +adW +adW +adW +ahA +akL +ame +ahz +aoD +ahz +arx +asM +ahz +avs +aww +axv +aip +azK +aBj +ajm +aDM +aFt +aHc +aIC +aJM +aKU +aJP +aJP +aPz +aRb +aSo +aSo +aVk +aIB +aIB +bag +bby +bdu +beO aaf -bfx -bhs -bfv -bkH -bmG -boA -bqS -bta -buD -bwy -bym -bAa -bBM -bDq -bEV -bGM -bGM -bJS -bGM -bNl -bNl -bNl -bNl -bGM -bTT -aYX -bWy -bXX -bZl -caw -ccg -cdJ -ceQ -cge -chk -ciE -cka -clC -cmH -cnU -cpf -cqz +bia +bjP +bhY +bni +bpb +bqR +btl +bvv +bwX +byW +bAN +bCE +bEu +bGb +bHO +bJF +bJF +bMU +bJF +bQt +bQt +bQt +bQt +bJF +bXt +bby +cai +cbM +cdg +ces cgd -csP -bTs -cuE -cvH -cwJ -cxG -cys -czk -cAo -cBi -cCn -cDd -cEm -cFf -cFg -cFh -cHR -cIL -cJK -cCq -cgM -cPb -cNd -cNS -cOz -cPb +chK +ciR +ckj +cls +cmK +coj +cpM +cqR +csh +ctt +cuP +cki +cxk +cye +czh +cAn +cBz +cCJ +cDB +cEy +cFF +cGu +cHy +cIt +cJG +cKB +cKC +cKD +cNJ +cOF +cPH +cHB +cRB +cPx +cTm +cUe +cUY +cPx aaa aaa aaa @@ -110379,110 +106965,110 @@ aaf aaf aiD ajB -akL -amd -anv -aoB -apR -arl -asy +akM +amf +anw +aoH +aqa +ary +asN ajD -avf -awd -axn -ayD -azM -aBg -dBH -aDG -aEX -aGr -aHE -aIP -aKa -aLB -aMN -aOj -aPC -aIT -aRZ -aIT -aUG -aHD -aXS -aYX -baT -bci +avt +awn +axw +ayG +azL +aBk +aCy +aDN +aFu +aHd +aIC +aJN +aKV +aMA +aNV +aPA +aRc +aJR +aTN +aJR +aWO +aIB +bag +bby +bdu +beO aaf aaf aaf -biY -bkI -bmH -boB -bqT -btb -buE -bwz -byn -bAb -bBE -bDr -bEW -bGN -bIm -bJT -bLy -bNm -bOG -bQp -bRH -bGM -bTU -bVl -bWz -bXY -bZm -cax -cch -cdK -QsZ -cgf -Qta -ciF -ckb -clD -cmI -cnV -cpg -cqA -crI -csQ -ctL -ctL -ctL -ctL -ctL -ctL -ctL -ctL -ctL -cCq -cDe -cEm -cFg -cFg -dDE -cHR -cIM -cJL -cKG -cLy -cPb -cPb -cPb -cPb -cPb +bly +bnj +bpc +bqS +btm +bvw +bwY +byX +bAO +bCF +bEm +bGc +bHP +bJG +bLm +bMV +bOJ +bQu +bSa +bTJ +bVc +bJF +bXu +bYM +caj +cbN +cdh +cet +cge +chL +ciS +ckk +clt +cmL +cok +cpN +cqS +csi +ctu +cuQ +cvZ +cxl +cyf +cyf +cyf +cyf +cyf +cyf +cyf +cyf +cyf +cHB +cIu +cJG +cKC +cKC +cMC +cNJ +cOG +cPI +cQF +cRC +cPx +cPx +cPx +cPx +cPx aaa aaa aaa @@ -110629,119 +107215,119 @@ aaa aaf aaf aaf -adZ -adZ -age -agV -adZ -adZ +adX +adX +aga +agS +adX +adX ajC -akM -alY -cZR -cZR -EDD -arm -asC -atT -auY -awm -axo -ayE -azN -aBh -aCq -aDH -aEY -aGs -aHE -aIQ -aKb -dCq -aIR -aOi -aPB -aQH -aQH -dCz -aUH -aTk -aXT -aZn -baT -bci +akN +amg +anx +anx +aqb +arz +asO +auh +avm +awx +axx +ayH +azM +aBl +aCz +aDO +aFv +aHe +aIC +aJO +aKW +aMB +aJP +aPz +aRb +aSo +aSo +aVl +aWP +aVh +bah +bbL +bdu +beO aaf aaf aaf -bfv -bfv -bfv -boC -bqU -bfv -bcj -bcj -byo -bcj -bBN -bDs -bEX -bGO -bIn -bJU -bLz -bLz -bLz -bQq -bRI -bGM -bTV -bVm -bWA -bXV -bZj -cay -cci -cdL -ceR -QsX -chm -ciG -ckc -clE -cmJ -cnW -cph -cqB -cJm -csR -ctL -cuF -cvJ -cwK -cxH -cyt -czl +bhY +bhY +bhY +bqT +btn +bhY +beP +beP +bAP +beP +bEv +bGd +bHQ +bJH +bLn +bMW +bOK +bOK +bOK +bTK +bVd +bJF +bXv +bYN +cak +cbK +cde +ceu +cgf +chM +ciT +ckl +clu +cmM +col +cpO +cqT +csj +ctv +cuR +cwa +cxm +cyf +czi cAp -cBj -cCq -cDf -cEm -cFh -cGd -cGW -cHS -cIN -cJM -cCq -cgM -EDF -cwc -cNe -cNT -cNe -ack -ack +cBA +cCK +cDC +cEz +cFG +cGv +cHB +cIv +cJG +cKD +cLE +cMD +cNK +cOH +cPJ +cHB +cRB +cSs +cTn +cUf +cUZ +cUf +acg +acg aaf aaf aaa @@ -110885,118 +107471,118 @@ aaa aaf aaf aaa -adZ -adZ -afi -agf -agW -ahJ -adZ +adX +adX +aff +agb +agT +ahH +adX ajD -akN -amg -anw -aoC -apS -arn -asD -atU -avg -awn -axp -dBF -azO -aBi +akO +amh +any +aoI +aqc +arA +asP +aui +avu +awy +axy +ayI +azN +aBm ajm ajm ajm ajm -aHE -aIR -aKc -aLC -aMO -aOk +aIC +aJP +aKX +aMC +aNW aPB -aQH -aQH -aTo -aUI -aWl -aXU -aZo -baU -bcj -bcj -bcj -bcj -bcj -bkJ -bcj -bcj -bcj -bcj -buF -bwA -bfA -bAc -bcj -bDj -bEY -bGP -bIo -bJV -bLA -bNn -bOH -bQr -bRJ -bGM -bTW -dCE -bWA -bXV -bZk -caz -cci -cdM -ceS -cgg -cgd -cgd -ckd -cgd -cgd -cnX -cIm -cnX -cgd -csS -ctM -cuG -cvK -cuG -cxH -cyu -czm +aRb +aSo +aSo +aVm +aWQ +aYx +bai +bbM +bdv +beP +beP +beP +beP +beP +bnk +beP +beP +beP +beP +bwZ +byY +bid +bCG +beP +bFU +bHR +bJI +bLo +bMX +bOL +bQv +bSb +bTL +bVe +bJF +bXw +bbu +cak +cbK +cdf +cev +cgf +chN +ciU +ckm +cki +cki +com +cki +cki +csk +ctw +csk +cki +cxn +cyg +czj cAq -cBk -cCq -cDg -cEn -cFi -cGe -cGX -cHT -cFh -cFh -cKH -cLz -EDG -cMk -bTs -bTs -bTs +czj +cCK +cDD +cEA +cFH +cGw +cHB +cIw +cJH +cKE +cLF +cME +cNL +cKD +cKD +cQG +cRD +cSt +cTo +cye +cye +cye aaa aaa aaa @@ -111142,116 +107728,116 @@ aaa aaa aaf aaa -adZ -aet -afj -agg -agX -ahK +adX +aer +afg +agc +agU +ahI aiE ajE -akO -dCb -amh -aoD -apT -aro -asE -atV -avh -awo -axq -dBG -azP -aBj -aCr -avk -avk -avk -aHD -aIS -aKd -aIR -aMP -aOl -aPD -aSa -aSa -aTp -aIT -aTk -aXS -dCE -baV -bcj -bdH -bfy -bht -bjg -bkK -bjg -boD -bqV -btc -buG -bwB -byp -bAd -byo -bDt -bEZ -bGM -bIp -bJW -bLB -bNo -bOI -bQs -bRK -bGM -bTX -aYX -bWB -bXZ -bZj -caA -ccj -cdN -ceT -cgh -cAM -ciH -cke -clF -dbH -cnY -cpj -cqC -cgo -cLB -ctL -cuH -cuG -cwL -cxI -cyu -czn -cAr -cBl -cCq -cQD -cEo -cFj -cGf -cGY -cHU -cIO -cJN -cCq -cgN -cMl -EDH -bTs +akP +ami +anz +aoJ +aqd +arB +asQ +auj +avv +awz +axz +ayJ +azO +aBn +aCA +avy +avy +avy +aIB +aJQ +aKY +aJP +aNX +aPC +aRd +aSp +aSp +aVn +aJR +aVh +bag +bbu +bdw +beP +bgo +bib +bjQ +blG +bnl +blG +bqU +bto +bvx +bxa +byZ +bAQ +bCH +bAP +bFU +bHS +bJF +bLp +bMY +bOM +bQw +bSc +bTM +bVf +bJF +bXx +bby +cal +cbO +cde +cew +cgg +chO +ciV +ckn +clv +cmN +con +cpP +cqU +csl +ctx +cuS +cku +cxo +cyf +czk +czj +cBB +cCL +cDD +cEB +cFI +cGx +cHB +cIx +cJI +cKF +cLG +cMF +cNM +cOI +cPK +cHB +cND +cSu +cTp +cye aaf aaf aaf @@ -111399,116 +107985,116 @@ aaa aaa aaf aaa -aea -aeu -afk -agh -agY -ahL +adY +aes +afh +agd +agV +ahJ aiF ajF -akP +akQ +amj +anA ami -anx -dCb -apU -arp -asF -atT -auW -awp -axr -ayF -ayF -ayF -ayF -ayJ -ayJ -aGt -aHF -aIT -aKe -aIR -aIR -aOm -aPB -aQJ -aIT -aIT -aUJ -aHD -aXS -aYX -baW -bck -bdI -bfz -bhu -bjg -bkL -bjg -boE -bqW -btd -buH -bwC -byq -bfA -bcj -bDu -bFa -bGM -bGM -bJX -bLC -bGM -bOJ -bQt -bLC -bGM -bTY -aZa -bWC -bSS -bZn -caB -ccj -cdO -ceU -cgi -cDh -ciI -ckf -clG -dbI -cnZ -cpk -cqD -cgo -csU -ctL -ctL -cvL -ctL -ctL -ctL -cvL -cAs -cBm -cCq -cDi -cDi -cDi -cDi -cGZ -cHV -cIP -cCq -cCq -cLA -bTs -bTs -bTs +aqe +arC +asR +auh +avk +awA +axA +ayK +ayK +ayK +ayK +ayO +ayO +aHf +aID +aJR +aKZ +aJP +aJP +aPD +aRb +aSq +aJR +aJR +aWR +aIB +bag +bby +bdx +beQ +bgp +bic +bjR +blG +bnm +blG +bqV +btp +bvy +bxb +bza +bAR +bid +beP +bGe +bHT +bJF +bJF +bMZ +bON +bJF +bSd +bTN +bON +bJF +bXy +bbx +cam +bWp +cdi +cex +cgg +chP +ciW +cko +clw +cmO +coo +cpQ +cqV +csm +cty +cuT +cku +cxp +cyf +cyf +cAr +cyf +cyf +cyf +cAr +cFJ +cGy +cHB +cIy +cIy +cIy +cIy +cMG +cNN +cOJ +cHB +cHB +cRE +cye +cye +cye aaf aaa aaa @@ -111639,7 +108225,7 @@ aaa aaa aaa aaa -aav +aar aaa aaa aaa @@ -111656,122 +108242,122 @@ aaa aaa aaf aaf -aeb -aev -afl -agi -agZ -ahM +adZ +aet +afi +age +agW +ahK aiG ajG -akQ -amj -any -aoE -apV -arq -asG +akR +amk +anB +aoK +aqf +arD +asS ajD -auW -awp -axs -ayF -azQ -aBk -aCs -aDI -ayJ -ayJ -aHD -aHD -aHD -aHD -aMQ -aHD -aHD -aHD -aRX -aTk -aHD -aHD -aXV -aZa -baX -bcj -bdJ -bfA -bhv -bjg -bkM -bjg -boF -bqX -bte -dCP -bwD -byr -bAe -bcj -bDj -bFb -bGQ -bGM -bJY -bLD -bNp -bOK -bQu -bRL -bSO -bTI -aYX -bWB -aVU -bZo -bZo -cck -cdP -bZo -bZo -chp -ciJ -ckg -clH -bZn -coa -cpl -cqE -crK -csV -ctN -cuI -cvM -cwM -caw -cyv -czo -cAt -cBn -cCr -cDj -caw -cFk -cGg -cHa -cHW -cIQ -cJO -cKI -cQr -cQR -cRa -cSd -cRe -cRe -cRe -cRe -cRe -cRe +avk +awA +axB +ayK +azP +aBo +aCB +aDP +ayO +ayO +aIB +aIB +aIB +aIB +aNY +aIB +aIB +aIB +aTL +aVh +aIB +aIB +baj +bbx +bdy +beP +bgq +bid +bjS +blG +bnn +blG +bqW +btq +bvz +bxc +bzb +bAS +bCI +beP +bFU +bHU +bJJ +bJF +bNa +bOO +bQx +bSe +bTO +bVg +bWl +bXh +bby +cal +aYg +cdj +cdj +cgh +chQ +cdj +cdj +clx +cmP +cop +cpR +cdi +csn +ctz +cuU +cwb +cxq +cyh +czl +cAs +cBC +ces +cDE +cEC +cFK +cGz +cHC +cIz +ces +cKG +cLH +cMH +cNO +cOK +cPL +cQH +cRF +cSv +cTq +cUg +cUi +cUi +cUi +cUi +cUi +cUi aaa aaa aaa @@ -111904,7 +108490,7 @@ aaa aaa aaa aaa -aav +aar aaa aaa aaa @@ -111913,122 +108499,122 @@ aaa aaa aaf aaa -aec -aew -afm -agj -aha -ahN +aea +aeu +afj +agf +agX +ahL aiH ajH -akR -amk -bnh -aoF -apW -arp -asH -atW -auW -awq -axq -ayG -azR -aBl -aCt -aDJ -aEZ -aGu -aHG -aIU -aKf -aLD -aMR -aOn -aHG -aQK -aLK -dCA -aLK -aSe -aXS -aZp -baT -bcj -bdK -bfB -bhw -bjh -bkN -bmI -boG -bqY -btf -buI -bwE -bys -bAf -bcj -bDv -bFc -bGR -bGM -bJZ -bLE -bNq -bOL -bQv -bRL -bSO -bTI -aYX -bWB -aVW -bZo -caC -ccl -cdQ -ceV -cgj -chq -ciK -ckh -clI -bZn -cob -cpm -cqF -crL -csW -ctO -cuJ -cvN -dDy -cwN -cyw -czp -cAu -cBo -crL -cwN -dDy -cFl -cGh -cHb -cHX -cIR -cJP -cPX -cQt -cQZ -cRc -cRf -cYT -cRg -cYT -cYT -djg -cRe +akS +aml +anC +aoL +aqg +arC +asT +auk +avk +awB +axz +ayL +azQ +aBp +aCC +aDQ +aFw +aHg +aIE +aJS +aLa +aMD +aNZ +aPE +aIE +aSr +aML +aVo +aML +aTR +bag +bbN +bdu +beP +bgr +bie +bjT +blH +bno +bpd +bqX +btr +bvA +bxd +bzc +bAT +bCJ +beP +bGf +bHV +bJK +bJF +bNb +bOP +bQy +bSf +bTP +bVg +bWl +bXh +bby +cal +aYi +cdj +cey +cgi +chR +ciX +ckp +cly +cmQ +coq +cpS +cdi +cso +ctA +cuV +cwc +cxr +cyi +czm +cAt +cBD +cCM +cDF +cED +cFL +cGA +cwc +cCM +cBD +cKH +cLI +cMI +cNP +cOL +cPM +cQI +cRG +cSw +cTr +cUh +cVa +cVJ +cVa +cVa +cWR +cUi aaa aaa aaa @@ -112170,122 +108756,122 @@ aaa aaf aaf aaa -adZ -afe -afn -agk -agX -ahO +adX +aev +afk +agg +agU +ahM aiI ajI -akS -aml -anA -aoG -bni -arr -asI -atX -auY -awr -axt -ayH -azS -aBm -aCu -aDK -aFa -aGv -aHG -aIV -aKg -aLE -aMS -aOo -aPE -aQL -aSb -aTq -aUK -aWm -aXW -aZq -baY -bcj -bdL -bfA -bhx -bji -bkO -bjg -boH -bqZ -btg -buJ -bwF -byt -bAg -bck -bDw -bFd -bGS -bGM -bKa -bLF -bNr -bOM -bQw -bRM -bSO -bTI -aYX -bWB -aVW -bZo -caD -ccm -cdR -ceW -cgk -chp -cgo -cgo -cgo -cgo -coc -cpn -cqG -crM -csX -ctP -cuK -cvO -cwO -cxJ -cyx -czq -cAv -cBp -cCs -ctP -cEp -cFm -cGi -cHc -cHY -cIS -cJQ -cgo -cQs -cQS -cRb -cRe -cRe -cRe -cRe -cRe -cZa -cRe +akT +amm +anD +aoM +aqh +arE +asU +aul +avm +awC +axC +ayM +azR +aBq +aCD +aDR +aFx +aHh +aIE +aJT +aLb +aME +aOa +aPF +aRe +aSs +aTO +aVp +aWS +aYy +bak +bbO +bdz +beP +bgs +bid +bjU +blI +bnp +blG +bqY +bts +bvB +bxe +bzd +bAU +bCK +beQ +bGg +bHW +bJL +bJF +bNc +bOQ +bQz +bSg +bTQ +bVh +bWl +bXh +bby +cal +aYi +cdj +cez +cgj +chS +ciY +ckq +clx +cku +cku +cku +cku +csp +ctB +cuW +cwd +cxs +cyj +czn +cAu +cBE +cCN +cDG +cEE +cFM +cGB +cHD +cyj +cJJ +cKI +cLJ +cMJ +cNQ +cOM +cPN +cku +cRH +cSx +cTs +cUi +cUi +cUi +cUi +cUi +cWS +cUi aaa aaa aaa @@ -112427,122 +109013,122 @@ aaa aaa aaf aaa -adZ -adZ -afo -agl -ahb -auX -adZ +adX +adX +afl +agh +agY +ahN +adX ajD -akT -amm -anB -aoH -apY -arp -asJ +akU +amn +anE +aoN +aqi +arC +asV ajD -auW -aws -axu -ayI -azT -aBn -aCv -aDL -ayJ -ayJ -aHG -aIW -aKh -aKh -aMT -aOp -aPF -aQM -aSc -aTr -aOx -aWn -aXX -aYX -baU -bcj -bdM -bfC -bhy -bjj -bkO -bjg -bjg -bcj -bcj -bcj -bwG -bcj -bcj -bcj -bDj -bEW -bGM -bGM -bGM -bGM -bGM -bGM -bQx -bGM -bGN -bTJ -aYX -bWD -bYa -bZo -caE -ccn -cdS -ceX -cgl -bZo -dwv -cki -clJ -cmL -ccd -cpo -cqH -crN -csY -csY -cuL -cvP -crQ -crQ -cyy -czr -cAw -cBq -cyy -cyK -cyK -cAP -cyK -cHd -cHZ -cIT -cIT -cIg -dAw -dvY -dvY +avk +awD +axD +ayN +azS +aBr +aCE +aDS +ayO +ayO +aIE +aJU +aLc +aLc +aOb +aPG +aRf +aSt +aTP +aVq +aPO +aYz +bal +bby +bdv +beP +bgt +bif +bjV +blJ +bnp +blG +blG +beP +beP +beP +bze +beP +beP +beP +bFU +bHP +bJF +bJF +bJF +bJF +bJF +bJF +bTR +bJF +bJG +bXi +bby +can +cbP +cdj +ceA +cgk +chT +ciZ +ckr +cdj +cmR +cor +cpT +cqW +cga +ctC +cuX +cwe +cxt +cxt +czo +cAv +cwh +cwh +cDH +cEF +cFN +cGC +cDH +cDT +cDT +cHV +cDT +cMK +cNR +cON +cON +cNY +cRI +cky +cky aaa aaf aaa aaa -cRe -cZa -cRe +cUi +cWS +cUi aaa aaa aaa @@ -112685,121 +109271,121 @@ aaa aaf aaa aaa -adZ -adZ -agm -agV -adZ -adZ +adX +adX +agi +agS +adX +adX ajJ -akU -amn -dap -dap -dap -ars -asK -atY -avi -awt -axv -ayF -azU -aBo -aCw -aDM -aFb -aGw -aHG -aIX -aKi -aLF -aMU -aOq -aPG -aQN -aSd -aTs -aUL -aSe -aXS -aYX -baT -bcj -bdN -bfD -bhz -bjk -bkP -bjg -boI -bcj -bth -buK -bwH -byu -bAh -bBO -bDx -bFe -bGT -bIq -bKb -bLG -bNs -bON -bQy -bRN -bSP -bUa -bVn -bWE -bSS -bZo -bZo -bZo -bZo -bZo -bZo -bZo -ciL -ckj -dwL -cgo -cod -cpp -cqI -crO -csZ -ctQ -cuM -cvQ -cwP -crQ -cyz -czs -cAx -cFr -cCt -cyK -cEq -cEq -cEq -cHe -cIa -cIU -cJR -cIg -dAx -dwv -dvY +akV +amo +anF +anF +anF +arF +asW +aum +avw +awE +axE +ayK +azT +aBs +aCF +aDT +aFy +aHi +aIE +aJV +aLd +aMF +aOc +aPH +aRg +aSu +aTQ +aVr +aWT +aTR +bag +bby +bdu +beP +bgu +big +bjW +blK +bnq +blG +bqZ +beP +bvC +bxf +bzf +bAV +bCL +bEw +bGh +bHX +bJM +bLq +bNd +bOR +bQA +bSh +bTS +bVi +bWm +bXz +bYO +cao +bWp +cdj +cdj +cdj +cdj +cdj +cdj +cdj +cmS +cos +cpU +cku +csq +ctD +cuY +cwf +cxu +cyk +czp +cAw +cBF +cwh +cDI +cEG +cFO +cGD +cHE +cDT +cJK +cJK +cJK +cML +cNS +cOO +cPO +cNY +cRJ +cmR +cky aaa aaf aaa aaa -cRe -cZa -cRe +cUi +cWS +cUi aaf aaa aaa @@ -112949,119 +109535,119 @@ aaf aaf aiD ajK -akV -amo -anC -aoI -apZ -art -asL -aqa +akW +amp +anG +aoO +aqj +arG +asX +aqk ajm -awu -axw -ayF -azV -aBp -aCx -aDN -ayJ -aGx -aHH -aIY -aKj -aLG -aMV -aOr -aHG -aQO -aOu -aTt -aUM -aWo -aXS -aYX -baT -bcj -bcj -bcj -bcj -bcj -bcj -bcj -bcj -bcj -bti -bcg -bcg -bcg -bcg -bBP -bDy -bFf -bGU -bcg -bcg -bcg -bcg -bcg -bcg -bcg -bcg -bTS -aYX -bWF -bYb -cmZ -diA -crJ -dDq -ceY -cgm -chr -ciM -ckk -clL -cmM -coe -cpq -cqJ -crP -cuN -ctR -cuN -cvR -cwQ -crQ -cyA -czt -cAy -cBs -cCt -cyK -cEr -cEr -cEr -cHe -cIb -cIV -cJS -cIg -dxQ -dzc -dvY +awF +axF +ayK +azU +aBt +aCG +aDU +ayO +aHj +aIF +aJW +aLe +aMG +aOd +aPI +aIE +aSv +aPL +aVs +aWU +aYA +bag +bby +bdu +beP +beP +beP +beP +beP +beP +beP +beP +beP +bvD +beM +beM +beM +beM +bEx +bGi +bHY +bJN +beM +beM +beM +beM +beM +beM +beM +beM +bXs +bby +cap +cbQ +cdk +ceB +cgl +chU +cja +cks +clz +cmT +cot +cpV +cqX +csr +ctE +cuZ +cwg +cxv +cyl +cxv +cAx +cBG +cwh +cDJ +cEH +cFP +cGE +cHE +cDT +cJL +cJL +cJL +cML +cNT +cOP +cPP +cNY +cyw +cSy +cky aaf aaf aaf aaa -cRe -cZa -cRe -cRu -cRi -cRi -cRi -cRi +cUi +cWS +cUi +cXy +cXz +cXz +cXz +cXz aaf aaa aaf @@ -113088,8 +109674,8 @@ aaf aaa aaf aaf -aai -aag +aae +aad aaa aaa aaa @@ -113199,144 +109785,144 @@ aaa aaa aaf aaa -aey -aey -aez -aey -aey +aew +aew +aex +aew +aew aiJ aiJ -akW -amp +akX +amq aiJ -aoJ -aqa -aru -aqa -aqa -avj -awv -axx -ayJ -ayJ -ayJ -ayJ -ayJ -ayJ -dCp -aHG -aHG -aHG -aHG -aHG -aHG -aHG -aQP -aSe -aTu -aUM -aWp -aXS -aYX -baZ -bcl -bdO -bfE -bhA -bjl -bkQ -bmJ -boJ +aoP +aqk +arH +aqk +aqk +avx +awG +axG +ayO +ayO +ayO +ayO +ayO +ayO +aHk +aIE +aIE +aIE +aIE +aIE +aIE +aIE +aSw +aTR +aVt +aWU +aYB +bag +bby +bdA +beR +bgv +bih +bjX +blL +bnr +bpe bra -btj -buL -bdO -byv -bcl -bBQ -bDz -bFg -bGV -bGV -bKc -bLH -bNt -bOO -bQz -bRO -bSQ -bUb -bVb -bWG -bSS -bSS -bSS -bSS -bSS -ceZ -cgn -dvY -dww -ckl -diH -cgo -cof -cpr -cci -crQ -ctb -ctS -cuO -cvS -cwR -crQ -cyB -czy -cAz -cBt -cCu -cyK -cEs -cFn -cFn -cHe -cIc -cIW -cJT -cIg -diT -cMp -dxk +btt +bvE +bxg +bgv +bAW +beR +bEy +bGj +bHZ +bJO +bJO +bNe +bOS +bQB +bSi +bTT +bVj +bWn +bXA +bYC +caq +bWp +bWp +bWp +bWp +bWp +cjb +ckt +cky +cmU +cou +cpW +cku +css +ctF +cgf +cwh +cxw +cym +czq +cAy +cBH +cwh +cDK +cEI +cFQ +cGF +cHF +cDT +cJM +cKJ +cKJ +cML +cNU +cOQ +cPQ +cNY +cRK +cSz +cua aaa aaa aaf aaf -cRe -cZa -cRe -cRi -dbX -dcg -dcs -cRi -dcE -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -dlV -dlV -dlV -dlV +cUi +cWS +cUi +cXz +cXR +cYe +cYs +cXz +cYM +cXz +cXz +cXz +cXz +cXz +cXz +cXz +cXz +cXz +cXz +cXz +cXz +cXz +dar +dar +dar +dar aaf aaa aaa @@ -113346,8 +109932,8 @@ aaa aaa aaf aaa -aag -aag +aad +aad aaa aaa aaa @@ -113447,7 +110033,7 @@ aaa aaa aaa aaa -aav +aar aaa aaa aaa @@ -113456,155 +110042,155 @@ aaa aaa aaf aaa -aey -afp -agn -agn -agn +aew +afm +agj +agj +agj aiK ajL -akX -amq +akY +amr aiJ -aoK -aqa -arv -asM -atZ -avk -aww -axy -ahx -azW -aBq -aCy -aDO -aCy -aGy -aCy -aIZ -aKk -aLH -aMW -aOs -aPH -aQN -aOu -aTt -aUM -aWq -aXY -aZr -bba -dCH -bdP -baG -bhB -bjm -bkR -aWf -aWf -brb -btk -aWf -bwI -aWf -dCT -bBR -bDA -bFh -bGW -bIr -bwI -aWf -aWf -aWf -aWf -dCT -aWf -aWf -bVo -bWH -bYc -bZq -caG -ccp -bSS -ceZ -cgo -cgo -cgo -cgo -cgo -cgo -ccd -cps -cci -crQ -ctc -ctT -cuP -cvS -cwS -crQ -cyC -czv -dDA -cBu -cCv -cyK -cEt -cFn -cGj -cHe -cId -cIX -cJU -cIg -cLF -dvY -dvY -dvY -dvY -dvY -dvY -cRe -djh -cYT -cRv -dbY -dch -dct -dcz -djs -cRi -cSh -cSp -cSy -cSd -cSh -dbo -cSy -cSd -cSh -dbs -cSn -cRi -dde -ddj -cTp -dlV -dlV -dlV -dlV -dlV -dlV -dlV -dlV -dlV +aoQ +aqk +arI +asY +aun +avy +awH +axH +ahv +azV +aBu +aCH +aDV +aCH +aHl +aCH +aJX +aLf +aMH +aOe +aPJ +aRh +aSu +aPL +aVs +aWU +aYC +bam +bbP +bdB +beS +bgw +bdh +bjY +blM +bns +aYr +aYr +btu +bvF +aYr +bzg +aYr +bCM +bEz +bGk +bIa +bJP +bLr +bzg +aYr +aYr +aYr +aYr +bCM +aYr +aYr +bYP +car +cbR +cdl +ceC +cgm +bWp +cjb +cku +cku +cku +cku +cku +cku +cga +ctF +cgf +cwh +cxx +cyn +czr +cAy +cBI +cwh +cDL +cEJ +cFR +cGG +cHG +cDT +cJN +cKJ +cLK +cML +cNV +cOR +cPR +cNY +cRL +cky +cky +cky +cky +cky +cky +cUi +cWT +cVa +cXA +cXS +cYf +cYt +cYD +cYN +cXz +cZc +cZm +cZv +cUg +cZc +cZM +cZv +cUg +cZc +dac +cZl +cXz +das +daD +daP +dar +dar +dar +dar +dar +dar +dar +dar +dar aaa aaa -aai +aae aaa aaa aaa @@ -113697,7 +110283,7 @@ aaa aaa aaa aaa -aav +aar aaa aaa aaa @@ -113713,155 +110299,155 @@ aaa aaa aaf aaf -aez -afq -ago -ahc -ahc +aex +afn +agk +agZ +agZ aiL ajM -akY -amr -anD -aoL +akZ +ams +anH +aoR ajD -arv -asN -atZ -avk -awx -axz -ahx -azX -dsg -axC -axC -axC -axC -axC -axC -axC -aZU -aMX -aOt -aOt -aQQ -aOt -aTv -aUM -aWr -aXZ -aZs -bbb -bcm -bdQ -bfF -bhC -bjn -bkS -bmK -boK -brc -brc -buM -bwJ -byw -byw -byw -bDB -bFi -bGX -bIs -bKd -bIs -bNu -bIs -bIs -bIs -bSR -bUc -bVp -bWI -bYd -bZr -caH -ccq -bSS -ceZ -cgo -chs -ciN -ckm -clN -bZn -cog -cpr -cqK -crQ -ctd -ctU -cuQ -cvT -cwT -crQ -cyD -czw -cAA -cBv -cCw -cyK -cEu -cFo -cEu -cHe -cIe -cIY -cIe -cIg -cPe -dvY -cNi -cgs -cOB -cPf -dvY -cRe -cRe -cRe -cRi -dbZ -dci -dcu -cRi -cRe -cRi -cSg -cSo -cSn -cSd -cSg -cSo -cSn -cSd -cSg -cSo -cSn -cRi -cTA -cTn -cTC -cTC -cTC -cTC -cTC -cTC -cTC -daO -bIx -dlV +arI +asZ +aun +avy +awI +axI +ahv +azW +aBv +axL +axL +axL +axL +axL +axL +axL +aMI +aOf +aPK +aPK +aSx +aPK +aVu +aWU +aYD +ban +bbQ +bdC +beT +bgx +bii +bjZ +blN +bnt +bpf +brb +btv +btv +bxh +bzh +bAX +bAX +bAX +bGl +bIb +bJQ +bLs +bNf +bLs +bQC +bLs +bLs +bLs +bWo +bXB +bYQ +cas +cbS +cdm +ceD +cgn +bWp +cjb +cku +clA +cmV +cov +cpX +cdi +cst +ctF +cva +cwh +cxy +cyo +czs +cAz +cBJ +cwh +cDM +cEK +cFS +cGH +cHH +cDT +cJO +cKK +cJO +cML +cNW +cOS +cNW +cNY +cOc +cky +cTt +cvs +cVb +cVK +cky +cUi +cUi +cUi +cXz +cXT +cYg +cYu +cXz +cUi +cXz +cZd +cZl +cZl +cUg +cZd +cZl +cZl +cUg +cZd +cZl +cZl +cXz +dat +daE +daQ +daQ +daQ +daQ +daQ +daQ +daQ +dbu +dbD +dar aaf aaf -aag +aad aaa aaa aaa @@ -113970,156 +110556,156 @@ aaa aaa aaf aaa -aey -afr -agp -agp -agp +aew +afo +agl +agl +agl aiM ajN -akZ -ams -aey -aoM +ala +amt +aew +aoS ajD -arw -asM -atZ -avk -awy -axA -ahx -dhz -aoP -axC -aDP -axC -aGz -axC -aJa -axC -bbG -aMY -aOu -aOv -aQR -dCv -aTw -aUM -aWs -dnh -aZt -aZt -aZt -aZt -bfG -bhD -bjo -bkT -bmL -boL -bmO -bmM -bmO -bmP -dhT -bmP -bBS -bDC -bFj -bGY -bmP -dik -bKe -bNv -bOP -bOP -bKe -bSS -bUd -bVq -bWJ -bYc -bZs -caI -ccr -bSS -cfa +arJ +asY +aun +avy +awJ +axJ +ahv +azX +aoZ +axL +aDW +axL +aHm +axL +aJY +axL +aMJ +aOg +aPL +aPM +aSy +aRk +aVv +aWU +aYE +als +bbR +bbR +bbR +bbR +bij +bka +blO +bnu +bpg +brc +bpj +bph +bpj +bpk +bAY +bpk +bEA +bGm +bIc +bJR +bpk +bNg +bNh +bQD +bSj +bSj +bNh +bWp +bXC +bYR +cat +cbR +cdn +ceE cgo -cht -ciO -ckn -clO -cmN -coh -cpt -cqL -crQ -cte -ctV -cuR -cvU -cwU -crQ -cyE -czx -cAB -cBw -cCx -cDk -cEv -cFp -cGk -cHf -cIf -cIZ -cJW -cIg -dDF -dvY -cNj -dwN -dwN -cPg -dvY +bWp +cjc +cku +clB +cmW +cow +cpY +cqY +csu +ctG +cvb +cwh +cxz +cyp +czt +cAA +cBK +cwh +cDN +cEL +cFT +cGI +cHI +cIA +cJP +cKL +cLL +cMM +cNX +cOT +cPS +cNY +cRM +cky +cTu +cmS +cmS +cVL +cky aaa aaa aaa -cRw -cRi -dcj -cRx -cRi -cRD -cSd -cSg -cSn -cSn -cSd -cSg -cSn -cSn -cSd -cSg -cSn -cSn -cRi -cRi -cTq -cRi -cRi -cRi -cRi -cRi -cRi -cRi -daP -cLE -dlV +cXB +cXz +cYh +cYv +cXz +cYO +cUg +cZd +cZl +cZl +cUg +cZd +cZl +cZl +cUg +cZd +cZl +cZl +cXz +cXz +daF +cXz +cXz +cXz +cXz +cXz +cXz +cXz +dbv +dbE +dar aaa aaa aaf -aag +aad aaa aaa aaa @@ -114203,7 +110789,7 @@ aaa aaa aaa aaa -aac +aab aaa aaa aaa @@ -114227,156 +110813,156 @@ aaa aaa aaf aaa -aey -aey -aez -aey -aey -aey -aey -aey -aey -aey -aoN +aew +aew +aex +aew +aew +aew +aew +aew +aew +aew +aoT ajD -arx -asO +arK +ata ajD -avk -awz -axB -ahx +avy +awK +axK +ahv azY -aoP -axC -aDQ -axC -aGA -axC -aJb -axC -bah -aMY -aOv -aOw -aQR -aOu -aTx -aUM -aWt -aYa -aZt -bbc -bcn -bdR -aZt -bhE -bjp -bkU -bmM -boM +aoZ +axL +aDX +axL +aHn +axL +aJZ +axL +aMK +aOg +aPM +aPN +aSy +aPL +aVw +aWU +aYF +aHD +bbR +bdD +beU +bgy +bbR +bkb +blP +bnv +bph brd -btl -bmO -bwK -bwO -bAi -bBT -bwO -bFk -bGZ -bIt -bKe -bLI -bNw -bOQ -bQA -bRP -bST -bUe -bVr -bWK -bST -bUe -caJ -bUe -bST -ceZ -cgo -chu -ciP -cko -clP -cmO -coi -cpu -cqM -crR -crR -crR -crR -crR -crR -crR -cyF -czy -cAC -cBx -cCy -cDl -cEu -cFq -cEu -cHe -cIg -cIg -cIg -cIg -dxQ -dvY -cNk -dwN -dwN -cPh -dvY +btw +bvG +bpj +bzi +bAZ +bCN +bEB +bAZ +bId +bJS +bLt +bNh +bOT +bQE +bSk +bTU +bVk +bWq +bXD +bYS +cau +bWq +bXD +ceF +bXD +bWq +cjb +cku +clC +cmX +cox +cpZ +cqZ +csv +ctH +cvc +cwi +cwi +cwi +cwi +cwi +cwi +cwi +cDO +cEI +cFU +cGJ +cHJ +cIB +cJO +cKM +cJO +cML +cNY +cNY +cNY +cNY +cyw +cky +cTv +cmS +cmS +cVM +cky aaa aaa aaf -cRi -cRh -dck -cRz -cRB -cRN -cSd -cRU -cSq -cRZ -cSd -dcP -cSN -cSD -cSd -dcU -cTc -dcX -cSd -ddf -ddk -cTj -cTD -cRi -cSn -daF -daJ -cRi -bvT -cRi -cRi -cRi -cRi +cXz +cXU +cYi +cYw +cYE +cYP +cUg +cZe +cZn +cZw +cUg +cZH +cZN +cZT +cUg +cZZ +dad +dai +cUg +dau +daG +daR +dba +cXz +cZl +dbk +dbp +cXz +dbw +cXz +cXz +cXz +cXz aaa -aai +aae aaa aaa aaa @@ -114487,153 +111073,153 @@ aaa aaf aaa aaa -agq -ahQ -agq +agm +ahO +agm ajO -ala -amt -agq -dhr +alb +amu +agm +aoU ajD ajD ajD ajD -ahx -ahx -ahx -ahx -aGE -aBr -aCz -aDR -aFc -aGB -aHI -aFd -aKl -aLK -aMY -aOw -aPI -aQS -aSf -aTy -aUM -aUM -aYb -aZt -bbd -bco -bdS -bfH -bhF -bjq -bkV -bmN -boN +ahv +ahv +ahv +ahv +azZ +aBw +aCI +aDY +aFz +aHo +aIG +aFA +aLg +aML +aOg +aPN +aRi +aSz +aTS +aVx +aWU +aWU +bao +bbR +bdE +beV +bgz +bik +bkc +blQ +bnw +bpi bre -btm -bmO -bwL -byy -bAj -bBT -bDD -bFl -bHa -bIu -bKe -bLJ -bNx -bOR -bQB -bRQ -bST -bUf -bVs -bWL -bYe -bZt -caK -ccs -bST -cfb +btx +bvH +bpj +bzj +bBa +bCO +bEB +bGn +bIe +bJT +bLu +bNh +bOU +bQF +bSl +bTV +bVl +bWq +bXE +bYT +cav +cbT +cdo +ceG cgp -chv -ciQ -ckp -clQ -bZn -ccd -cpv -cqN -crS -ctf -ctW -cuS -cvV -cwV -crR -cyG -czz -cAD -cBy -cCz -cDm -cEw -cFr -cGl -cHg -cIh -dAh -dbl -dyc -dxQ -dvY -dvY -cNW -cOC -dvY -dvY +bWq +cjd +ckv +clD +cmY +coy +cqa +cdi +cga +ctI +cvd +cwj +cxA +cyq +czu +cAB +cBL +cwi +cDP +cEM +cFV +cGK +cHK +cIC +cJQ +cGD +cLM +cMN +cNZ +cOU +cPT +cLP +cyw +cky +cky +cUj +cVc +cky +cky aaa aaa aaa -cRi -dca -dcl -cRy -cRA -cRM -cRa -cSj -cSs -cSB -cSI -cSj -cSO -cSS -cSI -cSj -cTb -cST -cSd -cSL -cVa -cTr -cRY -daC -cSn -cSn -cSn -cRi -dmq -cRi -cZv -cZv -cRi +cXz +cXV +cYj +cYx +cYF +cYQ +cTq +cZf +cZo +cZx +cZE +cZf +cZO +cZU +cZE +cZf +dae +daj +cUg +dav +daH +daS +dbb +dbg +cZl +cZl +cZl +cXz +dbx +cXz +dbH +dbH +cXz aaf -aag +aad aaa aaa aaa @@ -114743,152 +111329,152 @@ aaf aaf aaf aaa -agq -agq -agq -agq -aje -alb -aje -agq -aur -aqb -aqb -asP -aua -aqb -aqb -aqb -aqb -azZ -aBs -axC -aDS -aFd -aGC -aHJ -aHJ -aKl -aLL -aMZ -aOx -aPJ -aQT -aOu -aTt -aUN -aUM -aYc -aTC -bbe -bcp -bdT -bfI -bhE -bjp -bkU -bmM -boO +agm +agm +agm +agm +aiN +alc +aiN +agm +aoV +aql +aql +atb +auo +aql +aql +aql +aql +aAa +aBx +axL +aDZ +aFA +aHp +aIH +aIH +aLg +aMM +aOh +aPO +aRj +aSA +aPL +aVs +aWV +aWU +bap +aVB +bdF +beW +bgA +bil +bkb +blP +bnv +bph brf -btn -bmO -bwM -bwO -bAk -bBT -bwO -bFm -bGZ -bBT -bKf -bLK -bNy -bOS -bQB -bRR -bST -bUg -bVt -bWM -bYf -bVt -caL -cct -cdU -cfc -cgo -diD -ciR -ckq -clR -bZn -coj -cpw -cqO -crT -ctg -ctX -cuT -cuT -cwW -crR -cyH -czx -cAE -cBz -cCA -cDn -cEx -cDn -cGm -cHh -cIi -cJa -dAp -cKK -cxM -dvY -cNl -dAZ -cOD -cPi -dvY +bty +bvI +bpj +bzk +bAZ +bCP +bEB +bAZ +bIf +bJS +bEB +bNi +bOV +bQG +bSm +bTV +bVm +bWq +bXF +bYU +caw +cbU +bYU +ceH +cgq +chV +cje +cku +clE +cmZ +coz +cqb +cdi +csw +ctJ +cve +cwk +cxB +cyr +czv +czv +cBM +cwi +cDQ +cEL +cFW +cGL +cHL +cID +cJR +cID +cLN +cMO +cOa +ckx +cPU +cQJ +cRN +cky +cTw +cUk +cVd +cVN +cky aaa aaa aaf -cRe -cRS -dcm -dcv -cRC -dcG -cSe -cSi -cSr -cSA -cSG -cSK -cSr -cSA -cSW -cSK -cSr -dcY -ddc -cSk -ddl -cTk -cTm -daB -daB -daG -cSn -cRi -ddx -ddz -daR -cZv -cRe +cUi +cXW +cYk +cYy +cYG +cYR +cYZ +cZg +cZp +cZy +cZF +cZI +cZp +cZy +cZX +cZI +cZp +dak +dap +daw +daI +daT +dbc +dbh +dbh +dbl +cZl +cXz +dby +dbF +dbI +dbH +cUi aaa aaa aaa @@ -115000,153 +111586,153 @@ aaf aaa aaf aaa -agq -ahd -ahR -aje -aje -alc -aje -agq -dCe -agq -agq -asQ -agq -agq -agq -axC -axC -axC -axC -axC -aDS -aFe -axC -axC -axC -axC -dhJ -aNa -aOy -aOt -aQU -aSg -aTt -aUO -aUM -boW -aZt -bbf -bcq -bdU -bfJ -bhG -bjr -bkW -bmO -bmO -bmO -bmO -bmO -bwN -byz -bAj -bBU -bDE -dDb -bHb -bMP -bKg -bLL -bNz -bOT -bQC -bLK -bSU -bUh -bVs -bWN -bWR -dDl -caM -ccu -bST -cfd -cgq -cgq -cgq -cgq -cgq -cmP -cmP -cpx -cqP -crR -cth -ctY -cuU -cvW -cwX -cxK -cyI -czA -cAF -cBA -cCB -cDo -cEy -cFs -cGn -cHi -cIj -dvY -dvY -cKL -dvY -dvY -diW -cNX -dBe -cPj -dvY +agm +aha +ahP +aiN +aiN +ald +aiN +agm +aoW +agm +agm +atc +agm +agm +agm +axL +axL +axL +axL +axL +aDZ +aFB +axL +axL +axL +axL +aMN +aOi +aPP +aPK +aSB +aTT +aVs +aWW +aWU +baq +bbR +bdG +beX +bgB +bim +bkd +blR +bnx +bpj +bpj +bpj +bpj +bpj +bzl +bBb +bCO +bEC +bAZ +bIg +bJU +bLv +bNj +bOW +bQH +bSn +bTW +bOV +bWr +bXG +bYT +cax +cbV +caB +ceI +cgr +bWq +cjf +ckw +ckw +ckw +ckw +ckw +cra +cra +ctK +cvf +cwi +cxC +cys +czw +cAC +cBN +cCO +cDR +cEN +cFX +cGM +cHM +cIE +cJS +cKN +cLO +cMP +cOb +cky +cky +cQK +cky +cky +cTx +cUl +cVe +cVO +cky aaa aaa aaf -cRe -cRS -dcn -dcw -cRk -dcH -cSf -cSl -cSJ -cSa -cSJ -cSJ -cUM -cUN -cSJ -cSJ -cSJ -cSV -cSJ -cSX -ddm -cTt -daA -cSn -cSn -cSo -daL -cRi -daQ -ddA -daS -dbv -cTT -ddC +cUi +cXW +cYl +cYz +cYH +cYS +cZa +cZh +cZq +cZz +cZq +cZq +cZP +cZV +cZq +cZq +cZq +dal +cZq +dax +daJ +daU +dbd +cZl +cZl +cZl +dbq +cXz +dbz +dbG +dbJ +dbL +dbN +dbO aaf aaa aaa @@ -115237,7 +111823,7 @@ aaa aaa aaa aaa -aav +aar aaa aaa aaa @@ -115257,152 +111843,152 @@ aaf aaa aaf aaf -agq -ahe -ahS -aje +agm +ahb +ahQ +aiN ajP -ald -amu -anE -aoQ -agq -ary -asR -aje -auc -awA -axC -ayK -aAa -aBt -aCA -aDT -aFf -aGD -aHK -aJc -axC -aLN -aNa -aOz -aOu -aQV -aOv -aTt -aUP -aUM -dCD -aZt -bbg -bcr -bdV -aZt -bhH -bjp -bkU -bmP -boP +ale +amv +anI +aoX +agm +arL +atd +aiN +auq +awL +axL +ayP +aAb +aBy +aCJ +aEa +aFC +aHq +aII +aKa +axL +aMO +aOi +aPQ +aPL +aSC +aPM +aVs +aWX +aWU +bar +bbR +bdH +beY +bgC +bbR +bke +blP +bnv +bpk brg -bto -buN -dCS -bwO -bAl -bBT -bwO -bFn -bHc -bIw -bKh -bLM -bNA -bOU -bQD -bRS -Ljw -bUi -bVu -bWO -bYg -bWT -caN -ccv -bST -dDr -cgq -chx -chx -chx -cgq -cmQ -cok -cpy -cqQ -cgq -cti -ctZ -cuV -cvX -cwY -crR -cyJ -czB -cAG -cBB -cCC -cDp -cyK -cyK -cyK -cyK -cPe -dvY -cJY -cKM -cLH -dvY -cNn -dAZ -cOE -cPh -dvY +btz +bvJ +bxi +bzm +bAZ +bCQ +bEB +bAZ +bIh +bJV +bLw +bNk +bOX +bQI +bSo +bTX +bVn +bWs +bXH +bYV +cay +cbW +caD +ceJ +cgs +bWq +cjg +ckw +clF +clF +clF +ckw +crb +csx +ctL +cvg +ckw +cxD +cyt +czx +cAD +cBO +cwi +cDS +cEO +cFY +cGN +cHN +cIF +cDT +cDT +cDT +cDT +cOc +cky +cPV +cQL +cRO +cky +cTy +cUk +cVf +cVM +cky aaa aaa aaf -cRe -cRS -dco -dcx -dcA -dcI -cRR -cRV -cRX -cSb -dcO -dcQ -cRX -cSb -dcT -dcQ -cRX -dcZ -ddd -cTa -ddn -cTs -ddu -daD -cSn -daH +cUi +cXW +cYm +cYA +cYI +cYT +cZb +cZi +cZr +cZA +cZG +cZJ +cZr +cZA +cZY +cZJ +cZr +dam +daq +day daK -cRi -bIv -ddz -ddB -cZv -cRe +daV +dbe +dbi +cZl +dbm +dbr +cXz +dbA +dbF +dbK +dbH +cUi aaa aaf aaa @@ -115502,7 +112088,7 @@ aaa aaa aaa aaa -aav +aar aaa aaa aaa @@ -115512,156 +112098,156 @@ aaa aaa aaf aaa -acP -acP -acP -acP -dhn +acM +acM +acM +acM +ahR aiO -aje -ale -ahS -agq -aoR -agq -arz -asS -aub -aje -ahd -axC -ayL -aAb -aBu -aCB -aDU -aFg -dhD -axC -axC -axC -aLO -aNb -aOA -aOw -aQW -aOw -aTt -aUQ -dtE -aYf -aZt -aZt -aZt -aZt -aZt -bhI -bjs -bkX -bmP -boQ +aiN +alf +ahQ +agm +aoY +agm +arM +ate +aup +aiN +aha +axL +ayQ +aAc +aBz +aCK +aEb +aFD +aHr +axL +axL +axL +aMP +aOj +aPR +aPN +aSD +aPN +aVs +aWY +aYG +bas +bbR +bbR +bbR +bbR +bbR +bkf +blS +bny +bpk brh -btp -buO -bwP -byA -bAm -bBV -bDF -bFo -bwO -bBT -bKi -bLN -dDe -bOV -bQE -bRT -bST -bUj -bVu -bWP -bYh -bWT -caO -ccw -bST -ceZ -cgq -chx -ciS -chx -clS -cmR -col -cpz -cqR -cgq -ctj -cua -cuW -cvY -cvX -crR -cyK -cyK -cAH -cBC -cyK -cyK -cyK -dvY -dyc -cub -diP -dvY -cJZ -cKN -diU -dvY -dvY -cNY -dvY -dvY -dvY +btA +bvK +bxj +bzn +bBc +bCR +bED +bGo +bIi +bAZ +bEB +bNl +bOY +bQJ +bSp +bTY +bVo +bWq +bXI +bYV +caz +cbX +caD +ceK +cgt +bWq +cjb +ckw +clF +cna +clF +cqc +crc +csy +ctM +cvh +ckw +cxE +cyu +czy +cAE +cAD +cwi +cDT +cDT +cFZ +cGO +cDT +cDT +cDT +cky +cLP +cyv +cOd +cky +cPW +cQM +cRP +cky +cky +cUm +cky +cky +cky aaa aaa aaa -cRi -dcb -cZa -dDI -dcB -dcJ -cRa -cSm -cSw -cSE -cSI -cSM -cSR -cSE -cSI -dcV -cTe -dda -cSd -cSZ -ddn -cTz -ddv -daC -cSn -cSn -daN -cRi -dmr -cRi -cZv -dbw -cRi +cXz +cXX +cWS +cYB +cYJ +cYU +cTq +cZj +cZs +cZB +cZE +cZK +cZQ +cZB +cZE +daa +daf +dan +cUg +daz +daK +daW +dbf +dbg +cZl +cZl +dbs +cXz +dbB +cXz +dbH +dbM +cXz aaa -aag +aad aaa aaa aaa @@ -115769,156 +112355,156 @@ aaf aaf aaf aaf -acQ -afs -agr -acP -ahU +acN +afp +agn +acM +ahS aiP -acP -acP -acP -acP -aoP -agq -arA -aje -auc -aje -awB -axC -ayM -aAc -aBv -axC -aDV -aFh -aGF -aHL -aJd -axC -aLP -aNb -aOB -aOw -aQX -aOu -aTt -aUR -aUM -aYe -dnh -bbh -duo -dnh -bfK -bhE -bjp -bkU -bmP -boR +acM +acM +acM +acM +aoZ +agm +arN +aiN +auq +aiN +awM +axL +ayR +aAd +aBA +axL +aEc +aFE +aHs +aIJ +aKb +axL +aMQ +aOj +aPS +aPN +aSE +aPL +aVs +aWZ +aWU +bat +als +bdI +beZ +als +bin +bkb +blP +bnv +bpk bri -btq -bmP -bwQ -bwO -bAn -bBT -bwO -bFk -bwO -bBT -bKj -bLN -bLK -ddE -bQF -bNz -bSV -bUk -bVv -bWQ -bWQ -bWQ -caL -ccv -bST -csg -cgq -chx -ciT -ckr -clT -cmS -com -cpA -cqS -cgq -dwL -dwL -dwL -dwL -dwL -dwL -QtY -Quf -cAI -cBD -cCD -QuM -QuR -dvY -cEz -dxQ -dyc -dvY -cKa -cKO -cLJ -cor -cmZ -cNZ -dxk +btB +bvL +bpk +bzo +bAZ +bCS +bEB +bAZ +bId +bAZ +bEB +bNm +bOY +bOV +bSq +bTZ +bQH +bWt +bXJ +bYW +caA +caA +caA +ceH +cgs +bWq +cjh +ckw +clF +cnb +coA +cqd +crd +csz +ctN +cvi +ckw +cpU +cpU +cpU +cpU +cpU +cpU +cDU +cEP +cGa +cGP +cHO +cIG +cJT +cky +cLQ +cyw +cLP +cky +cPX +cQN +cRQ +csE +cdk +cUn +cua aaa aaa aaa aaa aaa -cRi -dcc -dcp -cSt -cSt -dcK -cSd -cRW -cSv -cSc -cSd -dcR -cSQ -dcS -cSd -dcW -cTg -ddb -cSd -ddg -ddo -dds -cTD -cRi -daE -daI -daM -cRi -cTA -cRi -cRi -cRi -cRi +cXz +cXY +cYn +cYp +cYp +cYV +cUg +cZk +cZt +cZC +cUg +cZL +cZR +cZW +cUg +dab +dag +dao +cUg +daA +daL +daX +dba +cXz +dbj +dbn +dbt +cXz +dat +cXz +cXz +cXz +cXz aaf -aag +aad aaa aaa aaa @@ -116021,161 +112607,161 @@ aaa aaa aaa aaa -aai +aae aaa aaa aaf aaa -acP -acP -ags -acP -acP -acP -acP -alf -amv -acP -aoS -acP -arB -arB -arB -arB -arB -axC -axC -axC -axC -axC -aDW -aFi -axC -axC -axC -axC -aLQ -aNc -aOC -dCv -aQY -aOw -aTt -aUS -aUM -aYg -aZv -bbi -bct -dnh -bfL -bhE -bjp -bkU -bmP -dbd +acM +acM +ago +acM +acM +acM +acM +alg +amw +acM +apa +acM +arO +arO +arO +arO +arO +axL +axL +axL +axL +axL +aEd +aFF +axL +axL +axL +axL +aMR +aOk +aPT +aRk +aSF +aPN +aVs +aXa +aWU +bau +bbS +bdJ +bfa +als +bio +bkb +blP +bnv +bpk brj -btr -bmP -bmP -byB -bAo -dhT -bDG -bFp -dhT -bmP -bKe -bLO -bNB -bNB -bQG -bRU -bSW -bUh -bVw -dDl -bWR -bZu -caM -ccx -bST -ceZ -cgq -chy -ciU -chx -clU -cmT -con -cpB -cqT -crU -dwL -cub -cJa -cJa -cJa -QtP -QtZ -QtZ -QtZ -cBE -cAJ -cCE -cCE -czC -dzI -cIl -dAd -dvY -dvY -dvY -dvY -cKP -cKP -cKP -cKP -cKP +btC +bvM +bpk +bpk +bBd +bCT +bAY +bGp +bIj +bAY +bpk +bNh +bOZ +bQK +bQK +bUa +bVp +bWu +bXG +bYX +caB +cbV +cdp +ceI +cgu +bWq +cjb +ckw +clG +cnc +clF +cqe +cre +csA +ctO +cvj +cwl +cpU +cyv +ckx +ckx +ckx +cCP +cDV +cDV +cDV +cGQ +cHP +cIH +cIH +cKO +cLR +cMQ +cOe +cky +cky +cky +cky +cSA +cSA +cSA +cSA +cSA aaa aaa aaa aaa -cRi -dcd -dcq -dcy -cSt -dcL -cSd -cSn -cSn -cSg -cSd -cSn -cSn -cSg -cSd -cSn -cSn -cSg -cRi -cRi -ddp -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cTA -dlV +cXz +cXZ +cYo +cYC +cYp +cYW +cUg +cZl +cZl +cZd +cUg +cZl +cZl +cZd +cUg +cZl +cZl +cZd +cXz +cXz +daM +cXz +cXz +cXz +cXz +cXz +cXz +cXz +dat +dar aaf aaa aaa aaf -aag +aad aaa aaa aaa @@ -116278,160 +112864,160 @@ aaa aaa aaa aaa -aag +aad aaa aaa aaf aaa -acQ -aft -agt -ahf -ahV +acN +afq +agp +ahc +ahT aiQ -dhp -alg -alg -anF -aoT -aqc -arB -asT -aud -arB -awC -aun -arB -aAd -aBw -aCC -aDX -aFj -aGG -aHM -aJe -aKm -aLR -aNd -aOD -aPK -aQV -aOv -aTz -aUM -aUM -aYe -dnh -dnh -dnh -dnh -dnh -bhE -bjp -dCM -bmP -boT +ajQ +alh +alh +anJ +apb +aqm +arO +atf +aur +arO +awN +auB +arO +aAe +aBB +aCL +aEe +aFG +aHt +aIK +aKc +aLh +aMS +aOl +aPU +aRl +aSC +aPM +aVy +aWU +aWU +bat +als +als +als +als +als +bkb +blP +bnz +bpk brk -bmP -bmP -bwR -byC -byC -byC -byC -bFq -bBX -bBX -bKk -bLP -bNC -bOW -bQH -bRV -EDw -bUl -bVx -bWS -bYi -bWT -caN -ccv -bST -ceZ -cgq -chx -cLU -chx -clU +btD +bpk +bpk +bzp +bBe +bBe +bBe +bBe +bIk +bEE +bEE +bNn +bPa +bQL +bSr +bUb +bVq +bWq +bXG +bYY +caC +cbY +caD +ceJ +cgs +bWq +cjb +ckw +clF +cnd +clF +cqe +crf +csB +ctP +cvk +cwm +cpU +cyw +czz +cAF +cBP +cpU +cDW +cEQ +cGb +cGR +cHQ +cII +cJU +cky cmU -coo -cpC -cqU -crV -dwL -dxQ -cuY -cwa -dzQ -dwL -Qua -Quh -cAK -cBF -cCF -QuN -QuS -dvY -dww -QuT -QuU -cJa -cPx -cJb -cKb -cKR -cLK -cMq -cNo -cKP +cMR +cOf +ckx +cPY +cQO +cRR +cSB +cTz +cUo +cVg +cSA aaa aaa aaa aaa -cRi -dce -cSt -cSt -dcC -dcM -cSd -cSn -cSo -cSg -cSd -cSn -cSo -cSg -cSd -cSn -cSo -cSg -cRi -ddh -ddq -ddt -ddt -ddt -ddt -ddw -cTA -cTA -ddy -dlV +cXz +cYa +cYp +cYp +cYK +cYX +cUg +cZl +cZl +cZd +cUg +cZl +cZl +cZd +cUg +cZl +cZl +cZd +cXz +daB +daN +daY +daY +daY +daY +dbo +dat +dat +dbC +dar aaf aaf aaa -aai +aae aaa aaa aaa @@ -116535,160 +113121,160 @@ aaa aaa aaa aaa -aag +aad aaa aaa aaf aaa -acQ -afu -agu -ahg -ahg -ahg +acN +afr +agq +ahd +ahd +ahd ajR -ahg -ahg -anG -aoU -aqd -arB -asU -aue -arB -awD -axD -arB -aAe -aBx -aCD -aDY -aFk -aGH -aHN -aJf -aKn -aLS -aNe -aOE -aPL -aQZ -aSh -aTA -aUT -aUM -aYh +ahd +ahd +anK +apc +aqn +arO +atg +aus +arO +awO +axN +arO +aAf +aBC aCM -bbj -aCM -bdW -bfM -bhJ -bjt -bkU -bmP -boU +aEf +aFH +aHu +aIL +aKd +aLi +aMT +aOm +aPV +aRm +aSG +aTU +aVz +aXb +aWU +bav +aCV +bdK +aCV +bgD +bip +bkg +blT +bnv +bpk brl -bmP -buP -bwS -bwX -bwX -byC -byC -bFr -byC -bIy -bKe -bKe -bKe -bKe -bKe -bRW -bST -bUm -bVu -bWT -bYj -bWT -caN -ccy -bST -ceZ -cgq -chA -ciV -cks -cgq -cmV -cop -cpD -cqV -crW -dwL -dxQ -cuZ -cuZ -cuZ -cuZ -cuZ -Qui -Qtm -czD -cAL -cBG -cyy -czD -czD -cFu -dyc -cOA -cIn -cJc -cKc -cKQ -cLL -cMr -cNp -cKP +btE +bpk +bxk +bzq +bzv +bzv +bBe +bBe +bIl +bBe +bLx +bNh +bNh +bNh +bNh +bNh +bVr +bWq +bXK +bYV +caD +cbZ +caD +ceJ +cgv +bWq +cjb +ckw +clH +cne +coB +ckw +crg +csC +ctQ +cvl +cwn +cpU +cyw +czA +czA +czA +czA +czA +cER +czC +cGS +cHR +cIJ +cDH +cGS +cGS +cMS +cLP +cOV +cPZ +cQP +cRS +cSC +cTA +cUp +cVh +cSA aaf aaa aaa aaa -cRi -dcf -dcr -dcr -dcD -dcN -cSd -cSn -cSx -cSF -cSd -cSy -dbp -cSF -cSd -cSn -dbt -cSF -cRi -ddi -ddr -cTB -dlV -dlV -dlV -dlV -dlV -dlV -dlV -dlV +cXz +cYb +cYq +cYq +cYL +cYY +cUg +cZl +cZu +cZD +cUg +cZv +cZS +cZD +cUg +cZl +dah +cZD +cXz +daC +daO +daZ +dar +dar +dar +dar +dar +dar +dar +dar aaf aaa aaa -aag +aad aaa aaa aaa @@ -116792,149 +113378,149 @@ aaa aaa aaa aaa -aag +aad aaa aaa aaf aaa -acQ -afv -agu -ahh -ahh +acN +afs +agq +ahe +ahe aiR ajS -alh -agz -agz -aoV -dhs -arB -asV -auf -arB -awE -axE -arB -dhA -aBx -aCE -aDZ -aFl -aGI -aHO -aJg -aKo -aLT -aNf -aOF -aPM -aRa -aSi -aTB -aUT -aUM -dhN -dnh -dnh -dni -dnh -dnh -bhE -bjp -bkU -alq -boV +ali +agv +agv +apd +aqo +arO +ath +aut +arO +awP +axO +arO +aAg +aBC +aCN +aEg +aFI +aHv +aIM +aKe +aLj +aMU +aOn +aPW +aRn +aSH +aTV +aVA +aXb +aWU +baw +als +als +alr +als +als +bkb +blP +bnv +bpl brm -bmP -buQ -bwT -byD -bAp -bBX -bDH -bFs -bHd -byC -bKl -bKe -bND -bOX -bQI -bRX -bST -bUn -bVt -bWQ -bYk -bWQ -caL -dbE -bST -diB -cgq -chx -ciW -ckt -clV -cmW -coq -cpE -cqW -crX -dwL -dxQ -cuZ -cwb -QtD -QtQ -Qub -Quj -Quw -czD -cQC -cBH -cCG -cDq -czD -dvY -dvY -dvY -cGo -cJd -cPz -cKP -cLM -cMs -cNq +btF +bpk +bxl +bzr +bBf +bCU +bEE +bGq +bIm +bJW +bBe +bNo +bNh +bQM +bSs +bUc +bVs +bWq +bXL +bYU +caA +cca +caA +ceH +cgw +bWq +cji +ckw +clF +cnf +coC +cqf +crh +csD +ctR +cvm +cwo +cpU +cyw +czA +cAG +cBQ +cCQ +cDX +cES +cGc +cGS +cHS +cIK +cJV cKP +cGS +cky +cky +cky +cQa +cQQ +cRT +cSA +cTB +cUq +cVi +cSA aaa -aac +aab aaa aaa -cRi -cRe -cRe -cRe -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -dlV -dlV -dlV -dlV +cXz +cUi +cUi +cUi +cXz +cXz +cXz +cXz +cXz +cXz +cXz +cXz +cXz +cXz +cXz +cXz +cXz +cXz +cXz +dar +dar +dar +dar aaa aaf aaf @@ -116944,8 +113530,8 @@ aaf aaa aaf aaf -aag -aag +aad +aad aaf aaa aaa @@ -117049,122 +113635,122 @@ aaa aaa aaa aaa -aai +aae aaa aaa aaf aaf -acP -acP -agv -ahh -ahW +acM +acM +agr +ahe +ahU aiS ajT aiS -amw -dCc -aoV -aqf -arB -asW -aug -arB -asW -axF -arB -arB -aBy -aCF -aEa -aFm -aGJ -avo -aJh -aJh -aJh -aNg -aOG -aPN -aJh -aJh -aJh -aUM -aUM +amx +anL +apd +aqp +arO +ati +auu +arO +ati +axP +arO +arO +aBD +aCO +aEh +aFJ +aHw +avD +aKf +aKf +aKf +aOo +aPX +aRo +aKf +aKf +aKf +aWU +aWU +aXg +als +aaa +aaa +aaa biq -dnh -aaa -aaa -aaa -bfN -bhK -bju -bkZ -alq -bBj +bkh +blU +bnA +bpl brn -bmP -bmP -bwU -byE -bAq -dCU -byC -bwX -bHe -dCU -bKm -bKe -bNE -dbn -dbn -bRY -bST -bUo -bVy -bWU -bYl -bZv -caP -ccz -bST -cff -cgq -cgq -cgq -cgq -cgq -cgq -cgq -cpF -cgq -cgq -dwL -dxQ -cuZ -Qtt -QtE -QtE -Quc -Quk -Qtm -cQv -cAN -cBI -cAP -cDr -czD +btG +bpk +bpk +bzs +bBg +bCV +bEF +bBe +bzv +bJX +bEF +bNp +bNh +bQN +bSt +bSt +bVt +bWq +bXM +bYZ +caE +ccb +cdq +ceL +cgx +bWq +cjj +ckw +ckw +ckw +ckw +ckw +ckw +ckw +ctS +ckw +ckw +cpU +cyw +czA +cAH +cBR +cBR +cDY +cET +czC +cGT +cHT +cIL +cHV +cKQ +cGS aaf aaf -dvY -dvY -dAn -dvY -cKP -dbN -dbP -dbN -cKP +cky +cky +cQR +cky +cSA +cTC +cUr +cTC +cSA aaf aaf aaf @@ -117201,7 +113787,7 @@ aaa aaa aaa aaa -aai +aae aaa aaa aaa @@ -117306,128 +113892,128 @@ aaa aaa aaa aaa -aag +aad aaa aaa aaf aaa -acQ -afw -agu -ahi -ahX +acN +aft +agq +ahf +ahV aiT ajU -ali -amx -anH -aoW -aqg -arC -asX -auh -avl -asX -axG -ayN -aAf -aBz -aCG -aEb -aFm -aGI -dhF -aJh -aKp -aLU -aNh -aOH -aPO -aRb -aSj -aJh -aUU -aCM -dtR -aZw -aZw -bcu -aZw -aZw -bhL -bjv -bla -bmQ -boX +alj +amy +anM +ape +aqq +arP +atj +auv +avA +atj +axQ +ayS +aAh +aBE +aCP +aEi +aFJ +aHv +aIN +aKf +aLk +aMV +aOp +aPY +aRp +aSI +aTW +aKf +aXc +aCV +bax +bbT +bbT +bfb +bbT +bbT +bki +blV +bnB +bpm bro -bts -buR -bwV -byF -bwX -byC -cTR -bFt -bHf -byC -bKn -bKe -bNF -bOZ -bQJ -bRZ -bKe -bKe -bKe -bST -bST -bST -caQ -bST -bST -cfg -cJa -cJa -ciX -cJa -clW -cIk -cJa -cpG -Qtb -dDu -ctk -cuc -cuZ -dyp -QtE -QtE -Quc -Qul -Qtm -czF -cAN -cBJ -cAP -cDs -czD +btH +bvN +bxm +bzt +bBh +bzv +bBe +bGr +bIn +bJY +bBe +bNq +bNh +bQO +bSu +bUd +bVu +bNh +bNh +bNh +bWq +bWq +bWq +ceM +bWq +bWq +cjk +ckx +ckx +cng +ckx +cqg +cri +ckx +ctT +cvn +cwp +cxF +cyx +czA +cAI +cBR +cBR +cDY +cEU +czC +cGU +cHT +cIM +cHV +cKR +cGS aaf aaa aaf -dvY -cJe -dvY +cky +cQS +cky aaa -dbN -dbQ -dbN +cTC +cUs +cTC aaa aaa aaa aaf aaa aaa -Qtj +cyG aaa aaf aaa @@ -117563,121 +114149,121 @@ aaa aaa aaa aaa -aag +aad aaa aaa aaf aaa -acQ -afx -agw -ahj -ahX +acN +afu +ags +ahg +ahV aiT ajU aiT -amy -anI -aoX -aqh -arD -asY -aui -avm -asY -axH -ayO -aAg -aBA -aCH -aEc -aFn -aGK -aUX -aJh -aKq -aLV -aNi -aOI -aNi -aRc -aSk -aJh -avD -dnR -dtS -aZw -bbk -bcv -bdX -aZw -bhM -bjw -bkU -alq -alq -brp -bmP -buS -bwW -byG -byC -bwX -bDI -bwX -bHe -byC -bKo -bKe -bNE -bPa -bQK -bSa -bSX -bUp -bKe -bWV -bYm -bZw -caR -ccA -bST -cfh -dvY -dvY -dvY -dvY -clX -dvY -dvY -dvY -dvY -dvY -dvY -Qtc -cuZ -Qtu -QtF -QtF -Qud -QtG -Qtm -czG -cAN -cBK -czD -cDt -czD +amz +anN +apf +aqr +arQ +atk +auw +avB +atk +auw +ayT +aAi +aBF +aCQ +aEj +aFK +aHx +aIO +aKf +aLl +aMW +aOq +aPZ +aOq +aSJ +aTX +aKf +avS +apj +bay +bbT +bdL +bfc +bgE +bbT +bkj +blW +bnv +bpl +bpl +btI +bpk +bxn +bzu +bBi +bBe +bzv +bGs +bzv +bJX +bBe +bNr +bNh +bQN +bSv +bUe +bVv +bWv +bXN +bNh +caF +ccc +cdr +ceN +cgy +bWq +cjl +cky +cky +cky +cky +cqh +cky +cky +cky +cky +cky +cky +cyy +czA +cAJ +cBS +cBS +cDZ +cBT +czC +cGV +cHT +cIN +cGS +cKS +cGS aaf aaa aaf -dvY -dAn -dvY +cky +cQR +cky aaa -dbN -dbP -dbN +cTC +cUr +cTC aaf aaf aaf @@ -117820,120 +114406,120 @@ aaa aaa aaa aaf -aai +aae aaf aaf aaf aaa -acQ -afy -agx -ahk -ahX +acN +afv +agt +ahh +ahV aiU ajV -alj -amz -anJ -aoY -aqi -arE -asZ -auj -avn -awF -auj -ayP -aAh -aBB -aCI -auj -aFo -aGL -aHR -aJh -aKr -aLV -aNi -aOJ -aNi -aRd -aSl -aJh -avB -dnS -dnS -aZw -bbl -bcw -bdY -aZw -bhN -bjx -blb -alq -boY -brq -bmP -buT -bwX -byH -bAr -bBY -bDJ -bFu -bFr -byC -bKp -bKe -bNG -bNG -bZx -cgF -bSY -bUq -bKe -diw -bYn -diz -caS -ccB -bST -cfi -aqr -chB -dvY -cku -clY -cmY -dvY -cpH -cqX -cpH -dvY -cud -cuZ -Qtv -QtG -QtG -QuW -Qum -Qtm -cQB -cAO -cBL -cAP -cDu -cEA +alk +amA +anO +apg +aqs +arR +atl +aux +avC +awR +aux +ayU +aAj +aBG +aCR +aux +aFL +aHy +aIP +aKf +aLm +aMW +aOq +aQa +aOq +aSK +aTY +aKf +avQ +apk +apk +bbT +bdM +bfd +bgF +bbT +bkk +blX +bnC +bpl +brp +btJ +bpk +bxo +bzv +bBj +bCW +bEG +bGt +bIo +bIl +bBe +bNs +bNh +bQP +bQP +bUf +bVw +bWw +bXO +bNh +caG +ccd +cds +ceO +cgz +bWq +cjm +bfw +clI +cky +coD +cqi +crj +cky +ctU +cvo +ctU +cky +cyz +czA +cAK +cBT +cBT +cEa +cEV +czC +cGW +cHU +cIO +cHV +cKT +cLS aaf aaa aaa -ack -cJf -ack +acg +cQT +acg aaa aaf -dbR +cUt aaa aaa aaa @@ -117941,7 +114527,7 @@ aaa aaf aaa aaa -aqB +aqL aaa aaa aaa @@ -118082,106 +114668,106 @@ aaa aaa aaf aaa -acP -acP -agy -ahl -ahY +acM +acM +agu +ahi +ahW aiV aiV aiV -amA -anK -aoZ -aqj -arB -arB -auk -avo -arB -axI -avo -aAi -arB -avo -aEd -arB -aGM -avo -aJh -aKs -aLV -aNi -aOK -aPP -aRe -aSm -aTC -aUV -aWv -aWv -aZw -aZw -bcx -aZw -aZw -bhE -bjp -bkY -alq -bcs -brr -bmP -bmP -byN -dhU -bAs -bBZ -bBZ -bFv -bHg -dii -byN -bKe -bKe -bKe -bKe -bKe -bSZ -bUr -bKe -bST -bST -bST -caT -ccC -bST -dDs -apc -apb -dvY -ckv -clZ -cmZ -cor -cpI -cqY -crY -dvY -Qtd -Qtl -cwd -QtH -cxP -QtG -Qun -Qtm -czI -cAP -cAP -czD -anS -blx +amB +anP +aph +aqt +arO +arO +auy +avD +arO +axR +avD +aAk +arO +avD +aEk +arO +aHz +avD +aKf +aLn +aMW +aOq +aQb +aRq +aSL +aTZ +aVB +aXd +aYH +aYH +bbT +bbT +bfe +bbT +bbT +bkb +blP +bnD +bpl +brq +btK +bpk +bpk +bzw +bBk +bCX +bEH +bEH +bIp +bJZ +bLy +bzw +bNh +bNh +bNh +bNh +bNh +bWx +bXP +bNh +bWq +bWq +bWq +ceP +cgA +bWq +cjn +aYQ +bZf +cky +coE +cqj +cdk +csE +ctV +cvp +cwq +cky +cyA +czB +cAL +cBU +cCR +cBT +cEW +czC +cGX +cHV +cHV +cGS +anX +bnZ aaa aaa aaa @@ -118190,7 +114776,7 @@ aaf aaa aaa aaf -dbR +cUt aaa aaf aaa @@ -118198,7 +114784,7 @@ aaa aaf aaa aaf -anT +anY aaa aaa aaa @@ -118335,127 +114921,127 @@ aaa aaa aaf aaa -acP -acP -acQ -acP -acP -afz -agz -dBY -ahl +acM +acM +acN +acM +acM +afw +agv +ahj +ahi aiW aja -alk -amB -anK -aoZ -aqk -arB -ata -aul -avp -awG -axJ -avp -aAj -arB -aCJ -aEe -arB -boS -aHS -aJh -aKt -aLW -aNj -aOL -aNj -aRf -aSn -aJh -dCC -aWv -aYi -aZx -bbm -bcy -bdZ -aWv -dCJ -bjp -blc -bmR -boZ -brs -btt -avs -byN -bGg -bAt -bCa -bDK -bFw -bHh -bIA -byN -byN -dil -bPb -diq -byN -bTa -bUs -bVz -bWX -bYo -bVz -caU -ccD -cdV -cfj -apc -chC -dvY -dvY -dvY -dvY -dvY -cpJ -cqZ -dvY -dvY -Qte -Qtm -Qtw -QtI -QtR -QtG -Quo -Qtm +all +amC +anP +aph +aqu +arO +atm +auz +avE +awS +axS +avE +aAl +arO +aCS +aEl +arO +aHA +aIQ +aKf +aLo +aMX +aOr +aQc +aOr +aSM +aUa +aKf +aXe +aYH +baz +bbU +bdN +bff +bgG +aYH +bkl +blP +bnE +bpn +brr +btL +bvO +bxp +bzw +bBl +bCY +bEI +bGu +bIq +bKa +bLz +bzw +bzw +bQQ +bSw +bUg +bzw +bWy +bXQ +bZa +caH +cce +bZa +ceQ +cgB +chW +cjo +aYQ +clJ +cky +cky +cky +cky +cky +ctW +cvq +cky +cky +cyB +czC +cAM +cBV +cCS +cBT +cEX +czC aaf aaf aaf -anS -anS -anS +anX +anX +anX aaa aaf -aqB -anT -anT -anT +aqL +anY +anY +anY aaf aaf -dbR -aqB -anT -aqB -anT -anT -anT +cUt +aqL +anY +aqL +anY +anY +anY aaf -anT +anY aaa aaa aaa @@ -118592,104 +115178,104 @@ aaa aaa aaf aaf -acQ -adj -adE -aed -aeA -afA -agz -ahm -ahZ +acN +adg +adB +aeb +aey +afx +agv +ahk +ahX aiX ajW aiX aiX -anL -aoZ -aql -arB -atb -aum -arB -asU -axK -arB -aAk -arB -aCK -aEf -arB -aGO -aHT -aJh -aKu -aLX -aNk -aOM -aPQ -aRg -aKu -aJh -aUW -aWv -aYj -aZy -bbn -bcz -bea -aWv -bhO -bjy -bld -bmS -bpa -brt -btu -buU -byN -dhV -bAu -bCb -byJ -bFx -bHi -bIB -bKq -bLQ -bNI -bPc -dir -byN -bTb -bUt -bVA -bVA -bYp -bZy -bVA -bZB -cdW -cfk -apc -chD -dvY -ckw -cma -cna -cos -dxh -clY -crZ -dvY -Qtf -Qtm -Qtx -QtJ -QtS -QuW -QtG -Qtm +anQ +aph +aqv +arO +atn +auA +arO +atg +axT +arO +aAm +arO +aCT +aEm +arO +aHB +aIR +aKf +aLp +aMY +aOs +aQd +aRr +aSN +aLp +aKf +aXf +aYH +baA +bbV +bdO +bfg +bgH +aYH +bkm +blY +bnF +bpo +brs +btM +bvP +bxq +bzw +bBm +bCZ +bEJ +bGv +bIr +bKb +bLA +bNt +bPb +bQR +bSx +bUh +bzw +bWz +bXR +bZb +caI +ccf +cdt +ceR +cdx +chX +cjp +aYQ +clK +cky +coF +cqk +crk +csF +ctX +cqi +cwr +cky +cyC +czC +cAN +cBW +cCT +cEa +cBT +czC aaf aaa aaf @@ -118704,7 +115290,7 @@ aaa aaa aaa aaa -cSz +cUu aaa aaa aaf @@ -118712,7 +115298,7 @@ aaa aaa aaf aaa -anT +anY aaa aaa aaa @@ -118832,7 +115418,7 @@ aaa aaa aaa aaa -aac +aab aaa aaa aaa @@ -118849,104 +115435,104 @@ aaa aaa aaf aaa -acP -adk -adF -adk -acP -afB -agz -ahn -aia +acM +adh +adC +adh +acM +afy +agv +ahl +ahY aiY aiY -all -amC -amC -apa -aqm -arB -atc -aun -arB -awH -aud -arB -aAl -arB -atc -aEg -arB -aGP -aHU -aJh -aKv -aLY -aNl -aON -aPR -aRh -aLY -aJh -avB -aWv -aYk -aZy -apx -bcA -beb -aWv -bhK -bjz -bkZ -alq -bpb -bru -alq -alq -byN -byL -bAv -bCc -bCc -bFy -bHj -bIC -byN -bLR -bNJ -bPd -cco -byN -bTc -bUu -apb -apb -cow -bZz -apb -alq -alq -cfl -alq -alq -dvY -ckx -dwN -dwQ -cot -cnb -cra -csa -dvY -Qtg -Qtm -Qty -QtK -QtT -QtG -Qup -Qtm +alm +amD +amD +api +aqw +arO +ato +auB +arO +awT +aur +arO +aAn +arO +ato +aEn +arO +aHC +aIS +aKf +aLq +aMZ +aOt +aQe +aRs +aSO +aMZ +aKf +avQ +aYH +baB +bbV +bdP +bfh +bgI +aYH +bkh +blZ +bnA +bpl +brt +btN +bpl +bpl +bzw +bBn +bDa +bEK +bEK +bIs +bKc +bLB +bzw +bPc +bQS +bSy +bUi +bzw +bWA +bXS +bZc +caJ +ccg +bZc +ceS +bpl +bpl +cjq +bpl +bpl +cky +coG +cmS +cql +csG +crn +cvr +cws +cky +cyD +czC +cAO +cBX +cCU +cBT +cEY +czC aaa aaa aaa @@ -118955,21 +115541,21 @@ aaf aaa aaf aaa -dbJ -dbJ -dbJ -dbJ -dbJ +cOW +cOW +cOW +cOW +cOW aaf -cRO +cUv aaa -dbJ -dbJ -dbJ -dbJ -dbJ +cOW +cOW +cOW +cOW +cOW aaa -aqB +aqL aaf aaa aaa @@ -119106,127 +115692,127 @@ aaa aaa aaf aaa -acP -adl -bih -adl -aeB -afC -afC -afC -aib -acQ -acQ -alm -amD -amD -amD -aqn -arB -arB -arB -arB -arB -arB -arB -aHQ -arB -arB -arB -arB -arB -arB -aJh -aJh -aJh -aJh -aJh -aJh -aJh -aJh -aJh -biq -aWv -aYl -aZz -bbp -bcB -bec -bfO -bhG -bjA -bkW -alq -alq -brv -alq -buV -byN -dhW -dhX -bCd -dib -bFz -dif -dij -byN -bLS -dim -bPe -dis -byN -apc -bUv -anM -apb -bXa -bZz -caV -alq -cdX -cfm -apc -chE -dvY +acM +adi +adD +adi +aez +afz +afz +afz +ahZ +acN +acN +aln +amE +amE +amE +aqx +arO +arO +arO +arO +arO +arO +arO +aAo +arO +arO +arO +arO +arO +arO +aKf +aKf +aKf +aKf +aKf +aKf +aKf +aKf +aKf +aXg +aYH +baC +bbW +bdQ +bfi +bgJ +bir +bkd +bma +bnx +bpl +bpl +btO +bpl +bxr +bzw +bBo +bDb +bEL +bGw +bIt +bKd +bLC +bzw +bPd +bQT +bSz +bUj +bzw +bxz +bXT +bZc +bZc +cch +bZc +ceS +bpl +chY +cjr +aYQ +clL cky -dwN -dwX -dwN -dwN -cou -csb -dvY -Qth -Qtm -Qtz -QtL -QtU -QtG -Quq -Qtm +coH +cmS +crl +cmS +cmS +csH +cwt +cky +cyE +czC +cAP +cBY +cCV +cBT +cEZ +czC aaa aaa aaa aaa aaf aaa -anT +anY aaa -dbK -dbM -dbM -dbM -dbM -dbO -cRO -cSC -dbV -dbV -dbV -dbV -dbW +cOX +cQb +cQb +cQb +cQb +cTD +cUv +cVj +cVP +cVP +cVP +cVP +cXn aaf -anT +anY aaf aaa aaa @@ -119363,127 +115949,127 @@ aaa aaa aaf aaa -EDB -adl -aQf -adl -aeC -afD -afD -afD -afD -afD -afD -afD -afD -afD -afD -aqo -dhw -dnh -auo -avq -awI -axL -dnh -axO -dnh -dhB -aLk -aHW -aYa -aHV -dnh -aKw -aLZ -aNm -dnR -aPS -cXc -aSo -dnh -avB -aWv -aYm -aZA -bbq -bcC -bed -bfP -bhJ -bjt -bkU -alq -atj -brw -btv -dbj -byN -byN -byN -byN -byN -bFA -byN -byN -byN -byN -byN -bPf -byN -byN -cjr -bTe -bVB -apb -bXa -bZz -caW -alq -cdY -bPl -avr -chF -dvY +acO +adi +adE +adi +aeA +afA +afA +afA +afA +afA +afA +afA +afA +afA +afA +aqy +arS +als +auC +avF +awU +axU +als +ayb +als +aCU +aEo +aFM +aHD +aIT +als +aLr +aNa +aOu +apj +aRt +aSP +aUb +als +avQ +aYH +baD +bbX +bdR +bfj +bgK +bis +bkg +blT +bnv +bpl +bru +btP +bvQ +bxs +bzw +bzw +bzw +bzw +bzw +bIu +bzw +bzw +bzw +bzw +bzw +bSA +bzw +bzw +bWB +bXU +bZd +bZg +cci +cdu +ceT +bpl +chZ +bSG ckz -dwN -dwY -dwN -dwN -cgs -csc -dvY -dxk -Qtm -QtA -QtM -QtV -QtG -Qur -Qtm +clM +cky +coI +cmS +crm +cmS +cmS +cvs +cwu +cky +cyF +czC +cAQ +cBZ +cCW +cBT +cFa +czC aaa aaa aaa aaf aaf aaa -anT +anY aaf -dbL -dbL -dbL -dbL -dbL +cOY +cOY +cOY +cOY +cOY aaf -dbS +cUw aaf -dbL -dbL -dbL -dbL -dbL +cOY +cOY +cOY +cOY +cOY aaa -anT +anY aaa aaa aaa @@ -119618,113 +116204,113 @@ aaa aaa aaa aaa -aai +aae aaa aaa -adl -adI -adl -aeC -afD -afD -afD -afD -afD -afD -afD -afD -afD -afD -aqo -dnh -dnh -dnh -dnh -dnh -axM -ayQ -aAn -aIv -aCM -avF -aLJ -aNS -aHW -dhH -aCM -aCM -dCs -aCM -aPT -aRi -aCM -aCM -avF -aWv -aYn -aZB -bbr -bcD -bee -aWv -bhP -bjB -ble -bmT -bpc -dhQ -btw -buX -bwY -bGp -btw -dCV -bwY -bFB -bHl -bIE -bHl -bTd -bHl -bPg -bHl -bSc -bTe -apc -bVC -apb -bXa -bZA -bZE -bZE -bZE -bZE -bZE -bZE -bZE -ckA -dwQ -cnb -cou -cpK -dwN -csc -dvY -Qtj -Qtm -QtB -QtN -QtW -QtG -Qus -Qtm +adi +adF +adi +aeA +afA +afA +afA +afA +afA +afA +afA +afA +afA +afA +aqy +als +als +als +als +als +axV +ayV +aAp +aBH +aCV +avU +aFN +aHE +aFM +aKg +aCV +aCV +aOv +aCV +aRu +aSQ +aCV +aCV +avU +aYH +baE +bbY +bdS +bfk +bgL +aYH +bkn +bmb +bnG +bpp +brv +btQ +bvR +bxt +bzx +bBp +bvR +bEM +bzx +bIv +bKe +bLD +bKe +bPe +bKe +bSB +bKe +bVx +bWC +bXV +bZe +bZe +ccj +cdv +cdA +cdA +cdA +cdA +cdA +cdA +cdA +coJ +cql +crn +csH +ctY +cmS +cwu +cky +cyG +czC +cAR +cCa +cCX +cBT +cFb +czC aaa aaa aaa aaa aaf aaa -anT +anY aaf aaf aaf @@ -119732,7 +116318,7 @@ aaf aaa aaa aaa -cRO +cUv aaa aaf aaa @@ -119740,7 +116326,7 @@ aaa aaf aaa aaa -anT +anY aaa aaa aaa @@ -119875,129 +116461,129 @@ aaa aaa aaa aaa -aag +aad aaa aaa aaa -bii +adG aaa -aeC -afD -afD -afD -afD -afD -afD -afD -afD -afD -afD -aqo -arG -asB -aup -dnR -dnh -axN -dnR -axY -axY -axY -axY -axY -axY -axY -axY -axY -axY -axY -axY -axY -axY -axY -axY -axY -aWw -aWw -aWw -aWw -aWw -aWw -aWw -bhQ -bjt -blf -bmU -alq -alq -alq -buY -alq -alq -alq -alq -alq -alq -alq -alq -bKr -bKr -bKr -bKr -bKr -alq -alq -alq -apb -apb -bXa -bZz -bZE -ccE -cdZ -cfn -cgt -chG -bZE -ckB -cmb -cnc -cov -cpL -crb -csd -dvY -Qtj -Qtm -Qtm -QtO -Qtm -QtO -Qtm -Qtm +aeA +afA +afA +afA +afA +afA +afA +afA +afA +afA +afA +aqy +arT +atp +auD +apj +als +axW +apj +awW +awW +awW +awW +awW +awW +awW +awW +awW +awW +awW +awW +awW +awW +awW +awW +awW +aYI +aYI +aYI +aYI +aYI +aYI +aYI +bko +blT +bnH +bpq +bpl +bpl +bpl +bxu +bpl +bpl +bpl +bpl +bpl +bpl +bpl +bpl +bNu +bNu +bNu +bNu +bNu +bpl +bpl +bpl +bZf +bZf +caM +cdw +cdA +cgC +cia +cjs +ckA +clN +cdA +coK +cqm +cro +csI +ctZ +cvt +cwv +cky +cyG +czC +czC +cCb +czC +cCb +czC +czC aaa aaa aaa aaa aaf aaa -aqB +aqL aaa -dbJ -dbJ -dbJ -dbJ -dbJ +cOW +cOW +cOW +cOW +cOW aaf -cRO +cUv aaa -dbJ -dbJ -dbJ -dbJ -dbJ +cOW +cOW +cOW +cOW +cOW aaf -anT +anY aaa aaa aaa @@ -120132,98 +116718,98 @@ aaa aaa aaa aaa -aai +aae aaf aaf aaf -aai +aae aaf -aeC -afD -afD -afD -afD -afD -afD -afD -afD -afD -afD -aqo -arH -dpk -auq -dqp -dnh -azr -dnz -axY -aBD -aCN -aEh -aFp -aGQ -axY -aJj -aJk -aMa -aMa -axY -aPU -aRj -aSp -aTD -axY -aWx -aYo -aZC -bbs -bcE -bef -aWw -bhO -bjC -blg -bmV -bpd -bmV -btx -buZ -bwZ -byP -bAx -bCe -bDM -bFC -bHm -bIF -bKs -bLU -bNL -bPh -bKr -bSd -bPm -alq -bVC -bWY -bYr -bZz -bZE -ccF -cea -cea -cgu -chH -bZE -dvY -dvY -dvY -dvY -dxk -dvY -dvY -dvY +aeA +afA +afA +afA +afA +afA +afA +afA +afA +afA +afA +aqy +arU +atq +auE +avG +als +axX +anR +awW +aBI +aCW +aEp +aFO +aHF +awW +aKh +aKi +aNb +aNb +awW +aRv +aSR +aUc +aVC +awW +aYJ +baF +bbZ +bdT +bfl +bgM +aYI +bkm +bmc +bnI +bpr +brw +bpr +bvS +bxv +bzy +bBq +bDc +bEN +bGx +bIw +bKf +bLE +bNv +bPf +bQU +bSC +bNu +bVy +bSH +bpl +bZg +caK +cck +cdw +cdA +cgD +cib +cib +ckB +clO +cdA +cky +cky +cky +cky +cua +cky +cky +cky aaf aaf aaf @@ -120238,23 +116824,23 @@ aaa aaf aaf aaf -anT +anY aaa -dbK -dbM -dbM -dbM -dbM -dbO -cRO -cSC -dbV -dbV -dbV -dbV -dbW +cOX +cQb +cQb +cQb +cQb +cTD +cUv +cVj +cVP +cVP +cVP +cVP +cXn aaf -anT +anY aaa aaa aaa @@ -120393,94 +116979,94 @@ aaa aaa aaa aaa -aag +aad aaa -aeC -afD -afD -afD -afD -afD -afD -afD -afD -afD -afD -aqo -arI -atd -bai -ate -dDL -axP -dnS +aeA +afA +afA +afA +afA +afA +afA +afA +afA +afA +afA +aqy +arV +atr +auF +ats +auI axY -aBE -aCO -aEi -aFq -aGR -axY -aJk -aJk -aMa -aNn -axY -aPV -aRk -aSq -aTE -axY -aWy -aYp -aZD -bbt -bcF -beg -aWw -bhR -bjD -blh -bmW -bpe -bry -bry -bva -bxa -bry -bAy -bAy -bDN -bFD -bHn -bIG -bKt -bLV -bNM -bPi -bKr -bNO -bTf -alq -diu -bWZ -bYs -bZB -bZE -ccG -ceb -cfo -cgv -chI -ciY +apk +awW +aBJ +aAs +aEq +aFP +aHG +awW +aKi +aKi +aNb +aOw +awW +aRw +aSS +aUd +aVD +awW +aYK +baG +bca +bdU +bfm +bgN +aYI +bkp +bmd +bnJ +bps +brx +btR +btR +bxw +bzz +btR +bDd +bDd +bGy +bIx +bKg +bLF +bNw +bPg +bQV +bSD +bNu +bVz +bWD +bpl +bZh +caL +ccl +cdx +cdA +cgE +cic +cjt ckC -cmc -cmc -cmc -cpM -crc +clP +cnh +coL +cqn +cqn +cqn +cub +cvu aaf -ctl +cxG aaa aaf aaf @@ -120490,28 +117076,28 @@ aaf aaf aaf aaf -QuJ -QuJ +cHW +cHW aaf aaa aaf -anT +anY aaf -dbL -dbL -dbL -dbL -dbL +cOY +cOY +cOY +cOY +cOY aaf -cRO +cUv aaf -dbL -dbL -dbL -dbL -dbL +cOY +cOY +cOY +cOY +cOY aaa -anT +anY aaa aaa aaa @@ -120650,94 +117236,94 @@ aaa aaa aaa aaa -aai +aae aaa -aeE -afC -afC -aho -aic -acQ -acQ -aln -amE -amE -amE -aqp -dnh -dnR -aus -dnS -dnh -aAm -dnS -axY -aBF -aCP -aEj -aFr -aGS -axY -aJl -aKx -aJu -aNo -axY -aPW -aRl -aSr -aTE -axY -aWz -aYp -aZE -bbu -bcG -beh -aWw -bhS -bjE -bli -bmX -bpf -brz -bty -bvb -bxb -byQ -bAz -bCf -bty -bFE -bHo -bIH -bKr -bLW -bNN -bPj -bKr -aqr -bTg -alq -bVE -bXa -bYt -bZC -caX -ccH -cec -cfp -cfq -chJ -cgz -cgz -cgz -cgz -cgz -cpN -crd -ack -ack +aeB +afz +afz +ahm +aia +acN +acN +alo +amF +amF +amF +aqz +als +apj +auG +apk +als +axZ +apk +awW +aBK +aCX +aEr +aFQ +aHH +awW +aKj +aLs +aEL +aOx +awW +aRx +aST +aUe +aVD +awW +aYL +baG +bcb +bdV +bfn +bgO +aYI +bkq +bme +bnK +bpt +bry +btS +bvT +bxx +bzA +bBr +bDe +bEO +bvT +bIy +bKh +bLG +bNu +bPh +bQW +bSE +bNu +bfw +bWE +bpl +bZi +caM +ccm +cdy +ceU +cgF +cid +cju +cjv +clQ +ckG +ckG +ckG +ckG +ckG +cuc +cvv +acg +acg aaf aaf aaa @@ -120752,7 +117338,7 @@ aaa aaf aaf aaf -anT +anY aaa aaa aaf @@ -120760,7 +117346,7 @@ aaf aaf aaa aaa -cRO +cUv aaa aaa aaf @@ -120768,7 +117354,7 @@ aaf aaf aaf aaa -aqB +aqL aaf aaa aaa @@ -120912,89 +117498,89 @@ aaa aaa aaf aaa -acP -aid +acM +aib aiZ ajX -alo -acP -dnz -dnR -dht -dnh -dnh -dnh -dnh -dnh -axQ -ayR -axY -aBG -dCk -aEk -aFs -aGT -axY -aJm -aKy -aMb -EDE -axY -aPX -aRm -aSs -aPX -axY -aWw -aYq -aZF -bbv -bcG -bei -aWw -bhT -bhT -blj -bmY -dBI -bhT -bhT -bvc -bxc -bxc -bAA -bCg -dBK -bFF -bxk -bxg -bxc -bKr -bKr -bKr -bKr -apc -apc -alq -alq -bXb -bYu -bZD -caY -ccI -ced -cfq -cgw -cfs -ciZ +alp +acM +anR +apj +aqA +als +als +als +als +als +aya +ayW +awW +aBL +aAu +aEs +aFR +aHI +awW +aKk +aEL +aNc +aOy +awW +aRy +aSU +aUf +aRy +awW +aYI +baH +bcc +bdW +bfn +bgP +aYI +bkr +bkr +bnL +bpu +brz +bkr +bkr +bxy +bzB +bzB +bDf +bEP +bGz +bIz +bzJ +bzF +bzB +bNu +bNu +bNu +bNu +aYQ +aYQ +bpl +bpl +caN +ccn +cdz +ceV +cgG +cie +cjv ckD -ciZ -cnd -cgz -cgz -cre +cjx +cni +coM +cni +crp +ckG +ckG +cvw aaa -ack +acg aaa aaa aaa @@ -121009,23 +117595,23 @@ aaa aaa aaf aaa -aqB +aqL aaf -dbJ -dbJ -dbJ -dbJ -dbJ +cOW +cOW +cOW +cOW +cOW aaf -cRO +cUv aaa -dbJ -dbJ -dbJ -dbJ -dbJ +cOW +cOW +cOW +cOW +cOW aaf -anT +anY aaa aaa aaa @@ -121169,89 +117755,89 @@ aaf aaf aaf aaa -acP -aie +acM +aic aja ajY -alp -amF -anN -dnS -doh -dnS -dnS -dCi -dnS -dnS -axO -dnS -axY -aBH -aCQ -aEl -aFt -aGU -axY -axY -aKz -aKz -axY -axY -aPY -aRn -aSt -aTF -aUY -aWA -aYp -aZG -bbw -bcH -bej -bfQ -bhU -bjF -blk -bmZ -bpg +alq +amG +anS +apk +aqB +apk +apk +auH +apk +apk +ayb +apk +awW +aBM +aCY +aEt +aFS +aHJ +awW +awW +aLt +aLt +awW +awW +aRz +aSV +aUg +aVE +aXh +aYM +baG +bcd +bdX +bfo +bgQ +bit +bks +bmf +bnM +bpv brA -bep -bvd -bxd -byR -bAB -bCh -bDO -bFG -bHp -bII -aaO -atm -bLX -bPk -bQQ -bSe -bTh -bUx -aut -bXc -apc -bZE -caZ -ccJ -cee -cfr -cgx -chL -cja +btT +bvU +bxz +bzC +bBs +bDg +bEQ +bGA +bIA +bKi +bLH +bNx +aYT +bQX +bSF +bUk +bVA +bWF +bXW +bZj +caO +aYQ +cdA +ceW +cgH +cif +cjw ckE -cmd -cne -cNw -cOa -crf +clR +cnj +coN +cqo +crq +csJ +cud +cvx aaa -ack +acg aaa aaa aaa @@ -121266,21 +117852,21 @@ aaa aaa aaf aaa -anT +anY aaf -dbK -dbM -dbM -dbM -dbM -dbO -cRO -cSC -dbV -dbV -dbV -dbV -dbW +cOX +cQb +cQb +cQb +cQb +cTD +cUv +cVj +cVP +cVP +cVP +cVP +cXn aaa aaf aaa @@ -121426,89 +118012,89 @@ aaa aaa aaf aaa -acP -acQ -acQ -acQ -acP -acP -dnh -dnh -dnh -dnh -dnh -dnh -dnh -dnh -aBC -axY -axY -aBI -aCR -aEm -aFu -aBI -aBI -aJn -aCO -aFq -aNq -aBI -aPZ -aRo -aSu -aTG -aUZ -aWB -aYr -aZH -bbx -bcI -bek -bfR -bhV -bjG -bll -bna -bpg -brB -bep -bve -bxd -byS -bAC -dBJ -dCY -bFH -bHq -bIJ -aiN -atm -bLY -bPl -apc -aqq -apc -bUy -alq -bXd -apf -bZE -cba -ccK -cef -cfs -czH -cLC -cjb +acM +acN +acN +acN +acM +acM +als +als +als +als +als +als +als +als +ayc +awW +awW +aBN +aCZ +aEu +aFT +aBN +aBN +aKl +aAs +aFP +aOz +aBN +aRA +aSW +aUh +aVF +aXi +aYN +baI +bce +bdY +bfp +bgR +biu +bkt +bmg +bnN +bpw +brA +btU +bvU +bxA +bzC +bBt +bDh +bER +bGB +bIB +bKj +bLI +bNy +aYT +bQY +bSG +aYQ +bef +aYQ +bXX +bpl +caP +cco +cdA +ceX +cgI +cig +cjx ckF -cjb -cnf -cgz -cgz -cre +clS +cnk +coO +cnk +crr +ckG +ckG +cvw aaa -ack +acg aaa aaa aaa @@ -121523,21 +118109,21 @@ aaa aaa aaf aaa -anT +anY aaf -dbL -dbL -dbL -dbL -dbL +cOY +cOY +cOY +cOY +cOY aaf -dbT +cUx aaf -dbL -dbL -dbL -dbL -dbL +cOY +cOY +cOY +cOY +cOY aaa aaa aaa @@ -121687,85 +118273,85 @@ aaa aaa aaa aaf -dni -amG +alr amH -anN -dnS -arJ -arI -dnh -dqu -doh -axO -axY -aAo -aBJ -ayT -aEn -aFv -aGV -aHX -aEi -aKA -aMc -aEi -aOO -aEi -aRp -aSv -aTH -aVa -aWw -aWw -aWw -aWw -aWw -aWw -aWw -bhW -bjG -blm -bnb -bpg -brC -bep -bCK -bxd -byT -bAD -bCj -bDP -bFI -bHr -bIK -bBt -atm -bLZ -bPm -apc -bSf -apc -bxc -bxc -bXe -bxc -bxc -bxc -ccL -bxc -cft -cgz -cgz -cgz -cgz -cgz -cng -cgz -cpP -ack -ack -ack +amI +anS +apk +arW +arV +als +avH +aqB +ayb +awW +aAq +aBO +aDa +aEv +aFU +aHK +aIU +aEq +aLu +aNd +aEq +aQf +aEq +aSX +aUi +aVG +aXj +aYI +aYI +aYI +aYI +aYI +aYI +aYI +bku +bmg +bnO +bpx +brA +btV +bvU +bxB +bzC +bBu +bDi +bES +bGC +bIC +bKk +bLJ +bNz +aYT +bQZ +bSH +aYQ +bVB +aYQ +bzB +bzB +caQ +bzB +bzB +bzB +cgJ +bzB +cjy +ckG +ckG +ckG +ckG +ckG +crs +ckG +cue +acg +acg +acg aaa aaa aaa @@ -121780,7 +118366,7 @@ aaa aaa aaf aaa -anT +anY aaa aaa aaf @@ -121788,7 +118374,7 @@ aaf aaa aaa aaa -dbR +cUt aaa aaf aaa @@ -121944,73 +118530,73 @@ aaf aaf aaf aaf -dnh -amH -dnh -apd -dnS -arK -dnS -dnh -dnh -dnh -axO -axY -aAp -aBK -aCS -aEo -aFw -aGW -aHY -aHY -aKB -aMd -aNr -aOP -dCw -aRq -aSw -aTI -aVb -aWC -aYs -aZI -bby -bcJ -aBI -byK -bhX -bjH -bln -bnc -bph -brD -bep -bvg -bxd -byU -bAE -bCk -dBJ -bFJ -bHs -bIL -cVD -atm -cTw -bPn -bQR -apc -anM -bxc -bVF -bXf -bYv -bZF -cbb -ccM -bxc +als +amI +als +apl +apk +arX +apk +als +als +als +ayb +awW +aAr +aBP +aDb +aEw +aFV +aHL +aIV +aIV +aLv +aNe +aOA +aQg +aRB +aSY +aUj +aVH +aXk +aYO +baJ +bcf +bdZ +bfq +aBN +biv +bkv +bmh +bnP +bpy +brB +btW +bvU +bxC +bzC +bBv +bDj +bET +bER +bID +bKl +bLK +bNA +aYT +bRa +bSI +bUl +aYQ +bWG +bzB +bZk +caR +ccp +cdB +ceY +cgK +bzB aaf aaf aaf @@ -122037,22 +118623,22 @@ aaa aaa aaf aaa -anT -anT -anT -anT -anT +anY +anY +anY +anY +anY aaa aaf aaa -dbR +cUt aaa aaa aaa aaf aaf -anT -anT +anY +anY aaa aaa aaa @@ -122202,81 +118788,81 @@ aaf aaa aaf aaa -ack -dnh -ape -dnS -arL -ate -dDL -avt -awJ -axS -axY -aCO -ddW -aCT -aEp -aKC -aFx -aKC -aKC -aKC -aMe -aKC -aOQ -aKC -aRr -aSx -aTJ -dfX -aWD -aVc -aZJ -bbz -bcK -bel -bfT -bhY -bjI -bjL -blo -bpi -brE -btz -bvh -bxd -byV -bAF -bCl -bDQ -bFK -bxk -bIM -bKu -bxc -bxc -bxc -bxc -bxc -bxc -bxc -bVG -bXg -bAO -bZG -cbc -cUR -cVy -cVz -bAR -bAR -bAR -bAR -bAR +acg +als +apm +apk +arY +ats +auI +avI +awV +ayd +awW +aAs +aBQ +aDc +aEx +aFW +aHM +aFW +aFW +aFW +aNf +aFW +aQh +aFW +aSZ +aUk +aVI +aXl +aYP +baK +bcg +bea +bfr +bgS +biw +bkw +bmi +bml +bnQ +brC +btX +bvV +bxD +bzC +bBw +bDk +bEU +bGD +bIE +bzJ +bLL +bNB +bzB +bzB +bzB +bzB +bzB +bzB +bzB +bZl +caS +bDt +cdC +ceZ +cgL +cih +cjz +bDw +bDw +bDw +bDw +bDw aaf aaa -aai +aae aaf aaf aaa @@ -122294,18 +118880,18 @@ aaa aaf aaf aaa -anT +anY aaa aaa aaf aaa aaa -anT +anY aaf -dbU +cUy aaf -aqB -aac +aqL +aab aaa aaa aaa @@ -122459,83 +119045,83 @@ aaf aaf aaf aaf -ack -dni -bcO -dnS -dnS -dnS -dnh -avu -axY -axT -axY -aAr -ddX -aCU -aEq -aTO -aGX -aHZ -aJp -aTO -aSB -aTO -aOR -aQa -aGX -aTO -aTK -aVd -aBI -aYt -aZK -bbA -dgz -aBI -byK -bhZ -bjG -blo -bnd -blo -brF -bep -bvi -bxc -bxc -bxc -bCm -bDR -bza -bxl -bIN -bxg -bMa -bMa -bPo -bPo -bxc -bTi -bUz -bVH -bXh -bCi -bCi -cbd -ccN -ceg -cfu -cgA -chN -cjc -cjc -bAR +acg +alr +apn +apk +apk +apk +als +avJ +awW +aye +awW +aAt +aBR +aDd +aEy +aFX +aHN +aIW +aKm +aFX +aNg +aFX +aQi +aRC +aHN +aFX +aVJ +aXm +aBN +baL +bch +beb +bfs +aBN +biv +bkx +bmg +bnQ +bpz +bnQ +btY +bvU +bxE +bzB +bzB +bzB +bEV +bGE +bBB +bzK +bLM +bzF +bPi +bPi +bSJ +bSJ +bzB +bWH +bXY +bZm +caT +bRf +bRf +cfa +cgM +cii +cjA +ckH +clT +cnl +cnl +bDw aaf aaa -bzi +bBJ aaa -aai +aae aaa aaa aaa @@ -122551,17 +119137,17 @@ aaa aaa aaf aaa -anT +anY aaa aaa aaf aaf aaa -aqB +aqL aaa aaa aaa -anT +anY aaf aaf aaa @@ -122717,82 +119303,82 @@ aaa aaf aaa aaf -dnh -apg -aqs -arM -dBu -dBu -avv -axY -axU -ayS -dCk -ddY -deb -deh -aFz -aCZ -deM -axY -aCZ -aMg -aCZ -dfh -deM -aCZ -aFz -deh -aVe -axY -aYu -aYu -aYu -aYu -aYu -aYu -bia -bjG -blo -bne -blo -brG -bep -bep -bxc -byW -bAG -bCn -dBM -bFL -bHt -bIO -bKv -bMb -bNP -bPp -bPp -bSg -bDS -bDS -bVI -bXi -bYw -bYw -cbe -ccO -bza +als +apo +aqC +arZ +att +att +avK +awW +ayf +ayX +aAu +aBS +aDe +aEz +aFY +aEI +aIX +awW +aEI +aNh +aEI +aQj +aIX +aEI +aFY +aEz +aXn +awW +baM +baM +baM +baM +baM +baM +bky +bmg +bnQ +bpA +bnQ +btZ +bvU +bvU +bzB +bBx +bDl +bEW +bGF +bIF +bKm +bLN +bNC +bPj +bRb +bSK +bSK +bVC +bWI +bWI +bZn +caU +ccq +ccq +cfb +cgN +bBB aaf -EDo -chO -cjd -ckG -bAR +bGQ +clU +cnm +coP +bDw aaf aaa -bzi +bBJ aaa -bzj +bBK aaf aaf aaf @@ -122803,8 +119389,8 @@ aaa aaa aaf aaf -QuJ -QuJ +cHW +cHW aaf aaf aaa @@ -122814,11 +119400,11 @@ aaa aaa aaa aaa -anT -anT -anT -anT -anT +anY +anY +anY +anY +anY aaa aaa aaa @@ -122977,83 +119563,83 @@ ajb ajb ajb ajb -arN -atf -auu -avw -atf -axV -ddP -aAt -aBL -deb -dei -aFA -deB -deB -deB -deB -aMh -deB -deB -deB -deB -aSz -aTM -aVe -apc -aYu -aZL -bbB -bcL -bem -bfV -bib -bjJ -blp -bnf -bpj -brH -btA -bvj -bxd -byX -bAH -bCo -bDT -bFM -bHu -bIP -bKw -bMc -bNQ -bPq -bPq -bHu -bTj -bHu -bVJ -bXj -bYx -bMg -cbf -ccP -ceh -cfv -cgA -chP -cje -cjc -bAR +asa +atu +auJ +avL +atu +ayg +ayY +aAv +aBT +aDe +aEA +aFZ +aHO +aHO +aHO +aHO +aNi +aHO +aHO +aHO +aHO +aUl +aVK +aXn +aYQ +baM +bci +bec +bft +bgT +bix +bkz +bmj +bnR +bpB +brD +bua +bvW +bxF +bzC +bBy +bDm +bEX +bGG +bIG +bKn +bLO +bND +bPk +bRc +bSL +bSL +bKn +bWJ +bKn +bZo +caV +ccr +bPo +cfc +cgO +cij +cjB +ckH +clV +cnn +cnl +bDw aaf aaa -bzi +bBJ aaa -bzj +bBK aaa aaa aaa -aac +aab aaf aaf aaf @@ -123229,84 +119815,84 @@ aaa aaf ajb ajZ -als -amI -anO -aph -aqt -arO -atg -auv -avx -awK -axW -aAu -ddQ -aBM -aCV -aEr -aFB -aGY -daW -dBw -aKF -aMi -cpR -dfi -aQd -dBA -aSA -aTN -aVf -apc -aYu -aZM -bbC -bcM -ben -bfW -bic -bjK -blq -blq -bpk -brI -btB -bvk -bxe -byY -bAI -bCp -bDU -bFN -bAO -bIQ -bKx -bMd -bxd -bPr -bQS -bPr -bxd -bUA -bVK -bXk -bYy -bZH -cbg -ccQ -bza +alt +amJ +anT +app +aqD +asb +atv +auK +avM +awX +ayh +ayZ +aAw +aBU +aDf +aEB +aGa +aHP +aIY +aKn +aLw +aNj +aOB +aQk +aRD +aTa +aUm +aVL +aXo +aYQ +baM +bcj +bed +bfu +bgU +biy +bkA +bmk +bnS +bnS +brE +bub +bvX +bxG +bzD +bBz +bDn +bEY +bGH +bIH +bDt +bLP +bNE +bPl +bzC +bSM +bUm +bSM +bzC +bXZ +bZp +caW +ccs +cdD +cfd +cgP +bBB aaf -bAR -bAR -bAR -bAR -bAR +bDw +bDw +bDw +bDw +bDw aaf aaf -bzi +bBJ aaa -bzj +bBK aaf aaa aaa @@ -123469,101 +120055,101 @@ aaa aaa aaa aaa -aag -aai -aag -aag -aag -aaj -aag -aag -aag -aai -aag -aag -aag -aai -aag +aad +aae +aad +aad +aad +aac +aad +aad +aad +aae +aad +aad +aad +aae +aad ajb aka -alt -amJ -anP -api -aqu -arP +alu +amK +anU +apq +aqE +asc ajb -auw -avy +auL +avN ajb -axX -ayV -aAv -aBN -aCW -aEr -aFC -aGZ -aGZ -dlI -aKG -aMj -dBy -dlI -aQe -aRv -dfD -aTN -aVe -apc -aYu -aZN -bbD -bcN -beo -bfX -bid -bjL -blr -bng -bpl -btD -bvn -bvl -bxf -byZ -bAJ -bCq -bDV -bFO -bHv -bIR -bKy -bMe -bNR -bNR -bQT -bNR -bNR -bUB -bFO -bXl -bIS -bZI -cbh -ccR -ceg -cfu -cgA -chQ -cjf -cjf -bAR +ayi +aza +aAx +aBV +aDg +aEB +aGb +aHQ +aHQ +aIZ +aLx +aNk +aOC +aIZ +aRE +aTb +aUn +aVL +aXn +aYQ +baM +bck +bee +bfv +bgV +biz +bkB +bml +bnT +bpC +brF +buc +bvY +bxH +bzE +bBA +bDo +bEZ +bGI +bII +bKo +bLQ +bNF +bPm +bRd +bRd +bUn +bRd +bRd +bYa +bII +caX +bLR +cdE +cfe +cgQ +cii +cjA +ckH +clW +cno +cno +bDw aaf aaa -bzi +bBJ aaa -aai +aae aaa aaa aaa @@ -123726,7 +120312,7 @@ aaa aaa aaa aaa -aag +aad aaa aaa aaf @@ -123744,83 +120330,83 @@ aaf ajb akb ajZ -amK +amL ajZ -apj -aqv -arQ +apr +aqF +asd ajb ajb -avz -axY -axY -ayW -bTq -aBO -aCX -dej -aFC -deC -deC -dlI -aKH -aMk -aNu -dlI -dfp -dfp -dfE -dfP -dfY -dgc -aYu -cXA -cXA -cXA -cXA -cXA -bie -bjM -bls -bhT -bpm -bhT -bhT -bvm -bxg -bza -bza -bza -bza -bFP -bza -bIS -bKz -bMf -bxd -bPs -bPs -bSh -bxd -bUC -bVK -bXm -bIS -bZI -cbi -ccS -bza +avO +awW +awW +azb +azf +aBW +aDh +aEC +aGb +aHR +aHR +aIZ +aLy +aNl +aOD +aIZ +aRF +aRF +aUo +aVM +aXp +aYR +baM +bcl +bcl +bcl +bcl +bcl +bkC +bmm +bnU +bkr +brG +bkr +bkr +bxI +bzF +bBB +bBB +bBB +bBB +bIJ +bBB +bLR +bNG +bPn +bzC +bSN +bSN +bVD +bzC +bYb +bZp +caY +bLR +cdE +cff +cgR +bBB aaf -EDo -chR -cjg -ckH -bAR +bGQ +clX +cnp +coQ +bDw aaf aaa -bzi +bBJ aaa -bzj +bBK aaa aaa aaa @@ -123983,101 +120569,101 @@ aaa aaa aaa aaa -aag +aad aaa -abv -abO -acl +abs +abL +ach aaa -abv -abO -acl +abs +abL +ach aaa -abv -abO -acl +abs +abL +ach aaa aaf ajb akc -alt -amL -anQ -apk -aqw -arR -ath +alu +amM +anV +aps +aqG +ase +atw ajb -avA -axY -axZ -ayX -ddS -bUw -aCY -dek -der -deD -dlI -aJv -aKI -aMj -dfb -dfj -dlI -deD -dfF -aTN -aVe -aWH -dgi -dgc -aqq -aqr -aWu -bif -bif -bif -bhT -bhT -brK -bhT -bvo -bvr -bxh -bzb -bAK -bCr -bDW -bFQ -bHw -bIT -bKA -bMg -bNS -bPt -bQU -bSi -bTk -bDW -bFQ -bXm -bYz -bZJ -cbj -ccP -ceh -cfw -cgA -chS -cjh -cjf -bAR +avP +awW +ayj +azc +aAy +azd +aDi +aED +aGc +aHS +aIZ +aKo +aLz +aNk +aOE +aQl +aIZ +aHS +aUp +aVL +aXn +aYS +baN +aYR +bef +bfw +bgW +biA +biA +biA +bkr +bkr +brH +bkr +bvZ +bxJ +bzG +bBC +bDp +bFa +bGJ +bIK +bKp +bLS +bNH +bPo +bRe +bSO +bUo +bVE +bWK +bGJ +bIK +caY +cct +cdF +cfg +cgO +cij +cjC +ckH +clY +cnq +cno +bDw aaf aaa -aai +aae aaa -bzj +bBK aaf aaa aaa @@ -124240,101 +120826,101 @@ aaa aaa aaa aaa -aag +aad aaf -abv -abP -acl +abs +abM +ach aaa -abv -abP -acl +abs +abM +ach aaa -abv -abP -acl +abs +abM +ach aaa aaf ajb ajZ -alu -amM -anR -apl -aqx -arS -ati +alv +amN +anW +apt +aqH +asf +atx ajb -avB -axY -ddO -bUw -ddT -ddZ -ded -del -des -djt -daY -daZ -dbb -aMk -aNv -dfk -dfq -djt -dfG -dfQ -dfZ -apc -apc -dgo -apc -cXZ -atm -bfZ -bif -bfY -bhT -bqF -bpp -btF -bvp -bvv -bxi -bzc -bAL -ddF -bDX -bFR -bHx -bIU -bKB -bMh -bNT -bCi -bKD -bCi -bCi -bUD -bCi -dDm -bIS -bZK -cbk -ccP -ceh -cfx -bAR -bAR -bAR -bAR -bAR +avQ +awW +ayk +azd +aAz +aBX +aDj +aEE +aGd +aHT +aJa +aKp +aLA +aNl +aOF +aQm +aRG +aHT +aUq +aVN +aXq +aYQ +aYQ +bcm +aYQ +bfx +aYT +biB +biA +bmn +bkr +bpD +brI +bud +bwa +bxK +bzH +bBD +bDq +bFb +bGK +bIL +bKq +bLT +bNI +bPp +bRf +bRf +bNK +bRf +bRf +bYc +bRf +caZ +bLR +cdG +cfh +cgO +cij +cjD +bDw +bDw +bDw +bDw +bDw aaf aaf -bzi +bBJ aaa -bzj +bBK aaa aaa aaa @@ -124497,19 +121083,19 @@ aaa aaa aaa aaa -aag +aad aaf -abv -abP -acl +abs +abM +ach aaf -abv -abP -acl +abs +abM +ach aaf -abv -abP -acl +abs +abM +ach aaf aaf ajb @@ -124522,76 +121108,76 @@ ajb ajb ajb ajb -avC -axY -aya -bUw -ddU -aBQ -dee -aEr -des -djt -daY -daZ -dbb -dfa -aNv -dfk -daY -djx -dfG -cXz -aVe -atm -alr -dgp -cXI -cYj -atm -bga -big -bga -bhT -bpv -brL -btE -bhT -bvs -bxj -bzd -bAM -bCt -bDY -bFS -bHy -bIV -bKC -bMi -bNU -bMg -bQV -bMg -bMg -bUE -bVL -bXn -bYA -bZJ -cbl -bKG -cei -cfy -cgB -chT -cji +avR +awW +ayl +azd +aAA +aBY +aDk +aEB +aGd +aHT +aJa +aKp +aLA +aNm +aOF +aQm +aJa +aTc +aUq +aVO +aXn +aYT +baO +bcn +beg +bfy +aYT +biC +bkD +biC +bkr +bpE +brJ +bue +bkr +bxL +bzI +bBE +bDr +bFc +bGL +bIM +bKr +bLU +bNJ +bPq +bRg +bPo +bUp +bPo +bPo +bYd +bZq +cba +ccu +cdF +cfi +bNN +cik +cjE ckI -bAR +clZ +cnr +coR +bDw aaf aaa -bzj +bBK aaf -aai +aae aaf aaa aaa @@ -124748,25 +121334,25 @@ aaa aaa aaa aaa -aac +aab aaa aaa aaa aaa aaa -aag +aad aaf -abv -abP -acl +abs +abM +ach aaa -abv -abP -acl +abs +abM +ach aaa -abv -abP -acl +abs +abM +ach aaa aaf aaf @@ -124776,79 +121362,79 @@ aaf aaf aaf aaf -dni -dps -dpL -avD -axY -ddO -bUw -ddV -aBQ -dee -aEr -aKL -djt -daY -deS -dbb -aMk -aNv -dfm -daY -djt -dbg -dfR -dga -dgd -dgj -dgp alr -atm -atm -bgb -cTu -bgb -bhT -brJ -brN -btG -bvq -bxm -bxk -bze -bAN -bCu -bDZ -bFT -bHz -bIW -bKD -dhe -dhg -bPu -bPu -bPu -bTl -bUF -bKD -bXo -bMj -bZI -cVJ -ccQ -bza +aty +auM +avS +awW +ayk +azd +aAB +aBY +aDk +aEB +aGe +aHT +aJa +aKq +aLA +aNl +aOF +aQn +aJa +aHT +aUr +aVP +aXr +aYU +baP +bcn +baO +aYT +aYT +biD +bkE +biD +bkr +bpF +brK +buf +bwb +bxM +bzJ +bBF +bDs +bFd +bGM +bIN +bKs +bLV +bNK +bPr +bRh +bSP +bSP +bSP +bWL +bYe +bNK +cbb +ccv +cdE +cfj +cgP +bBB aaf -EDo -chU -cjj -ckJ -bAR +bGQ +cma +cns +coS +bDw aaf aaa -bzi +bBJ aaa -bzj +bBK aaa aaa aaa @@ -125008,104 +121594,104 @@ aaa aaa aaa aaa -aaj -aai -aaj -aag +aac +aae +aac +aad aaa -abv -abP -acl +abs +abM +ach aaa -abv -abP -acl +abs +abM +ach aaa -abv -abP -acl +abs +abM +ach aaa aaa aaf aaa aaa akd -alv -apm -apm -apm -apm -dnR -avE -axY -ayc -aza -aAw -bUw -aCY -dem -aFD -deD -dlI -dlI -deV -dlN -dfc -dlI -dlI -deD -dfI -dfS -aVh +alw +apu +apu +apu +apu +apj +avT +awW +aym +aze +aAC +azd +aDi +aEF +aGf +aHS +aIZ +aIZ +aLB +aNn +aOG +aIZ +aIZ +aHS +aUs +aVQ +aXs aaf -aYx -dgr -dgw -dgA -dgI -bgb -cTi -bgb -EDC -aNC -brM -aNC -bhT -bwl -bxl -bzf -bAO -bCv -bEa -bFU -bHy -bIX -bKE -bKE -dhh -bPv -bKE -bKE -bKE -bUG -bKE -bXp -bKE -bZL -cbn -ccT -cei -cfy -cgC -chV -cjk -ckI -bAR +baQ +bco +beh +bfz +bgX +biD +bkF +biD +bnV +aOS +brL +aOS +bkr +bxN +bzK +bBG +bDt +bFe +bGN +bIO +bKr +bLW +bNL +bNL +bRi +bSQ +bNL +bNL +bNL +bYf +bNL +cbc +bNL +cdH +cfk +cgS +cik +cjE +ckJ +cmb +cnt +coR +bDw aaf aaa -bJf +bMf aaf -bKK +bNR aaf aaa aaa @@ -125265,104 +121851,104 @@ aaa aaa aaa aaa -aag +aad aaa aaf aaa aaa aaf -abQ +abN aaf aaf aaf -abQ +abN aaf aaa aaf -abQ +abN aaf aaa aaa aaf akd -alv -alv -alv -apn -aqy -arT -apm -dnS -avB -axY -axY -bTq -aAx -aBO -aIe -aOS -deu -deI -deN -deI -deW -aMm -dfd -deN -dft -dBB -dbh -dfT -aVh +alw +alw +alw +apv +aqI +asg +apu +apk +avQ +awW +awW +azf +aAD +aBW +aDl +aEG +aGg +aHU +aJb +aHU +aLC +aNo +aOH +aJb +aRH +aTd +aUt +aVR +aXs aaa -aYx -dgf -dgj -ack -dgJ -bgb -bij -bgb +baQ +aYW +baP +acg +bgY +biD +bkG +biD aaa aaf -bpw +brM aaf aaf -ack -bxc -bzg -bAP -bCw -bEb -bFV -bHA -bIY -bKF -bMk -dhi -bPw -bQW -bSj -bNV -bUH -bVM -bXq -bNV -bZM -cbo -ccU -bxc +acg +bzB +bBH +bDu +bFf +bGO +bIP +bKt +bLX +bNM +bPs +bRj +bSR +bUq +bVF +bWM +bYg +bZr +cbd +bWM +cdI +cfl +cgT +bzB aaf -bAR -bAR -bAR -bAR -bAR +bDw +bDw +bDw +bDw +bDw aaf aaa aaf aaa -bzj +bBK aaa aaa aaa @@ -125522,93 +122108,93 @@ aaa aaa aaa aaa -aag +aad aaa aaN -aaY -aaY -abw -abR -abR -acz -abR -abR -abR -abR -aeF -abR -abR -abR -abR -abR +aaV +aaV +abt +abO +abO +acv +abO +abO +abO +abO +aeC +abO +abO +abO +abO +abO ake -alw -amN -alw -apo -aqz -arU -atk -aux -avF -dqT -dqT +alx +amO +alx +apw +aqJ +ash +atz +auN +avU +awY +awY aaf -ack -dea -aIc -den -dev -deJ -deO -deU -deX -dBx -dfe -dBz -dfu -dfz -dfJ -dfU -dga -dge -azd -azd -azd -dgB -dgK +acg +aBZ +aDm +aEH +aGh +aHV +aJc +aKr +aLD +aNp +aOI +aQo +aRI +aTe +aUu +aVS +aXr +aYV +baR +baR +baR +bfA +bgZ aaa -cUL +bkH aaa aaf aaf -bpw +brM aaa aaf aaf -bxc -bzh -bAQ -bCx -bEc -bFW -bHB -bIZ -bKG -bMl -dhj -bIZ -bKG -bMl -bKG -bIZ -bKG -bMl -bYB -bKG -bKG -ccV -bxc +bzB +bBI +bDv +bFg +bGP +bIQ +bKu +bLY +bNN +bPt +bRk +bLY +bNN +bPt +bNN +bLY +bNN +bPt +ccw +bNN +bNN +cgU +bzB aaf aaf aaf @@ -125617,9 +122203,9 @@ aaf aaf aaf aaf -bzj -bzj -bzj +bBK +bBK +bBK aaf aaf aaf @@ -125630,8 +122216,8 @@ aaa aaf aaf aaf -QuJ -QuJ +cHW +cHW aaf aaf aaa @@ -125779,93 +122365,93 @@ aaa aaa aaa aaa -aag +aad aaa aaa aaa aaf aaf -abS +abP aaf aaa aaf -abS +abP aaf aaa aaf -abS +abP aaf aaa aaa aaf akd -alv -alv -alv -app -aqA -arV -atl -auy -dnS -dqT -dqT +alw +alw +alw +apx +aqK +asi +atA +auO +apk +awY +awY aaf -ack -ack -def -aCZ -dew -aCZ -axY -axY -aCZ -aCZ -aCZ -axY -axY -aCZ -dew -aCZ -aVe -dgf -dgk -dgt -dgk -dgv -dgJ -anT +acg +acg +aDn +aEI +aGi +aEI +awW +awW +aEI +aEI +aEI +awW +awW +aEI +aGi +aEI +aXn +aYW +baS +bcp +baS +bcr +bgY +anY aaf aaf aaf aaa -bpw +brM aaa aaa aaf -bxc -bxc -bxc -bCy -bza -bFX -bza -bJa -bza -bFX -dhk -bJa -bza -bFX -bza -bJa -bza -bFX -bxc -bxc -bxc -ccW -bxc +bzB +bzB +bzB +bFh +bBB +bIR +bBB +bLZ +bBB +bIR +bRl +bLZ +bBB +bIR +bBB +bLZ +bBB +bIR +bzB +bzB +bzB +cgV +bzB aaf aaa aaa @@ -126036,93 +122622,93 @@ aaa aaa aaa aaa -aaj -aaj -aai -aaj +aac +aac +aae +aac aaf -abv -abT -acl +abs +abQ +ach aaa -abv -abT -acl +abs +abQ +ach aaa -abv -abT -acl +abs +abQ +ach aaa aaa aaf aaa aaa akd -alv -apm -apm -apm -apm -dnh -dnS -dnz -dqT +alw +apu +apu +apu +apu +als +apk +anR +awY aaf aaf aaf -def -ddZ -dex -aJu -ddZ -ddZ -ddZ -aMo -dff -ddZ -ddZ -aJu -dex -ddZ -aVe -aWK -dgk -dgt -dgk -dgB -dgM -dgN -dgO -dgO -dgw -dgO -dgS -dgO -dgO -dgw -dgw -dgw -dgw -bCz -dgw -dha -dgw -dhc -dgw -dha -dhl -bJb +aDn +aBX +aGj +aEL +aBX +aBX +aBX +aNq +aOJ +aBX +aBX +aEL +aGj +aBX +aXn +aYX +baS +bcp +baS +bfA +bha +biE +bkI +bkI +beh +bkI +brN +bkI +bkI +beh +beh +beh +beh +bFi +beh +bIS +beh +bMa +beh +bIS +bRm +bSS aaf -bFY +bVG aaf -bJb +bSS aaf -bFY +bVG aaf aaf -bxc -ccX -bxc +bzB +cgW +bzB aaf aaf aaf @@ -126296,19 +122882,19 @@ aaa aaa aaa aaa -aag +aad aaa -abv -abT -acl +abs +abQ +ach aaa -abv -abT -acl +abs +abQ +ach aaa -abv -abT -acl +abs +abQ +ach aaf aaa aaf @@ -126319,67 +122905,67 @@ aaf aaa aaa aaa -dnh -auz -dqp -dqT -dqT +als +auP +avG +awY +awY aaa aaa aaa -bTq -dep -dey -aHa -ddZ -ddZ -ddZ -ddZ -ddZ -ddZ -ddZ -dfA -dfM -dfV -dgb -dgg -azd -azd -azd -dgv +azf +aEJ +aGk +aHW +aBX +aBX +aBX +aBX +aBX +aBX +aBX +aTf +aUv +aVT +aXt +aYY +baR +baR +baR +bcr aaf -anT +anY aaa aaa aaf aaf -bpx +brO aaf aaf aaf aaa aaf -bAR -dBC -EDo -bFZ -bAR -bCA -EDo -bFZ -bAR -bCA -EDo -bFZ -bAR -bCA -EDo -bFZ -bAR +bDw +bFj +bGQ +bIT +bDw +bMb +bGQ +bIT +bDw +bMb +bGQ +bIT +bDw +bMb +bGQ +bIT +bDw aaf -bxc -ccW -bxc +bzB +cgV +bzB aaf aaa aaf @@ -126389,7 +122975,7 @@ aaa aaf aaa aaa -aai +aae aaf aaa aaa @@ -126553,19 +123139,19 @@ aaa aaa aaa aaa -aag +aad aaf -abv -abT -acl +abs +abQ +ach aaf -abv -abT -acl +abs +abQ +ach aaf -abv -abT -acl +abs +abQ +ach aaa aaa aaf @@ -126576,77 +123162,77 @@ aaf aaf aaf aaf -dni -auA -dnS -dqT +alr +auQ +apk +awY aaa aaa aaa aaa -axY -deq -dey -deK -ddZ -ddZ -ddZ -aMo -ddZ -ddZ -ddZ -dfB -dfM -dfW -axY -aWK -dgk -dgt -dgk -dgB +awW +aEK +aGk +aHX +aBX +aBX +aBX +aNq +aBX +aBX +aBX +aTg +aUv +aVU +awW +aYX +baS +bcp +baS +bfA aaa -anT +anY aaa aaa aaf aaa -bpw +brM aaa aaa aaf aaa aaf -bAR -bCB -bEd -bGa -bAR -bJc -bKH -bMm -bAR -bPx -bQX -bSk -bAR -bUI -bVN -bXr -bAR +bDw +bFk +bGR +bIU +bDw +bMc +bNO +bPu +bDw +bST +bUr +bVH +bDw +bYh +bZs +cbe +bDw aaf -aMr -ccY -bBb +aNr +cgX +bDG aaf aaa aaf -bxc -cjo -ckM -cmf -cmf +bzB +cnx +coV +cqq +cqq aaa -bKK +bNR aaa aaa aaa @@ -126810,19 +123396,19 @@ aaa aaa aaa aaa -aag +aad aaf -abv -abT -acl +abs +abQ +ach aaa -abv -abT -acl +abs +abQ +ach aaa -abv -abT -acl +abs +abQ +ach aaa aaa aaf @@ -126833,77 +123419,77 @@ aaa aaa aaf aaa -dnh -auB -avG -dqT +als +auR +avV +awY aaa aaa aaa aaa -axY -aJu -deA -deL -aJu -aJu -deY -axY -dfg -aJu -aJu -dfC -dfO -ddZ -axY -dgh -dgk -dgk -dgk -dgv +awW +aEL +aGl +aHY +aEL +aEL +aLE +awW +aOK +aEL +aEL +aTh +aUw +aBX +awW +aYZ +baS +baS +baS +bcr aaf -anT +anY aaa aaa aaf aaa -bpw +brM aaa aaa aaf aaa aaf -bAR -bCC -bCC -bCC -bAR -bJd -bKI -bJd -bAR -bPy -bQY -bPy -bAR -bUJ -bVO -bUJ -bAR +bDw +bFl +bFl +bFl +bDw +bMd +bNP +bMd +bDw +bSU +bUs +bSU +bDw +bYi +bZt +bYi +bDw aaf -aMq -ccY -bgo -aTQ -cgD -chW -cjl +aKs +cgX +biR +aOL ckK -bCC -bCC -ckM +cmc +cnu +coT +bFl +bFl +coV aaf -bKK +bNR aaa aaa aaa @@ -127067,22 +123653,22 @@ aaa aaa aaa aaa -aaj +aac aaa -abv -abU -acl +abs +abR +ach aaa -abv -abU -acl +abs +abR +ach aaa -abv -abU -acl +abs +abR +ach aaf aaf -aag +aad aaa aaa aaa @@ -127090,77 +123676,77 @@ aaa aaa aaf aaa -dnh -dnh -atn -dqT +als +als +atB +awY aaf aaa aaa aaa -axY -axY -axY -axY -axY -axY -axY -axY -axY -axY -axY -axY -axY -axY -axY -aWK -dgm -dgu -dgm -dgB +awW +awW +awW +awW +awW +awW +awW +awW +awW +awW +awW +awW +awW +awW +awW +aYX +baT +bcq +baT +bfA aaa -anT +anY aaa aaa aaf aaf -bpx +brO aaf aaf aaf aaf aaf -bAR -bCC -bEe -bGb -bAR -bJd -bKJ -bMn -bAR -bPz -bQZ -bSl -bAR -bUJ -bVP -bXs -bAR +bDw +bFl +bGS +bIV +bDw +bMd +bNQ +bPv +bDw +bSV +bUt +bVI +bDw +bYi +bZu +cbf +bDw aaf -aMr -ccY -ccY -ccY -ccY -ccY -cjm -bCC -cme -bCC -cjo +aNr +cgX +cgX +cgX +cgX +cgX +cnv +bFl +cqp +bFl +cnx aaa -bKK +bNR aaf aaa aaa @@ -127324,7 +123910,7 @@ aaa aaa aaa aaa -aaj +aac aaa aaf aaa @@ -127345,12 +123931,12 @@ aaa aaa aaa aaa -ack -ack -atn -bOY -avG -dqT +acg +acg +atB +auS +avV +awY aaf aaa aaa @@ -127369,55 +123955,55 @@ aaf aaa aaf aaf -ack -ack -aye -dgv -aye -dgv +acg +acg +baU +bcr +baU +bcr aaf -anT +anY aaf aaf aaf aaa -bpw +brM aaa aaf aaa aaa aaf -bAR -bAR -bAR -bAR -bAR -bAR -bAR -bAR -bAR -bAR -bAR -bAR -bAR -bAR -bAR -bAR -bAR +bDw +bDw +bDw +bDw +bDw +bDw +bDw +bDw +bDw +bDw +bDw +bDw +bDw +bDw +bDw +bDw +bDw aaf -aMq -ccY -aVk -aNC -cgE -chX -cjn +aKs +cgX +aXu +aOS ckL -bCC -bCC -bxc +cmd +cnw +coU +bFl +bFl +bzB aaf -aai +aae aaa aaa aaa @@ -127581,33 +124167,33 @@ aaa aaa aaa aaa -aaj -aai -aag -aag -aag -aai -aag -aag -aag -aaj -aag -aag -aai -aag -aai -aag -aai -aag +aac +aae +aad +aad +aad +aae +aad +aad +aad +aac +aad +aad +aae +aad +aae +aad +aae +aad aaf aaf aaf aaf aaf -dnh -dnh -atn -dqT +als +als +atB +awY aaf aaa aaa @@ -127638,7 +124224,7 @@ aaa aaa aaf aaa -bpw +brM aaa aaf aaf @@ -127662,17 +124248,17 @@ aaf aaf aaf aaf -aMr -ccZ -bBb +aNr +cgY +bDG aaf aaa aaf -cjo -ckM -cmf -ckM -cjo +cnx +coV +cqq +coV +cnx aaa aaf aaf @@ -127863,27 +124449,27 @@ aaf aaa aaa aaf -ack -dqT +acg +awY aaf -anT -anT -anT -anT +anY +anY +anY +anY aaf -anT -anT -anT -anT -anT -anT -aqB -anT -anT -anT -anT -anT -anT +anY +anY +anY +anY +anY +anY +aqL +anY +anY +anY +anY +anY +anY aaf aaa aaa @@ -127895,7 +124481,7 @@ aaa aaa aaf aaa -bpw +brM aaa aaf aaa @@ -128120,7 +124706,7 @@ aaf aaf aaf aaf -ack +acg aaf aaa aaa @@ -128128,16 +124714,16 @@ aaa aaf aaa aaa -bpu -bpu -bpu -bpu -bpu -bpu -bpu -bpu -bpu -bpu +aGm +aGm +aGm +aGm +aGm +aGm +aGm +aGm +aGm +aGm aaa aaa aaa @@ -128152,40 +124738,40 @@ aaa aaa aaf aaa -bpw +brM aaa aaf aaf aaf -aai -bzj -bzj -bzj -bzj -bzj -bJe -bzj -bzj -aai -bzj -bzj -bzj -bKK -bzj -bzj -bzj -bzj -bJe -bzj -aai -bzj +aae +bBK +bBK +bBK +bBK +bBK +bMe +bBK +bBK +aae +bBK +bBK +bBK +bNR +bBK +bBK +bBK +bBK +bMe +bBK +aae +bBK aaf aaf -aai -bzj -aai -bzj -bzj +aae +bBK +aae +bBK +bBK aaf aaf aaa @@ -128385,16 +124971,16 @@ aaa aaf aaf aaf -anT -anT -anT -anT -aqB -anT -anT -anT -anT -aqB +anY +anY +anY +anY +aqL +anY +anY +anY +anY +aqL aaf aaf aaf @@ -128409,7 +124995,7 @@ aaa aaa aaf aaa -bpw +brM aaa aaf aaa @@ -128446,7 +125032,7 @@ aaa aaa aaf aaa -aac +aab aaa aaa aaa @@ -128658,7 +125244,7 @@ aaa aaf aaa aaa -aai +aae aaa aaa aaa @@ -128666,30 +125252,30 @@ aaa aaa aaf aaa -bpw +brM aaa aaf aaf -aai -bzi -bzi -bzi -bzi -bzi -bzi -bJf -bzi -bzi -bzi -bzi -bzi -bzi -bJf -bzi -bzi -bzi -bzi -bJf +aae +bBJ +bBJ +bBJ +bBJ +bBJ +bBJ +bMf +bBJ +bBJ +bBJ +bBJ +bBJ +bBJ +bMf +bBJ +bBJ +bBJ +bBJ +bMf aaf aaf aaf @@ -128913,9 +125499,9 @@ aaa aaa aaa aaf -aai +aae aaa -aai +aae aaa aaa aaa @@ -128923,7 +125509,7 @@ aaa aaa aaf aaf -bpx +brO aaf aaf aaa @@ -129170,9 +125756,9 @@ aaa aaa aaa aaa -aag +aad aaa -EDb +bei aaa aaa aaa @@ -129180,33 +125766,33 @@ aaa aaa aaf aaa -bpw +brM aaa aaf aaf -aai -bzj -bzj -aai -bzj -EDb -bzj -bzj -bKK -bzj -bzj -bzj -bzj -EDb -aai -bzj -bzj -bzj -bzj -bKK -bzj -bzj -anS +aae +bBK +bBK +aae +bBK +bei +bBK +bBK +bNR +bBK +bBK +bBK +bBK +bei +aae +bBK +bBK +bBK +bBK +bNR +bBK +bBK +anX aaa aaa aaa @@ -129427,26 +126013,26 @@ aaa aaa aaa aaa -aai +aae aaa -anT +anY aaa aaa -aac +aab aaa aaa aaf aaa -bpw +brM aaa aaf aaa aaa aaa aaa -aai +aae aaa -anT +anY aaa aaa aaa @@ -129686,7 +126272,7 @@ aaa aaa aaf aaf -anT +anY aaa aaa aaa @@ -129694,7 +126280,7 @@ aaa aaa aaf aaa -bpw +brM aaa aaf aaa @@ -129703,7 +126289,7 @@ aaa aaa aaf aaa -anT +anY aaa aaa aaa @@ -129941,9 +126527,9 @@ aaa aaa aaa aaa -aai +aae aaa -anT +anY aaa aaa aaa @@ -129951,22 +126537,22 @@ aaa aaa aaf aaa -bpw +brM aaa aaf aaa aaa aaa aaa -aai +aae aaf -anT +anY aaa aaa aaa aaa aaa -aac +aab aaa aaa aaa @@ -130198,9 +126784,9 @@ aaa aaa aaa aaa -aag +aad aaa -aai +aae aaa aaa aaa @@ -130208,16 +126794,16 @@ aaa aaa aaf aaa -bpw +brM aaa aaf aaa aaa aaa aaa -aag +aad aaa -anT +anY aaa aaa aaa @@ -130455,9 +127041,9 @@ aaa aaa aaa aaa -aag +aad aaa -anT +anY aaa aaa aaa @@ -130465,16 +127051,16 @@ aaa aaa aaf aaa -bpw +brM aaa aaf aaa aaa aaa aaa -aag +aad aaa -aai +aae aaa aaa aaa @@ -130712,9 +127298,9 @@ aaa aaa aaa aaa -aai +aae aaa -anT +anY aaa aaa aaa @@ -130722,16 +127308,16 @@ aaa aaa aaf aaf -bpx +brO aaf aaf aaa aaa aaa aaa -aai +aae aaa -EDb +bei aaa aaa aaa @@ -130930,7 +127516,7 @@ aaa aaa aaa aaa -aac +aab aaa aaa aaa @@ -130954,7 +127540,7 @@ aaa aaa aaa aaa -aac +aab aaa aaa aaa @@ -130969,9 +127555,9 @@ aaa aaa aaa aaa -aai +aae aaa -anT +anY aaa aaa aaa @@ -130979,16 +127565,16 @@ aaa aaa aaf aaa -bpy +brP aaa aaf aaa aaa aaa aaa -aai +aae aaa -EDb +bei aaa aaa aaa @@ -131226,9 +127812,9 @@ aaa aaa aaa aaa -aag +aad aaa -anT +anY aaa aaa aaa @@ -131236,16 +127822,16 @@ aaa aaa aaf aaa -bpy +brP aaa aaf aaa aaa aaa aaa -aag +aad aaa -anT +anY aaa aaa aaa @@ -131483,9 +128069,9 @@ aaa aaa aaa aaa -aag +aad aaf -aai +aae aaf aaf aaf @@ -131493,16 +128079,16 @@ aaa aaa aaf aaa -bpz +brQ aaa aaf aaa aaa aaa aaa -aag +aad aaa -anT +anY aaa aaa aaa @@ -131543,9 +128129,9 @@ aaa aaa aaf aaf -czK -cDv -czK +cGZ +cKU +cGZ aaf aaf aaa @@ -131740,26 +128326,26 @@ aaa aaa aaa aaa -aag +aad aaa -EDb +bei aaa aaa aaf aaf aaf aaf -bno -bpA -brO +bpG +brR +bug aaf aaa aaa aaa aaa -aag +aad aaf -aai +aae aaa aaa aaa @@ -131799,11 +128385,11 @@ aaa aaa aaf aaf -cBM -czK -cDw -czK -cBM +cIP +cGZ +cKV +cGZ +cIP aaf aaf aaa @@ -131997,26 +128583,26 @@ aaa aaa aaa aaa -aai +aae aaa -anT +anY aaa aaa aaf aaa aaa -blu +bnW aaa -bpA +brR aaa -btI +bwc aaa aaa aaa aaa -aag +aad aaa -anT +anY aaa aaa aaa @@ -132055,13 +128641,13 @@ aaa aaa aaf aaf -czK -czK -cCH -cDv -cEB -czK -czK +cGZ +cGZ +cJW +cKU +cLT +cGZ +cGZ aaf aaf aaa @@ -132254,26 +128840,26 @@ aaa aaa aaa aaa -anT +anY aaa -anT +anY aaf aaf -ack -ack +acg +acg aaf -blv +bnX aaf -bpA +brR aaf -blv +bnX aaf aaf aaf aaf -aag +aad aaa -EDb +bei aaa aaa aaa @@ -132311,15 +128897,15 @@ aaa aaa aaa aaf -czJ -czJ -cBN -cCI -cCI -cCI -cFv -czJ -czJ +cGY +cGY +cIQ +cJX +cJX +cJX +cMT +cGY +cGY aaf aaa aaa @@ -132511,26 +129097,26 @@ aaa aaa aaa aaa -anT +anY aaa -aqB +aqL aaa -aMq -bgc -bgc -aOV -blw -aNw -bpB -aNw -btJ +aKs +biF +biF +aQr +bnY +aLF +brS +aLF +bwd aaa aaa aaa aaa -aai +aae aaa -anT +anY aaa aaa aaa @@ -132568,15 +129154,15 @@ aaa aaf aaf aaf -czK -cAQ -cBO -cCI -cDx -cCI -cFw -cGp -czK +cGZ +cHX +cIR +cJX +cKW +cJX +cMU +cOg +cGZ aaf aaf aaf @@ -132768,26 +129354,26 @@ aaa aaa aaa aaa -anT +anY aaa -anT +anY aaa -aMq -bgd -bgd -aOV -aMq -bnp -bpC -brP -btK +aKs +biG +biG +aQr +aKs +bpH +brT +buh +bwe aaa aaa aaa aaa -aag +aad aaa -aai +aae aaa aaa aaa @@ -132825,15 +129411,15 @@ aaa aaa aaa aaf -czJ -czJ -cBP -cCI -cCI -cCI -cFx -czJ -czJ +cGY +cGY +cIS +cJX +cJX +cJX +cMV +cGY +cGY aaf aaa aaa @@ -133025,26 +129611,26 @@ aaa aaa aaa aaa -anT +anY aaa -anT -anT -beq -bge -bik -beq -blx -bnq -bpD -brQ -blx -anT -anT -anT -anT -aag +anY +anY +bhb +biH +bkJ +bhb +bnZ +bpI +brU +bui +bnZ +anY +anY +anY +anY +aad aaa -anT +anY aaa aaa aaa @@ -133083,13 +129669,13 @@ aaa aaa aaf aaf -czK -czK -cCJ -cDy -cEC -czK -czK +cGZ +cGZ +cJY +cKX +cLU +cGZ +cGZ aaf aaf aaa @@ -133277,31 +129863,31 @@ aaa aaa aaa aaa -anT -anT -anT -anT -anT -anT -anT -anT +anY +anY +anY +anY +anY +anY +anY +anY aaa -aSD -bgf -bgd -aOX -bly -bnr -bpE -brR -aOX -aNw -aNw -aTQ +aNs +biI +biG +aQt +boa +bpJ +brV +buj +aQt +aLF +aLF +aOL aaa -anT +anY aaa -aag +aad aaa aaa aaa @@ -133341,11 +129927,11 @@ aaa aaa aaf aaf -cBM -czK -cDz -czK -cBM +cIP +cGZ +cKY +cGZ +cIP aaf aaf aaa @@ -133529,48 +130115,48 @@ aaa aaa aaa aaa -anT -anT -anT -anT -anT -anT +anY +anY +anY +anY +anY +anY aaa -aTQ -aNw -aNw -aNw -aNw -aNw -aSD -bes -bgg -bil -bjO -bjO -bns -bpF -brS -bjO -bjO -bjO -bzk -bAS -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT +aOL +aLF +aLF +aLF +aLF +aLF +aNs +bhc +biJ +bkK +bmo +bmo +bpK +brW +buk +bmo +bmo +bmo +bBL +bDx +anY +anY +anY +anY +anY +anY +anY +anY +anY +anY +anY +anY +anY +anY +anY aaa aaa aaa @@ -133599,9 +130185,9 @@ aaa aaa aaf aaf -czK -czJ -czK +cGZ +cGY +cGZ aaf aaf aaa @@ -133786,48 +130372,48 @@ aaa aaa aaa aaa -anT +anY aaa -aTQ -aNw -aNw -aNw -aSD -aTR -aOT -aOT -aOT -aOT -aOT -aOT -bet -aVk -aOY -aOY -aSG -bnt -bpG -brT -aOU -aOY -bcQ -bzl -bAT -aNw -aNw -aNw -bJl -aNw -aNw -aNw -aNw -bJl -aNw -aNw -aNw -aTQ +aOL +aLF +aLF +aLF +aNs +aVV +aQp +aQp +aQp +aQp +aQp +aQp +bhd +aXu +aLK +aLK +aUz +bpL +brX +bul +aQq +aLK +aNx +bBM +bDy +aLF +aLF +aLF +bKv +aLF +aLF +aLF +aLF +bKv +aLF +aLF +aLF +aOL aaa -anT +anY aaa aaa aaa @@ -134043,48 +130629,48 @@ aaa aaa aaa aaa -anT -aMq -aNx -aOT -aOT -aOT -aOT -aTS -aVk -aOY -aOY -aOY -aOY -aOY -aTT +anY +aKs +aOM +aQp +aQp +aQp +aQp +aVW +aXu +aLK +aLK +aLK +aLK +aLK +aVX aaa aaa aaa -blA -bnu -bpH -brU -aOV +bob +bpM +brY +bum +aQr aaa -aMq -bzm -aOT -aOT -aOT -aOT -bMt -bMt -bNW -bMt -bMt -bMt -bMt -aOT -aOT -bUK -bBb -anT +aKs +bBN +aQp +aQp +aQp +aQp +bKw +bKw +bNS +bKw +bKw +bKw +bKw +aQp +aQp +bYj +bDG +anY aaa aaa aaa @@ -134300,48 +130886,48 @@ aaa aaa aaa aaa -anT -aMq -aNy -aOU -aOY -aOY -aOY -aTT +anY +aKs +aON +aQq +aLK +aLK +aLK +aVX aaa aaa aaa aaa aaa aaa -aTU +aVY aaa aaa -aRy -aRy -bnv -bpI -brV -aRy +aTi +aTi +bpN +brZ +bun +aTi aaa aaa -aTT -aOY -aOY -aOY -aOY -aOY -aOY -bKQ -aOY -aOY -aOY -aOY -aOY -bcQ -aNy -bgn -anT +aVX +aLK +aLK +aLK +aLK +aLK +aLK +bNT +aLK +aLK +aLK +aLK +aLK +aNx +aON +biQ +anY aaa aaa aaa @@ -134557,48 +131143,48 @@ aaa aaa aaa aaa -anT -aMq -aNy -aOV +anY +aKs +aON +aQr aaa aaa aaa -aTU +aVY aaa -aRy -aRy -aRy -aRy -aRy -aRy -aRy -aRy -aRy -blB -bnw -bpJ -brW -aRy -bvt +aTi +aTi +aTi +aTi +aTi +aTi +aTi +aTi +aTi +boc +bpO +bsa +buo +aTi +bxO aaa -aTU +aVY aaa aaa aaa aaa aaa aaa -aTU +aVY aaa aaa aaa aaa aaa -aMq -aNy -bgn -anT +aKs +aON +biQ +anY aaa aaa aaa @@ -134814,48 +131400,48 @@ aaa aaa aaa aaa -anT -aMq -aNy -aOV +anY +aKs +aON +aQr aaa aaa aaa -aRy -aRy -aRy -aTV -aTV -aTV -aRy -aRy -aRy -aRy -bjP -blC -bnx -bpK -bsf -aRy -aRy -aRy -aRy -aRy -aRy -aRy -aRy -aRy -aRy -aRy -bvt -bvt +aTi +aTi +aTi +aVZ +aVZ +aVZ +aTi +aTi +aTi +aTi +bmp +bod +bpP +bsb +bup +aTi +aTi +aTi +aTi +aTi +aTi +aTi +aTi +aTi +aTi +aTi +bxO +bxO aaa aaa aaa -aMq -aNy -bgn -anT +aKs +aON +biQ +anY aaa aaa aaa @@ -135069,52 +131655,52 @@ aaa aaa aaa aaa -anT -anT -anT -aMr -aNy -aOV +anY +anY +anY +aNr +aON +aQr aaa aaa -aRy -aRy -aTV -aTV -aTV -aZQ -aTV -aTV -aTV -aTV -aTV -bjP -blD -bny -bpL -brY -btL -btL -btL -btL -btL -bCD -bEf -bGc -bHC -bJg -aRy -aRy -aRy -aRy +aTi +aTi +aVZ +aVZ +aVZ +bcs +aVZ +aVZ +aVZ +aVZ +aVZ +bmp +boe +bpQ +bsc +buq +bwf +bwf +bwf +bwf +bwf +bFm +bGT +bIW +bKx +bMg +aTi +aTi +aTi +aTi aaa aaa -aMq -bez -bBb -anT -anT -anT +aKs +bhj +bDG +anY +anY +anY aaa aaa aaa @@ -135326,52 +131912,52 @@ aaa aaa aaa aaa -anT +anY aaa -aNw -aSD -aNy -aOV +aLF +aNs +aON +aQr aaa aaa -aRy -aTV -aVl -aWL -aYy -aZR -bbF -bcP -aVl -bgh -bim -bjQ -bjQ -bnz -bpM -brZ -btL -bvu -bGh -bzn -bAU -bCD -bEg -bGd -bGd -bJm -bNX -bMo -bOc -aRy +aTi +aVZ +aXv +aZa +baV +bct +bej +bfB +aXv +biK +bkL +bmq +bmq +bpR +bsd +bur +bwf +bxP +bzL +bBO +bDz +bFm +bGU +bIX +bIX +bMh +bNU +bPw +bRn +aTi aaa aaa -aMq -bez -bAT -aNw +aKs +bhj +bDy +aLF aaa -anT +anY aaa aaa aaa @@ -135583,52 +132169,52 @@ aaa aaa aaa aaa -anT -aMq -bnl -bpn -bpr -aOV +anY +aKs +aLG +aNt +aOO +aQr aaa -aRy -aRy -aTV -aVm -aWM -aWM -aZS -aWM -aWM -aWM -bgi -bin -bjR -brX -bnA -bpN -bsa -btL -bAW -bxn -bzo -bAV -bCD -bEh -bGe -bGd -bKL -bNY -bGd -ceC -aRy -bvt +aTi +aTi +aVZ +aXw +aZb +aZb +bcu +aZb +aZb +aZb +biL +bkM +bmr +bof +bpS +bse +bus +bwf +bxQ +bzM +bBP +bDA +bFm +bGV +bIY +bIX +bMi +bNV +bIX +bRo +aTi +bxO aaa -aMq -chz -bpn -cpO -bgn -anT +aKs +bYk +aNt +cbg +biQ +anY aaa aaa aaa @@ -135840,52 +132426,52 @@ aaa aaa aaa aaa -anT -aMq -bnk -bnn -bpr -aOV +anY +aKs +aLH +aNu +aOO +aQr aaa -aRy -aRy -aTV -aVn -aWN -aTV -bqm -aTV -aTV -beu -aWN -bio -bjR -blF -bnB -bpO -bsb -btM -bvw -bxo -bzp -bJh -bCE -bCE -bCE -bHD -bGd -bGd -bGd -bUL -aRy -bvt +aTi +aTi +aVZ +aXx +aZc +aVZ +bcv +aVZ +aVZ +bhe +aZc +bkN +bmr +bog +bpT +bsf +but +bwg +bxR +bzN +bBQ +bDB +bFn +bFn +bFn +bKy +bIX +bIX +bIX +bRp +aTi +bxO aaa -aMq -chz -cmK -bpr -bgn -anT +aKs +bYk +bZv +aOO +biQ +anY aaa aaa aaa @@ -136097,52 +132683,52 @@ aaa aaa aaa aaa -anT -aMq -aYd -bfS -bps -aOW -aOW -aRz -aSE -aTW -bjS -aWO -aYz -brx -bvf -aTV -byx -bgj -bip -blI -blG -bnC -bpP -bsc -btN -bvx -bxp -bzq -bAX -bCF -bEi -bCF -bHE -bKM -bKO -bMp -bNZ -aRz -bRa -aOW -bTm -chM -ckT -cmX -bgn -anT +anY +aKs +aLI +aNv +aOP +aQs +aQs +aTj +aUx +aWa +aXy +aZd +baW +bcw +bek +aVZ +bhf +biM +bkO +bms +boh +bpU +bsg +buu +bwh +bxS +bzO +bBR +bDC +bFo +bGW +bFo +bKz +bMj +bNW +bPx +bRq +aTj +bUu +aQs +bWN +bYl +bZw +cbh +biQ +anY aaa aaa aaa @@ -136354,52 +132940,52 @@ aaa aaa aaa aaa -anT -aMq -bnk -bnn -bpr -aOV +anY +aKs +aLH +aNu +aOO +aQr aaa -aRy -aSF -aTX -aVp -aWP -aTV -aZV -aTV -aTV -bew -bgk -blE -bjQ -blH -bnD -bpQ -bsd -btL -bvy -bxq -bzr -bAY -bCE -bCE -bCE -bHF -bJk -bJk -bMq -cgy -aRy -bvt +aTi +aUy +aWb +aXz +aZe +aVZ +bcx +aVZ +aVZ +bhg +biN +bkP +bmq +boi +bpV +bsh +buv +bwf +bxT +bzP +bBS +bDD +bFn +bFn +bFn +bKA +bMk +bMk +bPy +bRr +aTi +bxO aaa -aMq -chz -cmK -bpr -bgn -anT +aKs +bYk +bZv +aOO +biQ +anY aaa aaa aaa @@ -136611,52 +133197,52 @@ aaa aaa aaa aaa -anT -aMq -bnm -bpq -bpr -aOV +anY +aKs +aLJ +aNw +aOO +aQr aaa -aRy -aRy -aTV -aVq -aWQ -aYA -aZW -aYA -aYA -bex -bgl -bir -bjQ -bse -bnE -bpR -byM -btL -bvz -bxr -bzs -bJi -bCD -bEj -bGe -bGd -bKP -bOb -bMr -cho -aRy -bvt +aTi +aTi +aVZ +aXA +aZf +baX +bcy +baX +baX +bhh +biO +bkQ +bmq +boj +bpW +bsi +buw +bwf +bxU +bzQ +bBT +bDE +bFm +bGX +bIY +bIX +bMl +bNX +bPz +bRs +aTi +bxO aaa -aMq -chz -bpq -bzv -bgn -anT +aKs +bYk +aNw +bBW +biQ +anY aaa aaa aaa @@ -136868,52 +133454,52 @@ aaa aaa aaa aaa -anT +anY aaa -aOY -bcQ -aNz -aOV +aLK +aNx +aOQ +aQr aaa aaa -aRy -aTV -aVr -aWR -aYB -aZX -bbH -aWR -aVr -bgm -bis -bjQ -bjQ -bnz -bpS -brZ -btL -bvA -bxs -bzt -bBa -bCD -bEg -bGd -bGd -bKN -bOa -bMs -chn -aRy +aTi +aVZ +aXB +aZg +baY +bcz +bel +aZg +aXB +biP +bkR +bmq +bmq +bpR +bsj +bur +bwf +bxV +bzR +bBU +bDF +bFm +bGU +bIX +bIX +bMm +bNY +bPA +bRt +aTi aaa aaa -aMq -bez -aVk -aOY +aKs +bhj +aXu +aLK aaa -anT +anY aaa aaa aaa @@ -137125,52 +133711,52 @@ aaa aaa aaa aaa -anT -anT -anT -aMr -aNz -aOV +anY +anY +anY +aNr +aOQ +aQr aaa aaa -aRy -aRy -aTV -aTV -aTV -aZY -aTV -aTV -aTV -aTV -aTV -bjT -blJ -bnF -bpT -byO -btL -btL -btL -btL -btL -bCD -bEk -bGf -bHG -bJn -aRy -aRy -aRy -aRy +aTi +aTi +aVZ +aVZ +aVZ +bcA +aVZ +aVZ +aVZ +aVZ +aVZ +bmt +bok +bpX +bsk +bux +bwf +bwf +bwf +bwf +bwf +bFm +bGY +bIZ +bKB +bMn +aTi +aTi +aTi +aTi aaa aaa -aMq -bez -bBb -anT -anT -anT +aKs +bhj +bDG +anY +anY +anY aaa aaa aaa @@ -137384,48 +133970,48 @@ aaa aaa aaa aaa -anT -aMq -aNz -aOV +anY +aKs +aOQ +aQr aaa aaa aaa -aRy -aRy -aRy -aTV -aTV -aTV -aRy -aRy -aRy -aRy -bjT -blK -bnG -bpU -bsg -aRy -aRy -aRy -aRy -aRy -aRy -aRy -aRy -aRy -aRy -aRy -bvt -bvt +aTi +aTi +aTi +aVZ +aVZ +aVZ +aTi +aTi +aTi +aTi +bmt +bol +bpY +bsl +buy +aTi +aTi +aTi +aTi +aTi +aTi +aTi +aTi +aTi +aTi +aTi +bxO +bxO aaa aaa aaa -aMq -bez -bgn -anT +aKs +bhj +biQ +anY aaa aaa aaa @@ -137641,48 +134227,48 @@ aaa aaa aaa aaa -anT -aMq -aNz -aOV +anY +aKs +aOQ +aQr aaa aaa aaa -aTU +aVY aaa -aRy -aRy -aRy -aRy -aRy -aRy -aRy -aRy -aRy -blL -bnH -bpV -bsh -aRy -bvt +aTi +aTi +aTi +aTi +aTi +aTi +aTi +aTi +aTi +bom +bpZ +bsm +buz +aTi +bxO aaa -aTU +aVY aaa aaa aaa aaa aaa aaa -aTU +aVY aaa aaa aaa aaa aaa -aMq -bez -bgn -anT +aKs +bhj +biQ +anY aaa aaa aaa @@ -137898,48 +134484,48 @@ aaa aaa aaa aaa -anT -aMq -aNz -aOX -aNw -aNw -aNw -aTY +anY +aKs +aOQ +aQt +aLF +aLF +aLF +aWc aaa aaa aaa aaa aaa aaa -aTU +aVY aaa aaa -aRy -blM -bnI -bpW -bsi -aRy +aTi +bon +bqa +bsn +buA +aTi aaa aaa -aTY -aNw -aNw -aNw -aNw -aNw -aNw -aTY -aNw -aNw -aNw -aNw -aNw -bly -bez -bgn -anT +aWc +aLF +aLF +aLF +aLF +aLF +aLF +aWc +aLF +aLF +aLF +aLF +aLF +boa +bhj +biQ +anY aaa aaa aaa @@ -138155,48 +134741,48 @@ aaa aaa aaa aaa -anT -aMq -aNB -aOT -aOT -aOT -aOT -aTZ -aOX -aNw -aNw -aNw -aNw -aNw -aTY +anY +aKs +aOR +aQp +aQp +aQp +aQp +aWd +aQt +aLF +aLF +aLF +aLF +aLF +aWc aaa aaa -aRy -aRy -aRy -bpX -aRy -aRy +aTi +aTi +aTi +bso +aTi +aTi aaa -aMq -bzu -aOT -aOT -aOT -aOT -aOT -aOT -bKR -bMt -bMt -bMt -bMt -bMt -bMt -bUM -bBb -anT +aKs +bBV +aQp +aQp +aQp +aQp +aQp +aQp +bNZ +bKw +bKw +bKw +bKw +bKw +bKw +bYm +bDG +anY aaa aaa aaa @@ -138412,48 +134998,48 @@ aaa aaa aaa aaa -anT +anY aaa -aNC -aOY -aOY -aOY -aSG -aUa -aOT -aOT -aOT -aOT -aOT -aOT -bey -bgn +aOS +aLK +aLK +aLK +aUz +aWe +aQp +aQp +aQp +aQp +aQp +aQp +bhi +biQ aaa aaa aaa -aMq -bpY -bgn +aKs +bsp +biQ aaa aaa -aMq -bez -aVk -aOY -aOY -aOY -aOY -aOY -aNC -aOY -aOY -aOY -aOY -aOY -aOY -aNC +aKs +bhj +aXu +aLK +aLK +aLK +aLK +aLK +aOS +aLK +aLK +aLK +aLK +aLK +aLK +aOS aaa -anT +anY aaa aaa aaa @@ -138669,48 +135255,48 @@ aaa aaa aaa aaa -anT -anT -anT -anT -anT -anT +anY +anY +anY +anY +anY +anY aaa -aNC -aOY -aOY -aOY -aOY -aOY -bcQ -bez -bgo -aNw -aNw -aNw -aSD -bpZ -bsj -aNw -aNw -bly -bez -bgn -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT +aOS +aLK +aLK +aLK +aLK +aLK +aNx +bhj +biR +aLF +aLF +aLF +aNs +bsq +buB +aLF +aLF +boa +bhj +biQ +anY +anY +anY +anY +anY +anY +anY +anY +anY +anY +anY +anY +anY +anY +anY aaa aaa aaa @@ -138931,29 +135517,29 @@ aaa aaa aaa aaa -anT -anT -anT -anT -anT -anT -anT -anT -aMq -beA -aOT -aOT -aOT -aOT -aOT -bqa -aOT -aOT -aOT -aOT -bzv -bBb -anT +anY +anY +anY +anY +anY +anY +anY +anY +aKs +bhk +aQp +aQp +aQp +aQp +aQp +bsr +aQp +aQp +aQp +aQp +bBW +bDG +anY aaa aaa aaa @@ -139195,22 +135781,22 @@ aaa aaa aaa aaa -anT +anY aaa -aNC -aOY -aOY -aOY -aOY -aOY -aNC -aOY -aOY -aOY -aOY -aNC +aOS +aLK +aLK +aLK +aLK +aLK +aOS +aLK +aLK +aLK +aLK +aOS aaa -anT +anY aaa aaa aaa @@ -139452,22 +136038,22 @@ aaa aaa aaa aaa -anT -anT -aag -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT -anT +anY +anY +aad +anY +anY +anY +anY +anY +anY +anY +anY +anY +anY +anY +anY +anY aaa aaa aaa diff --git a/_maps/cit_map_files/OmegaStation/OmegaStation.dmm b/_maps/cit_map_files/OmegaStation/OmegaStation.dmm index 23d5a7960f..1f23ab98ab 100644 --- a/_maps/cit_map_files/OmegaStation/OmegaStation.dmm +++ b/_maps/cit_map_files/OmegaStation/OmegaStation.dmm @@ -27,7 +27,7 @@ /turf/open/space, /area/space/nearstation) "aah" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall, /area/asteroid/nearstation) "aai" = ( @@ -462,7 +462,7 @@ /turf/open/floor/plating/asteroid, /area/asteroid/nearstation) "aaW" = ( -/obj/item/ore/iron, +/obj/item/stack/ore/iron, /turf/open/floor/plating/asteroid, /area/asteroid/nearstation) "aaX" = ( @@ -821,7 +821,6 @@ icon_state = "1-4" }, /obj/machinery/holopad, -/obj/effect/landmark/lightsout, /turf/open/floor/plasteel/vault, /area/bridge) "abF" = ( @@ -909,7 +908,7 @@ /turf/open/floor/plasteel, /area/maintenance/starboard/fore) "abN" = ( -/obj/structure/sign/vacuum, +/obj/structure/sign/warning/vacuum, /turf/closed/wall, /area/maintenance/starboard) "abO" = ( @@ -920,15 +919,12 @@ /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plasteel, /area/maintenance/starboard) -"abQ" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/supply) "abR" = ( /obj/structure/lattice, /turf/open/space, /area/asteroid/nearstation) "abS" = ( -/obj/item/ore/glass, +/obj/item/stack/ore/glass, /turf/open/floor/plating/astplate, /area/asteroid/nearstation) "abT" = ( @@ -985,7 +981,7 @@ /turf/closed/wall, /area/crew_quarters/heads/captain/private) "abZ" = ( -/obj/structure/sign/vacuum{ +/obj/structure/sign/warning/vacuum{ pixel_y = 32 }, /obj/structure/displaycase/captain{ @@ -1189,7 +1185,7 @@ /obj/machinery/light{ dir = 4 }, -/obj/structure/sign/vacuum{ +/obj/structure/sign/warning/vacuum{ pixel_y = 32 }, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -1267,9 +1263,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -1281,24 +1274,6 @@ }, /turf/open/floor/plasteel, /area/maintenance/starboard) -"acz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"acA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"acC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) "acD" = ( /obj/item/pickaxe/emergency, /turf/open/floor/plating/asteroid, @@ -1306,7 +1281,6 @@ "acE" = ( /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/asteroid/nearstation) @@ -1329,7 +1303,7 @@ /area/asteroid/nearstation) "acI" = ( /obj/structure/dresser, -/obj/structure/sign/vacuum{ +/obj/structure/sign/warning/vacuum{ pixel_y = 32 }, /obj/machinery/camera{ @@ -1694,7 +1668,6 @@ pixel_x = 26 }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg2" }, /area/maintenance/starboard/fore) @@ -1714,35 +1687,28 @@ /area/quartermaster/storage) "adq" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/vacuum, +/obj/structure/sign/warning/vacuum, /turf/open/floor/plating, /area/quartermaster/storage) -"ads" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/supply) "adv" = ( /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating/astplate, /area/asteroid/nearstation) "adw" = ( /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/asteroid/nearstation) "adx" = ( /obj/item/clothing/suit/space/orange, /obj/item/clothing/head/helmet/space/orange, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plating, /area/asteroid/nearstation) "adz" = ( -/obj/structure/sign/vacuum, +/obj/structure/sign/warning/vacuum, /turf/closed/wall, /area/asteroid/nearstation) "adA" = ( @@ -1790,7 +1756,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/fore) @@ -1850,7 +1815,6 @@ dir = 1 }, /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken" }, /area/crew_quarters/heads/captain/private) @@ -1874,7 +1838,7 @@ /obj/structure/cable/white{ icon_state = "2-8" }, -/obj/structure/sign/goldenplaque/captain{ +/obj/structure/sign/plaques/golden/captain{ pixel_x = 32 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -1908,7 +1872,7 @@ /area/ai_monitored/turret_protected/ai) "adR" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_x = 32 }, /obj/structure/cable/white{ @@ -1940,7 +1904,7 @@ }, /area/bridge) "adU" = ( -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_x = -32 }, /obj/structure/cable/white, @@ -2013,7 +1977,7 @@ /obj/machinery/light{ dir = 1 }, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = 32 }, /obj/effect/turf_decal/stripes/line{ @@ -2072,28 +2036,6 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aei" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "cargounload" - }, -/obj/machinery/door/poddoor{ - id = "cargounload"; - name = "supply dock unloading door" - }, -/turf/open/floor/plating, -/area/shuttle/supply) -"aej" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"aek" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) "ael" = ( /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/maintenance{ @@ -2104,7 +2046,6 @@ /area/asteroid/nearstation) "aem" = ( /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg3" }, /area/asteroid/nearstation) @@ -2119,9 +2060,7 @@ /turf/open/floor/plasteel, /area/asteroid/nearstation) "aep" = ( -/turf/open/floor/plating, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg2" }, /area/asteroid/nearstation) @@ -2166,7 +2105,6 @@ icon_state = "0-2" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg3" }, /area/maintenance/fore) @@ -2202,7 +2140,7 @@ /obj/structure/cable/white, /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_x = 32 }, /turf/open/floor/plating, @@ -2455,18 +2393,16 @@ /turf/open/floor/plasteel, /area/quartermaster/storage) "aeZ" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Supply Shuttle Airlock"; - req_access_txt = "31" +/obj/docking_port/stationary{ + dir = 4; + dwidth = 9; + height = 7; + id = "supply_home"; + name = "Cargo Bay"; + width = 20 }, -/turf/open/floor/plating, -/area/shuttle/supply) -"afa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) +/turf/open/space/basic, +/area/space) "afb" = ( /obj/structure/door_assembly/door_assembly_mhatch, /obj/effect/turf_decal/stripes/line{ @@ -2600,7 +2536,6 @@ dir = 8 }, /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken2" }, /area/crew_quarters/heads/captain/private) @@ -2760,7 +2695,6 @@ }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken" }, /area/crew_quarters/heads/hop) @@ -2872,34 +2806,12 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"afK" = ( -/obj/machinery/button/door{ - dir = 2; - id = "cargounload"; - name = "Loading Doors"; - pixel_x = -24; - pixel_y = 8 - }, -/obj/machinery/button/door{ - id = "cargoload"; - name = "Loading Doors"; - pixel_x = -24; - pixel_y = -8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) "afL" = ( /obj/structure/girder/reinforced, /turf/open/floor/plating, /area/asteroid/nearstation) "afM" = ( -/obj/item/ore/iron, +/obj/item/stack/ore/iron, /obj/structure/barricade/wooden, /turf/open/floor/plating/astplate, /area/asteroid/nearstation) @@ -3025,7 +2937,6 @@ "aga" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green, -/obj/item/card/id/captains_spare, /obj/item/toy/figure/captain, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) @@ -3130,7 +3041,7 @@ dir = 4 }, /obj/machinery/recharge_station, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = 32 }, /obj/effect/turf_decal/stripes/line{ @@ -3192,7 +3103,6 @@ dir = 1 }, /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken5" }, /area/crew_quarters/heads/hop) @@ -3204,7 +3114,6 @@ }, /obj/effect/landmark/start/head_of_personnel, /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken6" }, /area/crew_quarters/heads/hop) @@ -3243,7 +3152,6 @@ icon_state = "1-2" }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/starboard/fore) @@ -3304,25 +3212,9 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"agD" = ( -/obj/docking_port/mobile/supply{ - dwidth = 5; - roundstart_move = "supply_away"; - width = 12 - }, -/obj/docking_port/stationary{ - dir = 8; - dwidth = 5; - height = 7; - id = "supply_home"; - name = "Cargo Bay"; - width = 12 - }, -/turf/closed/wall/mineral/titanium, -/area/shuttle/supply) "agE" = ( -/obj/item/ore/silver, -/obj/item/ore/iron, +/obj/item/stack/ore/silver, +/obj/item/stack/ore/iron, /turf/open/floor/plating/astplate, /area/asteroid/nearstation) "agF" = ( @@ -3402,7 +3294,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg2" }, /area/maintenance/fore) @@ -3692,7 +3583,6 @@ icon_state = "1-2" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/starboard/fore) @@ -3793,17 +3683,6 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aht" = ( -/obj/machinery/door/poddoor{ - id = "cargoload"; - name = "supply dock loading door" - }, -/obj/machinery/conveyor{ - dir = 4; - id = "cargoload" - }, -/turf/open/floor/plating, -/area/shuttle/supply) "ahu" = ( /turf/closed/wall/r_wall, /area/asteroid/nearstation) @@ -3955,7 +3834,7 @@ /turf/open/floor/plating, /area/maintenance/fore) "ahH" = ( -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = -32 }, /obj/structure/closet/secure_closet/captains, @@ -4169,22 +4048,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/quartermaster/storage) -"aig" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"aii" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"aij" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) "aik" = ( /obj/structure/barricade/wooden, /turf/open/floor/plating/astplate, @@ -4251,7 +4114,7 @@ pixel_x = 3; pixel_y = -3 }, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = 32 }, /obj/effect/turf_decal/bot, @@ -4260,7 +4123,7 @@ }, /area/security/brig) "aip" = ( -/obj/structure/sign/electricshock, +/obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/security/brig) "aiq" = ( @@ -4472,7 +4335,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/central) "aiG" = ( -/obj/structure/sign/electricshock, +/obj/structure/sign/warning/electricshock, /turf/closed/wall, /area/hallway/primary/central) "aiH" = ( @@ -4555,10 +4418,6 @@ dir = 5 }, /area/quartermaster/storage) -"aiQ" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/shuttle/supply) "aiR" = ( /obj/structure/rack, /obj/item/gun/energy/e_gun/advtaser{ @@ -4845,7 +4704,7 @@ }, /area/hallway/primary/central) "ajq" = ( -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_y = 32 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -4924,7 +4783,7 @@ }, /area/hallway/primary/central) "ajx" = ( -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_y = 32 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -5077,16 +4936,8 @@ dir = 4 }, /area/quartermaster/storage) -"ajN" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/shuttle/engine/heater, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/supply) "ajQ" = ( -/obj/item/ore/iron, +/obj/item/stack/ore/iron, /turf/open/floor/plating/astplate, /area/asteroid/nearstation) "ajR" = ( @@ -5258,7 +5109,6 @@ }, /area/hallway/primary/central) "akd" = ( -/obj/effect/landmark/lightsout, /obj/structure/cable/white{ icon_state = "1-2" }, @@ -5348,7 +5198,7 @@ }, /area/hallway/primary/central) "akk" = ( -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_y = -32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -5531,7 +5381,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/effect/landmark/lightsout, /obj/structure/cable/white{ icon_state = "1-4" }, @@ -5689,7 +5538,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/central) "akI" = ( -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_y = -32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -5756,23 +5605,8 @@ dir = 5 }, /area/quartermaster/storage) -"akQ" = ( -/obj/structure/shuttle/engine/propulsion/burst/left, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/supply) -"akR" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/supply) -"akS" = ( -/obj/structure/shuttle/engine/propulsion/burst/right, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/supply) "akT" = ( -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_x = -32 }, /obj/structure/cable/white{ @@ -5873,7 +5707,7 @@ /turf/closed/wall, /area/security/brig) "alb" = ( -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_x = -32 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -6161,7 +5995,6 @@ /obj/structure/cable/white{ icon_state = "2-4" }, -/obj/effect/landmark/lightsout, /turf/open/floor/plasteel/neutral, /area/quartermaster/storage) "alF" = ( @@ -6181,7 +6014,6 @@ /area/quartermaster/storage) "alG" = ( /obj/effect/decal/cleanable/blood/old, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plating, /area/asteroid/nearstation) "alH" = ( @@ -6262,7 +6094,6 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/lightsout, /turf/open/floor/plasteel/neutral/side{ dir = 4 }, @@ -6493,10 +6324,6 @@ /turf/open/floor/plasteel/neutral/corner, /area/hallway/primary/central) "aml" = ( -/obj/structure/closet/emcloset, -/obj/structure/cable/white{ - icon_state = "1-4" - }, /obj/structure/cable/white{ icon_state = "1-2" }, @@ -6506,12 +6333,8 @@ }, /area/hallway/primary/central) "amm" = ( -/obj/structure/cable/white{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/central) +/turf/open/floor/plasteel/purple, +/area/crew_quarters/cryopod) "amn" = ( /obj/structure/cable/white{ icon_state = "0-4" @@ -6666,13 +6489,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/quartermaster/miningdock) -"amE" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/mining) -"amF" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/mining) "amG" = ( /obj/structure/table, /obj/item/clothing/mask/gas, @@ -6861,7 +6677,7 @@ }, /area/teleporter) "amY" = ( -/obj/structure/sign/electricshock, +/obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/teleporter) "amZ" = ( @@ -6895,7 +6711,6 @@ /turf/open/floor/plasteel/neutral/corner, /area/hallway/primary/central) "and" = ( -/obj/structure/closet/firecloset, /obj/structure/sign/nanotrasen{ pixel_y = -32 }, @@ -6907,10 +6722,6 @@ dir = 8 }, /area/hallway/primary/central) -"ane" = ( -/obj/structure/sign/electricshock, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) "anf" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/turf_decal/stripes/end{ @@ -7020,7 +6831,7 @@ /turf/open/floor/plasteel, /area/quartermaster/storage) "anp" = ( -/obj/structure/sign/nosmoking_1, +/obj/structure/sign/warning/nosmoking/circle, /turf/closed/wall, /area/quartermaster/miningdock) "anq" = ( @@ -7060,41 +6871,9 @@ /area/quartermaster/miningdock) "ant" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/vacuum, +/obj/structure/sign/warning/vacuum, /turf/open/floor/plating, /area/quartermaster/miningdock) -"anu" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/emergency, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"anv" = ( -/obj/machinery/computer/shuttle/mining, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"anw" = ( -/obj/structure/table/reinforced, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) "anx" = ( /obj/structure/grille, /turf/closed/wall/r_wall, @@ -7506,10 +7285,6 @@ input_dir = 4; output_dir = 8 }, -/obj/machinery/door/window/westright{ - name = "ORM Access"; - req_access_txt = "64" - }, /turf/open/floor/plasteel, /area/quartermaster/miningdock) "aoi" = ( @@ -7560,25 +7335,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/miningdock) -"aon" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"aoo" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/shuttle/mining) -"aop" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) "aoq" = ( /turf/open/floor/engine/vacuum, /area/engine/atmos) @@ -7725,7 +7481,6 @@ pixel_x = -32 }, /obj/machinery/light/small, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/freezer, /area/hallway/primary/central) "aoD" = ( @@ -7926,7 +7681,6 @@ icon_state = "4-8" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg2" }, /area/maintenance/starboard/central) @@ -7993,7 +7747,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/effect/landmark/lightsout, /obj/structure/cable/white{ icon_state = "1-2" }, @@ -8157,57 +7910,17 @@ /turf/open/floor/plasteel, /area/quartermaster/miningdock) "app" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Mining Shuttle Airlock"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/mining) -"apr" = ( -/turf/open/floor/plasteel/neutral, -/area/shuttle/mining) -"aps" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"apt" = ( -/obj/docking_port/mobile{ - dir = 8; - dwidth = 3; - height = 5; - id = "mining"; - name = "mining shuttle"; - port_direction = 4; - width = 7 - }, /obj/docking_port/stationary{ - dir = 8; + dir = 4; dwidth = 3; height = 5; id = "mining_home"; name = "mining shuttle bay"; + roundstart_template = /datum/map_template/shuttle/mining/delta; width = 7 }, -/obj/machinery/door/airlock/shuttle{ - name = "Mining Shuttle Airlock"; - req_access_txt = "48" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/mining) +/turf/open/space/basic, +/area/space) "apu" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 2; @@ -8460,7 +8173,7 @@ name = "Station Intercom"; pixel_x = 28 }, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = -32 }, /obj/effect/turf_decal/delivery, @@ -8473,7 +8186,6 @@ dir = 6 }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/port/central) @@ -8587,7 +8299,6 @@ icon_state = "1-2" }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/starboard/central) @@ -8622,7 +8333,7 @@ name = "Station Intercom"; pixel_x = -28 }, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = -32 }, /turf/open/floor/plasteel/vault/side{ @@ -8799,7 +8510,7 @@ /area/quartermaster/miningdock) "aqt" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/pods{ +/obj/structure/sign/warning/pods{ name = "MINING POD" }, /turf/open/floor/plating, @@ -8821,33 +8532,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/miningdock) -"aqw" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"aqx" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"aqy" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) "aqz" = ( /turf/closed/wall/r_wall, /area/engine/atmos) @@ -9095,7 +8779,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/port/central) @@ -9166,7 +8849,6 @@ icon_state = "1-2" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg3" }, /area/maintenance/starboard/central) @@ -9180,7 +8862,10 @@ /obj/structure/extinguisher_cabinet{ pixel_x = -24 }, -/turf/open/floor/plasteel/stairs/left, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8; + heat_capacity = 1e+006 + }, /area/hallway/primary/central) "arj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -9233,113 +8918,6 @@ dir = 6 }, /area/quartermaster/miningdock) -"arn" = ( -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/structure/closet/crate/internals, -/obj/item/pickaxe/emergency, -/obj/item/pickaxe/emergency, -/obj/effect/turf_decal/delivery, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"aro" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/shuttle/mining) -"arp" = ( -/obj/structure/ore_box, -/obj/effect/turf_decal/delivery, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) "arq" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 6 @@ -9361,7 +8939,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/fire{ +/obj/structure/sign/warning/fire{ pixel_y = 32 }, /obj/effect/turf_decal/bot, @@ -9452,7 +9030,7 @@ /obj/machinery/atmospherics/components/unary/thermomachine/heater{ dir = 8 }, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = 32 }, /obj/effect/turf_decal/bot, @@ -9777,7 +9355,6 @@ dir = 4 }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg3" }, /area/maintenance/port/central) @@ -9824,27 +9401,27 @@ /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-21" }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "asf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ icon_state = "1-2" }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "asg" = ( -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "ash" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "asi" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-22" }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "asj" = ( /obj/machinery/vending/cola/random, @@ -9879,7 +9456,6 @@ icon_state = "4-8" }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/starboard/central) @@ -9928,15 +9504,6 @@ }, /turf/open/floor/plasteel, /area/maintenance/starboard) -"asu" = ( -/obj/structure/shuttle/engine/propulsion/burst, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/mining) "asv" = ( /turf/open/floor/engine/n2, /area/engine/atmos) @@ -10031,7 +9598,7 @@ }, /area/engine/atmos) "asI" = ( -/obj/structure/sign/vacuum{ +/obj/structure/sign/warning/vacuum{ pixel_x = -32 }, /turf/open/floor/plating, @@ -10310,7 +9877,6 @@ dir = 9 }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg3" }, /area/maintenance/port/central) @@ -10324,7 +9890,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/port/central) @@ -10412,7 +9977,6 @@ icon_state = "1-2" }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/starboard/central) @@ -10559,7 +10123,6 @@ pixel_x = 32 }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/port/fore) @@ -10581,7 +10144,7 @@ /turf/open/floor/plasteel, /area/security/brig) "atM" = ( -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_x = -32 }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -10790,7 +10353,6 @@ icon_state = "1-2" }, /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken6" }, /area/crew_quarters/theatre) @@ -10825,16 +10387,16 @@ }, /obj/structure/table/wood, /obj/item/kitchen/fork, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aud" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aue" = ( /obj/structure/chair/stool/bar, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "auf" = ( /obj/structure/table/reinforced, @@ -10925,7 +10487,6 @@ icon_state = "1-2" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg2" }, /area/maintenance/starboard/central) @@ -11103,7 +10664,6 @@ dir = 4 }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/port/fore) @@ -11115,10 +10675,8 @@ icon_state = "4-8" }, /obj/effect/decal/cleanable/blood/splatter, -/obj/effect/landmark/revenantspawn, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg2" }, /area/maintenance/port/fore) @@ -11144,7 +10702,6 @@ icon_state = "2-4" }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/port/fore) @@ -11269,7 +10826,7 @@ "auX" = ( /obj/structure/table/reinforced, /obj/item/storage/toolbox/electrical, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = 32 }, /obj/effect/turf_decal/bot, @@ -11277,7 +10834,6 @@ /area/storage/primary) "auY" = ( /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/port/central) @@ -11336,7 +10892,7 @@ /obj/structure/cable/white{ icon_state = "1-2" }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "avg" = ( /obj/structure/table/wood, @@ -11344,7 +10900,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "avh" = ( /obj/structure/chair/stool, @@ -11352,20 +10908,20 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "avi" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "avj" = ( /obj/structure/chair/stool/bar, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "avk" = ( /obj/structure/table/reinforced, @@ -11448,7 +11004,6 @@ icon_state = "1-2" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg3" }, /area/maintenance/starboard/central) @@ -11589,7 +11144,6 @@ dir = 6 }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/port/fore) @@ -11602,7 +11156,6 @@ dir = 4 }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/port/fore) @@ -11654,7 +11207,6 @@ dir = 1 }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg3" }, /area/maintenance/port/fore) @@ -11685,8 +11237,7 @@ /area/maintenance/port/fore) "avP" = ( /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/item/clothing/shoes/jackboots, /obj/item/device/radio, @@ -11877,7 +11428,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken" }, /area/crew_quarters/theatre) @@ -11896,32 +11446,32 @@ /obj/structure/cable/white{ icon_state = "1-2" }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "awl" = ( /obj/structure/table/wood, /obj/item/storage/bag/tray, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "awm" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "awn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "awo" = ( /obj/structure/chair/stool/bar, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "awp" = ( /obj/structure/table/reinforced, @@ -12242,7 +11792,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "awU" = ( /obj/structure/chair/stool, @@ -12253,7 +11803,7 @@ /obj/structure/cable/white{ icon_state = "1-2" }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "awV" = ( /obj/structure/table/wood, @@ -12261,13 +11811,13 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "awW" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "awX" = ( /obj/structure/table/reinforced, @@ -12492,7 +12042,7 @@ /obj/machinery/light{ dir = 1 }, -/obj/structure/sign/atmosplaque{ +/obj/structure/sign/plaques/atmos{ pixel_y = 32 }, /obj/effect/turf_decal/bot, @@ -12549,7 +12099,7 @@ name = "Station Intercom"; pixel_x = 26 }, -/obj/structure/sign/nosmoking_1{ +/obj/structure/sign/warning/nosmoking/circle{ pixel_x = 26; pixel_y = 26 }, @@ -12565,7 +12115,9 @@ /obj/structure/cable/white{ icon_state = "1-2" }, -/turf/open/floor/plasteel/stairs/left, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, /area/hallway/primary/central) "axC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -12691,20 +12243,20 @@ /obj/structure/cable/white{ icon_state = "1-4" }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "axP" = ( /obj/structure/cable/white{ icon_state = "4-8" }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "axQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/white{ icon_state = "4-8" }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "axR" = ( /obj/structure/cable/white{ @@ -12762,18 +12314,6 @@ "axW" = ( /turf/closed/wall, /area/hallway/secondary/exit) -"axX" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) -"axY" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/open/floor/plating, -/area/shuttle/escape) -"axZ" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) "aya" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 4; @@ -13014,13 +12554,6 @@ pixel_x = 32 }, /obj/item/bedsheet/blue, -/obj/machinery/button/door{ - id = "Dorm3"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_y = -25; - specialfunctions = 4 - }, /turf/open/floor/plasteel/grimy, /area/crew_quarters/dorms) "ayB" = ( @@ -13032,13 +12565,6 @@ pixel_x = 32 }, /obj/item/bedsheet/red, -/obj/machinery/button/door{ - id = "Dorm4"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_y = -25; - specialfunctions = 4 - }, /turf/open/floor/carpet, /area/crew_quarters/dorms) "ayE" = ( @@ -13092,24 +12618,24 @@ /obj/structure/cable/white{ icon_state = "1-2" }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "ayK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "ayL" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "ayM" = ( /obj/machinery/holopad, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "ayN" = ( /obj/item/storage/fancy/cigarettes/cigars{ @@ -13273,61 +12799,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/hallway/secondary/exit) -"azc" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/newscaster/security_unit{ - pixel_y = 32 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"azd" = ( -/obj/structure/chair, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"aze" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = 24 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"azf" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/escape) -"azg" = ( -/obj/machinery/computer/emergency_shuttle, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/escape) -"azh" = ( -/obj/machinery/computer/communications, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/escape) -"azi" = ( -/obj/structure/table/reinforced, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/escape) "azj" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, /obj/machinery/atmospherics/components/binary/pump{ @@ -13499,7 +12970,6 @@ "azD" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ - id_tag = "Dorm3"; name = "Cabin" }, /obj/effect/turf_decal/stripes/line{ @@ -13528,7 +12998,6 @@ }, /obj/machinery/light, /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken5" }, /area/crew_quarters/theatre) @@ -13572,7 +13041,7 @@ /obj/structure/cable/white{ icon_state = "1-2" }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "azK" = ( /obj/structure/table/wood, @@ -13580,7 +13049,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "azL" = ( /obj/structure/closet/crate/bin, @@ -13590,7 +13059,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "azM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -13619,14 +13088,12 @@ dir = 4 }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/starboard/central) "azQ" = ( /obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/starboard/central) @@ -13710,59 +13177,6 @@ dir = 4 }, /area/hallway/secondary/exit) -"aAa" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"aAb" = ( -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"aAc" = ( -/obj/machinery/door/airlock/command{ - name = "Emergency Recovery Airlock"; - req_access = null; - req_access_txt = "19" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"aAd" = ( -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/escape) -"aAe" = ( -/obj/structure/chair/comfy/brown{ - color = "#596479"; - dir = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/escape) -"aAf" = ( -/obj/structure/table/reinforced, -/obj/item/storage/fancy/donut_box, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/escape) "aAg" = ( /turf/open/floor/engine/air, /area/engine/atmos) @@ -14012,7 +13426,7 @@ }, /area/crew_quarters/dorms) "aAI" = ( -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = 32 }, /turf/open/floor/plasteel/neutral/corner{ @@ -14068,7 +13482,7 @@ /obj/structure/cable/white{ icon_state = "0-4" }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aAO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -14087,7 +13501,7 @@ /obj/structure/cable/white{ icon_state = "1-4" }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aAP" = ( /obj/item/reagent_containers/food/condiment/saltshaker{ @@ -14099,11 +13513,10 @@ }, /obj/structure/table/wood, /obj/item/kitchen/fork, -/obj/effect/landmark/lightsout, /obj/structure/cable/white{ icon_state = "4-8" }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aAQ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -14112,7 +13525,7 @@ /obj/structure/cable/white{ icon_state = "4-8" }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aAR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -14121,7 +13534,7 @@ /obj/structure/cable/white{ icon_state = "4-8" }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aAS" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -14130,7 +13543,7 @@ /obj/structure/cable/white{ icon_state = "4-8" }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aAT" = ( /obj/machinery/door/airlock/maintenance_hatch{ @@ -14162,7 +13575,6 @@ icon_state = "1-4" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg3" }, /area/maintenance/starboard/central) @@ -14270,54 +13682,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit) -"aBj" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Emergency Shuttle Airlock"; - req_access_txt = "2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/escape) -"aBk" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"aBl" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21"; - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/shuttle/escape) -"aBm" = ( -/obj/structure/chair/comfy/brown{ - color = "#596479"; - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/shuttle/escape) -"aBn" = ( -/obj/machinery/computer/crew{ - dir = 8 - }, -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/shuttle/escape) "aBo" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/light/small{ @@ -14536,7 +13900,6 @@ }, /area/hallway/primary/central) "aBL" = ( -/obj/effect/landmark/lightsout, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -14654,7 +14017,6 @@ /area/crew_quarters/theatre) "aBW" = ( /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken7" }, /area/crew_quarters/theatre) @@ -14688,12 +14050,12 @@ /obj/machinery/light{ dir = 8 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aBZ" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/snacks/cheesiehonkers, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aCa" = ( /obj/machinery/light{ @@ -14702,7 +14064,7 @@ /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-22" }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aCb" = ( /obj/machinery/status_display, @@ -14830,33 +14192,9 @@ /area/hallway/secondary/exit) "aCn" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/vacuum, +/obj/structure/sign/warning/vacuum, /turf/open/floor/plating, /area/hallway/secondary/exit) -"aCo" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Holding Area"; - req_access_txt = "2" - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"aCp" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/escape) -"aCq" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Cockpit"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) "aCr" = ( /obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/on{ dir = 4; @@ -14890,7 +14228,7 @@ dir = 4; name = "Air to Pure" }, -/obj/structure/sign/fire{ +/obj/structure/sign/warning/fire{ pixel_y = -32 }, /obj/effect/turf_decal/bot, @@ -15038,7 +14376,7 @@ id = "atmoslock"; name = "Atmospherics Lockdown Blast door" }, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_x = -32 }, /obj/structure/cable/white{ @@ -15198,7 +14536,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aCV" = ( /obj/structure/table/reinforced, @@ -15227,7 +14565,6 @@ /turf/open/floor/plasteel/vault/side, /area/crew_quarters/kitchen) "aCY" = ( -/obj/structure/closet/secure_closet/freezer/fridge, /obj/machinery/light{ dir = 1 }, @@ -15237,6 +14574,7 @@ name = "Kitchen RC"; pixel_y = 32 }, +/obj/structure/closet/secure_closet/freezer/kitchen, /turf/open/floor/plasteel/vault/side, /area/crew_quarters/kitchen) "aCZ" = ( @@ -15252,7 +14590,7 @@ desc = "Used to grind things up into raw materials and liquids."; pixel_y = 5 }, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = 32 }, /obj/structure/sign/nanotrasen{ @@ -15320,16 +14658,6 @@ /turf/open/floor/plasteel, /area/hallway/secondary/exit) "aDj" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Emergency Shuttle Airlock" - }, -/obj/docking_port/mobile/emergency{ - dheight = 0; - dwidth = 5; - height = 11; - name = "Omega emergency shuttle"; - width = 19 - }, /obj/docking_port/stationary{ dheight = 0; dir = 4; @@ -15340,36 +14668,8 @@ turf_type = /turf/open/space; width = 30 }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/escape) -"aDk" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"aDl" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/shuttle/escape) -"aDm" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21"; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/shuttle/escape) +/turf/open/space/basic, +/area/space) "aDn" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 5 @@ -15393,11 +14693,11 @@ /turf/closed/wall/r_wall, /area/engine/atmos) "aDr" = ( -/obj/structure/sign/nosmoking_2, +/obj/structure/sign/warning/nosmoking, /turf/closed/wall/r_wall, /area/engine/atmos) "aDs" = ( -/obj/structure/sign/fire, +/obj/structure/sign/warning/fire, /turf/closed/wall/r_wall, /area/engine/atmos) "aDt" = ( @@ -15418,7 +14718,7 @@ /turf/open/floor/plasteel, /area/engine/atmos) "aDu" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/engine/atmos) @@ -15519,13 +14819,6 @@ pixel_x = 32 }, /obj/item/bedsheet/brown, -/obj/machinery/button/door{ - id = "Dorm1"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_y = 25; - specialfunctions = 4 - }, /turf/open/floor/wood, /area/crew_quarters/dorms) "aDI" = ( @@ -15534,13 +14827,6 @@ pixel_x = 32 }, /obj/item/bedsheet/black, -/obj/machinery/button/door{ - id = "Dorm2"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_y = 25; - specialfunctions = 4 - }, /turf/open/floor/plasteel/grimy, /area/crew_quarters/dorms) "aDJ" = ( @@ -15573,7 +14859,6 @@ icon_state = "1-4" }, /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken5" }, /area/crew_quarters/theatre) @@ -15625,21 +14910,21 @@ /obj/structure/cable/white{ icon_state = "1-8" }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aDP" = ( /obj/effect/landmark/xmastree, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aDQ" = ( /obj/structure/chair/stool/bar, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aDR" = ( /obj/structure/table/reinforced, @@ -15759,132 +15044,9 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/hallway/secondary/exit) -"aEg" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"aEh" = ( -/turf/open/floor/plasteel/neutral, -/area/shuttle/escape) -"aEi" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"aEj" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/window/shuttle, -/turf/open/floor/grass, -/area/shuttle/escape) -"aEk" = ( -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/structure/closet/crate/internals, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"aEl" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/window/shuttle, -/turf/open/floor/grass, -/area/shuttle/escape) -"aEm" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) "aEn" = ( /obj/machinery/shieldgen, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = 32 }, /obj/item/device/radio/intercom{ @@ -15999,7 +15161,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, -/obj/effect/landmark/lightsout, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/engineering) @@ -16016,7 +15177,7 @@ /area/engine/engineering) "aEA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/nosmoking_2, +/obj/structure/sign/warning/nosmoking, /turf/closed/wall/r_wall, /area/hallway/primary/central) "aEB" = ( @@ -16102,12 +15263,12 @@ /turf/open/floor/plasteel/neutral/corner, /area/hallway/primary/central) "aEK" = ( +/obj/machinery/vending/clothing, /obj/machinery/firealarm{ dir = 8; pixel_x = -24 }, /obj/effect/turf_decal/bot, -/obj/structure/closet/crate/bin, /turf/open/floor/plasteel/vault{ dir = 5 }, @@ -16123,8 +15284,8 @@ }, /area/crew_quarters/dorms) "aEM" = ( +/obj/structure/closet/crate/bin, /obj/effect/turf_decal/bot, -/obj/machinery/vending/clothing, /turf/open/floor/plasteel/vault{ dir = 5 }, @@ -16167,7 +15328,6 @@ pixel_y = -32 }, /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken7" }, /area/crew_quarters/dorms) @@ -16249,12 +15409,12 @@ /obj/structure/cable/white{ icon_state = "1-2" }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aEX" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/snacks/chips, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aEY" = ( /obj/structure/table/reinforced, @@ -16399,18 +15559,6 @@ }, /turf/open/floor/plasteel/neutral, /area/hallway/secondary/exit) -"aFo" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/escape) -"aFp" = ( -/obj/machinery/vending/wallmed{ - name = "Emergency NanoMed"; - req_access_txt = "0"; - use_power = 0 - }, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/escape) "aFq" = ( /obj/machinery/power/emitter, /obj/machinery/light/small, @@ -16694,7 +15842,7 @@ dir = 4; network = list("MINE") }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aFO" = ( /obj/structure/table/wood, @@ -16702,14 +15850,14 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aFP" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aFQ" = ( /obj/structure/table/reinforced, @@ -16768,7 +15916,6 @@ /area/hallway/primary/central) "aFY" = ( /obj/machinery/holopad, -/obj/effect/landmark/lightsout, /obj/structure/cable/white{ icon_state = "1-2" }, @@ -16800,14 +15947,6 @@ }, /turf/open/floor/plating, /area/hallway/secondary/exit) -"aGd" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/pointybush, -/turf/open/floor/grass, -/area/shuttle/escape) "aGe" = ( /turf/closed/wall/r_wall, /area/engine/gravity_generator) @@ -16840,7 +15979,7 @@ /turf/open/floor/plasteel, /area/engine/engineering) "aGi" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -16891,7 +16030,7 @@ /turf/open/floor/plating, /area/engine/engineering) "aGm" = ( -/obj/structure/sign/radiation, +/obj/structure/sign/warning/radiation, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -16915,7 +16054,7 @@ /turf/open/floor/plasteel, /area/engine/engineering) "aGo" = ( -/obj/structure/sign/fire, +/obj/structure/sign/warning/fire, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/engine/engineering) @@ -17062,7 +16201,6 @@ dir = 4 }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/port/central) @@ -17085,7 +16223,6 @@ }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg2" }, /area/maintenance/port/central) @@ -17109,7 +16246,6 @@ icon_state = "4-8" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg3" }, /area/maintenance/port/central) @@ -17121,7 +16257,6 @@ icon_state = "4-8" }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/port/central) @@ -17149,7 +16284,7 @@ /obj/structure/cable/white{ icon_state = "2-8" }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aGO" = ( /obj/item/reagent_containers/food/condiment/saltshaker{ @@ -17164,7 +16299,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aGP" = ( /obj/structure/chair/stool, @@ -17172,7 +16307,7 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aGQ" = ( /obj/machinery/holopad, @@ -17180,7 +16315,7 @@ name = "Station Intercom"; pixel_x = 28 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aGR" = ( /obj/machinery/vending/dinnerware, @@ -17371,7 +16506,7 @@ /obj/structure/cable/white{ icon_state = "4-8" }, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_y = 32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -17491,7 +16626,7 @@ id = "ceblast"; name = "Engineering Lockdown Shutters" }, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_x = -32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -17658,7 +16793,6 @@ icon_state = "2-8" }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/port/central) @@ -17738,13 +16872,13 @@ /turf/closed/wall, /area/hydroponics) "aHR" = ( -/obj/structure/sign/botany{ +/obj/structure/sign/departments/botany{ pixel_x = -32 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aHS" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -17753,12 +16887,12 @@ /obj/structure/cable/white{ icon_state = "1-2" }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aHT" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/drinks/coffee, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aHU" = ( /obj/item/twohanded/required/kirbyplants{ @@ -17767,7 +16901,7 @@ /obj/structure/sign/poster/random{ pixel_x = 32 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aHV" = ( /obj/machinery/status_display, @@ -17815,7 +16949,7 @@ /turf/open/floor/plasteel/neutral, /area/hallway/secondary/exit) "aIb" = ( -/obj/structure/sign/radiation{ +/obj/structure/sign/warning/radiation{ pixel_x = -32 }, /obj/effect/turf_decal/bot_white, @@ -17842,7 +16976,7 @@ /obj/structure/cable/white{ icon_state = "1-2" }, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = -32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -18140,7 +17274,6 @@ icon_state = "1-2" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/port/central) @@ -18374,34 +17507,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/escape, /area/hallway/secondary/exit) -"aJe" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Emergency Shuttle Airlock"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/escape) -"aJf" = ( -/turf/open/floor/plasteel/neutral/side, -/area/shuttle/escape) -"aJg" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21"; - pixel_x = -3; - pixel_y = 3 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/shuttle/escape) "aJh" = ( /obj/machinery/light{ dir = 8 @@ -18484,7 +17589,7 @@ /obj/machinery/power/smes{ charge = 5e+006 }, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_y = 32 }, /obj/effect/turf_decal/bot, @@ -18542,7 +17647,7 @@ /turf/open/floor/plasteel/dark, /area/engine/engineering) "aJt" = ( -/obj/structure/sign/radiation, +/obj/structure/sign/warning/radiation, /turf/closed/wall/r_wall, /area/engine/supermatter) "aJu" = ( @@ -18841,7 +17946,7 @@ /obj/structure/cable/white{ icon_state = "1-2" }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aJX" = ( /obj/machinery/vending/cola/random, @@ -18850,7 +17955,7 @@ }, /area/crew_quarters/bar/atrium) "aJY" = ( -/obj/structure/sign/nosmoking_2, +/obj/structure/sign/warning/nosmoking, /turf/closed/wall, /area/crew_quarters/kitchen) "aJZ" = ( @@ -18932,7 +18037,6 @@ dir = 4 }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/starboard/central) @@ -18968,36 +18072,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit) -"aKm" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Emergency Shuttle Cargo" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"aKn" = ( -/obj/machinery/status_display, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/escape) -"aKo" = ( -/obj/machinery/door/airlock/medical/glass{ - id_tag = null; - name = "Escape Shuttle Infirmary"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) "aKp" = ( /obj/machinery/airalarm{ dir = 4; @@ -19142,7 +18216,7 @@ /turf/open/floor/engine, /area/engine/supermatter) "aKD" = ( -/obj/structure/sign/fire, +/obj/structure/sign/warning/fire, /turf/closed/wall/r_wall, /area/engine/supermatter) "aKE" = ( @@ -19457,7 +18531,7 @@ pixel_x = -32; pixel_y = -32 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aLg" = ( /obj/machinery/vending/snack/random, @@ -19535,72 +18609,6 @@ dir = 5 }, /area/hallway/secondary/exit) -"aLw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"aLx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"aLy" = ( -/obj/structure/closet/crate/medical{ - name = "medical crate" - }, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/device/healthanalyzer{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/lazarus_injector, -/obj/effect/turf_decal/bot, -/mob/living/simple_animal/bot/medbot{ - name = "\improper emergency medibot"; - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"aLz" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/escape) -"aLA" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/obj/machinery/vending/wallmed{ - name = "Emergency NanoMed"; - pixel_x = -26; - req_access_txt = "0"; - use_power = 0 - }, -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) -"aLB" = ( -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) -"aLC" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_x = 26 - }, -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) "aLD" = ( /obj/machinery/power/port_gen/pacman, /obj/effect/turf_decal/stripes/line{ @@ -19984,7 +18992,7 @@ /obj/machinery/light{ dir = 8 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aMu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -19994,7 +19002,7 @@ /obj/structure/cable/white{ icon_state = "2-4" }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "aMx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -20031,7 +19039,6 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, -/obj/effect/landmark/lightsout, /turf/open/floor/plasteel/neutral, /area/hallway/secondary/exit) "aMC" = ( @@ -20039,73 +19046,6 @@ dir = 4 }, /area/hallway/secondary/exit) -"aMD" = ( -/obj/machinery/recharge_station, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"aME" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"aMF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"aMG" = ( -/obj/structure/closet/crate{ - name = "emergency supplies crate" - }, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/toolbox/emergency, -/obj/item/device/flashlight/flare{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/flashlight/flare{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/device/radio, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"aMH" = ( -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) -"aMI" = ( -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/structure/table/reinforced, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 5 - }, -/area/shuttle/escape) "aMJ" = ( /turf/closed/wall/r_wall, /area/tcommsat/server) @@ -20324,7 +19264,7 @@ /area/engine/engineering) "aNg" = ( /obj/structure/reagent_dispensers/fueltank, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = -32 }, /obj/effect/turf_decal/stripes/line{ @@ -20560,7 +19500,6 @@ icon_state = "4-8" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg2" }, /area/maintenance/starboard/central) @@ -20649,93 +19588,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit) -"aNL" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/item/hand_labeler_refill, -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom"; - pixel_y = -26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"aNM" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"aNN" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_y = -1 - }, -/obj/item/storage/toolbox/emergency{ - pixel_x = 3; - pixel_y = -5 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"aNO" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"aNP" = ( -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/item/circular_saw, -/obj/item/retractor{ - pixel_x = 4 - }, -/obj/item/hemostat{ - pixel_x = -4 - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/structure/table/reinforced, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) -"aNQ" = ( -/obj/structure/table/optable, -/obj/item/surgical_drapes, -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) -"aNR" = ( -/obj/item/defibrillator/loaded, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/cmo, -/area/shuttle/escape) -"aNS" = ( -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/shuttle/escape) "aNT" = ( /obj/machinery/announcement_system, /obj/machinery/ai_status_display{ @@ -20886,34 +19738,44 @@ /turf/open/floor/plating, /area/hydroponics) "aOk" = ( -/obj/structure/sign/botany, +/obj/structure/sign/departments/botany, /turf/closed/wall, /area/hydroponics) "aOm" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-21" }, -/turf/open/floor/plasteel/yellowsiding, +/turf/open/floor/plasteel/redyellow/side{ + dir = 9 + }, /area/hallway/primary/central) "aOn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/white{ icon_state = "1-2" }, -/turf/open/floor/plasteel/stairs/left, +/turf/open/floor/plasteel/redyellow/side{ + dir = 1 + }, /area/hallway/primary/central) "aOo" = ( -/turf/open/floor/plasteel/stairs/medium, +/turf/open/floor/plasteel/redyellow/side{ + dir = 1 + }, /area/hallway/primary/central) "aOp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/stairs/right, +/turf/open/floor/plasteel/redyellow/side{ + dir = 1 + }, /area/hallway/primary/central) "aOq" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-22" }, -/turf/open/floor/plasteel/yellowsiding, +/turf/open/floor/plasteel/redyellow/side{ + dir = 5 + }, /area/hallway/primary/central) "aOr" = ( /obj/structure/sign/directions/engineering{ @@ -21100,7 +19962,6 @@ dir = 4 }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/port) @@ -21217,7 +20078,6 @@ /area/hallway/primary/central) "aOU" = ( /obj/machinery/door/firedoor, -/obj/effect/landmark/lightsout, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/white{ icon_state = "4-8" @@ -21650,17 +20510,6 @@ /obj/structure/dresser, /turf/open/floor/wood, /area/maintenance/starboard/aft) -"aPD" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/escape) -"aPE" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/shuttle/engine/heater, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/escape) "aPG" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -21693,7 +20542,7 @@ /turf/open/floor/engine, /area/engine/engineering) "aPK" = ( -/obj/structure/sign/electricshock, +/obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/engine/supermatter) "aPL" = ( @@ -21990,7 +20839,6 @@ /turf/open/floor/plasteel, /area/hallway/primary/central) "aQp" = ( -/obj/effect/landmark/lightsout, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -22074,7 +20922,7 @@ /turf/open/floor/plasteel/neutral/corner, /area/hallway/primary/central) "aQz" = ( -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_y = -32 }, /obj/machinery/light, @@ -22116,7 +20964,6 @@ /obj/structure/chair/office/dark{ dir = 4 }, -/obj/effect/landmark/revenantspawn, /obj/effect/decal/cleanable/blood/old, /turf/open/floor/wood, /area/maintenance/starboard/aft) @@ -22124,15 +20971,9 @@ /obj/effect/landmark/xeno_spawn, /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken" }, /area/maintenance/starboard/aft) -"aQE" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/escape) "aQG" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 6 @@ -22296,7 +21137,7 @@ /turf/open/floor/plasteel, /area/library) "aRa" = ( -/obj/structure/sign/kiddieplaque/library, +/obj/structure/sign/plaques/kiddie/library, /turf/closed/wall, /area/library) "aRb" = ( @@ -22631,7 +21472,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg2" }, /area/maintenance/port) @@ -22657,7 +21497,7 @@ }, /area/library) "aRV" = ( -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = 32 }, /obj/machinery/vending/games, @@ -22731,7 +21571,6 @@ /area/library) "aSe" = ( /obj/structure/bodycontainer/morgue, -/obj/effect/landmark/revenantspawn, /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plasteel/vault/side{ dir = 4 @@ -22745,7 +21584,7 @@ /turf/open/floor/plasteel/vault, /area/medical/morgue) "aSg" = ( -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = 32 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -22943,7 +21782,6 @@ icon_state = "1-2" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg2" }, /area/maintenance/starboard) @@ -22988,7 +21826,6 @@ "aSJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken2" }, /area/maintenance/starboard/aft) @@ -23044,7 +21881,7 @@ "aSR" = ( /obj/structure/table/reinforced, /obj/item/tank/internals/plasma, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = -32 }, /obj/effect/turf_decal/bot, @@ -23468,7 +22305,6 @@ icon_state = "4-8" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/starboard/aft) @@ -23480,7 +22316,6 @@ icon_state = "4-8" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg3" }, /area/maintenance/starboard) @@ -23493,7 +22328,6 @@ }, /obj/effect/landmark/blobstart, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/starboard/aft) @@ -23505,7 +22339,6 @@ icon_state = "2-8" }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/starboard/aft) @@ -23525,7 +22358,6 @@ "aTV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken7" }, /area/maintenance/starboard/aft) @@ -23617,7 +22449,6 @@ icon_state = "4-8" }, /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken5" }, /area/library) @@ -23652,7 +22483,6 @@ /area/library) "aUk" = ( /obj/structure/bodycontainer/morgue, -/obj/effect/landmark/revenantspawn, /obj/item/device/radio/intercom{ name = "Station Intercom"; pixel_x = -26 @@ -23869,7 +22699,6 @@ icon_state = "1-2" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg3" }, /area/maintenance/starboard/aft) @@ -23897,7 +22726,6 @@ }, /obj/effect/landmark/xeno_spawn, /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken5" }, /area/maintenance/starboard/aft) @@ -24016,7 +22844,6 @@ /area/library) "aVc" = ( /obj/structure/bodycontainer/morgue, -/obj/effect/landmark/revenantspawn, /obj/machinery/light{ dir = 8 }, @@ -24295,7 +23122,6 @@ dir = 4 }, /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken" }, /area/maintenance/starboard/aft) @@ -24329,7 +23155,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/port) @@ -24742,7 +23567,6 @@ /area/library) "aWH" = ( /obj/structure/bodycontainer/morgue, -/obj/effect/landmark/revenantspawn, /obj/machinery/power/apc{ dir = 2; name = "Morgue APC"; @@ -24820,7 +23644,7 @@ /area/medical/chemistry) "aWO" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/nosmoking_1{ +/obj/structure/sign/warning/nosmoking/circle{ pixel_x = 32 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -24894,7 +23718,7 @@ /turf/open/floor/plating, /area/science/lab) "aWW" = ( -/obj/structure/sign/nosmoking_1, +/obj/structure/sign/warning/nosmoking/circle, /turf/closed/wall, /area/science/lab) "aWX" = ( @@ -24956,7 +23780,6 @@ icon_state = "1-2" }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/starboard) @@ -25207,7 +24030,6 @@ /obj/structure/cable/white{ icon_state = "1-4" }, -/obj/effect/landmark/lightsout, /turf/open/floor/plasteel/whitepurple/corner{ dir = 1 }, @@ -25397,7 +24219,7 @@ /area/medical/medbay/zone3) "aXR" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/bluecross_2, +/obj/structure/sign/departments/medbay/alt, /turf/open/floor/plating, /area/medical/medbay/zone3) "aXS" = ( @@ -25720,7 +24542,6 @@ pixel_y = 24 }, /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken6" }, /area/library) @@ -25753,7 +24574,6 @@ dir = 6 }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg3" }, /area/maintenance/port) @@ -25765,7 +24585,6 @@ dir = 4 }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/port) @@ -25965,7 +24784,7 @@ /turf/open/floor/plasteel/neutral, /area/hallway/primary/central) "aYZ" = ( -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = 32 }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -26114,7 +24933,6 @@ pixel_y = -26 }, /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken" }, /area/library) @@ -26282,7 +25100,6 @@ /obj/structure/cable/white{ icon_state = "2-4" }, -/obj/effect/landmark/lightsout, /turf/open/floor/plasteel/blue, /area/medical/medbay/zone3) "aZK" = ( @@ -26542,7 +25359,6 @@ icon_state = "1-2" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/starboard) @@ -26679,8 +25495,8 @@ /area/medical/medbay/zone3) "baw" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/bluecross_2, -/obj/structure/sign/nosmoking_1{ +/obj/structure/sign/departments/medbay/alt, +/obj/structure/sign/warning/nosmoking/circle{ pixel_y = -28 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -27031,7 +25847,6 @@ }, /obj/effect/landmark/blobstart, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/port) @@ -27063,7 +25878,6 @@ }, /area/maintenance/port) "bbm" = ( -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/bar, /area/maintenance/port) "bbn" = ( @@ -27355,9 +26169,7 @@ /turf/open/floor/plating, /area/maintenance/starboard/aft) "bbQ" = ( -/obj/machinery/vending/kink, /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken5" }, /area/maintenance/port) @@ -27366,7 +26178,6 @@ /area/maintenance/port) "bbS" = ( /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken6" }, /area/maintenance/port) @@ -27436,7 +26247,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/port) @@ -27532,7 +26342,7 @@ name = "Medbay Desk"; req_access_txt = "5" }, -/obj/structure/sign/nosmoking_1{ +/obj/structure/sign/warning/nosmoking/circle{ pixel_x = 32 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -27713,7 +26523,6 @@ /area/maintenance/port) "bcI" = ( /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken2" }, /area/maintenance/port) @@ -27750,14 +26559,11 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = 32 }, /turf/open/floor/plasteel/bar, /area/maintenance/port) -"bcP" = ( -/turf/open/floor/plasteel/bar, -/area/maintenance/port) "bcR" = ( /obj/structure/table/wood, /obj/item/device/instrument/guitar, @@ -28173,24 +26979,19 @@ /area/maintenance/port) "bdE" = ( /obj/structure/chair/stool/bar, -/obj/effect/landmark/revenantspawn, /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken" }, /area/maintenance/port) "bdF" = ( /obj/structure/chair/stool/bar, /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken5" }, /area/maintenance/port) "bdG" = ( /obj/structure/chair/stool/bar, -/obj/effect/landmark/revenantspawn, /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken2" }, /area/maintenance/port) @@ -28235,7 +27036,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/vault{ dir = 5 }, @@ -28497,7 +27297,7 @@ /turf/open/floor/circuit/green, /area/science/robotics/mechbay) "bei" = ( -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = -32 }, /turf/open/floor/mech_bay_recharge_floor, @@ -28563,7 +27363,7 @@ /obj/item/device/mmi, /obj/item/device/mmi, /obj/item/device/mmi, -/obj/structure/sign/bluecross_2{ +/obj/structure/sign/departments/medbay/alt{ pixel_y = -32 }, /obj/machinery/light, @@ -28597,7 +27397,7 @@ pixel_y = 16 }, /obj/item/circular_saw, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = -32 }, /obj/structure/mirror{ @@ -28743,7 +27543,7 @@ /turf/open/floor/plasteel, /area/maintenance/port) "beG" = ( -/obj/structure/sign/bluecross_2, +/obj/structure/sign/departments/medbay/alt, /turf/closed/wall, /area/medical/medbay/zone3) "beH" = ( @@ -28891,7 +27691,6 @@ }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/port) @@ -28945,7 +27744,6 @@ dir = 4 }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg3" }, /area/maintenance/port) @@ -29048,7 +27846,6 @@ icon_state = "1-4" }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/starboard) @@ -29079,7 +27876,6 @@ icon_state = "4-8" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg2" }, /area/maintenance/starboard/aft) @@ -29126,7 +27922,6 @@ }, /obj/effect/decal/remains/human, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/chapel/main) @@ -29212,7 +28007,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/landmark/blobstart, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/port) @@ -29233,7 +28027,6 @@ dir = 4 }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/port) @@ -29340,7 +28133,7 @@ name = "Xenobiology Lab"; req_access_txt = "47" }, -/obj/structure/sign/xenobio{ +/obj/structure/sign/departments/xenobio{ pixel_x = 32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -29462,7 +28255,7 @@ /area/chapel/main) "bgb" = ( /obj/structure/bookcase, -/obj/structure/sign/kiddieplaque/badger{ +/obj/structure/sign/plaques/kiddie/badger{ pixel_y = 32 }, /obj/machinery/light/small{ @@ -29517,13 +28310,6 @@ heat_capacity = 1e+006 }, /area/hallway/primary/central) -"bgh" = ( -/obj/effect/landmark/lightsout, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side, -/area/hallway/primary/central) "bgl" = ( /obj/machinery/vending/cola/random, /obj/machinery/newscaster{ @@ -29994,10 +28780,6 @@ "bhg" = ( /turf/open/floor/circuit/green, /area/science/xenobiology) -"bhh" = ( -/obj/effect/landmark/revenantspawn, -/turf/open/floor/circuit/green, -/area/science/xenobiology) "bhi" = ( /obj/machinery/light{ dir = 4 @@ -30012,7 +28794,7 @@ pixel_x = -12; pixel_y = 2 }, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = -32 }, /turf/open/floor/plating, @@ -30032,7 +28814,7 @@ dir = 4; pixel_x = 11 }, -/obj/structure/sign/botany{ +/obj/structure/sign/departments/botany{ pixel_x = 32 }, /turf/open/floor/plating, @@ -30414,7 +29196,7 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/structure/sign/kiddieplaque/badger{ +/obj/structure/sign/plaques/kiddie/badger{ pixel_y = 32 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -30669,7 +29451,7 @@ }, /area/hallway/secondary/entry) "biB" = ( -/obj/structure/sign/biohazard, +/obj/structure/sign/warning/biohazard, /turf/closed/wall/r_wall, /area/science/xenobiology) "biC" = ( @@ -30698,7 +29480,7 @@ /turf/open/floor/plasteel, /area/science/xenobiology) "biE" = ( -/obj/structure/sign/xenobio, +/obj/structure/sign/departments/xenobio, /turf/closed/wall/r_wall, /area/science/xenobiology) "biF" = ( @@ -31273,18 +30055,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bjN" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/shuttle/arrival) -"bjO" = ( -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/arrival) "bjP" = ( /obj/structure/table/reinforced, /obj/item/storage/box/beakers{ @@ -31414,16 +30184,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bjW" = ( -/obj/structure/window/reinforced, -/obj/structure/shuttle/engine/heater{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/shuttle/arrival) "bjX" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/sign/directions/engineering{ @@ -31435,130 +30195,9 @@ /area/hallway/secondary/entry) "bjY" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/vacuum, +/obj/structure/sign/warning/vacuum, /turf/open/floor/plating, /area/hallway/secondary/entry) -"bjZ" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/arrival) -"bka" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/arrival) -"bkb" = ( -/obj/structure/window/shuttle, -/obj/structure/grille, -/turf/open/floor/plating, -/area/shuttle/arrival) -"bkc" = ( -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen/double{ - pixel_x = 3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/structure/closet/crate/internals, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"bkd" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"bke" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/emergency, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"bkf" = ( -/obj/structure/table/reinforced, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"bkg" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/arrival) "bki" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, @@ -31594,66 +30233,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bkm" = ( -/obj/machinery/door/airlock/shuttle{ - name = "Arrival Shuttle Airlock"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/shuttle/arrival) -"bkn" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/shuttle/arrival) -"bko" = ( -/turf/open/floor/plasteel/neutral, -/area/shuttle/arrival) -"bkp" = ( -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/shuttle/arrival) -"bkq" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21"; - pixel_x = -3; - pixel_y = 3 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/shuttle/arrival) -"bkr" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"bks" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21"; - pixel_x = -3; - pixel_y = 3 - }, -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/shuttle/arrival) "bkt" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-22" @@ -31672,28 +30251,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bkv" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"bkw" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"bkx" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/window/shuttle, -/turf/open/floor/grass, -/area/shuttle/arrival) "bky" = ( /obj/structure/chair{ dir = 4 @@ -31719,14 +30276,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bkD" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/window/shuttle, -/turf/open/floor/grass, -/area/shuttle/arrival) "bkE" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-21"; @@ -31736,87 +30285,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bkF" = ( -/obj/machinery/vending/wallmed{ - name = "Emergency NanoMed"; - req_access_txt = "0"; - use_power = 0 - }, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/arrival) -"bkG" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, -/area/shuttle/arrival) -"bkH" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21"; - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8; - heat_capacity = 1e+006 - }, -/area/shuttle/arrival) -"bkI" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/toy/figure/assistant, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"bkJ" = ( -/obj/structure/table/reinforced, -/obj/item/folder, -/obj/item/storage/pill_bottle/dice, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"bkK" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21"; - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/shuttle/arrival) -"bkM" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"bkN" = ( -/obj/structure/closet/wardrobe/black, -/turf/open/floor/plasteel/neutral/side, -/area/shuttle/arrival) -"bkO" = ( -/obj/structure/closet/wardrobe/grey, -/turf/open/floor/plasteel/blue/corner, -/area/shuttle/arrival) -"bkP" = ( -/turf/open/floor/plasteel/blue/side, -/area/shuttle/arrival) -"bkQ" = ( -/obj/structure/closet/wardrobe/yellow, -/turf/open/floor/plasteel/blue/corner{ - dir = 8 - }, -/area/shuttle/arrival) -"bkR" = ( -/obj/structure/table/reinforced, -/obj/item/storage/briefcase{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/shuttle/arrival) "bkS" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -31826,27 +30294,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bkT" = ( -/obj/machinery/status_display, -/turf/closed/wall/mineral/titanium, -/area/shuttle/arrival) -"bkU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/machinery/door/airlock/shuttle{ - name = "Arrival Shuttle Airlock"; - req_access_txt = "0" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/arrival) -"bkV" = ( -/obj/machinery/ai_status_display, -/turf/closed/wall/mineral/titanium, -/area/shuttle/arrival) "bkW" = ( /obj/machinery/status_display{ pixel_x = -32 @@ -31871,28 +30318,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bkY" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 8 - }, -/area/shuttle/arrival) -"bkZ" = ( -/obj/structure/chair/office/dark, -/turf/open/floor/plasteel/blue/side{ - dir = 1 - }, -/area/shuttle/arrival) -"bla" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 4 - }, -/area/shuttle/arrival) "blb" = ( /obj/structure/closet/firecloset, /obj/effect/turf_decal/delivery, @@ -31903,18 +30328,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bld" = ( -/obj/structure/frame/computer{ - dir = 1 - }, -/turf/open/floor/plasteel/blue, -/area/shuttle/arrival) -"ble" = ( -/obj/structure/frame/computer{ - dir = 1 - }, -/turf/open/floor/plasteel/blue/side, -/area/shuttle/arrival) "blf" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 @@ -31952,7 +30365,7 @@ dir = 8; network = list("SS13") }, -/turf/open/floor/plasteel/stairs/right, +/turf/open/floor/plasteel/neutral/corner, /area/hallway/primary/central) "bli" = ( /obj/structure/closet/firecloset, @@ -31977,7 +30390,7 @@ c_tag = "Central Diner 4"; dir = 1 }, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "blk" = ( /obj/machinery/camera{ @@ -32630,23 +31043,17 @@ /turf/open/floor/plating, /area/maintenance/starboard/aft) "btj" = ( -/obj/docking_port/mobile/arrivals{ - dir = 2; - dwidth = 4; - height = 17; - name = "omega arrivals shuttle"; - width = 9 - }, /obj/docking_port/stationary{ dir = 2; dwidth = 4; height = 17; id = "arrivals_stationary"; name = "omega arrivals"; + roundstart_template = /datum/map_template/shuttle/arrival/delta; width = 9 }, -/turf/closed/wall/mineral/plastitanium, -/area/shuttle/arrival) +/turf/open/space/basic, +/area/space) "btk" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 4; @@ -32673,37 +31080,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"buy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"buz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/supply) -"buA" = ( -/obj/machinery/requests_console{ - department = "Arrival shuttle"; - name = "Arrivals Shuttle console" - }, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/arrival) -"buB" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral, -/area/shuttle/arrival) "buC" = ( /turf/open/floor/plasteel/grimy, /area/tcommsat/server) @@ -32782,7 +31158,7 @@ /turf/open/floor/circuit/green/telecomms, /area/tcommsat/server) "buP" = ( -/obj/machinery/message_server, +/obj/machinery/telecomms/message_server, /turf/open/floor/circuit/green/telecomms, /area/tcommsat/server) "buQ" = ( @@ -32864,111 +31240,7 @@ /obj/item/pickaxe/emergency, /turf/open/floor/plating/asteroid/airless, /area/asteroid/nearstation) -"bvO" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/shuttle/escape) -"bvP" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"bvQ" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) -"bvR" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/neutral/side, -/area/shuttle/escape) -"bvS" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/transport) -"bvT" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/transport) -"bvW" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/pod/dark, -/area/shuttle/transport) -"bwb" = ( -/obj/structure/shuttle/engine/propulsion/left{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/shuttle/transport) -"bwc" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/shuttle/transport) -"bwf" = ( -/obj/structure/chair, -/turf/open/floor/pod/dark, -/area/shuttle/transport) -"bwh" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/pod/light, -/area/shuttle/transport) -"bwi" = ( -/turf/open/floor/pod/light, -/area/shuttle/transport) -"bwo" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/shuttle/transport) -"bwq" = ( -/obj/machinery/light/small, -/turf/open/floor/pod/light, -/area/shuttle/transport) -"bwr" = ( -/obj/machinery/door/airlock/titanium, -/turf/open/floor/pod/light, -/area/shuttle/transport) -"bwv" = ( -/obj/machinery/computer/shuttle/ferry/request{ - dir = 8 - }, -/turf/open/floor/pod/dark, -/area/shuttle/transport) "bwz" = ( -/obj/machinery/door/airlock/titanium, -/obj/docking_port/mobile{ - dir = 8; - dwidth = 2; - height = 13; - id = "ferry"; - name = "ferry shuttle"; - port_direction = 1; - preferred_direction = 4; - roundstart_move = "ferry_away"; - width = 5 - }, /obj/docking_port/stationary{ dir = 8; dwidth = 2; @@ -32978,32 +31250,8 @@ turf_type = /turf/open/space; width = 5 }, -/turf/open/floor/pod/light, -/area/shuttle/transport) -"bwB" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/plating/airless, -/area/shuttle/transport) -"bwE" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/pod/dark, -/area/shuttle/transport) -"bwI" = ( -/obj/machinery/light, -/turf/open/floor/pod/light, -/area/shuttle/transport) -"bwQ" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/pod/light, -/area/shuttle/transport) +/turf/open/space/basic, +/area/space) "bwV" = ( /obj/structure/cable/white{ icon_state = "1-2" @@ -33179,7 +31427,6 @@ }, /obj/effect/landmark/event_spawn, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/starboard/central) @@ -33207,7 +31454,7 @@ dir = 4 }, /obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "bxH" = ( /obj/effect/landmark/event_spawn, @@ -33235,7 +31482,7 @@ /area/crew_quarters/dorms) "bxL" = ( /obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/bar, +/turf/open/floor/plasteel/redyellow, /area/crew_quarters/bar/atrium) "bxM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -33310,7 +31557,6 @@ }, /obj/effect/landmark/event_spawn, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/starboard/aft) @@ -33331,7 +31577,7 @@ /turf/closed/wall/rust, /area/maintenance/fore) "byf" = ( -/obj/structure/sign/vacuum, +/obj/structure/sign/warning/vacuum, /turf/closed/wall, /area/maintenance/starboard/fore) "byg" = ( @@ -33347,7 +31593,6 @@ dir = 4 }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/starboard/fore) @@ -33396,10 +31641,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"byn" = ( -/obj/structure/closet/wardrobe/grey, -/turf/open/floor/plasteel/neutral, -/area/shuttle/arrival) "byo" = ( /turf/closed/wall, /area/security/checkpoint) @@ -33414,6 +31655,31 @@ /obj/structure/sign/nanotrasen, /turf/closed/wall, /area/security/checkpoint) +"hwc" = ( +/turf/closed/wall, +/area/crew_quarters/cryopod) +"iCO" = ( +/obj/machinery/cryopod, +/turf/open/floor/plasteel/purple, +/area/crew_quarters/cryopod) +"puH" = ( +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/medical/cryo"; + dir = 1; + name = "Cryogenics APC"; + pixel_y = -24 + }, +/turf/open/floor/plasteel/purple, +/area/crew_quarters/cryopod) +"rQZ" = ( +/obj/machinery/computer/cryopod{ + pixel_x = 25 + }, +/turf/open/floor/plasteel/purple, +/area/crew_quarters/cryopod) "sws" = ( /obj/docking_port/stationary{ dheight = 1; @@ -33467,7 +31733,7 @@ }, /area/bridge) "swF" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall/rust, /area/asteroid/nearstation) "swG" = ( @@ -33555,13 +31821,11 @@ icon_state = "4-8" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/starboard/central) "sAY" = ( /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/starboard) @@ -33608,7 +31872,7 @@ /turf/open/floor/plasteel, /area/maintenance/starboard) "sBW" = ( -/obj/structure/sign/vacuum, +/obj/structure/sign/warning/vacuum, /turf/closed/wall/rust, /area/maintenance/starboard) "sCr" = ( @@ -33617,7 +31881,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg2" }, /area/maintenance/port/central) @@ -33630,8 +31893,7 @@ /area/maintenance/starboard) "sCQ" = ( /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; @@ -33752,7 +32014,7 @@ /turf/open/floor/plasteel/vault, /area/maintenance/starboard) "sEQ" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall, /area/maintenance/starboard) "sFn" = ( @@ -33814,7 +32076,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/port/central) @@ -33924,7 +32185,6 @@ dir = 6 }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/starboard) @@ -33960,7 +32220,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg3" }, /area/maintenance/port/central) @@ -33979,7 +32238,6 @@ }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/starboard) @@ -33991,7 +32249,6 @@ dir = 4 }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg3" }, /area/maintenance/starboard) @@ -34168,12 +32425,11 @@ icon_state = "1-2" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/starboard/central) "sIN" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall/rust, /area/maintenance/starboard) "sIO" = ( @@ -34196,7 +32452,6 @@ "sIT" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/starboard) @@ -34238,7 +32493,6 @@ "sJc" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/starboard) @@ -34275,7 +32529,6 @@ dir = 4 }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/starboard) @@ -34330,7 +32583,6 @@ icon_state = "2-8" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/starboard/central) @@ -34416,7 +32668,6 @@ icon_state = "1-2" }, /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken7" }, /area/library) @@ -34444,7 +32695,6 @@ "sKd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken" }, /area/library) @@ -34453,7 +32703,6 @@ dir = 4 }, /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken2" }, /area/library) @@ -34527,7 +32776,6 @@ /area/science/robotics/lab) "sKW" = ( /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/port) @@ -34565,7 +32813,7 @@ /turf/closed/wall/rust, /area/hallway/secondary/entry) "sLw" = ( -/obj/structure/sign/electricshock, +/obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall/rust, /area/ai_monitored/turret_protected/ai) "sLx" = ( @@ -34606,11 +32854,11 @@ /turf/open/floor/plasteel/vault/side, /area/ai_monitored/turret_protected/ai) "sLA" = ( -/obj/structure/sign/electricshock, +/obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai) "sLB" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai) "sLC" = ( @@ -34648,7 +32896,7 @@ /turf/open/floor/circuit/green, /area/ai_monitored/turret_protected/ai) "sLI" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall/rust, /area/ai_monitored/turret_protected/ai) "sLJ" = ( @@ -35099,7 +33347,7 @@ /obj/structure/cable/yellow{ icon_state = "0-2" }, -/obj/structure/sign/electricshock{ +/obj/structure/sign/warning/electricshock{ pixel_y = 32 }, /obj/effect/turf_decal/stripes/line{ @@ -35118,7 +33366,7 @@ }, /area/ai_monitored/turret_protected/aisat_interior) "sMU" = ( -/obj/structure/sign/vacuum, +/obj/structure/sign/warning/vacuum, /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/aisat_interior) "sMV" = ( @@ -35165,7 +33413,7 @@ }, /area/ai_monitored/turret_protected/aisat_interior) "sMY" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -35209,7 +33457,7 @@ }, /area/ai_monitored/turret_protected/aisat_interior) "sNc" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -35426,7 +33674,7 @@ }, /area/ai_monitored/turret_protected/aisat_interior) "sNx" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall, /area/ai_monitored/turret_protected/aisat_interior) "sNy" = ( @@ -35567,7 +33815,7 @@ /turf/open/floor/plating, /area/ai_monitored/turret_protected/aisat_interior) "sNQ" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/aisat_interior) "sNS" = ( @@ -35621,7 +33869,7 @@ /turf/open/space/basic, /area/space/nearstation) "sOk" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall, /area/space/nearstation) "sOr" = ( @@ -35785,7 +34033,6 @@ icon_state = "1-2" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg2" }, /area/maintenance/starboard/aft) @@ -35819,7 +34066,6 @@ icon_state = "1-2" }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/starboard/aft) @@ -35846,7 +34092,6 @@ icon_state = "1-2" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/starboard/aft) @@ -35858,7 +34103,6 @@ icon_state = "4-8" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg3" }, /area/maintenance/starboard/aft) @@ -35870,59 +34114,16 @@ icon_state = "4-8" }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/starboard/aft) "sPY" = ( /turf/open/floor/plating, /area/maintenance/starboard/aft) -"sPZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/stairs/right, -/area/hallway/primary/central) -"sQa" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - id_tag = "Dorm4"; - name = "Cabin" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"sQb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - id_tag = "Dorm1"; - name = "Cabin" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"sQc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - id_tag = "Dorm2"; - name = "Cabin" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) +"sXe" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/cryopod) (1,1,1) = {" aaa @@ -71293,7 +69494,7 @@ aaa aaa aaa aaa -bwb +aaa aaa aaa aaa @@ -71527,9 +69728,9 @@ aZz baq bbl bbY -bcP +bbm bdM -bcP +bbm sKE bfv bfS @@ -71549,9 +69750,9 @@ aaa aaa aaa aaa -bwb -bwo -bwb +aaa +aaa +aaa aaa aaa aaa @@ -71751,7 +69952,7 @@ agF auP avU anH -sPZ +axC axC axC aAC @@ -71784,9 +69985,9 @@ aZA bar bbm bbZ -bcP -bcP -bcP +bbm +bbm +bbm baj bfu bfu @@ -71806,9 +70007,9 @@ aaa aaa aaa aaa -bwc -bwi -bwB +aaa +aaa +aaa aaa aaa aaa @@ -72063,9 +70264,9 @@ aaa aaa aaa aaa -bvS -bwq -bvS +aaa +aaa +aaa aaa aaa aaa @@ -72319,11 +70520,11 @@ aaa aaa aaa aaa -bvS -bvS -bwr -bvS -bvS +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -72576,11 +70777,11 @@ aaa aaa aaa aaa -bvT -bwf -bwi -bwE -bvT +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -72833,11 +71034,11 @@ aaa aaa aaa aaa -bvS -bwf -bwi -bwE -bvS +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -73090,11 +71291,11 @@ aaa aaa aaa aaa -bvS -bwh -bwi -bwi -bvS +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -73347,11 +71548,11 @@ aaa aaa aaa aaa -bvW -bwi -bwv -bwi -bwQ +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -73555,7 +71756,7 @@ ayz azD aAH aBQ -sQb +azD aDG aEO sDl @@ -73604,11 +71805,11 @@ aaa aaa aaa aaa -bvS -bwi -bwi -bwI -bvS +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -73861,11 +72062,11 @@ aaa aaa aaa aaa -bvS -bwf -bwi -bwE -bvS +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -74118,11 +72319,11 @@ aaa aaa aaa aaa -bvT -bwf -bwi -bwE -bvT +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -74323,10 +72524,10 @@ apI awQ axJ ayB -sQa +azD aAH aBS -sQc +azD ayz aEQ sDl @@ -74375,11 +72576,11 @@ aaa aaa aaa aaa -bvS -bvT +aaa +aaa bwz -bvT -bvS +aaa +aaa aaa aaa aaa @@ -76680,19 +74881,19 @@ bgV aae aaa aaa -bjO -bjZ -bka -bkm -bka -bkb -bkb -bkb -bkb -bkG -bkm -bka -bka +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -76936,20 +75137,20 @@ biv bgU aae aaa -bjN -bjO -bka -bkc -bkn -bkq -bkv -bkv -bkv -bkv -bkH -bkn -bkM -bka +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -77193,23 +75394,23 @@ bxY bgU aaa aaa -bjN -bjW -bkb -bkd -bko -bko -bko -bko -bko -bko -bko -bko -bkN -bka -bka -bkb -bka +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -77450,23 +75651,23 @@ bix bgU aaa aaa -bjN -bjW -bkb -bke -bko -bko -bkw -bkw -bkw -bkw -bkI -bko -bkO -bkT -bkY -bld -bkb +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -77700,7 +75901,7 @@ bed beI bff bfL -bgh +aYc bgU bhI blv @@ -77708,22 +75909,22 @@ bgU aaa aaa btj -bjO -bjZ -bkf -bko -bkr -buA -bkx -bkD -bkx -bkF -buB -bkP -bkU -bkZ -ble -bkb +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -77964,23 +76165,23 @@ bix bgU aaa aaa -bjN -bjW -bkb -bkg -bko -bko -bkv -bkv -bkv -bkv -bkJ -bko -bkQ -bkV -bla -bld -bkb +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -78221,23 +76422,23 @@ biw bgU aaa aaa -bjN -bjW -bkb -bkd -bko -bko -bko -bko -bko -bko -bko -bko -byn -bka -bka -bkb -bka +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -78478,20 +76679,20 @@ biy bgU aae aaa -bjN -bjO -bka -bkc -bkp -bks -bkw -bkw -bkw -bkw -bkK -bkp -bkR -bka +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -78679,8 +76880,8 @@ ajx akA alt amm -amm -abt +puH +hwc aoT apZ ara @@ -78736,19 +76937,19 @@ bgT aae aaa aaa -bjO -bjZ -bka -bkb -bka -bkb -bkb -bkb -bkb -bkG -bkb -bka -bka +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -78935,9 +77136,9 @@ abq ajy akB alk -aae -aae -anQ +amm +amm +sXe aoU aqa arg @@ -79192,9 +77393,9 @@ aiC ajz akC alk -aae -aae -anQ +iCO +rQZ +sXe aoV aqb arh @@ -79450,7 +77651,7 @@ ajA akq alu amn -ane +alu alu syT alu @@ -82070,7 +80271,7 @@ aZl sPI bfP bgm -bhh +bhg bgm sKZ bjd @@ -84576,17 +82777,17 @@ aaa aaa aaa aaa -abQ -abQ -abQ -aei +aaa +aaa +aaa +aaa aeZ -abQ -aeZ -aht -abQ -abQ -abQ +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa amC @@ -84833,18 +83034,18 @@ aaa aaa aaa aaa -abQ -acz -afa -afa -afa -afK -afa -afa -aig -abQ -abQ -akQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa amC amC @@ -85090,18 +83291,18 @@ aaa aaa aaa aaa -abQ -acA -ads -aej -ads -ads -ads -ads -aii -aiQ -ajN -akR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aae amD @@ -85347,18 +83548,18 @@ aaa aaa aaa aaa -abQ -buy -ads -ads -ads -ads -ads -ads -aii -aiQ -ajN -akR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aae ant @@ -85604,18 +83805,18 @@ aaa aaa aaa aaa -abQ -acA -ads -ads -ads -ads -ads -ads -aii -aiQ -ajN -akR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa amD @@ -85861,26 +84062,26 @@ aaa aaa aaa aaa -abQ -acC -aek -aek -aek -buz -aek -aek -aij -abQ -abQ -akS aaa -amE -amE -amF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa app -amF -amE -amE +aaa +aaa +aaa aaa aaa aaa @@ -86118,26 +84319,26 @@ aaa aaa aaa aaa -abQ -abQ -abQ -abQ -abQ -abQ -agD -abQ -abQ -abQ -abQ aaa aaa -amE -anu -aon -aon -aqw -arn -amE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -86388,13 +84589,13 @@ aaa aaa aaa aaa -amF -anv -aoo -apr -aqx -aro -asu +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -86645,13 +84846,13 @@ aaa aaa aaa aaa -amE -anw -aop -aps -aqy -arp -amE +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -86902,13 +85103,13 @@ aaa aaa aaa aaa -amE -amE -amF -apt -amF -amE -amE +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -87428,24 +85629,24 @@ aaa aaa aaa aaa -axX -axX -axX -aBj -axZ +aaa +aaa +aaa +aaa +aaa aDj -axX -axY -axY -axY -axX -aJe -axZ -aJe -axX -axX -aLz -aPD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -87685,25 +85886,25 @@ aaa aaa aaa aaa -axX -azc -aAa -aAb -axY -aDk -aEg -aEm -aEm -aEm -aEg -aDk -axY -aDk -aMD -aNL -axX -aPD -aQE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -87942,25 +86143,25 @@ aaa aaa aaa aaa -axY -azd -aAb -aAb -aCo -aDl -aEh -aEh -aEh -aEh -aEh -aJf -aKm -aLw -aME -aNM -axY -aPE -aQE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -88199,25 +86400,25 @@ aaa aaa aaa aaa -axY -azd -aAb -aAb -axY -aDl -aEi -bvP -aEi -aEi -aEi -aJf -aKm -aLx -aMF -aNN -axY -aPE -aQE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -88456,25 +86657,25 @@ aaa aaa aaa aaa -axX -aze -aAb -aBk -axY -aDl -aEj -aFo -aEl -aFp -aEj -aJf -axY -aLy -aMG -aNO -axX -aPE -aQE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -88713,25 +86914,25 @@ aaa aaa aaa aaa -axZ -axY -aAc -axY -aCp -bvO -aEk -aEj -aGd -aEl -aEk -bvR -aKn -aLz -axY -aLz -aLz -aPD -aPD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -88970,25 +87171,25 @@ aaa aaa aaa aaa -axX -azf -aAd -aBl -axY -aDl -aEl -aFp -aEj -aFo -aEl -aJf -axY -aLA -aMH -aNP -axX -aPE -aQE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -89227,25 +87428,25 @@ aaa aaa aaa aaa -axY -azg -aAe -aAd -aCq -aDl -aEm -bvQ -aEm -aEm -aEm -aJf -aKo -aLB -aLB -aNQ -axY -aPE -aQE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -89484,25 +87685,25 @@ aaa aaa aaa aaa -axY -azh -aAd -aBm -axY -aDl -aEh -aEh -aEh -aEh -aEh -aJf -aKo -aLB -aLB -aNR -axY -aPE -aQE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -89741,25 +87942,25 @@ aaa aaa aaa aaa -axY -azi -aAf -aBn -axX -aDm -aEi -aEi -aEi -aEi -aEi -aJg -axY -aLC -aMI -aNS -axX -aPD -aQE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -89998,24 +88199,24 @@ aaa aaa aaa aaa -axX -axY -axY -axX -axZ -axX -axY -axY -axY -axY -axY -axX -axZ -axX -axX -axX -aLz -aPD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa diff --git a/_maps/cit_map_files/OmegaStation/job_changes.dm b/_maps/cit_map_files/OmegaStation/job_changes.dm new file mode 100644 index 0000000000..bef766da7b --- /dev/null +++ b/_maps/cit_map_files/OmegaStation/job_changes.dm @@ -0,0 +1,168 @@ + +//custom access for some jobs. pasted together from ministation. + +#define JOB_MODIFICATION_MAP_NAME "OmegaStation" + +/datum/job/New() + ..() + MAP_JOB_CHECK + supervisors = "the captain and the head of personnel" + +/datum/outfit/job/New() + ..() + MAP_JOB_CHECK + box = /obj/item/storage/box/survival/radio + +/datum/job/assistant // Here so assistant appears on the top of the select job list. + +//Command + +/datum/job/captain/New() + ..() + MAP_JOB_CHECK + supervisors = "Nanotrasen and Central Command" + +/datum/job/hop/New() + ..() + MAP_JOB_CHECK + supervisors = "the captain and Central Command" + +/datum/job/hop/get_access() + MAP_JOB_CHECK_BASE + return get_all_accesses() + +//Security + +/datum/job/officer/New() + ..() + MAP_JOB_CHECK + total_positions = 3 + spawn_positions = 3 + access = list(ACCESS_SECURITY, ACCESS_SEC_DOORS, ACCESS_BRIG, ACCESS_ARMORY, ACCESS_COURT, ACCESS_MAINT_TUNNELS, ACCESS_MORGUE, ACCESS_WEAPONS, ACCESS_FORENSICS_LOCKERS) + minimal_access = list(ACCESS_SECURITY, ACCESS_SEC_DOORS, ACCESS_BRIG, ACCESS_ARMORY, ACCESS_COURT, ACCESS_MAINT_TUNNELS, ACCESS_MORGUE, ACCESS_WEAPONS, ACCESS_FORENSICS_LOCKERS) + +/datum/outfit/job/officer/New() + ..() + MAP_JOB_CHECK + box = /obj/item/storage/box/security/radio + +/datum/job/detective/New() + ..() + MAP_JOB_CHECK + access = list(ACCESS_SECURITY, ACCESS_SEC_DOORS, ACCESS_BRIG, ACCESS_ARMORY, ACCESS_COURT, ACCESS_MAINT_TUNNELS, ACCESS_MORGUE, ACCESS_WEAPONS, ACCESS_FORENSICS_LOCKERS) + minimal_access = list(ACCESS_SECURITY, ACCESS_SEC_DOORS, ACCESS_BRIG, ACCESS_ARMORY, ACCESS_COURT, ACCESS_MAINT_TUNNELS, ACCESS_MORGUE, ACCESS_WEAPONS, ACCESS_FORENSICS_LOCKERS) + +/datum/outfit/job/detective/New() + ..() + MAP_JOB_CHECK + box = /obj/item/storage/box/security/radio + +//Medbay + +/datum/job/doctor/New() + ..() + MAP_JOB_CHECK + selection_color = "#ffffff" + total_positions = 3 + spawn_positions = 3 + access = list(ACCESS_MEDICAL, ACCESS_MORGUE, ACCESS_SURGERY, ACCESS_CHEMISTRY, ACCESS_VIROLOGY, ACCESS_GENETICS) + minimal_access = list(ACCESS_MEDICAL, ACCESS_MORGUE, ACCESS_SURGERY, ACCESS_CHEMISTRY, ACCESS_VIROLOGY, ACCESS_GENETICS) + +//Engineering + +/datum/job/engineer/New() + ..() + MAP_JOB_CHECK + total_positions = 2 + spawn_positions = 2 + access = list(ACCESS_EVA, ACCESS_ENGINE, ACCESS_ENGINE_EQUIP, ACCESS_TECH_STORAGE, ACCESS_MAINT_TUNNELS, ACCESS_EXTERNAL_AIRLOCKS, ACCESS_CONSTRUCTION, ACCESS_ATMOSPHERICS, ACCESS_TCOMSAT) + minimal_access = list(ACCESS_EVA, ACCESS_ENGINE, ACCESS_ENGINE_EQUIP, ACCESS_TECH_STORAGE, ACCESS_MAINT_TUNNELS, ACCESS_EXTERNAL_AIRLOCKS, ACCESS_CONSTRUCTION, ACCESS_ATMOSPHERICS, ACCESS_TCOMSAT) + +/datum/outfit/job/engineer/New() + ..() + MAP_JOB_CHECK + box = /obj/item/storage/box/engineer/radio + +/datum/job/atmos/New() + ..() + MAP_JOB_CHECK + total_positions = 2 + spawn_positions = 2 + +//Science + +/datum/job/scientist/New() + ..() + MAP_JOB_CHECK + total_positions = 3 + spawn_positions = 3 + access = list(ACCESS_ROBOTICS, ACCESS_TOX, ACCESS_TOX_STORAGE, ACCESS_RESEARCH, ACCESS_XENOBIOLOGY, ACCESS_MINERAL_STOREROOM, ACCESS_TECH_STORAGE) + minimal_access = list(ACCESS_ROBOTICS, ACCESS_TOX, ACCESS_TOX_STORAGE, ACCESS_RESEARCH, ACCESS_XENOBIOLOGY, ACCESS_MINERAL_STOREROOM, ACCESS_TECH_STORAGE) + +//Cargo + +/datum/job/cargo_tech/New() + ..() + MAP_JOB_CHECK + total_positions = 2 + spawn_positions = 2 + access = list(ACCESS_MAINT_TUNNELS, ACCESS_MAILSORTING, ACCESS_CARGO, ACCESS_CARGO_BOT, ACCESS_QM, ACCESS_MINING, ACCESS_MINING_STATION, ACCESS_MINERAL_STOREROOM) + minimal_access = list(ACCESS_MAINT_TUNNELS, ACCESS_MAILSORTING, ACCESS_CARGO, ACCESS_CARGO_BOT, ACCESS_QM, ACCESS_MINING, ACCESS_MINING_STATION, ACCESS_MINERAL_STOREROOM) + +/datum/job/mining/New() + ..() + MAP_JOB_CHECK + total_positions = 2 + spawn_positions = 2 + access = list(ACCESS_MAINT_TUNNELS, ACCESS_MAILSORTING, ACCESS_CARGO, ACCESS_CARGO_BOT, ACCESS_QM, ACCESS_MINING, ACCESS_MINING_STATION, ACCESS_MINERAL_STOREROOM) + minimal_access = list(ACCESS_MAINT_TUNNELS, ACCESS_MAILSORTING, ACCESS_CARGO, ACCESS_CARGO_BOT, ACCESS_QM, ACCESS_MINING, ACCESS_MINING_STATION, ACCESS_MINERAL_STOREROOM) + +/datum/outfit/job/mining/New() + ..() + box = /obj/item/storage/box/engineer/radio + +//Service + +/datum/job/bartender/New() + ..() + MAP_JOB_CHECK + access = list(ACCESS_HYDROPONICS, ACCESS_BAR, ACCESS_KITCHEN, ACCESS_MORGUE, ACCESS_WEAPONS) + minimal_access = list(ACCESS_HYDROPONICS, ACCESS_BAR, ACCESS_KITCHEN, ACCESS_MORGUE, ACCESS_WEAPONS) + +/datum/job/cook/New() + ..() + MAP_JOB_CHECK + access = list(ACCESS_HYDROPONICS, ACCESS_BAR, ACCESS_KITCHEN, ACCESS_MORGUE, ACCESS_WEAPONS) + minimal_access = list(ACCESS_HYDROPONICS, ACCESS_BAR, ACCESS_KITCHEN, ACCESS_MORGUE, ACCESS_WEAPONS) + +/datum/job/hydro/New() + ..() + MAP_JOB_CHECK + access = list(ACCESS_HYDROPONICS, ACCESS_BAR, ACCESS_KITCHEN, ACCESS_MORGUE, ACCESS_MAINT_TUNNELS) + minimal_access = list(ACCESS_HYDROPONICS, ACCESS_BAR, ACCESS_KITCHEN, ACCESS_MORGUE, ACCESS_MAINT_TUNNELS) + // they get maint access because of all the hydro content in maint + +/datum/job/janitor/New() + ..() + MAP_JOB_CHECK + access = list(ACCESS_JANITOR, ACCESS_HYDROPONICS, ACCESS_BAR, ACCESS_KITCHEN, ACCESS_MORGUE, ACCESS_MAINT_TUNNELS) + minimal_access = list(ACCESS_JANITOR, ACCESS_HYDROPONICS, ACCESS_BAR, ACCESS_KITCHEN, ACCESS_MORGUE, ACCESS_MAINT_TUNNELS) + + +//Civilian + +/datum/job/clown/New() + ..() + MAP_JOB_CHECK + supervisors = "nobody but yourself" //Honk + +MAP_REMOVE_JOB(hos) +MAP_REMOVE_JOB(chief_engineer) +MAP_REMOVE_JOB(qm) +MAP_REMOVE_JOB(cmo) +MAP_REMOVE_JOB(geneticist) +MAP_REMOVE_JOB(virologist) +MAP_REMOVE_JOB(rd) +MAP_REMOVE_JOB(warden) +MAP_REMOVE_JOB(lawyer) +MAP_REMOVE_JOB(chemist) diff --git a/_maps/cit_map_files/PubbyStation/PubbyStation.dmm b/_maps/cit_map_files/PubbyStation/PubbyStation.dmm index 7b5d548f70..4e866e4ec2 100644 --- a/_maps/cit_map_files/PubbyStation/PubbyStation.dmm +++ b/_maps/cit_map_files/PubbyStation/PubbyStation.dmm @@ -2,19 +2,6 @@ "aaa" = ( /turf/open/space/basic, /area/space) -"aaT" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate_n"; - name = "north of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space/nearstation) "aby" = ( /obj/structure/lattice, /obj/structure/grille, @@ -109,7 +96,7 @@ /obj/structure/cable/yellow{ icon_state = "2-4" }, -/obj/effect/landmark/tripai, +/obj/effect/landmark/start/ai/secondary, /obj/item/device/radio/intercom{ anyai = 1; broadcasting = 0; @@ -158,7 +145,7 @@ areastring = "/area/ai_monitored/turret_protected/ai"; pixel_y = 24 }, -/obj/effect/landmark/tripai, +/obj/effect/landmark/start/ai/secondary, /obj/item/device/radio/intercom{ anyai = 1; broadcasting = 0; @@ -1473,9 +1460,6 @@ /turf/open/floor/plating, /area/ai_monitored/turret_protected/AIsatextAS) "afC" = ( -/obj/machinery/light{ - dir = 8 - }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -1779,7 +1763,6 @@ /area/security/execution/transfer) "agw" = ( /obj/structure/bed, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/dark, /area/security/execution/transfer) "agx" = ( @@ -1837,18 +1820,10 @@ /obj/machinery/light/small{ dir = 8 }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_x = 32 }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_x = -32 }, /turf/open/floor/plating, @@ -2003,7 +1978,6 @@ /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "executionfireblast"; - layer = 2.9; name = "blast door" }, /obj/machinery/door/firedoor, @@ -2014,7 +1988,6 @@ /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "executionfireblast"; - layer = 2.9; name = "blast door" }, /obj/machinery/door/firedoor, @@ -2023,7 +1996,6 @@ "agV" = ( /obj/machinery/door/poddoor/preopen{ id = "executionfireblast"; - layer = 2.9; name = "blast door" }, /obj/machinery/atmospherics/pipe/simple/general/hidden, @@ -3007,7 +2979,7 @@ dir = 4; light_color = "#e8eaff" }, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_x = 32 }, /turf/open/floor/plasteel/dark, @@ -3042,7 +3014,7 @@ /area/security/main) "ajn" = ( /obj/structure/table, -/obj/structure/sign/goldenplaque{ +/obj/structure/sign/plaques/golden{ pixel_y = 32 }, /obj/machinery/light{ @@ -3100,7 +3072,6 @@ /area/maintenance/department/crew_quarters/dorms) "aju" = ( /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg3" }, /area/maintenance/department/crew_quarters/dorms) @@ -3148,7 +3119,7 @@ /turf/open/space, /area/space/nearstation) "ajB" = ( -/obj/machinery/vending/kink, +/obj/item/storage/box/mousetraps, /turf/open/floor/plating, /area/maintenance/department/security/brig) "ajC" = ( @@ -3370,7 +3341,7 @@ "akb" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, -/obj/structure/sign/atmosplaque{ +/obj/structure/sign/plaques/atmos{ desc = "An embossed piece of paper from the University of Nanotrasen at Portpoint."; icon_state = "kiddieplaque"; name = "\improper 'Diploma' frame"; @@ -3536,7 +3507,6 @@ /area/maintenance/department/security/brig) "aks" = ( /obj/machinery/light/small, -/obj/item/storage/box/mousetraps, /turf/open/floor/plating, /area/maintenance/department/security/brig) "akt" = ( @@ -3577,7 +3547,6 @@ /area/maintenance/department/security/brig) "akx" = ( /obj/structure/bodycontainer/crematorium, -/obj/effect/landmark/revenantspawn, /obj/item/device/radio/intercom{ dir = 0; name = "Station Intercom (General)"; @@ -3705,7 +3674,6 @@ c_tag = "Brig Evidence Room"; dir = 8 }, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/red/side{ dir = 4 }, @@ -4122,7 +4090,6 @@ /area/space/nearstation) "alP" = ( /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/department/crew_quarters/dorms) @@ -4188,7 +4155,6 @@ dir = 1; layer = 2.9 }, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/dark, /area/security/brig) "ama" = ( @@ -4504,7 +4470,6 @@ /area/space/nearstation) "amF" = ( /turf/open/floor/wood{ - broken = 1; icon_state = "wood-broken" }, /area/maintenance/department/crew_quarters/dorms) @@ -5529,11 +5494,7 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_x = 32; pixel_y = -32 }, @@ -5716,23 +5677,10 @@ }, /turf/open/floor/plating, /area/maintenance/department/security/brig) -"apA" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/security/brig) "apB" = ( /obj/structure/girder, /turf/open/floor/plating, /area/maintenance/department/security/brig) -"apC" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/labor) -"apD" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/labor) "apE" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -5849,11 +5797,7 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_x = 32 }, /turf/open/floor/plating, @@ -5980,27 +5924,6 @@ /obj/item/clothing/under/color/red, /turf/open/floor/plating, /area/maintenance/department/security/brig) -"aqj" = ( -/obj/machinery/computer/shuttle/labor{ - dir = 4 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -31 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/labor) -"aqk" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/labor) -"aql" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/restraints/handcuffs, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/labor) "aqm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -6315,7 +6238,8 @@ launch_status = 0; name = "monastery shuttle"; port_direction = 2; - width = 5 + width = 5; + timid = 0 }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/pod_1) @@ -6356,34 +6280,6 @@ /obj/item/clothing/head/cone, /turf/open/floor/plating, /area/maintenance/department/security/brig) -"are" = ( -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/labor) -"arf" = ( -/obj/machinery/button/flasher{ - id = "gulagshuttleflasher"; - name = "Flash Control"; - pixel_y = -26; - req_access_txt = "1" - }, -/obj/machinery/light, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/labor) -"arg" = ( -/obj/machinery/mineral/labor_claim_console{ - machinedir = 2; - pixel_x = 30; - pixel_y = 30 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/labor) -"arh" = ( -/obj/machinery/door/airlock/titanium{ - name = "Labor Shuttle Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/labor) "ari" = ( /obj/machinery/door/airlock/external{ name = "Labor Camp Shuttle Airlock"; @@ -6715,7 +6611,7 @@ network = list("SS13") }, /obj/structure/table, -/obj/structure/sign/biohazard{ +/obj/structure/sign/warning/biohazard{ pixel_x = -32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -6772,7 +6668,7 @@ pixel_y = 4 }, /obj/item/device/radio/off, -/obj/structure/sign/biohazard{ +/obj/structure/sign/warning/biohazard{ pixel_x = 32 }, /obj/item/device/radio/off, @@ -6787,7 +6683,6 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/department/crew_quarters/dorms) @@ -6909,20 +6804,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/security/brig) -"ass" = ( -/obj/machinery/door/airlock/titanium{ - name = "Labor Shuttle Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/dark, -/area/shuttle/labor) -"ast" = ( -/obj/machinery/mineral/stacking_machine/laborstacker{ - input_dir = 2; - output_dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/shuttle/labor) "asu" = ( /obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ dir = 8 @@ -7182,7 +7063,6 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/effect/landmark/revenantspawn, /turf/open/floor/circuit/green{ luminosity = 2 }, @@ -7307,11 +7187,7 @@ /obj/machinery/light/small{ dir = 4 }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_x = 32 }, /obj/structure/closet/emcloset/anchored, @@ -7328,8 +7204,7 @@ /area/crew_quarters/fitness/recreation) "ato" = ( /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; @@ -7347,22 +7222,6 @@ "atq" = ( /turf/open/floor/circuit/green, /area/maintenance/department/security/brig) -"atr" = ( -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/labor) -"ats" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/labor) -"att" = ( -/obj/machinery/mineral/labor_claim_console{ - machinedir = 1; - pixel_x = 30 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/labor) "atu" = ( /turf/open/space, /area/security/brig) @@ -7523,7 +7382,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall, /area/bridge) "atM" = ( @@ -7540,7 +7399,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall, /area/bridge) "atO" = ( @@ -7663,7 +7522,7 @@ /obj/item/ammo_box/a357, /obj/item/tank/internals/plasma/full, /obj/item/disk/nuclear/fake, -/obj/item/ore/diamond, +/obj/item/stack/ore/diamond, /obj/item/gun/energy/disabler, /turf/open/floor/plasteel/vault{ dir = 4 @@ -7731,7 +7590,7 @@ /area/crew_quarters/dorms) "aul" = ( /obj/machinery/computer/shuttle/monastery_shuttle, -/obj/structure/sign/pods{ +/obj/structure/sign/warning/pods{ pixel_y = 32 }, /turf/open/floor/plasteel/dark, @@ -7799,22 +7658,6 @@ /obj/structure/cable, /turf/open/floor/plasteel, /area/maintenance/department/security/brig) -"auv" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/labor) -"auw" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/flasher{ - id = "gulagshuttleflasher"; - pixel_x = 25 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/labor) "aux" = ( /obj/item/device/radio/intercom{ desc = "Talk through this. It looks like it has been modified to not broadcast."; @@ -8001,11 +7844,7 @@ /area/bridge) "auU" = ( /obj/structure/closet/emcloset/anchored, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_x = -32 }, /obj/machinery/light/small{ @@ -8023,7 +7862,7 @@ /turf/closed/wall/r_wall, /area/ai_monitored/nuke_storage) "auX" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -8042,7 +7881,7 @@ /turf/open/floor/plasteel/vault, /area/ai_monitored/nuke_storage) "auZ" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/ai_monitored/nuke_storage) "ava" = ( @@ -8069,7 +7908,7 @@ /turf/open/floor/plasteel, /area/gateway) "avc" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/gateway) "avd" = ( @@ -8095,7 +7934,7 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; icon_state = "monkey_painting"; name = "Mr. Deempisi portrait"; @@ -8191,34 +8030,18 @@ }, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) -"avo" = ( -/obj/structure/closet/crate, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/labor) "avp" = ( -/obj/machinery/door/airlock/titanium{ - id_tag = "prisonshuttle"; - name = "Labor Shuttle Airlock" - }, -/obj/docking_port/mobile{ - dir = 8; - dwidth = 2; - height = 5; - id = "laborcamp"; - name = "labor camp shuttle"; - port_direction = 4; - width = 9 - }, /obj/docking_port/stationary{ dir = 8; dwidth = 2; height = 5; id = "laborcamp_home"; name = "fore bay 1"; + roundstart_template = /datum/map_template/shuttle/labour/box; width = 9 }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/labor) +/turf/open/space/basic, +/area/space) "avq" = ( /obj/machinery/door/airlock/external{ name = "Labor Camp Shuttle Airlock" @@ -8372,7 +8195,6 @@ }, /obj/item/soap/deluxe, /obj/item/bikehorn/rubberducky, -/obj/effect/landmark/revenantspawn, /obj/structure/curtain, /turf/open/floor/plasteel/freezer, /area/crew_quarters/heads/captain) @@ -8771,14 +8593,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/security/brig) -"awG" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plating, -/area/shuttle/labor) "awH" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ @@ -9168,10 +8982,6 @@ "axC" = ( /turf/closed/wall, /area/maintenance/solars/port) -"axD" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/floor/plating, -/area/shuttle/labor) "axE" = ( /obj/machinery/door/poddoor/preopen{ id = "prison release"; @@ -9205,7 +9015,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/fore) "axJ" = ( -/obj/structure/sign/security{ +/obj/structure/sign/departments/security{ pixel_y = 32 }, /turf/open/floor/plasteel, @@ -9284,7 +9094,6 @@ /area/crew_quarters/heads/captain) "axU" = ( /obj/machinery/computer/card, -/obj/item/card/id/captains_spare, /obj/item/device/radio/intercom{ dir = 0; name = "Station Intercom (General)"; @@ -9416,7 +9225,7 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; icon_state = "monkey_painting"; name = "Mr. Deempisi portrait"; @@ -9526,11 +9335,7 @@ /area/solar/port) "ayz" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_x = -32 }, /turf/open/floor/plating, @@ -9580,11 +9385,7 @@ }, /area/hallway/primary/fore) "ayF" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /turf/open/floor/plasteel, @@ -10137,7 +9938,6 @@ icon_state = "4-8" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/department/security/brig) @@ -10518,12 +10318,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/solars/port) -"aAZ" = ( -/turf/open/floor/plating{ - broken = 1; - icon_state = "platingdmg3" - }, -/area/maintenance/department/security/brig) "aBa" = ( /turf/open/floor/plating{ icon_state = "panelscorched" @@ -10534,7 +10328,6 @@ icon_state = "1-2" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/department/security/brig) @@ -10845,7 +10638,7 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; icon_state = "monkey_painting"; name = "Mr. Deempisi portrait"; @@ -10966,7 +10759,6 @@ "aCd" = ( /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg3" }, /area/maintenance/department/security/brig) @@ -11498,7 +11290,7 @@ /area/crew_quarters/dorms) "aDi" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/sign/restroom{ +/obj/structure/sign/departments/restroom{ pixel_y = -32 }, /turf/open/floor/plasteel/white/corner, @@ -11759,7 +11551,7 @@ /obj/machinery/porta_turret/ai{ dir = 8 }, -/obj/structure/sign/kiddieplaque{ +/obj/structure/sign/plaques/kiddie{ pixel_x = 32 }, /turf/open/floor/plasteel/darkblue/side{ @@ -12394,11 +12186,7 @@ /turf/open/floor/plating, /area/maintenance/department/cargo) "aFg" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /turf/open/floor/plating, @@ -12422,7 +12210,6 @@ /area/maintenance/department/cargo) "aFk" = ( /obj/structure/bodycontainer/morgue, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/dark, /area/security/detectives_office) "aFl" = ( @@ -12527,7 +12314,6 @@ "aFA" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "hop"; - layer = 2.9; name = "Privacy Shutters" }, /obj/effect/spawner/structure/window/reinforced, @@ -12555,7 +12341,6 @@ }, /obj/machinery/door/poddoor/preopen{ id = "hop"; - layer = 3.1; name = "privacy shutters" }, /turf/open/floor/plasteel, @@ -12700,14 +12485,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/cargo) -"aFS" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) -"aFT" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/escape) "aFU" = ( /obj/structure/table, /obj/item/storage/box/bodybags, @@ -13043,26 +12820,6 @@ /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/maintenance/department/cargo) -"aGQ" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"aGR" = ( -/obj/machinery/computer/emergency_shuttle, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"aGS" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) "aGT" = ( /obj/machinery/door/airlock/maintenance{ name = "Detective Maintenance"; @@ -13299,27 +13056,6 @@ /obj/structure/grille/broken, /turf/open/floor/plating, /area/maintenance/department/cargo) -"aHv" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/escape) -"aHw" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"aHx" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"aHy" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) "aHz" = ( /turf/closed/wall, /area/hallway/secondary/exit/departure_lounge) @@ -13500,7 +13236,7 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_y = 32 }, /turf/open/floor/plasteel/blue/corner{ @@ -13598,7 +13334,7 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_y = 32 }, /turf/open/floor/plasteel/blue/corner{ @@ -13676,7 +13412,7 @@ /obj/machinery/airalarm{ pixel_y = 22 }, -/obj/structure/sign/restroom{ +/obj/structure/sign/departments/restroom{ pixel_x = 32 }, /turf/open/floor/plasteel/white/corner, @@ -13740,49 +13476,6 @@ }, /turf/open/space, /area/solar/port) -"aIs" = ( -/obj/structure/closet, -/turf/open/floor/mineral/titanium/yellow, -/area/shuttle/escape) -"aIt" = ( -/obj/machinery/recharge_station, -/turf/open/floor/mineral/titanium/yellow, -/area/shuttle/escape) -"aIu" = ( -/obj/machinery/vending/cola, -/turf/open/floor/mineral/titanium/yellow, -/area/shuttle/escape) -"aIv" = ( -/obj/machinery/computer/atmos_alert{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"aIw" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"aIx" = ( -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"aIy" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"aIz" = ( -/obj/machinery/computer/security{ - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"aIA" = ( -/obj/structure/chair, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) "aIB" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-17" @@ -14189,7 +13882,6 @@ dir = 4 }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/department/cargo) @@ -14217,7 +13909,6 @@ }, /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/department/cargo) @@ -14254,56 +13945,8 @@ /obj/item/toy/figure/ian, /turf/open/floor/plating, /area/maintenance/department/cargo) -"aJx" = ( -/turf/open/floor/mineral/titanium/yellow, -/area/shuttle/escape) -"aJy" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/yellow, -/area/shuttle/escape) -"aJz" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"aJA" = ( -/obj/machinery/computer/communications{ - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"aJB" = ( -/obj/machinery/flasher{ - id = "shuttle_flasher"; - pixel_x = -24; - pixel_y = 6 - }, -/obj/machinery/button/flasher{ - id = "shuttle_flasher"; - pixel_x = -24; - pixel_y = -6 - }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"aJC" = ( -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) "aJD" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_x = -32 }, /turf/open/floor/plasteel/red/side{ @@ -14388,7 +14031,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/structure/sign/restroom{ +/obj/structure/sign/departments/restroom{ pixel_y = -32 }, /turf/open/floor/plasteel, @@ -14618,7 +14261,6 @@ /area/maintenance/department/cargo) "aKo" = ( /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/department/cargo) @@ -14635,40 +14277,6 @@ /obj/item/toy/figure/lawyer, /turf/open/floor/plating, /area/maintenance/department/cargo) -"aKs" = ( -/obj/machinery/door/airlock/titanium{ - name = "Emergency Shuttle Airlock" - }, -/turf/open/floor/plating, -/area/shuttle/escape) -"aKt" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/mineral/titanium/yellow, -/area/shuttle/escape) -"aKu" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/titanium, -/area/shuttle/escape) -"aKv" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Emergency Shuttle Cockpit"; - req_access_txt = "19" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"aKw" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/mineral/plastitanium/brig, -/area/shuttle/escape) -"aKx" = ( -/obj/machinery/door/airlock/titanium{ - name = "Emergency Shuttle Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/plating, -/area/shuttle/escape) "aKy" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 4; @@ -14911,26 +14519,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/disposal) -"aLp" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Emergency Shuttle Cargo Hold"; - req_access_txt = "0" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"aLq" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"aLr" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Emergency Shuttle Brig"; - req_access_txt = "2" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) "aLs" = ( /obj/machinery/door/airlock/security/glass{ name = "Holding Area"; @@ -15499,15 +15087,6 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"aMI" = ( -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"aMJ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) "aMK" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-10" @@ -15702,7 +15281,6 @@ "aNf" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/department/crew_quarters/bar) @@ -15725,7 +15303,6 @@ icon_state = "1-2" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg3" }, /area/maintenance/department/crew_quarters/bar) @@ -16047,43 +15624,6 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"aNZ" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"aOa" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"aOb" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"aOc" = ( -/turf/open/floor/carpet, -/area/shuttle/escape) -"aOd" = ( -/obj/structure/chair/comfy/beige, -/turf/open/floor/carpet, -/area/shuttle/escape) -"aOe" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) "aOf" = ( /turf/open/floor/plasteel/escape{ dir = 8 @@ -16185,7 +15725,7 @@ }, /area/hallway/secondary/exit/departure_lounge) "aOs" = ( -/obj/structure/sign/evac, +/obj/structure/sign/departments/evac, /turf/closed/wall, /area/hallway/secondary/exit/departure_lounge) "aOt" = ( @@ -16228,7 +15768,6 @@ "aOw" = ( /obj/structure/grille/broken, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/department/crew_quarters/bar) @@ -16543,10 +16082,6 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/quartermaster/storage) -"aPe" = ( -/obj/structure/shuttle/engine/propulsion/right, -/turf/open/floor/plating/airless, -/area/shuttle/supply) "aPf" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -16580,23 +16115,6 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"aPj" = ( -/obj/structure/chair/comfy/beige{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/shuttle/escape) -"aPk" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck, -/turf/open/floor/carpet, -/area/shuttle/escape) -"aPl" = ( -/obj/structure/chair/comfy/beige{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/shuttle/escape) "aPm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/neutral/side{ @@ -16715,13 +16233,11 @@ icon_state = "plant-22" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg3" }, /area/maintenance/department/crew_quarters/bar) "aPz" = ( /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg3" }, /area/maintenance/department/crew_quarters/bar) @@ -16930,8 +16446,7 @@ /area/quartermaster/warehouse) "aQf" = ( /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plasteel/floorgrime, @@ -16940,16 +16455,6 @@ /obj/structure/closet/crate/medical, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aQh" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/supply) -"aQi" = ( -/obj/structure/shuttle/engine/heater{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/shuttle/supply) "aQj" = ( /obj/structure/disposalpipe/sorting/mail/flip{ dir = 2; @@ -17007,24 +16512,13 @@ /area/maintenance/disposal) "aQp" = ( /obj/structure/disposalpipe/segment, -/obj/effect/landmark/revenantspawn, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plating, /area/maintenance/disposal) -"aQq" = ( -/obj/structure/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/shuttle/escape) "aQr" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_x = -32 }, /turf/open/floor/plasteel/escape{ @@ -17157,7 +16651,6 @@ dir = 10 }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg3" }, /area/maintenance/department/crew_quarters/bar) @@ -17170,7 +16663,6 @@ }, /obj/effect/landmark/blobstart, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/department/crew_quarters/bar) @@ -17184,7 +16676,6 @@ dir = 4 }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/department/crew_quarters/bar) @@ -17268,7 +16759,6 @@ dir = 4 }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg3" }, /area/maintenance/department/crew_quarters/bar) @@ -17396,7 +16886,7 @@ /area/hallway/primary/central) "aRe" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/cargo{ +/obj/structure/sign/departments/cargo{ pixel_x = 32 }, /turf/open/floor/plasteel/brown/corner{ @@ -17482,9 +16972,6 @@ /obj/structure/closet/crate/internals, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aRr" = ( -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/supply) "aRs" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -17558,10 +17045,6 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"aRA" = ( -/obj/machinery/light, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) "aRB" = ( /obj/structure/chair, /turf/open/floor/plasteel, @@ -17685,7 +17168,6 @@ opacity = 1 }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg3" }, /area/maintenance/department/crew_quarters/bar) @@ -17775,8 +17257,7 @@ /area/maintenance/department/crew_quarters/bar) "aRY" = ( /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, @@ -17904,12 +17385,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/disposal) -"aSp" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Emergency Shuttle Infirmary" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) "aSq" = ( /obj/machinery/camera{ c_tag = "Departures - Port"; @@ -18336,17 +17811,6 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aTt" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor"; - name = "supply dock loading door" - }, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/shuttle/supply) "aTu" = ( /obj/structure/cable{ icon_state = "1-4" @@ -18471,20 +17935,7 @@ }, /turf/open/floor/plasteel/airless/solarpanel, /area/solar/starboard) -"aTF" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"aTG" = ( -/obj/machinery/vending/medical, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) "aTH" = ( -/obj/machinery/door/airlock/titanium{ - name = "Emergency Shuttle Airlock" - }, /obj/docking_port/stationary{ dheight = 0; dir = 8; @@ -18494,17 +17945,8 @@ name = "PubbyStation emergency evac bay"; width = 20 }, -/obj/docking_port/mobile/emergency{ - dheight = 0; - dir = 8; - dwidth = 4; - height = 15; - name = "Pubby emergency shuttle"; - port_direction = 4; - width = 18 - }, -/turf/open/floor/plating, -/area/shuttle/escape) +/turf/open/space/basic, +/area/space) "aTI" = ( /obj/machinery/light, /turf/open/floor/plating, @@ -18851,13 +18293,6 @@ /turf/open/floor/plating, /area/quartermaster/storage) "aUA" = ( -/obj/machinery/door/airlock/titanium{ - name = "Supply Shuttle Airlock"; - req_access_txt = "31" - }, -/obj/docking_port/mobile/supply{ - dir = 4 - }, /obj/docking_port/stationary{ dir = 4; dwidth = 5; @@ -18866,8 +18301,8 @@ name = "Cargo Bay"; width = 12 }, -/turf/open/floor/plating, -/area/shuttle/supply) +/turf/open/space/basic, +/area/space) "aUB" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/maintenance, @@ -18895,28 +18330,6 @@ }, /turf/open/space, /area/solar/starboard) -"aUE" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"aUF" = ( -/obj/structure/table, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/crowbar, -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) "aUG" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel, @@ -19387,33 +18800,6 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aVC" = ( -/obj/machinery/button/door{ - id = "QMLoaddoor2"; - layer = 4; - name = "Loading Doors"; - pixel_x = -24; - pixel_y = -8 - }, -/obj/machinery/button/door{ - dir = 2; - id = "QMLoaddoor"; - layer = 4; - name = "Loading Doors"; - pixel_x = -24; - pixel_y = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/supply) -"aVD" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/supply) "aVE" = ( /obj/structure/cable{ icon_state = "1-2" @@ -19450,16 +18836,6 @@ /obj/item/storage/crayons, /turf/open/floor/plating, /area/maintenance/department/cargo) -"aVJ" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/shuttle, -/turf/open/floor/plating/airless, -/area/shuttle/escape) -"aVK" = ( -/obj/structure/table, -/obj/item/defibrillator/loaded, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) "aVL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 @@ -19599,7 +18975,7 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; icon_state = "monkey_painting"; name = "Mr. Deempisi portrait"; @@ -19778,10 +19154,6 @@ input_dir = 4; output_dir = 8 }, -/obj/machinery/door/window/westright{ - name = "ORM Access"; - req_access_txt = "64" - }, /turf/open/floor/plasteel/dark, /area/quartermaster/office) "aWw" = ( @@ -19815,8 +19187,7 @@ /area/quartermaster/storage) "aWz" = ( /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 2; @@ -19835,17 +19206,6 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aWC" = ( -/obj/machinery/door/airlock/titanium{ - name = "Supply Shuttle Airlock"; - req_access_txt = "31" - }, -/turf/open/floor/plating, -/area/shuttle/supply) -"aWD" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/floor/plating/airless, -/area/shuttle/escape) "aWE" = ( /turf/open/floor/plasteel/neutral/corner{ dir = 8 @@ -19895,7 +19255,7 @@ /area/hallway/secondary/exit/departure_lounge) "aWM" = ( /obj/machinery/washing_machine, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; icon_state = "monkey_painting"; name = "Mr. Deempisi portrait"; @@ -20115,7 +19475,7 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, -/obj/structure/sign/cargo{ +/obj/structure/sign/departments/cargo{ pixel_x = 32 }, /turf/open/floor/plasteel/brown/corner{ @@ -20205,17 +19565,6 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aXB" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor2"; - name = "supply dock loading door" - }, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad2" - }, -/turf/open/floor/plating, -/area/shuttle/supply) "aXC" = ( /obj/structure/chair/stool, /turf/open/floor/plating, @@ -20271,7 +19620,6 @@ }, /obj/machinery/door/poddoor/preopen{ id = "papersplease"; - layer = 3.1; name = "privacy shutters" }, /obj/item/folder/red, @@ -20380,7 +19728,7 @@ /area/hydroponics) "aXY" = ( /obj/machinery/hydroponics/constructable, -/obj/structure/sign/botany{ +/obj/structure/sign/departments/botany{ pixel_y = 32 }, /obj/machinery/light{ @@ -21006,10 +20354,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aZu" = ( -/obj/machinery/light, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/supply) "aZv" = ( /obj/structure/cable{ icon_state = "2-4" @@ -21275,7 +20619,7 @@ /area/hydroponics) "aZZ" = ( /obj/machinery/smartfridge, -/turf/open/floor/plating, +/turf/closed/wall, /area/crew_quarters/kitchen) "baa" = ( /obj/structure/disposalpipe/segment, @@ -21948,11 +21292,7 @@ /area/maintenance/solars/starboard) "bbO" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_x = 32 }, /turf/open/floor/plating, @@ -22002,7 +21342,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/poddoor/preopen{ id = "papersplease"; - layer = 3.1; name = "privacy shutters" }, /obj/item/crowbar, @@ -22201,14 +21540,12 @@ "bcx" = ( /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/department/cargo) "bcy" = ( /obj/item/chair, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg3" }, /area/maintenance/department/cargo) @@ -22409,11 +21746,7 @@ /turf/open/floor/plasteel/airless/solarpanel, /area/solar/starboard) "bcW" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /obj/effect/spawner/structure/window/reinforced, @@ -22576,7 +21909,6 @@ /area/crew_quarters/bar) "bdz" = ( /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg3" }, /area/maintenance/department/cargo) @@ -22694,24 +22026,6 @@ }, /turf/open/floor/plasteel/brown/corner, /area/quartermaster/miningdock) -"bdN" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/labor) -"bdO" = ( -/obj/machinery/computer/shuttle/mining, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/labor) -"bdP" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/labor) "bdQ" = ( /obj/structure/cable{ icon_state = "2-4" @@ -22800,7 +22114,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/custodian{ +/obj/structure/sign/departments/custodian{ pixel_x = 32 }, /turf/open/floor/plasteel/neutral/corner, @@ -23126,12 +22440,6 @@ }, /turf/open/floor/plasteel/brown/corner, /area/quartermaster/miningdock) -"beQ" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/labor) "beR" = ( /obj/structure/cable{ icon_state = "1-2" @@ -23165,19 +22473,6 @@ }, /turf/open/space, /area/solar/starboard) -"beV" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/arrival) -"beW" = ( -/obj/machinery/door/airlock/titanium{ - name = "Arrivals Shuttle Airlock" - }, -/turf/open/floor/plating, -/area/shuttle/arrival) -"beX" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/arrival) "beY" = ( /obj/machinery/camera{ c_tag = "Arrivals Central"; @@ -23505,36 +22800,17 @@ /turf/open/floor/plating, /area/quartermaster/miningdock) "bfK" = ( -/obj/machinery/door/airlock/titanium{ - name = "Mining Shuttle Airlock"; - req_access_txt = "48" - }, -/turf/open/floor/plating, -/area/shuttle/labor) -"bfL" = ( -/obj/machinery/door/airlock/titanium{ - name = "Mining Shuttle Airlock"; - req_access_txt = "48" - }, -/obj/docking_port/mobile{ - dir = 8; - dwidth = 3; - height = 5; - id = "mining"; - name = "mining shuttle"; - port_direction = 4; - width = 7 - }, /obj/docking_port/stationary{ - dir = 8; + dir = 4; dwidth = 3; height = 5; id = "mining_home"; name = "mining shuttle bay"; + roundstart_template = /datum/map_template/shuttle/mining/delta; width = 7 }, -/turf/open/floor/plating, -/area/shuttle/labor) +/turf/open/space/basic, +/area/space) "bfM" = ( /obj/structure/chair{ dir = 4 @@ -23561,60 +22837,6 @@ /obj/item/electronics/apc, /turf/open/floor/plating, /area/maintenance/department/cargo) -"bfQ" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular{ - pixel_y = 4 - }, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"bfR" = ( -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"bfS" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/poster/official/enlist{ - pixel_y = 32 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"bfT" = ( -/obj/structure/closet/wardrobe/black, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"bfU" = ( -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"bfV" = ( -/obj/machinery/requests_console{ - department = "Arrival shuttle"; - name = "Arrivals Shuttle console"; - pixel_y = 30 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"bfW" = ( -/obj/structure/shuttle/engine/heater{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/shuttle/arrival) -"bfX" = ( -/obj/structure/shuttle/engine/propulsion/burst/right{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/shuttle/arrival) "bfY" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden, /turf/open/floor/plasteel/neutral/corner, @@ -23955,51 +23177,18 @@ /obj/item/paperplane, /turf/open/floor/plating, /area/maintenance/department/cargo) -"bgO" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/cargo) -"bgP" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "arrivy"; - name = "ship shutters" - }, -/turf/open/floor/plating, -/area/shuttle/arrival) -"bgQ" = ( -/obj/machinery/door/airlock/titanium{ - name = "Arrivals Shuttle Airlock" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"bgR" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) "bgS" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 4 - }, -/obj/docking_port/mobile/arrivals{ - height = 13; - name = "pubby arrivals shuttle"; - width = 6 - }, /obj/docking_port/stationary{ dir = 8; dwidth = 3; height = 13; id = "arrivals_stationary"; name = "pubby arrivals"; + roundstart_template = /datum/map_template/shuttle/arrival/pubby; width = 6 }, -/turf/open/floor/plating/airless, -/area/shuttle/arrival) +/turf/open/space/basic, +/area/space) "bgU" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ @@ -24298,24 +23487,6 @@ dir = 6 }, /area/quartermaster/miningdock) -"bhw" = ( -/obj/structure/closet/crate, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/labor) -"bhx" = ( -/obj/structure/shuttle/engine/heater, -/turf/open/floor/plating, -/area/shuttle/labor) -"bhy" = ( -/obj/structure/ore_box, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/labor) "bhz" = ( /obj/structure/cable{ icon_state = "1-2" @@ -24340,16 +23511,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/cargo) -"bhC" = ( -/obj/machinery/light/small, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"bhD" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/shuttle/arrival) "bhE" = ( /obj/machinery/light{ dir = 4 @@ -24495,42 +23656,6 @@ /obj/structure/cable, /turf/open/floor/plasteel/dark, /area/science/robotics/mechbay) -"bhW" = ( -/obj/structure/shuttle/engine/propulsion/burst, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plating/airless, -/area/shuttle/labor) -"bhX" = ( -/obj/structure/closet/emcloset, -/obj/item/storage/firstaid/o2, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"bhY" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -29 - }, -/obj/machinery/light, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"bhZ" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/machinery/light, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/arrival) -"bia" = ( -/obj/structure/shuttle/engine/propulsion/burst/left{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/shuttle/arrival) "bib" = ( /obj/structure/chair/comfy/beige{ dir = 4 @@ -24585,7 +23710,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/structure/sign/bluecross_2{ +/obj/structure/sign/departments/medbay/alt{ pixel_x = 32; pixel_y = -32 }, @@ -24731,18 +23856,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/cargo) -"biA" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) "biB" = ( /obj/structure/cable{ icon_state = "4-8" @@ -24967,7 +24080,7 @@ /turf/open/floor/plating, /area/medical/medbay/central) "bje" = ( -/obj/structure/sign/bluecross_2, +/obj/structure/sign/departments/medbay/alt, /turf/closed/wall, /area/medical/medbay/central) "bjf" = ( @@ -25035,7 +24148,7 @@ /turf/open/floor/plasteel/green/corner, /area/science/research/lobby) "bjs" = ( -/obj/structure/sign/science, +/obj/structure/sign/departments/science, /turf/closed/wall, /area/science/research/lobby) "bjt" = ( @@ -25132,11 +24245,6 @@ /obj/effect/decal/cleanable/vomit/old, /turf/open/floor/plating, /area/maintenance/department/cargo) -"bjG" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/cargo) "bjH" = ( /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating{ @@ -25539,9 +24647,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/department/cargo) @@ -25658,7 +24764,6 @@ /area/medical/medbay/zone3) "bld" = ( /obj/structure/bodycontainer/morgue, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/dark, /area/medical/morgue) "ble" = ( @@ -25969,13 +25074,6 @@ }, /turf/open/floor/plasteel/dark/telecomms/server/walkway, /area/science/server) -"blO" = ( -/obj/machinery/rnd/server, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) "blP" = ( /obj/effect/landmark/event_spawn, /obj/item/device/radio/beacon, @@ -26025,7 +25123,7 @@ /turf/open/floor/engine, /area/science/explab) "blV" = ( -/obj/structure/sign/kiddieplaque/perfect_drone{ +/obj/structure/sign/plaques/kiddie/perfect_drone{ pixel_y = 32 }, /turf/open/floor/engine, @@ -26095,7 +25193,6 @@ icon_state = "2-4" }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/department/engine) @@ -26105,7 +25202,6 @@ }, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/department/engine) @@ -26204,7 +25300,6 @@ /area/medical/medbay/zone3) "bmp" = ( /obj/structure/bodycontainer/morgue, -/obj/effect/landmark/revenantspawn, /obj/machinery/light/small{ brightness = 3; dir = 8 @@ -26515,7 +25610,6 @@ /area/science/xenobiology) "bnk" = ( /obj/effect/decal/cleanable/ash, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plating, /area/maintenance/department/cargo) "bnl" = ( @@ -26530,7 +25624,6 @@ dir = 1 }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/department/cargo) @@ -26539,7 +25632,6 @@ dir = 8 }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/department/cargo) @@ -26586,7 +25678,6 @@ icon_state = "1-2" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/department/engine) @@ -26904,10 +25995,6 @@ dir = 1 }, /area/science/xenobiology) -"boi" = ( -/obj/effect/landmark/revenantspawn, -/turf/open/floor/engine, -/area/science/xenobiology) "boj" = ( /obj/item/weldingtool, /obj/effect/spawner/lootdrop/maintenance, @@ -27369,11 +26456,7 @@ /turf/open/floor/plasteel/white, /area/science/xenobiology) "bpq" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, +/obj/structure/sign/warning/electricshock, /turf/closed/wall/r_wall, /area/science/xenobiology) "bpr" = ( @@ -27653,7 +26736,7 @@ /area/medical/chemistry) "bpX" = ( /obj/machinery/smartfridge/chemistry/preloaded, -/turf/open/floor/plasteel/dark, +/turf/closed/wall, /area/medical/chemistry) "bpY" = ( /turf/closed/wall, @@ -28078,17 +27161,6 @@ /obj/item/cigbutt, /turf/open/floor/plating, /area/maintenance/department/cargo) -"bqP" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/transport) -"bqQ" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/transport) -"bqR" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/pod/dark, -/area/shuttle/transport) "bqS" = ( /obj/machinery/power/apc{ dir = 4; @@ -28592,7 +27664,7 @@ /turf/open/floor/plasteel/white, /area/science/xenobiology) "brR" = ( -/obj/structure/sign/biohazard, +/obj/structure/sign/warning/biohazard, /turf/closed/wall, /area/science/xenobiology) "brS" = ( @@ -28673,7 +27745,7 @@ /turf/open/floor/plasteel, /area/science/xenobiology) "brZ" = ( -/obj/structure/sign/xenobio, +/obj/structure/sign/departments/xenobio, /obj/machinery/atmospherics/pipe/simple/general/hidden{ dir = 9 }, @@ -28766,39 +27838,8 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/department/cargo) -"bsg" = ( -/obj/structure/shuttle/engine/propulsion/left{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/shuttle/transport) -"bsh" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/shuttle/transport) -"bsi" = ( -/obj/structure/chair, -/turf/open/floor/pod/dark, -/area/shuttle/transport) -"bsj" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/pod/light, -/area/shuttle/transport) -"bsk" = ( -/turf/open/floor/pod/light, -/area/shuttle/transport) "bsl" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK" - }, +/obj/structure/sign/warning/vacuum/external, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/hallway/secondary/entry) @@ -29379,7 +28420,7 @@ dir = 8 }, /obj/effect/landmark/xeno_spawn, -/obj/structure/sign/xenobio{ +/obj/structure/sign/departments/xenobio{ pixel_x = -32 }, /turf/open/floor/plasteel/floorgrime, @@ -29396,7 +28437,7 @@ /area/science/xenobiology) "btC" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/biohazard, +/obj/structure/sign/warning/biohazard, /turf/open/floor/plating, /area/science/xenobiology) "btD" = ( @@ -29413,42 +28454,7 @@ /obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb, /turf/open/floor/plating, /area/maintenance/department/cargo) -"btG" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/shuttle/transport) -"btH" = ( -/obj/machinery/light/small, -/turf/open/floor/pod/light, -/area/shuttle/transport) -"btI" = ( -/obj/machinery/door/airlock/titanium, -/turf/open/floor/pod/light, -/area/shuttle/transport) -"btJ" = ( -/obj/machinery/computer/shuttle/ferry/request{ - dir = 8 - }, -/turf/open/floor/pod/dark, -/area/shuttle/transport) "btK" = ( -/obj/machinery/door/airlock/titanium, -/obj/docking_port/mobile{ - dir = 8; - dwidth = 2; - height = 13; - id = "ferry"; - name = "ferry shuttle"; - port_direction = 1; - preferred_direction = 4; - roundstart_move = "ferry_away"; - width = 5 - }, /obj/docking_port/stationary{ dir = 8; dwidth = 2; @@ -29458,8 +28464,8 @@ turf_type = /turf/open/space; width = 5 }, -/turf/open/floor/pod/light, -/area/shuttle/transport) +/turf/open/space/basic, +/area/space) "btL" = ( /obj/machinery/door/airlock/external{ cyclelinkeddir = 4; @@ -30054,26 +29060,6 @@ }, /turf/open/floor/plating/airless, /area/science/xenobiology) -"buX" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/plating/airless, -/area/shuttle/transport) -"buY" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/pod/dark, -/area/shuttle/transport) -"buZ" = ( -/obj/machinery/light, -/turf/open/floor/pod/light, -/area/shuttle/transport) "bva" = ( /turf/closed/wall, /area/maintenance/department/engine) @@ -30350,7 +29336,7 @@ name = "research shutters" }, /obj/machinery/door/firedoor/heavy, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = 32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -30682,10 +29668,6 @@ }, /turf/open/floor/plating/airless, /area/space/nearstation) -"bwp" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/pod/light, -/area/shuttle/transport) "bwq" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -30714,7 +29696,6 @@ icon_state = "1-2" }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/department/engine) @@ -30919,10 +29900,6 @@ }, /turf/open/floor/plasteel/whiteblue/corner, /area/medical/medbay/central) -"bwR" = ( -/obj/machinery/smartfridge/chemistry/preloaded, -/turf/closed/wall, -/area/medical/chemistry) "bwS" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 @@ -31613,7 +30590,6 @@ icon_state = "1-2" }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/department/engine) @@ -31950,7 +30926,7 @@ }, /obj/machinery/door/firedoor/heavy, /obj/effect/turf_decal/stripes/line, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ pixel_x = 32 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -32338,7 +31314,7 @@ /obj/structure/chair{ dir = 4 }, -/obj/structure/sign/holy{ +/obj/structure/sign/departments/holy{ pixel_x = -32 }, /turf/open/floor/plasteel/dark, @@ -32376,7 +31352,6 @@ dir = 4 }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/department/engine) @@ -32553,7 +31528,7 @@ /turf/open/floor/plasteel/whiteblue/corner, /area/medical/medbay/central) "bzY" = ( -/obj/structure/sign/bluecross_2, +/obj/structure/sign/departments/medbay/alt, /turf/closed/wall, /area/crew_quarters/heads/cmo) "bzZ" = ( @@ -32865,7 +31840,6 @@ }, /obj/item/extinguisher, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/department/engine) @@ -32974,7 +31948,7 @@ /turf/open/floor/plasteel/white, /area/medical/virology) "bAY" = ( -/obj/structure/sign/biohazard, +/obj/structure/sign/warning/biohazard, /turf/closed/wall, /area/medical/virology) "bAZ" = ( @@ -33375,7 +32349,6 @@ }, /area/science/mixing) "bBU" = ( -/obj/effect/landmark/revenantspawn, /mob/living/simple_animal/slime, /turf/open/floor/engine, /area/science/xenobiology) @@ -33803,7 +32776,7 @@ /turf/open/floor/engine, /area/science/storage) "bCS" = ( -/obj/structure/sign/fire, +/obj/structure/sign/warning/fire, /turf/closed/wall, /area/science/storage) "bCT" = ( @@ -35192,7 +34165,7 @@ /obj/machinery/door/airlock/medical/glass{ id_tag = null; name = "Medbay Storage"; - req_access_txt = "45" + req_access_txt = "5" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -35236,7 +34209,6 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/dark, /area/medical/exam_room) "bFX" = ( @@ -35245,7 +34217,6 @@ /obj/effect/decal/cleanable/blood/drip, /obj/item/restraints/handcuffs, /obj/item/clothing/mask/muzzle, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/dark, /area/medical/exam_room) "bFY" = ( @@ -35253,7 +34224,7 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/obj/structure/sign/examroom{ +/obj/structure/sign/departments/examroom{ pixel_x = -32 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -35269,7 +34240,7 @@ /turf/open/floor/plasteel/yellow/corner, /area/hallway/primary/aft) "bGa" = ( -/obj/structure/sign/science, +/obj/structure/sign/departments/science, /turf/closed/wall, /area/hallway/primary/aft) "bGb" = ( @@ -35538,7 +34509,6 @@ "bGL" = ( /obj/structure/closet/masks, /obj/item/reagent_containers/food/snacks/deadmouse, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plating, /area/maintenance/department/engine) "bGM" = ( @@ -35641,13 +34611,13 @@ /turf/open/floor/plasteel/white, /area/medical/medbay/central) "bGY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, /obj/machinery/door/airlock/medical/glass{ id_tag = null; name = "Medbay Storage"; - req_access_txt = "45" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 + req_access_txt = "5" }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) @@ -36405,7 +35375,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/sign/nosmoking_2{ +/obj/structure/sign/warning/nosmoking{ pixel_y = -32 }, /obj/effect/turf_decal/stripes/corner{ @@ -36499,12 +35469,7 @@ /area/chapel/dock) "bIV" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK" - }, +/obj/structure/sign/warning/vacuum/external, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/chapel/dock) @@ -37092,7 +36057,7 @@ /area/medical/virology) "bKq" = ( /obj/effect/spawner/structure/window, -/obj/structure/sign/deathsposal, +/obj/structure/sign/warning/deathsposal, /turf/open/floor/plating, /area/medical/virology) "bKr" = ( @@ -37117,7 +36082,6 @@ "bKv" = ( /obj/item/bedsheet/medical, /obj/structure/bed, -/obj/effect/landmark/revenantspawn, /obj/structure/mirror{ pixel_x = -28 }, @@ -37203,7 +36167,6 @@ /area/medical/surgery) "bKF" = ( /obj/structure/table/optable, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/white, /area/medical/surgery) "bKG" = ( @@ -37257,7 +36220,7 @@ /obj/effect/turf_decal/delivery, /obj/machinery/door/poddoor/preopen{ id = "atmos"; - name = "atmos blast door" + name = "Atmospherics Blast Door" }, /obj/machinery/door/firedoor/heavy, /turf/open/floor/plasteel/dark, @@ -37266,7 +36229,7 @@ /obj/effect/turf_decal/delivery, /obj/machinery/door/poddoor/preopen{ id = "atmos"; - name = "atmos blast door" + name = "Atmospherics Blast Door" }, /obj/machinery/door/firedoor/heavy, /obj/structure/disposalpipe/segment, @@ -37466,8 +36429,7 @@ /area/science/mineral_storeroom) "bLj" = ( /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/item/storage/bag/ore, /obj/item/storage/bag/ore, @@ -37559,10 +36521,6 @@ /turf/open/floor/engine, /area/maintenance/department/engine) "bLv" = ( -/obj/effect/landmark/revenantspawn, -/turf/open/floor/engine, -/area/maintenance/department/engine) -"bLw" = ( /turf/open/floor/engine, /area/maintenance/department/engine) "bLx" = ( @@ -37581,7 +36539,6 @@ /obj/item/bedsheet/medical, /obj/structure/bed, /obj/effect/decal/cleanable/cobweb, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/freezer, /area/medical/virology) "bLA" = ( @@ -37591,7 +36548,6 @@ "bLB" = ( /obj/structure/bed, /obj/item/bedsheet/medical, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plasteel/freezer, /area/medical/virology) "bLC" = ( @@ -37901,11 +36857,7 @@ frequency = 1441; id = "inc_in" }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_x = -32 }, /turf/open/floor/engine/vacuum, @@ -37930,11 +36882,7 @@ /obj/machinery/light/small{ dir = 8 }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_x = -32 }, /turf/open/floor/plating, @@ -38720,7 +37668,7 @@ /turf/open/floor/plating, /area/engine/atmos) "bOs" = ( -/obj/structure/sign/fire, +/obj/structure/sign/warning/fire, /turf/closed/wall/r_wall, /area/science/mixing) "bOt" = ( @@ -39049,10 +37997,6 @@ }, /turf/open/space, /area/space/nearstation) -"bPm" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) "bPn" = ( /obj/machinery/door/airlock/centcom{ name = "Chapel"; @@ -39574,8 +38518,7 @@ }, /obj/machinery/door/poddoor/preopen{ id = "atmos"; - layer = 2.9; - name = "atmos blast door" + name = "Atmospherics Blast Door" }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, @@ -39809,10 +38752,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; +/obj/structure/sign/warning/radiation/rad_area{ pixel_x = -32 }, /obj/effect/turf_decal/stripes/corner{ @@ -39910,8 +38850,7 @@ }, /obj/machinery/door/poddoor/preopen{ id = "atmos"; - layer = 2.9; - name = "atmos blast door" + name = "Atmospherics Blast Door" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -40412,10 +39351,7 @@ /turf/closed/wall/r_wall, /area/storage/tech) "bSE" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; +/obj/structure/sign/warning/radiation/rad_area{ pixel_x = -32 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -40500,7 +39436,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/structure/sign/engineering{ +/obj/structure/sign/departments/engineering{ pixel_y = -32 }, /turf/open/floor/plasteel/yellow/corner, @@ -40519,7 +39455,7 @@ icon_state = "plant-02" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/engineering{ +/obj/structure/sign/departments/engineering{ pixel_y = -32 }, /turf/open/floor/plasteel/yellow/corner, @@ -40910,7 +39846,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, -/obj/structure/sign/atmosplaque{ +/obj/structure/sign/plaques/atmos{ pixel_y = 32 }, /obj/machinery/light{ @@ -41035,12 +39971,6 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/department/engine) -"bTY" = ( -/turf/open/floor/plating{ - broken = 1; - icon_state = "platingdmg3" - }, -/area/maintenance/department/engine) "bUa" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1; @@ -41069,7 +39999,7 @@ /turf/open/floor/plating, /area/maintenance/department/engine) "bUf" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/storage/tech) "bUg" = ( @@ -41081,7 +40011,7 @@ /turf/open/floor/plasteel/dark, /area/storage/tech) "bUh" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/storage/tech) @@ -41160,7 +40090,7 @@ "bUo" = ( /obj/machinery/door/poddoor/preopen{ id = "atmos"; - name = "atmos blast door" + name = "Atmospherics Blast Door" }, /obj/machinery/door/firedoor/heavy, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ @@ -41219,7 +40149,6 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/purple/visible{ - icon_state = "intact"; dir = 4 }, /turf/open/floor/plasteel, @@ -41227,14 +40156,12 @@ "bUx" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, /obj/machinery/atmospherics/pipe/simple/purple/visible{ - icon_state = "intact"; dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) "bUy" = ( /obj/machinery/atmospherics/pipe/simple/purple/visible{ - icon_state = "intact"; dir = 4 }, /turf/open/floor/plasteel/yellow/side{ @@ -41245,7 +40172,6 @@ /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/machinery/atmospherics/pipe/simple/purple/visible{ - icon_state = "intact"; dir = 4 }, /turf/open/floor/plating, @@ -41253,24 +40179,10 @@ "bUA" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/purple/visible{ - icon_state = "intact"; dir = 10 }, /turf/open/space, /area/space/nearstation) -"bUB" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate_se"; - name = "southeast of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space/nearstation) "bUC" = ( /obj/structure/flora/ausbushes/fernybush, /turf/open/floor/plating/asteroid, @@ -41523,7 +40435,7 @@ "bVc" = ( /obj/machinery/door/poddoor/preopen{ id = "atmos"; - name = "atmos blast door" + name = "Atmospherics Blast Door" }, /obj/machinery/door/firedoor/heavy, /obj/structure/disposalpipe/segment{ @@ -41717,8 +40629,7 @@ "bVB" = ( /obj/item/book/manual/barman_recipes, /obj/structure/closet/crate{ - icon_state = "crateopen"; - opened = 1 + icon_state = "crateopen" }, /obj/item/cigbutt, /obj/effect/spawner/lootdrop/maintenance, @@ -42049,7 +40960,6 @@ "bWm" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/department/engine) @@ -42665,7 +41575,7 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/structure/sign/deathsposal{ +/obj/structure/sign/warning/deathsposal{ pixel_x = -32 }, /turf/open/floor/plating{ @@ -42758,11 +41668,7 @@ /area/engine/engineering) "bYf" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, +/obj/structure/sign/warning/electricshock, /turf/open/floor/plating, /area/engine/engine_smes) "bYg" = ( @@ -43298,7 +42204,6 @@ /area/maintenance/disposal/incinerator) "bZi" = ( /obj/machinery/atmospherics/pipe/simple/purple/visible{ - icon_state = "intact"; dir = 6 }, /obj/machinery/meter, @@ -43306,7 +42211,6 @@ /area/maintenance/disposal/incinerator) "bZj" = ( /obj/machinery/atmospherics/pipe/simple/purple/visible{ - icon_state = "intact"; dir = 9 }, /turf/closed/wall/r_wall, @@ -43547,7 +42451,6 @@ /area/maintenance/disposal/incinerator) "bZR" = ( /obj/machinery/atmospherics/pipe/simple/purple/visible{ - icon_state = "intact"; dir = 5 }, /turf/closed/wall/r_wall, @@ -43593,7 +42496,7 @@ /turf/open/floor/engine, /area/maintenance/disposal/incinerator) "bZV" = ( -/obj/structure/sign/fire, +/obj/structure/sign/warning/fire, /turf/closed/wall/r_wall, /area/maintenance/disposal/incinerator) "bZY" = ( @@ -43602,7 +42505,6 @@ "caa" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/department/engine) @@ -43731,13 +42633,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/engine/engineering) -"cas" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) "cat" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -43783,10 +42678,6 @@ /obj/item/stack/cable_coil, /turf/open/floor/plasteel, /area/engine/engineering) -"cay" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/plasteel, -/area/engine/engineering) "caz" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 1; @@ -44105,11 +42996,7 @@ /turf/open/floor/plasteel, /area/engine/engineering) "cbj" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA" - }, +/obj/structure/sign/warning/radiation/rad_area, /turf/closed/wall/r_wall, /area/engine/engineering) "cbk" = ( @@ -44604,21 +43491,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/engineering) -"ccT" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ccU" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) "ccV" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -44662,36 +43534,12 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plating, /area/engine/engineering) -"cdb" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering) "cdc" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/engineering) -"cdd" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cde" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) "cdf" = ( /obj/structure/cable{ icon_state = "1-2" @@ -44732,11 +43580,7 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /turf/open/floor/plating, @@ -44986,13 +43830,6 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/engine/engineering) -"cea" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) "ceb" = ( /obj/machinery/computer/rdconsole/production{ dir = 8 @@ -45303,11 +44140,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_x = 32 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -45319,14 +44152,6 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"ceZ" = ( -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/engineering) "cfa" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -45356,11 +44181,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_x = -32 }, /turf/open/floor/plating, @@ -45822,7 +44643,7 @@ /area/chapel/main/monastery) "cgM" = ( /obj/structure/dresser, -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; icon_state = "monkey_painting"; name = "Mr. Deempisi portrait"; @@ -45859,11 +44680,7 @@ /obj/machinery/light/small{ dir = 8 }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_x = -32 }, /turf/open/floor/plating, @@ -45907,12 +44724,6 @@ }, /turf/open/floor/plating/airless, /area/space/nearstation) -"cgW" = ( -/turf/open/space, -/area/space) -"cgX" = ( -/turf/open/space/basic, -/area/space) "cgY" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -46065,10 +44876,6 @@ }, /turf/open/floor/plating/airless, /area/engine/engineering) -"chy" = ( -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) "chz" = ( /obj/structure/cable/yellow{ icon_state = "0-4" @@ -46301,21 +45108,6 @@ }, /turf/open/floor/plating/airless, /area/space/nearstation) -"cil" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"cim" = ( -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 1 - }, -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"cin" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Shuttle Airlock" - }, -/turf/open/floor/plasteel/dark, -/area/shuttle/abandoned) "cio" = ( /obj/structure/closet/cabinet, /obj/item/clothing/suit/holidaypriest, @@ -46382,12 +45174,6 @@ /obj/structure/grille, /turf/open/floor/plating/airless, /area/engine/engineering) -"ciw" = ( -/turf/open/floor/plasteel/dark, -/area/shuttle/abandoned) -"cix" = ( -/turf/open/floor/plasteel, -/area/shuttle/abandoned) "ciy" = ( /obj/item/reagent_containers/glass/bucket, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -46538,47 +45324,6 @@ /obj/item/bikehorn/rubberducky, /turf/open/floor/plasteel/showroomfloor, /area/chapel/main/monastery) -"cja" = ( -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 8 - }, -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) -"cjb" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/gun/medbeam, -/turf/open/floor/plating/abductor, -/area/shuttle/abandoned) -"cjc" = ( -/obj/structure/chair, -/turf/open/floor/plating/abductor, -/area/shuttle/abandoned) -"cjd" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/machinery/recharger, -/obj/item/gun/energy/laser/retro, -/turf/open/floor/plating/abductor, -/area/shuttle/abandoned) -"cje" = ( -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 4 - }, -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) "cjf" = ( /obj/machinery/light/small{ dir = 8 @@ -46659,7 +45404,7 @@ /turf/closed/wall, /area/asteroid/nearstation/bomb_site) "cjw" = ( -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ desc = "A warning sign which reads 'BOMB RANGE"; name = "BOMB RANGE" }, @@ -46672,39 +45417,7 @@ "cjx" = ( /turf/open/floor/plating/asteroid/airless, /area/asteroid/nearstation/bomb_site) -"cjy" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plating/abductor, -/area/shuttle/abandoned) -"cjz" = ( -/obj/machinery/computer/shuttle/white_ship, -/turf/open/floor/plating/abductor, -/area/shuttle/abandoned) -"cjA" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating/abductor, -/area/shuttle/abandoned) "cjB" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Shuttle Airlock" - }, -/obj/docking_port/mobile{ - dheight = 0; - dir = 8; - dwidth = 4; - height = 9; - id = "whiteship"; - launch_status = 0; - name = "White Ship"; - port_direction = 4; - preferred_direction = 1; - roundstart_move = "whiteship_away"; - width = 9 - }, /obj/docking_port/stationary{ dir = 8; dwidth = 11; @@ -46714,14 +45427,10 @@ turf_type = /turf/open/space; width = 35 }, -/turf/open/floor/plasteel/dark, -/area/shuttle/abandoned) +/turf/open/space/basic, +/area/space) "cjC" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /obj/machinery/light/small{ @@ -46798,32 +45507,6 @@ }, /turf/open/floor/plating/asteroid/airless, /area/asteroid/nearstation/bomb_site) -"cjW" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/table/glass, -/obj/item/tank/internals/oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/hardsuit/engine/elite, -/turf/open/floor/plating/abductor, -/area/shuttle/abandoned) -"cjX" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plating/abductor, -/area/shuttle/abandoned) -"cjY" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/table/glass, -/obj/item/clothing/shoes/magboots, -/turf/open/floor/plating/abductor, -/area/shuttle/abandoned) "cjZ" = ( /obj/structure/table, /obj/item/storage/crayons, @@ -47051,7 +45734,7 @@ /turf/open/floor/plasteel/dark, /area/library) "ckJ" = ( -/obj/structure/sign/securearea, +/obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/engine/engineering) "ckK" = ( @@ -47059,7 +45742,6 @@ /area/asteroid/nearstation/bomb_site) "ckL" = ( /obj/item/device/radio/beacon, -/obj/effect/landmark/revenantspawn, /turf/open/floor/plating/airless, /area/asteroid/nearstation/bomb_site) "ckM" = ( @@ -47133,10 +45815,6 @@ /obj/structure/bookcase/random/fiction, /turf/open/floor/plasteel/dark, /area/library) -"ckY" = ( -/obj/structure/shuttle/engine/propulsion/burst, -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned) "clb" = ( /obj/machinery/door/poddoor{ id = "chapelgun"; @@ -47192,7 +45870,7 @@ /turf/open/floor/plasteel/dark, /area/library) "clm" = ( -/obj/machinery/vending/kink, +/obj/structure/closet/crate/bin, /turf/open/floor/plasteel/dark, /area/library) "cln" = ( @@ -47208,19 +45886,6 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/closed/mineral, /area/asteroid/nearstation/bomb_site) -"clt" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate_southmaint"; - name = "south maintenance airlock"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space/nearstation) "clu" = ( /obj/machinery/camera{ c_tag = "Telecomms External Fore"; @@ -47722,7 +46387,7 @@ /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) "cmH" = ( -/obj/machinery/message_server, +/obj/machinery/telecomms/message_server, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) "cmI" = ( @@ -47939,19 +46604,6 @@ }, /turf/open/space, /area/space/nearstation) -"cnA" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate_s"; - name = "south of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space, -/area/space/nearstation) "cnC" = ( /obj/machinery/turretid{ control_area = "/area/ai_monitored/turret_protected/aisat_interior"; @@ -48056,7 +46708,6 @@ dir = 5 }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/department/crew_quarters/dorms) @@ -48188,7 +46839,6 @@ dir = 4 }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/department/crew_quarters/bar) @@ -48201,7 +46851,6 @@ }, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/department/crew_quarters/bar) @@ -48213,7 +46862,6 @@ dir = 4 }, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/department/crew_quarters/bar) @@ -48662,11 +47310,6 @@ dir = 1 }, /area/science/research/lobby) -"cqq" = ( -/obj/structure/grille, -/obj/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/transport) "cqs" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -48822,12 +47465,7 @@ /turf/open/floor/plasteel/dark, /area/chapel/main/monastery) "crl" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK" - }, +/obj/structure/sign/warning/vacuum/external, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/chapel/asteroid/monastery) @@ -48873,11 +47511,7 @@ /turf/open/floor/plating, /area/maintenance/department/engine) "crA" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /obj/structure/disposalpipe/segment{ @@ -48934,7 +47568,8 @@ /obj/machinery/door/airlock/centcom{ name = "Crematorium"; opacity = 1; - req_access = "27" + req_access = null; + req_access_txt = "27" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/dark, @@ -49138,12 +47773,6 @@ }, /turf/open/floor/plating, /area/maintenance/department/engine) -"csz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) "csB" = ( /obj/structure/chair/comfy/black{ dir = 4 @@ -50010,11 +48639,7 @@ /obj/machinery/light/small{ dir = 8 }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; +/obj/structure/sign/warning/vacuum/external{ pixel_x = -32 }, /obj/machinery/camera{ @@ -50356,13 +48981,6 @@ }, /turf/closed/wall, /area/library) -"cxF" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/library) -"cxG" = ( -/turf/open/space/basic, -/area/library) "cxJ" = ( /obj/structure/window/reinforced/fulltile, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -50467,10 +49085,6 @@ }, /turf/closed/wall, /area/library) -"cyK" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) "cyL" = ( /obj/structure/lattice, /obj/structure/lattice, @@ -50564,11 +49178,6 @@ /obj/structure/table/wood/fancy, /turf/open/floor/carpet, /area/library) -"czs" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/pill_bottle/dice, -/turf/open/floor/carpet, -/area/library) "czt" = ( /obj/structure/table/wood/fancy, /obj/item/storage/photo_album, @@ -50595,11 +49204,6 @@ }, /turf/open/floor/plasteel/dark, /area/library) -"czA" = ( -/obj/structure/table/wood/fancy, -/obj/item/dice/d20, -/turf/open/floor/carpet, -/area/library) "czB" = ( /obj/structure/table/wood/fancy, /obj/item/storage/fancy/candle_box, @@ -50894,7 +49498,6 @@ "cBm" = ( /obj/item/cigbutt/cigarbutt, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/department/crew_quarters/dorms) @@ -50994,14 +49597,12 @@ /area/maintenance/department/crew_quarters/dorms) "cBz" = ( /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg1" }, /area/maintenance/department/crew_quarters/dorms) "cBA" = ( /obj/structure/grille/broken, /turf/open/floor/plating{ - burnt = 1; icon_state = "panelscorched" }, /area/maintenance/department/crew_quarters/dorms) @@ -51011,7 +49612,6 @@ dir = 8 }, /turf/open/floor/plating{ - broken = 1; icon_state = "platingdmg3" }, /area/maintenance/department/crew_quarters/dorms) @@ -51030,7 +49630,7 @@ /turf/open/floor/plating, /area/maintenance/department/engine) "cBM" = ( -/obj/structure/sign/securearea{ +/obj/structure/sign/warning/securearea{ desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; icon_state = "monkey_painting"; name = "Mr. Deempisi portrait"; @@ -51038,23 +49638,6 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cBN" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/escape) -"cBO" = ( -/obj/docking_port/stationary{ - dheight = 9; - dir = 2; - dwidth = 5; - height = 24; - id = "syndicate_nw"; - name = "northwest of station"; - turf_type = /turf/open/space; - width = 18 - }, -/turf/open/space/basic, -/area/space/nearstation) "cBP" = ( /obj/machinery/smoke_machine, /turf/open/floor/plasteel/white, @@ -51090,99 +49673,12 @@ "cBU" = ( /turf/closed/wall/r_wall, /area/gateway) -"cBV" = ( -/turf/closed/wall/r_wall, -/area/gateway) -"cBW" = ( -/turf/closed/wall/r_wall, -/area/gateway) -"cBX" = ( -/turf/closed/wall/r_wall, -/area/gateway) -"cBY" = ( -/turf/closed/wall/r_wall, -/area/gateway) -"cBZ" = ( -/turf/closed/wall/r_wall, -/area/gateway) -"cCa" = ( -/turf/closed/wall/r_wall, -/area/gateway) -"cCb" = ( -/turf/closed/wall/r_wall, -/area/gateway) -"cCc" = ( -/turf/closed/wall/r_wall, -/area/gateway) -"cCd" = ( -/turf/closed/wall/r_wall, -/area/gateway) -"cCe" = ( -/turf/closed/wall/r_wall, -/area/gateway) -"cCf" = ( -/turf/closed/wall/r_wall, -/area/gateway) -"cCg" = ( -/turf/closed/wall/r_wall, -/area/gateway) -"cCh" = ( -/turf/closed/wall/r_wall, -/area/gateway) -"cCi" = ( -/turf/closed/wall/r_wall, -/area/gateway) -"cCj" = ( -/turf/closed/wall/r_wall, -/area/gateway) -"cCk" = ( -/turf/closed/wall/r_wall, -/area/gateway) "cCl" = ( /turf/closed/wall/r_wall, /area/science/lab) -"cCm" = ( -/turf/closed/wall/r_wall, -/area/science/lab) -"cCn" = ( -/turf/closed/wall/r_wall, -/area/science/lab) -"cCo" = ( -/turf/closed/wall/r_wall, -/area/science/lab) -"cCp" = ( -/turf/closed/wall/r_wall, -/area/science/lab) -"cCq" = ( -/turf/closed/wall/r_wall, -/area/science/lab) -"cCr" = ( -/turf/closed/wall/r_wall, -/area/science/lab) -"cCs" = ( -/turf/closed/wall/r_wall, -/area/science/lab) "cCt" = ( /turf/open/floor/plasteel/white, /area/science/lab) -"cCu" = ( -/turf/closed/wall/r_wall, -/area/science/lab) -"cCv" = ( -/turf/closed/wall/r_wall, -/area/science/lab) -"cCw" = ( -/turf/open/floor/plasteel/white, -/area/science/lab) -"cCx" = ( -/turf/closed/wall/r_wall, -/area/science/lab) -"cCy" = ( -/turf/closed/wall/r_wall, -/area/science/lab) -"cCz" = ( -/turf/closed/wall/r_wall, -/area/science/lab) "cCA" = ( /turf/closed/wall, /area/science/lab) @@ -51192,21 +49688,10 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"cCC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/rnd/protolathe/department/cargo, -/turf/open/floor/plasteel, -/area/quartermaster/storage) "cCD" = ( /obj/machinery/rnd/protolathe/department/service, /turf/open/floor/plating, /area/crew_quarters/kitchen) -"cCE" = ( -/obj/machinery/rnd/protolathe/department/medical, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) "cCF" = ( /obj/effect/turf_decal/bot, /turf/open/floor/plasteel/white, @@ -51227,30 +49712,6 @@ }, /turf/open/floor/plating/airless, /area/engine/engineering) -"cCJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"cCK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"cCL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"cCM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) "cCN" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -51267,10 +49728,6 @@ /obj/effect/turf_decal/bot/right, /turf/open/floor/plasteel/white, /area/engine/gravity_generator) -"cCQ" = ( -/obj/effect/turf_decal/bot/right, -/turf/open/floor/plasteel/white, -/area/engine/gravity_generator) "cCR" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -51331,53 +49788,107 @@ "cDa" = ( /turf/closed/wall, /area/quartermaster/warehouse) -"cDb" = ( +"evx" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/darkpurple, +/area/crew_quarters/cryopod) +"iVL" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/cryopod{ + tag = "icon-cryopod-open (EAST)"; + icon_state = "cryopod-open"; + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"jvQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"lcu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"mhM" = ( +/turf/open/floor/plating/airless, +/area/space/nearstation) +"nnS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/darkpurple, +/area/crew_quarters/cryopod) +"oZq" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"pgi" = ( +/obj/machinery/power/apc{ + areastring = "/area/medical/cryo"; + dir = 1; + name = "Cryogenics APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/darkpurple, +/area/crew_quarters/cryopod) +"pPV" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/stairs, +/area/crew_quarters/cryopod) +"pXL" = ( +/obj/machinery/computer/cryopod{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/darkpurple, +/area/crew_quarters/cryopod) +"qSi" = ( /turf/closed/wall, -/area/quartermaster/warehouse) -"cDc" = ( -/turf/closed/wall, -/area/quartermaster/warehouse) -"cDd" = ( -/turf/closed/wall, -/area/quartermaster/warehouse) -"cDe" = ( -/turf/closed/wall, -/area/quartermaster/warehouse) -"cDf" = ( -/turf/closed/wall, -/area/quartermaster/warehouse) -"cDg" = ( -/turf/closed/wall, -/area/quartermaster/warehouse) -"cDh" = ( -/turf/closed/wall, -/area/quartermaster/warehouse) -"cDi" = ( -/turf/closed/wall, -/area/quartermaster/warehouse) -"cDj" = ( -/turf/closed/wall, -/area/quartermaster/warehouse) -"cDk" = ( -/turf/closed/wall, -/area/quartermaster/warehouse) -"cDl" = ( -/turf/closed/wall, -/area/quartermaster/warehouse) -"cDm" = ( -/turf/closed/wall, -/area/quartermaster/warehouse) -"cDn" = ( -/turf/closed/wall, -/area/quartermaster/warehouse) -"cDo" = ( -/obj/machinery/vending/kink, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"cDp" = ( -/obj/machinery/vending/kink, -/turf/open/floor/plating, -/area/maintenance/department/engine) +/area/crew_quarters/cryopod) +"tnH" = ( +/obj/machinery/cryopod, +/obj/machinery/light/small/built{ + dir = 4 + }, +/turf/open/floor/plasteel/darkpurple, +/area/crew_quarters/cryopod) +"tMS" = ( +/obj/machinery/cryopod, +/turf/open/floor/plasteel/darkpurple, +/area/crew_quarters/cryopod) +"tUf" = ( +/turf/open/floor/plasteel/darkpurple, +/area/crew_quarters/cryopod) (1,1,1) = {" aaa @@ -60044,11 +58555,11 @@ aaa aaa aaa aaa -cil -cja -cin -cja -cil +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -60300,13 +58811,13 @@ aaa aaa aaa aaa -cil -cil -ciw -cix -ciw -cil -cil +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -60556,15 +59067,15 @@ aaa aaa aaa aaa -cil -cil -ciw -ciw -cix -ciw -ciw -cil -cil +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -60813,15 +59324,15 @@ aaa aaa aaa aaa -cim -ciw -ciw -cjb -cjy -cjW -ciw -ciw -ckY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -61070,15 +59581,15 @@ aaa aaa aaa aaa -cin -cix -cix -cjc -cjz -cjX -cix -cix -cin +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -61327,15 +59838,15 @@ aaa aaa aaa aaa -cim -ciw -ciw -cjd -cjA -cjY -ciw -ciw -ckY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -61584,15 +60095,15 @@ aaa aaa aaa aaa -cil -cil -ciw -ciw -cix -ciw -ciw -cil -cil +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -61842,13 +60353,13 @@ aaa aaa aaa aaa -cil -cil -ciw -cix -ciw -cil -cil +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -62100,11 +60611,11 @@ aaa aaa aaa aaa -cil -cje +aaa +aaa cjB -cje -cil +aaa +aaa aaa aaa aaa @@ -65355,21 +63866,21 @@ aaa aaa aaa aaa -aFS -cBN -cBN -aKs -aFS -aFS -cBN -cBN -aFS -aKs -aFS -aKs -aFS -aFS -aFS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -65612,21 +64123,21 @@ aaa aaa aaa aaa -aFS -aIs -aJx -aJx -cBN -aMI -aNZ -aNZ -aNZ -aMI -aNZ -aMI -aNZ -aVJ -aWD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -65869,21 +64380,21 @@ aaa aaa aaa aaa -aFS -aIt -aJx -aJx -aLp -aIx -aIx -aIx -aIx -aIx -aIx -aIx -aIx -aVJ -aWD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -66126,21 +64637,21 @@ aaa aaa aaa aaa -aFS -aIu -aJy -aKt -cBN -aIx -aOa -aOa -aOa -aIx -aIx -aOe -aOe -aVJ -aWD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -66383,22 +64894,22 @@ aaa aaa aaa aaa -aFS -aFS -aFS -aFS -aHv -aMJ -aOb -aOb -aOb -aRA -aHv -aFS -aFS -aFS -aFS -aFS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -66638,24 +65149,24 @@ aaa aaa aaa aaa -aFS -aFS -aHv -aIv -aJz -aKu -aLq -aIx -aIx -aIx -aIx -aIx -aFS -aTF -aUE -aTF -aVJ -aWD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -66895,24 +65406,24 @@ aaa aaa aaa aaa -cBN -aGQ -aHw -aIw -aIw -cBN -aIx -aIx -aOc -aPj -aOc -aIx -cBN -aMI -aMI -aMI -aVJ -aWD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -67152,24 +65663,24 @@ aaa aaa aaa aaa -aFT -aGR -aHx -aIx -aIx -aKv -aIx -aIx -aOd -aPk -aQq -aIx -aSp -aMI -aMI -aMI -aVJ -aWD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -67409,24 +65920,24 @@ aaa aaa aaa aaa -aFT -aGS -aHy -aIy -aIy -aFT -aIx -aIx -aOc -aPl -aOc -aIx -aFT -aMI -aNZ -aNZ -aVJ -aWD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -67666,24 +66177,24 @@ axB aaa aaa aaa -aFS -aFS -aHv -aIz -aJA -aKu -aLq -aIx -aIx -aIx -aIx -aIx -aFS -aTG -aUF -aVK -aVJ -aWD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -67925,22 +66436,22 @@ aaa aaa aaa aaa -aFS -aFS -aFS -aFS -aHv -aMJ -aOa -aOa -aOa -aRA -aHv -aFS -aFS -aFS -aFS -aFS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -68182,21 +66693,21 @@ aaa aaa aaa aaa -aFS -aIA -aJB -aKw -aFT -aIx -aOb -aOb -aOb -aIx -aIx -aNZ -aNZ -aVJ -aWD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -68439,21 +66950,21 @@ aaa aaa aaa aaa -aFS -aIA -aJC -aJC -aLr -aIx -aIx -aIx -aIx -aIx -aIx -aIx -aIx -aVJ -aWD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -68696,21 +67207,6 @@ aaa aaa aaa aaa -aFS -aIA -aJC -aJC -aFT -aMI -aOe -aOe -aOe -aMI -aOe -aMI -aOe -aVJ -aWD aaa aaa aaa @@ -68732,7 +67228,22 @@ aaa aaa aaa aaa -bsg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -68953,21 +67464,18 @@ aaa aaa aaa aaa -aFS -aFT -aFT -aKx -aFS -aFS -aFT -aFT -aFS -aKs -aFS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aTH -aFS -aFS -aFS aaa aaa aaa @@ -68988,9 +67496,12 @@ aaa aaa aaa aaa -bsg -btG -bsg +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -69233,10 +67744,6 @@ aaa aaa aaa aaa -beV -bgP -bgP -beV aaa aaa aaa @@ -69245,9 +67752,13 @@ aaa aaa aaa aaa -bsh -bsk -buX +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -69460,7 +67971,7 @@ aiu aiu ayD azU -aAZ +aoK ajD ait aaa @@ -69490,10 +68001,6 @@ aaa aaa aaa aaa -beV -bfR -bhC -beV aaa aaa aaa @@ -69502,9 +68009,13 @@ aaa aaa aaa aaa -bqP -btH -bqP +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -69746,23 +68257,23 @@ aZx aZx aaa aaa -beV -beV -bgQ -bgQ -beV -beV +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aZx aZx aZx aZx -bqP -bqP -btI -bqP -bqP +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -69963,15 +68474,15 @@ amI anu aog aiu -apC -apC -apD -apC -apC -apD -apC -apC -apC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aiu azW aBa @@ -70003,23 +68514,23 @@ baJ aZx bcW aZx -beV -bfQ -bfR -bfR -bhX -beV +aaa +aaa +aaa +aaa +aaa +aaa aZx aZx aZx baJ bon aZx -bqQ -bsi -bsk -buY -cqq +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -70220,15 +68731,15 @@ amJ anv aoh aiu -apD -aqj -are -ass -atr -auv -avo -awG -axD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aiu azX aBb @@ -70260,23 +68771,23 @@ baK bbQ bcX bdV -beW -bfR -bgR -bgR -bfR -beW +aaa +aaa +aaa +aaa +aaa +aaa bbQ bcX bdV baK bon aZx -bqP -bsi -bsk -buY -bqP +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -70477,15 +68988,15 @@ amK anw aoh aiu -apD -aqk -arf -apC -ats -atr -atr -awG -axD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aiu azY aiu @@ -70517,23 +69028,23 @@ baK aZx aZx aZx -beV -bfS -bfR -bfR -bhY -beV +aaa +aaa +aaa +aaa +aaa +aaa aZx aZx aZx baK bon aZx -bqP -bsj -bsk -bsk -bqP +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -70734,15 +69245,15 @@ akA akA aoi aiu -apD -aql -arg -ast -att -auw -atr -awG -axD +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aiu azZ aiu @@ -70774,23 +69285,23 @@ baK bbR bcY aZx -beX -bfT -bgR -bgR -bfR -beX +aaa +aaa +aaa +aaa +aaa +aaa aZx bkQ bbR baK bon aZx -bqR -bsk -btJ -bsk -bwp +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -70972,7 +69483,7 @@ aem aem aeT afn -aem +iVL afZ agn agy @@ -70991,15 +69502,15 @@ amL anx aoj aiu -apC -apC -arh -apC -apC -apC +aaa +aaa +aaa +aaa +aaa +aaa avp -apC -apC +aaa +aaa aiu aAa aiu @@ -71031,23 +69542,23 @@ baL baK bcZ aZx -beX -bfU -bfR -bfR -bfR -beX +aaa +aaa +aaa +aaa +aaa +aaa aZx bkR baK baL bon aZx -bqP -bsk -bsk -buZ -bqP +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -71288,23 +69799,23 @@ baK bbS bda aZx -beX -bfR -bgR -bgR -bfR -beX +aaa +aaa +aaa +aaa +aaa +aaa aZx bkS bbS baK bon aZx -bqP -bsi -bsk -buY -bqP +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -71545,23 +70056,23 @@ baM aZx aZx aZx -beV -bfV -bgR -bgR -bhZ -beV +aaa +aaa +aaa +aaa +aaa +aaa aZx aZx aZx bno boo aZx -bqQ -bsi -bsk -buY -cqq +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -71802,23 +70313,23 @@ baN bbQ bcX bdV -beW -bfR -bfR -bfR -bfR -beW +aaa +aaa +aaa +aaa +aaa +aaa bbQ bcX bdV bnp bon aZx -bqP -bqQ +aaa +aaa btK -bqQ -bqP +aaa +aaa aaa aaa aaa @@ -72059,12 +70570,12 @@ baN aZx bcW aZx -beV -bfW -bfW -bfW -bfW -beV +aaa +aaa +aaa +aaa +aaa +aaa aZx aZx aZx @@ -72316,12 +70827,12 @@ baN bbR bbR aYG -beV -bfX +aaa +aaa bgS -bhD -bia -beV +aaa +aaa +aaa aYG bbR bbR @@ -73372,7 +71883,7 @@ bGL bHQ bJe bKj -bLw +bLv bMB bNI bOz @@ -74410,8 +72921,8 @@ bQT bDi bSq bDi -bTY -bTY +bSw +bSw bva bva bDi @@ -79037,7 +77548,7 @@ cCF cCH bTn bPB -cDp +bDi bVC bQj bPA @@ -81627,8 +80138,8 @@ cgv cgV bBW bBW -aaa cgV +mhM aaa bBW bBW @@ -81841,7 +80352,7 @@ bpV bpY bpY bvq -bwR +bpX bpY bpY bpY @@ -82403,7 +80914,7 @@ cis ciG aaa aaa -aaa +cgV cfV bTE abI @@ -82652,7 +81163,7 @@ cfd cfw cfW cgw -cgV +mhM abI abI cij @@ -82660,7 +81171,7 @@ cit ciH abI abI -cgV +mhM cfV bTE abI @@ -82909,7 +81420,7 @@ cfe cfx cfa cgv -aaa +cgV aaa aaa cik @@ -83684,8 +82195,8 @@ cgV bBW aaa aaa +mhM cgV -aaa bBW bBW cgV @@ -87967,12 +86478,12 @@ aaa aaa aaa aaa -aaa -aaa -aaa -awd -aHN -aIU +qSi +pgi +evx +pPV +jvQ +oZq aJI aLe aMe @@ -88224,11 +86735,11 @@ aaa aaa aaa aaa -aaa -aaa -aaa -awd -aHN +qSi +pXL +tUf +nnS +lcu aIU aJH aLe @@ -88481,10 +86992,10 @@ apX aBL aBL apX -aaa -aaa -aaa -aAN +qSi +tnH +tMS +qSi aHN aIU aJI @@ -88710,7 +87221,7 @@ aaa aaa aaa aiU -cDo +ajv aju ajt alQ @@ -93632,25 +92143,25 @@ aKq aJs aEj aaa -aQh -aQh -aQh -aTt -aUA -aQh -aWC -aXB -aQh -aQh -aQh aaa -apC -apC -apD +aaa +aaa +aaa +aUA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa bfK -apD -apC -apC +aaa +aaa +aaa aEj aTx bkE @@ -93888,26 +92399,26 @@ aKn aKn aMy aEj -aPe -aQh -aQh -aRr -aRr -aRr -aVC -aRr -aRr -aRr -aRr -aQh aaa -apC -bdN -atr -atr -beQ -bhw -apC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aEj aTx bkE @@ -94145,26 +92656,26 @@ aEj aLk aLk aEj -aPe -aQi -aRr -aRr -aRr -aRr -aRr -aRr -aRr -aRr -aRr -aQh aaa -apD -bdO -beQ -atr -beQ -bhx -bhW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aEj bjz bkE @@ -94402,26 +92913,26 @@ aKo aLl aMz aEj -aPe -aQi -aRr -aRr -aRr -aRr -aRr -aRr -aRr -aRr -aZu -aQh aaa -apC -bdP -atr -atr -beQ -bhy -apC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aEj aTx bkF @@ -94659,26 +93170,26 @@ aFi aFi aEj aEj -aPe -aQi -aRr -aRr -aRr -aRr -aRr -aRr -aRr -aRr -aRr -aQh aaa -apC -apC -apD -bfL -apD -apC -apC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aEj aTx bkF @@ -94916,18 +93427,18 @@ aKp aFi aMA aEj -aPe -aQh -aQh -aRr -aRr -aRr -aVD -aRr -aRr -aRr -aRr -aQh +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -95174,17 +93685,17 @@ aFi aFi aEj aaa -aQh -aQh -aQh -aQh -aQh -aQh -aQh -aQh -aQh -aQh -aQh +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -96997,7 +95508,7 @@ bjE bkK bkF bnh -boi +blX blX bqH bsb @@ -97007,7 +95518,7 @@ bwe bxS bzr blX -boi +blX bDe bEg bFA @@ -97246,7 +95757,7 @@ bcL bdS baG bfP -bgO +bdz aFi aKq biD @@ -97764,7 +96275,7 @@ abI abI aEj biG -bjG +aKo bjD bkF blX @@ -98025,7 +96536,7 @@ bjH bjD bkF bnh -boi +blX blX bqK bsd @@ -98035,7 +96546,7 @@ bwe bxU bzu blX -boi +blX bDe bkF bjD @@ -100079,7 +98590,7 @@ aaa aaa aEj bkO -bgO +bdz bnn bom aEj diff --git a/_maps/cit_map_files/PubbyStation/job_changes.dm b/_maps/cit_map_files/PubbyStation/job_changes.dm new file mode 100644 index 0000000000..b9789fd896 --- /dev/null +++ b/_maps/cit_map_files/PubbyStation/job_changes.dm @@ -0,0 +1,21 @@ +#define JOB_MODIFICATION_MAP_NAME "PubbyStation" + +/datum/job/hos/New() + ..() + MAP_JOB_CHECK + access += ACCESS_CREMATORIUM + minimal_access += ACCESS_CREMATORIUM + +/datum/job/warden/New() + ..() + MAP_JOB_CHECK + access += ACCESS_CREMATORIUM + minimal_access += ACCESS_CREMATORIUM + +/datum/job/officer/New() + ..() + MAP_JOB_CHECK + access += ACCESS_CREMATORIUM + minimal_access += ACCESS_CREMATORIUM + +MAP_REMOVE_JOB(lawyer) From 6a7d414fdf4b2612efcde00a43028e95f4e3344d Mon Sep 17 00:00:00 2001 From: deathride58 Date: Sat, 17 Feb 2018 15:57:34 -0500 Subject: [PATCH 83/94] fixes compiling errors hopefully --- code/citadel/crew_objectives/cit_crewobjectives_cargo.dm | 4 ++-- code/citadel/crew_objectives/cit_crewobjectives_civilian.dm | 2 +- code/citadel/crew_objectives/cit_crewobjectives_medical.dm | 4 ++-- code/modules/antagonists/borer/borer_event.dm | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/code/citadel/crew_objectives/cit_crewobjectives_cargo.dm b/code/citadel/crew_objectives/cit_crewobjectives_cargo.dm index d164123c4d..010337b49f 100644 --- a/code/citadel/crew_objectives/cit_crewobjectives_cargo.dm +++ b/code/citadel/crew_objectives/cit_crewobjectives_cargo.dm @@ -17,11 +17,11 @@ var/petcount = target_amount for(var/mob/living/simple_animal/pet/P in GLOB.mob_list) if(!(P.stat == DEAD)) - if(P.z == ZLEVEL_STATION_PRIMARY || SSshuttle.emergency.shuttle_areas[get_area(P)]) + if(P.z == SSmapping.station_start || SSshuttle.emergency.shuttle_areas[get_area(P)]) petcount-- for(var/mob/living/carbon/human/H in GLOB.mob_list) if(!(H.stat == DEAD)) - if(H.z == ZLEVEL_STATION_PRIMARY || SSshuttle.emergency.shuttle_areas[get_area(H)]) + if(H.z == SSmapping.station_start || SSshuttle.emergency.shuttle_areas[get_area(H)]) if(istype(H.wear_neck, /obj/item/clothing/neck/petcollar)) petcount-- if(petcount <= 0) diff --git a/code/citadel/crew_objectives/cit_crewobjectives_civilian.dm b/code/citadel/crew_objectives/cit_crewobjectives_civilian.dm index 0a867266ad..c0e6cf6bb1 100644 --- a/code/citadel/crew_objectives/cit_crewobjectives_civilian.dm +++ b/code/citadel/crew_objectives/cit_crewobjectives_civilian.dm @@ -65,7 +65,7 @@ /datum/objective/crew/responsibility/check_completion() for(var/mob/living/carbon/human/H in GLOB.mob_list) if(H.stat == DEAD && H.drunkenness >= 80) - if(H.z == ZLEVEL_STATION_PRIMARY || SSshuttle.emergency.shuttle_areas[get_area(H)]) + if(H.z == SSmapping.station_start || SSshuttle.emergency.shuttle_areas[get_area(H)]) return FALSE return TRUE diff --git a/code/citadel/crew_objectives/cit_crewobjectives_medical.dm b/code/citadel/crew_objectives/cit_crewobjectives_medical.dm index 53a9dc73aa..21d7a040aa 100644 --- a/code/citadel/crew_objectives/cit_crewobjectives_medical.dm +++ b/code/citadel/crew_objectives/cit_crewobjectives_medical.dm @@ -6,7 +6,7 @@ /datum/objective/crew/morgue/check_completion() for(var/mob/living/carbon/human/H in GLOB.mob_list) - if(H.stat == DEAD && H.z == ZLEVEL_STATION_PRIMARY) + if(H.stat == DEAD && H.z == SSmapping.station_start) if(get_area(H) != /area/medical/morgue) return FALSE return TRUE @@ -80,7 +80,7 @@ /datum/objective/crew/noinfections/check_completion() for(var/mob/living/carbon/human/H in GLOB.mob_list) if(!H.stat == DEAD) - if(H.z == ZLEVEL_STATION_PRIMARY || SSshuttle.emergency.shuttle_areas[get_area(H)]) + if(H.z == SSmapping.station_start || SSshuttle.emergency.shuttle_areas[get_area(H)]) if(H.check_virus() == 2) return FALSE return TRUE diff --git a/code/modules/antagonists/borer/borer_event.dm b/code/modules/antagonists/borer/borer_event.dm index e036c2a474..94af2f1be7 100644 --- a/code/modules/antagonists/borer/borer_event.dm +++ b/code/modules/antagonists/borer/borer_event.dm @@ -26,7 +26,7 @@ for(var/obj/machinery/atmospherics/components/unary/vent_pump/temp_vent in GLOB.machines) if(QDELETED(temp_vent)) continue - if(temp_vent.loc.z == ZLEVEL_STATION_PRIMARY && !temp_vent.welded) + if(temp_vent.loc.z == SSmapping.station_start && !temp_vent.welded) var/datum/pipeline/temp_vent_parent = temp_vent.parents[1] if(temp_vent_parent.other_atmosmch.len > 20) vents += temp_vent From 3effccd281ddc012230d8766fe980e455bd01df0 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 17 Feb 2018 15:24:51 -0600 Subject: [PATCH 84/94] Automatic changelog generation for PR #5496 [ci skip] --- html/changelogs/AutoChangeLog-pr-5496.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5496.yml diff --git a/html/changelogs/AutoChangeLog-pr-5496.yml b/html/changelogs/AutoChangeLog-pr-5496.yml new file mode 100644 index 0000000000..c1e3e1c7d9 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5496.yml @@ -0,0 +1,6 @@ +author: "CitadelStationBot" +delete-after: True +changes: + - refactor: "Map initialization now supports stations with multiple z-levels." + - bugfix: "The map reader no longer sometimes expands the world size inappropriately." + - tweak: "Pride's Mirror's destination has become less predictable." From 7c036d7ca160f0963f55451a43ff83cb39421d79 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 17 Feb 2018 17:46:36 -0600 Subject: [PATCH 85/94] [MIRROR] Select Equipment works on observers (#5554) * Merge pull request #35728 from coiax/select-equipment-on-ghosts Select Equipment works on observers * Select Equipment works on observers --- code/modules/admin/verbs/debug.dm | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index 62530da255..871d43722c 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -679,10 +679,10 @@ GLOBAL_PROTECT(AdminProcCallSpamPrevention) set name = "Test Areas (ALL)" cmd_admin_areatest(FALSE) -/client/proc/cmd_admin_dress(mob/living/carbon/human/M in GLOB.mob_list) +/client/proc/cmd_admin_dress(mob/M in GLOB.mob_list) set category = "Fun" set name = "Select equipment" - if(!ishuman(M)) + if(!(ishuman(M) || isobserver(M))) alert("Invalid mob") return @@ -691,16 +691,22 @@ GLOBAL_PROTECT(AdminProcCallSpamPrevention) if(!dresscode) return + var/mob/living/carbon/human/H + if(isobserver(M)) + H = M.change_mob_type(/mob/living/carbon/human, null, null, TRUE) + else + H = M + SSblackbox.record_feedback("tally", "admin_verb", 1, "Select Equipment") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! - for (var/obj/item/I in M.get_equipped_items()) + for (var/obj/item/I in H.get_equipped_items()) qdel(I) if(dresscode != "Naked") - M.equipOutfit(dresscode) + H.equipOutfit(dresscode) - M.regenerate_icons() + H.regenerate_icons() - log_admin("[key_name(usr)] changed the equipment of [key_name(M)] to [dresscode].") - message_admins("[key_name_admin(usr)] changed the equipment of [key_name_admin(M)] to [dresscode].") + log_admin("[key_name(usr)] changed the equipment of [key_name(H)] to [dresscode].") + message_admins("[key_name_admin(usr)] changed the equipment of [key_name_admin(H)] to [dresscode].") /client/proc/robust_dress_shop() var/list/outfits = list("Cancel","Naked","Custom","As Job...") From 3a202a73b530a69067eb0492be988ac951b60841 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 17 Feb 2018 17:46:38 -0600 Subject: [PATCH 86/94] Automatic changelog generation for PR #5554 [ci skip] --- html/changelogs/AutoChangeLog-pr-5554.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5554.yml diff --git a/html/changelogs/AutoChangeLog-pr-5554.yml b/html/changelogs/AutoChangeLog-pr-5554.yml new file mode 100644 index 0000000000..7db22a96bd --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5554.yml @@ -0,0 +1,5 @@ +author: "coiax" +delete-after: True +changes: + - admin: "Admins can use the Select Equipment verb on observers. Doing so will +humanise them and then apply the equipment." From b3266870a6fde63935298f8be5d18fb7a0660754 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 17 Feb 2018 17:46:46 -0600 Subject: [PATCH 87/94] [MIRROR] Fixes some tool interactions (#5555) * Merge pull request #35724 from DaxDupont/bordlisten-loves-the-cocks Fixes some tool interactions * Fixes some tool interactions --- code/game/machinery/_machinery.dm | 4 ++-- .../modules/atmospherics/machinery/atmosmachinery.dm | 2 +- .../components/unary_devices/thermomachine.dm | 12 ++++++------ 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/code/game/machinery/_machinery.dm b/code/game/machinery/_machinery.dm index 871ad7e4d9..60f331a592 100644 --- a/code/game/machinery/_machinery.dm +++ b/code/game/machinery/_machinery.dm @@ -391,9 +391,9 @@ Class Procs: /obj/machinery/proc/exchange_parts(mob/user, obj/item/storage/part_replacer/W) if(!istype(W)) - return + return FALSE if((flags_1 & NODECONSTRUCT_1) && !W.works_from_distance) - return + return FALSE var/shouldplaysound = 0 if(component_parts) if(panel_open || W.works_from_distance) diff --git a/code/modules/atmospherics/machinery/atmosmachinery.dm b/code/modules/atmospherics/machinery/atmosmachinery.dm index 03f487a2f7..fdb59ec1cf 100644 --- a/code/modules/atmospherics/machinery/atmosmachinery.dm +++ b/code/modules/atmospherics/machinery/atmosmachinery.dm @@ -188,7 +188,7 @@ Pipelines + Other Objects -> Pipe network /obj/machinery/atmospherics/wrench_act(mob/living/user, obj/item/I) if(!can_unwrench(user)) - return TRUE + return ..() var/turf/T = get_turf(src) if (level==1 && isturf(T) && T.intact) diff --git a/code/modules/atmospherics/machinery/components/unary_devices/thermomachine.dm b/code/modules/atmospherics/machinery/components/unary_devices/thermomachine.dm index ce532f9ed8..83a6c8f132 100644 --- a/code/modules/atmospherics/machinery/components/unary_devices/thermomachine.dm +++ b/code/modules/atmospherics/machinery/components/unary_devices/thermomachine.dm @@ -73,20 +73,20 @@ update_icon() /obj/machinery/atmospherics/components/unary/thermomachine/attackby(obj/item/I, mob/user, params) - if(!(on || state_open)) + if(!on) if(default_deconstruction_screwdriver(user, icon_state_open, initial(icon_state), I)) return - if(exchange_parts(user, I)) - return if(default_change_direction_wrench(user, I)) return if(default_deconstruction_crowbar(I)) return + if(exchange_parts(user, I)) + return return ..() -/obj/machinery/atmospherics/components/unary/thermomachine/default_change_direction_wrench(mob/user, obj/item/wrench/W) +/obj/machinery/atmospherics/components/unary/thermomachine/default_change_direction_wrench(mob/user, obj/item/I) if(!..()) - return 0 + return FALSE SetInitDirections() var/obj/machinery/atmospherics/node = nodes[1] if(node) @@ -100,7 +100,7 @@ node.atmosinit() node.addMember(src) build_network() - return 1 + return TRUE /obj/machinery/atmospherics/components/unary/thermomachine/ui_status(mob/user) if(interactive) From 7864d4e475095df43e44ec57b30dde96ea8e1d4a Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 17 Feb 2018 17:46:48 -0600 Subject: [PATCH 88/94] Automatic changelog generation for PR #5555 [ci skip] --- html/changelogs/AutoChangeLog-pr-5555.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5555.yml diff --git a/html/changelogs/AutoChangeLog-pr-5555.yml b/html/changelogs/AutoChangeLog-pr-5555.yml new file mode 100644 index 0000000000..37e6f9f6f2 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5555.yml @@ -0,0 +1,4 @@ +author: "Dax Dupont" +delete-after: True +changes: + - bugfix: "You can rotate freezers and cryo again." From 7d488e8f4c3890ab695dbc35dfc511257da808eb Mon Sep 17 00:00:00 2001 From: Poojawa Date: Sat, 17 Feb 2018 18:04:28 -0600 Subject: [PATCH 89/94] Citadel'd Maps from #5523 (#5551) * #5523 commit + sanity upload * reee * Syncs home brew CItadel changes * updates cit_map_files * reee. --- .../lavaland_surface_syndicate_base1.dmm | 57 +- _maps/RandomRuins/SpaceRuins/TheDerelict.dmm | 39 +- .../RandomRuins/SpaceRuins/caravanambush.dmm | 91 +- _maps/RandomRuins/SpaceRuins/crashedship.dmm | 15 +- .../SpaceRuins/listeningstation.dmm | 8 +- _maps/RandomRuins/SpaceRuins/oldstation.dmm | 63 +- _maps/RandomZLevels/Academy.dmm | 45 +- _maps/RandomZLevels/moonoutpost19.dmm | 80 +- _maps/RandomZLevels/research.dmm | 265 +- _maps/RandomZLevels/snowdin.dmm | 125 +- _maps/RandomZLevels/wildwest.dmm | 64 +- _maps/cit_map_files/BoxStation/BoxStation.dmm | 3726 +- .../Deltastation/DeltaStation2.dmm | 578 +- .../cit_map_files/MetaStation/MetaStation.dmm | 105718 ++++++++------- .../OmegaStation/OmegaStation.dmm | 380 +- .../PubbyStation/PubbyStation.dmm | 563 +- _maps/map_files/BoxStation/BoxStation.dmm | 3726 +- .../map_files/Deltastation/DeltaStation2.dmm | 578 +- _maps/map_files/MetaStation/MetaStation.dmm | 105718 ++++++++------- _maps/map_files/Mining/Lavaland.dmm | 40 +- _maps/map_files/OmegaStation/OmegaStation.dmm | 380 +- _maps/map_files/PubbyStation/PubbyStation.dmm | 563 +- _maps/map_files/debug/runtimestation.dmm | 39 +- _maps/map_files/generic/CentCom.dmm | 495 +- _maps/shuttles/arrival_delta.dmm | 1 + _maps/shuttles/cargo_birdboat.dmm | 3 +- _maps/shuttles/cargo_box.dmm | 3 +- _maps/shuttles/cargo_delta.dmm | 1 + _maps/shuttles/emergency_airless.dmm | 1 + _maps/shuttles/emergency_arena.dmm | 3 +- _maps/shuttles/emergency_asteroid.dmm | 3 +- _maps/shuttles/emergency_bar.dmm | 3 +- _maps/shuttles/emergency_birdboat.dmm | 1 + _maps/shuttles/emergency_box.dmm | 3 +- _maps/shuttles/emergency_cere.dmm | 1 + _maps/shuttles/emergency_clown.dmm | 3 +- _maps/shuttles/emergency_cramped.dmm | 3 +- _maps/shuttles/emergency_delta.dmm | 3 +- _maps/shuttles/emergency_discoinferno.dmm | 3 +- _maps/shuttles/emergency_goon.dmm | 3 +- .../emergency_imfedupwiththisworld.dmm | 3 +- _maps/shuttles/emergency_luxury.dmm | 1 + _maps/shuttles/emergency_meta.dmm | 1 + _maps/shuttles/emergency_meteor.dmm | 1 + _maps/shuttles/emergency_mini.dmm | 1 + _maps/shuttles/emergency_narnar.dmm | 3 +- _maps/shuttles/emergency_pubby.dmm | 1 + _maps/shuttles/emergency_raven.dmm | 1 + _maps/shuttles/emergency_russiafightpit.dmm | 3 +- _maps/shuttles/emergency_scrapheap.dmm | 3 +- _maps/shuttles/emergency_supermatter.dmm | 3 +- _maps/shuttles/emergency_wabbajack.dmm | 1 + _maps/shuttles/ferry_base.dmm | 3 +- _maps/shuttles/ferry_fancy.dmm | 1 + _maps/shuttles/ferry_lighthouse.dmm | 1 + _maps/shuttles/ferry_meat.dmm | 3 +- _maps/shuttles/labour_box.dmm | 1 + _maps/shuttles/mining_box.dmm | 1 + _maps/shuttles/whiteship_box.dmm | 1 + _maps/shuttles/whiteship_cere.dmm | 1 + _maps/shuttles/whiteship_delta.dmm | 19 +- _maps/shuttles/whiteship_meta.dmm | 1 + _maps/shuttles/whiteship_pubby.dmm | 1 + _maps/templates/pirate_ship.dmm | 24 +- code/__DEFINES/layers.dm | 1 + code/game/machinery/doors/poddoor.dm | 2 +- code/modules/mapping/mapping_helpers.dm | 44 +- icons/effects/mapping_helpers.dmi | Bin 600 -> 1604 bytes 68 files changed, 113836 insertions(+), 109684 deletions(-) diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm index 3f24589c0c..bc864fef2d 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm +++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm @@ -10,10 +10,10 @@ /area/lavaland/surface/outdoors) "ad" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/virology{ frequency = 1449; id_tag = "lavaland_syndie_virology_interior"; - locked = 1; name = "Virology Lab Interior Airlock"; req_access_txt = "150" }, @@ -29,6 +29,9 @@ /obj/structure/cable/yellow{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/white, /area/ruin/unpowered/syndicate_lava_base/virology) "ae" = ( @@ -1586,6 +1589,9 @@ req_access_txt = "150" }, /obj/structure/fans/tiny, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/ruin/unpowered/syndicate_lava_base/cargo) "gf" = ( @@ -1609,6 +1615,9 @@ /obj/machinery/door/airlock/external{ req_access_txt = "150" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating, /area/ruin/unpowered/syndicate_lava_base/cargo) "gj" = ( @@ -1801,6 +1810,9 @@ /obj/structure/cable/yellow{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/main) "gB" = ( @@ -2287,6 +2299,7 @@ req_access_txt = "150" }, /obj/structure/fans/tiny, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/ruin/unpowered/syndicate_lava_base/main) "hx" = ( @@ -2516,6 +2529,9 @@ /obj/machinery/door/airlock/external{ req_access_txt = "150" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plating, /area/ruin/unpowered/syndicate_lava_base/main) "hY" = ( @@ -2524,6 +2540,9 @@ req_access_txt = "150" }, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plating, /area/ruin/unpowered/syndicate_lava_base/main) "hZ" = ( @@ -2857,9 +2876,9 @@ /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/main) "iI" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/vault{ id_tag = "syndie_lavaland_vault"; - locked = 1; req_access_txt = "150" }, /turf/open/floor/plasteel/vault{ @@ -4563,6 +4582,7 @@ /obj/machinery/door/airlock/external{ req_access_txt = "150" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/ruin/unpowered/syndicate_lava_base/arrivals) "lU" = ( @@ -5007,6 +5027,9 @@ req_access_txt = "150" }, /obj/structure/fans/tiny, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plating, /area/ruin/unpowered/syndicate_lava_base/arrivals) "mT" = ( @@ -5422,15 +5445,16 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/glass{ autoclose = 0; frequency = 1449; heat_proof = 1; id_tag = "syndie_lavaland_incinerator_interior"; - locked = 1; name = "Turbine Interior Airlock"; req_access_txt = "150" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/engine, /area/ruin/unpowered/syndicate_lava_base/engineering) "nE" = ( @@ -5900,15 +5924,18 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/glass{ autoclose = 0; frequency = 1449; heat_proof = 1; id_tag = "syndie_lavaland_incinerator_exterior"; - locked = 1; name = "Turbine Exterior Airlock"; req_access_txt = "150" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/engine, /area/ruin/unpowered/syndicate_lava_base/engineering) "ou" = ( @@ -6033,6 +6060,24 @@ /obj/structure/sign/departments/chemistry, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/unpowered/syndicate_lava_base/testlab) +"EZ" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "150" + }, +/obj/structure/fans/tiny, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/ruin/unpowered/syndicate_lava_base/arrivals) +"St" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/external{ + req_access_txt = "150" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ruin/unpowered/syndicate_lava_base/arrivals) (1,1,1) = {" aa @@ -6824,10 +6869,10 @@ mt mU np nP -mS +EZ oI oD -lT +St ab ab ab diff --git a/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm b/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm index 857313a6b4..4ee5f467d9 100644 --- a/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm +++ b/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm @@ -1096,6 +1096,9 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plating/airless, /area/ruin/space/derelict/gravity_generator) "dD" = ( @@ -2983,6 +2986,9 @@ /obj/machinery/door/airlock/external{ name = "Arrivals Docking Bay 1" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/ruin/space/derelict/arrival) "jV" = ( @@ -3590,6 +3596,7 @@ /obj/machinery/door/airlock/external{ name = "Escape Airlock" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/ruin/space/derelict/arrival) "ma" = ( @@ -4478,6 +4485,15 @@ icon_state = "damaged3" }, /area/space/nearstation) +"DE" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ruin/space/derelict/arrival) "Ev" = ( /turf/open/floor/plasteel/airless{ icon_state = "damaged2" @@ -4510,6 +4526,15 @@ }, /turf/open/floor/plating/airless, /area/ruin/space/derelict/hallway/primary/port) +"Le" = ( +/obj/machinery/door/airlock/external{ + name = "Arrivals Docking Bay 1" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/space/derelict/arrival) "Lv" = ( /turf/closed/wall, /area/space/nearstation) @@ -4525,6 +4550,14 @@ icon_state = "damaged4" }, /area/ruin/space/derelict/singularity_engine) +"RF" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Access"; + req_access_txt = "10" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel, +/area/ruin/space/derelict/gravity_generator) "Sv" = ( /turf/closed/wall/r_wall, /area/space/nearstation) @@ -8650,7 +8683,7 @@ cw cH cO cO -da +RF dh dt dC @@ -12988,7 +13021,7 @@ kM hf lZ hP -lZ +DE aa aa aa @@ -13880,7 +13913,7 @@ aa aa aa jK -jU +Le jK aa aa diff --git a/_maps/RandomRuins/SpaceRuins/caravanambush.dmm b/_maps/RandomRuins/SpaceRuins/caravanambush.dmm index 5370be03a0..750287f3a2 100644 --- a/_maps/RandomRuins/SpaceRuins/caravanambush.dmm +++ b/_maps/RandomRuins/SpaceRuins/caravanambush.dmm @@ -47,10 +47,12 @@ /turf/template_noop, /area/template_noop) "aj" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 2 + }, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; - id_tag = "caravanpirate_bolt_port"; - locked = 1 + id_tag = "caravanpirate_bolt_port" }, /obj/docking_port/stationary{ dir = 2; @@ -525,6 +527,9 @@ normalspeed = 0; req_access_txt = "150" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plating, /area/shuttle/caravan/syndicate3) "bb" = ( @@ -689,10 +694,12 @@ }, /area/shuttle/caravan/pirate) "dK" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; - id_tag = "caravanpirate_bolt_port"; - locked = 1 + id_tag = "caravanpirate_bolt_port" }, /turf/open/floor/plating, /area/shuttle/caravan/pirate) @@ -1497,18 +1504,22 @@ /turf/open/floor/plating, /area/shuttle/caravan/pirate) "fD" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 2 + }, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; - id_tag = "caravanpirate_bolt_starboard"; - locked = 1 + id_tag = "caravanpirate_bolt_starboard" }, /turf/open/floor/plating, /area/shuttle/caravan/pirate) "fF" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; - id_tag = "caravanpirate_bolt_starboard"; - locked = 1 + id_tag = "caravanpirate_bolt_starboard" }, /turf/open/floor/plating, /area/shuttle/caravan/pirate) @@ -1715,9 +1726,9 @@ /area/shuttle/caravan/freighter3) "gc" = ( /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; req_access_txt = "13" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating/airless, /area/shuttle/caravan/freighter3) "gd" = ( @@ -1794,10 +1805,12 @@ /turf/open/floor/plasteel/vault/airless, /area/shuttle/caravan/freighter1) "gn" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; - id_tag = "caravantrade1_bolt"; - locked = 1 + id_tag = "caravantrade1_bolt" }, /turf/open/floor/plating, /area/shuttle/caravan/freighter1) @@ -2155,9 +2168,9 @@ "hs" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; req_access_txt = "13" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating/airless, /area/shuttle/caravan/freighter2) "ht" = ( @@ -3268,6 +3281,7 @@ timid = 0; width = 15 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/shuttle/caravan/syndicate3) "ks" = ( @@ -3407,9 +3421,9 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/caravan/syndicate2) "kG" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/hatch{ id_tag = "caravansyndicate1_bolt"; - locked = 1; name = "External Airlock"; normalspeed = 0; req_access_txt = "150" @@ -3555,9 +3569,9 @@ }, /area/shuttle/caravan/syndicate3) "kT" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/hatch{ id_tag = "caravansyndicate2_bolt"; - locked = 1; name = "External Airlock"; normalspeed = 0; req_access_txt = "150" @@ -3586,10 +3600,12 @@ /turf/open/floor/plating, /area/shuttle/caravan/syndicate2) "kU" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 2 + }, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; - id_tag = "caravantrade1_bolt"; - locked = 1 + id_tag = "caravantrade1_bolt" }, /obj/docking_port/stationary{ dir = 2; @@ -3669,6 +3685,9 @@ name = "Ready Room"; req_access_txt = "150" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/vault{ dir = 5 }, @@ -3680,12 +3699,15 @@ }, /area/shuttle/caravan/syndicate3) "ld" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/hatch{ id_tag = "caravansyndicate3_bolt_bridge"; - locked = 1; name = "Bridge"; req_access_txt = "150" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel/vault{ dir = 5 }, @@ -3890,6 +3912,25 @@ }, /turf/closed/wall/mineral/plastitanium, /area/ruin/unpowered) +"vE" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/shuttle/caravan/freighter3) +"GL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/shuttle/caravan/freighter2) (1,1,1) = {" aa @@ -6523,7 +6564,7 @@ bg jv jN kb -hs +GL aa aa aa @@ -8236,7 +8277,7 @@ aO if iF je -gc +vE aa aa aa diff --git a/_maps/RandomRuins/SpaceRuins/crashedship.dmm b/_maps/RandomRuins/SpaceRuins/crashedship.dmm index a0157a0720..7dfb3013b6 100644 --- a/_maps/RandomRuins/SpaceRuins/crashedship.dmm +++ b/_maps/RandomRuins/SpaceRuins/crashedship.dmm @@ -65,9 +65,8 @@ /turf/closed/wall/mineral/titanium, /area/awaymission/BMPship/Midship) "ar" = ( -/obj/machinery/door/airlock/silver{ - locked = 1 - }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/silver, /turf/open/floor/plating{ icon_state = "panelscorched" }, @@ -1784,15 +1783,13 @@ }, /area/awaymission/BMPship/Midship) "fY" = ( -/obj/machinery/door/airlock/silver{ - locked = 1 - }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/silver, /turf/open/floor/plasteel, /area/awaymission/BMPship/Aft) "fZ" = ( -/obj/machinery/door/airlock/silver{ - locked = 1 - }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/silver, /obj/structure/cable{ icon_state = "1-2" }, diff --git a/_maps/RandomRuins/SpaceRuins/listeningstation.dmm b/_maps/RandomRuins/SpaceRuins/listeningstation.dmm index 8ca1f1529a..558ff2f255 100644 --- a/_maps/RandomRuins/SpaceRuins/listeningstation.dmm +++ b/_maps/RandomRuins/SpaceRuins/listeningstation.dmm @@ -104,8 +104,10 @@ }, /area/ruin/space/has_grav/listeningstation) "an" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; id_tag = "syndie_listeningpost_external"; req_access_txt = "150" }, @@ -120,8 +122,10 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/listeningstation) "ap" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; id_tag = "syndie_listeningpost_external"; req_access_txt = "150" }, diff --git a/_maps/RandomRuins/SpaceRuins/oldstation.dmm b/_maps/RandomRuins/SpaceRuins/oldstation.dmm index 4953f6166a..9385abeda0 100644 --- a/_maps/RandomRuins/SpaceRuins/oldstation.dmm +++ b/_maps/RandomRuins/SpaceRuins/oldstation.dmm @@ -1929,6 +1929,7 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/maintenance_hatch, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/hydroponics) "fJ" = ( @@ -2132,7 +2133,6 @@ /area/template_noop) "gg" = ( /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Engineering External Access"; req_access = null; req_access_txt = "200" @@ -2144,6 +2144,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/engi) "gh" = ( @@ -2620,6 +2623,9 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/maintenance_hatch, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/kitchen) "ha" = ( @@ -4340,15 +4346,6 @@ }, /turf/open/floor/plasteel/floorgrime, /area/ruin/space/has_grav/ancientstation) -"ln" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; - name = "Engineering External Access"; - req_access = null; - req_access_txt = "10;13" - }, -/turf/closed/mineral, -/area/ruin/unpowered) "lo" = ( /turf/closed/mineral/silver, /area/ruin/unpowered) @@ -4429,6 +4426,31 @@ }, /turf/open/floor/plasteel/floorgrime, /area/ruin/space/has_grav/ancientstation/sec) +"nk" = ( +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/ancientstation/hivebot) +"oM" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access = null; + req_access_txt = "200" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/ancientstation/engi) "Dj" = ( /obj/structure/transit_tube{ dir = 4 @@ -4439,6 +4461,13 @@ /obj/structure/transit_tube/crossing/horizontal, /turf/template_noop, /area/space/nearstation) +"MZ" = ( +/obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/ancientstation/hivebot) (1,1,1) = {" aa @@ -5297,7 +5326,7 @@ aa aa ac ac -ln +ac aa aa aa @@ -5519,7 +5548,7 @@ dl dl fb fD -gg +oM gV hk dl @@ -7519,8 +7548,8 @@ ad ad ad ad -aN -aN +MZ +MZ ad ad ad @@ -7663,8 +7692,8 @@ ad ad ad ad -aN -aN +nk +nk ad ad ad @@ -8279,4 +8308,4 @@ aa aa aa aa -"} +"} \ No newline at end of file diff --git a/_maps/RandomZLevels/Academy.dmm b/_maps/RandomZLevels/Academy.dmm index e1deb83812..82c7bc2018 100644 --- a/_maps/RandomZLevels/Academy.dmm +++ b/_maps/RandomZLevels/Academy.dmm @@ -233,15 +233,13 @@ /turf/open/space, /area/space/nearstation) "aQ" = ( -/obj/machinery/door/airlock/gold{ - locked = 1 - }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/gold, /turf/open/floor/carpet, /area/awaymission/academy/headmaster) "aR" = ( -/obj/machinery/door/airlock/gold{ - locked = 1 - }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/gold, /obj/structure/cable{ icon_state = "1-2" }, @@ -1252,10 +1250,16 @@ "eA" = ( /obj/machinery/door/airlock/public/glass, /obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/awaymission/academy/classrooms) "eB" = ( /obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating, /area/awaymission/academy/classrooms) "eC" = ( @@ -2021,9 +2025,8 @@ /turf/open/floor/carpet, /area/awaymission/academy/academyaft) "gT" = ( -/obj/machinery/door/airlock/gold{ - locked = 1 - }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/gold, /obj/structure/cable{ icon_state = "4-8" }, @@ -3958,6 +3961,26 @@ }, /turf/open/floor/carpet, /area/awaymission/academy/headmaster) +"LW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance_hatch, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/academy/academyaft) +"Tk" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance_hatch, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/academy/academyaft) (1,1,1) = {" aa @@ -10924,7 +10947,7 @@ gq hb hc hc -hD +LW hc hc hc @@ -11184,7 +11207,7 @@ bE bE hc hc -hD +Tk hc hc hc diff --git a/_maps/RandomZLevels/moonoutpost19.dmm b/_maps/RandomZLevels/moonoutpost19.dmm index a11fdc1c18..b345ffd3f8 100644 --- a/_maps/RandomZLevels/moonoutpost19.dmm +++ b/_maps/RandomZLevels/moonoutpost19.dmm @@ -699,9 +699,8 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/highsecurity{ - icon_state = "closed"; - locked = 1; name = "Gateway"; req_access_txt = "150" }, @@ -1023,11 +1022,11 @@ }, /area/awaymission/moonoutpost19/syndicate) "cr" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/public/glass{ density = 0; set_obj_flags = "EMAGGED"; icon_state = "open"; - locked = 1; name = "Dormitories" }, /obj/item/stack/rods, @@ -1336,12 +1335,12 @@ }, /area/awaymission/moonoutpost19/syndicate) "cT" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock{ density = 0; set_obj_flags = "EMAGGED"; icon_state = "open"; id_tag = "awaydorm4"; - locked = 1; name = "Dorm 1"; opacity = 0 }, @@ -1650,14 +1649,15 @@ }, /area/awaymission/moonoutpost19/syndicate) "du" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/external{ density = 0; set_obj_flags = "EMAGGED"; icon_state = "open"; - locked = 1; opacity = 0; req_access_txt = "150" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; heat_capacity = 1e+006 @@ -1810,14 +1810,17 @@ }, /area/awaymission/moonoutpost19/main) "dI" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/external{ density = 0; set_obj_flags = "EMAGGED"; icon_state = "open"; - locked = 1; opacity = 0; req_access_txt = "150" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plating{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; heat_capacity = 1e+006; @@ -2595,11 +2598,11 @@ icon_state = "4-8" }, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/research{ density = 0; set_obj_flags = "EMAGGED"; icon_state = "open"; - locked = 1; name = "Xenobiology Lab"; opacity = 0; req_access_txt = "201" @@ -3727,11 +3730,11 @@ /area/awaymission/moonoutpost19/research) "hD" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/command{ density = 0; set_obj_flags = "EMAGGED"; icon_state = "open"; - locked = 1; name = "Research Director's Office"; opacity = 0; req_access_txt = "201"; @@ -4009,6 +4012,7 @@ req_access_txt = "201"; req_one_access_txt = "0" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/white{ heat_capacity = 1e+006 }, @@ -6103,12 +6107,18 @@ "mL" = ( /obj/machinery/door/airlock/external, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating{ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) "mM" = ( /obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating{ heat_capacity = 1e+006 }, @@ -6614,10 +6624,9 @@ }, /area/awaymission/moonoutpost19/arrivals) "nO" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock{ - icon_state = "closed"; id_tag = "awaydorm3"; - locked = 1; name = "Dorm 3" }, /turf/open/floor/plasteel{ @@ -6811,6 +6820,45 @@ /obj/effect/mapping_helpers/planet_z, /turf/open/space, /area/space) +"vV" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/arrivals) +"zZ" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/arrivals) +"Mm" = ( +/obj/machinery/door/airlock/medical{ + id_tag = ""; + name = "Research Division"; + req_access_txt = "201"; + req_one_access_txt = "0" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/white{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/research) +"Wf" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating{ + heat_capacity = 1e+006 + }, +/area/awaymission/moonoutpost19/arrivals) (1,1,1) = {" aa @@ -36266,10 +36314,10 @@ jG lF lF no -mM +zZ nA nK -mM +Wf dM ba ba @@ -36510,7 +36558,7 @@ hN ie hj hj -ie +Mm jy jU jE @@ -36523,10 +36571,10 @@ mN mg mg mg -mM +zZ lM lN -mM +Wf dM ba ba @@ -41661,7 +41709,7 @@ hI hJ hI hI -mM +vV hI hI nJ diff --git a/_maps/RandomZLevels/research.dmm b/_maps/RandomZLevels/research.dmm index f80dac7a35..2247d29cdf 100644 --- a/_maps/RandomZLevels/research.dmm +++ b/_maps/RandomZLevels/research.dmm @@ -739,6 +739,7 @@ name = "Engine Room"; req_access_txt = "10" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/whiteyellow/side{ dir = 4 }, @@ -757,6 +758,7 @@ name = "Engine Room"; req_access_txt = "10" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/whiteyellow/side{ dir = 8 }, @@ -1299,18 +1301,18 @@ /turf/open/floor/plasteel/red, /area/awaymission/research/interior/security) "dW" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/highsecurity{ aiDisabledIdScanner = 1; - locked = 1; name = "Secure Storage C"; req_access_txt = "36" }, /turf/open/floor/plasteel/dark, /area/awaymission/research/interior/secure) "dX" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/highsecurity{ aiDisabledIdScanner = 1; - locked = 1; name = "Secure Storage D"; req_access_txt = "36" }, @@ -1433,6 +1435,7 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/awaymission/research/interior/maint) "eu" = ( @@ -1866,6 +1869,9 @@ name = "Cryogenetics Research"; req_access_txt = "9" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/whitepurple/side, /area/awaymission/research/interior) "fN" = ( @@ -2024,6 +2030,9 @@ name = "Vault Storage"; req_access_txt = "36" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/awaymission/research/interior/secure) "gm" = ( @@ -2041,6 +2050,9 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating, /area/awaymission/research/interior/secure) "go" = ( @@ -2067,6 +2079,9 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/awaymission/research/interior) "gr" = ( @@ -2092,6 +2107,9 @@ name = "Cryogenetics Research"; req_access_txt = "9" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel/whitepurple, /area/awaymission/research/interior/cryo) "gu" = ( @@ -2490,18 +2508,18 @@ }, /area/awaymission/research/interior/security) "hI" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/highsecurity{ aiDisabledIdScanner = 1; - locked = 1; name = "Secure Storage A"; req_access_txt = "36" }, /turf/open/floor/plasteel/dark, /area/awaymission/research/interior/secure) "hJ" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/highsecurity{ aiDisabledIdScanner = 1; - locked = 1; name = "Secure Storage B"; req_access_txt = "36" }, @@ -4035,6 +4053,9 @@ /obj/machinery/door/airlock/external{ name = "Escape Pod One" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/awaymission/research/interior/escapepods) "mv" = ( @@ -4161,6 +4182,9 @@ /obj/machinery/door/airlock/external{ name = "Escape Pod Two" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/awaymission/research/interior/escapepods) "mP" = ( @@ -4179,6 +4203,9 @@ name = "Escape Pod Three"; req_access_txt = "0" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/awaymission/research/interior/escapepods) "mT" = ( @@ -4226,6 +4253,7 @@ /obj/machinery/door/airlock/external{ name = "Escape Airlock" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/awaymission/research/interior/escapepods) "na" = ( @@ -4250,6 +4278,195 @@ "nf" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/awaymission/research/interior/engineering) +"pt" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Three"; + req_access_txt = "0" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/research/interior/escapepods) +"su" = ( +/obj/machinery/door/airlock/medical{ + name = "Medical" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side, +/area/awaymission/research/interior) +"tE" = ( +/obj/machinery/door/airlock/medical{ + name = "Medical" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/awaymission/research/interior) +"va" = ( +/obj/machinery/door/airlock/research{ + name = "Cryogenetics Research"; + req_access_txt = "9" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/side, +/area/awaymission/research/interior) +"wM" = ( +/obj/machinery/door/airlock/medical{ + name = "Medical" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/side, +/area/awaymission/research/interior) +"xG" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Two" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/research/interior/escapepods) +"zn" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/research/interior/maint) +"Bx" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "10" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 4 + }, +/area/awaymission/research/interior) +"Do" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/research/interior/maint) +"Km" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/whitered/side, +/area/awaymission/research/interior) +"Qd" = ( +/obj/machinery/door/airlock/medical{ + name = "Medical" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/awaymission/research/interior) +"Qz" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/whitered/side{ + dir = 1 + }, +/area/awaymission/research/interior) +"TD" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "10" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 8 + }, +/area/awaymission/research/interior) +"TE" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod One" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/research/interior/escapepods) +"Uu" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/whitered/side, +/area/awaymission/research/interior) +"UA" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/research/interior/maint) +"WR" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/whitered/side{ + dir = 1 + }, +/area/awaymission/research/interior) +"XE" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/research/interior/escapepods) (1,1,1) = {" aa @@ -34959,7 +35176,7 @@ fC gs fC fC -et +zn dZ cc aH @@ -38586,15 +38803,15 @@ iX cd ma mb -mu +TE mb mb mb -mO +xG mb mb mb -mS +pt mb mb ad @@ -39626,7 +39843,7 @@ mE mZ mv mv -mZ +XE aa aa aa @@ -40866,9 +41083,9 @@ cp cp eH cp -fM +va gB -fM +va cp eH cp @@ -41631,7 +41848,7 @@ cp cp cM cp -aP +UA cp cp ej @@ -41887,7 +42104,7 @@ cf cq cA cN -cZ +Bx dl dz cZ @@ -41939,7 +42156,7 @@ mE mZ mv mv -mZ +XE aa aa aa @@ -42401,7 +42618,7 @@ bd cs cC cP -da +TD dn dB da @@ -42659,7 +42876,7 @@ cp cp cp cp -aP +Do cp cp ei @@ -42938,9 +43155,9 @@ bD bD cc cp -jt +su jK -kf +tE cp cd dC @@ -43436,9 +43653,9 @@ cp cp cp cp -fS +Km cp -hb +Qz cp cp cp @@ -43709,9 +43926,9 @@ ad aH cd cp -jt +wM cp -kf +Qd cp cd aH @@ -44207,9 +44424,9 @@ aH aH eP cp -fS +Uu cp -hb +WR cp hD aH diff --git a/_maps/RandomZLevels/snowdin.dmm b/_maps/RandomZLevels/snowdin.dmm index a4092eb7da..702bc9ca4e 100644 --- a/_maps/RandomZLevels/snowdin.dmm +++ b/_maps/RandomZLevels/snowdin.dmm @@ -5003,10 +5003,12 @@ pixel_x = 5; pixel_y = 5 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/awaymission/snowdin/post/garage) "lN" = ( /obj/machinery/door/airlock/external/glass, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/awaymission/snowdin/post/garage) "lO" = ( @@ -6816,6 +6818,7 @@ /obj/machinery/door/airlock/external/glass, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/barricade/wooden/crude, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/awaymission/snowdin/post) "qs" = ( @@ -6826,6 +6829,7 @@ pixel_y = 5 }, /obj/structure/barricade/wooden/crude, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/awaymission/snowdin/post) "qt" = ( @@ -7150,6 +7154,9 @@ "rc" = ( /obj/machinery/door/airlock/external/glass, /obj/structure/fans/tiny, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/awaymission/snowdin/post/cavern2) "rd" = ( @@ -7161,6 +7168,9 @@ /area/awaymission/snowdin/post/cavern2) "re" = ( /obj/machinery/door/airlock/external/glass, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating, /area/awaymission/snowdin/post/cavern2) "rf" = ( @@ -7234,15 +7244,16 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/glass{ autoclose = 0; frequency = 1449; heat_proof = 1; id_tag = "snowdin_turbine_exterior"; - locked = 1; name = "Turbine Exterior Airlock"; req_access_txt = "32" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/engine, /area/awaymission/snowdin/post/engineering) "rr" = ( @@ -7358,6 +7369,9 @@ "rH" = ( /obj/machinery/door/airlock/external/glass, /obj/structure/barricade/wooden/crude/snow, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plating, /area/awaymission/snowdin/post) "rI" = ( @@ -7553,15 +7567,18 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/glass{ autoclose = 0; frequency = 1449; heat_proof = 1; id_tag = "snowdin_turbine_interior"; - locked = 1; name = "Turbine Interior Airlock"; req_access_txt = "32" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/engine, /area/awaymission/snowdin/post/engineering) "sh" = ( @@ -8466,6 +8483,9 @@ "uZ" = ( /obj/machinery/door/airlock/external/glass, /obj/structure/fans/tiny, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/awaymission/snowdin/post/cavern1) "va" = ( @@ -8476,6 +8496,9 @@ /area/awaymission/snowdin/post/cavern1) "vb" = ( /obj/machinery/door/airlock/external/glass, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating, /area/awaymission/snowdin/post/cavern1) "vc" = ( @@ -8909,7 +8932,7 @@ desc = "A turret built with substandard parts and run down further with age."; icon_state = "syndie_off"; dir = 9; - faction = list("pirate") + faction = "pirate" }, /turf/open/floor/plating/snowed/smoothed, /area/awaymission/snowdin/cave) @@ -10014,6 +10037,7 @@ /area/awaymission/snowdin/post/mining_dock) "zn" = ( /obj/machinery/door/airlock/external/glass, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) "zo" = ( @@ -10235,6 +10259,9 @@ "zS" = ( /obj/machinery/door/airlock/external/glass, /obj/structure/fans/tiny, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) "zT" = ( @@ -10460,6 +10487,9 @@ /area/awaymission/snowdin/outside) "AC" = ( /obj/machinery/door/airlock/external/glass, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating/snowed, /area/awaymission/snowdin/outside) "AD" = ( @@ -12388,6 +12418,7 @@ /area/awaymission/snowdin/post/mining_main) "Gb" = ( /obj/machinery/door/airlock/external/glass, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main) "Gc" = ( @@ -13436,8 +13467,10 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) "Jl" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/mining/glass{ - cyclelinkeddir = 8; name = "Mining Dock"; req_access_txt = "48" }, @@ -13479,8 +13512,10 @@ /turf/open/floor/plating/snowed/cavern, /area/awaymission/snowdin/cave/cavern) "Jr" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/mining/glass{ - cyclelinkeddir = 8; name = "Mining Dock"; req_access_txt = "48" }, @@ -14102,6 +14137,62 @@ /obj/effect/spawner/lootdrop/crate_spawner, /turf/open/floor/plating/asteroid/snow/ice, /area/awaymission/snowdin/cave/cavern) +"Lw" = ( +/obj/machinery/door/airlock/external/glass, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/snowdin/post/minipost) +"Lx" = ( +/obj/machinery/door/airlock/external/glass, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/snowdin/post/mining_dock) +"OF" = ( +/obj/machinery/door/airlock/external{ + name = "Ready Room"; + req_access_txt = "150" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/awaymission/snowdin/cave) +"PR" = ( +/obj/machinery/door/airlock/external{ + name = "Ready Room"; + req_access_txt = "150" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/awaymission/snowdin/cave) +"SX" = ( +/obj/machinery/door/airlock/external/glass, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/snowdin/post/mining_main) +"VW" = ( +/obj/machinery/door/airlock/external/glass, +/obj/structure/fans/tiny, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/awaymission/snowdin/post/mining_dock) +"Yn" = ( +/obj/machinery/door/airlock/external/glass, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/snowdin/post/garage) (1,1,1) = {" aa @@ -25559,7 +25650,7 @@ yW yW Ah Av -Av +Lw yX AY Be @@ -25645,7 +25736,7 @@ dX Gb Gq Gq -Gb +SX GR HW Gq @@ -25902,7 +25993,7 @@ dX Gb Gq GR -Gb +SX HG HX HX @@ -31615,7 +31706,7 @@ kU lM mx mS -lN +Yn dX dX af @@ -31872,7 +31963,7 @@ kV lN my mT -lN +Yn dX dX af @@ -34856,11 +34947,11 @@ wS an an Dy -DG +PR CX CX CX -DG +OF En Es Dp @@ -60589,10 +60680,10 @@ oZ Fk oZ oZ -zS +VW FH wL -zn +Lx xy Gj xy @@ -60846,10 +60937,10 @@ sY oZ oZ oZ -zS +VW wL FK -zn +Lx xy xy wL @@ -79637,4 +79728,4 @@ ad ad ad ad -"} \ No newline at end of file +"} diff --git a/_maps/RandomZLevels/wildwest.dmm b/_maps/RandomZLevels/wildwest.dmm index cdc243eb85..b589ad88d6 100644 --- a/_maps/RandomZLevels/wildwest.dmm +++ b/_maps/RandomZLevels/wildwest.dmm @@ -138,9 +138,8 @@ /turf/open/floor/carpet, /area/awaymission/wildwest/vault) "aF" = ( -/obj/machinery/door/airlock/vault{ - locked = 1 - }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/vault, /turf/open/floor/engine/cult, /area/awaymission/wildwest/vaultdoors) "aG" = ( @@ -153,9 +152,8 @@ /turf/closed/mineral/gold, /area/awaymission/wildwest/mines) "aJ" = ( -/obj/machinery/door/airlock/vault{ - locked = 1 - }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/vault, /turf/open/floor/engine/cult, /area/awaymission/wildwest/vault) "aK" = ( @@ -1142,6 +1140,7 @@ /area/awaymission/wildwest/gov) "dU" = ( /obj/machinery/door/airlock/sandstone, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating/ironsand{ icon_state = "ironsand1" }, @@ -1530,6 +1529,9 @@ /area/awaymission/wildwest/gov) "fd" = ( /obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/awaymission/wildwest/refine) "fe" = ( @@ -1909,6 +1911,9 @@ /area/awaymission/wildwest/mines) "gi" = ( /obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/grass, /area/awaymission/wildwest/gov) "gj" = ( @@ -2126,6 +2131,41 @@ icon_state = "ironsand1" }, /area/awaymission/wildwest/mines) +"pD" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel, +/area/awaymission/wildwest/refine) +"Gh" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/grass, +/area/awaymission/wildwest/gov) +"Kh" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/wildwest/refine) +"RN" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/wildwest/refine) +"Ua" = ( +/obj/machinery/door/airlock/sandstone, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating/ironsand{ + icon_state = "ironsand1" + }, +/area/awaymission/wildwest/gov) (1,1,1) = {" aa @@ -21314,7 +21354,7 @@ eN eg ex eg -dU +Ua fL fL fL @@ -21571,7 +21611,7 @@ eh fc eh es -dU +Ua fL fL fL @@ -23374,7 +23414,7 @@ bv fM fW gb -gi +Gh go fW fW @@ -27993,7 +28033,7 @@ et et eJ eR -fd +RN fj fo fA @@ -29033,10 +29073,10 @@ eu eu eu eu -fd +pD eu eu -fd +Kh gL gQ gQ diff --git a/_maps/cit_map_files/BoxStation/BoxStation.dmm b/_maps/cit_map_files/BoxStation/BoxStation.dmm index 87757e7a98..11646eaa1a 100644 --- a/_maps/cit_map_files/BoxStation/BoxStation.dmm +++ b/_maps/cit_map_files/BoxStation/BoxStation.dmm @@ -647,6 +647,7 @@ id_tag = "permabolt3"; name = "Cell 3" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/floorgrime, /area/security/prison) "acf" = ( @@ -659,6 +660,7 @@ name = "Cell 2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/floorgrime, /area/security/prison) "acg" = ( @@ -674,6 +676,7 @@ name = "Cell 1" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/floorgrime, /area/security/prison) "ach" = ( @@ -700,6 +703,9 @@ /turf/open/floor/carpet, /area/crew_quarters/heads/hos) "ack" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -737,10 +743,6 @@ /obj/structure/closet/secure_closet/hos, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"aco" = ( -/obj/structure/closet/bombcloset/security, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) "acp" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/showroomfloor, @@ -1000,6 +1002,7 @@ name = "Security External Airlock"; req_access_txt = "63" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/security/main) "acV" = ( @@ -1341,6 +1344,9 @@ name = "Long-Term Cell 3"; req_access_txt = "2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) "adI" = ( @@ -1349,6 +1355,9 @@ req_access_txt = "2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) "adJ" = ( @@ -1360,6 +1369,9 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) "adK" = ( @@ -2134,6 +2146,9 @@ name = "Escape Pod Three"; req_access_txt = "0" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating, /area/security/main) "afp" = ( @@ -2344,8 +2359,8 @@ /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) "afP" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/command{ - cyclelinkeddir = 2; name = "Command Tool Storage"; req_access = null; req_access_txt = "19" @@ -3571,6 +3586,13 @@ dir = 5 }, /area/security/brig) +"aiH" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/brig) "aiI" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3610,28 +3632,19 @@ /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "aiL" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/warden) -"aiM" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control"; - req_access_txt = "3" +/obj/machinery/computer/secure_data{ + dir = 1 }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"aiN" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, +"aiM" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/pen, +/obj/item/hand_labeler, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/light, +/turf/open/floor/plasteel/showroomfloor, /area/security/warden) "aiO" = ( /obj/structure/window/reinforced{ @@ -4078,6 +4091,7 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/maintenance/solars/port/fore) "ajZ" = ( @@ -4325,7 +4339,7 @@ /turf/open/floor/plasteel/red/side{ dir = 1 }, -/area/hallway/primary/fore) +/area/security/brig) "akA" = ( /obj/structure/chair{ dir = 8; @@ -4461,13 +4475,13 @@ /turf/open/floor/plasteel/dark, /area/security/brig) "akV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, /obj/structure/cable{ icon_state = "0-8" }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/brig) "akX" = ( @@ -4532,7 +4546,7 @@ /turf/open/floor/plasteel/red/side{ dir = 5 }, -/area/hallway/primary/fore) +/area/security/brig) "alg" = ( /obj/structure/cable{ icon_state = "0-2" @@ -4549,6 +4563,9 @@ req_access = null; req_access_txt = "10; 13" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) "ali" = ( @@ -4568,6 +4585,9 @@ req_access_txt = "2"; shuttledocked = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/security/processing) "alp" = ( @@ -4674,11 +4694,10 @@ /turf/open/floor/plasteel/dark, /area/security/brig) "alC" = ( -/obj/item/twohanded/required/kirbyplants/random, /turf/open/floor/plasteel/red/side{ dir = 9 }, -/area/hallway/primary/fore) +/area/security/brig) "alD" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -4689,7 +4708,7 @@ /turf/open/floor/plasteel/red/side{ dir = 5 }, -/area/hallway/primary/fore) +/area/security/brig) "alF" = ( /obj/machinery/atmospherics/components/unary/tank/air{ dir = 2 @@ -4744,6 +4763,17 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/maintenance/fore/secondary) +"alN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "seclobby"; + name = "security shutters" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/brig) "alO" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -4906,11 +4936,6 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"amo" = ( -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/hallway/primary/fore) "amp" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 4"; @@ -4927,7 +4952,7 @@ /turf/open/floor/plasteel/red/side{ dir = 4 }, -/area/hallway/primary/fore) +/area/security/brig) "amr" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -4954,8 +4979,8 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13" @@ -5040,6 +5065,15 @@ /obj/item/trash/plate, /turf/open/floor/plating, /area/maintenance/port/fore) +"amI" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Cryogenics APC"; + pixel_x = 24 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/crew_quarters/cryopod) "amL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/spawner/structure/window/reinforced, @@ -5302,11 +5336,6 @@ dir = 4 }, /area/hallway/primary/fore) -"anB" = ( -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/hallway/primary/fore) "anC" = ( /obj/effect/spawner/structure/window, /obj/machinery/door/poddoor/shutters/preopen{ @@ -5314,7 +5343,7 @@ name = "security shutters" }, /turf/open/floor/plating, -/area/security/courtroom) +/area/security/brig) "anD" = ( /obj/structure/cable{ icon_state = "1-2" @@ -5330,6 +5359,9 @@ cyclelinkeddir = 4; req_access_txt = "13" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/maintenance/fore/secondary) "anF" = ( @@ -5369,6 +5401,9 @@ name = "Labor Camp Shuttle Airlock"; shuttledocked = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/security/processing) "anO" = ( @@ -5417,7 +5452,7 @@ name = "security shutters" }, /turf/open/floor/plasteel, -/area/hallway/primary/fore) +/area/security/brig) "anU" = ( /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ @@ -5428,7 +5463,7 @@ name = "Courtroom" }, /turf/open/floor/plasteel/dark, -/area/security/courtroom) +/area/security/brig) "anV" = ( /obj/machinery/light/small, /turf/open/floor/plasteel/dark, @@ -5651,7 +5686,7 @@ /turf/open/floor/plasteel/red/side{ dir = 10 }, -/area/hallway/primary/fore) +/area/security/brig) "aoC" = ( /obj/structure/chair{ dir = 1 @@ -5661,7 +5696,7 @@ pixel_y = -29 }, /turf/open/floor/plasteel/red/side, -/area/hallway/primary/fore) +/area/security/brig) "aoD" = ( /obj/machinery/camera{ c_tag = "Fore Primary Hallway East"; @@ -5676,18 +5711,18 @@ dir = 1 }, /turf/open/floor/plasteel/red/side, -/area/hallway/primary/fore) +/area/security/brig) "aoE" = ( /obj/structure/table, /obj/machinery/chem_dispenser/drinks, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/bar, -/area/hallway/primary/fore) +/area/security/brig) "aoF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/plasteel/red/side, -/area/hallway/primary/fore) +/area/security/brig) "aoG" = ( /obj/structure/table, /obj/machinery/firealarm{ @@ -6365,6 +6400,9 @@ req_access = null; req_access_txt = "13" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plating, /area/maintenance/starboard/fore) "aqw" = ( @@ -6440,8 +6478,8 @@ /turf/open/floor/plating, /area/shuttle/auxillary_base) "aqJ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "External Access"; req_access = null; req_access_txt = "13" @@ -7385,7 +7423,6 @@ /area/crew_quarters/heads/hos) "atp" = ( /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Construction Zone"; req_access = null; req_access_txt = "0"; @@ -8017,8 +8054,10 @@ /turf/open/floor/plating, /area/maintenance/port/fore) "avd" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; req_access_txt = "13" }, /turf/open/floor/plating, @@ -9808,8 +9847,8 @@ /turf/open/floor/plating, /area/maintenance/department/electrical) "azy" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Port Docking Bay 1" }, /turf/open/floor/plating, @@ -11983,6 +12022,7 @@ name = "EVA Storage"; req_access_txt = "18" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) "aEY" = ( @@ -13059,9 +13099,8 @@ /turf/closed/wall/r_wall, /area/ai_monitored/nuke_storage) "aHG" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/vault{ - icon_state = "door_locked"; - locked = 1; req_access_txt = "53" }, /obj/structure/cable{ @@ -14562,7 +14601,6 @@ /area/maintenance/port/fore) "aLu" = ( /obj/machinery/door/airlock/engineering{ - cyclelinkeddir = 1; name = "Auxillary Base Construction"; req_access_txt = "0"; req_one_access_txt = "32;47;48" @@ -16416,8 +16454,10 @@ /turf/open/floor/plating, /area/hallway/secondary/exit) "aQF" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Security Escape Airlock"; req_access_txt = "2" }, @@ -17322,8 +17362,10 @@ /turf/open/floor/plasteel, /area/hallway/secondary/exit) "aTn" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Escape Airlock" }, /obj/structure/sign/warning/vacuum/external{ @@ -17332,8 +17374,10 @@ /turf/open/floor/plating, /area/hallway/secondary/exit) "aTo" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Escape Airlock" }, /turf/open/floor/plating, @@ -18605,8 +18649,10 @@ /obj/structure/cable{ icon_state = "0-4" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 4; name = "Bridge"; req_access_txt = "19" }, @@ -18623,8 +18669,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 8; name = "Bridge"; req_access_txt = "19" }, @@ -18820,8 +18868,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 4; name = "Bridge"; req_access_txt = "19" }, @@ -18853,8 +18903,10 @@ /obj/structure/cable{ icon_state = "0-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 8; name = "Bridge"; req_access_txt = "19" }, @@ -19057,8 +19109,10 @@ /turf/open/floor/plasteel, /area/hallway/secondary/exit) "aXI" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; id_tag = null; name = "Port Docking Bay 2"; req_access_txt = "0" @@ -21203,8 +21257,10 @@ /turf/open/floor/plasteel, /area/hallway/secondary/exit) "bdA" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Cargo Escape Airlock" }, /turf/open/floor/plating, @@ -21705,16 +21761,16 @@ }, /area/hallway/secondary/exit) "beK" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Port Docking Bay 4"; req_access_txt = "0" }, /turf/open/floor/plating, /area/hallway/secondary/entry) "beL" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Port Docking Bay 3"; req_access_txt = "0" }, @@ -22354,18 +22410,6 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/open/floor/plating, /area/maintenance/port) -"bgx" = ( -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/bar) "bgy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 @@ -22798,8 +22842,8 @@ /turf/closed/wall, /area/science/research) "bhB" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/research{ - cyclelinkeddir = 2; name = "Research Division Access"; req_access_txt = "47" }, @@ -24250,6 +24294,7 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/maintenance/central/secondary) "ble" = ( @@ -24583,8 +24628,10 @@ /turf/open/floor/plating, /area/maintenance/starboard) "blP" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; req_access_txt = "13" }, /turf/open/floor/plating, @@ -24636,8 +24683,10 @@ /turf/open/floor/plating, /area/quartermaster/storage) "blX" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/research{ - cyclelinkeddir = 1; name = "Research Division Access"; req_access_txt = "47" }, @@ -26646,6 +26695,9 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plating, /area/maintenance/central/secondary) "bqL" = ( @@ -27095,8 +27147,10 @@ /turf/open/floor/plating, /area/maintenance/starboard) "brJ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Supply Dock Airlock"; req_access_txt = "31" }, @@ -27929,6 +27983,7 @@ req_access_txt = "11" }, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/engine/gravity_generator) "btG" = ( @@ -33212,6 +33267,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/maintenance/starboard) "bFZ" = ( @@ -33445,6 +33501,9 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/white, /area/science/mixing) "bGD" = ( @@ -34103,16 +34162,16 @@ req_access_txt = "39" }, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/virology{ autoclose = 0; frequency = 1449; - icon_state = "door_locked"; id_tag = "virology_airlock_exterior"; - locked = 1; name = "Virology Exterior Airlock"; req_access_txt = "39" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/white, /area/medical/virology) "bIg" = ( @@ -34487,6 +34546,9 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/science/mixing) "bIT" = ( @@ -34549,8 +34611,10 @@ /turf/open/floor/plating/airless, /area/science/test_area) "bJb" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Mining Dock Airlock"; req_access = null; req_access_txt = "48"; @@ -34571,8 +34635,10 @@ /turf/open/space/basic, /area/space) "bJd" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/mining/glass{ - cyclelinkeddir = 8; name = "Mining Dock"; req_access_txt = "48" }, @@ -36417,26 +36483,24 @@ /turf/open/floor/engine/vacuum, /area/science/mixing) "bNu" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/research/glass{ autoclose = 0; frequency = 1449; heat_proof = 1; - icon_state = "door_locked"; id_tag = "tox_airlock_exterior"; - locked = 1; name = "Mixing Room Exterior Airlock"; req_access_txt = "8" }, /turf/open/floor/engine, /area/science/mixing) "bNv" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/research/glass{ autoclose = 0; frequency = 1449; heat_proof = 1; - icon_state = "door_locked"; id_tag = "tox_airlock_interior"; - locked = 1; name = "Mixing Room Interior Airlock"; req_access_txt = "8" }, @@ -38278,16 +38342,18 @@ icon_state = "1-2" }, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/virology{ autoclose = 0; frequency = 1449; - icon_state = "door_locked"; id_tag = "virology_airlock_interior"; - locked = 1; name = "Virology Interior Airlock"; req_access_txt = "39" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/white, /area/medical/virology) "bRQ" = ( @@ -39389,7 +39455,7 @@ icon_state = "4-8" }, /turf/open/floor/plating, -/area/maintenance/port/aft) +/area/maintenance/bar) "bUx" = ( /obj/structure/disposalpipe/junction/yjunction{ dir = 1 @@ -40580,8 +40646,10 @@ /turf/open/floor/plating, /area/maintenance/starboard/aft) "bXv" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Access"; req_access = null; req_access_txt = "13" @@ -41643,8 +41711,10 @@ }, /area/tcommsat/server) "cal" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/engineering/glass{ - cyclelinkeddir = 4; name = "Server Room"; req_access_txt = "61" }, @@ -41656,8 +41726,10 @@ }, /area/tcommsat/computer) "can" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/engineering/glass{ - cyclelinkeddir = 8; name = "Server Room"; req_access_txt = "61" }, @@ -43860,8 +43932,8 @@ /turf/open/floor/plasteel, /area/engine/engineering) "cfM" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/engineering{ - cyclelinkeddir = 2; name = "Engine Room"; req_access_txt = "10" }, @@ -44279,8 +44351,10 @@ /turf/open/floor/plating, /area/crew_quarters/heads/chief) "cgT" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/engineering{ - cyclelinkeddir = 8; name = "SMES Room"; req_access_txt = "32" }, @@ -44377,8 +44451,10 @@ }, /area/engine/atmos) "che" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Atmospherics External Airlock"; req_access_txt = "24" }, @@ -44683,8 +44759,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13" @@ -45468,8 +45546,8 @@ /turf/open/floor/plasteel, /area/engine/engineering) "cjR" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Engineering External Access"; req_access = null; req_access_txt = "10;13" @@ -45550,8 +45628,10 @@ id = "testlab"; name = "test chamber blast door" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/research/glass{ - cyclelinkeddir = 4; name = "Test Chamber"; req_access_txt = "47" }, @@ -45825,8 +45905,10 @@ /turf/open/floor/plasteel, /area/science/misc_lab) "ckN" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/research/glass{ - cyclelinkeddir = 8; name = "Test Chamber"; req_access_txt = "47" }, @@ -46283,19 +46365,19 @@ /turf/closed/wall/r_wall, /area/maintenance/disposal/incinerator) "cmf" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/public/glass{ autoclose = 0; frequency = 1449; heat_proof = 1; - icon_state = "door_locked"; id_tag = "incinerator_airlock_interior"; - locked = 1; name = "Turbine Interior Airlock"; req_access_txt = "32" }, /obj/structure/cable/yellow{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/engine, /area/maintenance/disposal/incinerator) "cmg" = ( @@ -46499,6 +46581,11 @@ dir = 1 }, /area/engine/engineering) +"cmR" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/wood, +/area/maintenance/bar) "cmU" = ( /obj/machinery/light/small, /turf/open/floor/engine/n2, @@ -46618,8 +46705,8 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13" @@ -46759,19 +46846,21 @@ /turf/closed/wall, /area/construction) "cnC" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/public/glass{ autoclose = 0; frequency = 1449; heat_proof = 1; - icon_state = "door_locked"; id_tag = "incinerator_airlock_exterior"; - locked = 1; name = "Turbine Exterior Airlock"; req_access_txt = "32" }, /obj/structure/cable/yellow{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/engine, /area/maintenance/disposal/incinerator) "cnD" = ( @@ -47002,13 +47091,6 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"col" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/wood, -/area/maintenance/bar) "cop" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 1; @@ -47126,8 +47208,10 @@ /turf/open/floor/plasteel, /area/engine/engine_smes) "coB" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/engineering{ - cyclelinkeddir = 4; name = "SMES Room"; req_access_txt = "32" }, @@ -47449,8 +47533,10 @@ /turf/open/floor/plasteel/white, /area/medical/sleeper) "cpI" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Escape Pod Four"; req_access = null; req_access_txt = "0" @@ -47821,8 +47907,8 @@ /turf/open/floor/plasteel, /area/engine/engineering) "cqA" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Engineering External Access"; req_access = null; req_access_txt = "10;13" @@ -47861,6 +47947,7 @@ name = "Supermatter Chamber"; req_access_txt = "10" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/engine, /area/engine/supermatter) "cqF" = ( @@ -48091,6 +48178,9 @@ name = "Supermatter Chamber"; req_access_txt = "10" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/engine, /area/engine/supermatter) "cru" = ( @@ -48319,8 +48409,10 @@ /turf/open/floor/plasteel/dark, /area/engine/engineering) "csg" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Engineering External Access"; req_access = null; req_access_txt = "10;13" @@ -48559,8 +48651,10 @@ /turf/open/space, /area/solar/starboard/aft) "cta" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "MiniSat External Access"; req_access = null; req_access_txt = "65;13" @@ -50246,6 +50340,9 @@ name = "Escape Pod Three"; req_access_txt = "0" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/security/main) "cxJ" = ( @@ -50254,14 +50351,19 @@ name = "Labor Camp Shuttle Airlock"; req_access_txt = "2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating, /area/security/processing) "cxN" = ( /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13" @@ -50273,11 +50375,25 @@ cyclelinkeddir = 8; name = "Labor Camp Shuttle Airlock" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating, /area/security/processing) +"cxR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/brig) "cxW" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "External Access"; req_access = null; req_access_txt = "13" @@ -50293,17 +50409,21 @@ /turf/open/floor/plating, /area/hallway/secondary/entry) "cya" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; req_access_txt = "13" }, /turf/open/floor/plating, /area/maintenance/fore) "cyb" = ( /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Escape Pod One" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/hallway/secondary/entry) "cyd" = ( @@ -50318,8 +50438,10 @@ /turf/open/space/basic, /area/space) "cyg" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/command{ - cyclelinkeddir = 1; name = "Command Tool Storage"; req_access = null; req_access_txt = "19" @@ -50327,16 +50449,20 @@ /turf/open/floor/plasteel/dark, /area/ai_monitored/storage/eva) "cyh" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Security Escape Airlock"; req_access_txt = "2" }, /turf/open/floor/plating, /area/hallway/secondary/exit) "cyl" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; id_tag = null; name = "Port Docking Bay 2"; req_access_txt = "0" @@ -50344,53 +50470,67 @@ /turf/open/floor/plating, /area/hallway/secondary/entry) "cyp" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Escape Airlock" }, /turf/open/floor/plating, /area/hallway/secondary/exit) "cyr" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Cargo Escape Airlock" }, /turf/open/floor/plating, /area/hallway/secondary/exit) "cyt" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Port Docking Bay 4"; req_access_txt = "0" }, /turf/open/floor/plating, /area/hallway/secondary/entry) "cyu" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Port Docking Bay 3"; req_access_txt = "0" }, /turf/open/floor/plating, /area/hallway/secondary/entry) "cyC" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; req_access_txt = "13" }, /turf/open/floor/plating, /area/maintenance/starboard) "cyD" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Supply Dock Airlock"; req_access_txt = "31" }, /turf/open/floor/plating, /area/quartermaster/storage) "cyE" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Access"; req_access = null; req_access_txt = "13" @@ -50398,8 +50538,10 @@ /turf/open/floor/plating, /area/maintenance/port/aft) "cyG" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Atmospherics External Airlock"; req_access_txt = "24" }, @@ -50409,8 +50551,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13" @@ -50427,8 +50571,10 @@ /turf/open/floor/plating, /area/maintenance/port/aft) "cyM" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/engineering{ - cyclelinkeddir = 1; name = "Engine Room"; req_access_txt = "10" }, @@ -50450,8 +50596,10 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13" @@ -50459,8 +50607,10 @@ /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) "czg" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Escape Pod Four"; req_access = null; req_access_txt = "0"; @@ -50469,8 +50619,10 @@ /turf/open/floor/plating, /area/engine/engineering) "czk" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "MiniSat External Access"; req_access = null; req_access_txt = "65;13" @@ -51989,6 +52141,10 @@ /obj/structure/lattice, /turf/open/space, /area/space/nearstation) +"cEm" = ( +/obj/machinery/vending/autodrobe, +/turf/open/floor/wood, +/area/maintenance/bar) "cEr" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ @@ -53022,12 +53178,45 @@ /turf/open/space/basic, /area/space) "cIh" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Port Docking Bay 1" }, /turf/open/floor/plating, /area/hallway/secondary/entry) +"cKh" = ( +/obj/structure/bed, +/obj/item/bedsheet/grey, +/obj/effect/decal/cleanable/semen{ + desc = "Blech."; + name = "dried semen" + }, +/obj/effect/spawner/lootdrop/costume, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/bar) +"cKI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + cyclelinkeddir = 1; + id_tag = "lobbyairlock"; + name = "Security Lobby"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/brig) +"cLr" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/brig) "cMm" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, @@ -53186,6 +53375,9 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plating, /area/maintenance/starboard/aft) "cNY" = ( @@ -53227,15 +53419,19 @@ /turf/open/floor/plating, /area/maintenance/starboard/aft) "cPH" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; req_access_txt = "13" }, /turf/open/floor/plating, /area/maintenance/starboard/aft) "cPI" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; req_access_txt = "13" }, /turf/open/floor/plating, @@ -53642,38 +53838,43 @@ "cVb" = ( /turf/closed/wall, /area/hallway/secondary/service) -"daP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ +"cVk" = ( +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/light/small{ - dir = 4 +/obj/machinery/camera/motion{ + c_tag = "Armory Motion Sensor"; + dir = 2; + name = "motion-sensitive security camera" }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"ddY" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/bar) -"deX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "2-4" + dir = 6 }, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) -"dfb" = ( +"cYR" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/brig) +"daq" = ( /obj/machinery/door/airlock/maintenance/abandoned{ - req_access_txt = "0" + name = "Incinerator Access"; + req_access_txt = "12" + }, +/obj/structure/barricade/wooden{ + name = "wooden barricade (CLOSED)" }, /turf/open/floor/plating, /area/maintenance/bar) +"ddq" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) "dfh" = ( /obj/machinery/power/apc{ areastring = "/area/science/circuit"; @@ -53688,63 +53889,44 @@ }, /turf/open/floor/plasteel, /area/science/circuit) -"diE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"dpO" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ +"dfW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/brig) +"dAS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/structure/disposalpipe/segment, /turf/closed/wall, /area/maintenance/fore/secondary) -"dza" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot{ - dir = 2 +"dLQ" = ( +/turf/open/floor/plasteel/red/corner{ + dir = 1 }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"dIm" = ( -/obj/structure/closet/l3closet/security, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"dLC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 1; - id_tag = "lobbyairlock"; - name = "Security Lobby"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel/red/side, -/area/hallway/primary/fore) -"dMt" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/decal/cleanable/blood/old, -/obj/item/device/assembly/signaler, -/turf/open/floor/plating, -/area/maintenance/bar) +/area/security/brig) "dMZ" = ( /obj/structure/sign/poster/official/random{ pixel_y = 32 }, /turf/open/floor/plasteel/white, /area/science/circuit) -"dUX" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 +"dRy" = ( +/obj/structure/table, +/obj/item/storage/box/firingpins, +/obj/item/storage/box/firingpins, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"dUn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 4 }, -/turf/open/floor/plasteel, /area/security/brig) -"dZd" = ( -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/hallway/primary/fore) "eaI" = ( /obj/structure/table/reinforced, /obj/item/device/radio/intercom{ @@ -53752,24 +53934,51 @@ }, /turf/open/floor/plasteel/white, /area/science/circuit) -"edf" = ( -/obj/machinery/light/small{ - dir = 8 +"eiQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" }, -/obj/machinery/cryopod{ - tag = "icon-cryopod-open (EAST)"; - icon_state = "cryopod-open"; +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/brig) +"ejX" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"elx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/warden) +"eoF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"eqj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/turf/open/floor/noslip, -/area/crew_quarters/cryopod) -"eug" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/brig) +"ese" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, /turf/open/floor/plasteel, -/area/ai_monitored/security/armory) +/area/security/brig) "eyM" = ( /obj/machinery/mineral/ore_redemption{ input_dir = 2; @@ -53778,32 +53987,16 @@ /obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/quartermaster/miningdock) -"eCq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 +"eBn" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 }, -/turf/open/floor/wood, -/area/maintenance/bar) -"eFo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"eJr" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/bar"; - dir = 2; - name = "Maintenance Bar APC"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/structure/cable, +/obj/effect/turf_decal/stripes/white/corner, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"eGa" = ( /turf/open/floor/wood{ - icon_state = "wood-broken7" + icon_state = "wood-broken5" }, /area/maintenance/bar) "eRz" = ( @@ -53821,23 +54014,29 @@ }, /turf/open/floor/plasteel, /area/quartermaster/miningdock) -"eXt" = ( -/obj/structure/table/wood/poker, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +"fgi" = ( +/turf/closed/wall, +/area/crew_quarters/cryopod) +"fiq" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/item/storage/pill_bottle/dice, -/turf/open/floor/wood, -/area/maintenance/bar) -"fbG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, -/area/hallway/primary/fore) +/area/security/armory) "flc" = ( /obj/machinery/bookbinder, /turf/open/floor/plasteel/white, /area/science/circuit) +"fmW" = ( +/obj/effect/turf_decal/loading_area/white, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) "fnC" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 @@ -53851,28 +54050,48 @@ }, /turf/open/floor/plasteel/hydrofloor, /area/hallway/secondary/service) +"fsC" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) "fsQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"fFO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"fJA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +"fIx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/machinery/light, -/turf/open/floor/plasteel/red/side, -/area/security/brig) +/turf/closed/wall, +/area/maintenance/bar) "fKl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/science/circuit) +"fNa" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/bar"; + dir = 2; + name = "Maintenance Bar APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/bar) +"fXR" = ( +/obj/structure/table/wood/poker, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) "gbq" = ( /obj/structure/cable{ icon_state = "4-8" @@ -53888,51 +54107,77 @@ "gjl" = ( /turf/closed/wall, /area/quartermaster/warehouse) -"gsc" = ( -/obj/effect/spawner/lootdrop/keg, +"gnt" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/maintenance/bar) -"gus" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "4-8" +"gqJ" = ( +/obj/structure/window/reinforced, +/obj/vehicle/ridden/secway, +/obj/item/key/security, +/obj/machinery/door/window/eastleft{ + name = "Secway Docking Port" }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"gvr" = ( -/obj/structure/falsewall, -/turf/open/floor/plating, -/area/maintenance/bar) +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/showroomfloor, +/area/space) +"gtB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/red/side, +/area/security/brig) "gwd" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, /area/science/circuit) -"gxj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 +"gBe" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/maintenance/bar) +"gEu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood{ + icon_state = "wood-broken" }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"gyg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/warden) -"gLh" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ +/area/maintenance/bar) +"gHZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, -/turf/closed/wall, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, /area/maintenance/bar) +"gKd" = ( +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/brig) +"gLH" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access = null; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"gUO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/brig) "gWd" = ( /obj/structure/cable{ icon_state = "1-4" @@ -53950,6 +54195,17 @@ dir = 8 }, /area/medical/sleeper) +"hbX" = ( +/obj/machinery/flasher{ + id = "brigentry"; + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/red/side, +/area/security/brig) "hcE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, @@ -53967,87 +54223,34 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"hha" = ( -/turf/open/floor/wood, -/area/maintenance/bar) -"hsl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"hyy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/maintenance/fore/secondary) -"hGx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"hKM" = ( -/obj/structure/sign/poster/official/no_erp, -/turf/closed/wall, -/area/maintenance/bar) -"hMS" = ( -/obj/structure/bed, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"hUv" = ( -/obj/machinery/vending/clothing, -/turf/open/floor/wood, -/area/maintenance/bar) -"hWV" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/hallway/primary/fore) -"hYa" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"ifm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/abandoned{ - req_access_txt = "0" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/bar) +"hgP" = ( +/obj/structure/closet/bombcloset/security, +/turf/open/floor/plasteel/showroomfloor, +/area/space) +"hCi" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"hSW" = ( +/turf/open/floor/plasteel/red/side, +/area/security/brig) "ijc" = ( /obj/structure/table, /obj/item/stack/sheet/metal/fifty, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"imC" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +"ilg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/maintenance/bar) +"ilT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/armory) "ipA" = ( /obj/machinery/droneDispenser, /turf/open/floor/plating, @@ -54058,27 +54261,26 @@ /obj/item/pen, /turf/open/floor/plasteel/white, /area/science/circuit) -"iFh" = ( -/turf/open/floor/plasteel/red/side, -/area/hallway/primary/fore) -"iGk" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"iIs" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"iMh" = ( +"iun" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 + dir = 6 }, -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) +/turf/open/floor/wood, +/area/maintenance/bar) +"izg" = ( +/obj/structure/table/wood/poker, +/obj/item/coin/iron, +/turf/open/floor/wood, +/area/maintenance/bar) +"iEJ" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod One" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) "iNn" = ( /obj/machinery/camera{ c_tag = "Kitchen Cold Room" @@ -54087,19 +54289,25 @@ /obj/structure/reagent_dispensers/cooking_oil, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"iWe" = ( -/obj/structure/falsewall, -/obj/effect/turf_decal/delivery/white, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"iZT" = ( -/turf/closed/wall, -/area/crew_quarters/cryopod) -"jav" = ( -/obj/machinery/chem_dispenser/drinks/beer, -/obj/structure/table/wood, +"iNt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/brig) +"iZz" = ( +/obj/structure/table/wood/poker, /turf/open/floor/wood, /area/maintenance/bar) +"jaa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/maintenance/abandoned{ + req_access_txt = "0" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/maintenance/bar) "jbf" = ( /obj/structure/cable{ icon_state = "0-2" @@ -54126,42 +54334,10 @@ }, /turf/open/floor/plasteel, /area/science/circuit) -"jjw" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar) "jlm" = ( /obj/machinery/rnd/protolathe/department/cargo, /turf/open/floor/plasteel, /area/quartermaster/office) -"jnB" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/reagent_containers/spray/cleaner, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/bar) -"jor" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/bar) -"jpk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/bar) -"jrj" = ( -/obj/structure/table/wood/poker, -/obj/item/coin/iron, -/turf/open/floor/wood, -/area/maintenance/bar) "jrE" = ( /obj/machinery/rnd/protolathe/department/science, /obj/structure/sign/poster/official/random{ @@ -54169,48 +54345,33 @@ }, /turf/open/floor/plasteel/white, /area/science/circuit) -"jsM" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/item/pen/blue, -/turf/open/floor/plasteel/purple/side{ - tag = "icon-purple (NORTH)"; - icon_state = "purple"; - dir = 1 +"jvH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" }, -/area/crew_quarters/cryopod) -"jxK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"jyt" = ( +"jvX" = ( +/obj/machinery/door_timer{ + id = "Cell 2"; + name = "Cell 2"; + pixel_y = -32 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/red/corner, +/area/security/brig) +"jwO" = ( /obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks, /turf/open/floor/wood, /area/maintenance/bar) "jAD" = ( /obj/structure/grille, /turf/open/floor/plating/airless, /area/space/nearstation) -"jCi" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/closet/secure_closet/brig{ - id = "Secure Cell"; - name = "Secure Cell Locker" - }, -/obj/effect/turf_decal/stripes/white/end{ - dir = 4 - }, -/obj/effect/turf_decal/delivery/white, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) "jCq" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -54223,23 +54384,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"jDT" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/pen, -/obj/item/hand_labeler, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/light, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"jGf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/security/brig) "jHt" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment{ @@ -54253,28 +54397,14 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"jIa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 +"jKI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/obj/machinery/camera/motion{ - c_tag = "Armory Motion Sensor"; - dir = 2; - name = "motion-sensitive security camera" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"jME" = ( /obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 1; - id_tag = "outerbrig"; + cyclelinkeddir = 2; + id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63" }, @@ -54309,26 +54439,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"jVE" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/hallway/primary/fore) -"jXb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/hallway/primary/fore) -"jZW" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/bar) "khb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 @@ -54337,6 +54447,36 @@ /obj/item/kitchen/rollingpin, /turf/open/floor/plasteel/hydrofloor, /area/hallway/secondary/service) +"khB" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 4; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"kkQ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"knx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator"; + req_access_txt = "11" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) "kob" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment, @@ -54345,19 +54485,40 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"kpR" = ( +"kyO" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/bar) +"kDA" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"kqC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/side{ +/area/security/armory) +"kEo" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/area/hallway/primary/fore) +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/bar) "kPd" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/cable{ @@ -54384,60 +54545,113 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/miningdock) -"kVC" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/bar) -"lgA" = ( -/obj/machinery/suit_storage_unit/security, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +"kTn" = ( +/obj/machinery/light{ dir = 4 }, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) +/obj/structure/table/wood, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/maintenance/bar) +"kXw" = ( +/obj/machinery/vending/games{ + name = "\improper Good 'Clean' Fun" + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"lik" = ( +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/brig) +"lxM" = ( +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"lza" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/item/pen/blue, +/turf/open/floor/plasteel/purple/side{ + tag = "icon-purple (NORTH)"; + icon_state = "purple"; + dir = 1 + }, +/area/crew_quarters/cryopod) +"lzJ" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) "lAB" = ( /obj/structure/sign/nanotrasen, /turf/closed/wall, /area/science/circuit) -"lAE" = ( -/obj/structure/table, -/obj/item/grenade/barrier{ - pixel_x = 4 - }, -/obj/item/grenade/barrier, -/obj/item/grenade/barrier{ - pixel_x = -4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"lIg" = ( -/obj/machinery/suit_storage_unit/security, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) +"lBd" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/space) +"lFR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/maintenance/bar) "lMg" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 }, /turf/open/floor/plasteel, /area/science/circuit) -"lMP" = ( -/obj/machinery/computer/secure_data{ - dir = 1 +"lNK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/maintenance/bar) "lQG" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/science/circuit) -"myc" = ( +"lWm" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 3"; + name = "Cell 3" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red/side, +/area/security/brig) +"lWz" = ( +/turf/closed/wall, +/area/maintenance/bar) +"mhD" = ( +/obj/machinery/cryopod{ + tag = "icon-cryopod-open (EAST)"; + icon_state = "cryopod-open"; + dir = 4 + }, +/turf/open/floor/noslip, +/area/crew_quarters/cryopod) +"mnl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"mnG" = ( /obj/structure/rack, /obj/item/clothing/suit/armor/bulletproof{ pixel_x = -3; @@ -54463,6 +54677,35 @@ }, /obj/effect/turf_decal/bot_white, /turf/open/floor/plasteel/dark, +/area/security/armory) +"mnX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"muS" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/maintenance/bar) +"mxj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/abandoned{ + req_access_txt = "0" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/bar) +"myd" = ( +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, /area/ai_monitored/security/armory) "mBv" = ( /obj/structure/cable{ @@ -54475,90 +54718,56 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"mLe" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/rack, -/obj/item/clothing/mask/gas/sechailer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/clothing/mask/gas/sechailer{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) +"mHd" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/maintenance/bar) "mNi" = ( /obj/machinery/light_switch{ pixel_x = -20 }, /turf/open/floor/plasteel/white, /area/science/circuit) -"mOK" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/hallway/primary/fore) -"mQi" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/brig) "mRe" = ( /obj/machinery/light{ dir = 8 }, /turf/open/floor/plasteel/white, /area/science/circuit) -"mUr" = ( -/obj/structure/table/wood, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar) -"mYW" = ( -/obj/machinery/vending/autodrobe, -/turf/open/floor/wood, -/area/maintenance/bar) -"nab" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +"mSu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/security/brig) -"nbe" = ( -/obj/effect/turf_decal/loading_area/white, -/obj/effect/turf_decal/stripes/white/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/corner, -/turf/open/floor/plasteel/dark, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/fore/secondary) +"mXj" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/space) +"mXs" = ( +/turf/open/floor/plasteel, /area/security/execution/transfer) -"nkD" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/maintenance/bar) +"nnM" = ( +/turf/closed/wall/r_wall, +/area/security/armory) "noK" = ( /obj/structure/girder, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"nrf" = ( -/obj/machinery/flasher{ - id = "Cell 4"; - pixel_x = -28 +"nsq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 8 + }, +/area/security/brig) +"nwx" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/red/side{ + dir = 4 }, -/turf/open/floor/plasteel/floorgrime, /area/security/brig) "nxv" = ( /obj/machinery/power/apc{ @@ -54571,10 +54780,41 @@ }, /turf/open/floor/plating, /area/construction) +"nys" = ( +/obj/machinery/flasher{ + id = "Cell 4"; + pixel_x = -28 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) "nzh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/engine/engineering) +"nAv" = ( +/obj/structure/table, +/obj/item/grenade/barrier{ + pixel_x = 4 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = -4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"nGs" = ( +/obj/item/lighter/greyscale, +/obj/effect/decal/cleanable/semen{ + desc = "Blech."; + name = "dried semen" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/bar) "nGt" = ( /obj/structure/cable{ icon_state = "1-2" @@ -54586,69 +54826,156 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"nHr" = ( -/obj/machinery/firealarm{ - pixel_y = 24 +"nHg" = ( +/turf/open/floor/wood, +/area/maintenance/bar) +"nLS" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" }, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) -"nOh" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/suit/armor/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/riot, -/obj/item/clothing/head/helmet/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/shield/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/shield/riot, -/obj/item/shield/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) "nRG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"nRX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +"nYI" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/crowbar, +/obj/item/device/electropack/shockcollar, +/turf/open/floor/plating, +/area/maintenance/bar) +"obC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, +/turf/closed/wall, +/area/maintenance/bar) +"ody" = ( +/obj/effect/spawner/lootdrop/keg, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/bar) +"ofN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"olb" = ( +/obj/structure/window/reinforced, +/obj/vehicle/ridden/secway, +/obj/item/key/security, +/obj/machinery/door/window/eastleft{ + name = "Secway Docking Port" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/showroomfloor, +/area/space/nearstation) +"onN" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"oru" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/bar) +"otR" = ( +/obj/machinery/suit_storage_unit/security, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"owf" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 2; - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" + cyclelinkeddir = 1; + id_tag = "lobbyairlock"; + name = "Security Lobby"; + req_access_txt = "0" }, +/turf/open/floor/plasteel/red/side, +/area/security/brig) +"oyS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/red/side{ - dir = 9 + dir = 10 }, /area/security/brig) -"nYB" = ( +"oDF" = ( +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/engineering) +"oHU" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"oQP" = ( +/obj/machinery/flasher{ + id = "Cell 3"; + pixel_x = -28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"oUh" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"oZl" = ( +/turf/open/floor/plasteel/purple/side{ + tag = "icon-purple (NORTH)"; + icon_state = "purple"; + dir = 1 + }, +/area/crew_quarters/cryopod) +"pdR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"plH" = ( /obj/machinery/door/window/brigdoor/security/cell{ dir = 4; id = "Secure Cell"; @@ -54670,172 +54997,24 @@ dir = 8 }, /area/security/execution/transfer) -"obc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/fore/secondary) -"ofR" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"ogc" = ( -/obj/machinery/door_timer{ - id = "Cell 2"; - name = "Cell 2"; - pixel_y = -32 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/red/corner, -/area/security/brig) -"ogm" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/window/eastleft{ - name = "Cyborg Docking Port" - }, -/obj/machinery/recharge_station, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"oln" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"ord" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"oDF" = ( -/obj/machinery/light, -/turf/open/floor/plating, -/area/engine/engineering) -"oFO" = ( -/obj/structure/window/reinforced, -/obj/vehicle/ridden/secway, -/obj/item/key/security, -/obj/machinery/door/window/eastleft{ - name = "Secway Docking Port" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"oHU" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"oJp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"oLz" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 3"; - name = "Cell 3" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side, -/area/security/brig) -"oPZ" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"oUa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, +"plY" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 2; - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"pzG" = ( +/obj/structure/sign/poster/random{ + pixel_x = -32 }, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/brig) -"oUh" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"oYL" = ( -/obj/effect/turf_decal/stripes/white/line, -/obj/effect/turf_decal/stripes/white/corner{ - dir = 1 - }, -/obj/machinery/door_timer{ - id = "Secure Cell"; - name = "Secure Cell"; - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"pcC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"pfG" = ( -/obj/effect/spawner/lootdrop/keg, -/turf/open/floor/wood, -/area/maintenance/bar) -"piD" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Incinerator Access"; - req_access_txt = "12" - }, -/obj/structure/barricade/wooden{ - name = "wooden barricade (CLOSED)" - }, -/turf/open/floor/plating, -/area/maintenance/bar) -"piS" = ( -/obj/structure/table, -/obj/item/storage/box/firingpins, -/obj/item/storage/box/firingpins, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"puH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ +/obj/machinery/light{ dir = 8 }, -/obj/structure/cable{ - icon_state = "1-2" +/turf/open/floor/wood{ + icon_state = "wood-broken7" }, -/turf/open/floor/wood, /area/maintenance/bar) -"pAp" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +"pAu" = ( +/obj/machinery/vending/kink, /turf/open/floor/wood, /area/maintenance/bar) "pHl" = ( @@ -54866,74 +55045,71 @@ }, /turf/open/floor/plasteel/white, /area/medical/sleeper) -"pMN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, +"pML" = ( +/obj/effect/spawner/lootdrop/keg, /turf/open/floor/wood, /area/maintenance/bar) "pNx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/floorgrime, /area/science/misc_lab) -"pNR" = ( -/turf/open/floor/plasteel/red/side{ - dir = 6 +"pND" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot{ + dir = 2 }, -/area/hallway/primary/fore) -"pOx" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"pRC" = ( -/obj/machinery/door/poddoor/shutters{ - id = "lowsecarmory"; - name = "Non-Lethal Armoury Shutter" +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"pNS" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + req_access_txt = "0" }, -/obj/machinery/button/door{ - id = "lowsecarmory"; - name = "Non-Lethal Armory Shutters"; - pixel_y = 26; - req_access_txt = "3" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"pUu" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/maintenance/bar) +"pRh" = ( +/obj/structure/sign/poster/random{ + pixel_y = -32 }, /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/maintenance/bar) -"pYG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ +"pXY" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/corner{ dir = 1 }, -/area/security/brig) -"pYQ" = ( -/obj/structure/table/wood, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/wood, -/area/maintenance/bar) +/obj/machinery/door_timer{ + id = "Secure Cell"; + name = "Secure Cell"; + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) "qeQ" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/science/circuit) +"qiH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/bar) +"qkd" = ( +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/brig) +"qli" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/space/nearstation) "qpv" = ( /obj/machinery/light{ dir = 4 @@ -54941,12 +55117,400 @@ /obj/machinery/autolathe, /turf/open/floor/plasteel/white, /area/science/circuit) +"qqN" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/cryopod{ + tag = "icon-cryopod-open (EAST)"; + icon_state = "cryopod-open"; + dir = 4 + }, +/turf/open/floor/noslip, +/area/crew_quarters/cryopod) +"quv" = ( +/obj/machinery/flasher{ + id = "Cell 2"; + pixel_x = -28 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"quH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/security/armory) "quT" = ( /obj/structure/lattice, /obj/structure/grille/broken, /turf/open/space/basic, /area/space/nearstation) -"qwN" = ( +"qyA" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "briggate"; + name = "security shutters" + }, +/obj/machinery/door/window/eastright{ + name = "Brig Desk"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"qWq" = ( +/turf/closed/wall, +/area/space) +"rhJ" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/blood/old, +/obj/item/device/assembly/signaler, +/turf/open/floor/plating, +/area/maintenance/bar) +"rmX" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/beer, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ruZ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/armory) +"rvK" = ( +/obj/structure/table/wood, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/maintenance/bar) +"ryt" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"rDb" = ( +/obj/structure/table, +/obj/item/storage/toolbox/drone, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"rKP" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/construction) +"rMY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"rWu" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/maintenance/bar) +"saK" = ( +/obj/structure/closet/crate, +/obj/item/target/alien, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/item/target/clown, +/obj/item/target/syndicate, +/obj/item/target/syndicate, +/obj/item/gun/energy/laser/practice, +/obj/item/gun/energy/laser/practice, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"srd" = ( +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/security/brig) +"srs" = ( +/obj/structure/chair/stool, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"srA" = ( +/turf/open/floor/plasteel/purple/side, +/area/crew_quarters/cryopod) +"sxs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table, +/obj/item/shovel/spade, +/turf/open/floor/plasteel/hydrofloor, +/area/hallway/secondary/service) +"sGJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/maintenance/bar) +"sHa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + cyclelinkeddir = 2; + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/brig) +"sHr" = ( +/obj/structure/falsewall, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"sIY" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/maintenance/bar) +"sLv" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"sOs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/abandoned, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"sPi" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/security/glass{ + cyclelinkeddir = 1; + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/brig) +"sSW" = ( +/obj/structure/chair/office/light, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"sXy" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/security/main) +"tal" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/hallway/secondary/service) +"tdl" = ( +/obj/machinery/camera/motion{ + c_tag = "Non-Lethal Armory Motion Sensor"; + dir = 4 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/armory) +"tdt" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"thu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"tkF" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "briggate"; + name = "security shutters" + }, +/obj/machinery/door/window/southleft{ + base_state = "right"; + icon_state = "right"; + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"tBz" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fore/secondary) +"tDP" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/space/nearstation) +"tMl" = ( +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"tPb" = ( +/obj/structure/window/reinforced, +/obj/machinery/door/window/eastleft{ + name = "Cyborg Docking Port" + }, +/obj/machinery/recharge_station, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"tQz" = ( +/obj/structure/sign/poster/official/no_erp, +/turf/closed/wall, +/area/maintenance/bar) +"tYV" = ( +/obj/structure/table/wood/poker, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/storage/pill_bottle/dice, +/turf/open/floor/wood, +/area/maintenance/bar) +"uaT" = ( +/obj/structure/table/wood, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/wood, +/area/maintenance/bar) +"udp" = ( +/obj/item/crowbar/large, +/obj/structure/rack, +/obj/item/device/flashlight, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"uhH" = ( +/obj/item/wrench, +/obj/item/weldingtool, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/structure/rack, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ujc" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/brig) +"ujp" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"umq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/maintenance/bar) +"umu" = ( +/obj/machinery/door_timer{ + id = "Cell 3"; + name = "Cell 3"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner, +/area/security/brig) +"uoB" = ( +/obj/structure/table/reinforced, +/obj/item/device/multitool, +/obj/item/screwdriver, +/obj/machinery/camera{ + c_tag = "Circuitry Lab North"; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"upn" = ( +/obj/machinery/chem_dispenser/drinks/beer, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/bar) +"utQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"uvc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/maintenance/bar) +"uvy" = ( +/turf/closed/wall/r_wall, +/area/space) +"uMX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"uNu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"uTi" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/brigdoor{ dir = 1; @@ -54972,323 +55536,7 @@ icon_state = "1-4" }, /turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"qCU" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/hallway/primary/fore) -"qHL" = ( -/obj/structure/table, -/obj/item/storage/toolbox/drone, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"rdk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/hallway/primary/fore) -"rim" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"rjn" = ( -/obj/structure/table/wood/poker, -/turf/open/floor/wood, -/area/maintenance/bar) -"rlF" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -30 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/bar) -"rmX" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/beer, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"rnh" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briggate"; - name = "security shutters" - }, -/obj/machinery/door/window/eastright{ - name = "Brig Desk"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/dark, /area/security/brig) -"rIV" = ( -/obj/item/lighter/greyscale, -/obj/effect/decal/cleanable/semen{ - desc = "Blech."; - name = "dried semen" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/bar) -"rKP" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/construction) -"rWO" = ( -/obj/machinery/flasher{ - id = "brigentry"; - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/red/side, -/area/hallway/primary/fore) -"saK" = ( -/obj/structure/closet/crate, -/obj/item/target/alien, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/item/target/clown, -/obj/item/target/syndicate, -/obj/item/target/syndicate, -/obj/item/gun/energy/laser/practice, -/obj/item/gun/energy/laser/practice, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"spC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/maintenance/abandoned{ - req_access_txt = "0" - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/bar) -"srs" = ( -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/hallway/primary/fore) -"sxs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table, -/obj/item/shovel/spade, -/turf/open/floor/plasteel/hydrofloor, -/area/hallway/secondary/service) -"sAS" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"sIn" = ( -/obj/structure/bed, -/obj/item/bedsheet/grey, -/obj/effect/decal/cleanable/semen{ - desc = "Blech."; - name = "dried semen" - }, -/obj/effect/spawner/lootdrop/costume, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/bar) -"sLv" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"sOs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/abandoned, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"sSW" = ( -/obj/structure/chair/office/light, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"tal" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/hallway/secondary/service) -"tbp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"thm" = ( -/obj/item/restraints/handcuffs/fake, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears, -/turf/open/floor/plating, -/area/maintenance/bar) -"tiQ" = ( -/obj/structure/sign/poster/random{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"tje" = ( -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"tkh" = ( -/obj/machinery/flasher{ - id = "Cell 2"; - pixel_x = -28 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"tlu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"tsG" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/white/corner, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"twi" = ( -/obj/structure/chair/stool, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -35 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"txz" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briggate"; - name = "security shutters" - }, -/obj/machinery/door/window/southleft{ - base_state = "right"; - icon_state = "right"; - name = "Brig Desk"; - req_access_txt = "1" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"tzD" = ( -/obj/machinery/flasher{ - id = "Cell 3"; - pixel_x = -28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"tCT" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/maintenance/bar) -"tJn" = ( -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/bot{ - dir = 2 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"tMl" = ( -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"tPB" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/bar) -"udp" = ( -/obj/item/crowbar/large, -/obj/structure/rack, -/obj/item/device/flashlight, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"uhH" = ( -/obj/item/wrench, -/obj/item/weldingtool, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/structure/rack, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"ulx" = ( -/obj/machinery/vending/kink, -/turf/open/floor/wood, -/area/maintenance/bar) -"uoB" = ( -/obj/structure/table/reinforced, -/obj/item/device/multitool, -/obj/item/screwdriver, -/obj/machinery/camera{ - c_tag = "Circuitry Lab North"; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"uCK" = ( -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"uNu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/science/circuit) "uVS" = ( /obj/structure/cable{ icon_state = "4-8" @@ -55301,36 +55549,23 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"vge" = ( +"vaY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar) -"vgI" = ( -/obj/machinery/vending/games{ - name = "\improper Good 'Clean' Fun" - }, /turf/open/floor/wood, /area/maintenance/bar) -"vsn" = ( -/obj/structure/rack, -/obj/item/gun/energy/e_gun/dragnet, -/obj/item/gun/energy/e_gun/dragnet, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"vtB" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 +"vbD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "EVA Storage"; + req_access_txt = "18" }, -/obj/effect/turf_decal/stripes/white/corner{ +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) "vxh" = ( /obj/structure/table, /obj/effect/spawner/lootdrop/maintenance{ @@ -55347,13 +55582,11 @@ }, /turf/open/floor/plasteel/white, /area/science/circuit) -"vBu" = ( -/obj/item/shard, -/obj/item/wirecutters, -/obj/item/wallframe/camera, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +"vAM" = ( +/obj/item/restraints/handcuffs/fake, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears, +/turf/open/floor/plating, /area/maintenance/bar) "vCb" = ( /obj/machinery/rnd/protolathe/department/service, @@ -55363,24 +55596,17 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/white, /area/science/circuit) -"vDd" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ +"vNJ" = ( +/obj/machinery/vending/clothing, +/turf/open/floor/wood, +/area/maintenance/bar) +"vPg" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) "vPE" = ( /obj/machinery/light{ dir = 4 @@ -55388,66 +55614,60 @@ /obj/machinery/libraryscanner, /turf/open/floor/plasteel/white, /area/science/circuit) -"vQi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +"vRb" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -30 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/maintenance/bar) +"vXR" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, /turf/open/floor/wood, /area/maintenance/bar) -"vQk" = ( -/obj/machinery/light{ - dir = 1 +"whS" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/turf/open/floor/wood, +/area/maintenance/bar) +"wjf" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ dir = 4 }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"vWg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 }, -/obj/structure/cable{ - icon_state = "0-4" +/obj/structure/closet/secure_closet/brig{ + id = "Secure Cell"; + name = "Secure Cell Locker" }, -/turf/open/floor/plating, -/area/security/brig) -"vXH" = ( -/obj/machinery/cryopod{ - tag = "icon-cryopod-open (EAST)"; - icon_state = "cryopod-open"; +/obj/effect/turf_decal/stripes/white/end{ dir = 4 }, -/turf/open/floor/noslip, -/area/crew_quarters/cryopod) +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) "wkN" = ( /turf/closed/wall, /area/science/circuit) -"wno" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 1; - id_tag = "lobbyairlock"; - name = "Security Lobby"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/hallway/primary/fore) -"wqK" = ( -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/item/crowbar, -/obj/item/device/electropack/shockcollar, -/turf/open/floor/plating, -/area/maintenance/bar) +"wqO" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun/dragnet, +/obj/item/gun/energy/e_gun/dragnet, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/security/armory) "wrp" = ( /obj/machinery/light{ dir = 8 @@ -55457,12 +55677,20 @@ }, /turf/open/floor/plasteel/hydrofloor, /area/hallway/secondary/service) -"wsw" = ( -/obj/structure/cable{ - icon_state = "1-2" +"wrI" = ( +/obj/machinery/door/poddoor/shutters{ + id = "lowsecarmory"; + name = "Non-Lethal Armoury Shutter" }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) +/obj/machinery/button/door{ + id = "lowsecarmory"; + name = "Non-Lethal Armory Shutters"; + pixel_y = 26; + req_access_txt = "3" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/main) "wvX" = ( /obj/structure/table/reinforced, /obj/machinery/light, @@ -55471,72 +55699,70 @@ /obj/item/stack/sheet/metal/fifty, /turf/open/floor/plasteel/white, /area/science/circuit) -"wwN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"wyl" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"wyo" = ( -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/hallway/primary/fore) -"wzL" = ( -/turf/open/floor/plasteel, -/area/security/execution/transfer) "wBd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/closed/wall, /area/hallway/secondary/service) -"wIt" = ( -/turf/open/floor/plasteel/purple/side{ - tag = "icon-purple (NORTH)"; - icon_state = "purple"; - dir = 1 +"wMS" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -3; + pixel_y = 3 }, -/area/crew_quarters/cryopod) -"wLW" = ( -/turf/closed/wall, -/area/maintenance/bar) -"wPM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/security/armory) "wUY" = ( /obj/structure/table, /obj/item/reagent_containers/glass/bucket, /turf/open/floor/plasteel/hydrofloor, /area/hallway/secondary/service) -"wVC" = ( -/obj/structure/table/wood/poker, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +"wXR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/armory) +"xdq" = ( +/obj/structure/closet/l3closet/security, +/turf/open/floor/plasteel/showroomfloor, +/area/space/nearstation) +"xgX" = ( +/obj/item/shard, +/obj/item/wirecutters, +/obj/item/wallframe/camera, +/turf/open/floor/plating{ + icon_state = "panelscorched" }, -/turf/open/floor/wood, /area/maintenance/bar) -"wXZ" = ( -/turf/open/floor/plasteel/purple/side, -/area/crew_quarters/cryopod) -"wZq" = ( -/obj/machinery/door_timer{ - id = "Cell 3"; - name = "Cell 3"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner, -/area/security/brig) "xhV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -55558,59 +55784,93 @@ }, /turf/open/floor/plating, /area/hallway/secondary/service) -"xmc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "seclobby"; - name = "security shutters" +"xkI" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood{ + icon_state = "wood-broken7" }, +/area/maintenance/bar) +"xug" = ( /obj/structure/cable{ - icon_state = "0-8" + icon_state = "1-2" }, -/turf/open/floor/plating, -/area/security/brig) +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/bar) +"xwc" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"xwS" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) "xIa" = ( /obj/structure/table, /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"xKl" = ( -/obj/machinery/power/apc{ - name = "Cryogenics APC"; - pixel_x = 23 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"xKy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"xNI" = ( -/obj/machinery/camera/motion{ - c_tag = "Non-Lethal Armory Motion Sensor"; - dir = 4 - }, -/obj/effect/turf_decal/stripes/end{ +"xTa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"yap" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, +/turf/open/floor/wood, /area/maintenance/bar) +"xVd" = ( +/obj/structure/bed, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"xZZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/rack, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) "ycu" = ( /obj/structure/cable{ icon_state = "2-4" }, /turf/open/floor/plasteel, /area/science/circuit) +"yeT" = ( +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot{ + dir = 2 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"yfv" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ykh" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/security/armory) (1,1,1) = {" aaa @@ -64711,7 +64971,7 @@ arC aEp apJ avP -cyb +iEJ asE arB aaa @@ -64725,7 +64985,7 @@ aaa aaa arB asE -cyb +iEJ avP arB aaa @@ -68817,7 +69077,7 @@ aaa aag aqJ amC -aqJ +gLH ase avq aum @@ -77103,20 +77363,20 @@ bCq bPY cOw bCq -wLW -wLW -wLW -wLW -wLW -piD -wLW -wLW -wLW -wLW -wLW -wLW -wLW -wLW +lWz +lWz +lWz +lWz +lWz +daq +lWz +lWz +lWz +lWz +lWz +lWz +lWz +lWz bUs bLv aaa @@ -77360,20 +77620,20 @@ bCq bPX bRg bRg -wLW -hha +lWz +nHg bVG -hGx -rlF -hha -pfG -wLW -hha -tiQ +utQ +vRb +nHg +pML +lWz +nHg +pzG bVG -hha -gsc -wLW +nHg +ody +lWz bUs bLv aaa @@ -77617,20 +77877,20 @@ bLv bQa bHE bHE -wLW -pMN -wwN -jZW -vQi -yap -vQi -pAp -vQi -vQi -fFO -jjw -uCK -wLW +lWz +iun +ilg +gHZ +uvc +sGJ +uvc +pNS +uvc +uvc +rMY +eGa +lxM +lWz bUs bLv aaf @@ -77874,20 +78134,20 @@ bLv bPZ bHE bHE -dfb -oJp -col -tCT -imC -oln -jxK -spC -jxK -jpk -oPZ +sIY +vaY +whS +gBe +gnt +xwc +lFR +jaa +lFR +gEu +ujp cCa -hha -wLW +nHg +lWz bUs bLv aaa @@ -78131,20 +78391,20 @@ bLv bHE bHE bSs -wLW -vge -rim -mUr -ddY -rim -hha -hKM -tPB +lWz +umq +vXR +rvK +jwO +vXR +nHg +tQz +rWu cCa -wVC -rjn -kVC -wLW +fXR +iZz +muS +lWz bUs bLv aaa @@ -78388,20 +78648,20 @@ bCq bHE bRh bLu -wLW -eFo -pUu -nkD -hYa -puH -eJr -wLW -hha -wyl -wVC -rjn -twi -wLW +lWz +jvH +kEo +thu +xug +lNK +fNa +lWz +nHg +xkI +fXR +iZz +srs +lWz bUs bLv aaf @@ -78645,20 +78905,20 @@ bCq bOK bCq bCq -wLW -ifm -jor -jav -jyt -pYQ -wLW -wLW -hha +lWz +mxj +fIx +upn +cmR +uaT +lWz +lWz +nHg cCa -eXt -jrj +tYV +izg cCa -wLW +lWz bUs bLv aaa @@ -78822,13 +79082,13 @@ abc aea aeH aft -iWe -nbe -vtB -iIs +sHr +fmW +xwS +yfv abc -gXs -gXs +hCi +hCi aaa aiU aln @@ -78903,19 +79163,19 @@ bHE bLv aaa bLv -hsl -jor -wLW -wLW -wLW -wLW -hha -hha -hha -ord +qiH +fIx +lWz +lWz +lWz +lWz +nHg +nHg +nHg +lzJ cCa -tje -wLW +pRh +lWz bUs bLv aaa @@ -79081,8 +79341,8 @@ aeJ afw abc abc -tsG -oYL +eBn +pXY abc aaf aaf @@ -79160,19 +79420,19 @@ bHE bLv aaf bLv -hsl -jor -thm -wqK -rIV -gvr -hha -tPB -jjw -eCq -hha -hha -wLW +qiH +fIx +vAM +nYI +nGs +mHd +nHg +rWu +eGa +xTa +nHg +nHg +lWz bUs bLv aaf @@ -79338,8 +79598,8 @@ aeI afv agf abc -jCi -nYB +wjf +plH abc aiT aiT @@ -79417,19 +79677,19 @@ bLv bCq aaa bLv -hsl -jor -vBu -sIn -dMt -wLW -hUv -mYW -bgx -jnB -vgI -ulx -wLW +qiH +fIx +xgX +cKh +rhJ +lWz +vNJ +cEm +kyO +kTn +kXw +pAu +lWz bUs bCq aaa @@ -79595,9 +79855,9 @@ aeL afy agh abc -wzL -wzL -wzL +mXs +mXs +mXs aiV ajs akb @@ -79675,17 +79935,17 @@ aaa aaa bTB bUv -gLh -wPM -wPM -wPM -wPM -wPM -wPM -wPM -wPM -wPM -wPM +obC +oru +oru +oru +oru +oru +oru +oru +oru +oru +oru car bUs bCq @@ -79852,9 +80112,9 @@ aeK afx agg abc -wzL -hMS -wzL +mXs +xVd +mXs aiV ajr aka @@ -80109,9 +80369,9 @@ aeN afA afA afA -wzL -wzL -wzL +mXs +mXs +mXs aiV aju akd @@ -81682,7 +81942,7 @@ aEX aEZ aEZ aEZ -aEX +vbD aJs aJq bJx @@ -82173,7 +82433,7 @@ auj akl akO alx -pcC +mnX amg aiX anw @@ -82685,9 +82945,9 @@ aiF agj ajD akm -vWg +cxR aly -tkh +quv amQ aiX anw @@ -82944,7 +83204,7 @@ aja akl akP alx -pcC +mnX ami aiX anw @@ -83198,7 +83458,7 @@ agP agP aiz ajg -ogc +jvX akQ agj agj @@ -83436,7 +83696,7 @@ aaa aaa aaf aaf -iGk +ddq aaf aai abi @@ -83458,7 +83718,7 @@ ajb ajF akN alw -tzD +oQP amQ aiX anw @@ -83709,16 +83969,16 @@ agn agR agn agR -gyg -agn -dUX +elx +aiX +ese akv -oLz -daP +lWm +mnl aww amk aiX -qCU +ejX aov aph aqb @@ -83950,26 +84210,26 @@ aaa aaa aaa aaf -iGk +ddq aaf -aaZ -pOx -xNI -lIg +nnM +ykh +tdl +myd aaZ cpg acv adi -piS +dRy aaZ aeW -mLe +xZZ ahv ahQ aiI -agR +aiH ajI -wZq +umu akQ agj agj @@ -84207,29 +84467,29 @@ aaa aaa aaa aaf -iGk +ddq aaf -aaZ -pOx -eug -lIg +nnM +ykh +ruZ +myd aaZ acl cxA acL -qHL +rDb aaZ agp agT ahx ahS aiK -qwN -dUX +uTi +ese akm akT aly -nrf +nys amQ aiX anw @@ -84464,14 +84724,14 @@ aaa aaa aaa aaf -iGk +ddq aaf +nnM +ykh +fiq +ofN aaZ -pOx -sAS -iMh -aaZ -nHr +ack adk adK cqG @@ -84481,18 +84741,18 @@ agS agQ agt aiJ -aiL +akV ajI akl akS alx -pcC +mnX amp aiX anS aoy -fbG -tbp +plY +eoF anz anz anz @@ -84538,7 +84798,7 @@ bsc btF bph bsc -btF +knx bvW bAf bBp @@ -84721,14 +84981,14 @@ aaa aaa aaa aaf -iGk +ddq aaf +nnM +ykh +ruZ +otR aaZ -pOx -eug -lgA -aaZ -jIa +cVk acM adQ cwM @@ -84737,9 +84997,9 @@ agr agU ahy ahX -lMP -aiN -nab +aiL +cLr +dUn akq akQ agj @@ -84978,14 +85238,14 @@ aaa aaa aaa aaf -iGk +ddq aaf +nnM +nAv +quH +otR aaZ -lAE -xKy -lgA -aaZ -vQk +onN coS aet cxA @@ -84995,18 +85255,18 @@ agt ahz aie agt -aiM -mQi +ryt +cYR akp akU alz aml amT aiX -wno -dLC +cKI +owf apl -dpO +tBz aqc aqc aqc @@ -85235,14 +85495,14 @@ aaa aaa aaa aaf -iGk +ddq aaf -aaZ -vsn -gxj -deX +nnM +wqO +wXR +uMX abQ -vDd +nLS adj arc blT @@ -85251,17 +85511,17 @@ cml agV cxk aig -jDT -agn -pYG -jGf -akV +aiM +aiX +eqj +nsq +eiQ alB amn amV -txz -anB -pNR +tkF +aiG +qkd aod aqf ahT @@ -85271,11 +85531,11 @@ ahT ahT awn axF -wsw -wsw -wsw -wsw -xKl +tdt +tdt +tdt +tdt +amI anF anF aoa @@ -85492,14 +85752,14 @@ aaa aaa aaa aaf -iGk +ddq aaf -aaZ -myc -ack -gus +nnM +mnG +ilT +fsC abN -tlu +pdR acF acF aes @@ -85509,14 +85769,14 @@ agt ahB aHp agn -agn -nRX -oUa +aiX +jKI +sHa amS alA -rnh +qyA amm -xmc +alN anT anT aod @@ -85530,10 +85790,10 @@ arf arf arf arf -iZT -iZT -iZT -iZT +fgi +fgi +fgi +fgi anF ahn aJn @@ -85749,12 +86009,12 @@ aaa aaa aaa aaf -iGk +ddq aaf -aaZ -nOh -kpR -ofR +nnM +wMS +kDA +kkQ aci acm cpA @@ -85770,11 +86030,11 @@ aje ajJ akr akX -alC -srs -srs -srs -srs +aje +gKd +gKd +gKd +gKd aoB aod aqe @@ -85787,10 +86047,10 @@ atf arf aqa atf -iZT -edf -vXH -iZT +fgi +qqN +mhD +fgi anF ahn aaa @@ -86006,11 +86266,11 @@ aaa aaa aaf aaf -aaZ -aaZ -aaZ -aaZ -pRC +ctv +ctv +uvy +adR +wrI avB aaZ aaZ @@ -86027,14 +86287,14 @@ ajd ajb ahY akX -dZd -amo -srs -srs -jXb -rWO -obc -diE +ajc +alC +gKd +gKd +oyS +hbX +mSu +vPg arf apY ate @@ -86044,10 +86304,10 @@ ath arf apY ath -iZT -wIt -wXZ -iZT +fgi +oZl +srA +fgi anF ahn aaa @@ -86263,10 +86523,10 @@ aaa aaa aaa aaa -abp -oFO -oFO -ogm +atS +olb +gqJ +tPb abO abO acO @@ -86281,14 +86541,14 @@ ahA ahZ adR aiQ -dUX +ese akt -jME -anw -dZd -pNR -anB -iFh +sPi +dLQ +ajc +qkd +aiG +hSW aoD aod aqe @@ -86301,10 +86561,10 @@ ath arf ayV ath -iZT +fgi aCd -wXZ -iZT +srA +fgi anF ahn aJw @@ -86520,9 +86780,9 @@ aaa aaa aaa aaa -abo -abO -abO +lBd +qli +mXj abO abO abO @@ -86541,11 +86801,11 @@ ajf ajK aks akY -anA -dZd -wyo -amo -iFh +srd +ajc +lik +alC +hSW aoC aod aqe @@ -86558,10 +86818,10 @@ awo arf asd aAb -iZT -jsM -wXZ -iZT +fgi +lza +srA +fgi aoa ahn aJv @@ -86777,14 +87037,14 @@ aaa aaa aaa aaa -abp -abO -abO -tJn -tJn -tJn -tJn -tJn +qWq +qli +mXj +yeT +yeT +yeT +yeT +yeT abO aew afe @@ -86796,13 +87056,13 @@ aia aiP aiR ajB -fJA +gtB aiX akz alf -kqC -kqC -rdk +iNt +iNt +dfW aoF apo aqh @@ -87034,9 +87294,9 @@ aaa aaa aaa aaf -abo -abO -abO +tDP +qli +qli abO abO acp @@ -87057,11 +87317,11 @@ aku aiX alE amq -mOK -hWV -jVE +ujc +nwx +gUO aoE -hyy +dAS aqg aun asf @@ -87291,14 +87551,14 @@ aaa aaa aaa aaa -abp -aco -dIm -dza +qWq +hgP +xdq +pND abR -dza -dza -dza +pND +pND +pND abl abp abp @@ -87548,9 +87808,9 @@ aaa aaa aaf aaf -abp -abp -abp +atS +atS +atS abq abq abq @@ -90126,7 +90386,7 @@ aaf aag acU afn -acU +sXy aeC afn agc @@ -91170,7 +91430,7 @@ aaa aaa aaa ahn -anE +khB ahn ahn ahn diff --git a/_maps/cit_map_files/Deltastation/DeltaStation2.dmm b/_maps/cit_map_files/Deltastation/DeltaStation2.dmm index 6ca1e95cb9..f4821e135d 100644 --- a/_maps/cit_map_files/Deltastation/DeltaStation2.dmm +++ b/_maps/cit_map_files/Deltastation/DeltaStation2.dmm @@ -357,8 +357,8 @@ /turf/open/floor/plating, /area/hallway/secondary/entry) "abH" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "External Airlock"; req_access_txt = "13" }, @@ -453,8 +453,10 @@ /turf/open/floor/plasteel, /area/hallway/secondary/entry) "acd" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "External Airlock"; req_access_txt = "13" }, @@ -641,8 +643,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Solar Access"; req_access_txt = "10; 13" }, @@ -666,8 +670,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Solar Access"; req_access_txt = "10; 13" }, @@ -924,8 +930,10 @@ /area/construction/mining/aux_base) "aea" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Docking Port" }, /obj/effect/turf_decal/stripes/line{ @@ -942,8 +950,10 @@ /turf/open/floor/plasteel, /area/hallway/secondary/entry) "aec" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Docking Port" }, /obj/effect/turf_decal/stripes/line{ @@ -955,8 +965,10 @@ /turf/open/floor/plasteel, /area/hallway/secondary/entry) "aee" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Docking Port" }, /obj/effect/turf_decal/stripes/line{ @@ -969,8 +981,10 @@ /area/hallway/secondary/entry) "aej" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Docking Port" }, /obj/effect/turf_decal/stripes/line{ @@ -1915,8 +1929,8 @@ /turf/open/floor/plasteel, /area/hallway/secondary/entry) "aiA" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "External Docking Port" }, /obj/effect/turf_decal/stripes/line{ @@ -2113,8 +2127,10 @@ /turf/open/floor/plasteel, /area/hallway/secondary/entry) "ajf" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "External Docking Port" }, /obj/effect/turf_decal/stripes/line{ @@ -3375,7 +3391,6 @@ "amm" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 0; name = "Customs Desk"; req_access_txt = "19" }, @@ -9751,6 +9766,9 @@ name = "Emergency Access"; req_access_txt = "24;10" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/engine/atmospherics_engine) "aAa" = ( @@ -10117,6 +10135,7 @@ req_access_txt = "0"; req_one_access_txt = "24;10" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/engine, /area/engine/supermatter) "aAX" = ( @@ -11145,8 +11164,10 @@ /area/quartermaster/storage) "aDf" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Supply Dock Airlock"; req_access_txt = "31" }, @@ -11173,8 +11194,10 @@ icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Supply Dock Airlock"; req_access_txt = "31" }, @@ -12087,8 +12110,10 @@ /turf/open/floor/plasteel, /area/quartermaster/storage) "aFk" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Supply Dock Airlock"; req_access_txt = "31" }, @@ -13599,8 +13624,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Solar Access"; req_access_txt = "0"; req_one_access = null; @@ -13627,8 +13654,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Solar Access"; req_access_txt = "0"; req_one_access = null; @@ -13838,6 +13867,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/engine/atmospherics_engine) "aIA" = ( @@ -13862,6 +13892,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/engine/atmospherics_engine) "aIC" = ( @@ -15504,6 +15535,11 @@ icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, +/obj/machinery/cryopod{ + tag = "icon-cryopod-open (WEST)"; + icon_state = "cryopod-open"; + dir = 8 + }, /turf/open/floor/plasteel/red/corner{ dir = 1 }, @@ -15721,6 +15757,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/engine/atmos) "aMI" = ( @@ -15744,6 +15783,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/engine/atmos) "aMK" = ( @@ -16236,13 +16278,12 @@ /turf/open/floor/engine/vacuum, /area/maintenance/disposal/incinerator) "aNS" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/public/glass{ autoclose = 0; frequency = 1449; heat_proof = 1; - icon_state = "door_locked"; id_tag = "incinerator_airlock_exterior"; - locked = 1; name = "Incinerator Exterior Airlock"; req_access_txt = "12" }, @@ -16250,6 +16291,9 @@ icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/engine, /area/maintenance/disposal/incinerator) "aNT" = ( @@ -16263,13 +16307,12 @@ /turf/open/floor/engine, /area/maintenance/disposal/incinerator) "aNU" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/public/glass{ autoclose = 0; frequency = 1449; heat_proof = 1; - icon_state = "door_locked"; id_tag = "incinerator_airlock_interior"; - locked = 1; name = "Incinerator Interior Airlock"; req_access_txt = "12" }, @@ -16277,6 +16320,9 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/engine, /area/maintenance/disposal/incinerator) "aNV" = ( @@ -18553,6 +18599,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/security/prison) "aSG" = ( @@ -18573,6 +18620,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/security/prison) "aSH" = ( @@ -18591,6 +18639,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/security/prison) "aSI" = ( @@ -19706,8 +19755,8 @@ }, /area/security/execution/education) "aUK" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Security External Airlock"; req_access_txt = "63" }, @@ -21231,6 +21280,9 @@ req_access_txt = "2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) "aXO" = ( @@ -21245,6 +21297,9 @@ /obj/structure/cable/white{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) "aXQ" = ( @@ -21253,6 +21308,9 @@ req_access_txt = "2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) "aXR" = ( @@ -21274,8 +21332,10 @@ /turf/closed/wall/r_wall, /area/security/prison) "aXT" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Security External Airlock"; req_access_txt = "63" }, @@ -22235,6 +22295,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/security/prison) "aZG" = ( @@ -23647,6 +23710,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/security/prison) "bcM" = ( @@ -23667,6 +23731,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/security/prison) "bcO" = ( @@ -25426,8 +25491,10 @@ "bgQ" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Mining Dock Airlock"; req_access = null; req_access_txt = "48" @@ -25464,8 +25531,10 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Mining Dock Airlock"; req_access = null; req_access_txt = "48" @@ -25509,6 +25578,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/security/brig) "bhb" = ( @@ -25536,6 +25608,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/security/brig) "bhd" = ( @@ -29433,6 +29508,9 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/vault{ dir = 8 }, @@ -29522,6 +29600,9 @@ req_access = null; req_access_txt = "58" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel/vault{ dir = 8 }, @@ -32042,8 +32123,10 @@ /turf/closed/wall/r_wall, /area/security/nuke_storage) "buz" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Gulag Shuttle Airlock"; req_access_txt = "63" }, @@ -32066,8 +32149,10 @@ /turf/open/floor/plasteel, /area/security/execution/transfer) "buB" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Gulag Shuttle Airlock"; req_access_txt = "63" }, @@ -33007,6 +33092,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/engine/atmos) "bwB" = ( @@ -33575,8 +33661,8 @@ /area/engine/gravity_generator) "bxD" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "External Airlock"; req_access_txt = "13" }, @@ -33932,9 +34018,11 @@ /obj/structure/cable/white{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/vault{ - cyclelinkeddir = 4; - locked = 1; name = "Vault Door"; req_access_txt = "53" }, @@ -33957,9 +34045,11 @@ }, /area/security/nuke_storage) "byv" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/vault{ - cyclelinkeddir = 8; - locked = 1; name = "Vault Door"; req_access_txt = "53" }, @@ -34407,6 +34497,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/engine/break_room) "bzs" = ( @@ -34791,8 +34884,10 @@ /turf/open/space/basic, /area/space) "bAd" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Gulag Shuttle Airlock"; req_access_txt = "0" }, @@ -34805,8 +34900,10 @@ /turf/open/floor/plasteel, /area/security/execution/transfer) "bAf" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Gulag Shuttle Airlock"; req_access_txt = "0" }, @@ -35184,8 +35281,10 @@ /area/engine/gravity_generator) "bAP" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "External Airlock"; req_access_txt = "13" }, @@ -36095,7 +36194,6 @@ "bCL" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 0; name = "Power Tools Storage"; req_access_txt = "19" }, @@ -36133,7 +36231,6 @@ "bCN" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 0; name = "Power Tools Storage"; req_access_txt = "19" }, @@ -36585,8 +36682,10 @@ /obj/structure/cable/white{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 4; name = "Bridge Access"; req_access_txt = "19" }, @@ -36646,8 +36745,10 @@ /obj/structure/cable/white{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 8; name = "Bridge Access"; req_access_txt = "19" }, @@ -36850,8 +36951,10 @@ /obj/structure/cable/white{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 4; name = "Bridge Access"; req_access_txt = "19" }, @@ -36885,8 +36988,10 @@ /obj/structure/cable/white{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 8; name = "Bridge Access"; req_access_txt = "19" }, @@ -37328,6 +37433,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/engine/break_room) "bEz" = ( @@ -37425,6 +37533,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/engine/break_room) "bEF" = ( @@ -37697,8 +37808,10 @@ /obj/structure/cable/white{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 4; name = "Bridge Access"; req_access_txt = "19" }, @@ -37739,8 +37852,10 @@ /obj/structure/cable/white{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 8; name = "Bridge Access"; req_access_txt = "19" }, @@ -37927,8 +38042,10 @@ /obj/structure/cable/white{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 8; name = "Bridge Access"; req_access_txt = "19" }, @@ -38898,6 +39015,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/red/side{ dir = 4 }, @@ -38967,6 +39087,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/security/warden) "bHJ" = ( @@ -39213,6 +39336,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/engine/break_room) "bIi" = ( @@ -39253,6 +39379,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/engine/break_room) "bIm" = ( @@ -42004,8 +42133,10 @@ /obj/structure/cable/white{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/hatch{ - cyclelinkeddir = 4; name = "MiniSat Exterior Access"; req_one_access_txt = "32;19" }, @@ -42031,8 +42162,10 @@ /obj/structure/cable/white{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/hatch{ - cyclelinkeddir = 8; name = "MiniSat Exterior Access"; req_one_access_txt = "32;19" }, @@ -42861,8 +42994,8 @@ /area/ai_monitored/turret_protected/aisat_interior) "bPF" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/highsecurity{ - locked = 1; name = "MiniSat Chamber"; req_access_txt = "16" }, @@ -43069,6 +43202,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/engine/break_room) "bQa" = ( @@ -45508,8 +45642,8 @@ icon_state = "1-2" }, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/command{ - cyclelinkeddir = 2; name = "Telecomms Server Room"; req_access = null; req_access_txt = "61" @@ -45943,6 +46077,9 @@ name = "MiniSat Maintenance"; req_access_txt = "16" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/vault{ dir = 8 }, @@ -46023,6 +46160,9 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel/vault{ dir = 8 }, @@ -46098,6 +46238,9 @@ name = "MiniSat Antechamber"; req_one_access_txt = "32;19" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/vault{ dir = 8 }, @@ -46142,6 +46285,9 @@ name = "MiniSat Access"; req_one_access_txt = "32;19" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel/vault{ dir = 8 }, @@ -46998,8 +47144,10 @@ /obj/structure/cable/white{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 4; name = "Brig"; req_access_txt = "63" }, @@ -47060,8 +47208,10 @@ /obj/structure/cable/white{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 8; name = "Brig"; req_access_txt = "63" }, @@ -47923,8 +48073,10 @@ /obj/structure/cable/white{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/command{ - cyclelinkeddir = 1; name = "Telecomms Server Room"; req_access = null; req_access_txt = "61" @@ -48617,6 +48769,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/engine/engineering) "cay" = ( @@ -49012,8 +49167,10 @@ /area/hallway/primary/starboard) "cbw" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 4; name = "Brig"; req_access_txt = "63" }, @@ -49054,8 +49211,10 @@ /area/security/brig) "cbz" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 8; name = "Brig"; req_access_txt = "63" }, @@ -50124,8 +50283,10 @@ /turf/open/floor/plating/airless, /area/engine/engineering) "cdH" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Containment Access"; req_access_txt = "10; 13" }, @@ -50153,8 +50314,10 @@ /turf/open/floor/plasteel, /area/engine/engineering) "cdJ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Containment Access"; req_access_txt = "10; 13" }, @@ -53130,8 +53293,8 @@ /obj/structure/cable/white{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/command{ - cyclelinkeddir = 2; name = "Telecomms Server Room"; req_access = null; req_access_txt = "61" @@ -54462,8 +54625,10 @@ icon_state = "1-2" }, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/command{ - cyclelinkeddir = 1; name = "Telecomms Server Room"; req_access = null; req_access_txt = "61" @@ -56566,7 +56731,6 @@ }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ - cyclelinkeddir = 0; name = "Telecomms Foyer"; req_access = null; req_access_txt = "61" @@ -60893,6 +61057,7 @@ req_access_txt = "19" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/wood, /area/bridge/showroom/corporate) "cAb" = ( @@ -60903,6 +61068,7 @@ req_access_txt = "19" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/wood, /area/bridge/showroom/corporate) "cAc" = ( @@ -63719,8 +63885,10 @@ /turf/open/floor/plating/airless, /area/engine/engineering) "cFM" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Containment Access"; req_access_txt = "10; 13" }, @@ -63746,8 +63914,10 @@ /turf/open/floor/plasteel, /area/engine/engineering) "cFO" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Containment Access"; req_access_txt = "10; 13" }, @@ -64703,6 +64873,9 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/wood, /area/bridge/showroom/corporate) "cHP" = ( @@ -65584,6 +65757,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) "cJB" = ( @@ -65610,6 +65786,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) "cJD" = ( @@ -65625,6 +65804,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) "cJE" = ( @@ -65664,8 +65846,10 @@ }, /area/crew_quarters/fitness/recreation) "cJI" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Airlock"; req_access_txt = "13" }, @@ -65679,8 +65863,10 @@ /turf/open/floor/plasteel, /area/maintenance/port) "cJJ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Airlock"; req_access_txt = "13" }, @@ -67828,6 +68014,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) "cOc" = ( @@ -67853,6 +68042,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) "cOe" = ( @@ -67868,6 +68060,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) "cOf" = ( @@ -73060,8 +73255,8 @@ /area/security/checkpoint/science/research) "cZh" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/research{ - cyclelinkeddir = 2; name = "Research Division Access"; req_access_txt = "47" }, @@ -73081,8 +73276,8 @@ /area/science/research) "cZj" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/research{ - cyclelinkeddir = 2; name = "Research Division Access"; req_access_txt = "47" }, @@ -75928,8 +76123,10 @@ /area/science/research) "dfn" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/research{ - cyclelinkeddir = 1; name = "Research Division Access"; req_access_txt = "47" }, @@ -75945,8 +76142,10 @@ /area/science/research) "dfo" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/research{ - cyclelinkeddir = 1; name = "Research Division Access"; req_access_txt = "47" }, @@ -81220,6 +81419,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/crew_quarters/heads/hor) "dqC" = ( @@ -81311,6 +81513,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/crew_quarters/heads/hor) "dqI" = ( @@ -83447,6 +83652,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/medical/surgery) "dvA" = ( @@ -83499,6 +83707,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/medical/surgery) "dvE" = ( @@ -84250,6 +84461,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/crew_quarters/heads/cmo) "dwZ" = ( @@ -84325,6 +84539,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/crew_quarters/heads/cmo) "dxf" = ( @@ -86632,8 +86849,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Solar Access"; req_access_txt = "10; 13" }, @@ -86657,8 +86876,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Solar Access"; req_access_txt = "10; 13" }, @@ -88448,6 +88669,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/maintenance/port) "dFH" = ( @@ -89741,6 +89963,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/science/mixing) "dIq" = ( @@ -89800,6 +90025,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/science/mixing) "dIu" = ( @@ -90783,6 +91011,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/medical/medbay/central) "dKp" = ( @@ -91994,6 +92223,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/maintenance/aft) "dMP" = ( @@ -92063,6 +92295,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/maintenance/starboard/aft) "dMT" = ( @@ -92442,7 +92677,6 @@ icon_state = "1-2" }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 0; name = "Customs Desk"; req_access_txt = "19" }, @@ -92560,8 +92794,10 @@ /turf/open/floor/plating/airless, /area/science/test_area) "dOa" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Airlock"; req_access_txt = "13" }, @@ -92579,8 +92815,10 @@ /turf/open/floor/plasteel, /area/maintenance/port/aft) "dOc" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Airlock"; req_access_txt = "13" }, @@ -93134,12 +93372,11 @@ /obj/effect/turf_decal/stripes/line{ dir = 2 }, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/virology{ autoclose = 0; frequency = 1449; - icon_state = "door_locked"; id_tag = "virology_airlock_exterior"; - locked = 1; name = "Virology Exterior Airlock"; req_access_txt = "39" }, @@ -93155,6 +93392,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/medical/medbay/central) "dPp" = ( @@ -93857,12 +94097,11 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/virology{ autoclose = 0; frequency = 1449; - icon_state = "door_locked"; id_tag = "virology_airlock_interior"; - locked = 1; name = "Virology Interior Airlock"; req_access_txt = "39" }, @@ -93876,6 +94115,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/medical/virology) "dQY" = ( @@ -93951,6 +94193,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/medical/virology) "dRc" = ( @@ -97016,8 +97261,10 @@ /turf/closed/wall, /area/hallway/secondary/exit/departure_lounge) "dYI" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Docking Port" }, /obj/effect/turf_decal/stripes/line{ @@ -97029,8 +97276,10 @@ /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) "dYJ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Docking Port" }, /obj/effect/turf_decal/stripes/line{ @@ -98239,8 +98488,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Solar Access"; req_access_txt = "10; 13" }, @@ -98264,8 +98515,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Solar Access"; req_access_txt = "10; 13" }, @@ -99808,8 +100061,10 @@ }, /area/security/checkpoint/escape) "eeS" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Docking Port"; req_access_txt = "63" }, @@ -99832,8 +100087,10 @@ /turf/open/floor/plasteel, /area/security/checkpoint/escape) "eeU" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Docking Port"; req_access_txt = "63" }, @@ -99975,8 +100232,8 @@ /area/chapel/office) "eft" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "External Airlock"; req_access_txt = "13" }, @@ -100441,8 +100698,10 @@ /turf/open/floor/plating, /area/chapel/office) "egD" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "External Airlock"; req_access_txt = "13" }, @@ -100695,12 +100954,50 @@ dir = 10 }, /area/science/circuit) -"hKW" = ( -/obj/machinery/vending/kink, -/turf/open/floor/plasteel/vault{ - dir = 5 +"hrP" = ( +/obj/structure/cable/white{ + icon_state = "1-2" }, -/area/crew_quarters/locker) +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"hGT" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "1" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) "hNZ" = ( /obj/structure/chair/office/light{ dir = 8 @@ -100746,6 +101043,23 @@ /obj/item/device/integrated_circuit_printer, /turf/open/floor/plasteel/white/side, /area/science/circuit) +"jqM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/highsecurity{ + name = "Emergency Access"; + req_access_txt = "24;10" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) "jBE" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/neutral, @@ -100769,6 +101083,12 @@ dir = 10 }, /area/science/circuit) +"lel" = ( +/obj/machinery/vending/kink, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/locker) "loI" = ( /obj/machinery/autolathe, /obj/machinery/door/window/southleft{ @@ -100839,6 +101159,19 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/circuit/green, /area/science/research/abandoned) +"oZC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Corporate Lounge"; + req_access = null; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bridge/showroom/corporate) "pmQ" = ( /obj/structure/table/reinforced, /obj/machinery/newscaster{ @@ -100865,11 +101198,6 @@ }, /turf/open/floor/plating, /area/science/research/abandoned) -"pGS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/kink, -/turf/open/floor/plating, -/area/maintenance/port) "pQm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ @@ -100921,12 +101249,42 @@ dir = 10 }, /area/science/misc_lab) +"upk" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) "upw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light, /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/plasteel/whitepurple/side, /area/science/misc_lab) +"uYS" = ( +/obj/machinery/door/airlock/atmos/glass{ + heat_proof = 1; + name = "Supermatter Chamber"; + req_access_txt = "0"; + req_one_access_txt = "24;10" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/supermatter) "vqd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bodycontainer/morgue{ @@ -100954,6 +101312,24 @@ }, /turf/open/floor/plasteel/whitepurple/corner, /area/science/misc_lab) +"xaf" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Access" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) "xwK" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -126783,7 +127159,7 @@ ayK axz aAW axz -aAW +uYS aEr aFB aHd @@ -129607,7 +129983,7 @@ aqV aqV alT ayR -azZ +jqM aBf alT alf @@ -129914,7 +130290,7 @@ bWC bYL caE caE -pGS +ceb cea caE cjp @@ -131512,7 +131888,7 @@ dFG dHf dIr dJR -dKD +hrP dLQ dNu dOi @@ -140727,7 +141103,7 @@ cBv cDc cBv cBv -cAb +oZC cIP cKC cMa @@ -149454,7 +149830,7 @@ clt cnc coE cqd -hKW +lel csT cuy cvU @@ -157637,7 +158013,7 @@ aSO aUJ aWr aFm -aZF +hGT bbo aFm aKV @@ -159232,10 +159608,10 @@ cuM cuM cuM cuM -cJA +xaf cuM cuM -cOb +upk cuM cuM cuM diff --git a/_maps/cit_map_files/MetaStation/MetaStation.dmm b/_maps/cit_map_files/MetaStation/MetaStation.dmm index 53bf730451..96021ab0f9 100644 --- a/_maps/cit_map_files/MetaStation/MetaStation.dmm +++ b/_maps/cit_map_files/MetaStation/MetaStation.dmm @@ -2,43 +2,43 @@ "aaa" = ( /turf/open/space/basic, /area/space) -"aab" = ( +"aac" = ( /obj/effect/landmark/carpspawn, /turf/open/space, /area/space) -"aac" = ( -/obj/structure/grille, -/turf/open/space, -/area/space/nearstation) -"aad" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aae" = ( -/obj/structure/grille/broken, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) "aaf" = ( /obj/structure/lattice, /turf/open/space, /area/space/nearstation) "aag" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"aah" = ( /obj/structure/cable{ icon_state = "0-2" }, /obj/machinery/power/tracker, /turf/open/floor/plating/airless, /area/solar/port/fore) -"aah" = ( +"aai" = ( +/obj/structure/grille/broken, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"aaj" = ( +/obj/structure/grille, +/turf/open/space, +/area/space/nearstation) +"aak" = ( /obj/structure/cable{ icon_state = "1-2" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"aai" = ( +"aal" = ( /obj/structure/cable{ icon_state = "0-2" }, @@ -48,12 +48,12 @@ }, /turf/open/floor/plasteel/airless/solarpanel, /area/solar/port/fore) -"aaj" = ( +"aam" = ( /obj/structure/cable, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"aak" = ( +"aan" = ( /obj/structure/cable{ icon_state = "1-4" }, @@ -63,7 +63,7 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"aal" = ( +"aao" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -76,25 +76,25 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"aam" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/fore) -"aan" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/fore) -"aao" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/fore) "aap" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/fore) +"aaq" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/fore) +"aar" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/fore) +"aas" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -107,7 +107,7 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"aaq" = ( +"aat" = ( /obj/structure/cable{ icon_state = "2-8" }, @@ -117,10 +117,7 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"aar" = ( -/turf/open/space, -/area/space) -"aas" = ( +"aau" = ( /obj/structure/cable, /obj/machinery/power/solar{ id = "foreport"; @@ -128,47 +125,37 @@ }, /turf/open/floor/plasteel/airless/solarpanel, /area/solar/port/fore) -"aat" = ( -/obj/docking_port/stationary{ - dheight = 1; - dir = 8; - dwidth = 12; - height = 17; - id = "syndicate_nw"; - name = "northwest of station"; - turf_type = /turf/open/space; - width = 23 - }, -/turf/open/space/basic, -/area/space/nearstation) -"aau" = ( +"aav" = ( +/turf/open/space, +/area/space) +"aaw" = ( /obj/item/stack/cable_coil, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"aav" = ( +"aax" = ( /turf/closed/wall/r_wall, /area/security/prison) -"aaw" = ( +"aay" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" }, /turf/open/floor/plating, /area/security/prison) -"aax" = ( +"aaz" = ( /obj/effect/landmark/xeno_spawn, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"aay" = ( +"aaA" = ( /obj/machinery/seed_extractor, /obj/machinery/light/small{ dir = 8 }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaz" = ( +"aaB" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -177,7 +164,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaA" = ( +"aaC" = ( /obj/structure/sink/kitchen{ desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; @@ -187,14 +174,14 @@ icon_state = "platingdmg3" }, /area/security/prison) -"aaB" = ( +"aaD" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/item/twohanded/required/kirbyplants, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaC" = ( +"aaE" = ( /obj/machinery/biogenerator, /obj/machinery/light/small{ dir = 4 @@ -205,21 +192,14 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaD" = ( -/obj/docking_port/stationary/random{ - id = "pod_lavaland2"; - name = "lavaland" - }, -/turf/open/space, -/area/space/nearstation) -"aaE" = ( +"aaF" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" }, /turf/open/floor/plating, /area/security/prison) -"aaF" = ( +"aaG" = ( /obj/machinery/hydroponics/constructable, /obj/item/seeds/ambrosia, /obj/structure/cable/yellow{ @@ -227,7 +207,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaG" = ( +"aaH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -240,13 +220,13 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaH" = ( +"aaI" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaI" = ( +"aaJ" = ( /obj/item/reagent_containers/glass/bucket, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -257,7 +237,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaJ" = ( +"aaK" = ( /obj/machinery/hydroponics/constructable, /obj/item/seeds/glowshroom, /obj/structure/cable/yellow{ @@ -265,16 +245,13 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaK" = ( +"aaL" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/open/floor/plating, /area/security/prison) -"aaL" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/pod_2) "aaM" = ( /obj/effect/spawner/structure/window/shuttle, /turf/open/floor/plating, @@ -287,12 +264,17 @@ /turf/open/floor/plating/airless, /area/solar/starboard/fore) "aaO" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aaP" = ( /obj/machinery/hydroponics/constructable, /obj/item/cultivator, /obj/item/seeds/carrot, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaP" = ( +"aaQ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -300,14 +282,14 @@ /obj/item/reagent_containers/glass/bucket, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaQ" = ( +"aaR" = ( /turf/open/floor/plasteel, /area/security/prison) -"aaR" = ( +"aaS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaS" = ( +"aaT" = ( /obj/machinery/hydroponics/constructable, /obj/item/device/plant_analyzer, /obj/machinery/airalarm{ @@ -316,34 +298,20 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaT" = ( -/turf/closed/wall/mineral/plastitanium, -/area/security/prison) -"aaU" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_x = -32; - possible_destinations = "pod_lavaland2"; - shuttleId = "pod2" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_2) "aaV" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/pod_2) +"aaY" = ( /obj/structure/cable{ icon_state = "1-2" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"aaW" = ( +"aaZ" = ( /turf/closed/wall/r_wall, /area/security/execution/education) -"aaX" = ( +"aba" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ @@ -352,14 +320,14 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/security/prison) -"aaY" = ( +"abb" = ( /obj/machinery/door/airlock/public/glass{ id_tag = "permahydro"; name = "Hydroponics Module" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaZ" = ( +"abc" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -367,32 +335,17 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/security/prison) -"aba" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - pixel_x = 25 - }, -/obj/item/storage/pod{ - pixel_x = -26 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_2) -"abb" = ( +"abe" = ( /turf/closed/wall, /area/security/prison) -"abc" = ( +"abf" = ( /obj/structure/cable{ icon_state = "0-2" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"abd" = ( +"abg" = ( /obj/machinery/door/poddoor{ density = 1; icon_state = "closed"; @@ -405,7 +358,7 @@ }, /turf/open/floor/plating, /area/security/execution/education) -"abe" = ( +"abh" = ( /obj/item/soap/nanotrasen, /obj/item/bikehorn/rubberducky, /obj/machinery/shower{ @@ -416,7 +369,7 @@ }, /turf/open/floor/plasteel/freezer, /area/security/prison) -"abf" = ( +"abi" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -430,7 +383,7 @@ }, /turf/open/floor/plasteel/freezer, /area/security/prison) -"abg" = ( +"abj" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -439,7 +392,7 @@ /obj/item/canvas/twentythreeXtwentythree, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abh" = ( +"abk" = ( /obj/structure/table, /obj/item/folder, /obj/item/paper/guides/jobs/hydroponics, @@ -453,25 +406,25 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abi" = ( +"abl" = ( /obj/structure/table, /obj/machinery/computer/libraryconsole/bookmanagement, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abj" = ( +"abm" = ( /obj/machinery/computer/arcade, /obj/machinery/computer/security/telescreen/entertainment{ pixel_y = 32 }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abk" = ( +"abn" = ( /obj/machinery/newscaster{ pixel_y = 32 }, /turf/open/floor/plasteel, /area/security/prison) -"abl" = ( +"abo" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -481,14 +434,14 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abm" = ( +"abp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-8" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abn" = ( +"abq" = ( /obj/structure/holohoop{ pixel_y = 29 }, @@ -497,7 +450,7 @@ icon_state = "platingdmg1" }, /area/security/prison) -"abo" = ( +"abr" = ( /obj/machinery/status_display{ pixel_y = 32 }, @@ -505,7 +458,7 @@ dir = 8 }, /area/security/prison) -"abp" = ( +"abs" = ( /obj/machinery/washing_machine, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -514,11 +467,11 @@ dir = 8 }, /area/security/prison) -"abq" = ( +"abt" = ( /obj/structure/shuttle/engine/propulsion/burst, /turf/closed/wall/mineral/titanium, /area/shuttle/pod_2) -"abr" = ( +"abu" = ( /obj/machinery/door/airlock/titanium{ name = "Escape Pod Airlock" }, @@ -530,7 +483,7 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/pod_2) -"abs" = ( +"abv" = ( /obj/structure/cable{ icon_state = "0-2" }, @@ -540,19 +493,19 @@ }, /turf/open/floor/plasteel/airless/solarpanel, /area/solar/starboard/fore) -"abt" = ( +"abw" = ( /obj/structure/cable, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"abu" = ( +"abx" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/turf_decal/stripes/line{ dir = 9 }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"abv" = ( +"aby" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -561,7 +514,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"abw" = ( +"abz" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -570,13 +523,13 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"abx" = ( +"abA" = ( /obj/machinery/shower{ dir = 4 }, /turf/open/floor/plasteel/freezer, /area/security/prison) -"aby" = ( +"abB" = ( /obj/machinery/door/window/westleft{ base_state = "right"; dir = 4; @@ -587,20 +540,20 @@ /obj/machinery/light/small, /turf/open/floor/plasteel/freezer, /area/security/prison) -"abz" = ( +"abC" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abA" = ( +"abD" = ( /obj/structure/chair/stool, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abB" = ( +"abE" = ( /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abC" = ( +"abF" = ( /obj/structure/table, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -615,24 +568,24 @@ }, /turf/open/floor/plasteel, /area/security/prison) -"abD" = ( +"abG" = ( /obj/structure/table, /obj/item/toy/cards/deck, /obj/item/toy/cards/deck, /turf/open/floor/plasteel, /area/security/prison) -"abE" = ( +"abH" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abF" = ( +"abI" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abG" = ( +"abJ" = ( /obj/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -641,7 +594,7 @@ dir = 8 }, /area/security/prison) -"abH" = ( +"abK" = ( /obj/structure/table, /obj/structure/bedsheetbin, /obj/structure/window/reinforced, @@ -652,21 +605,21 @@ dir = 8 }, /area/security/prison) -"abI" = ( +"abL" = ( /turf/open/floor/plating, /area/security/prison) -"abJ" = ( +"abM" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plating, /area/security/prison) -"abK" = ( +"abN" = ( /turf/open/floor/plating{ icon_state = "platingdmg3" }, /area/security/prison) -"abL" = ( +"abO" = ( /obj/structure/cable{ icon_state = "1-4" }, @@ -676,7 +629,7 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"abM" = ( +"abP" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -689,25 +642,25 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"abN" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/fore) -"abO" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/fore) -"abP" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/fore) "abQ" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/fore) +"abR" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/fore) +"abS" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/fore) +"abT" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -720,7 +673,7 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"abR" = ( +"abU" = ( /obj/structure/cable{ icon_state = "1-8" }, @@ -730,7 +683,7 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"abS" = ( +"abV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light/small{ dir = 8 @@ -745,7 +698,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"abT" = ( +"abW" = ( /obj/structure/bed, /obj/item/clothing/suit/straight_jacket, /obj/item/clothing/glasses/sunglasses/blindfold, @@ -754,7 +707,7 @@ /obj/item/device/electropack, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"abU" = ( +"abX" = ( /obj/machinery/flasher{ id = "justiceflash"; name = "mounted justice flash"; @@ -765,14 +718,14 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"abV" = ( +"abY" = ( /obj/machinery/door/airlock{ name = "Unisex Restroom"; req_access_txt = "0" }, /turf/open/floor/plasteel/freezer, /area/security/prison) -"abW" = ( +"abZ" = ( /obj/structure/table, /obj/item/book/manual/chef_recipes{ pixel_x = 2; @@ -781,7 +734,7 @@ /obj/item/clothing/head/chefhat, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abX" = ( +"aca" = ( /obj/structure/table, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -791,17 +744,17 @@ /obj/item/toy/cards/deck, /turf/open/floor/plasteel, /area/security/prison) -"abY" = ( +"acb" = ( /obj/structure/table, /obj/item/storage/pill_bottle/dice, /turf/open/floor/plasteel, /area/security/prison) -"abZ" = ( +"acc" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/security/prison) -"aca" = ( +"ace" = ( /obj/machinery/vending/sustenance{ desc = "A vending machine normally reserved for work camps."; name = "\improper sustenance vendor"; @@ -809,30 +762,33 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acb" = ( +"acf" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/security/prison) -"acc" = ( +"acg" = ( /obj/machinery/light/small, /turf/open/floor/plating{ icon_state = "panelscorched" }, /area/security/prison) -"acd" = ( +"ach" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plating, /area/security/prison) -"ace" = ( +"aci" = ( /obj/machinery/door/airlock/external{ name = "Security External Airlock"; req_access_txt = "1" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/security/prison) -"acf" = ( +"acj" = ( /obj/machinery/light/small{ dir = 1 }, @@ -844,11 +800,11 @@ }, /turf/open/floor/plating, /area/security/prison) -"acg" = ( +"ack" = ( /obj/structure/lattice/catwalk, /turf/open/space, /area/space/nearstation) -"ach" = ( +"acl" = ( /obj/structure/cable, /obj/machinery/power/solar{ id = "forestarboard"; @@ -856,7 +812,7 @@ }, /turf/open/floor/plasteel/airless/solarpanel, /area/solar/starboard/fore) -"aci" = ( +"acm" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -866,7 +822,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"acj" = ( +"acn" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, @@ -875,7 +831,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"ack" = ( +"aco" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 2; name = "justice injector" @@ -885,7 +841,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"acl" = ( +"acp" = ( /obj/machinery/light/small{ dir = 4 }, @@ -894,7 +850,7 @@ }, /turf/open/floor/plasteel/freezer, /area/security/prison) -"acm" = ( +"acq" = ( /obj/structure/table, /obj/item/storage/box/donkpockets{ pixel_x = 2; @@ -908,13 +864,13 @@ icon_state = "panelscorched" }, /area/security/prison) -"acn" = ( +"acr" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aco" = ( +"acs" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -923,7 +879,7 @@ }, /turf/open/floor/plasteel, /area/security/prison) -"acp" = ( +"act" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -938,27 +894,27 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acq" = ( +"acu" = ( /obj/machinery/holopad, /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acr" = ( +"acv" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acs" = ( +"acw" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"act" = ( +"acx" = ( /obj/machinery/airalarm{ dir = 8; pixel_x = 24 @@ -966,18 +922,19 @@ /obj/machinery/cryopod, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acu" = ( +"acy" = ( /obj/machinery/door/airlock/external{ name = "Escape Pod Two" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/security/prison) -"acv" = ( +"acz" = ( /obj/item/stack/cable_coil, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"acw" = ( +"acA" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/poddoor/preopen{ @@ -989,7 +946,7 @@ dir = 4 }, /area/security/execution/education) -"acx" = ( +"acB" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "executionfireblast"; @@ -1003,7 +960,7 @@ dir = 4 }, /area/security/execution/education) -"acy" = ( +"acC" = ( /obj/machinery/door/window/brigdoor{ dir = 2; name = "Justice Chamber"; @@ -1033,7 +990,7 @@ dir = 4 }, /area/security/execution/education) -"acz" = ( +"acD" = ( /obj/structure/table, /obj/machinery/microwave{ pixel_x = -3; @@ -1043,19 +1000,19 @@ icon_state = "platingdmg1" }, /area/security/prison) -"acA" = ( +"acE" = ( /turf/open/floor/plating{ icon_state = "panelscorched" }, /area/security/prison) -"acB" = ( +"acF" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /obj/machinery/light, /turf/open/floor/plasteel, /area/security/prison) -"acC" = ( +"acG" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -1064,7 +1021,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acD" = ( +"acH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -1082,7 +1039,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acE" = ( +"acI" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -1091,26 +1048,26 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acF" = ( +"acJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/security/prison) -"acG" = ( +"acK" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acH" = ( +"acL" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /obj/machinery/light, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acI" = ( +"acM" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -1119,7 +1076,7 @@ /obj/item/pen, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acJ" = ( +"acN" = ( /obj/structure/table/glass, /obj/item/reagent_containers/syringe, /obj/item/reagent_containers/glass/bottle/morphine{ @@ -1129,7 +1086,7 @@ dir = 1 }, /area/security/prison) -"acK" = ( +"acO" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -1147,7 +1104,14 @@ dir = 1 }, /area/security/prison) -"acL" = ( +"acP" = ( +/turf/closed/wall, +/area/crew_quarters/fitness/recreation) +"acQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/fitness/recreation) +"acR" = ( /obj/structure/table/glass, /obj/item/reagent_containers/syringe, /obj/item/reagent_containers/glass/bottle/morphine{ @@ -1162,38 +1126,28 @@ dir = 1 }, /area/security/prison) -"acM" = ( -/turf/closed/wall, -/area/crew_quarters/fitness/recreation) -"acN" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/fitness/recreation) -"acO" = ( -/turf/closed/wall/mineral/plastitanium, -/area/crew_quarters/fitness/recreation) -"acP" = ( +"acS" = ( /obj/structure/cable{ icon_state = "1-4" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"acQ" = ( +"acT" = ( /obj/structure/cable{ icon_state = "4-8" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"acR" = ( +"acU" = ( /obj/structure/cable{ icon_state = "2-8" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"acS" = ( +"acV" = ( /obj/structure/table, /obj/item/reagent_containers/glass/bottle/morphine{ pixel_x = -4; @@ -1264,7 +1218,7 @@ dir = 1 }, /area/security/execution/education) -"acT" = ( +"acW" = ( /obj/structure/table, /obj/item/folder/red{ pixel_x = 3 @@ -1283,7 +1237,7 @@ dir = 1 }, /area/security/execution/education) -"acU" = ( +"acX" = ( /obj/machinery/atmospherics/pipe/simple/general/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -1292,7 +1246,7 @@ dir = 1 }, /area/security/execution/education) -"acV" = ( +"acY" = ( /obj/structure/sink/kitchen{ desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; @@ -1305,7 +1259,7 @@ dir = 1 }, /area/security/execution/education) -"acW" = ( +"acZ" = ( /obj/machinery/power/apc{ dir = 1; name = "Prisoner Education Chamber APC"; @@ -1326,13 +1280,13 @@ dir = 1 }, /area/security/execution/education) -"acX" = ( +"ada" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/closed/wall/r_wall, /area/security/prison) -"acY" = ( +"adb" = ( /obj/machinery/door/poddoor/preopen{ id = "permacell3"; name = "Cell Shutters" @@ -1341,13 +1295,14 @@ id_tag = "permabolt3"; name = "Cell 3" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acZ" = ( +"adc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/security/prison) -"ada" = ( +"add" = ( /obj/machinery/door/poddoor/preopen{ id = "permacell2"; name = "Cell Shutters" @@ -1360,9 +1315,10 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adb" = ( +"ade" = ( /obj/machinery/door/poddoor/preopen{ id = "permacell1"; name = "Cell Shutters" @@ -1371,28 +1327,29 @@ id_tag = "permabolt1"; name = "Cell 1" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adc" = ( +"adf" = ( /obj/machinery/light/small{ dir = 4 }, /turf/open/floor/plating, /area/security/prison) -"add" = ( +"adg" = ( /obj/structure/bed, /obj/item/clothing/suit/straight_jacket, /obj/item/clothing/glasses/sunglasses/blindfold, /obj/item/clothing/mask/muzzle, /turf/open/floor/plasteel/white, /area/security/prison) -"ade" = ( +"adh" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, /turf/open/floor/plasteel/white, /area/security/prison) -"adf" = ( +"adi" = ( /obj/structure/bed, /obj/item/clothing/suit/straight_jacket, /obj/item/clothing/glasses/sunglasses/blindfold, @@ -1402,23 +1359,23 @@ }, /turf/open/floor/plasteel/white, /area/security/prison) -"adg" = ( +"adj" = ( /obj/structure/closet/emcloset, /obj/machinery/light/small{ dir = 8 }, /turf/open/floor/plating, /area/crew_quarters/fitness/recreation) -"adh" = ( +"adk" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 8 }, /turf/closed/wall/mineral/titanium, /area/shuttle/pod_3) -"adi" = ( +"adl" = ( /turf/closed/wall/mineral/titanium, /area/shuttle/pod_3) -"adj" = ( +"adm" = ( /obj/structure/table, /obj/item/device/flashlight/lamp, /obj/structure/reagent_dispensers/peppertank{ @@ -1429,7 +1386,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"adk" = ( +"adn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/chair/office/dark{ dir = 1 @@ -1439,15 +1396,15 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"adl" = ( +"ado" = ( /obj/machinery/atmospherics/pipe/simple/general/hidden, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"adm" = ( +"adp" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"adn" = ( +"adq" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -1460,11 +1417,11 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"ado" = ( +"adr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/security/execution/education) -"adp" = ( +"ads" = ( /obj/structure/bed, /obj/machinery/camera{ c_tag = "Prison Cell 3"; @@ -1472,7 +1429,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adq" = ( +"adt" = ( /obj/structure/chair/stool, /obj/machinery/light/small{ dir = 1 @@ -1487,7 +1444,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adr" = ( +"adu" = ( /obj/structure/bed, /obj/machinery/camera{ c_tag = "Prison Cell 2"; @@ -1495,14 +1452,14 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"ads" = ( +"adv" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adt" = ( +"adw" = ( /obj/structure/chair/stool, /obj/machinery/light/small{ dir = 1 @@ -1519,7 +1476,7 @@ icon_state = "platingdmg2" }, /area/security/prison) -"adu" = ( +"adx" = ( /obj/structure/bed, /obj/machinery/camera{ c_tag = "Prison Cell 1"; @@ -1527,7 +1484,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adv" = ( +"ady" = ( /obj/structure/chair/stool, /obj/machinery/light/small{ dir = 1 @@ -1542,12 +1499,12 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adw" = ( +"adz" = ( /turf/open/floor/plating{ icon_state = "platingdmg1" }, /area/security/prison) -"adx" = ( +"adA" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/machinery/light{ dir = 8 @@ -1558,13 +1515,13 @@ }, /turf/open/floor/plasteel/white, /area/security/prison) -"ady" = ( +"adB" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/white, /area/security/prison) -"adz" = ( +"adC" = ( /obj/machinery/flasher{ id = "insaneflash"; pixel_x = 26 @@ -1572,7 +1529,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/white, /area/security/prison) -"adA" = ( +"adD" = ( /obj/structure/lattice, /obj/machinery/camera/motion{ c_tag = "Armory - External"; @@ -1581,10 +1538,10 @@ }, /turf/open/space, /area/space/nearstation) -"adB" = ( +"adE" = ( /turf/open/floor/plating, /area/crew_quarters/fitness/recreation) -"adC" = ( +"adF" = ( /obj/machinery/door/airlock/titanium{ name = "Escape Pod Airlock" }, @@ -1598,47 +1555,32 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/pod_3) -"adD" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/item/storage/pod{ - pixel_x = 6; - pixel_y = -32 - }, -/obj/machinery/light/small, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_3) -"adE" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_y = -32; - possible_destinations = "pod_lavaland3"; - shuttleId = "pod3" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_3) -"adF" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/pod_3) "adG" = ( /obj/docking_port/stationary/random{ - dir = 4; - id = "pod_lavaland3"; + id = "pod_lavaland2"; name = "lavaland" }, /turf/open/space, /area/space/nearstation) "adH" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_x = -32; + possible_destinations = "pod_lavaland2"; + shuttleId = "pod2" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/pod_2) +"adI" = ( +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/pod_3) +"adJ" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -1657,7 +1599,7 @@ dir = 2 }, /area/security/execution/education) -"adI" = ( +"adK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -1665,7 +1607,7 @@ dir = 2 }, /area/security/execution/education) -"adJ" = ( +"adL" = ( /obj/machinery/atmospherics/pipe/simple/general/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -1674,7 +1616,7 @@ dir = 2 }, /area/security/execution/education) -"adK" = ( +"adM" = ( /obj/machinery/button/door{ id = "prisonereducation"; name = "Door Bolt Control"; @@ -1690,7 +1632,7 @@ dir = 2 }, /area/security/execution/education) -"adL" = ( +"adN" = ( /obj/machinery/light_switch{ pixel_x = 26 }, @@ -1704,7 +1646,7 @@ dir = 2 }, /area/security/execution/education) -"adM" = ( +"adO" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/machinery/flasher{ id = "PCell 3"; @@ -1714,7 +1656,7 @@ icon_state = "platingdmg3" }, /area/security/prison) -"adN" = ( +"adP" = ( /obj/structure/table, /obj/item/paper, /obj/item/pen, @@ -1723,13 +1665,13 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adO" = ( +"adQ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /turf/closed/wall, /area/security/prison) -"adP" = ( +"adR" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -1739,7 +1681,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adQ" = ( +"adS" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -1748,14 +1690,14 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adR" = ( +"adT" = ( /obj/structure/table, /obj/item/paper, /obj/item/pen, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adS" = ( +"adU" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/machinery/flasher{ id = "PCell 1"; @@ -1763,7 +1705,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adT" = ( +"adV" = ( /obj/item/folder/red, /obj/item/pen, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -1772,7 +1714,7 @@ dir = 2 }, /area/security/prison) -"adU" = ( +"adW" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -1780,7 +1722,7 @@ dir = 2 }, /area/security/prison) -"adV" = ( +"adX" = ( /obj/structure/bed/roller, /obj/structure/bed/roller, /obj/machinery/iv_drip, @@ -1790,13 +1732,13 @@ dir = 2 }, /area/security/prison) -"adW" = ( +"adY" = ( /turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"adX" = ( +/area/security/warden) +"adZ" = ( /turf/closed/wall/r_wall, /area/crew_quarters/heads/hos) -"adY" = ( +"aea" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" @@ -1807,7 +1749,7 @@ }, /turf/open/floor/plating, /area/crew_quarters/heads/hos) -"adZ" = ( +"aeb" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -1821,7 +1763,7 @@ }, /turf/open/floor/plating, /area/crew_quarters/heads/hos) -"aea" = ( +"aec" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -1835,17 +1777,17 @@ }, /turf/open/floor/plating, /area/crew_quarters/heads/hos) -"aeb" = ( +"aed" = ( /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plating, /area/crew_quarters/fitness/recreation) -"aec" = ( +"aee" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"aed" = ( +"aef" = ( /obj/machinery/door/airlock/external{ name = "Solar Maintenance"; req_access = null; @@ -1854,9 +1796,10 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"aee" = ( +"aeg" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -1866,7 +1809,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"aef" = ( +"aeh" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 10 }, @@ -1880,7 +1823,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"aeg" = ( +"aei" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1; name = "justice gas pump" @@ -1894,7 +1837,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"aeh" = ( +"aej" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ aiControlDisabled = 1; @@ -1911,22 +1854,25 @@ dir = 1 }, /area/security/execution/education) -"aei" = ( +"aek" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/security/prison) -"aej" = ( +"ael" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, /area/security/prison) -"aek" = ( +"aem" = ( /obj/machinery/door/airlock/security/glass{ name = "Long-Term Cell 3"; req_access_txt = "2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"ael" = ( +"aen" = ( /obj/machinery/door/airlock/security/glass{ name = "Long-Term Cell 2"; req_access_txt = "2" @@ -1935,16 +1881,22 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aem" = ( +"aeo" = ( /obj/machinery/door/airlock/security/glass{ name = "Long-Term Cell 1"; req_access_txt = "2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aen" = ( +"aep" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Prison Sanitarium"; @@ -1957,7 +1909,24 @@ dir = 1 }, /area/security/prison) -"aeo" = ( +"aeq" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"aer" = ( +/obj/structure/rack, +/obj/item/gun/energy/ionrifle{ + pin = /obj/item/device/firing_pin + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/gun/energy/temperature/security, +/obj/item/clothing/suit/armor/laserproof, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/ai_monitored/security/armory) +"aes" = ( /obj/structure/closet/secure_closet{ name = "contraband locker"; req_access_txt = "3" @@ -1973,27 +1942,7 @@ dir = 4 }, /area/ai_monitored/security/armory) -"aep" = ( -/obj/structure/rack, -/obj/item/gun/energy/ionrifle{ - pin = /obj/item/device/firing_pin - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/gun/energy/temperature/security, -/obj/item/clothing/suit/armor/laserproof, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/ai_monitored/security/armory) -"aeq" = ( -/obj/structure/closet/secure_closet/lethalshots, -/turf/open/floor/plasteel/vault{ - dir = 1 - }, -/area/ai_monitored/security/armory) -"aer" = ( +"aet" = ( /obj/structure/table/wood, /obj/machinery/newscaster/security_unit{ pixel_y = 32 @@ -2012,81 +1961,66 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"aes" = ( +"aeu" = ( /obj/machinery/computer/prisoner, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"aet" = ( +"aev" = ( /obj/machinery/computer/security, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"aeu" = ( +"aew" = ( /obj/machinery/computer/secure_data, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"aev" = ( -/obj/structure/table/wood, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Security's Desk"; - departmentType = 5; - name = "Head of Security RC"; - pixel_y = 30 +"aex" = ( +/obj/structure/closet/secure_closet/lethalshots, +/turf/open/floor/plasteel/vault{ + dir = 1 }, -/obj/machinery/computer/med_data/laptop, -/obj/item/storage/secure/safe/HoS{ - pixel_x = 36; - pixel_y = 28 - }, -/obj/machinery/camera{ - c_tag = "Head of Security's Office"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"aew" = ( +/area/ai_monitored/security/armory) +"aey" = ( /turf/closed/wall, /area/security/range) -"aex" = ( +"aez" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/range) -"aey" = ( +"aeA" = ( /obj/machinery/door/airlock/external{ name = "Escape Pod Three" }, /turf/open/floor/plating, /area/crew_quarters/fitness/recreation) -"aez" = ( +"aeB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/closed/wall, /area/crew_quarters/fitness/recreation) -"aeA" = ( +"aeC" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plating, /area/crew_quarters/fitness/recreation) -"aeB" = ( +"aeE" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/open/floor/plating, /area/crew_quarters/fitness/recreation) -"aeC" = ( +"aeF" = ( /obj/effect/landmark/xeno_spawn, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"aeD" = ( +"aeG" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -2095,14 +2029,14 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"aeE" = ( +"aeH" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /turf/open/floor/plasteel/vault, /area/security/execution/education) -"aeF" = ( +"aeI" = ( /obj/item/tank/internals/oxygen/red{ pixel_x = -4; pixel_y = -1 @@ -2124,14 +2058,14 @@ /obj/item/wrench, /turf/open/floor/plasteel/vault, /area/security/execution/education) -"aeG" = ( +"aeJ" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 9 }, /obj/machinery/space_heater, /turf/open/floor/plasteel/vault, /area/security/execution/education) -"aeH" = ( +"aeK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-4" @@ -2140,7 +2074,7 @@ dir = 2 }, /area/security/prison) -"aeI" = ( +"aeL" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -2156,7 +2090,7 @@ dir = 2 }, /area/security/prison) -"aeJ" = ( +"aeM" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -2168,7 +2102,7 @@ dir = 2 }, /area/security/prison) -"aeK" = ( +"aeN" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -2179,7 +2113,7 @@ dir = 2 }, /area/security/prison) -"aeL" = ( +"aeO" = ( /obj/machinery/button/door{ id = "permacell3"; name = "Cell 3 Lockdown"; @@ -2202,7 +2136,7 @@ dir = 2 }, /area/security/prison) -"aeM" = ( +"aeP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -2224,7 +2158,7 @@ dir = 2 }, /area/security/prison) -"aeN" = ( +"aeQ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -2238,7 +2172,7 @@ dir = 2 }, /area/security/prison) -"aeO" = ( +"aeR" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -2250,7 +2184,7 @@ dir = 2 }, /area/security/prison) -"aeP" = ( +"aeS" = ( /obj/machinery/button/door{ id = "permacell2"; name = "Cell 2 Lockdown"; @@ -2274,7 +2208,7 @@ dir = 2 }, /area/security/prison) -"aeQ" = ( +"aeT" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -2291,7 +2225,7 @@ dir = 2 }, /area/security/prison) -"aeR" = ( +"aeU" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -2303,7 +2237,7 @@ dir = 2 }, /area/security/prison) -"aeS" = ( +"aeV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -2314,7 +2248,7 @@ dir = 2 }, /area/security/prison) -"aeT" = ( +"aeW" = ( /obj/machinery/button/door{ id = "permacell1"; name = "Cell 1 Lockdown"; @@ -2338,7 +2272,7 @@ dir = 2 }, /area/security/prison) -"aeU" = ( +"aeX" = ( /obj/machinery/power/apc/highcap/five_k{ dir = 1; name = "Prison Wing APC"; @@ -2367,7 +2301,7 @@ dir = 2 }, /area/security/prison) -"aeV" = ( +"aeY" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -2378,7 +2312,7 @@ dir = 2 }, /area/security/prison) -"aeW" = ( +"aeZ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -2392,7 +2326,7 @@ dir = 2 }, /area/security/prison) -"aeX" = ( +"afa" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -2408,7 +2342,7 @@ dir = 2 }, /area/security/prison) -"aeY" = ( +"afb" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -2422,7 +2356,17 @@ dir = 2 }, /area/security/prison) -"aeZ" = ( +"afc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/security/prison) +"afd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -2439,17 +2383,28 @@ }, /turf/open/floor/plasteel, /area/security/prison) -"afa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" +"afe" = ( +/obj/structure/table/wood, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security RC"; + pixel_y = 30 }, -/obj/structure/cable/yellow{ - icon_state = "2-8" +/obj/machinery/computer/med_data/laptop, +/obj/item/storage/secure/safe/HoS{ + pixel_x = 36; + pixel_y = 28 }, -/turf/open/floor/plating, -/area/security/prison) -"afb" = ( +/obj/machinery/camera{ + c_tag = "Head of Security's Office"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"aff" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/item/storage/secure/safe{ name = "armory safe A"; @@ -2458,33 +2413,19 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/security/armory) -"afc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"afd" = ( +"afg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/ai_monitored/security/armory) -"afe" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/storage/secure/safe{ - name = "armory safe B"; - pixel_x = 6; - pixel_y = 28 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 +"afh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 }, /turf/open/floor/plasteel/dark, /area/ai_monitored/security/armory) -"aff" = ( +"afi" = ( /obj/structure/closet/secure_closet/hos, /obj/machinery/light{ dir = 8 @@ -2502,7 +2443,7 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"afg" = ( +"afj" = ( /obj/machinery/status_display{ pixel_x = -32; pixel_y = 32 @@ -2512,17 +2453,17 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"afh" = ( +"afk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"afi" = ( +"afl" = ( /obj/structure/chair/comfy/black, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"afj" = ( +"afm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -2531,7 +2472,7 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"afk" = ( +"afn" = ( /obj/machinery/status_display{ pixel_x = 32; pixel_y = 32 @@ -2544,7 +2485,7 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"afl" = ( +"afo" = ( /obj/machinery/light{ dir = 4 }, @@ -2558,7 +2499,7 @@ /obj/machinery/suit_storage_unit/hos, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"afm" = ( +"afp" = ( /obj/machinery/light/small{ dir = 1 }, @@ -2567,13 +2508,13 @@ }, /turf/open/floor/plasteel, /area/security/range) -"afn" = ( +"afq" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, /area/security/range) -"afo" = ( +"afr" = ( /obj/machinery/light/small{ dir = 1 }, @@ -2582,7 +2523,7 @@ }, /turf/open/floor/plasteel, /area/security/range) -"afp" = ( +"afs" = ( /obj/machinery/shower{ dir = 4 }, @@ -2594,11 +2535,11 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/fitness/recreation) -"afq" = ( +"aft" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"afr" = ( +"afu" = ( /obj/structure/table, /obj/item/reagent_containers/food/drinks/sillycup{ pixel_x = -5; @@ -2619,47 +2560,47 @@ }, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"afs" = ( +"afv" = ( /obj/structure/easel, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"aft" = ( +"afw" = ( /obj/structure/closet/masks, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"afu" = ( +"afx" = ( /obj/structure/closet/athletic_mixed, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"afv" = ( +"afy" = ( /obj/structure/closet/boxinggloves, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"afw" = ( +"afz" = ( /obj/structure/closet/emcloset, /obj/structure/sign/warning/pods{ pixel_y = 30 }, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"afx" = ( +"afA" = ( /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"afy" = ( +"afB" = ( /obj/machinery/computer/arcade, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"afz" = ( +"afC" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/crew_quarters/fitness/recreation) -"afA" = ( +"afD" = ( /turf/open/floor/engine{ name = "Holodeck Projector Floor" }, /area/holodeck/rec_center) -"afB" = ( +"afE" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -2668,9 +2609,12 @@ req_access = null; req_access_txt = "10; 13" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"afC" = ( +"afF" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "applebush" }, @@ -2679,7 +2623,7 @@ }, /turf/open/floor/plasteel, /area/security/prison) -"afD" = ( +"afG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -2687,7 +2631,7 @@ dir = 1 }, /area/security/prison) -"afE" = ( +"afH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -2699,7 +2643,7 @@ dir = 1 }, /area/security/prison) -"afF" = ( +"afI" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -2710,7 +2654,7 @@ dir = 1 }, /area/security/prison) -"afG" = ( +"afJ" = ( /obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -2722,7 +2666,7 @@ dir = 1 }, /area/security/prison) -"afH" = ( +"afK" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -2730,7 +2674,7 @@ dir = 1 }, /area/security/prison) -"afI" = ( +"afL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -2741,7 +2685,7 @@ dir = 1 }, /area/security/prison) -"afJ" = ( +"afM" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -2753,7 +2697,7 @@ dir = 1 }, /area/security/prison) -"afK" = ( +"afN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -2765,7 +2709,7 @@ dir = 1 }, /area/security/prison) -"afL" = ( +"afO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -2779,7 +2723,7 @@ dir = 1 }, /area/security/prison) -"afM" = ( +"afP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -2791,7 +2735,7 @@ dir = 1 }, /area/security/prison) -"afN" = ( +"afR" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -2802,7 +2746,7 @@ dir = 1 }, /area/security/prison) -"afO" = ( +"afS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -2811,7 +2755,7 @@ dir = 1 }, /area/security/prison) -"afP" = ( +"afT" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -2820,7 +2764,7 @@ dir = 1 }, /area/security/prison) -"afQ" = ( +"afU" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -2828,17 +2772,35 @@ dir = 1 }, /area/security/prison) -"afR" = ( +"afV" = ( /turf/open/floor/plasteel/red/corner{ dir = 1 }, /area/security/prison) -"afS" = ( +"afW" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /turf/open/floor/plating, /area/security/prison) -"afT" = ( +"afX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/storage/secure/safe{ + name = "armory safe B"; + pixel_x = 6; + pixel_y = 28 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"afY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"afZ" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -2863,11 +2825,21 @@ dir = 1 }, /area/ai_monitored/security/armory) -"afU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, +"aga" = ( +/mob/living/simple_animal/bot/secbot{ + arrest_type = 1; + health = 45; + icon_state = "secbot1"; + idcheck = 1; + name = "Sergeant-at-Armsky"; + on = 1; + weaponscheck = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, /area/ai_monitored/security/armory) -"afV" = ( +"agb" = ( /obj/structure/rack, /obj/item/gun/energy/e_gun/advtaser{ pixel_x = -3; @@ -2883,21 +2855,10 @@ dir = 1 }, /area/ai_monitored/security/armory) -"afW" = ( -/mob/living/simple_animal/bot/secbot{ - arrest_type = 1; - health = 45; - icon_state = "secbot1"; - idcheck = 1; - name = "Sergeant-at-Armsky"; - on = 1; - weaponscheck = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, +"agc" = ( +/turf/open/floor/plasteel/dark, /area/ai_monitored/security/armory) -"afX" = ( +"agd" = ( /obj/structure/rack, /obj/item/gun/energy/laser{ pixel_x = -3; @@ -2912,22 +2873,7 @@ dir = 4 }, /area/ai_monitored/security/armory) -"afY" = ( -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"afZ" = ( -/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, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/ai_monitored/security/armory) -"aga" = ( +"age" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" @@ -2941,7 +2887,7 @@ }, /turf/open/floor/plating, /area/crew_quarters/heads/hos) -"agb" = ( +"agf" = ( /obj/structure/table/wood, /obj/item/storage/secure/briefcase{ pixel_x = -2 @@ -2953,24 +2899,24 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"agc" = ( +"agg" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"agd" = ( +"agh" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"age" = ( +"agi" = ( /obj/structure/table/wood, /obj/item/stamp/hos, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"agf" = ( +"agj" = ( /obj/item/phone{ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; pixel_x = -3; @@ -2984,7 +2930,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"agg" = ( +"agk" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -2993,7 +2939,7 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"agh" = ( +"agl" = ( /obj/structure/table/wood, /obj/item/paper_bin{ pixel_x = -3; @@ -3004,7 +2950,7 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"agi" = ( +"agm" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -3018,27 +2964,27 @@ }, /turf/open/floor/plating, /area/crew_quarters/heads/hos) -"agj" = ( +"agn" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/security/range) -"agk" = ( +"ago" = ( /obj/structure/target_stake, /obj/item/target/syndicate, /turf/open/floor/plasteel, /area/security/range) -"agl" = ( +"agp" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plasteel, /area/security/range) -"agm" = ( +"agq" = ( /turf/closed/wall, /area/maintenance/fore) -"agn" = ( +"agr" = ( /obj/structure/sink{ dir = 8; pixel_x = -12; @@ -3058,14 +3004,14 @@ /obj/machinery/light/small, /turf/open/floor/plasteel/freezer, /area/crew_quarters/fitness/recreation) -"ago" = ( +"ags" = ( /obj/machinery/door/airlock{ id_tag = "FitnessShower"; name = "Fitness Room Shower" }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/fitness/recreation) -"agp" = ( +"agt" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -3073,7 +3019,7 @@ dir = 1 }, /area/crew_quarters/fitness/recreation) -"agq" = ( +"agu" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -3081,7 +3027,7 @@ dir = 1 }, /area/crew_quarters/fitness/recreation) -"agr" = ( +"agv" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -3096,13 +3042,13 @@ dir = 1 }, /area/crew_quarters/fitness/recreation) -"ags" = ( +"agw" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"agt" = ( +"agx" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -3110,7 +3056,7 @@ dir = 4 }, /area/crew_quarters/fitness/recreation) -"agu" = ( +"agy" = ( /obj/machinery/light{ dir = 1 }, @@ -3127,15 +3073,15 @@ dir = 4 }, /area/crew_quarters/fitness/recreation) -"agv" = ( +"agz" = ( /turf/open/floor/plasteel/neutral/corner{ dir = 4 }, /area/crew_quarters/fitness/recreation) -"agw" = ( -/turf/closed/wall, +"agA" = ( +/turf/closed/wall/r_wall, /area/maintenance/solars/port/fore) -"agx" = ( +"agB" = ( /obj/machinery/power/solar_control{ id = "foreport"; name = "Port Bow Solar Control"; @@ -3146,7 +3092,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"agy" = ( +"agC" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -3158,7 +3104,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"agz" = ( +"agD" = ( /obj/structure/sign/warning/vacuum/external{ pixel_x = 32 }, @@ -3166,7 +3112,7 @@ icon_state = "platingdmg2" }, /area/maintenance/solars/port/fore) -"agA" = ( +"agE" = ( /obj/structure/table, /obj/item/folder/red{ pixel_x = 3 @@ -3177,7 +3123,7 @@ }, /turf/open/floor/plasteel/vault, /area/security/prison) -"agB" = ( +"agF" = ( /obj/structure/rack, /obj/item/restraints/handcuffs, /obj/item/device/assembly/flash/handheld, @@ -3186,7 +3132,7 @@ }, /turf/open/floor/plasteel/vault, /area/security/prison) -"agC" = ( +"agG" = ( /obj/structure/table, /obj/item/storage/box/bodybags{ pixel_x = 4; @@ -3196,22 +3142,22 @@ /obj/item/storage/box/prisoner, /turf/open/floor/plasteel/vault, /area/security/prison) -"agD" = ( +"agH" = ( /obj/structure/closet/secure_closet/brig, /turf/open/floor/plasteel/vault, /area/security/prison) -"agE" = ( +"agI" = ( /obj/structure/closet/secure_closet/brig, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/vault, /area/security/prison) -"agF" = ( +"agJ" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall, /area/security/prison) -"agG" = ( +"agK" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ @@ -3221,29 +3167,31 @@ name = "Prison Wing"; req_access_txt = "1" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/security/prison) -"agH" = ( +"agL" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/prison) -"agI" = ( +"agM" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/security/glass{ name = "Prison Wing"; req_access_txt = "1" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/security/prison) -"agJ" = ( +"agN" = ( /obj/structure/sign/warning/securearea{ desc = "A warning sign which reads 'WARNING: Dangerous Inmates'."; name = "\improper WARNING: Dangerous Inmates" }, /turf/closed/wall, /area/security/prison) -"agK" = ( +"agO" = ( /obj/structure/table, /obj/machinery/recharger{ pixel_y = 4 @@ -3253,7 +3201,7 @@ }, /turf/open/floor/plasteel/vault, /area/security/prison) -"agL" = ( +"agP" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -3261,7 +3209,19 @@ }, /turf/open/floor/plasteel/vault, /area/security/prison) -"agM" = ( +"agQ" = ( +/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, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/ai_monitored/security/armory) +"agR" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -22 @@ -3274,7 +3234,13 @@ dir = 1 }, /area/ai_monitored/security/armory) -"agN" = ( +"agS" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"agT" = ( /obj/structure/rack, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/item/storage/box/rubbershot, @@ -3293,13 +3259,7 @@ dir = 1 }, /area/ai_monitored/security/armory) -"agO" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"agP" = ( +"agU" = ( /obj/structure/rack, /obj/item/gun/energy/e_gun{ pixel_x = -3; @@ -3314,27 +3274,7 @@ dir = 4 }, /area/ai_monitored/security/armory) -"agQ" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"agR" = ( -/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, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 28 - }, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/ai_monitored/security/armory) -"agS" = ( +"agV" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/machinery/door/poddoor/preopen{ @@ -3343,22 +3283,22 @@ }, /turf/open/floor/plating, /area/crew_quarters/heads/hos) -"agT" = ( +"agW" = ( /obj/structure/table/wood, /obj/machinery/recharger, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"agU" = ( +"agX" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"agV" = ( +"agY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"agW" = ( +"agZ" = ( /obj/machinery/holopad, /obj/structure/chair{ dir = 1 @@ -3366,7 +3306,7 @@ /obj/effect/landmark/start/head_of_security, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"agX" = ( +"aha" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /mob/living/simple_animal/hostile/retaliate/bat{ desc = "A fierce companion for any person of power, this spider has been carefully trained by Nanotrasen specialists. Its beady, staring eyes send shivers down your spine."; @@ -3392,7 +3332,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"agY" = ( +"ahb" = ( /obj/structure/table/wood, /obj/item/device/taperecorder{ pixel_x = -4 @@ -3402,18 +3342,18 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"agZ" = ( +"ahc" = ( /turf/open/floor/plasteel, /area/security/range) -"aha" = ( +"ahd" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/maintenance/fore) -"ahb" = ( +"ahe" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/maintenance/fore) -"ahc" = ( +"ahf" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -3421,47 +3361,41 @@ dir = 1 }, /area/crew_quarters/fitness/recreation) -"ahd" = ( +"ahg" = ( /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"ahe" = ( +"ahh" = ( /turf/open/floor/plasteel/neutral/corner{ dir = 2 }, /area/crew_quarters/fitness/recreation) -"ahf" = ( +"ahi" = ( /obj/structure/chair, /turf/open/floor/plasteel/neutral/corner{ dir = 2 }, /area/crew_quarters/fitness/recreation) -"ahg" = ( +"ahj" = ( /obj/structure/chair, /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"ahh" = ( +"ahk" = ( /obj/structure/chair, /turf/open/floor/plasteel/neutral/corner{ dir = 8 }, /area/crew_quarters/fitness/recreation) -"ahi" = ( +"ahl" = ( /turf/open/floor/plasteel/neutral/corner{ dir = 8 }, /area/crew_quarters/fitness/recreation) -"ahj" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/crew_quarters/fitness/recreation) -"ahk" = ( +"ahm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"ahl" = ( +"ahn" = ( /obj/structure/chair{ dir = 4 }, @@ -3469,20 +3403,20 @@ dir = 4 }, /area/crew_quarters/fitness/recreation) -"ahm" = ( +"aho" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ req_access_txt = "0" }, /turf/closed/wall, /area/crew_quarters/fitness/recreation) -"ahn" = ( +"ahp" = ( /turf/closed/wall, /area/maintenance/disposal) -"aho" = ( +"ahq" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/disposal) -"ahp" = ( +"ahr" = ( /obj/structure/chair/stool{ pixel_y = 8 }, @@ -3492,7 +3426,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"ahq" = ( +"ahs" = ( /obj/structure/cable{ icon_state = "1-4" }, @@ -3500,7 +3434,7 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"ahr" = ( +"aht" = ( /obj/structure/cable{ icon_state = "0-8" }, @@ -3516,19 +3450,19 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"ahs" = ( +"ahu" = ( /obj/machinery/suit_storage_unit/security, /turf/open/floor/plasteel/vault{ dir = 1 }, /area/security/brig) -"aht" = ( +"ahv" = ( /obj/structure/tank_dispenser/oxygen, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/security/brig) -"ahu" = ( +"ahw" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -3537,10 +3471,10 @@ dir = 4 }, /area/security/brig) -"ahv" = ( +"ahx" = ( /turf/closed/wall, /area/security/brig) -"ahw" = ( +"ahy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -3552,7 +3486,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/security/brig) -"ahx" = ( +"ahz" = ( /obj/machinery/door/poddoor/preopen{ id = "Prison Gate"; name = "Security Blast Door" @@ -3560,7 +3494,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/security/brig) -"ahy" = ( +"ahA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/poddoor/preopen{ id = "Prison Gate"; @@ -3569,13 +3503,36 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/security/brig) -"ahz" = ( +"ahB" = ( /turf/closed/wall, /area/security/warden) -"ahA" = ( -/turf/closed/wall/r_wall, -/area/security/warden) -"ahB" = ( +"ahC" = ( +/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, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 28 + }, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/ai_monitored/security/armory) +"ahD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"ahE" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -3591,29 +3548,7 @@ dir = 1 }, /area/ai_monitored/security/armory) -"ahC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"ahD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/vault{ - dir = 6 - }, -/area/ai_monitored/security/armory) -"ahE" = ( +"ahF" = ( /obj/machinery/power/apc/highcap/five_k{ dir = 2; name = "Armory APC"; @@ -3632,12 +3567,24 @@ }, /turf/open/floor/plasteel/vault, /area/ai_monitored/security/armory) -"ahF" = ( +"ahG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/vault{ + dir = 6 + }, +/area/ai_monitored/security/armory) +"ahH" = ( /turf/open/floor/plasteel/vault{ dir = 10 }, /area/ai_monitored/security/armory) -"ahG" = ( +"ahI" = ( /obj/structure/rack, /obj/item/shield/riot{ pixel_x = -3; @@ -3658,7 +3605,7 @@ dir = 4 }, /area/ai_monitored/security/armory) -"ahH" = ( +"ahJ" = ( /obj/machinery/disposal/bin, /obj/machinery/firealarm{ dir = 8; @@ -3680,7 +3627,7 @@ }, /turf/open/floor/plasteel/vault, /area/crew_quarters/heads/hos) -"ahI" = ( +"ahK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -3689,7 +3636,7 @@ }, /turf/open/floor/plasteel/vault, /area/crew_quarters/heads/hos) -"ahJ" = ( +"ahL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment{ dir = 4 @@ -3699,7 +3646,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"ahK" = ( +"ahM" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -3711,14 +3658,14 @@ }, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"ahL" = ( +"ahN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"ahM" = ( +"ahO" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -3727,56 +3674,44 @@ }, /turf/open/floor/plasteel/vault, /area/crew_quarters/heads/hos) -"ahN" = ( -/obj/machinery/photocopier, -/obj/machinery/power/apc{ - dir = 4; - name = "Head of Security's Office APC"; - areastring = "/area/crew_quarters/heads/hos"; - pixel_x = 24 +"ahP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Armory"; + req_access = null; + req_access_txt = "3" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - icon_state = "0-8" + icon_state = "1-2" }, -/obj/machinery/button/door{ - id = "hosprivacy"; - name = "Privacy Shutters Control"; - pixel_x = 26; - pixel_y = -26 +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/vault{ + dir = 8 }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault, -/area/crew_quarters/heads/hos) -"ahO" = ( +/area/ai_monitored/security/armory) +"ahQ" = ( /obj/item/clothing/head/festive, /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plating, /area/maintenance/fore) -"ahP" = ( +"ahR" = ( /obj/item/cigbutt, /turf/open/floor/plating, /area/maintenance/fore) -"ahQ" = ( +"ahS" = ( /turf/open/floor/plating{ icon_state = "platingdmg1" }, /area/maintenance/fore) -"ahR" = ( -/obj/structure/table, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fore) -"ahS" = ( +"ahU" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/table, /obj/item/stock_parts/manipulator, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/fore) -"ahT" = ( +"ahV" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -3788,7 +3723,7 @@ dir = 1 }, /area/crew_quarters/fitness/recreation) -"ahU" = ( +"ahW" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -3800,13 +3735,13 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"ahV" = ( +"ahX" = ( /obj/structure/window/reinforced{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"ahW" = ( +"ahY" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -3815,13 +3750,13 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"ahX" = ( +"ahZ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"ahY" = ( +"aia" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -3829,7 +3764,7 @@ dir = 4 }, /area/crew_quarters/fitness/recreation) -"ahZ" = ( +"aib" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -3837,9 +3772,12 @@ /obj/machinery/door/airlock/public/glass{ name = "Holodeck Door" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"aia" = ( +"aic" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -3847,9 +3785,12 @@ /obj/machinery/door/airlock/public/glass{ name = "Holodeck Door" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"aib" = ( +"aid" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -3861,7 +3802,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"aic" = ( +"aie" = ( /obj/machinery/airalarm{ pixel_y = 24 }, @@ -3870,7 +3811,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"aid" = ( +"aif" = ( /obj/machinery/door/poddoor{ id = "trash"; name = "disposal bay door" @@ -3878,7 +3819,7 @@ /obj/structure/fans/tiny, /turf/open/floor/plating, /area/maintenance/disposal) -"aie" = ( +"aig" = ( /obj/machinery/mass_driver{ dir = 8; id = "trash" @@ -3891,7 +3832,7 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"aif" = ( +"aih" = ( /obj/machinery/conveyor_switch/oneway{ convdir = -1; id = "garbage"; @@ -3899,17 +3840,17 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"aig" = ( +"aii" = ( /obj/structure/easel, /turf/open/floor/plating, /area/maintenance/disposal) -"aih" = ( +"aij" = ( /obj/item/vending_refill/coffee, /turf/open/floor/plating{ icon_state = "platingdmg2" }, /area/maintenance/disposal) -"aii" = ( +"aik" = ( /obj/structure/closet, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 3; @@ -3917,7 +3858,7 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"aij" = ( +"ail" = ( /obj/machinery/power/apc{ dir = 8; name = "Port Bow Solar APC"; @@ -3932,7 +3873,7 @@ icon_state = "panelscorched" }, /area/maintenance/solars/port/fore) -"aik" = ( +"aim" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -3945,7 +3886,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"ail" = ( +"ain" = ( /obj/structure/cable{ icon_state = "0-8" }, @@ -3955,24 +3896,21 @@ /obj/machinery/power/smes, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"aim" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/port/fore) -"ain" = ( +"aio" = ( /turf/closed/wall/r_wall, /area/maintenance/port/fore) -"aio" = ( +"aip" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/port/fore) -"aip" = ( +"aiq" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" }, /turf/open/floor/plating, /area/security/brig) -"aiq" = ( +"air" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -3980,7 +3918,7 @@ dir = 8 }, /area/security/brig) -"air" = ( +"ais" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -3994,7 +3932,7 @@ dir = 8 }, /area/security/brig) -"ais" = ( +"ait" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Security E.V.A. Storage"; @@ -4005,7 +3943,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"ait" = ( +"aiu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -4017,12 +3955,12 @@ dir = 1 }, /area/security/brig) -"aiu" = ( +"aiv" = ( /turf/open/floor/plasteel/red/side{ dir = 1 }, /area/security/brig) -"aiv" = ( +"aiw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light/small{ dir = 4 @@ -4037,15 +3975,15 @@ dir = 1 }, /area/security/brig) -"aiw" = ( +"aix" = ( /obj/structure/closet{ - name = "Evidence Closet 3" + name = "Evidence Closet 1" }, /turf/open/floor/plasteel/vault{ - dir = 4 + dir = 1 }, /area/security/warden) -"aix" = ( +"aiy" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/machinery/light/small{ dir = 1 @@ -4065,46 +4003,28 @@ dir = 8 }, /area/security/warden) -"aiy" = ( +"aiz" = ( /obj/structure/closet/secure_closet/evidence, /turf/open/floor/plasteel/vault{ dir = 4 }, /area/security/warden) -"aiz" = ( +"aiA" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /turf/open/floor/plating, /area/ai_monitored/security/armory) -"aiA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Armory"; - req_access = null; - req_access_txt = "3" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) "aiB" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, -/area/ai_monitored/security/armory) +/area/security/warden) "aiC" = ( -/obj/machinery/door/poddoor/shutters{ - id = "armory"; - name = "armory shutters" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, /area/ai_monitored/security/armory) "aiD" = ( /obj/effect/spawner/structure/window/reinforced, @@ -4213,8 +4133,10 @@ /turf/open/floor/plasteel, /area/security/range) "aiN" = ( -/turf/open/floor/plating, -/area/maintenance/fore) +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) "aiO" = ( /obj/structure/chair/stool{ pixel_y = 8 @@ -4336,23 +4258,16 @@ /turf/open/floor/plating, /area/maintenance/disposal) "aje" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/disposal) +/turf/open/floor/plating, +/area/maintenance/fore) "ajf" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plating, /area/maintenance/disposal) "ajg" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/light_switch{ - pixel_x = 25 +/turf/open/floor/plating{ + icon_state = "platingdmg2" }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, /area/maintenance/disposal) "ajh" = ( /obj/structure/cable/yellow{ @@ -4387,23 +4302,6 @@ /obj/item/restraints/handcuffs/cable/pink, /turf/open/floor/plating, /area/maintenance/port/fore) -"ajk" = ( -/obj/item/stack/sheet/cardboard, -/obj/structure/light_construct/small{ - dir = 1 - }, -/obj/structure/closet/crate, -/obj/item/coin/silver, -/obj/item/grenade/chem_grenade, -/obj/item/storage/box/lights/mixed, -/obj/item/watertank, -/obj/item/storage/box/donkpockets, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) "ajl" = ( /obj/item/soap/deluxe, /obj/item/storage/secure/safe{ @@ -4432,6 +4330,9 @@ /obj/structure/cable/yellow{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/red/side, /area/security/brig) "ajo" = ( @@ -4445,6 +4346,9 @@ name = "Prison Wing"; req_access_txt = "1" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/red/side, /area/security/brig) "ajq" = ( @@ -4461,12 +4365,20 @@ /area/security/warden) "ajr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/security/warden) "ajs" = ( +/obj/machinery/door/poddoor/shutters{ + id = "armory"; + name = "armory shutters" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"ajt" = ( /obj/structure/closet{ name = "Evidence Closet 5" }, @@ -4478,50 +4390,6 @@ dir = 4 }, /area/security/warden) -"ajt" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 28 - }, -/obj/structure/closet/crate/secure/weapon{ - desc = "A secure clothing crate."; - name = "formal uniform crate"; - req_access_txt = "3" - }, -/obj/item/clothing/under/rank/security/navyblue, -/obj/item/clothing/under/rank/security/navyblue, -/obj/item/clothing/under/rank/security/navyblue, -/obj/item/clothing/under/rank/security/navyblue, -/obj/item/clothing/under/rank/security/navyblue, -/obj/item/clothing/under/rank/security/navyblue, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/under/rank/warden/navyblue, -/obj/item/clothing/suit/security/warden, -/obj/item/clothing/under/rank/head_of_security/navyblue, -/obj/item/clothing/suit/security/hos, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navywarden, -/obj/item/clothing/head/beret/sec/navyhos, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/warden) -"aju" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/warden) "ajv" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 @@ -4686,20 +4554,16 @@ /turf/open/floor/plating, /area/maintenance/fore) "ajQ" = ( -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /obj/structure/cable/yellow{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 +/turf/open/floor/plasteel/red/corner{ + dir = 4 }, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) +/area/security/brig) "ajR" = ( /obj/structure/chair/stool{ pixel_y = 8 @@ -4804,9 +4668,17 @@ /turf/open/floor/plating, /area/maintenance/disposal) "akg" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/maintenance/disposal) +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) "akh" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -4904,7 +4776,7 @@ "ako" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating, -/area/maintenance/port/fore) +/area/maintenance/port) "akp" = ( /obj/structure/rack, /obj/item/clothing/gloves/color/yellow, @@ -4944,9 +4816,6 @@ /turf/open/floor/plating, /area/maintenance/port/fore) "akt" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"aku" = ( /obj/structure/table, /obj/item/clothing/gloves/color/latex, /obj/item/clothing/mask/surgical, @@ -4955,7 +4824,7 @@ dir = 9 }, /area/security/brig) -"akv" = ( +"aku" = ( /obj/structure/table, /obj/item/device/radio/intercom{ freerange = 0; @@ -4978,7 +4847,7 @@ dir = 1 }, /area/security/brig) -"akw" = ( +"akv" = ( /obj/structure/table, /obj/machinery/airalarm{ pixel_y = 28 @@ -4988,7 +4857,7 @@ dir = 1 }, /area/security/brig) -"akx" = ( +"akw" = ( /obj/structure/table, /obj/structure/window/reinforced{ dir = 4 @@ -5002,7 +4871,7 @@ dir = 5 }, /area/security/brig) -"aky" = ( +"akx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-4" @@ -5011,7 +4880,7 @@ dir = 9 }, /area/security/brig) -"akz" = ( +"aky" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -5019,7 +4888,7 @@ dir = 1 }, /area/security/brig) -"akA" = ( +"akz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/sign/warning/pods{ pixel_x = 32 @@ -5028,21 +4897,18 @@ dir = 5 }, /area/security/brig) -"akB" = ( -/obj/structure/closet{ - name = "Evidence Closet 1" +"akA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/turf/open/floor/plasteel/vault{ - dir = 1 +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/area/security/warden) -"akC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/security/warden) -"akD" = ( +"akB" = ( /obj/structure/closet{ name = "Evidence Closet 4" }, @@ -5050,7 +4916,7 @@ dir = 4 }, /area/security/warden) -"akE" = ( +"akC" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, @@ -5063,20 +4929,25 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/security/warden) -"akF" = ( +"akD" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/warden) +"akE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/security/warden) -"akG" = ( +"akF" = ( /obj/structure/closet/l3closet/security, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/security/warden) -"akH" = ( +"akG" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -5084,19 +4955,19 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/security/warden) -"akI" = ( +"akH" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/closet/secure_closet/security/sec, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"akJ" = ( +"akI" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"akK" = ( +"akJ" = ( /obj/structure/closet/secure_closet/security/sec, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -5104,7 +4975,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"akL" = ( +"akK" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -5114,7 +4985,7 @@ }, /turf/open/floor/plating, /area/security/warden) -"akM" = ( +"akL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -5125,7 +4996,7 @@ dir = 9 }, /area/security/main) -"akN" = ( +"akM" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -5139,7 +5010,7 @@ dir = 1 }, /area/security/main) -"akO" = ( +"akN" = ( /obj/machinery/light{ dir = 1 }, @@ -5159,7 +5030,7 @@ dir = 1 }, /area/security/main) -"akP" = ( +"akO" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -5168,7 +5039,7 @@ dir = 1 }, /area/security/main) -"akQ" = ( +"akP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -5179,7 +5050,7 @@ dir = 1 }, /area/security/main) -"akR" = ( +"akQ" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -5193,7 +5064,7 @@ dir = 1 }, /area/security/main) -"akS" = ( +"akR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -5207,7 +5078,7 @@ dir = 1 }, /area/security/main) -"akT" = ( +"akS" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, @@ -5221,7 +5092,7 @@ dir = 1 }, /area/security/main) -"akU" = ( +"akT" = ( /obj/machinery/light{ dir = 1 }, @@ -5238,7 +5109,7 @@ dir = 1 }, /area/security/main) -"akV" = ( +"akU" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -5252,7 +5123,7 @@ dir = 1 }, /area/security/main) -"akW" = ( +"akV" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -5270,7 +5141,7 @@ dir = 5 }, /area/security/main) -"akX" = ( +"akW" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -5280,7 +5151,7 @@ }, /turf/open/floor/plating, /area/security/range) -"akY" = ( +"akX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -5289,13 +5160,13 @@ dir = 8 }, /area/security/range) -"akZ" = ( +"akY" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/security/range) -"ala" = ( +"akZ" = ( /obj/structure/rack, /obj/item/gun/energy/laser/practice{ pixel_x = 2; @@ -5319,39 +5190,39 @@ }, /turf/open/floor/plasteel, /area/security/range) -"alb" = ( +"ala" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating, /area/maintenance/fore) -"alc" = ( +"alb" = ( /turf/open/floor/plating{ icon_state = "panelscorched" }, /area/maintenance/fore) -"ald" = ( +"alc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/fore) -"ale" = ( +"ald" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/fore) -"alf" = ( +"ale" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 }, /turf/open/floor/plating, /area/maintenance/fore) -"alg" = ( +"alf" = ( /obj/structure/closet/firecloset, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"alh" = ( +"alg" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -5360,7 +5231,7 @@ dir = 8 }, /area/crew_quarters/fitness/recreation) -"ali" = ( +"alh" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -5371,19 +5242,19 @@ dir = 4 }, /area/crew_quarters/fitness/recreation) -"alj" = ( +"ali" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/vault{ dir = 5 }, /area/crew_quarters/fitness/recreation) -"alk" = ( +"alj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/vault{ dir = 5 }, /area/crew_quarters/fitness/recreation) -"all" = ( +"alk" = ( /obj/structure/chair{ dir = 8 }, @@ -5391,7 +5262,7 @@ dir = 1 }, /area/crew_quarters/fitness/recreation) -"alm" = ( +"all" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -5399,7 +5270,7 @@ dir = 2 }, /area/crew_quarters/fitness/recreation) -"aln" = ( +"alm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -5407,9 +5278,12 @@ /obj/machinery/door/airlock/public/glass{ name = "Holodeck Door" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"alo" = ( +"aln" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -5417,9 +5291,12 @@ /obj/machinery/door/airlock/public/glass{ name = "Holodeck Door" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"alp" = ( +"alo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -5436,42 +5313,42 @@ /obj/machinery/light/small, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"alq" = ( +"alp" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) +"alq" = ( +/turf/closed/wall, +/area/maintenance/starboard) "alr" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/maintenance/starboard/fore) +/area/maintenance/starboard) "als" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"alt" = ( /obj/machinery/light{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) -"alu" = ( +"alt" = ( /obj/effect/turf_decal/bot_white, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/engine/gravity_generator) -"alv" = ( +"alu" = ( /obj/machinery/light{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) -"alw" = ( +"alv" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"alx" = ( +"alw" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -5480,9 +5357,10 @@ req_access = null; req_access_txt = "10; 13" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"aly" = ( +"alx" = ( /obj/machinery/conveyor{ dir = 2; id = "garbage" @@ -5492,7 +5370,7 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"alz" = ( +"aly" = ( /obj/machinery/disposal/deliveryChute{ dir = 4 }, @@ -5517,7 +5395,7 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"alA" = ( +"alz" = ( /obj/machinery/conveyor{ dir = 4; id = "garbage" @@ -5531,7 +5409,7 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"alB" = ( +"alA" = ( /obj/machinery/mineral/stacking_machine{ input_dir = 2 }, @@ -5543,7 +5421,7 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"alC" = ( +"alB" = ( /obj/machinery/mineral/stacking_unit_console{ dir = 2; machinedir = 8; @@ -5557,11 +5435,11 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"alD" = ( +"alC" = ( /obj/structure/grille, /turf/open/floor/plating, -/area/maintenance/port/fore) -"alE" = ( +/area/maintenance/port) +"alD" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -5571,7 +5449,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"alF" = ( +"alE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -5580,7 +5458,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"alG" = ( +"alF" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Secure Storage Room"; req_access_txt = "65" @@ -5590,7 +5468,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"alH" = ( +"alG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -5599,19 +5477,19 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"alI" = ( +"alH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /obj/item/bot_assembly/cleanbot, /turf/open/floor/plating, /area/maintenance/port/fore) -"alJ" = ( +"alI" = ( /obj/item/grown/log, /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/port/fore) -"alK" = ( +"alJ" = ( /obj/structure/light_construct/small{ dir = 4 }, @@ -5623,6 +5501,9 @@ /obj/item/grenade/smokebomb, /turf/open/floor/plating, /area/maintenance/port/fore) +"alK" = ( +/turf/closed/wall, +/area/maintenance/port) "alL" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /turf/open/floor/plasteel/dark, @@ -5679,29 +5560,6 @@ }, /area/security/brig) "alR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alS" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/security/brig) -"alT" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ name = "Evidence Storage"; @@ -5712,6 +5570,26 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/warden) +"alS" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/security/brig) +"alT" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -5726,20 +5604,9 @@ /obj/structure/cable/yellow{ icon_state = "4-8" }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, +/turf/open/floor/plasteel, /area/security/warden) "alV" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/warden) -"alW" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -5753,30 +5620,14 @@ /obj/structure/cable/yellow{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/security/warden) -"alX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/warden) -"alY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/warden) -"alZ" = ( +"alW" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -5791,7 +5642,41 @@ }, /turf/open/floor/plasteel, /area/security/warden) -"ama" = ( +"alX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/door/airlock/security/glass{ + name = "Gear Room"; + req_access_txt = "0"; + req_one_access_txt = "1;4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"alY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/main) +"alZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -5800,7 +5685,7 @@ }, /turf/open/floor/plasteel, /area/security/warden) -"amb" = ( +"ama" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Secure Gear Storage"; @@ -5819,9 +5704,12 @@ icon_state = "4-8" }, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/security/warden) -"amc" = ( +"amb" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -5833,7 +5721,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"amd" = ( +"amc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -5842,26 +5730,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"ame" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/door/airlock/security/glass{ - name = "Gear Room"; - req_access_txt = "0"; - req_one_access_txt = "1;4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/warden) -"amf" = ( +"amd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -5872,45 +5741,58 @@ dir = 8 }, /area/security/main) -"amg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +"ame" = ( /obj/structure/cable/yellow{ - icon_state = "1-2" + icon_state = "4-8" }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/cable/yellow{ icon_state = "2-8" }, -/turf/open/floor/plasteel/red/side{ - dir = 9 +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"amf" = ( +/obj/machinery/light{ + dir = 8 }, -/area/security/main) -"amh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/power/apc/highcap/five_k{ + dir = 8; + name = "Brig Control APC"; + areastring = "/area/security/warden"; + pixel_x = -26 + }, +/obj/structure/cable/yellow, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"amg" = ( /turf/open/floor/plasteel/red/side{ dir = 1 }, /area/security/main) -"ami" = ( -/obj/effect/landmark/event_spawn, +"amh" = ( /turf/open/floor/plasteel/red, /area/security/main) -"amj" = ( +"ami" = ( /obj/machinery/photocopier{ pixel_y = 3 }, /turf/open/floor/plasteel, /area/security/main) -"amk" = ( +"amj" = ( /obj/structure/chair/comfy/black, /obj/effect/landmark/start/head_of_security, /turf/open/floor/plasteel, /area/security/main) -"aml" = ( +"amk" = ( /obj/machinery/computer/card/minor/hos{ dir = 8 }, /turf/open/floor/plasteel, /area/security/main) -"amm" = ( +"aml" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -5919,7 +5801,7 @@ }, /turf/open/floor/plasteel/red, /area/security/main) -"amn" = ( +"amm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -5930,7 +5812,7 @@ dir = 1 }, /area/security/main) -"amo" = ( +"amn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -5943,7 +5825,7 @@ dir = 5 }, /area/security/main) -"amp" = ( +"amo" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -5961,7 +5843,7 @@ dir = 4 }, /area/security/main) -"amq" = ( +"amp" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Firing Range"; @@ -5979,7 +5861,7 @@ }, /turf/open/floor/plasteel, /area/security/range) -"amr" = ( +"amq" = ( /obj/machinery/firealarm{ dir = 1; pixel_y = -24 @@ -5997,7 +5879,7 @@ dir = 10 }, /area/security/range) -"ams" = ( +"amr" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -6012,7 +5894,7 @@ dir = 8 }, /area/security/range) -"amt" = ( +"ams" = ( /obj/item/target, /obj/item/target, /obj/item/target/alien, @@ -6040,24 +5922,24 @@ }, /turf/open/floor/plasteel, /area/security/range) -"amu" = ( +"amt" = ( /obj/structure/rack, /obj/item/storage/box/lights/mixed, /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/fore) -"amv" = ( +"amu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plating, /area/maintenance/fore) -"amw" = ( +"amv" = ( /obj/structure/closet/emcloset, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"amx" = ( +"amw" = ( /obj/structure/window/reinforced, /obj/machinery/door/window/eastright{ base_state = "left"; @@ -6067,33 +5949,33 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"amy" = ( +"amx" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"amz" = ( +"amy" = ( /obj/structure/window/reinforced, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"amA" = ( +"amz" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"amB" = ( +"amA" = ( /obj/structure/window/reinforced{ dir = 4 }, /obj/structure/window/reinforced, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"amC" = ( +"amB" = ( /turf/open/floor/plasteel/neutral/corner{ dir = 1 }, /area/crew_quarters/fitness/recreation) -"amD" = ( +"amC" = ( /obj/structure/chair{ dir = 4 }, @@ -6102,23 +5984,23 @@ dir = 2 }, /area/crew_quarters/fitness/recreation) -"amE" = ( +"amD" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/crew_quarters/fitness/recreation) -"amF" = ( +"amE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/crew_quarters/fitness/recreation) -"amG" = ( +"amF" = ( /obj/machinery/door/airlock/maintenance{ name = "maintenance access"; req_access_txt = "12" }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"amH" = ( +"amG" = ( /obj/machinery/light/small{ dir = 8 }, @@ -6127,20 +6009,20 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"amI" = ( +"amH" = ( /obj/machinery/door/airlock/external{ req_access_txt = "0"; req_one_access_txt = "13,8" }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"amJ" = ( +"amI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) -"amK" = ( +"amJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -6149,14 +6031,14 @@ dir = 4 }, /area/engine/gravity_generator) -"amL" = ( +"amK" = ( /obj/machinery/gravity_generator/main/station, /obj/effect/turf_decal/bot_white, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/engine/gravity_generator) -"amM" = ( +"amL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -6165,7 +6047,7 @@ dir = 1 }, /area/engine/gravity_generator) -"amN" = ( +"amM" = ( /obj/machinery/camera{ c_tag = "Gravity Generator Room"; dir = 8; @@ -6176,7 +6058,7 @@ }, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) -"amO" = ( +"amN" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -6185,7 +6067,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"amP" = ( +"amO" = ( /obj/machinery/light/small{ dir = 8 }, @@ -6196,14 +6078,14 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"amQ" = ( +"amP" = ( /obj/machinery/conveyor{ dir = 4; id = "garbage" }, /turf/open/floor/plating, /area/maintenance/disposal) -"amR" = ( +"amQ" = ( /obj/machinery/conveyor{ dir = 6; id = "garbage" @@ -6217,7 +6099,7 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"amS" = ( +"amR" = ( /obj/machinery/light/small{ dir = 4 }, @@ -6229,13 +6111,13 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"amT" = ( +"amS" = ( /obj/effect/landmark/xeno_spawn, /obj/item/storage/box/lights/mixed, /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating, /area/maintenance/port/fore) -"amU" = ( +"amT" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -6246,36 +6128,13 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"amV" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Port Bow Maintenance APC"; - areastring = "/area/maintenance/port/fore"; - pixel_x = 26 - }, +"amU" = ( /turf/open/floor/plating{ icon_state = "platingdmg2" }, -/area/maintenance/port/fore) +/area/maintenance/port) "amW" = ( /obj/structure/table/reinforced, -/obj/structure/light_construct/small{ - dir = 8 - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/structure/window/reinforced, -/obj/item/poster/random_official, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"amX" = ( -/obj/structure/table/reinforced, /obj/item/folder, /obj/item/folder, /obj/machinery/door/window/westleft{ @@ -6290,25 +6149,25 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/fore) -"amY" = ( +"amX" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced, /obj/item/stock_parts/cell/crap, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/fore) -"amZ" = ( +"amY" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced, /obj/item/electronics/firealarm, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/fore) -"ana" = ( +"amZ" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, -/area/maintenance/port/fore) -"anb" = ( +/area/maintenance/port) +"ana" = ( /obj/structure/rack, /obj/item/clothing/under/rank/mailman, /obj/item/clothing/under/rank/vice{ @@ -6318,39 +6177,39 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/fore) -"anc" = ( +"anb" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" }, /turf/open/floor/plating, /area/maintenance/port/fore) -"and" = ( +"anc" = ( /obj/machinery/door/airlock/security/glass{ name = "N2O Storage"; req_access_txt = "3" }, /turf/open/floor/plasteel/dark, /area/maintenance/port/fore) -"ane" = ( +"and" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/bodycontainer/morgue, /turf/open/floor/plasteel/dark, /area/security/brig) -"anf" = ( +"ane" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/whitered/side{ dir = 8 }, /area/security/brig) -"ang" = ( +"anf" = ( /obj/structure/bed/roller, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white, /area/security/brig) -"anh" = ( +"ang" = ( /obj/machinery/door/window/westleft{ base_state = "right"; dir = 4; @@ -6362,13 +6221,13 @@ dir = 4 }, /area/security/brig) -"ani" = ( +"anh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/red/corner{ dir = 1 }, /area/security/brig) -"anj" = ( +"ani" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -6377,7 +6236,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"ank" = ( +"anj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light{ dir = 4 @@ -6392,7 +6251,7 @@ dir = 4 }, /area/security/brig) -"anl" = ( +"ank" = ( /obj/structure/table, /obj/item/storage/box/evidence, /obj/item/storage/box/evidence, @@ -6402,11 +6261,11 @@ dir = 6 }, /area/security/warden) -"anm" = ( +"anl" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/vault, /area/security/warden) -"ann" = ( +"anm" = ( /obj/structure/filingcabinet/security{ pixel_x = 4 }, @@ -6414,7 +6273,7 @@ dir = 10 }, /area/security/warden) -"ano" = ( +"ann" = ( /obj/structure/rack, /obj/item/storage/box/chemimp{ pixel_x = 4; @@ -6431,7 +6290,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/security/warden) -"anp" = ( +"ano" = ( /obj/structure/rack, /obj/item/storage/box/handcuffs, /obj/item/storage/box/flashbangs{ @@ -6441,7 +6300,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/security/warden) -"anq" = ( +"anp" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -6450,7 +6309,7 @@ }, /turf/open/floor/plasteel, /area/security/warden) -"anr" = ( +"anq" = ( /obj/structure/rack, /obj/item/storage/box/firingpins{ pixel_x = 3; @@ -6460,25 +6319,25 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/security/warden) -"ans" = ( +"anr" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /turf/open/floor/plating, /area/security/warden) -"ant" = ( +"ans" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"anu" = ( +"ant" = ( /obj/structure/table, /obj/machinery/recharger{ pixel_y = 4 }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"anv" = ( +"anu" = ( /obj/machinery/vending/security, /obj/machinery/firealarm{ dir = 4; @@ -6486,7 +6345,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"anw" = ( +"anv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/camera{ c_tag = "Security - Office - Port"; @@ -6497,30 +6356,14 @@ dir = 8 }, /area/security/main) -"anx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/main) -"any" = ( +"anw" = ( /obj/structure/table, /obj/machinery/recharger{ pixel_y = 4 }, /turf/open/floor/plasteel, /area/security/main) -"anz" = ( -/turf/open/floor/plasteel/red, -/area/security/main) -"anA" = ( +"anx" = ( /obj/structure/table/reinforced, /obj/item/folder/red{ pixel_x = 3 @@ -6531,28 +6374,17 @@ }, /turf/open/floor/plasteel, /area/security/main) -"anB" = ( +"any" = ( /obj/structure/table/reinforced, /obj/item/paper, /turf/open/floor/plasteel, /area/security/main) -"anC" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/device/taperecorder{ - pixel_x = -4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"anD" = ( +"anA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/red, /area/security/main) -"anE" = ( +"anB" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -6560,17 +6392,7 @@ }, /turf/open/floor/plasteel, /area/security/main) -"anF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/main) -"anG" = ( +"anC" = ( /obj/machinery/power/apc/highcap/five_k{ dir = 4; name = "Security Office APC"; @@ -6582,7 +6404,7 @@ dir = 4 }, /area/security/main) -"anH" = ( +"anD" = ( /obj/machinery/door/airlock/maintenance{ name = "Security Maintenance"; req_access_txt = "0"; @@ -6595,7 +6417,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/fore) -"anI" = ( +"anE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; @@ -6603,7 +6425,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"anJ" = ( +"anF" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -6615,17 +6437,11 @@ dir = 8 }, /area/crew_quarters/fitness/recreation) -"anK" = ( +"anG" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"anL" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/fitness/recreation) -"anM" = ( +"anH" = ( /obj/structure/chair{ dir = 1 }, @@ -6634,13 +6450,13 @@ dir = 4 }, /area/crew_quarters/fitness/recreation) -"anN" = ( +"anI" = ( /obj/structure/chair{ dir = 1 }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"anO" = ( +"anJ" = ( /obj/structure/chair{ dir = 1 }, @@ -6651,7 +6467,7 @@ dir = 1 }, /area/crew_quarters/fitness/recreation) -"anP" = ( +"anK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -6659,51 +6475,51 @@ dir = 1 }, /area/crew_quarters/fitness/recreation) -"anQ" = ( +"anL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"anR" = ( +"anM" = ( /obj/machinery/space_heater, /turf/open/floor/plating, -/area/maintenance/starboard/fore) -"anS" = ( +/area/maintenance/starboard) +"anN" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"anT" = ( +"anO" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) -"anU" = ( +"anP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) -"anV" = ( +"anQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) -"anW" = ( +"anR" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) -"anX" = ( +"anS" = ( /turf/open/floor/plating/airless, /area/space/nearstation) -"anY" = ( +"anT" = ( /obj/structure/lattice, /obj/structure/grille, /turf/open/space, /area/space/nearstation) -"anZ" = ( +"anU" = ( /obj/structure/disposalpipe/trunk{ dir = 4 }, @@ -6719,7 +6535,7 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"aoa" = ( +"anV" = ( /obj/machinery/conveyor{ dir = 8; id = "garbage" @@ -6729,7 +6545,7 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"aob" = ( +"anW" = ( /obj/machinery/conveyor{ dir = 8; id = "garbage" @@ -6737,7 +6553,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plating, /area/maintenance/disposal) -"aoc" = ( +"anX" = ( /obj/machinery/conveyor{ dir = 8; id = "garbage" @@ -6745,7 +6561,7 @@ /obj/machinery/recycler, /turf/open/floor/plating, /area/maintenance/disposal) -"aod" = ( +"anY" = ( /obj/machinery/door/window/eastright{ dir = 4; name = "Danger: Conveyor Access"; @@ -6757,60 +6573,49 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"aoe" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Disposal APC"; - areastring = "/area/maintenance/disposal"; - pixel_y = -24 +"anZ" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/light_switch{ + pixel_x = 25 }, -/obj/structure/cable/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 8 +/obj/machinery/light/small{ + dir = 4 }, /turf/open/floor/plating, /area/maintenance/disposal) -"aof" = ( +"aoa" = ( /turf/open/floor/plating{ icon_state = "panelscorched" }, -/area/maintenance/port/fore) -"aog" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, +/area/maintenance/port) +"aob" = ( /turf/open/floor/plating, -/area/maintenance/port/fore) -"aoh" = ( -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aoi" = ( +/area/maintenance/port) +"aoc" = ( /obj/structure/chair{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aoj" = ( +"aod" = ( /obj/structure/chair{ dir = 8 }, /turf/open/floor/plating, -/area/maintenance/port/fore) -"aok" = ( +/area/maintenance/port) +"aoe" = ( /obj/machinery/space_heater, /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating, -/area/maintenance/port/fore) -"aol" = ( +/area/maintenance/port) +"aof" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, -/area/maintenance/port/fore) -"aom" = ( +/area/maintenance/port) +"aog" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -6818,13 +6623,13 @@ icon_state = "panelscorched" }, /area/maintenance/port/fore) -"aon" = ( +"aoh" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aoo" = ( +"aoi" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -6832,7 +6637,7 @@ /obj/item/tank/internals/air, /turf/open/floor/plating, /area/maintenance/port/fore) -"aop" = ( +"aoj" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -6844,7 +6649,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aoq" = ( +"aok" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -6859,7 +6664,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aor" = ( +"aol" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -6874,7 +6679,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aos" = ( +"aom" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -6891,7 +6696,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aot" = ( +"aon" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -6903,7 +6708,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aou" = ( +"aoo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -6918,7 +6723,7 @@ dir = 10 }, /area/security/brig) -"aov" = ( +"aop" = ( /obj/structure/bed, /obj/item/bedsheet, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6933,7 +6738,7 @@ /obj/machinery/iv_drip, /turf/open/floor/plasteel/whitered/side, /area/security/brig) -"aow" = ( +"aoq" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -6963,7 +6768,7 @@ dir = 6 }, /area/security/brig) -"aox" = ( +"aor" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, @@ -6977,7 +6782,7 @@ dir = 1 }, /area/security/brig) -"aoy" = ( +"aos" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -6989,7 +6794,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"aoz" = ( +"aot" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/firealarm{ dir = 4; @@ -6999,7 +6804,7 @@ dir = 4 }, /area/security/brig) -"aoA" = ( +"aou" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/airlock/security{ @@ -7011,14 +6816,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/security/warden) -"aoB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/warden) -"aoC" = ( +"aow" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -7034,42 +6832,27 @@ /obj/structure/cable/yellow{ icon_state = "1-4" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/security/warden) -"aoD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" +"aox" = ( +/obj/structure/grille, +/turf/open/floor/plating{ + icon_state = "platingdmg1" }, -/turf/open/floor/plating, -/area/security/warden) -"aoE" = ( -/obj/machinery/light{ - dir = 8 +/area/maintenance/port/fore) +"aoy" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 28 }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/power/apc/highcap/five_k{ - dir = 8; - name = "Brig Control APC"; - areastring = "/area/security/warden"; - pixel_x = -26 - }, -/obj/structure/cable/yellow, +/obj/structure/closet/secure_closet/warden, +/obj/item/gun/energy/laser, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"aoF" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aoG" = ( +"aoz" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -7077,43 +6860,50 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"aoH" = ( +"aoA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/warden) +"aoB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/red/side{ dir = 8 }, /area/security/main) -"aoI" = ( +"aoC" = ( /obj/structure/table, /obj/item/restraints/handcuffs, /obj/item/device/radio/off, /turf/open/floor/plasteel, /area/security/main) -"aoJ" = ( +"aoD" = ( /obj/effect/landmark/start/security_officer, /turf/open/floor/plasteel/red, /area/security/main) -"aoK" = ( +"aoE" = ( /obj/machinery/holopad, /obj/structure/disposalpipe/segment{ dir = 6 }, /turf/open/floor/plasteel/red, /area/security/main) -"aoL" = ( +"aoF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plasteel/red, /area/security/main) -"aoM" = ( +"aoG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment{ dir = 9 }, /turf/open/floor/plasteel/red, /area/security/main) -"aoN" = ( +"aoH" = ( /obj/structure/table, /obj/item/folder/red, /obj/item/book/manual/wiki/security_space_law{ @@ -7123,12 +6913,12 @@ /obj/item/clothing/mask/gas/sechailer, /turf/open/floor/plasteel, /area/security/main) -"aoO" = ( +"aoI" = ( /turf/open/floor/plasteel/red/side{ dir = 4 }, /area/security/main) -"aoP" = ( +"aoJ" = ( /obj/machinery/door/window/eastright{ base_state = "left"; dir = 8; @@ -7139,7 +6929,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/security/main) -"aoQ" = ( +"aoK" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; dir = 8; @@ -7152,7 +6942,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/security/main) -"aoR" = ( +"aoL" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -7167,7 +6957,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aoS" = ( +"aoM" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -7179,7 +6969,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aoT" = ( +"aoN" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -7193,47 +6983,29 @@ icon_state = "platingdmg2" }, /area/maintenance/fore) -"aoU" = ( +"aoO" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Disposal APC"; + areastring = "/area/maintenance/disposal"; + pixel_y = -24 + }, +/obj/structure/cable/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aoP" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, /turf/open/floor/plating, /area/maintenance/fore) -"aoV" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aoW" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/fore) -"aoX" = ( +"aoQ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -7245,7 +7017,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aoY" = ( +"aoR" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -7256,16 +7028,7 @@ icon_state = "platingdmg2" }, /area/maintenance/fore) -"aoZ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"apa" = ( +"aoS" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "0"; req_one_access_txt = "1;4;38;12" @@ -7278,7 +7041,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"apb" = ( +"aoT" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -7292,7 +7055,7 @@ dir = 8 }, /area/crew_quarters/fitness/recreation) -"apc" = ( +"aoU" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -7303,7 +7066,7 @@ dir = 8 }, /area/crew_quarters/fitness/recreation) -"apd" = ( +"aoV" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -7314,7 +7077,7 @@ dir = 8 }, /area/crew_quarters/fitness/recreation) -"ape" = ( +"aoW" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -7325,7 +7088,7 @@ dir = 8 }, /area/crew_quarters/fitness/recreation) -"apf" = ( +"aoX" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -7338,7 +7101,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"apg" = ( +"aoY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -7347,7 +7110,7 @@ dir = 2 }, /area/crew_quarters/fitness/recreation) -"aph" = ( +"aoZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -7355,7 +7118,7 @@ dir = 2 }, /area/crew_quarters/fitness/recreation) -"api" = ( +"apa" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -7363,14 +7126,14 @@ dir = 2 }, /area/crew_quarters/fitness/recreation) -"apj" = ( +"apb" = ( /obj/structure/grille, /turf/open/floor/plating, -/area/maintenance/starboard/fore) -"apk" = ( +/area/maintenance/starboard) +"apc" = ( /turf/open/floor/plating, -/area/maintenance/starboard/fore) -"apl" = ( +/area/maintenance/starboard) +"apd" = ( /obj/structure/table, /obj/item/tank/internals/emergency_oxygen{ pixel_x = -8 @@ -7390,7 +7153,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"apm" = ( +"ape" = ( /obj/structure/rack, /obj/item/storage/belt{ desc = "Can hold quite a lot of stuff."; @@ -7405,13 +7168,12 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"apn" = ( -/obj/structure/easel, +"apf" = ( /turf/open/floor/plating{ icon_state = "platingdmg3" }, -/area/maintenance/starboard/fore) -"apo" = ( +/area/maintenance/starboard) +"apg" = ( /obj/structure/closet, /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/item/reagent_containers/food/drinks/beer{ @@ -7421,14 +7183,14 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"app" = ( +"aph" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ icon_state = "0-4" }, /turf/open/floor/plating, /area/engine/gravity_generator) -"apq" = ( +"api" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ @@ -7439,14 +7201,14 @@ }, /turf/open/floor/plating, /area/engine/gravity_generator) -"apr" = ( +"apj" = ( /obj/machinery/door/airlock/command/glass{ name = "Gravity Generator Area"; req_access_txt = "19; 61" }, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) -"aps" = ( +"apk" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ @@ -7454,7 +7216,7 @@ }, /turf/open/floor/plating, /area/engine/gravity_generator) -"apt" = ( +"apl" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ icon_state = "0-2" @@ -7464,10 +7226,10 @@ }, /turf/open/floor/plating, /area/engine/gravity_generator) -"apu" = ( +"apm" = ( /turf/closed/wall, /area/maintenance/solars/starboard/fore) -"apv" = ( +"apn" = ( /obj/machinery/power/solar_control{ id = "forestarboard"; name = "Starboard Bow Solar Control"; @@ -7478,7 +7240,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"apw" = ( +"apo" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -7490,18 +7252,18 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"apx" = ( +"app" = ( /obj/structure/sign/warning/vacuum/external{ pixel_x = 32 }, /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"apy" = ( +"apq" = ( /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating/airless, /area/space/nearstation) -"apz" = ( +"apr" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=1"; freq = 1400; @@ -7522,7 +7284,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/disposal) -"apA" = ( +"aps" = ( /obj/machinery/door/airlock/maintenance{ name = "Disposal Conveyor Access"; req_access_txt = "12" @@ -7530,13 +7292,13 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/disposal) -"apB" = ( +"apt" = ( /obj/structure/sign/warning/securearea{ name = "\improper STAY CLEAR HEAVY MACHINERY" }, /turf/closed/wall, /area/maintenance/disposal) -"apC" = ( +"apu" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, @@ -7546,7 +7308,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/port/fore) -"apD" = ( +"apv" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; req_access_txt = "12" @@ -7556,19 +7318,26 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"apE" = ( +"apw" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/port/fore) -"apF" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" +"apx" = ( +/obj/structure/rack, +/obj/item/circuitboard/computer/secure_data{ + pixel_x = -2; + pixel_y = 2 }, -/area/maintenance/port/fore) -"apG" = ( +/obj/item/circuitboard/computer/security{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"apy" = ( /obj/structure/light_construct/small{ dir = 4 }, @@ -7577,15 +7346,22 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"apH" = ( +"apz" = ( /obj/item/cigbutt, /turf/open/floor/plating, -/area/maintenance/port/fore) -"apI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"apJ" = ( +/area/maintenance/port) +"apA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/plaques/kiddie/library{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"apB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -7597,7 +7373,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"apK" = ( +"apC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -7609,13 +7385,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"apL" = ( -/obj/structure/grille, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"apM" = ( +"apD" = ( /obj/item/storage/box/lights/mixed, /obj/item/device/flashlight{ pixel_x = 1; @@ -7626,7 +7396,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"apN" = ( +"apE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/extinguisher_cabinet{ pixel_x = -27 @@ -7635,20 +7405,27 @@ dir = 1 }, /area/security/brig) -"apO" = ( +"apF" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/security/brig) -"apP" = ( +"apG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/corner{ dir = 4 }, /area/security/brig) -"apQ" = ( +"apH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/warden) +"apI" = ( /obj/machinery/computer/prisoner{ dir = 4 }, @@ -7660,14 +7437,14 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"apR" = ( +"apJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "2-8" }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"apS" = ( +"apK" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -7676,7 +7453,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"apT" = ( +"apL" = ( /obj/machinery/requests_console{ department = "Security"; departmentType = 5; @@ -7704,7 +7481,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"apU" = ( +"apM" = ( /obj/structure/table, /obj/machinery/recharger, /obj/machinery/airalarm{ @@ -7712,32 +7489,19 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"apV" = ( +"apN" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"apW" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 28 - }, -/obj/structure/closet/secure_closet/warden, -/obj/item/gun/energy/laser, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"apX" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"apY" = ( +"apO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"apZ" = ( +"apQ" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = 32 }, @@ -7749,7 +7513,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"aqa" = ( +"apR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/reagent_dispensers/peppertank{ pixel_x = -32 @@ -7761,64 +7525,43 @@ dir = 8 }, /area/security/main) -"aqb" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/main) -"aqc" = ( +"apS" = ( /obj/structure/table, /obj/item/folder/red, /obj/item/storage/fancy/cigarettes, /obj/item/clothing/mask/gas/sechailer, /turf/open/floor/plasteel, /area/security/main) -"aqd" = ( +"apT" = ( /obj/structure/table, /obj/item/folder/red, /obj/item/restraints/handcuffs, /turf/open/floor/plasteel, /area/security/main) -"aqe" = ( +"apU" = ( /obj/structure/table, /obj/item/folder/red, /obj/item/storage/secure/briefcase, /turf/open/floor/plasteel, /area/security/main) -"aqf" = ( +"apV" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/red, /area/security/main) -"aqg" = ( +"apW" = ( /obj/structure/table, /obj/item/folder/red, /obj/item/device/assembly/flash/handheld, /turf/open/floor/plasteel, /area/security/main) -"aqh" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/syndicatebomb/training, -/turf/open/floor/plasteel, -/area/security/main) -"aqi" = ( +"apY" = ( /obj/structure/table, /obj/item/folder/red, /obj/item/pen, /obj/item/storage/box/donkpockets, /turf/open/floor/plasteel, /area/security/main) -"aqj" = ( +"apZ" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -7832,10 +7575,10 @@ dir = 4 }, /area/security/main) -"aqk" = ( +"aqa" = ( /turf/closed/wall/r_wall, /area/security/main) -"aql" = ( +"aqb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -7843,11 +7586,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/fore) -"aqm" = ( +"aqc" = ( /obj/structure/closet/lasertag/red, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"aqn" = ( +"aqd" = ( /obj/structure/rack, /obj/item/clothing/under/color/red, /obj/item/clothing/ears/earmuffs, @@ -7855,22 +7598,11 @@ /obj/item/clothing/head/soft/red, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"aqo" = ( -/obj/structure/rack, -/obj/item/clothing/under/color/blue, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/neck/tie/blue, -/obj/item/clothing/head/soft/blue, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault, -/area/crew_quarters/fitness/recreation) -"aqp" = ( +"aqf" = ( /obj/structure/closet/lasertag/blue, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"aqq" = ( +"aqg" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -7878,7 +7610,7 @@ dir = 8 }, /area/crew_quarters/fitness/recreation) -"aqr" = ( +"aqh" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -7888,7 +7620,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"aqs" = ( +"aqi" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment{ dir = 4 @@ -7897,7 +7629,7 @@ dir = 2 }, /area/crew_quarters/fitness/recreation) -"aqt" = ( +"aqj" = ( /obj/machinery/disposal/bin, /obj/machinery/light_switch{ pixel_y = -26 @@ -7911,7 +7643,7 @@ }, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"aqu" = ( +"aqk" = ( /obj/machinery/vending/coffee, /obj/item/device/radio/intercom{ freerange = 0; @@ -7921,49 +7653,46 @@ }, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"aqv" = ( +"aql" = ( /obj/machinery/light, /obj/machinery/vending/cola/random, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"aqw" = ( +"aqm" = ( /obj/machinery/vending/cigarette, /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"aqx" = ( +"aqn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/closed/wall, /area/crew_quarters/fitness/recreation) -"aqy" = ( +"aqo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall, /area/crew_quarters/fitness/recreation) -"aqz" = ( +"aqp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, /turf/closed/wall, /area/crew_quarters/fitness/recreation) -"aqA" = ( +"aqq" = ( /obj/item/cigbutt, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, /turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aqB" = ( +/area/maintenance/starboard) +"aqr" = ( /turf/open/floor/plating{ icon_state = "platingdmg2" }, -/area/maintenance/starboard/fore) -"aqC" = ( +/area/maintenance/starboard) +"aqs" = ( /obj/item/device/mmi{ name = "man-machine interface" }, @@ -7971,7 +7700,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aqD" = ( +"aqt" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -7990,7 +7719,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"aqE" = ( +"aqu" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -8005,7 +7734,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"aqF" = ( +"aqv" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -8017,7 +7746,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"aqG" = ( +"aqw" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -8029,7 +7758,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"aqH" = ( +"aqx" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -8042,7 +7771,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"aqI" = ( +"aqy" = ( /obj/structure/chair/stool{ pixel_y = 8 }, @@ -8052,7 +7781,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"aqJ" = ( +"aqz" = ( /obj/structure/cable{ icon_state = "1-4" }, @@ -8060,7 +7789,7 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"aqK" = ( +"aqA" = ( /obj/structure/cable{ icon_state = "0-8" }, @@ -8076,25 +7805,25 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"aqL" = ( +"aqB" = ( /obj/structure/lattice, /obj/structure/grille/broken, /turf/open/space, /area/space/nearstation) -"aqM" = ( +"aqC" = ( /obj/machinery/space_heater, /obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqN" = ( +"aqD" = ( /obj/machinery/space_heater, /turf/open/floor/plating{ icon_state = "platingdmg2" }, /area/maintenance/port/fore) -"aqO" = ( +"aqE" = ( /obj/machinery/door/poddoor/shutters{ id = "supplybridge" }, @@ -8103,7 +7832,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqP" = ( +"aqF" = ( /obj/machinery/door/poddoor/shutters{ id = "supplybridge" }, @@ -8112,7 +7841,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqQ" = ( +"aqG" = ( /obj/machinery/door/poddoor/shutters{ id = "supplybridge" }, @@ -8121,7 +7850,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqR" = ( +"aqH" = ( /obj/machinery/space_heater, /obj/structure/sign/warning/vacuum/external{ pixel_y = 32 @@ -8130,7 +7859,7 @@ icon_state = "platingdmg1" }, /area/maintenance/port/fore) -"aqS" = ( +"aqI" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light/small{ dir = 8 @@ -8140,34 +7869,31 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqT" = ( +"aqJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqU" = ( +"aqK" = ( /obj/structure/reagent_dispensers/fueltank, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, /turf/open/floor/plating, -/area/maintenance/port/fore) -"aqV" = ( +/area/maintenance/port) +"aqL" = ( /obj/structure/rack, /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/item/storage/toolbox/emergency, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqW" = ( +"aqM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqX" = ( +"aqN" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -8177,22 +7903,22 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqY" = ( +"aqO" = ( /obj/machinery/space_heater, /turf/open/floor/plating, -/area/maintenance/port/fore) -"aqZ" = ( +/area/maintenance/port) +"aqP" = ( /obj/structure/light_construct/small, /obj/item/bot_assembly/floorbot{ build_step = 1 }, /turf/open/floor/plating, /area/maintenance/port/fore) -"ara" = ( +"aqQ" = ( /obj/item/vending_refill/cigarette, /turf/open/floor/plating, /area/maintenance/port/fore) -"arb" = ( +"aqR" = ( /obj/structure/chair{ dir = 8 }, @@ -8200,17 +7926,17 @@ icon_state = "panelscorched" }, /area/maintenance/port/fore) -"arc" = ( +"aqS" = ( /obj/structure/closet/crate, /obj/item/clothing/gloves/color/fyellow, /turf/open/floor/plating, /area/maintenance/port/fore) -"ard" = ( +"aqT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/port/fore) -"are" = ( +"aqU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -8223,16 +7949,12 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/port/fore) -"arf" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"arg" = ( +"aqV" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/extinguisher, /turf/open/floor/plating, /area/maintenance/port/fore) -"arh" = ( +"aqW" = ( /obj/structure/closet/crate, /obj/item/restraints/handcuffs, /obj/item/bodybag, @@ -8243,7 +7965,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"ari" = ( +"aqX" = ( /obj/structure/chair, /obj/item/restraints/handcuffs, /obj/effect/decal/remains/human, @@ -8251,25 +7973,18 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating, /area/maintenance/port/fore) -"arj" = ( +"aqY" = ( /obj/machinery/computer/security{ name = "Labor Camp Monitoring"; network = list("Labor") }, /turf/open/floor/plasteel/dark, /area/security/brig) -"ark" = ( +"aqZ" = ( /obj/machinery/computer/shuttle/labor, /turf/open/floor/plasteel/dark, /area/security/brig) -"arl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/brig) -"arm" = ( +"ara" = ( /obj/machinery/computer/secure_data{ dir = 4 }, @@ -8282,7 +7997,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"arn" = ( +"arb" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -8294,7 +8009,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"aro" = ( +"arc" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -8306,27 +8021,20 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"arp" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"arq" = ( +"ard" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"arr" = ( +"are" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"ars" = ( +"arf" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -8339,7 +8047,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"art" = ( +"arg" = ( /obj/structure/chair/office/dark{ dir = 4 }, @@ -8349,29 +8057,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"aru" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Outer Window"; - req_access_txt = "0" - }, -/obj/machinery/door/window/brigdoor{ - dir = 8; - name = "Brig Control Desk"; - req_access_txt = "3" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/item/poster/random_official, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"arv" = ( +"ari" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ @@ -8379,16 +8065,16 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"arw" = ( +"arj" = ( /obj/structure/closet/secure_closet/security/sec, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"arx" = ( +"ark" = ( /obj/machinery/newscaster/security_unit, /turf/closed/wall, /area/security/warden) -"ary" = ( +"arl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -8397,7 +8083,7 @@ dir = 8 }, /area/security/main) -"arz" = ( +"arm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -8409,7 +8095,7 @@ dir = 10 }, /area/security/main) -"arA" = ( +"arn" = ( /obj/structure/chair{ dir = 1 }, @@ -8422,7 +8108,7 @@ /obj/effect/landmark/start/security_officer, /turf/open/floor/plasteel/red/side, /area/security/main) -"arB" = ( +"aro" = ( /obj/structure/chair{ dir = 1 }, @@ -8435,7 +8121,7 @@ /obj/effect/landmark/start/security_officer, /turf/open/floor/plasteel/red/side, /area/security/main) -"arC" = ( +"arp" = ( /obj/structure/chair{ dir = 1 }, @@ -8445,14 +8131,14 @@ /obj/effect/landmark/start/security_officer, /turf/open/floor/plasteel/red/side, /area/security/main) -"arD" = ( +"arq" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/red, /area/security/main) -"arE" = ( +"arr" = ( /obj/structure/chair{ dir = 1 }, @@ -8462,7 +8148,7 @@ /obj/effect/landmark/start/security_officer, /turf/open/floor/plasteel/red/side, /area/security/main) -"arF" = ( +"ars" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -8471,7 +8157,7 @@ dir = 6 }, /area/security/main) -"arG" = ( +"art" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -8479,7 +8165,7 @@ dir = 4 }, /area/security/main) -"arH" = ( +"aru" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ name = "Interrogation Monitoring"; @@ -8489,16 +8175,16 @@ }, /turf/open/floor/plasteel/grimy, /area/security/main) -"arI" = ( +"arv" = ( /turf/open/floor/plasteel/grimy, /area/security/main) -"arJ" = ( +"arw" = ( /obj/machinery/light/small{ dir = 1 }, /turf/open/floor/plasteel/grimy, /area/security/main) -"arK" = ( +"arx" = ( /obj/item/phone{ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; pixel_x = -3; @@ -8515,25 +8201,25 @@ }, /turf/open/floor/plasteel/grimy, /area/security/main) -"arL" = ( +"ary" = ( /obj/structure/rack, /obj/item/clothing/suit/hazardvest, /turf/open/floor/plating, /area/maintenance/fore) -"arM" = ( +"arz" = ( /obj/machinery/space_heater, /turf/open/floor/plating{ icon_state = "platingdmg1" }, /area/maintenance/fore) -"arN" = ( +"arA" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/maintenance/fore) -"arO" = ( +"arB" = ( /turf/closed/wall, /area/crew_quarters/dorms) -"arP" = ( +"arC" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Recreation Area"; @@ -8544,7 +8230,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"arQ" = ( +"arD" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -8552,7 +8238,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/crew_quarters/dorms) -"arR" = ( +"arE" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Recreation Area"; @@ -8563,20 +8249,7 @@ dir = 4 }, /area/crew_quarters/dorms) -"arS" = ( -/obj/structure/closet, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arT" = ( +"arG" = ( /obj/structure/closet, /obj/item/storage/box/lights/mixed, /obj/effect/spawner/lootdrop/maintenance{ @@ -8587,37 +8260,37 @@ icon_state = "platingdmg3" }, /area/maintenance/starboard/fore) -"arU" = ( +"arH" = ( /obj/structure/rack, /obj/item/extinguisher, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"arV" = ( +"arI" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/costume, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"arW" = ( +"arJ" = ( /obj/structure/rack, /obj/item/clothing/suit/poncho, /obj/item/clothing/head/sombrero, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"arX" = ( +"arK" = ( /obj/effect/landmark/blobstart, /turf/open/floor/plating{ icon_state = "panelscorched" }, /area/maintenance/starboard/fore) -"arY" = ( +"arL" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"arZ" = ( +"arM" = ( /obj/structure/rack, /obj/item/book/manual/wiki/engineering_guide{ pixel_x = 3; @@ -8627,13 +8300,13 @@ /obj/item/storage/box/lights/mixed, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"asa" = ( +"arN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"asb" = ( +"arO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -8643,7 +8316,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"asc" = ( +"arP" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -8655,7 +8328,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"asd" = ( +"arQ" = ( /obj/machinery/airalarm{ dir = 1; pixel_y = -22 @@ -8669,7 +8342,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"ase" = ( +"arR" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -8679,7 +8352,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"asf" = ( +"arS" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 28 @@ -8693,7 +8366,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"asg" = ( +"arT" = ( /obj/machinery/power/apc{ dir = 8; name = "Starboard Bow Solar APC"; @@ -8708,7 +8381,7 @@ icon_state = "platingdmg1" }, /area/maintenance/solars/starboard/fore) -"ash" = ( +"arU" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -8721,14 +8394,14 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"asi" = ( +"arV" = ( /obj/structure/cable/yellow{ icon_state = "0-8" }, /obj/machinery/power/smes, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"asj" = ( +"arW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -8741,7 +8414,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"ask" = ( +"arX" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -8754,7 +8427,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"asl" = ( +"arY" = ( /obj/machinery/door/airlock/public/glass{ name = "space-bridge access" }, @@ -8772,7 +8445,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"asm" = ( +"arZ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -8781,13 +8454,13 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"asn" = ( +"asa" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plating, -/area/maintenance/port/fore) -"aso" = ( +/area/maintenance/port) +"asb" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -8796,7 +8469,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"asp" = ( +"asc" = ( /obj/machinery/door/airlock/public/glass{ name = "space-bridge access" }, @@ -8814,7 +8487,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"asq" = ( +"asd" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -8828,7 +8501,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"asr" = ( +"ase" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -8840,7 +8513,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"ass" = ( +"asf" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Cargo Bay Bridge Access"; req_access_txt = "0"; @@ -8854,7 +8527,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"ast" = ( +"asg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -8867,7 +8540,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"asu" = ( +"ash" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -8876,21 +8549,21 @@ icon_state = "platingdmg3" }, /area/maintenance/port/fore) -"asv" = ( +"asi" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/fore) -"asw" = ( +"asj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/port/fore) -"asx" = ( +"ask" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -8901,7 +8574,7 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plating, /area/maintenance/port/fore) -"asy" = ( +"asl" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; req_access_txt = "12" @@ -8909,7 +8582,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port/fore) -"asz" = ( +"asm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/maintenance{ name = "Brig Maintenance"; @@ -8922,7 +8595,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"asA" = ( +"asn" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -8942,13 +8615,13 @@ /obj/item/pen, /turf/open/floor/plasteel/dark, /area/security/brig) -"asB" = ( +"aso" = ( /obj/structure/chair/office/dark{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/security/brig) -"asC" = ( +"asp" = ( /obj/machinery/computer/security{ dir = 4 }, @@ -8960,7 +8633,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asD" = ( +"asq" = ( /obj/effect/landmark/start/warden, /obj/structure/chair/office/dark, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -8975,7 +8648,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asE" = ( +"asr" = ( /obj/machinery/computer/crew{ dir = 8 }, @@ -8984,7 +8657,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asF" = ( +"ass" = ( /obj/machinery/newscaster/security_unit{ pixel_y = -30 }, @@ -8997,7 +8670,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asG" = ( +"ast" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -9009,7 +8682,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asH" = ( +"asu" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "2-4" @@ -9019,7 +8692,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asI" = ( +"asv" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -9034,7 +8707,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asJ" = ( +"asw" = ( /obj/structure/table, /obj/machinery/button/door{ id = "Prison Gate"; @@ -9069,7 +8742,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asK" = ( +"asx" = ( /obj/structure/table, /obj/machinery/recharger{ pixel_y = 4 @@ -9083,7 +8756,14 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asL" = ( +"asy" = ( +/obj/vehicle/ridden/secway, +/obj/item/key/security, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/main) +"asz" = ( /obj/structure/table, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -9112,7 +8792,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asM" = ( +"asA" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -9122,14 +8802,13 @@ }, /turf/open/floor/plating, /area/security/warden) -"asN" = ( -/obj/vehicle/ridden/secway, -/obj/item/key/security, -/turf/open/floor/plasteel/red/side{ - dir = 10 +"asB" = ( +/obj/machinery/light/small{ + dir = 8 }, -/area/security/main) -"asO" = ( +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"asC" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -9138,7 +8817,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/main) -"asP" = ( +"asD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -9150,7 +8829,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/main) -"asQ" = ( +"asE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -9166,7 +8845,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/main) -"asR" = ( +"asF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -9178,7 +8857,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/main) -"asS" = ( +"asG" = ( /obj/machinery/light, /obj/machinery/computer/security/telescreen/entertainment{ pixel_y = -32 @@ -9191,7 +8870,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/main) -"asT" = ( +"asH" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -9200,13 +8879,13 @@ }, /turf/open/floor/plasteel/red/side, /area/security/main) -"asU" = ( +"asI" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/red/side, /area/security/main) -"asV" = ( +"asJ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -9216,24 +8895,24 @@ }, /turf/open/floor/plasteel/red/side, /area/security/main) -"asW" = ( +"asK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "2-8" }, /turf/open/floor/plasteel/red/side, /area/security/main) -"asX" = ( +"asL" = ( /obj/machinery/rnd/protolathe/department/security, /turf/open/floor/plasteel/red/side{ dir = 6 }, /area/security/main) -"asY" = ( +"asM" = ( /obj/structure/chair, /turf/open/floor/plasteel/grimy, /area/security/main) -"asZ" = ( +"asN" = ( /obj/structure/chair, /obj/machinery/computer/security/telescreen{ desc = "Used for watching proceedings in the interrogation room."; @@ -9245,7 +8924,7 @@ }, /turf/open/floor/plasteel/grimy, /area/security/main) -"ata" = ( +"asO" = ( /obj/item/paper_bin{ pixel_x = -3; pixel_y = 7 @@ -9262,7 +8941,7 @@ }, /turf/open/floor/plasteel/grimy, /area/security/main) -"atb" = ( +"asP" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, @@ -9275,7 +8954,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"atc" = ( +"asQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -9285,7 +8964,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"atd" = ( +"asR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -9294,13 +8973,13 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"ate" = ( +"asS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/open/floor/plating, /area/maintenance/fore) -"atf" = ( +"asT" = ( /obj/machinery/light/small{ dir = 1 }, @@ -9311,7 +8990,7 @@ /obj/item/lighter, /turf/open/floor/wood, /area/crew_quarters/dorms) -"atg" = ( +"asU" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/airalarm{ pixel_y = 23 @@ -9319,7 +8998,7 @@ /obj/item/clothing/under/assistantformal, /turf/open/floor/wood, /area/crew_quarters/dorms) -"ath" = ( +"asV" = ( /obj/structure/bed, /obj/item/bedsheet, /obj/machinery/button/door{ @@ -9336,13 +9015,13 @@ }, /turf/open/floor/wood, /area/crew_quarters/dorms) -"ati" = ( +"asW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/closed/wall, /area/crew_quarters/dorms) -"atj" = ( +"asX" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -9351,7 +9030,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"atk" = ( +"asY" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -9361,7 +9040,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"atl" = ( +"asZ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -9372,7 +9051,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"atm" = ( +"ata" = ( /obj/machinery/light/small{ dir = 1 }, @@ -9390,7 +9069,7 @@ /obj/item/bedsheet, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"atn" = ( +"atb" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/airalarm{ pixel_y = 23 @@ -9398,52 +9077,40 @@ /obj/item/clothing/under/suit_jacket/burgundy, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"ato" = ( +"atc" = ( /obj/structure/dresser, /obj/machinery/newscaster{ pixel_y = 32 }, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"atp" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"atq" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"atr" = ( +"atd" = ( /turf/open/floor/plating{ icon_state = "panelscorched" }, /area/maintenance/starboard/fore) -"ats" = ( +"ate" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"att" = ( -/turf/closed/wall, -/area/engine/gravity_generator) -"atu" = ( +"atf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"atv" = ( +"atg" = ( /obj/machinery/door/airlock/highsecurity{ name = "Gravity Generator Room"; req_access_txt = "19;23" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"atw" = ( +"ath" = ( /obj/machinery/power/smes{ charge = 5e+006 }, @@ -9453,7 +9120,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"atx" = ( +"ati" = ( /obj/structure/cable{ icon_state = "1-8" }, @@ -9465,13 +9132,13 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"aty" = ( +"atj" = ( /obj/machinery/space_heater, /turf/open/floor/plating{ icon_state = "panelscorched" }, -/area/maintenance/starboard/fore) -"atz" = ( +/area/maintenance/starboard) +"atk" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -9482,17 +9149,20 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"atA" = ( +"atl" = ( /obj/structure/sign/warning/electricshock, /turf/closed/wall, /area/maintenance/solars/starboard/fore) -"atB" = ( +"atm" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboard) +"atn" = ( /obj/machinery/door/airlock/external{ req_access_txt = "13" }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"atC" = ( +"ato" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/maintenance_hatch{ name = "Cargo Bay Bridge Access"; @@ -9504,7 +9174,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atD" = ( +"atp" = ( /obj/machinery/door/poddoor/shutters{ id = "supplybridge" }, @@ -9513,7 +9183,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atE" = ( +"atq" = ( /obj/machinery/door/poddoor/shutters{ id = "supplybridge" }, @@ -9522,7 +9192,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atF" = ( +"atr" = ( /obj/machinery/door/poddoor/shutters{ id = "supplybridge" }, @@ -9531,7 +9201,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atG" = ( +"ats" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -9540,7 +9210,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atH" = ( +"att" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -9549,7 +9219,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atI" = ( +"atu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -9558,17 +9228,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atK" = ( +"atv" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -9577,14 +9237,14 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atL" = ( +"atw" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, -/area/maintenance/port/fore) -"atM" = ( +/area/maintenance/port) +"atx" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -9596,7 +9256,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atN" = ( +"aty" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -9609,7 +9269,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atO" = ( +"atz" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -9624,7 +9284,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atP" = ( +"atA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -9639,7 +9299,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atQ" = ( +"atB" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -9655,25 +9315,17 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atR" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" +"atD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, +/obj/structure/grille, /turf/open/floor/plating, /area/maintenance/port/fore) -"atS" = ( +"atE" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -9685,20 +9337,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atT" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atU" = ( +"atG" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -9711,7 +9350,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atV" = ( +"atH" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -9726,7 +9365,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atW" = ( +"atI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -9741,17 +9380,17 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atX" = ( +"atK" = ( /obj/machinery/computer/gulag_teleporter_computer{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/security/brig) -"atY" = ( +"atL" = ( /obj/machinery/gulag_teleporter, /turf/open/floor/plasteel/dark, /area/security/brig) -"atZ" = ( +"atM" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -9761,7 +9400,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/security/brig) -"aua" = ( +"atN" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -9769,11 +9408,515 @@ dir = 4 }, /area/security/brig) -"aub" = ( +"atO" = ( /obj/structure/sign/warning/pods, /turf/closed/wall/r_wall, /area/security/warden) +"atP" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"atQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/security/warden) +"atR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + req_access_txt = "0" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/warden) +"atS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Gear Room"; + req_access_txt = "0"; + req_one_access_txt = "1;4" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/warden) +"atT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/main) +"atU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_access_txt = "0"; + req_one_access_txt = "1;4" + }, +/turf/open/floor/plasteel, +/area/security/main) +"atV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_access_txt = "0"; + req_one_access_txt = "1;4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/main) +"atW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/main) +"atX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/main) +"atY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/security/main) +"atZ" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/security/main) +"aua" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"aub" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore) "auc" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/fore) +"aud" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"aue" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"auf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"aug" = ( +/obj/machinery/door/airlock{ + id_tag = "Cabin3"; + name = "Cabin 6" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"auh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/dorms) +"aui" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"auj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/crew_quarters/dorms) +"auk" = ( +/obj/machinery/door/airlock{ + id_tag = "Cabin4"; + name = "Cabin 5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"aul" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"aum" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"aun" = ( +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"auo" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard/fore) +"aup" = ( +/obj/structure/closet/crate/hydroponics, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aur" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aus" = ( +/obj/structure/closet, +/obj/item/stock_parts/matter_bin, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aut" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Storage Room"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"auu" = ( +/obj/structure/closet/radiation, +/obj/structure/sign/warning/radiation/rad_area{ + dir = 1; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"auv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"auw" = ( +/obj/machinery/camera{ + c_tag = "Gravity Generator Foyer" + }, +/obj/structure/closet/radiation, +/obj/structure/sign/warning/radiation/rad_area{ + dir = 1; + pixel_y = 32 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"aux" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auy" = ( +/obj/item/stack/sheet/cardboard, +/obj/item/device/flashlight, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auz" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/sunglasses, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auA" = ( +/obj/structure/closet/crate/medical, +/obj/item/stack/cable_coil, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auB" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auC" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"auD" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auF" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port) +"auG" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"auH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auI" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auJ" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted/fulltile, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auK" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auL" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"auN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auU" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 8 + }, +/area/security/brig) +"auV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/plasteel, +/area/security/brig) +"auW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/security/brig) +"auX" = ( +/obj/machinery/photocopier, +/obj/machinery/power/apc{ + dir = 4; + name = "Head of Security's Office APC"; + areastring = "/area/crew_quarters/heads/hos"; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/button/door{ + id = "hosprivacy"; + name = "Privacy Shutters Control"; + pixel_x = 26; + pixel_y = -26 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault, +/area/crew_quarters/heads/hos) +"auY" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/security/brig) +"auZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/security/brig) +"ava" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/westleft{ base_state = "right"; @@ -9795,523 +9938,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"aud" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/security/warden) -"aue" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control"; - req_access_txt = "3" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - req_access_txt = "0" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/warden) -"auf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Gear Room"; - req_access_txt = "0"; - req_one_access_txt = "1;4" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/warden) -"aug" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/security/warden) -"auh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/security/main) -"aui" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office"; - req_access_txt = "0"; - req_one_access_txt = "1;4" - }, -/turf/open/floor/plasteel, -/area/security/main) -"auj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office"; - req_access_txt = "0"; - req_one_access_txt = "1;4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/main) -"auk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/main) -"aul" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/main) -"aum" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/security/main) -"aun" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/security/main) -"auo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"aup" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"auq" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/fore) -"aur" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"aus" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"aut" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"auu" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin3"; - name = "Cabin 6" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"auv" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/dorms) -"auw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"aux" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/crew_quarters/dorms) -"auy" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin4"; - name = "Cabin 5" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"auz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"auA" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"auB" = ( -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"auC" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/fore) -"auD" = ( -/obj/structure/closet/crate/hydroponics, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auG" = ( -/obj/structure/closet, -/obj/item/stock_parts/matter_bin, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auH" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"auI" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auJ" = ( -/obj/structure/closet/radiation, -/obj/structure/sign/warning/radiation/rad_area{ - dir = 1; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"auK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"auL" = ( -/obj/machinery/camera{ - c_tag = "Gravity Generator Foyer" - }, -/obj/structure/closet/radiation, -/obj/structure/sign/warning/radiation/rad_area{ - dir = 1; - pixel_y = 32 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"auM" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"auN" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auO" = ( -/obj/item/stack/sheet/cardboard, -/obj/item/device/flashlight, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auP" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/glasses/sunglasses, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auQ" = ( -/obj/structure/closet/crate/medical, -/obj/item/stack/cable_coil, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auR" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auS" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auT" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"auU" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auW" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auX" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"auY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ava" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted/fulltile, -/turf/open/floor/plating, -/area/maintenance/port/fore) "avb" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avc" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"ave" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avh" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/security/brig) -"avi" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction, -/turf/open/floor/plasteel, -/area/security/brig) -"avj" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/security/brig) -"avk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/security/brig) -"avl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/holopad, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/security/brig) -"avm" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/security/brig) -"avn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/security/brig) -"avo" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/security/brig) -"avp" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -10327,7 +9954,7 @@ dir = 4 }, /area/security/brig) -"avq" = ( +"avc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -10336,7 +9963,7 @@ dir = 4 }, /area/security/brig) -"avr" = ( +"avd" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -10350,7 +9977,7 @@ dir = 4 }, /area/security/brig) -"avs" = ( +"ave" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -10361,7 +9988,7 @@ dir = 4 }, /area/security/brig) -"avt" = ( +"avf" = ( /obj/machinery/firealarm{ pixel_y = 28 }, @@ -10372,14 +9999,14 @@ dir = 4 }, /area/security/brig) -"avu" = ( +"avg" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/red/corner{ dir = 4 }, /area/security/brig) -"avv" = ( +"avh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -10391,7 +10018,7 @@ dir = 4 }, /area/security/brig) -"avw" = ( +"avi" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -10399,14 +10026,14 @@ dir = 5 }, /area/security/brig) -"avx" = ( +"avj" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/dark, /area/security/brig) -"avy" = ( +"avk" = ( /turf/open/floor/plasteel/dark, /area/security/brig) -"avA" = ( +"avl" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light/small{ dir = 8 @@ -10422,7 +10049,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"avB" = ( +"avm" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -10434,7 +10061,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"avC" = ( +"avn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -10446,35 +10073,35 @@ dir = 2 }, /area/crew_quarters/dorms) -"avD" = ( +"avo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall, /area/crew_quarters/dorms) -"avE" = ( +"avp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, /turf/closed/wall, /area/crew_quarters/dorms) -"avF" = ( +"avq" = ( /obj/item/cigbutt, /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"avG" = ( +"avr" = ( /turf/open/floor/plating{ icon_state = "platingdmg1" }, -/area/maintenance/starboard/fore) -"avH" = ( +/area/maintenance/starboard) +"avs" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, -/area/maintenance/starboard/fore) -"avI" = ( +/area/maintenance/starboard) +"avt" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -10489,7 +10116,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"avJ" = ( +"avu" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -10508,7 +10135,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"avK" = ( +"avv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -10521,9 +10148,12 @@ /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"avL" = ( +"avw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -10540,7 +10170,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"avM" = ( +"avx" = ( /obj/structure/disposalpipe/segment{ dir = 10 }, @@ -10558,7 +10188,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"avN" = ( +"avy" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10570,7 +10200,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"avO" = ( +"avz" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10580,9 +10210,12 @@ /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"avP" = ( +"avA" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10598,7 +10231,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"avQ" = ( +"avB" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10607,7 +10240,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"avR" = ( +"avC" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10618,7 +10251,7 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/fore) -"avS" = ( +"avD" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10629,7 +10262,7 @@ icon_state = "platingdmg2" }, /area/maintenance/starboard/fore) -"avT" = ( +"avE" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10640,7 +10273,7 @@ icon_state = "panelscorched" }, /area/maintenance/starboard/fore) -"avU" = ( +"avF" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -10649,13 +10282,21 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"avV" = ( +"avG" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"avW" = ( +"avH" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"avI" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/metal/fifty{ pixel_x = 2; @@ -10671,11 +10312,14 @@ }, /turf/open/floor/plating/airless, /area/space/nearstation) -"avX" = ( +"avJ" = ( /obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/maintenance/port/fore) -"avY" = ( +"avK" = ( /obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, @@ -10684,13 +10328,13 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"avZ" = ( +"avL" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plating, /area/maintenance/port/fore) -"awa" = ( +"avM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -10699,11 +10343,11 @@ icon_state = "panelscorched" }, /area/maintenance/port/fore) -"awb" = ( +"avN" = ( /obj/item/hand_labeler_refill, /turf/open/floor/plating, /area/maintenance/port/fore) -"awc" = ( +"avO" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, @@ -10715,7 +10359,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"awd" = ( +"avP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -10733,7 +10377,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"awe" = ( +"avQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -10749,7 +10393,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"awf" = ( +"avR" = ( /obj/structure/disposalpipe/sorting/mail/flip{ dir = 1; sortType = 1 @@ -10768,27 +10412,30 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"awg" = ( +"avS" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating{ icon_state = "platingdmg2" }, /area/maintenance/port/fore) -"awh" = ( +"avT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plating, /area/maintenance/port/fore) -"awi" = ( +"avY" = ( /obj/machinery/door/airlock/external{ name = "Labor Camp Shuttle Airlock"; req_access_txt = "2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/security/brig) -"awj" = ( +"avZ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Labor Camp Shuttle Airlock"; @@ -10800,16 +10447,19 @@ pixel_y = -25; req_access_txt = "2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/security/brig) -"awk" = ( +"awa" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/red/corner{ dir = 8 }, /area/security/brig) -"awl" = ( +"awb" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -10821,7 +10471,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awm" = ( +"awc" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10833,7 +10483,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awn" = ( +"awd" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10842,7 +10492,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awo" = ( +"awe" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10858,7 +10508,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awp" = ( +"awf" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10870,22 +10520,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - req_access_txt = "0" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awr" = ( +"awg" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10895,7 +10530,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"aws" = ( +"awh" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10905,7 +10540,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awt" = ( +"awi" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10920,7 +10555,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awu" = ( +"awj" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -10933,7 +10568,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/security/brig) -"awv" = ( +"awk" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10945,7 +10580,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"aww" = ( +"awl" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -10957,7 +10592,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awx" = ( +"awm" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10970,7 +10605,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awy" = ( +"awn" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10979,7 +10614,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awz" = ( +"awo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-8" @@ -10989,30 +10624,30 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awA" = ( +"awp" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/security/brig) -"awB" = ( +"awq" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/security/brig) -"awC" = ( +"awr" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/security/brig) -"awD" = ( +"aws" = ( /turf/open/floor/plasteel, /area/security/brig) -"awE" = ( +"awt" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -11020,7 +10655,7 @@ dir = 4 }, /area/security/brig) -"awF" = ( +"awu" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ name = "Interrogation"; @@ -11033,30 +10668,30 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"awG" = ( +"awv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /turf/open/floor/plasteel/dark, /area/security/brig) -"awH" = ( +"aww" = ( /obj/structure/chair{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/security/brig) -"awI" = ( +"awx" = ( /obj/structure/table, /obj/item/device/flashlight/lamp, /turf/open/floor/plasteel/dark, /area/security/brig) -"awJ" = ( +"awy" = ( /obj/structure/chair{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/security/brig) -"awK" = ( +"awz" = ( /obj/machinery/camera{ c_tag = "Interrogation"; dir = 8; @@ -11064,19 +10699,19 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"awL" = ( +"awA" = ( /obj/structure/closet/crate{ icon_state = "crateopen" }, /obj/item/storage/box/donkpockets, /turf/open/floor/plating, /area/maintenance/fore) -"awM" = ( +"awB" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/storage/box/lights/mixed, /turf/open/floor/plating, /area/maintenance/fore) -"awN" = ( +"awC" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -11089,7 +10724,7 @@ /obj/structure/dresser, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"awO" = ( +"awD" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/airalarm{ pixel_y = 23 @@ -11097,7 +10732,7 @@ /obj/item/clothing/under/suit_jacket/tan, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"awP" = ( +"awE" = ( /obj/structure/bed, /obj/item/bedsheet, /obj/machinery/button/door{ @@ -11113,7 +10748,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"awR" = ( +"awF" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -11125,7 +10760,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"awS" = ( +"awG" = ( /obj/structure/bed, /obj/item/bedsheet, /obj/machinery/button/door{ @@ -11139,7 +10774,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/wood, /area/crew_quarters/dorms) -"awT" = ( +"awH" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -11147,14 +10782,14 @@ /obj/item/paper, /turf/open/floor/wood, /area/crew_quarters/dorms) -"awU" = ( +"awI" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; req_access_txt = "12" }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"awV" = ( +"awJ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -11164,10 +10799,7 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/fore) -"awW" = ( -/turf/closed/wall/r_wall, -/area/engine/engineering) -"awX" = ( +"awK" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -11178,24 +10810,36 @@ req_access_txt = "10" }, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"awY" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"awZ" = ( +"awL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"awM" = ( /obj/structure/closet, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/fore) -"axa" = ( +"awP" = ( /obj/item/clothing/gloves/color/rainbow, /obj/item/clothing/shoes/sneakers/rainbow, /obj/item/clothing/under/color/rainbow, /obj/item/clothing/head/soft/rainbow, /turf/open/floor/plating, /area/maintenance/port/fore) -"axb" = ( +"awQ" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -11204,18 +10848,18 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"axc" = ( +"awR" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, /turf/open/floor/plating, /area/maintenance/port/fore) -"axd" = ( +"awS" = ( /obj/structure/closet/crate, /obj/item/coin/silver, /turf/open/floor/plating, /area/maintenance/port/fore) -"axe" = ( +"awT" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -11225,13 +10869,13 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"axf" = ( +"awU" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, /turf/open/floor/plating, /area/maintenance/port/fore) -"axg" = ( +"awV" = ( /obj/structure/disposalpipe/segment{ dir = 10 }, @@ -11241,10 +10885,10 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"axh" = ( +"awW" = ( /turf/closed/wall/r_wall, /area/security/nuke_storage) -"axi" = ( +"awZ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -11256,7 +10900,7 @@ dir = 8 }, /area/security/brig) -"axj" = ( +"axa" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -11265,7 +10909,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"axk" = ( +"axb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11276,7 +10920,7 @@ dir = 2 }, /area/security/brig) -"axl" = ( +"axc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11293,7 +10937,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/brig) -"axm" = ( +"axd" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -11301,7 +10945,7 @@ dir = 8 }, /area/security/brig) -"axn" = ( +"axe" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -11310,7 +10954,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"axo" = ( +"axf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11322,7 +10966,7 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/red/side, /area/security/brig) -"axp" = ( +"axg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11331,7 +10975,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/brig) -"axq" = ( +"axh" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -11344,7 +10988,7 @@ dir = 2 }, /area/security/brig) -"axr" = ( +"axi" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11353,7 +10997,7 @@ dir = 9 }, /area/security/brig) -"axs" = ( +"axj" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11361,7 +11005,7 @@ dir = 1 }, /area/security/brig) -"axt" = ( +"axk" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -11370,7 +11014,7 @@ dir = 5 }, /area/security/brig) -"axu" = ( +"axl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11391,7 +11035,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/brig) -"axv" = ( +"axm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11399,13 +11043,13 @@ dir = 8 }, /area/security/brig) -"axw" = ( +"axn" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, /turf/open/floor/plasteel, /area/security/brig) -"axx" = ( +"axo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11415,7 +11059,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"axy" = ( +"axp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11423,7 +11067,7 @@ dir = 2 }, /area/security/brig) -"axz" = ( +"axq" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -11431,7 +11075,7 @@ dir = 2 }, /area/security/brig) -"axA" = ( +"axr" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11445,7 +11089,7 @@ dir = 2 }, /area/security/brig) -"axB" = ( +"axs" = ( /obj/machinery/airalarm{ dir = 1; pixel_y = -22 @@ -11463,7 +11107,7 @@ dir = 2 }, /area/security/brig) -"axC" = ( +"axt" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -11475,7 +11119,7 @@ dir = 2 }, /area/security/brig) -"axD" = ( +"axu" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -11483,7 +11127,7 @@ dir = 2 }, /area/security/brig) -"axE" = ( +"axv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11494,19 +11138,19 @@ dir = 6 }, /area/security/brig) -"axF" = ( +"axw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/security/brig) -"axG" = ( +"axx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/security/brig) -"axH" = ( +"axy" = ( /obj/structure/chair{ dir = 4 }, @@ -11515,7 +11159,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"axI" = ( +"axz" = ( /obj/structure/table, /obj/item/folder/red, /obj/item/device/taperecorder, @@ -11533,7 +11177,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"axJ" = ( +"axA" = ( /obj/structure/chair{ dir = 8 }, @@ -11542,29 +11186,29 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"axK" = ( +"axB" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/security/brig) -"axL" = ( +"axC" = ( /turf/closed/wall, /area/crew_quarters/toilet/restrooms) -"axN" = ( +"axD" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"axO" = ( +"axE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/effect/landmark/xeno_spawn, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"axP" = ( +"axF" = ( /obj/machinery/door/airlock{ id_tag = "Cabin2"; name = "Cabin 4" @@ -11574,7 +11218,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/dorms) -"axQ" = ( +"axG" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -11583,7 +11227,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"axR" = ( +"axI" = ( /obj/machinery/door/airlock{ id_tag = "Cabin5"; name = "Cabin 3" @@ -11593,14 +11237,14 @@ }, /turf/open/floor/wood, /area/crew_quarters/dorms) -"axS" = ( +"axJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/crew_quarters/dorms) -"axT" = ( +"axK" = ( /obj/effect/landmark/xeno_spawn, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 @@ -11608,14 +11252,14 @@ /obj/machinery/light/small, /turf/open/floor/wood, /area/crew_quarters/dorms) -"axU" = ( +"axL" = ( /obj/item/caution, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"axV" = ( +"axM" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -11627,7 +11271,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"axW" = ( +"axN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -11641,7 +11285,7 @@ icon_state = "panelscorched" }, /area/maintenance/starboard/fore) -"axX" = ( +"axO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -11651,10 +11295,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/item/cigbutt, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"axY" = ( +"axP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -11669,20 +11312,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"axZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aya" = ( +"axQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -11696,32 +11326,20 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/fore) -"ayb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, +"axR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ayc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/obj/machinery/holopad, /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/turf/open/floor/plasteel/red/corner{ dir = 4 }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ayd" = ( +/area/security/brig) +"axS" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -11733,7 +11351,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aye" = ( +"axT" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=4"; dir = 4; @@ -11746,7 +11364,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/engineering) -"ayf" = ( +"axU" = ( /obj/machinery/door/window/southright{ dir = 4; name = "Engineering Deliveries"; @@ -11756,7 +11374,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/engineering) -"ayg" = ( +"axV" = ( /obj/structure/sign/warning/securearea{ pixel_y = 32 }, @@ -11766,7 +11384,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"ayh" = ( +"axW" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -11779,7 +11397,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"ayi" = ( +"axX" = ( /obj/machinery/light_switch{ pixel_x = 23 }, @@ -11798,22 +11416,21 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"ayj" = ( +"axY" = ( +/turf/closed/wall/r_wall, +/area/engine/engineering) +"axZ" = ( /obj/structure/closet/firecloset, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"ayk" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"ayl" = ( +"aya" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/machinery/light{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aym" = ( +"ayc" = ( /obj/structure/table/reinforced, /obj/item/tank/internals/emergency_oxygen/engi, /obj/item/tank/internals/emergency_oxygen/engi, @@ -11822,7 +11439,14 @@ }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"ayn" = ( +"aye" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"ayf" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/glass{ amount = 10 @@ -11830,14 +11454,14 @@ /obj/item/stack/rods, /turf/open/floor/plating/airless, /area/space/nearstation) -"ayo" = ( +"ayi" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/quartermaster/miningoffice) -"ayp" = ( +"ayj" = ( /turf/closed/wall, /area/quartermaster/miningoffice) -"ayq" = ( +"ayk" = ( /obj/machinery/door/airlock/maintenance{ name = "Mining Dock Maintenance"; req_access_txt = "48" @@ -11847,10 +11471,10 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"ayr" = ( +"ayl" = ( /turf/closed/wall, /area/quartermaster/warehouse) -"ays" = ( +"aym" = ( /obj/machinery/door/airlock/maintenance{ name = "Cargo Bay Warehouse Maintenance"; req_access_txt = "0"; @@ -11862,7 +11486,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/port/fore) -"ayt" = ( +"ayn" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ @@ -11870,14 +11494,14 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"ayu" = ( +"ayo" = ( /obj/machinery/computer/bank_machine, /obj/effect/turf_decal/bot_white, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/security/nuke_storage) -"ayv" = ( +"ayp" = ( /obj/machinery/light_switch{ pixel_y = 28 }, @@ -11885,7 +11509,7 @@ luminosity = 2 }, /area/security/nuke_storage) -"ayw" = ( +"ayq" = ( /obj/machinery/airalarm{ pixel_y = 23 }, @@ -11896,7 +11520,7 @@ luminosity = 2 }, /area/security/nuke_storage) -"ayx" = ( +"ayr" = ( /obj/machinery/power/apc{ dir = 1; name = "Vault APC"; @@ -11910,7 +11534,7 @@ luminosity = 2 }, /area/security/nuke_storage) -"ayy" = ( +"ays" = ( /obj/structure/filingcabinet, /obj/item/folder/documents, /obj/effect/turf_decal/bot_white, @@ -11918,7 +11542,7 @@ dir = 8 }, /area/security/nuke_storage) -"ayz" = ( +"ayw" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" @@ -11926,7 +11550,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/security/brig) -"ayA" = ( +"ayx" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -11942,7 +11566,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/brig) -"ayB" = ( +"ayy" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -11952,7 +11576,7 @@ }, /turf/open/floor/plating, /area/security/brig) -"ayC" = ( +"ayz" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -11968,7 +11592,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/brig) -"ayD" = ( +"ayA" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -11984,18 +11608,18 @@ }, /turf/open/floor/plasteel/red/side, /area/security/brig) -"ayE" = ( +"ayB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 2; id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63" }, /turf/open/floor/plasteel/red/side, /area/security/brig) -"ayF" = ( +"ayC" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -12004,15 +11628,15 @@ }, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 2; id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63" }, /turf/open/floor/plasteel/red/side, /area/security/brig) -"ayG" = ( +"ayD" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ @@ -12023,7 +11647,7 @@ }, /turf/open/floor/plating, /area/security/brig) -"ayH" = ( +"ayE" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -12040,27 +11664,10 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/side, /area/security/brig) -"ayI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/brig) -"ayJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/brig) -"ayK" = ( +"ayF" = ( /turf/closed/wall/r_wall, /area/security/detectives_office) -"ayL" = ( +"ayG" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "detective_shutters"; @@ -12071,7 +11678,7 @@ }, /turf/open/floor/plating, /area/security/detectives_office) -"ayM" = ( +"ayH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -12084,7 +11691,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/security/detectives_office) -"ayN" = ( +"ayI" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "detective_shutters"; @@ -12096,10 +11703,10 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/security/detectives_office) -"ayO" = ( +"ayJ" = ( /turf/closed/wall, /area/security/detectives_office) -"ayP" = ( +"ayK" = ( /obj/machinery/shower{ dir = 4 }, @@ -12108,7 +11715,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"ayQ" = ( +"ayL" = ( /obj/machinery/light/small{ dir = 1 }, @@ -12120,14 +11727,14 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"ayR" = ( +"ayM" = ( /obj/machinery/shower{ dir = 8 }, /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"ayS" = ( +"ayN" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, @@ -12135,7 +11742,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"ayT" = ( +"ayO" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -12147,7 +11754,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"ayU" = ( +"ayP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -12159,7 +11766,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"ayV" = ( +"ayQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -12167,11 +11774,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"ayW" = ( +"ayR" = ( /obj/item/wrench, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"ayX" = ( +"ayS" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -12183,27 +11790,14 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"ayY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"ayT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/engineering) -"ayZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sorting/mail{ - sortType = 4 - }, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engine/engineering) -"aza" = ( +"ayV" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -12212,7 +11806,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"azb" = ( +"ayW" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -12223,45 +11817,54 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"azc" = ( +"ayX" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"azd" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aze" = ( +"aza" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"azf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 +"azb" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/turf/closed/wall/r_wall, -/area/engine/engineering) +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/security/brig) +"azd" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"aze" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/wood, +/area/library) "azg" = ( /obj/item/stack/cable_coil, /turf/open/floor/plating/airless, /area/space/nearstation) -"azh" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port/fore) -"azi" = ( +"azj" = ( /obj/item/stack/ore/iron, /obj/effect/turf_decal/stripes/line{ dir = 9 }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"azj" = ( +"azk" = ( /obj/structure/closet/crate, /obj/machinery/light/small{ dir = 4 @@ -12276,7 +11879,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"azk" = ( +"azl" = ( /obj/structure/closet/emcloset, /obj/machinery/status_display{ pixel_y = 32; @@ -12286,7 +11889,7 @@ dir = 9 }, /area/quartermaster/miningoffice) -"azl" = ( +"azm" = ( /obj/structure/closet/crate, /obj/item/device/flashlight{ pixel_x = 1; @@ -12308,7 +11911,7 @@ dir = 1 }, /area/quartermaster/miningoffice) -"azm" = ( +"azn" = ( /obj/machinery/power/apc{ dir = 1; name = "Mining APC"; @@ -12326,7 +11929,7 @@ dir = 1 }, /area/quartermaster/miningoffice) -"azn" = ( +"azo" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -12337,7 +11940,7 @@ dir = 1 }, /area/quartermaster/miningoffice) -"azo" = ( +"azp" = ( /obj/structure/rack, /obj/item/storage/toolbox/emergency{ pixel_x = 2; @@ -12348,31 +11951,35 @@ dir = 5 }, /area/quartermaster/miningoffice) -"azp" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/floorgrime, -/area/quartermaster/warehouse) "azq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/closet/cardboard, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + req_access_txt = "0" }, -/turf/open/floor/plasteel/floorgrime, -/area/quartermaster/warehouse) +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) "azr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"azs" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -12383,7 +11990,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"azs" = ( +"azt" = ( /obj/machinery/airalarm{ pixel_y = 28 }, @@ -12395,7 +12002,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"azt" = ( +"azu" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -12404,7 +12011,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"azu" = ( +"azv" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -12413,7 +12020,7 @@ dir = 1 }, /area/security/nuke_storage) -"azv" = ( +"azw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -12421,13 +12028,13 @@ luminosity = 2 }, /area/security/nuke_storage) -"azw" = ( +"azx" = ( /obj/machinery/nuclearbomb/selfdestruct, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/security/nuke_storage) -"azx" = ( +"azy" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -12438,7 +12045,7 @@ luminosity = 2 }, /area/security/nuke_storage) -"azy" = ( +"azz" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -12447,14 +12054,11 @@ dir = 1 }, /area/security/nuke_storage) -"azz" = ( +"azC" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/hallway/primary/fore) -"azA" = ( -/turf/closed/wall, -/area/hallway/primary/fore) -"azB" = ( +"azD" = ( /obj/machinery/flasher{ id = "Cell 1"; pixel_x = -28 @@ -12464,13 +12068,13 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azC" = ( +"azE" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azD" = ( +"azF" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -12479,7 +12083,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azE" = ( +"azG" = ( /obj/machinery/flasher{ id = "Cell 2"; pixel_x = -28 @@ -12489,14 +12093,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azF" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"azG" = ( +"azH" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -12506,7 +12103,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azH" = ( +"azI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light/small{ dir = 8 @@ -12515,13 +12112,13 @@ dir = 9 }, /area/security/brig) -"azI" = ( +"azJ" = ( /obj/machinery/holopad, /turf/open/floor/plasteel/red/side{ dir = 1 }, /area/security/brig) -"azJ" = ( +"azK" = ( /obj/machinery/light/small{ dir = 4 }, @@ -12533,7 +12130,7 @@ dir = 5 }, /area/security/brig) -"azK" = ( +"azL" = ( /obj/structure/chair, /obj/machinery/flasher{ id = "holdingflash"; @@ -12541,24 +12138,24 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azL" = ( +"azM" = ( /obj/structure/chair, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azM" = ( +"azN" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azN" = ( +"azO" = ( /obj/structure/chair, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azO" = ( +"azP" = ( /obj/structure/rack, /obj/machinery/flasher{ id = "holdingflash"; @@ -12581,7 +12178,7 @@ /obj/item/restraints/handcuffs, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azP" = ( +"azQ" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -12595,13 +12192,13 @@ }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"azQ" = ( +"azR" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"azR" = ( +"azS" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -12614,7 +12211,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/security/detectives_office) -"azS" = ( +"azT" = ( /obj/structure/table/wood, /obj/item/storage/fancy/cigarettes, /obj/item/clothing/glasses/sunglasses, @@ -12626,7 +12223,7 @@ }, /turf/open/floor/carpet, /area/security/detectives_office) -"azT" = ( +"azU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -12644,7 +12241,7 @@ /obj/item/restraints/handcuffs, /turf/open/floor/carpet, /area/security/detectives_office) -"azU" = ( +"azV" = ( /obj/structure/table/wood, /obj/item/storage/secure/safe{ pixel_x = 32 @@ -12661,14 +12258,14 @@ }, /turf/open/floor/carpet, /area/security/detectives_office) -"azV" = ( +"azW" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating, /area/maintenance/fore) -"azW" = ( +"azX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -12683,15 +12280,6 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"azX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/fore) "azY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -12701,13 +12289,6 @@ }, /area/maintenance/fore) "azZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/fore) -"aAa" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -12717,7 +12298,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aAb" = ( +"aAa" = ( /obj/structure/mirror{ pixel_x = -28 }, @@ -12727,12 +12308,12 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aAc" = ( +"aAb" = ( /obj/effect/landmark/xeno_spawn, /obj/item/bikehorn/rubberducky, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aAd" = ( +"aAc" = ( /obj/structure/mirror{ pixel_x = 28 }, @@ -12741,11 +12322,11 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aAe" = ( +"aAd" = ( /obj/machinery/washing_machine, /turf/open/floor/plasteel/barber, /area/crew_quarters/dorms) -"aAf" = ( +"aAe" = ( /obj/structure/table, /obj/item/clothing/under/suit_jacket/female{ pixel_x = 3; @@ -12770,14 +12351,7 @@ /obj/item/clothing/under/lawyer/blacksuit, /turf/open/floor/plasteel/barber, /area/crew_quarters/dorms) -"aAg" = ( -/obj/machinery/washing_machine, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/barber, -/area/crew_quarters/dorms) -"aAh" = ( +"aAf" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -12785,7 +12359,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"aAi" = ( +"aAg" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -12798,7 +12372,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aAj" = ( +"aAh" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -12812,7 +12386,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"aAk" = ( +"aAi" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, @@ -12827,7 +12401,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aAl" = ( +"aAj" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -12842,7 +12416,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aAm" = ( +"aAk" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -12856,32 +12430,32 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/fore) +"aAl" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aAm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) "aAn" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aAo" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aAp" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -12896,24 +12470,18 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aAq" = ( +"aAo" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/engineering) -"aAr" = ( +"aAp" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/item/clothing/suit/hooded/wintercoat/engineering, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/engineering) -"aAs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"aAt" = ( +"aAr" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -12930,14 +12498,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aAu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/engineering) -"aAv" = ( +"aAt" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 }, @@ -12946,17 +12507,17 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aAw" = ( +"aAu" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/structure/disposalpipe/sorting/mail{ + sortType = 4 }, +/obj/effect/landmark/start/station_engineer, /turf/open/floor/plasteel, /area/engine/engineering) -"aAx" = ( +"aAv" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -12966,45 +12527,31 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aAy" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Fore"; - dir = 4; - network = list("SS13","Engine") - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aAz" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aAA" = ( -/obj/machinery/atmospherics/pipe/manifold4w/general/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aAB" = ( -/obj/machinery/atmospherics/pipe/manifold4w/general/visible, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aAC" = ( +"aAw" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 10 }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aAD" = ( +"aAx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/r_wall, /area/engine/engineering) -"aAE" = ( +"aAz" = ( +/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 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/cult{ + dir = 2 + }, +/area/library) +"aAA" = ( /obj/docking_port/stationary{ dir = 8; dwidth = 3; @@ -13013,53 +12560,58 @@ name = "mining shuttle bay"; width = 7; roundstart_template = /datum/map_template/shuttle/mining/box; - }, /turf/open/space/basic, /area/space) -"aAF" = ( +"aAB" = ( /obj/machinery/door/airlock/external{ name = "Mining Dock Airlock"; req_access = null; req_access_txt = "0" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/quartermaster/miningoffice) -"aAG" = ( +"aAC" = ( /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aAH" = ( +"aAD" = ( /obj/machinery/door/airlock/mining/glass{ name = "Mining Dock"; req_access_txt = "48" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aAI" = ( +"aAE" = ( /turf/open/floor/plasteel/brown{ dir = 8 }, /area/quartermaster/miningoffice) -"aAJ" = ( +"aAF" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aAK" = ( +"aAG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aAL" = ( +"aAH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/effect/landmark/start/shaft_miner, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aAM" = ( +"aAI" = ( /obj/machinery/button/door{ id = "qm_mine_warehouse"; name = "Warehouse Door Control"; @@ -13071,7 +12623,7 @@ dir = 4 }, /area/quartermaster/miningoffice) -"aAN" = ( +"aAJ" = ( /obj/machinery/door/poddoor/shutters{ id = "qm_mine_warehouse"; name = "Warehouse Shutters" @@ -13079,7 +12631,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aAO" = ( +"aAK" = ( /obj/structure/disposalpipe/segment, /obj/machinery/button/door{ id = "qm_mine_warehouse"; @@ -13093,10 +12645,10 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aAP" = ( +"aAL" = ( /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aAQ" = ( +"aAM" = ( /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 3; @@ -13104,13 +12656,13 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aAR" = ( +"aAN" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aAS" = ( +"aAO" = ( /obj/structure/closet/crate, /obj/structure/extinguisher_cabinet{ pixel_x = 27 @@ -13121,16 +12673,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aAT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aAU" = ( +"aAP" = ( /obj/structure/closet/crate{ name = "Gold Crate" }, @@ -13154,7 +12697,7 @@ dir = 1 }, /area/security/nuke_storage) -"aAV" = ( +"aAQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -13163,7 +12706,7 @@ luminosity = 2 }, /area/security/nuke_storage) -"aAW" = ( +"aAR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -13171,7 +12714,7 @@ luminosity = 2 }, /area/security/nuke_storage) -"aAX" = ( +"aAS" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -13182,7 +12725,7 @@ luminosity = 2 }, /area/security/nuke_storage) -"aAY" = ( +"aAT" = ( /obj/item/coin/silver{ pixel_x = 7; pixel_y = 12 @@ -13211,7 +12754,7 @@ dir = 1 }, /area/security/nuke_storage) -"aAZ" = ( +"aAV" = ( /obj/docking_port/stationary{ dir = 8; dwidth = 2; @@ -13220,17 +12763,16 @@ name = "fore bay 1"; width = 9; roundstart_template = /datum/map_template/shuttle/labour/box; - }, /turf/open/space/basic, /area/space) -"aBa" = ( +"aAW" = ( /obj/machinery/door/airlock/external{ name = "Labor Camp Shuttle Airlock" }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aBb" = ( +"aAX" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 28 @@ -13253,33 +12795,33 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aBc" = ( +"aAY" = ( /obj/structure/bed, /obj/item/bedsheet, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"aBd" = ( +"aAZ" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 1"; name = "Cell 1 Locker" }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"aBe" = ( +"aBa" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 2"; name = "Cell 2 Locker" }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"aBf" = ( +"aBb" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 3"; name = "Cell 3 Locker" }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"aBg" = ( +"aBc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/firealarm{ dir = 8; @@ -13289,10 +12831,10 @@ dir = 10 }, /area/security/brig) -"aBh" = ( +"aBd" = ( /turf/open/floor/plasteel/red/side, /area/security/brig) -"aBi" = ( +"aBe" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -13304,7 +12846,7 @@ dir = 6 }, /area/security/brig) -"aBj" = ( +"aBf" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -13313,13 +12855,13 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"aBk" = ( +"aBg" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"aBl" = ( +"aBh" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -13328,7 +12870,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"aBm" = ( +"aBi" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -13338,7 +12880,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"aBn" = ( +"aBj" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -13347,7 +12889,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"aBo" = ( +"aBk" = ( /obj/structure/closet/secure_closet/detective, /obj/effect/landmark/blobstart, /obj/machinery/camera{ @@ -13357,24 +12899,24 @@ }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aBp" = ( +"aBl" = ( /obj/machinery/holopad, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aBq" = ( +"aBm" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/security/detectives_office) -"aBr" = ( +"aBn" = ( /obj/structure/table/wood, /obj/item/folder/red, /obj/item/hand_labeler, /turf/open/floor/carpet, /area/security/detectives_office) -"aBs" = ( +"aBo" = ( /obj/effect/landmark/start/detective, /obj/structure/chair/office/dark{ dir = 8 @@ -13382,7 +12924,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/carpet, /area/security/detectives_office) -"aBt" = ( +"aBp" = ( /obj/machinery/airalarm{ dir = 8; pixel_x = 24 @@ -13392,7 +12934,7 @@ }, /turf/open/floor/carpet, /area/security/detectives_office) -"aBu" = ( +"aBq" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -13402,19 +12944,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/fore) -"aBv" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aBw" = ( +"aBr" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -13429,7 +12959,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aBx" = ( +"aBs" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -13439,25 +12969,25 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aBy" = ( +"aBt" = ( /obj/machinery/shower{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aBz" = ( +"aBu" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aBA" = ( +"aBv" = ( /obj/machinery/shower{ dir = 8 }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aBB" = ( +"aBw" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -13471,7 +13001,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"aBC" = ( +"aBx" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -13482,7 +13012,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"aBD" = ( +"aBy" = ( /obj/structure/cable/yellow{ icon_state = "0-8" }, @@ -13505,7 +13035,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"aBE" = ( +"aBz" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -13517,7 +13047,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"aBF" = ( +"aBA" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -13526,7 +13056,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aBG" = ( +"aBB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/sign/warning/pods{ pixel_x = 30 @@ -13535,16 +13065,20 @@ dir = 2 }, /area/crew_quarters/dorms) -"aBH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +"aBC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/structure/cable/yellow{ - icon_state = "1-2" + icon_state = "4-8" }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, /area/maintenance/starboard/fore) -"aBI" = ( +"aBD" = ( /obj/effect/decal/cleanable/cobweb, /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-20"; @@ -13557,7 +13091,7 @@ dir = 1 }, /area/engine/engineering) -"aBJ" = ( +"aBE" = ( /obj/machinery/suit_storage_unit/engine, /obj/effect/turf_decal/bot{ dir = 1 @@ -13566,7 +13100,7 @@ dir = 1 }, /area/engine/engineering) -"aBK" = ( +"aBF" = ( /obj/structure/tank_dispenser, /obj/machinery/light{ dir = 1 @@ -13578,7 +13112,7 @@ dir = 1 }, /area/engine/engineering) -"aBL" = ( +"aBG" = ( /obj/machinery/camera{ c_tag = "Engineering - Storage"; dir = 2; @@ -13592,7 +13126,7 @@ dir = 1 }, /area/engine/engineering) -"aBM" = ( +"aBH" = ( /obj/item/stack/sheet/plasteel{ amount = 10; pixel_x = -2; @@ -13611,10 +13145,10 @@ dir = 1 }, /area/engine/engineering) -"aBN" = ( +"aBI" = ( /turf/closed/wall, /area/engine/engineering) -"aBO" = ( +"aBJ" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -22 @@ -13627,7 +13161,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aBP" = ( +"aBK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -13636,39 +13170,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aBQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"aBR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/engine/engineering) -"aBS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"aBT" = ( +"aBL" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -13682,7 +13184,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aBU" = ( +"aBM" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-8" @@ -13694,7 +13196,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aBV" = ( +"aBN" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/computer/rdconsole/production{ dir = 1 @@ -13705,35 +13207,18 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aBW" = ( +"aBO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, /area/engine/engineering) -"aBX" = ( -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aBY" = ( +"aBQ" = ( /obj/machinery/atmospherics/components/unary/thermomachine/freezer{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aBZ" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - volume_rate = 200 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"aCa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aCb" = ( +"aBS" = ( /obj/item/stack/ore/silver, /obj/item/stack/ore/silver, /obj/effect/turf_decal/stripes/line{ @@ -13741,7 +13226,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aCc" = ( +"aBT" = ( /obj/structure/reagent_dispensers/fueltank, /obj/machinery/camera{ c_tag = "Mining Dock"; @@ -13751,22 +13236,22 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aCd" = ( +"aBU" = ( /obj/structure/sign/warning/vacuum/external, /turf/closed/wall, /area/quartermaster/miningoffice) -"aCe" = ( +"aBV" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/holopad, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aCf" = ( +"aBW" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aCg" = ( +"aBX" = ( /obj/item/device/radio/intercom{ dir = 4; name = "Station Intercom (General)"; @@ -13782,7 +13267,7 @@ dir = 4 }, /area/quartermaster/miningoffice) -"aCh" = ( +"aBY" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -13790,13 +13275,13 @@ /obj/item/storage/box/donkpockets, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aCi" = ( +"aBZ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aCj" = ( +"aCa" = ( /obj/structure/closet/crate/freezer, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 3; @@ -13804,7 +13289,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aCk" = ( +"aCb" = ( /obj/structure/closet/crate, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -13812,7 +13297,7 @@ /obj/item/stack/ore/glass, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aCl" = ( +"aCc" = ( /obj/structure/rack, /obj/item/electronics/apc, /obj/item/stock_parts/cell{ @@ -13825,21 +13310,21 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aCm" = ( +"aCd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/bot_white/right, /turf/open/floor/plasteel/vault{ dir = 1 }, /area/security/nuke_storage) -"aCn" = ( +"aCe" = ( /obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/open/floor/plasteel/vault/corner, /area/security/nuke_storage) -"aCo" = ( +"aCf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -13848,7 +13333,7 @@ }, /turf/open/floor/plasteel/vault/side, /area/security/nuke_storage) -"aCp" = ( +"aCg" = ( /obj/machinery/camera/motion{ c_tag = "Vault"; dir = 1; @@ -13862,7 +13347,7 @@ dir = 8 }, /area/security/nuke_storage) -"aCq" = ( +"aCh" = ( /obj/structure/safe, /obj/item/storage/secure/briefcase{ contents = newlist(/obj/item/clothing/suit/armor/vest,/obj/item/gun/ballistic/automatic/pistol,/obj/item/suppressor,/obj/item/melee/classic_baton/telescopic,/obj/item/clothing/mask/balaclava,/obj/item/bodybag,/obj/item/soap/nanotrasen) @@ -13884,7 +13369,7 @@ dir = 1 }, /area/security/nuke_storage) -"aCr" = ( +"aCj" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Labor Camp Shuttle Airlock"; @@ -13892,7 +13377,7 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aCs" = ( +"aCk" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" @@ -13903,7 +13388,7 @@ }, /turf/open/floor/plating, /area/security/brig) -"aCt" = ( +"aCl" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/structure/cable/yellow{ @@ -13918,7 +13403,7 @@ }, /turf/open/floor/plating, /area/security/brig) -"aCu" = ( +"aCm" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -13929,11 +13414,13 @@ }, /turf/open/floor/plating, /area/security/brig) -"aCv" = ( +"aCn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 1; id_tag = "outerbrig"; name = "Brig"; req_access_txt = "63" @@ -13942,7 +13429,7 @@ dir = 1 }, /area/security/brig) -"aCw" = ( +"aCo" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "Secure Gate"; @@ -13953,7 +13440,7 @@ }, /turf/open/floor/plating, /area/security/brig) -"aCx" = ( +"aCp" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -13966,8 +13453,10 @@ id = "secentranceflasher"; pixel_x = 25 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 1; id_tag = "outerbrig"; name = "Brig"; req_access_txt = "63" @@ -13976,15 +13465,7 @@ dir = 1 }, /area/security/brig) -"aCy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/brig) -"aCz" = ( +"aCq" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Security Desk"; @@ -13999,7 +13480,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aCA" = ( +"aCr" = ( /obj/machinery/door/airlock/security{ name = "Court Cell"; req_access = null; @@ -14007,7 +13488,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aCB" = ( +"aCs" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 @@ -14028,7 +13509,7 @@ /obj/item/device/flashlight/seclite, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aCC" = ( +"aCt" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -14037,7 +13518,7 @@ }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aCD" = ( +"aCu" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -14049,7 +13530,7 @@ }, /turf/open/floor/carpet, /area/security/detectives_office) -"aCE" = ( +"aCv" = ( /obj/structure/table/wood, /obj/item/paper_bin{ pixel_x = -3; @@ -14058,11 +13539,11 @@ /obj/item/pen, /turf/open/floor/carpet, /area/security/detectives_office) -"aCF" = ( +"aCw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/carpet, /area/security/detectives_office) -"aCG" = ( +"aCx" = ( /obj/machinery/computer/med_data{ dir = 8 }, @@ -14071,7 +13552,7 @@ }, /turf/open/floor/carpet, /area/security/detectives_office) -"aCH" = ( +"aCy" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -14079,7 +13560,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/fore) -"aCI" = ( +"aCz" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, @@ -14088,11 +13569,11 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aCJ" = ( +"aCA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/crew_quarters/toilet/restrooms) -"aCK" = ( +"aCB" = ( /obj/machinery/door/airlock{ name = "Unisex Showers"; req_access_txt = "0" @@ -14100,7 +13581,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aCL" = ( +"aCC" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -14109,13 +13590,13 @@ dir = 1 }, /area/crew_quarters/dorms) -"aCM" = ( +"aCD" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aCN" = ( +"aCE" = ( /obj/structure/chair/stool{ pixel_y = 8 }, @@ -14124,14 +13605,14 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aCO" = ( +"aCF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/holopad, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aCP" = ( +"aCG" = ( /obj/structure/chair/stool{ pixel_y = 8 }, @@ -14140,13 +13621,13 @@ }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/dorms) -"aCQ" = ( +"aCH" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aCR" = ( +"aCI" = ( /obj/machinery/light/small{ dir = 4 }, @@ -14158,7 +13639,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"aCS" = ( +"aCJ" = ( /obj/structure/bed, /obj/item/bedsheet, /obj/machinery/button/door{ @@ -14175,7 +13656,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"aCT" = ( +"aCK" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/airalarm{ pixel_y = 23 @@ -14183,24 +13664,14 @@ /obj/item/clothing/under/suit_jacket/navy, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"aCU" = ( -/obj/item/clothing/glasses/meson, -/obj/structure/closet/crate, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aCV" = ( +"aCM" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aCW" = ( +"aCN" = ( /obj/structure/reagent_dispensers/fueltank, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -14213,13 +13684,19 @@ dir = 1 }, /area/engine/engineering) -"aCX" = ( +"aCO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"aCP" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aCY" = ( +"aCQ" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -14228,25 +13705,18 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aCZ" = ( +"aCR" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/open/floor/plating, /area/engine/engineering) -"aDa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"aDb" = ( +"aCS" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel, /area/engine/engineering) -"aDc" = ( +"aCT" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -14255,7 +13725,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aDd" = ( +"aCU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -14267,16 +13737,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aDe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"aDf" = ( +"aCV" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -14286,20 +13747,20 @@ /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, /area/engine/engineering) -"aDg" = ( +"aCW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, /area/engine/engineering) -"aDh" = ( +"aCX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/closed/wall/r_wall, /area/engine/engineering) -"aDi" = ( +"aCY" = ( /obj/machinery/atmospherics/pipe/simple/general/visible, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -14311,42 +13772,27 @@ }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aDj" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, +"aCZ" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, /area/engine/engineering) -"aDk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +"aDa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 }, -/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/ore_box, /turf/open/floor/plating, -/area/engine/engineering) -"aDl" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"aDm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plating, -/area/engine/engineering) -"aDn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"aDo" = ( +/area/shuttle/auxillary_base) +"aDb" = ( /turf/closed/wall, /area/construction/mining/aux_base) -"aDp" = ( +"aDc" = ( +/obj/structure/closet/crate, +/obj/item/coin/silver, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aDh" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -14363,19 +13809,12 @@ dir = 9 }, /area/quartermaster/miningoffice) -"aDq" = ( +"aDi" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/landmark/start/shaft_miner, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aDr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"aDs" = ( +"aDj" = ( /obj/structure/closet/secure_closet/miner, /obj/machinery/airalarm{ dir = 8; @@ -14385,12 +13824,12 @@ dir = 4 }, /area/quartermaster/miningoffice) -"aDt" = ( +"aDk" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aDu" = ( +"aDl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -14401,14 +13840,14 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aDv" = ( +"aDm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/effect/landmark/start/cargo_technician, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aDw" = ( +"aDn" = ( /obj/item/stack/sheet/cardboard, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -14418,7 +13857,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aDx" = ( +"aDo" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -14427,38 +13866,41 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aDy" = ( +"aDp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /turf/closed/wall/r_wall, /area/security/nuke_storage) -"aDz" = ( +"aDq" = ( /obj/structure/sign/warning/securearea, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/closed/wall/r_wall, /area/security/nuke_storage) -"aDA" = ( +"aDr" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/vault{ - icon_state = "door_locked"; - locked = 1; req_access_txt = "53" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/vault{ dir = 5 }, /area/security/nuke_storage) -"aDB" = ( +"aDs" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/security/nuke_storage) -"aDC" = ( +"aDu" = ( +/turf/closed/wall, +/area/hallway/primary/fore) +"aDv" = ( /obj/machinery/door/poddoor/preopen{ id = "prison release"; name = "prisoner processing blast door" @@ -14472,18 +13914,18 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aDD" = ( +"aDw" = ( /turf/open/floor/plasteel/red/corner{ dir = 1 }, /area/hallway/primary/fore) -"aDE" = ( +"aDx" = ( /obj/structure/chair/stool, /turf/open/floor/plasteel/red/corner{ dir = 1 }, /area/hallway/primary/fore) -"aDF" = ( +"aDy" = ( /obj/structure/sign/warning/electricshock{ pixel_y = 32 }, @@ -14491,7 +13933,7 @@ dir = 1 }, /area/hallway/primary/fore) -"aDG" = ( +"aDz" = ( /obj/structure/sign/warning/electricshock{ pixel_y = 32 }, @@ -14504,7 +13946,7 @@ dir = 1 }, /area/hallway/primary/fore) -"aDH" = ( +"aDA" = ( /obj/machinery/light{ dir = 1 }, @@ -14515,16 +13957,16 @@ dir = 1 }, /area/hallway/primary/fore) -"aDI" = ( +"aDB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/corner{ dir = 1 }, /area/hallway/primary/fore) -"aDJ" = ( +"aDC" = ( /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aDK" = ( +"aDD" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -14533,7 +13975,7 @@ dir = 4 }, /area/hallway/primary/fore) -"aDL" = ( +"aDE" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -14544,7 +13986,7 @@ }, /turf/open/floor/plating, /area/security/brig) -"aDM" = ( +"aDF" = ( /obj/machinery/computer/secure_data, /obj/machinery/button/flasher{ id = "secentranceflasher"; @@ -14592,14 +14034,14 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aDN" = ( +"aDG" = ( /obj/structure/filingcabinet/chestdrawer{ pixel_y = 3 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/dark, /area/security/brig) -"aDO" = ( +"aDH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -14627,7 +14069,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aDP" = ( +"aDI" = ( /obj/machinery/requests_console{ department = "Detective's office"; pixel_x = -30 @@ -14640,13 +14082,13 @@ /obj/item/device/camera/detective, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aDQ" = ( +"aDJ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aDR" = ( +"aDK" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -14655,7 +14097,7 @@ }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aDS" = ( +"aDL" = ( /obj/machinery/light/small, /obj/item/device/radio/intercom{ freerange = 0; @@ -14671,7 +14113,7 @@ }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aDT" = ( +"aDM" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -14683,7 +14125,7 @@ }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aDU" = ( +"aDN" = ( /obj/structure/rack, /obj/item/storage/briefcase{ pixel_x = -3; @@ -14695,7 +14137,7 @@ }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aDV" = ( +"aDO" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -14705,7 +14147,7 @@ icon_state = "platingdmg1" }, /area/maintenance/fore) -"aDW" = ( +"aDP" = ( /obj/structure/toilet{ pixel_y = 8 }, @@ -14726,14 +14168,14 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aDX" = ( +"aDQ" = ( /obj/machinery/door/airlock{ id_tag = "Toilet3"; name = "Unit 3" }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aDY" = ( +"aDR" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -14742,7 +14184,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aDZ" = ( +"aDS" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -14754,7 +14196,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aEa" = ( +"aDT" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -14766,14 +14208,14 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aEb" = ( +"aDU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aEc" = ( +"aDV" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -14786,13 +14228,13 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aEd" = ( +"aDW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall, /area/crew_quarters/toilet/restrooms) -"aEe" = ( +"aDX" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -14806,36 +14248,36 @@ dir = 1 }, /area/crew_quarters/dorms) -"aEf" = ( +"aDY" = ( /obj/structure/chair/stool{ pixel_y = 8 }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aEg" = ( +"aDZ" = ( /obj/structure/table, /obj/item/storage/pill_bottle/dice, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aEh" = ( +"aEa" = ( /obj/structure/table, /obj/item/storage/crayons, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aEi" = ( +"aEb" = ( /obj/structure/table, /obj/item/toy/cards/deck, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aEj" = ( +"aEc" = ( /obj/structure/chair/stool{ pixel_y = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aEk" = ( +"aEd" = ( /obj/machinery/door/airlock{ id_tag = "Cabin6"; name = "Cabin 2" @@ -14845,34 +14287,24 @@ }, /turf/open/floor/wood, /area/crew_quarters/dorms) -"aEl" = ( +"aEe" = ( /obj/effect/landmark/xeno_spawn, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"aEm" = ( +"aEf" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"aEn" = ( +"aEg" = ( /obj/machinery/light/small, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"aEo" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aEp" = ( +"aEh" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/machinery/airalarm{ dir = 4; @@ -14885,27 +14317,27 @@ dir = 1 }, /area/engine/engineering) -"aEq" = ( +"aEi" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aEr" = ( +"aEj" = ( /obj/effect/landmark/start/station_engineer, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aEs" = ( +"aEk" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aEt" = ( +"aEl" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -14920,7 +14352,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aEu" = ( +"aEm" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ name = "Engineering Storage"; @@ -14939,7 +14371,7 @@ dir = 1 }, /area/engine/engineering) -"aEv" = ( +"aEn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -14952,7 +14384,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aEw" = ( +"aEo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -14962,7 +14394,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aEx" = ( +"aEp" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -14978,7 +14410,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aEy" = ( +"aEq" = ( /obj/structure/cable/white{ icon_state = "4-8" }, @@ -14990,23 +14422,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aEz" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) -"aEA" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aEB" = ( +"aEr" = ( /obj/structure/cable/white{ icon_state = "4-8" }, @@ -15015,154 +14431,42 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aEC" = ( -/obj/structure/cable/white{ - icon_state = "4-8" +"aEt" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 6 }, -/obj/machinery/light{ - dir = 1 +/obj/machinery/light_switch{ + pixel_y = 28 }, -/turf/open/floor/engine, -/area/engine/engineering) -"aED" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 2; - name = "Mix to Gas" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aEE" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aEF" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Gas to Mix" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aEG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aEH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"aEI" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) -"aEJ" = ( -/obj/machinery/firealarm{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aEK" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aEL" = ( -/turf/open/floor/plating, -/area/engine/engineering) -"aEM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/ore_box, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aEN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aEO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aEP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aEQ" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aER" = ( +/turf/open/floor/plasteel/floorgrime, +/area/quartermaster/warehouse) +"aEv" = ( /obj/machinery/computer/security/mining{ dir = 4; network = list("MINE","AuxBase") }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aES" = ( +"aEw" = ( /obj/structure/chair/office/dark{ dir = 8 }, /obj/effect/landmark/start/shaft_miner, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aET" = ( +"aEx" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aEU" = ( +"aEy" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -15171,7 +14475,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aEV" = ( +"aEz" = ( /obj/structure/closet/secure_closet/miner, /obj/structure/extinguisher_cabinet{ pixel_x = 27 @@ -15181,7 +14485,7 @@ dir = 4 }, /area/quartermaster/miningoffice) -"aEW" = ( +"aEA" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "2-4" @@ -15192,7 +14496,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aEX" = ( +"aEB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -15205,21 +14509,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aEY" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/rack, -/obj/item/stack/sheet/cardboard, -/obj/item/stack/rods/fifty, -/obj/item/paper, -/obj/item/storage/box/lights/mixed, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/floorgrime, -/area/quartermaster/warehouse) -"aEZ" = ( +"aED" = ( /obj/structure/closet/crate/internals, /obj/structure/cable/yellow{ icon_state = "1-4" @@ -15233,7 +14523,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aFa" = ( +"aEE" = ( /obj/machinery/power/apc{ dir = 4; name = "Warehouse APC"; @@ -15246,7 +14536,7 @@ /obj/effect/landmark/blobstart, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aFb" = ( +"aEF" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -15254,7 +14544,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/construction/storage/wing) -"aFc" = ( +"aEG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -15263,21 +14553,21 @@ dir = 5 }, /area/construction/storage/wing) -"aFd" = ( +"aEH" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" }, /turf/open/floor/plating, /area/construction/storage/wing) -"aFe" = ( +"aEI" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -22 }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aFf" = ( +"aEJ" = ( /obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, @@ -15286,20 +14576,20 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aFg" = ( +"aEK" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=1.5-Fore-Central"; location = "1-BrigCells" }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aFh" = ( +"aEL" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aFi" = ( +"aEM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -15308,7 +14598,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aFj" = ( +"aEN" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -15320,17 +14610,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aFk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aFl" = ( +"aEO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -15339,7 +14619,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aFm" = ( +"aEP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -15351,7 +14631,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aFn" = ( +"aEQ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -15360,7 +14640,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aFo" = ( +"aER" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -15369,7 +14649,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aFp" = ( +"aES" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -15379,7 +14659,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aFq" = ( +"aET" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -15393,7 +14673,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aFr" = ( +"aEU" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -15402,7 +14682,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aFs" = ( +"aEV" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/westleft{ base_state = "right"; @@ -15429,7 +14709,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aFt" = ( +"aEW" = ( /obj/structure/chair/office/dark{ dir = 8 }, @@ -15438,7 +14718,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aFu" = ( +"aEX" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -15447,7 +14727,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aFv" = ( +"aEY" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -15460,7 +14740,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aFw" = ( +"aEZ" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -15470,7 +14750,7 @@ /obj/item/clothing/mask/surgical, /turf/open/floor/plasteel/dark, /area/security/detectives_office) -"aFx" = ( +"aFa" = ( /obj/machinery/door/window{ dir = 1; name = "glass door"; @@ -15478,7 +14758,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/detectives_office) -"aFy" = ( +"aFb" = ( /obj/machinery/door/airlock/maintenance{ name = "Detective Maintenance"; req_access_txt = "4" @@ -15489,7 +14769,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/fore) -"aFz" = ( +"aFc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/firealarm{ dir = 8; @@ -15502,10 +14782,10 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aFA" = ( +"aFd" = ( /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aFB" = ( +"aFe" = ( /obj/machinery/light/small, /obj/machinery/power/apc{ dir = 2; @@ -15518,7 +14798,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aFC" = ( +"aFf" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -15527,7 +14807,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aFD" = ( +"aFg" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -15537,7 +14817,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aFE" = ( +"aFh" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -15546,7 +14826,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aFF" = ( +"aFi" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Unisex Restrooms"; @@ -15560,7 +14840,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aFG" = ( +"aFj" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -15574,25 +14854,25 @@ dir = 1 }, /area/crew_quarters/dorms) -"aFH" = ( +"aFk" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/dorms) -"aFI" = ( +"aFl" = ( /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aFJ" = ( +"aFm" = ( /obj/structure/chair/stool{ pixel_y = 8 }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aFK" = ( +"aFn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aFL" = ( +"aFo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/firealarm{ dir = 4; @@ -15602,23 +14882,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"aFM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"aFN" = ( -/obj/structure/rack, -/obj/item/stock_parts/matter_bin, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/fore) -"aFO" = ( +"aFp" = ( /obj/structure/reagent_dispensers/watertank, /obj/machinery/firealarm{ dir = 8; @@ -15634,19 +14898,19 @@ dir = 1 }, /area/engine/engineering) -"aFP" = ( +"aFq" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aFQ" = ( +"aFr" = ( /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aFR" = ( +"aFs" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -15655,7 +14919,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aFS" = ( +"aFt" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -15690,7 +14954,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aFT" = ( +"aFu" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -15700,7 +14964,7 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"aFU" = ( +"aFv" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -15709,27 +14973,23 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aFV" = ( +"aFw" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aFW" = ( +"aFx" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/engineering) -"aFX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aFY" = ( +"aFz" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ name = "Supermatter Engine"; @@ -15737,7 +14997,7 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"aFZ" = ( +"aFA" = ( /obj/structure/cable{ icon_state = "2-4" }, @@ -15746,7 +15006,7 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aGa" = ( +"aFB" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -15756,7 +15016,7 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aGb" = ( +"aFC" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -15766,41 +15026,7 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aGc" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"aGd" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aGe" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Mix Bypass"; - on = 0 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aGf" = ( +"aFD" = ( /obj/structure/cable/white{ icon_state = "1-4" }, @@ -15810,85 +15036,19 @@ /obj/machinery/atmospherics/pipe/manifold/cyan/visible, /turf/open/floor/engine, /area/engine/engineering) -"aGg" = ( -/obj/structure/cable/white{ - icon_state = "4-8" +"aFE" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_y = 32 }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 +/obj/item/folder, +/obj/item/folder, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/cult{ + dir = 2 }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aGh" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"aGi" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Laser Room"; - req_access_txt = "10" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aGj" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aGk" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aGl" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aGm" = ( -/turf/closed/wall/r_wall, -/area/space/nearstation) -"aGn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aGo" = ( -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aGp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aGq" = ( -/obj/structure/closet/crate, -/obj/item/coin/silver, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aGr" = ( +/area/library) +"aFF" = ( /obj/structure/table, /obj/item/folder/yellow, /obj/item/pen, @@ -15901,7 +15061,7 @@ dir = 10 }, /area/quartermaster/miningoffice) -"aGs" = ( +"aFG" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -15911,7 +15071,7 @@ dir = 2 }, /area/quartermaster/miningoffice) -"aGt" = ( +"aFH" = ( /obj/structure/rack, /obj/item/pickaxe{ pixel_x = 5 @@ -15924,7 +15084,7 @@ dir = 2 }, /area/quartermaster/miningoffice) -"aGu" = ( +"aFI" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -15933,13 +15093,13 @@ dir = 2 }, /area/quartermaster/miningoffice) -"aGv" = ( +"aFJ" = ( /obj/structure/closet/secure_closet/miner, /turf/open/floor/plasteel/brown{ dir = 6 }, /area/quartermaster/miningoffice) -"aGw" = ( +"aFK" = ( /obj/machinery/door/poddoor/shutters{ id = "qm_warehouse"; name = "Warehouse Shutters" @@ -15952,11 +15112,11 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/warehouse) -"aGx" = ( +"aFL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/quartermaster/warehouse) -"aGy" = ( +"aFM" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "0"; req_one_access_txt = "12;63;48;50" @@ -15966,12 +15126,13 @@ /obj/structure/cable/yellow{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/maintenance/port/fore) -"aGz" = ( +"aFN" = ( /turf/closed/wall, /area/construction/storage/wing) -"aGA" = ( +"aFO" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -15981,7 +15142,7 @@ }, /turf/open/floor/plating, /area/construction/storage/wing) -"aGB" = ( +"aFP" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -15991,7 +15152,7 @@ }, /turf/open/floor/plating, /area/construction/storage/wing) -"aGC" = ( +"aFQ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -16000,7 +15161,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/construction/storage/wing) -"aGD" = ( +"aFR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -16009,11 +15170,14 @@ /obj/machinery/door/airlock/public/glass{ name = "Vault Storage" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/vault{ dir = 5 }, /area/construction/storage/wing) -"aGE" = ( +"aFS" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" @@ -16021,7 +15185,7 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/construction/storage/wing) -"aGF" = ( +"aFT" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -16034,14 +15198,14 @@ }, /turf/open/floor/plating, /area/construction/storage/wing) -"aGG" = ( +"aFU" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/open/floor/plating, /area/construction/storage/wing) -"aGH" = ( +"aFV" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -16059,13 +15223,13 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aGI" = ( +"aFW" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aGJ" = ( +"aFX" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -16074,7 +15238,7 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aGK" = ( +"aFY" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -16089,7 +15253,7 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aGL" = ( +"aFZ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -16103,7 +15267,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGM" = ( +"aGa" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -16114,7 +15278,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGN" = ( +"aGb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16128,7 +15292,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGO" = ( +"aGc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16139,7 +15303,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGP" = ( +"aGd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16154,7 +15318,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGQ" = ( +"aGe" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16165,7 +15329,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGR" = ( +"aGf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16181,7 +15345,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGS" = ( +"aGg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16189,7 +15353,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGT" = ( +"aGh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16203,7 +15367,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGU" = ( +"aGi" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16214,7 +15378,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGV" = ( +"aGj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16223,7 +15387,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGW" = ( +"aGk" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -16232,7 +15396,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aGX" = ( +"aGl" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -16240,7 +15404,7 @@ dir = 2 }, /area/hallway/primary/fore) -"aGY" = ( +"aGm" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -16248,7 +15412,7 @@ dir = 2 }, /area/hallway/primary/fore) -"aGZ" = ( +"aGn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -16256,13 +15420,13 @@ dir = 2 }, /area/hallway/primary/fore) -"aHa" = ( +"aGo" = ( /obj/item/device/radio/beacon, /turf/open/floor/plasteel/red/corner{ dir = 2 }, /area/hallway/primary/fore) -"aHb" = ( +"aGp" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/machinery/door/poddoor/preopen{ @@ -16271,7 +15435,7 @@ }, /turf/open/floor/plating, /area/security/brig) -"aHc" = ( +"aGq" = ( /obj/machinery/computer/security{ dir = 1 }, @@ -16280,7 +15444,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aHd" = ( +"aGr" = ( /obj/structure/table, /obj/item/folder/red{ pixel_x = 3 @@ -16299,7 +15463,7 @@ /obj/item/restraints/handcuffs, /turf/open/floor/plasteel/dark, /area/security/brig) -"aHe" = ( +"aGs" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -16315,21 +15479,21 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aHf" = ( +"aGt" = ( /obj/machinery/light/small{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aHg" = ( +"aGu" = ( /obj/structure/bodycontainer/morgue, /turf/open/floor/plasteel/dark, /area/security/detectives_office) -"aHh" = ( +"aGv" = ( /obj/machinery/light/small, /turf/open/floor/plasteel/dark, /area/security/detectives_office) -"aHi" = ( +"aGw" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -16341,7 +15505,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aHj" = ( +"aGx" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -16354,19 +15518,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/fore) -"aHk" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/fore) -"aHl" = ( +"aGy" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -16379,7 +15531,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aHm" = ( +"aGz" = ( /obj/structure/toilet{ pixel_y = 8 }, @@ -16400,40 +15552,38 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aHn" = ( +"aGA" = ( /obj/machinery/door/airlock{ id_tag = "Toilet2"; name = "Unit 2" }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aHo" = ( +"aGB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aHp" = ( +"aGC" = ( /obj/machinery/light/small{ dir = 4 }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aHq" = ( +"aGD" = ( /obj/machinery/light/small{ dir = 8 }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aHr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 +"aGE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aHs" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/fore) +"aGF" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -16442,7 +15592,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aHt" = ( +"aGG" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -16457,14 +15607,14 @@ dir = 1 }, /area/crew_quarters/dorms) -"aHu" = ( +"aGH" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aHv" = ( +"aGI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16472,7 +15622,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"aHw" = ( +"aGJ" = ( /obj/machinery/light/small, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -16485,7 +15635,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"aHx" = ( +"aGK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -16494,7 +15644,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"aHy" = ( +"aGL" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -16502,7 +15652,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"aHz" = ( +"aGM" = ( /obj/machinery/door/airlock{ id_tag = "Cabin7"; name = "Cabin 1" @@ -16512,13 +15662,12 @@ }, /turf/open/floor/wood, /area/crew_quarters/dorms) -"aHA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +"aGN" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"aHB" = ( +/area/maintenance/port) +"aGO" = ( /obj/effect/landmark/xeno_spawn, /obj/machinery/airalarm{ pixel_y = 23 @@ -16531,33 +15680,12 @@ }, /turf/open/floor/wood, /area/crew_quarters/dorms) -"aHC" = ( +"aGP" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/item/clothing/under/assistantformal, /turf/open/floor/wood, /area/crew_quarters/dorms) -"aHD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aHE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"aHF" = ( +"aGQ" = ( /obj/structure/table, /obj/item/stack/rods/fifty, /obj/item/wrench, @@ -16569,7 +15697,7 @@ dir = 1 }, /area/engine/engineering) -"aHG" = ( +"aGR" = ( /obj/structure/table, /obj/item/stack/sheet/metal/fifty, /obj/item/stack/sheet/metal/fifty, @@ -16587,7 +15715,7 @@ dir = 1 }, /area/engine/engineering) -"aHH" = ( +"aGS" = ( /obj/structure/table, /obj/item/stack/cable_coil{ pixel_x = 3; @@ -16613,7 +15741,7 @@ dir = 1 }, /area/engine/engineering) -"aHI" = ( +"aGT" = ( /obj/structure/closet/crate{ name = "solar pack crate" }, @@ -16640,7 +15768,7 @@ dir = 1 }, /area/engine/engineering) -"aHJ" = ( +"aGU" = ( /obj/machinery/power/port_gen/pacman, /obj/structure/cable/yellow, /obj/effect/turf_decal/bot{ @@ -16650,7 +15778,7 @@ dir = 1 }, /area/engine/engineering) -"aHK" = ( +"aGV" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, @@ -16659,22 +15787,12 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aHL" = ( +"aGW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/landmark/start/station_engineer, /turf/open/floor/plasteel, /area/engine/engineering) -"aHM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"aHN" = ( +"aGX" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -16683,16 +15801,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aHO" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aHP" = ( +"aGY" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -16701,7 +15810,7 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aHQ" = ( +"aGZ" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/components/binary/pump{ dir = 8; @@ -16709,77 +15818,24 @@ }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aHR" = ( -/obj/effect/turf_decal/bot{ +"aHa" = ( +/obj/structure/cable/white, +/turf/open/floor/plating, +/area/engine/engineering) +"aHb" = ( +/obj/machinery/camera{ + c_tag = "Auxillary Mining Base"; dir = 1 }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aHS" = ( -/obj/machinery/status_display, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"aHT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, +/obj/structure/mining_shuttle_beacon, /turf/open/floor/plating, -/area/engine/supermatter) -"aHU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aHV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, -/turf/open/floor/engine, -/area/engine/engineering) -"aHW" = ( -/obj/structure/cable/white, -/turf/open/floor/plating, -/area/engine/engineering) -"aHX" = ( -/obj/structure/cable/white, -/obj/machinery/power/emitter/anchored{ - dir = 2; - state = 2 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aHY" = ( -/obj/structure/cable/white, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aHZ" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aIa" = ( +/area/shuttle/auxillary_base) +"aHc" = ( /obj/effect/spawner/structure/window, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/quartermaster/miningoffice) -"aIb" = ( +"aHd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -16792,7 +15848,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aIc" = ( +"aHe" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -16803,7 +15859,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aId" = ( +"aHf" = ( /obj/machinery/button/door{ id = "qm_warehouse"; name = "Warehouse Door Control"; @@ -16818,7 +15874,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aIe" = ( +"aHg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -16827,7 +15883,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aIf" = ( +"aHh" = ( /obj/machinery/firealarm{ pixel_y = 27 }, @@ -16836,7 +15892,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aIg" = ( +"aHi" = ( /obj/machinery/light_switch{ pixel_y = 28 }, @@ -16845,7 +15901,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aIh" = ( +"aHj" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining{ name = "Cargo Bay"; @@ -16853,9 +15909,12 @@ req_one_access_txt = "48;50" }, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aIi" = ( +"aHk" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, @@ -16868,7 +15927,7 @@ }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aIj" = ( +"aHl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16883,7 +15942,7 @@ }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aIk" = ( +"aHm" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining{ name = "Cargo Bay"; @@ -16894,9 +15953,12 @@ dir = 4 }, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aIl" = ( +"aHn" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -16905,7 +15967,7 @@ }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aIm" = ( +"aHo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16913,7 +15975,7 @@ dir = 8 }, /area/construction/storage/wing) -"aIn" = ( +"aHp" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -16921,7 +15983,7 @@ dir = 8 }, /area/construction/storage/wing) -"aIo" = ( +"aHq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16933,7 +15995,7 @@ dir = 8 }, /area/construction/storage/wing) -"aIp" = ( +"aHr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16944,7 +16006,7 @@ dir = 8 }, /area/construction/storage/wing) -"aIq" = ( +"aHs" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -16952,7 +16014,7 @@ dir = 8 }, /area/construction/storage/wing) -"aIr" = ( +"aHt" = ( /obj/machinery/vending/cigarette, /obj/machinery/newscaster{ pixel_y = 32 @@ -16963,49 +16025,49 @@ }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aIs" = ( +"aHu" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aIt" = ( +"aHv" = ( /obj/structure/chair/office/dark, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aIu" = ( +"aHw" = ( /obj/structure/table, /obj/machinery/recharger, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aIv" = ( +"aHx" = ( /turf/closed/wall/r_wall, /area/hallway/primary/fore) -"aIw" = ( +"aHy" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /turf/open/floor/plating, /area/hallway/primary/fore) -"aIx" = ( +"aHz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/red/corner{ dir = 8 }, /area/hallway/primary/fore) -"aIy" = ( +"aHA" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aIz" = ( +"aHB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/corner{ dir = 2 }, /area/hallway/primary/fore) -"aIA" = ( +"aHC" = ( /obj/structure/sign/directions/security{ desc = "A direction sign, pointing out which way the security department is."; dir = 1; @@ -17014,13 +16076,13 @@ }, /turf/closed/wall, /area/security/courtroom) -"aIB" = ( +"aHD" = ( /turf/closed/wall, /area/security/courtroom) -"aIC" = ( +"aHE" = ( /turf/closed/wall/r_wall, /area/security/courtroom) -"aID" = ( +"aHF" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ name = "Court Cell"; @@ -17029,10 +16091,10 @@ }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aIE" = ( +"aHG" = ( /turf/closed/wall, /area/lawoffice) -"aIF" = ( +"aHH" = ( /obj/machinery/door/airlock/maintenance{ name = "Law Office Maintenance"; req_access_txt = "38" @@ -17042,7 +16104,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aIG" = ( +"aHI" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -17051,7 +16113,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aIH" = ( +"aHJ" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 @@ -17061,20 +16123,20 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aII" = ( +"aHK" = ( /obj/machinery/door/airlock{ id_tag = "Toilet4"; name = "Unit 4" }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aIJ" = ( +"aHL" = ( /obj/machinery/door/airlock{ name = "Unit B" }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aIK" = ( +"aHM" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -17090,14 +16152,14 @@ dir = 1 }, /area/crew_quarters/dorms) -"aIL" = ( +"aHN" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aIM" = ( +"aHO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -17105,34 +16167,27 @@ dir = 2 }, /area/crew_quarters/dorms) -"aIN" = ( -/obj/structure/closet/wardrobe/pjs, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +"aHQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/turf/open/floor/plasteel/vault, -/area/crew_quarters/dorms) -"aIO" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/assistantformal, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/turf/open/floor/plasteel/vault, -/area/crew_quarters/dorms) -"aIP" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aHR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/structure/closet/wardrobe/pjs, /turf/open/floor/plasteel/vault, /area/crew_quarters/dorms) -"aIQ" = ( +"aHS" = ( /obj/machinery/button/door{ id = "Cabin7"; name = "Door Bolt Control"; @@ -17148,13 +16203,13 @@ }, /turf/open/floor/wood, /area/crew_quarters/dorms) -"aIR" = ( +"aHT" = ( /obj/structure/chair/wood/normal{ dir = 4 }, /turf/open/floor/wood, /area/crew_quarters/dorms) -"aIS" = ( +"aHU" = ( /obj/structure/table/wood, /obj/machinery/newscaster{ pixel_x = 29; @@ -17163,7 +16218,7 @@ /obj/item/paper, /turf/open/floor/wood, /area/crew_quarters/dorms) -"aIT" = ( +"aHV" = ( /obj/structure/closet, /obj/item/storage/box/donkpockets, /obj/effect/spawner/lootdrop/maintenance{ @@ -17172,7 +16227,16 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aIU" = ( +"aHW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"aHX" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -17182,11 +16246,11 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aIV" = ( +"aHY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/engineering) -"aIW" = ( +"aHZ" = ( /obj/item/clothing/gloves/color/yellow, /obj/item/clothing/gloves/color/yellow, /obj/item/clothing/gloves/color/yellow, @@ -17201,56 +16265,37 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aIX" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"aIY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aIZ" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"aJa" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"aJb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"aJc" = ( -/obj/effect/turf_decal/stripes/line{ +"aIc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/effect/spawner/structure/window/plasma/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/engine, +/turf/open/floor/plating, /area/engine/engineering) -"aJd" = ( +"aIe" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"aIf" = ( /obj/machinery/camera{ - c_tag = "Auxillary Mining Base"; + c_tag = "Auxillary Base Construction"; dir = 1 }, -/obj/structure/mining_shuttle_beacon, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aJe" = ( +/obj/machinery/button/door{ + id = "aux_base_shutters"; + name = "Public Shutters Control"; + pixel_y = -24; + req_access_txt = "0"; + req_one_access_txt = "32;47;48" + }, +/turf/open/floor/plasteel/yellow/side, +/area/construction/mining/aux_base) +"aIg" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/quartermaster/storage) -"aJf" = ( +"aIh" = ( /obj/item/device/radio/intercom{ dir = 4; name = "Station Intercom (General)"; @@ -17268,14 +16313,14 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aJg" = ( +"aIi" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/loading_area{ dir = 4 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aJh" = ( +"aIj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -17284,7 +16329,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aJi" = ( +"aIk" = ( /obj/structure/sign/map/left{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; @@ -17298,7 +16343,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aJj" = ( +"aIl" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -17320,7 +16365,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aJk" = ( +"aIm" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -17338,7 +16383,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aJl" = ( +"aIn" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -17350,7 +16395,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aJm" = ( +"aIo" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -17366,7 +16411,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aJn" = ( +"aIp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -17381,7 +16426,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aJo" = ( +"aIq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -17396,7 +16441,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aJp" = ( +"aIr" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -17410,9 +16455,12 @@ req_one_access_txt = "48;50" }, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aJq" = ( +"aIs" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -17427,7 +16475,7 @@ }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aJr" = ( +"aIt" = ( /obj/machinery/camera{ c_tag = "Cargo Bay - Storage Wing Entrance"; dir = 1; @@ -17438,7 +16486,7 @@ }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aJs" = ( +"aIu" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -17458,21 +16506,16 @@ dir = 4 }, /area/construction/storage/wing) -"aJt" = ( +"aIv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/turf/open/floor/plating{ + icon_state = "platingdmg3" }, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/brown/corner{ - dir = 4 - }, -/area/construction/storage/wing) -"aJu" = ( +/area/maintenance/starboard/fore) +"aIw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -17486,7 +16529,7 @@ dir = 4 }, /area/construction/storage/wing) -"aJv" = ( +"aIx" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -17513,7 +16556,7 @@ dir = 4 }, /area/construction/storage/wing) -"aJw" = ( +"aIy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -17524,7 +16567,7 @@ dir = 4 }, /area/construction/storage/wing) -"aJx" = ( +"aIz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -17542,7 +16585,7 @@ dir = 4 }, /area/construction/storage/wing) -"aJy" = ( +"aIA" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -17551,7 +16594,7 @@ }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aJz" = ( +"aIB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -17560,7 +16603,7 @@ }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aJA" = ( +"aIC" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -17575,7 +16618,7 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aJB" = ( +"aID" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -17587,7 +16630,7 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aJC" = ( +"aIE" = ( /obj/structure/table, /obj/item/folder/red, /obj/item/restraints/handcuffs, @@ -17599,7 +16642,7 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aJD" = ( +"aIF" = ( /obj/machinery/light/small, /obj/structure/table, /obj/item/paper_bin{ @@ -17615,21 +16658,21 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aJE" = ( +"aIG" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/open/floor/plating, /area/hallway/primary/fore) -"aJF" = ( +"aIH" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" }, /turf/open/floor/plating, /area/hallway/primary/fore) -"aJG" = ( +"aII" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -17638,7 +16681,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aJH" = ( +"aIJ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -17650,7 +16693,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aJI" = ( +"aIK" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -17658,7 +16701,7 @@ dir = 2 }, /area/hallway/primary/fore) -"aJJ" = ( +"aIL" = ( /obj/structure/closet/secure_closet/courtroom, /obj/machinery/light_switch{ pixel_y = 28 @@ -17667,13 +16710,13 @@ /obj/item/gavelhammer, /turf/open/floor/plasteel, /area/security/courtroom) -"aJK" = ( +"aIM" = ( /obj/structure/chair{ name = "Bailiff" }, /turf/open/floor/plasteel, /area/security/courtroom) -"aJL" = ( +"aIN" = ( /obj/item/device/radio/intercom{ broadcasting = 0; listening = 1; @@ -17682,7 +16725,7 @@ }, /turf/open/floor/plasteel, /area/security/courtroom) -"aJM" = ( +"aIO" = ( /obj/structure/chair{ name = "Judge" }, @@ -17690,7 +16733,7 @@ dir = 9 }, /area/security/courtroom) -"aJN" = ( +"aIP" = ( /obj/structure/chair{ name = "Judge" }, @@ -17709,7 +16752,7 @@ dir = 1 }, /area/security/courtroom) -"aJO" = ( +"aIQ" = ( /obj/structure/chair{ name = "Judge" }, @@ -17717,19 +16760,19 @@ dir = 5 }, /area/security/courtroom) -"aJP" = ( +"aIR" = ( /turf/open/floor/plasteel, /area/security/courtroom) -"aJQ" = ( +"aIS" = ( /obj/structure/window/reinforced{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aJR" = ( +"aIT" = ( /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aJS" = ( +"aIU" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ pixel_x = 1; @@ -17744,7 +16787,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aJT" = ( +"aIV" = ( /obj/structure/table/wood, /obj/item/book/manual/wiki/security_space_law, /obj/item/book/manual/wiki/security_space_law, @@ -17757,7 +16800,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aJU" = ( +"aIW" = ( /obj/structure/rack, /obj/item/storage/briefcase{ pixel_x = -3; @@ -17770,7 +16813,7 @@ /obj/item/clothing/glasses/sunglasses, /turf/open/floor/wood, /area/lawoffice) -"aJV" = ( +"aIX" = ( /obj/structure/cable/yellow{ icon_state = "0-2" }, @@ -17785,13 +16828,13 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aJW" = ( +"aIY" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/wood, /area/lawoffice) -"aJX" = ( +"aIZ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -17802,7 +16845,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aJY" = ( +"aJa" = ( /obj/structure/toilet{ pixel_y = 8 }, @@ -17823,14 +16866,14 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aJZ" = ( +"aJb" = ( /obj/machinery/door/airlock{ id_tag = "Toilet1"; name = "Unit 1" }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aKa" = ( +"aJc" = ( /obj/structure/toilet{ dir = 4 }, @@ -17851,12 +16894,12 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aKb" = ( +"aJd" = ( /obj/machinery/light/small, /obj/machinery/recharge_station, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aKc" = ( +"aJe" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -17865,40 +16908,37 @@ dir = 1 }, /area/crew_quarters/dorms) -"aKd" = ( +"aJf" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aKe" = ( +"aJg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/neutral/corner{ dir = 2 }, /area/crew_quarters/dorms) -"aKf" = ( +"aJh" = ( /turf/closed/wall, /area/hydroponics/garden) -"aKg" = ( +"aJi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, /turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aKh" = ( +/area/maintenance/port/fore) +"aJj" = ( /obj/effect/decal/cleanable/cobweb, /obj/machinery/field/generator, /turf/open/floor/plating, /area/engine/engineering) -"aKi" = ( +"aJk" = ( /obj/machinery/field/generator, /turf/open/floor/plating, /area/engine/engineering) -"aKj" = ( +"aJl" = ( /obj/machinery/shieldgen, /obj/machinery/light/small{ dir = 1 @@ -17910,17 +16950,17 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"aKk" = ( +"aJm" = ( /obj/machinery/shieldgen, /turf/open/floor/plating, /area/engine/engineering) -"aKl" = ( +"aJn" = ( /obj/structure/table, /obj/item/airlock_painter, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/engineering) -"aKm" = ( +"aJp" = ( /obj/structure/table, /obj/effect/turf_decal/delivery, /obj/item/clothing/glasses/meson/engine, @@ -17937,82 +16977,21 @@ /obj/item/pipe_dispenser, /turf/open/floor/plasteel, /area/engine/engineering) -"aKn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/engine, +"aJu" = ( +/turf/open/floor/plating, /area/engine/engineering) -"aKo" = ( +"aJv" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 6 }, /turf/closed/wall/r_wall, /area/engine/supermatter) -"aKp" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable, -/obj/structure/window/plasma/reinforced, -/turf/open/floor/engine, -/area/engine/supermatter) -"aKq" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable, -/obj/structure/window/plasma/reinforced, -/turf/open/floor/engine, -/area/engine/supermatter) -"aKr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, -/turf/open/floor/engine, -/area/engine/engineering) -"aKs" = ( -/obj/structure/window/reinforced, -/turf/open/space, -/area/space/nearstation) -"aKt" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aKu" = ( -/obj/docking_port/mobile/auxillary_base{ - dheight = 4; - dir = 2; - dwidth = 4; - height = 9; - width = 9; - timid = 0 - }, -/obj/machinery/bluespace_beacon, -/obj/machinery/computer/auxillary_base, -/turf/closed/wall, -/area/shuttle/auxillary_base) -"aKv" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aKw" = ( +"aJB" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/sign/warning/vacuum/external, /turf/open/floor/plating, /area/quartermaster/storage) -"aKx" = ( +"aJC" = ( /obj/machinery/light{ dir = 8 }, @@ -18023,7 +17002,7 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aKy" = ( +"aJD" = ( /obj/machinery/conveyor_switch/oneway{ convdir = 1; id = "QMLoad2"; @@ -18037,31 +17016,31 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aKz" = ( +"aJE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aKA" = ( +"aJF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aKB" = ( +"aJG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aKC" = ( +"aJH" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aKD" = ( +"aJI" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -18071,7 +17050,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aKE" = ( +"aJJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -18084,7 +17063,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aKF" = ( +"aJK" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; dir = 8; @@ -18106,7 +17085,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aKG" = ( +"aJL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -18115,9 +17094,12 @@ req_access_txt = "0"; req_one_access_txt = "12;63;48;50" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aKH" = ( +"aJM" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -18127,14 +17109,14 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aKI" = ( +"aJN" = ( /turf/closed/wall, /area/storage/primary) -"aKJ" = ( +"aJO" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/storage/primary) -"aKK" = ( +"aJP" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Primary Tool Storage" @@ -18143,7 +17125,7 @@ dir = 2 }, /area/storage/primary) -"aKL" = ( +"aJQ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Primary Tool Storage" @@ -18153,13 +17135,13 @@ dir = 2 }, /area/storage/primary) -"aKM" = ( +"aJR" = ( /turf/closed/wall/r_wall, /area/storage/primary) -"aKN" = ( +"aJS" = ( /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai_upload) -"aKO" = ( +"aJT" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -18167,7 +17149,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aKP" = ( +"aJU" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -18176,7 +17158,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aKQ" = ( +"aJV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -18185,7 +17167,7 @@ dir = 2 }, /area/hallway/primary/fore) -"aKR" = ( +"aJW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -18197,18 +17179,18 @@ }, /turf/open/floor/plasteel, /area/security/courtroom) -"aKS" = ( +"aJX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/plasteel, /area/security/courtroom) -"aKT" = ( +"aJY" = ( /turf/open/floor/plasteel/neutral/side{ dir = 9 }, /area/security/courtroom) -"aKU" = ( +"aJZ" = ( /obj/structure/table/wood, /obj/item/device/radio/intercom{ broadcasting = 1; @@ -18220,7 +17202,7 @@ dir = 1 }, /area/security/courtroom) -"aKV" = ( +"aKa" = ( /obj/structure/table/wood, /obj/item/gavelblock, /obj/item/gavelhammer, @@ -18228,19 +17210,19 @@ dir = 1 }, /area/security/courtroom) -"aKW" = ( +"aKb" = ( /obj/structure/table/wood, /obj/item/book/manual/wiki/security_space_law, /turf/open/floor/plasteel/neutral/side{ dir = 1 }, /area/security/courtroom) -"aKX" = ( +"aKc" = ( /turf/open/floor/plasteel/neutral/side{ dir = 5 }, /area/security/courtroom) -"aKY" = ( +"aKd" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 @@ -18252,14 +17234,14 @@ dir = 8 }, /area/security/courtroom) -"aKZ" = ( +"aKe" = ( /obj/machinery/door/window/southleft{ name = "Court Cell"; req_access_txt = "2" }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aLa" = ( +"aKf" = ( /obj/effect/landmark/start/lawyer, /obj/structure/chair/office/dark{ dir = 4 @@ -18271,7 +17253,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aLb" = ( +"aKg" = ( /obj/structure/table/wood, /obj/item/folder/blue, /obj/item/folder/blue, @@ -18280,13 +17262,13 @@ /obj/item/stamp/law, /turf/open/floor/wood, /area/lawoffice) -"aLc" = ( +"aKh" = ( /obj/structure/chair{ dir = 8 }, /turf/open/floor/wood, /area/lawoffice) -"aLd" = ( +"aKi" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -18295,7 +17277,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aLe" = ( +"aKj" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -18305,7 +17287,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aLf" = ( +"aKk" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -18317,7 +17299,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aLg" = ( +"aKl" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Unisex Restrooms"; @@ -18325,7 +17307,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aLh" = ( +"aKm" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -18339,12 +17321,12 @@ dir = 1 }, /area/crew_quarters/dorms) -"aLi" = ( +"aKn" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/crew_quarters/dorms) -"aLj" = ( +"aKo" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/airlock{ @@ -18355,7 +17337,7 @@ dir = 4 }, /area/crew_quarters/dorms) -"aLk" = ( +"aKp" = ( /obj/item/reagent_containers/spray/plantbgone, /obj/item/reagent_containers/spray/pestspray{ pixel_x = 3; @@ -18373,7 +17355,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aLl" = ( +"aKq" = ( /obj/machinery/biogenerator, /obj/machinery/firealarm{ pixel_y = 27 @@ -18381,7 +17363,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aLm" = ( +"aKr" = ( /obj/structure/table, /obj/item/cultivator, /obj/item/hatchet, @@ -18394,7 +17376,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aLn" = ( +"aKs" = ( /obj/machinery/seed_extractor, /obj/machinery/airalarm{ pixel_y = 23 @@ -18402,7 +17384,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aLo" = ( +"aKt" = ( /obj/item/seeds/apple, /obj/item/seeds/banana, /obj/item/seeds/cocoapod, @@ -18416,20 +17398,20 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aLp" = ( +"aKu" = ( /obj/structure/window/reinforced{ dir = 8 }, /turf/open/floor/grass, /area/hydroponics/garden) -"aLq" = ( +"aKv" = ( /mob/living/simple_animal/chicken{ name = "Featherbottom"; real_name = "Featherbottom" }, /turf/open/floor/grass, /area/hydroponics/garden) -"aLr" = ( +"aKw" = ( /obj/effect/decal/cleanable/cobweb, /obj/structure/closet/crate{ icon_state = "crateopen" @@ -18439,29 +17421,37 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aLs" = ( +"aKx" = ( /obj/machinery/portable_atmospherics/canister/toxins, /turf/open/floor/plating, /area/engine/engineering) -"aLt" = ( +"aKz" = ( /obj/machinery/door/poddoor{ id = "Secure Storage"; name = "Secure Storage" }, /turf/open/floor/plating, /area/engine/engineering) -"aLu" = ( +"aKA" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aLv" = ( +"aKB" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/engineering) -"aLw" = ( +"aKC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/engineering) +"aKF" = ( /obj/machinery/button/door{ id = "engsm"; name = "Radiation Shutters Control"; @@ -18476,13 +17466,13 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aLx" = ( +"aKG" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /turf/closed/wall/r_wall, /area/engine/supermatter) -"aLy" = ( +"aKH" = ( /obj/machinery/atmospherics/components/binary/pump/on{ dir = 4; name = "Gas to Chamber"; @@ -18490,100 +17480,26 @@ }, /turf/open/floor/engine, /area/engine/supermatter) -"aLz" = ( +"aKI" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 9 }, /obj/machinery/meter, /turf/closed/wall/r_wall, /area/engine/supermatter) -"aLA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 +"aKL" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Mix Bypass"; + on = 0 }, /turf/open/floor/engine, -/area/engine/supermatter) -"aLB" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"aLC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Starboard"; - dir = 4; - network = list("SS13","Engine") - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/engine, /area/engine/engineering) -"aLD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"aLE" = ( -/obj/structure/reflector/single/anchored{ - dir = 9 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aLF" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"aLG" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aLH" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aLI" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aLJ" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aLK" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"aLL" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aLM" = ( +"aKN" = ( /obj/machinery/door/poddoor{ density = 1; icon_state = "closed"; @@ -18598,7 +17514,7 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aLN" = ( +"aKO" = ( /obj/structure/plasticflaps, /obj/machinery/conveyor{ dir = 4; @@ -18607,7 +17523,7 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aLO" = ( +"aKP" = ( /obj/machinery/conveyor{ dir = 1; id = "QMLoad2"; @@ -18615,26 +17531,26 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aLP" = ( +"aKQ" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aLQ" = ( +"aKR" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aLR" = ( +"aKS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aLS" = ( +"aKT" = ( /obj/structure/closet/crate, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -18644,7 +17560,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aLT" = ( +"aKU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -18652,7 +17568,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aLU" = ( +"aKV" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -18661,21 +17577,21 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aLV" = ( +"aKW" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aLW" = ( +"aKX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/loading_area{ dir = 8 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aLX" = ( +"aKY" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; dir = 8; @@ -18688,7 +17604,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aLY" = ( +"aKZ" = ( /obj/machinery/door/window/northleft{ dir = 8; name = "MuleBot Supply Access"; @@ -18699,7 +17615,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aLZ" = ( +"aLa" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -18711,7 +17627,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aMa" = ( +"aLb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -18721,7 +17637,7 @@ /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/port/fore) -"aMb" = ( +"aLc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -18730,18 +17646,11 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aMc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"aMd" = ( +"aLd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"aLe" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -18753,7 +17662,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aMe" = ( +"aLf" = ( /obj/structure/table, /obj/item/clothing/gloves/color/fyellow, /obj/item/device/gps{ @@ -18763,18 +17672,18 @@ dir = 9 }, /area/storage/primary) -"aMf" = ( +"aLg" = ( /turf/open/floor/plasteel/brown{ dir = 1 }, /area/storage/primary) -"aMg" = ( +"aLh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/brown{ dir = 1 }, /area/storage/primary) -"aMh" = ( +"aLi" = ( /obj/structure/table, /obj/item/stack/cable_coil{ pixel_x = 2; @@ -18795,7 +17704,7 @@ dir = 1 }, /area/storage/primary) -"aMi" = ( +"aLj" = ( /obj/structure/table, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high{ @@ -18809,25 +17718,23 @@ dir = 1 }, /area/storage/primary) -"aMj" = ( -/obj/machinery/vending/assist, -/obj/machinery/light/small{ - dir = 1 +"aLk" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 }, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/storage/primary) -"aMk" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aLl" = ( /obj/machinery/vending/tool, /turf/open/floor/plasteel/brown{ dir = 1 }, /area/storage/primary) -"aMl" = ( +"aLm" = ( /obj/structure/table, /obj/item/device/assembly/signaler, /obj/item/device/assembly/signaler, @@ -18842,33 +17749,33 @@ dir = 5 }, /area/storage/primary) -"aMm" = ( +"aLn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/storage/primary) -"aMn" = ( +"aLo" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/space, /area/space/nearstation) -"aMo" = ( +"aLp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai_upload) -"aMp" = ( +"aLq" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/machinery/porta_turret/ai, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aMq" = ( +"aLr" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -18878,7 +17785,7 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aMr" = ( +"aLs" = ( /obj/structure/sign/plaques/kiddie{ pixel_y = 32 }, @@ -18892,7 +17799,7 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aMs" = ( +"aLt" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -18901,33 +17808,33 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aMt" = ( +"aLu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/porta_turret/ai, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aMu" = ( +"aLv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai_upload) -"aMv" = ( +"aLw" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/space, /area/space/nearstation) -"aMw" = ( +"aLx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/hallway/primary/fore) -"aMx" = ( +"aLy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/airalarm{ dir = 4; @@ -18940,36 +17847,32 @@ dir = 8 }, /area/hallway/primary/fore) -"aMy" = ( +"aLz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/security/courtroom) -"aMz" = ( +"aLA" = ( /turf/open/floor/plasteel/neutral/side{ dir = 8 }, /area/security/courtroom) -"aMA" = ( +"aLB" = ( /obj/effect/landmark/start/lawyer, /turf/open/floor/plasteel, /area/security/courtroom) -"aMB" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aMC" = ( +"aLC" = ( /turf/open/floor/plasteel/neutral/side{ dir = 4 }, /area/security/courtroom) -"aMD" = ( +"aLD" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/machinery/light{ dir = 8 }, /turf/open/floor/wood, /area/lawoffice) -"aME" = ( +"aLE" = ( /obj/structure/table/wood, /obj/item/folder/red, /obj/item/folder/red, @@ -18977,14 +17880,14 @@ /obj/item/clothing/glasses/sunglasses/big, /turf/open/floor/wood, /area/lawoffice) -"aMF" = ( +"aLF" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/wood, /area/lawoffice) -"aMG" = ( +"aLG" = ( /obj/machinery/photocopier, /obj/machinery/camera{ c_tag = "Law Office"; @@ -18993,7 +17896,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aMH" = ( +"aLH" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ @@ -19001,60 +17904,24 @@ }, /turf/open/floor/plasteel/vault, /area/crew_quarters/locker) -"aMI" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/assistantformal, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/turf/open/floor/plasteel/vault, -/area/crew_quarters/locker) -"aMJ" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light/small{ - dir = 1 +"aLJ" = ( +/obj/structure/rack, +/obj/item/stock_parts/matter_bin, +/turf/open/floor/plating{ + icon_state = "platingdmg2" }, -/obj/item/clothing/under/assistantformal, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/turf/open/floor/plasteel/vault, -/area/crew_quarters/locker) -"aMK" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/assistantformal, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/turf/open/floor/plasteel/vault, -/area/crew_quarters/locker) -"aML" = ( +/area/maintenance/starboard/fore) +"aLK" = ( /turf/open/floor/plasteel/neutral/corner{ dir = 1 }, /area/crew_quarters/locker) -"aMM" = ( +"aLL" = ( /turf/open/floor/plasteel/neutral/corner{ dir = 4 }, /area/crew_quarters/locker) -"aMN" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/delivery, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"aMO" = ( +"aLN" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/machinery/portable_atmospherics/pump, /obj/machinery/light/small{ @@ -19066,7 +17933,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aMP" = ( +"aLO" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/machinery/portable_atmospherics/scrubber, /obj/machinery/status_display{ @@ -19075,7 +17942,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aMQ" = ( +"aLP" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/machinery/portable_atmospherics/scrubber, /obj/item/device/radio/intercom{ @@ -19090,7 +17957,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aMR" = ( +"aLQ" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /obj/machinery/camera{ @@ -19104,7 +17971,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aMS" = ( +"aLR" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -19113,11 +17980,11 @@ dir = 1 }, /area/crew_quarters/locker) -"aMT" = ( +"aLS" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/locker) -"aMU" = ( +"aLT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/light/small{ dir = 4 @@ -19126,7 +17993,7 @@ dir = 4 }, /area/crew_quarters/locker) -"aMV" = ( +"aLU" = ( /obj/structure/sink{ dir = 8; pixel_x = -12; @@ -19142,7 +18009,7 @@ dir = 9 }, /area/hydroponics/garden) -"aMW" = ( +"aLV" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -19150,7 +18017,7 @@ dir = 1 }, /area/hydroponics/garden) -"aMX" = ( +"aLW" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -19158,7 +18025,7 @@ dir = 5 }, /area/hydroponics/garden) -"aMY" = ( +"aLX" = ( /obj/machinery/door/firedoor/border_only/closed{ dir = 8; name = "Animal Pen A"; @@ -19166,30 +18033,30 @@ }, /turf/open/floor/grass, /area/hydroponics/garden) -"aMZ" = ( +"aLY" = ( /turf/open/floor/grass, /area/hydroponics/garden) -"aNa" = ( +"aLZ" = ( /obj/effect/landmark/blobstart, /turf/open/floor/plating{ icon_state = "platingdmg1" }, /area/maintenance/starboard/fore) -"aNb" = ( +"aMa" = ( /obj/machinery/power/emitter, /turf/open/floor/plating, /area/engine/engineering) -"aNc" = ( +"aMb" = ( /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/engine/engineering) -"aNd" = ( +"aMc" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aNe" = ( +"aMd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "2-4" @@ -19197,7 +18064,7 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/engine/engineering) -"aNf" = ( +"aMe" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -19208,16 +18075,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/engine/engineering) -"aNg" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"aNh" = ( +"aMg" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ icon_state = "4-8" @@ -19228,7 +18086,7 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"aNi" = ( +"aMh" = ( /obj/structure/cable{ icon_state = "2-8" }, @@ -19240,7 +18098,7 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aNj" = ( +"aMi" = ( /obj/machinery/atmospherics/components/binary/pump/on{ name = "Gas to Filter" }, @@ -19249,118 +18107,72 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aNk" = ( +"aMj" = ( /obj/machinery/door/airlock/engineering/glass{ heat_proof = 1; name = "Supermatter Chamber"; req_access_txt = "10" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/engine, /area/engine/supermatter) -"aNl" = ( +"aMk" = ( /turf/open/floor/engine, /area/engine/supermatter) -"aNm" = ( -/obj/machinery/power/supermatter_shard/crystal/engine, -/turf/open/floor/engine, -/area/engine/supermatter) -"aNn" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/supermatter) -"aNo" = ( +"aMm" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aNp" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aNq" = ( +"aMo" = ( /obj/structure/reflector/box/anchored{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aNr" = ( +"aMq" = ( +/obj/structure/window/reinforced, +/turf/open/space, +/area/space/nearstation) +"aMr" = ( /obj/structure/window/reinforced, /obj/structure/lattice, /turf/open/space, /area/space/nearstation) -"aNs" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"aNt" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aNu" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aNv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aNw" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aNx" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"aNy" = ( -/obj/docking_port/stationary/random{ - id = "pod_lavaland1"; - name = "lavaland" - }, -/turf/open/space, -/area/space/nearstation) -"aNz" = ( +"aMs" = ( /obj/machinery/door/airlock/external{ name = "Supply Dock Airlock"; req_access_txt = "31" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/quartermaster/storage) -"aNA" = ( +"aMt" = ( /obj/machinery/light/small, /turf/open/floor/plating, /area/quartermaster/storage) -"aNB" = ( +"aMu" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aNC" = ( +"aMv" = ( /turf/open/floor/plasteel, /area/quartermaster/storage) -"aND" = ( +"aMw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aNE" = ( +"aMx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/landmark/start/cargo_technician, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aNF" = ( +"aMy" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -19369,7 +18181,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aNG" = ( +"aMz" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; dir = 8; @@ -19386,7 +18198,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aNH" = ( +"aMA" = ( /obj/machinery/camera/autoname{ dir = 4; network = list("SS13") @@ -19400,28 +18212,28 @@ dir = 8 }, /area/storage/primary) -"aNI" = ( +"aMB" = ( /turf/open/floor/plasteel, /area/storage/primary) -"aNJ" = ( +"aMC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/open/floor/plasteel, /area/storage/primary) -"aNK" = ( +"aMD" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, /turf/open/floor/plasteel, /area/storage/primary) -"aNL" = ( +"aME" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/storage/primary) -"aNM" = ( +"aMF" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -19433,7 +18245,7 @@ dir = 4 }, /area/storage/primary) -"aNN" = ( +"aMG" = ( /obj/structure/table, /obj/item/aiModule/core/full/asimov, /obj/effect/spawner/lootdrop/aimodule_harmless, @@ -19454,10 +18266,10 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aNO" = ( +"aMH" = ( /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) -"aNP" = ( +"aMI" = ( /obj/structure/table, /obj/machinery/door/window{ base_state = "left"; @@ -19478,7 +18290,7 @@ /obj/item/aiModule/reset/purge, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aNQ" = ( +"aMJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/item/device/radio/intercom{ freerange = 0; @@ -19490,14 +18302,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aNR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aNS" = ( +"aMK" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -19505,7 +18310,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/security/courtroom) -"aNT" = ( +"aML" = ( /obj/structure/chair{ dir = 4; name = "Prosecution" @@ -19514,26 +18319,26 @@ dir = 9 }, /area/security/courtroom) -"aNU" = ( +"aMM" = ( /obj/structure/table/wood, /obj/item/folder/red, /turf/open/floor/plasteel/neutral/side{ dir = 8 }, /area/security/courtroom) -"aNV" = ( +"aMN" = ( /obj/machinery/holopad, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/security/courtroom) -"aNW" = ( +"aMO" = ( /obj/structure/table/wood, /obj/item/folder/blue, /turf/open/floor/plasteel/neutral/side{ dir = 4 }, /area/security/courtroom) -"aNX" = ( +"aMP" = ( /obj/structure/chair{ dir = 8; name = "Defense" @@ -19542,7 +18347,7 @@ dir = 5 }, /area/security/courtroom) -"aNY" = ( +"aMQ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Law Office"; @@ -19550,20 +18355,20 @@ }, /turf/open/floor/wood, /area/security/courtroom) -"aNZ" = ( +"aMR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/open/floor/wood, /area/lawoffice) -"aOa" = ( +"aMS" = ( /obj/effect/landmark/start/lawyer, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/wood, /area/lawoffice) -"aOb" = ( +"aMT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -19572,7 +18377,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aOc" = ( +"aMU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -19581,7 +18386,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aOd" = ( +"aMV" = ( /obj/structure/filingcabinet/employment, /obj/machinery/airalarm{ dir = 8; @@ -19589,7 +18394,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aOe" = ( +"aMW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -19603,7 +18408,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aOf" = ( +"aMX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -19617,7 +18422,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aOg" = ( +"aMY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -19628,7 +18433,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aOh" = ( +"aMZ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -19639,7 +18444,7 @@ dir = 4 }, /area/crew_quarters/locker) -"aOi" = ( +"aNa" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -19650,7 +18455,7 @@ dir = 4 }, /area/crew_quarters/locker) -"aOj" = ( +"aNb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -19662,7 +18467,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aOk" = ( +"aNc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -19673,7 +18478,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aOl" = ( +"aNd" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -19687,14 +18492,14 @@ dir = 1 }, /area/crew_quarters/locker) -"aOm" = ( +"aNe" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/disposalpipe/segment{ dir = 9 }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aOn" = ( +"aNf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=14.5-Recreation"; @@ -19704,27 +18509,27 @@ dir = 4 }, /area/crew_quarters/locker) -"aOo" = ( +"aNg" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, /area/hydroponics/garden) -"aOp" = ( +"aNh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/neutral/side{ dir = 8 }, /area/hydroponics/garden) -"aOq" = ( +"aNi" = ( /obj/machinery/hydroponics/constructable, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aOr" = ( +"aNj" = ( /turf/open/floor/plasteel/neutral/side{ dir = 4 }, /area/hydroponics/garden) -"aOs" = ( +"aNk" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -19735,29 +18540,21 @@ }, /turf/open/floor/grass, /area/hydroponics/garden) -"aOt" = ( +"aNl" = ( /obj/structure/window/reinforced, /turf/open/floor/grass, /area/hydroponics/garden) -"aOu" = ( +"aNm" = ( /obj/structure/rack, /obj/item/clothing/suit/hazardvest, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aOv" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aOw" = ( +"aNn" = ( /obj/machinery/power/emitter, /obj/machinery/light/small, /turf/open/floor/plating, /area/engine/engineering) -"aOx" = ( +"aNo" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/metal/fifty, /obj/item/stack/rods/fifty, @@ -19774,11 +18571,7 @@ /obj/item/device/gps, /turf/open/floor/plating, /area/engine/engineering) -"aOy" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/engine/engineering) -"aOz" = ( +"aNq" = ( /obj/structure/table, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high{ @@ -19788,38 +18581,14 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/engineering) -"aOA" = ( +"aNr" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/engine/engineering) -"aOB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Port"; - dir = 8; - network = list("SS13","Engine") - }, -/obj/machinery/airalarm/engine{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"aOC" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"aOD" = ( +"aNu" = ( /obj/machinery/atmospherics/components/binary/pump/on{ dir = 8; name = "Gas to Filter"; @@ -19827,57 +18596,17 @@ }, /turf/open/floor/engine, /area/engine/supermatter) -"aOE" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"aOF" = ( +"aNv" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/engine, /area/engine/supermatter) -"aOG" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"aOH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aOI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, -/turf/open/floor/engine, -/area/engine/engineering) -"aOJ" = ( -/obj/structure/reflector/double/anchored{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aOK" = ( -/obj/structure/reflector/single/anchored{ - dir = 10 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aOL" = ( +"aNw" = ( /obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/lattice, /turf/open/space, /area/space/nearstation) -"aOM" = ( +"aNx" = ( /obj/structure/window/reinforced{ dir = 1; layer = 2.9 @@ -19887,7 +18616,7 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"aON" = ( +"aNy" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1; @@ -19895,22 +18624,7 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"aOO" = ( -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aOP" = ( -/obj/structure/window/reinforced, -/obj/machinery/light/small, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Fore"; - dir = 1; - network = list("MiniSat") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aOQ" = ( +"aNz" = ( /obj/structure/window/reinforced{ dir = 1; pixel_y = 1 @@ -19918,7 +18632,15 @@ /obj/structure/window/reinforced, /turf/open/floor/plasteel/dark, /area/aisat) -"aOR" = ( +"aNA" = ( +/obj/structure/closet{ + name = "Evidence Closet 3" + }, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/security/warden) +"aNB" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -19928,21 +18650,18 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"aOS" = ( +"aNC" = ( /obj/structure/window/reinforced{ dir = 8 }, /obj/structure/lattice, /turf/open/space, /area/space/nearstation) -"aOT" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/pod_1) -"aOU" = ( +"aND" = ( /obj/effect/spawner/structure/window/shuttle, /turf/open/floor/plating, /area/shuttle/pod_1) -"aOV" = ( +"aNE" = ( /obj/machinery/button/door{ id = "QMLoaddoor"; layer = 4; @@ -19964,23 +18683,23 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aOW" = ( +"aNF" = ( /obj/effect/landmark/start/cargo_technician, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aOX" = ( +"aNG" = ( /obj/effect/spawner/lootdrop/maintenance, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aOY" = ( +"aNH" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aOZ" = ( +"aNI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -19988,7 +18707,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aPa" = ( +"aNJ" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -19996,7 +18715,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aPb" = ( +"aNK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -20007,7 +18726,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aPc" = ( +"aNL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -20017,7 +18736,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aPd" = ( +"aNM" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; dir = 8; @@ -20034,14 +18753,14 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aPe" = ( +"aNN" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plating, /area/quartermaster/qm) -"aPf" = ( +"aNO" = ( /obj/structure/closet/secure_closet/quartermaster, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -20051,7 +18770,7 @@ dir = 9 }, /area/quartermaster/qm) -"aPg" = ( +"aNP" = ( /obj/machinery/camera/autoname{ dir = 2; network = list("SS13") @@ -20073,7 +18792,7 @@ dir = 1 }, /area/quartermaster/qm) -"aPh" = ( +"aNQ" = ( /obj/structure/filingcabinet/chestdrawer, /obj/machinery/airalarm{ pixel_y = 23 @@ -20085,22 +18804,25 @@ dir = 1 }, /area/quartermaster/qm) -"aPi" = ( +"aNR" = ( /obj/structure/table, /obj/machinery/computer/stockexchange, /turf/open/floor/plasteel/brown{ dir = 1 }, /area/quartermaster/qm) -"aPj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" +"aNS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aPk" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"aNT" = ( /obj/structure/window/reinforced{ dir = 1; pixel_y = 1 @@ -20109,32 +18831,32 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/storage/primary) -"aPl" = ( +"aNU" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /turf/open/floor/plasteel, /area/storage/primary) -"aPm" = ( +"aNV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/storage/primary) -"aPn" = ( +"aNW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/storage/primary) -"aPo" = ( +"aNX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/open/floor/plasteel, /area/storage/primary) -"aPp" = ( +"aNY" = ( /obj/structure/table, /obj/item/device/assembly/igniter{ pixel_x = -4; @@ -20148,20 +18870,20 @@ dir = 4 }, /area/storage/primary) -"aPq" = ( +"aNZ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" }, /turf/open/floor/plating, /area/ai_monitored/turret_protected/ai_upload) -"aPr" = ( +"aOa" = ( /obj/machinery/porta_turret/ai{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aPs" = ( +"aOb" = ( /obj/machinery/computer/upload/borg, /obj/structure/window/reinforced{ dir = 1 @@ -20182,11 +18904,11 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aPt" = ( +"aOc" = ( /obj/machinery/holopad, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aPu" = ( +"aOd" = ( /obj/machinery/computer/upload/ai, /obj/structure/window/reinforced{ dir = 1 @@ -20207,19 +18929,19 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aPv" = ( +"aOe" = ( /obj/machinery/porta_turret/ai{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aPw" = ( +"aOf" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, /turf/open/floor/plasteel, /area/security/courtroom) -"aPx" = ( +"aOg" = ( /obj/structure/chair{ dir = 4; name = "Prosecution" @@ -20228,27 +18950,27 @@ dir = 10 }, /area/security/courtroom) -"aPy" = ( +"aOh" = ( /obj/structure/table/wood, /obj/item/paper, /turf/open/floor/plasteel/neutral/side{ dir = 10 }, /area/security/courtroom) -"aPz" = ( +"aOi" = ( /turf/open/floor/plasteel/neutral/side, /area/security/courtroom) -"aPA" = ( +"aOj" = ( /obj/item/device/radio/beacon, /turf/open/floor/plasteel/neutral/side, /area/security/courtroom) -"aPB" = ( +"aOk" = ( /obj/structure/table/wood, /turf/open/floor/plasteel/neutral/side{ dir = 6 }, /area/security/courtroom) -"aPC" = ( +"aOl" = ( /obj/structure/chair{ dir = 8; name = "Defense" @@ -20260,7 +18982,7 @@ dir = 6 }, /area/security/courtroom) -"aPD" = ( +"aOm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -20269,7 +18991,7 @@ }, /turf/open/floor/plasteel, /area/security/courtroom) -"aPE" = ( +"aOn" = ( /obj/item/device/taperecorder, /obj/item/cartridge/lawyer, /obj/structure/table/wood, @@ -20281,7 +19003,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aPF" = ( +"aOo" = ( /obj/item/paper_bin{ pixel_x = -3; pixel_y = 7 @@ -20291,7 +19013,7 @@ /obj/structure/table/wood, /turf/open/floor/wood, /area/lawoffice) -"aPG" = ( +"aOp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -20299,18 +19021,18 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/wood, /area/lawoffice) -"aPH" = ( +"aOq" = ( /obj/machinery/holopad, /turf/open/floor/wood, /area/lawoffice) -"aPI" = ( +"aOr" = ( /obj/structure/closet/lawcloset, /obj/machinery/light_switch{ pixel_y = -28 }, /turf/open/floor/wood, /area/lawoffice) -"aPJ" = ( +"aOs" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -20322,41 +19044,41 @@ dir = 1 }, /area/crew_quarters/locker) -"aPK" = ( +"aOt" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aPL" = ( +"aOu" = ( /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aPM" = ( +"aOv" = ( /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/locker) -"aPN" = ( +"aOw" = ( /obj/structure/chair/stool{ pixel_y = 8 }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aPO" = ( +"aOx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aPP" = ( +"aOy" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aPQ" = ( +"aOz" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/locker) -"aPR" = ( +"aOA" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -20365,7 +19087,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aPS" = ( +"aOB" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -20374,7 +19096,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aPT" = ( +"aOC" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -20383,7 +19105,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aPU" = ( +"aOD" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -20398,7 +19120,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aPV" = ( +"aOE" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -20410,7 +19132,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aPW" = ( +"aOF" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -20424,7 +19146,7 @@ dir = 4 }, /area/crew_quarters/locker) -"aPX" = ( +"aOG" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -20441,7 +19163,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aPY" = ( +"aOH" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -20455,7 +19177,7 @@ dir = 8 }, /area/hydroponics/garden) -"aPZ" = ( +"aOI" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -20464,7 +19186,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/hydroponics/garden) -"aQa" = ( +"aOJ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -20474,7 +19196,7 @@ /obj/machinery/holopad, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aQb" = ( +"aOK" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -20486,7 +19208,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aQc" = ( +"aOL" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -20497,7 +19219,7 @@ dir = 4 }, /area/hydroponics/garden) -"aQd" = ( +"aOM" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -20509,7 +19231,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aQe" = ( +"aON" = ( /obj/machinery/power/apc{ dir = 4; name = "Garden APC"; @@ -20533,7 +19255,7 @@ dir = 4 }, /area/hydroponics/garden) -"aQf" = ( +"aOO" = ( /obj/machinery/power/apc/highcap/ten_k{ dir = 8; name = "Engine Room APC"; @@ -20548,7 +19270,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aQg" = ( +"aOP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "1-2" @@ -20558,7 +19280,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aQh" = ( +"aOQ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -20569,7 +19291,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aQi" = ( +"aOR" = ( /obj/effect/turf_decal/delivery, /obj/structure/closet/firecloset, /obj/effect/turf_decal/stripes/line{ @@ -20577,61 +19299,19 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aQj" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"aQk" = ( +"aOS" = ( /obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"aQl" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"aQm" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/window/plasma/reinforced{ dir = 1 }, -/turf/open/floor/engine, -/area/engine/supermatter) -"aQn" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = 21 }, -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/window/plasma/reinforced{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"aQo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /turf/open/floor/engine, /area/engine/engineering) -"aQp" = ( +"aOT" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -20640,7 +19320,7 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"aQq" = ( +"aOU" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -20650,19 +19330,19 @@ }, /turf/open/space, /area/space/nearstation) -"aQr" = ( +"aOV" = ( /obj/structure/window/reinforced{ dir = 1; pixel_y = 1 }, /turf/open/space, /area/space/nearstation) -"aQs" = ( +"aOW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/lattice/catwalk, /turf/open/space, /area/aisat) -"aQt" = ( +"aOX" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -20672,70 +19352,44 @@ }, /turf/open/space, /area/space/nearstation) -"aQu" = ( -/turf/closed/wall/mineral/plastitanium, -/area/hallway/secondary/entry) -"aQv" = ( +"aOY" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"aOZ" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/pod_1) +"aPa" = ( /obj/structure/chair{ dir = 1 }, -/obj/machinery/status_display{ - pixel_x = 32 +/obj/item/device/radio/intercom{ + pixel_x = 25 }, -/obj/machinery/computer/shuttle/pod{ - pixel_x = -32; - possible_destinations = "pod_lavaland1"; - shuttleId = "pod1" +/obj/item/storage/pod{ + pixel_x = -26 + }, +/obj/machinery/light/small{ + dir = 8 }, /turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_1) -"aQw" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aQx" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aQy" = ( -/obj/effect/turf_decal/stripes/line, -/obj/docking_port/stationary/public_mining_dock, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aQz" = ( +/area/shuttle/pod_2) +"aPb" = ( /obj/structure/closet/secure_closet/miner/unlocked, /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/plating, /area/shuttle/auxillary_base) -"aQA" = ( -/obj/structure/closet, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aQB" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 5; - height = 7; - id = "supply_home"; - name = "Cargo Bay"; - width = 12 - }, -/turf/open/space/basic, -/area/space) -"aQC" = ( +"aPd" = ( /obj/machinery/light/small{ dir = 1 }, /turf/open/floor/plating, /area/quartermaster/storage) -"aQD" = ( +"aPe" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -20747,7 +19401,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aQE" = ( +"aPf" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -20765,7 +19419,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aQF" = ( +"aPg" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -20782,7 +19436,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/qm) -"aQG" = ( +"aPh" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -20796,7 +19450,7 @@ dir = 8 }, /area/quartermaster/qm) -"aQH" = ( +"aPi" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -20806,7 +19460,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/qm) -"aQI" = ( +"aPj" = ( /obj/effect/landmark/start/quartermaster, /obj/structure/disposalpipe/segment{ dir = 10 @@ -20816,7 +19470,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/qm) -"aQJ" = ( +"aPk" = ( /obj/structure/table, /obj/item/folder/yellow, /obj/item/pen{ @@ -20831,7 +19485,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/qm) -"aQK" = ( +"aPl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -20841,7 +19495,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aQL" = ( +"aPm" = ( /obj/structure/plasticflaps{ opacity = 1 }, @@ -20854,15 +19508,11 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/storage/primary) -"aQM" = ( +"aPn" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/storage/primary) -"aQN" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/storage/primary) -"aQO" = ( +"aPo" = ( /obj/structure/table, /obj/item/weldingtool, /obj/item/crowbar, @@ -20875,7 +19525,7 @@ dir = 2 }, /area/storage/primary) -"aQP" = ( +"aPp" = ( /obj/structure/table, /obj/item/storage/toolbox/mechanical{ pixel_x = -2; @@ -20885,11 +19535,11 @@ dir = 8 }, /area/storage/primary) -"aQQ" = ( +"aPq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/storage/primary) -"aQR" = ( +"aPr" = ( /obj/structure/table, /obj/item/wirecutters, /obj/item/device/flashlight{ @@ -20913,7 +19563,7 @@ dir = 4 }, /area/storage/primary) -"aQS" = ( +"aPs" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" @@ -20921,7 +19571,7 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/ai_monitored/turret_protected/ai_upload) -"aQT" = ( +"aPt" = ( /obj/structure/table, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -20929,19 +19579,19 @@ /obj/item/aiModule/supplied/quarantine, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aQU" = ( +"aPu" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) -"aQV" = ( +"aPv" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aQW" = ( +"aPw" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -20953,7 +19603,7 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aQX" = ( +"aPx" = ( /obj/structure/table, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -20961,7 +19611,7 @@ /obj/item/aiModule/supplied/freeform, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aQY" = ( +"aPy" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -20969,7 +19619,7 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/ai_monitored/turret_protected/ai_upload) -"aQZ" = ( +"aPz" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -20979,7 +19629,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aRa" = ( +"aPA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/firealarm{ dir = 4; @@ -20994,11 +19644,11 @@ dir = 2 }, /area/hallway/primary/fore) -"aRb" = ( +"aPB" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/courtroom) -"aRc" = ( +"aPC" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Courtroom"; @@ -21006,12 +19656,12 @@ }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aRd" = ( +"aPD" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/security/courtroom) -"aRe" = ( +"aPE" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/poddoor/shutters/preopen{ @@ -21020,7 +19670,7 @@ }, /turf/open/floor/plating, /area/lawoffice) -"aRf" = ( +"aPF" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Law Office"; @@ -21032,7 +19682,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/lawoffice) -"aRg" = ( +"aPG" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "lawyer_shutters"; @@ -21040,7 +19690,7 @@ }, /turf/open/floor/plating, /area/lawoffice) -"aRh" = ( +"aPH" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -21057,35 +19707,31 @@ dir = 1 }, /area/crew_quarters/locker) -"aRi" = ( +"aPI" = ( /obj/structure/table, /obj/item/storage/pill_bottle/dice, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aRj" = ( +"aPJ" = ( /obj/structure/chair/stool{ pixel_y = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aRk" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/floorgrime, -/area/crew_quarters/locker) -"aRl" = ( +"aPK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/locker) -"aRm" = ( +"aPL" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aRn" = ( +"aPM" = ( /obj/structure/rack, /obj/item/storage/toolbox/mechanical{ pixel_x = -2; @@ -21102,14 +19748,14 @@ dir = 2 }, /area/crew_quarters/locker) -"aRo" = ( +"aPN" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plating, /area/hydroponics/garden) -"aRp" = ( +"aPO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -21117,7 +19763,7 @@ dir = 8 }, /area/hydroponics/garden) -"aRq" = ( +"aPP" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -21125,7 +19771,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aRr" = ( +"aPQ" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -21134,7 +19780,7 @@ }, /turf/open/floor/grass, /area/hydroponics/garden) -"aRs" = ( +"aPR" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -21146,13 +19792,13 @@ }, /turf/open/floor/grass, /area/hydroponics/garden) -"aRt" = ( +"aPS" = ( /obj/structure/rack, /obj/item/clothing/gloves/color/fyellow, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aRu" = ( +"aPT" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -21161,7 +19807,7 @@ icon_state = "panelscorched" }, /area/maintenance/starboard/fore) -"aRv" = ( +"aPU" = ( /obj/machinery/computer/atmos_alert, /obj/structure/sign/map/left{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; @@ -21174,7 +19820,7 @@ }, /turf/open/floor/plasteel/vault, /area/engine/engineering) -"aRw" = ( +"aPV" = ( /obj/machinery/computer/station_alert, /obj/structure/sign/map/right{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; @@ -21183,7 +19829,7 @@ }, /turf/open/floor/plasteel/vault, /area/engine/engineering) -"aRx" = ( +"aPW" = ( /obj/structure/cable/yellow{ icon_state = "0-4" }, @@ -21198,14 +19844,14 @@ /obj/machinery/modular_computer/console/preset/engineering, /turf/open/floor/plasteel/vault, /area/engine/engineering) -"aRy" = ( +"aPX" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plating, /area/engine/engineering) -"aRz" = ( +"aPY" = ( /obj/machinery/vending/engivend, /obj/structure/cable/yellow{ icon_state = "2-8" @@ -21213,20 +19859,12 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/engineering) -"aRA" = ( +"aPZ" = ( /obj/machinery/vending/tool, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/engineering) -"aRB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/engineering) -"aRC" = ( +"aQa" = ( /obj/structure/table, /obj/effect/turf_decal/delivery, /obj/item/clothing/glasses/meson, @@ -21239,7 +19877,7 @@ /obj/item/storage/belt/utility, /turf/open/floor/plasteel, /area/engine/engineering) -"aRD" = ( +"aQd" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -21248,85 +19886,28 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aRE" = ( +"aQe" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aRF" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aRG" = ( -/obj/machinery/camera{ - c_tag = "Supermatter Chamber"; - dir = 4; - network = list("Engine") - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"aRH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aRI" = ( -/obj/effect/turf_decal/stripes/line{ +"aQf" = ( +/obj/structure/chair{ dir = 4 }, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - filter_type = "n2" +/obj/machinery/status_display{ + pixel_y = 32 }, -/turf/open/floor/engine, -/area/engine/engineering) -"aRJ" = ( -/turf/closed/wall, -/area/hallway/secondary/entry) -"aRK" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - pixel_x = 25 - }, -/obj/item/storage/pod{ - pixel_x = -26 - }, -/obj/machinery/light/small{ - dir = 8 +/obj/machinery/computer/shuttle/pod{ + pixel_y = -32; + possible_destinations = "pod_lavaland3"; + shuttleId = "pod3" }, /turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_1) -"aRL" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"aRM" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; - name = "Construction Zone"; - req_access = null; - req_access_txt = "0"; - req_one_access_txt = "0" - }, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"aRN" = ( +/area/shuttle/pod_3) +"aQg" = ( /obj/machinery/door/poddoor{ density = 1; icon_state = "closed"; @@ -21340,7 +19921,7 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aRO" = ( +"aQh" = ( /obj/structure/plasticflaps, /obj/machinery/conveyor{ dir = 8; @@ -21348,19 +19929,19 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aRP" = ( +"aQi" = ( /obj/machinery/conveyor{ dir = 8; id = "QMLoad" }, /turf/open/floor/plating, /area/quartermaster/storage) -"aRQ" = ( +"aQj" = ( /obj/effect/landmark/start/cargo_technician, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aRR" = ( +"aQk" = ( /obj/structure/closet/crate{ icon_state = "crateopen" }, @@ -21372,22 +19953,22 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aRS" = ( +"aQl" = ( /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aRT" = ( +"aQm" = ( /obj/structure/disposalpipe/segment, /obj/effect/spawner/lootdrop/maintenance, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aRU" = ( +"aQn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aRV" = ( +"aQo" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -21410,10 +19991,10 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aRW" = ( +"aQp" = ( /turf/closed/wall, /area/quartermaster/qm) -"aRX" = ( +"aQq" = ( /obj/machinery/computer/security/mining{ dir = 4; network = list("MINE","AuxBase") @@ -21425,15 +20006,15 @@ dir = 8 }, /area/quartermaster/qm) -"aRY" = ( +"aQr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/quartermaster/qm) -"aRZ" = ( +"aQs" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/quartermaster/qm) -"aSa" = ( +"aQt" = ( /obj/structure/table, /obj/item/clipboard, /obj/item/stamp/qm, @@ -21455,7 +20036,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/qm) -"aSb" = ( +"aQu" = ( /obj/structure/closet/crate{ icon_state = "crateopen" }, @@ -21465,7 +20046,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/storage/primary) -"aSc" = ( +"aQv" = ( /obj/structure/table, /obj/item/storage/toolbox/mechanical{ pixel_x = -2; @@ -21476,7 +20057,7 @@ dir = 4 }, /area/storage/primary) -"aSd" = ( +"aQw" = ( /obj/structure/table, /obj/item/folder/yellow, /obj/item/folder/yellow, @@ -21485,11 +20066,11 @@ dir = 1 }, /area/storage/primary) -"aSe" = ( +"aQx" = ( /obj/machinery/holopad, /turf/open/floor/plasteel, /area/storage/primary) -"aSf" = ( +"aQy" = ( /obj/structure/table, /obj/item/device/radio/intercom{ dir = 4; @@ -21502,7 +20083,7 @@ dir = 4 }, /area/storage/primary) -"aSg" = ( +"aQz" = ( /obj/structure/table, /obj/item/aiModule/reset, /obj/machinery/light{ @@ -21517,7 +20098,7 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aSh" = ( +"aQA" = ( /obj/machinery/power/apc/highcap/five_k{ dir = 2; name = "Upload APC"; @@ -21534,7 +20115,7 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) -"aSi" = ( +"aQB" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -21543,7 +20124,7 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aSj" = ( +"aQC" = ( /obj/item/device/radio/intercom{ broadcasting = 1; frequency = 1447; @@ -21557,7 +20138,7 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) -"aSk" = ( +"aQD" = ( /obj/structure/table, /obj/machinery/light{ dir = 4 @@ -21571,7 +20152,7 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aSl" = ( +"aQE" = ( /obj/machinery/light{ dir = 8 }, @@ -21585,7 +20166,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aSm" = ( +"aQF" = ( /obj/structure/grille, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -21593,31 +20174,24 @@ /obj/structure/window/reinforced/tinted/fulltile, /turf/open/floor/plating, /area/security/courtroom) -"aSn" = ( +"aQG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /obj/machinery/vending/cigarette, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aSo" = ( +"aQH" = ( /obj/structure/chair{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aSp" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aSq" = ( +"aQJ" = ( /obj/machinery/vending/coffee, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aSr" = ( +"aQK" = ( /obj/machinery/light{ dir = 8 }, @@ -21631,7 +20205,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aSs" = ( +"aQL" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -21640,7 +20214,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aSt" = ( +"aQM" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, @@ -21654,7 +20228,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aSu" = ( +"aQN" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -21665,7 +20239,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aSv" = ( +"aQO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -21681,7 +20255,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aSw" = ( +"aQP" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -21695,7 +20269,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/locker) -"aSx" = ( +"aQQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -21710,7 +20284,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aSy" = ( +"aQR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -21719,7 +20293,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aSz" = ( +"aQS" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -21731,7 +20305,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aSA" = ( +"aQT" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -21740,7 +20314,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/locker) -"aSB" = ( +"aQU" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -21749,7 +20323,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aSC" = ( +"aQV" = ( /obj/structure/chair/stool{ pixel_y = 8 }, @@ -21758,7 +20332,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aSD" = ( +"aQW" = ( /obj/structure/table, /obj/item/clothing/head/soft/grey{ pixel_x = -2; @@ -21769,7 +20343,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aSE" = ( +"aQX" = ( /obj/structure/table, /obj/item/razor{ pixel_y = 5 @@ -21779,7 +20353,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aSF" = ( +"aQY" = ( /obj/structure/table, /obj/item/device/paicard, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -21787,14 +20361,14 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aSG" = ( +"aQZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aSH" = ( +"aRa" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/costume, /obj/effect/spawner/lootdrop/costume, @@ -21813,7 +20387,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aSI" = ( +"aRb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -21826,28 +20400,28 @@ dir = 10 }, /area/hydroponics/garden) -"aSJ" = ( +"aRc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/plasteel/neutral/side, /area/hydroponics/garden) -"aSK" = ( +"aRd" = ( /turf/open/floor/plasteel/neutral/side, /area/hydroponics/garden) -"aSL" = ( +"aRe" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side, /area/hydroponics/garden) -"aSM" = ( +"aRf" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/neutral/side{ dir = 6 }, /area/hydroponics/garden) -"aSN" = ( +"aRg" = ( /obj/machinery/door/firedoor/border_only/closed{ dir = 8; name = "Animal Pen B"; @@ -21855,21 +20429,14 @@ }, /turf/open/floor/grass, /area/hydroponics/garden) -"aSO" = ( +"aRh" = ( /mob/living/simple_animal/cow{ name = "Betsy"; real_name = "Betsy" }, /turf/open/floor/grass, /area/hydroponics/garden) -"aSP" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/easel, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aSQ" = ( +"aRi" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -21877,7 +20444,7 @@ /obj/item/cigbutt, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aSR" = ( +"aRj" = ( /obj/effect/landmark/start/station_engineer, /obj/machinery/light{ dir = 8 @@ -21893,7 +20460,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aSS" = ( +"aRk" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -21905,7 +20472,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aST" = ( +"aRl" = ( /obj/structure/cable{ icon_state = "2-4" }, @@ -21917,14 +20484,14 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aSU" = ( +"aRm" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/plating, /area/engine/engineering) -"aSV" = ( +"aRn" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -21936,7 +20503,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aSW" = ( +"aRo" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -21945,7 +20512,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aSX" = ( +"aRp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -21960,7 +20527,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aSY" = ( +"aRq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -21974,7 +20541,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aSZ" = ( +"aRr" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -21984,86 +20551,28 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plasteel, /area/engine/engineering) -"aTa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"aTb" = ( +"aRv" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 5 }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aTc" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/item/crowbar, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"aTd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aTe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"aTf" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aTg" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/power/emitter/anchored{ - dir = 1; - state = 2 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aTh" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/power/emitter/anchored{ - dir = 1; - state = 2 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aTi" = ( +"aRy" = ( /turf/closed/wall/r_wall, /area/aisat) -"aTj" = ( +"aRz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/aisat) -"aTk" = ( +"aRA" = ( +/turf/closed/wall, +/area/hallway/secondary/entry) +"aRB" = ( /obj/structure/shuttle/engine/propulsion/burst, /turf/closed/wall/mineral/titanium, /area/shuttle/pod_1) -"aTl" = ( +"aRC" = ( /obj/machinery/door/airlock/titanium{ name = "Escape Pod Airlock" }, @@ -22075,7 +20584,7 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/pod_1) -"aTm" = ( +"aRD" = ( /obj/machinery/light{ dir = 8 }, @@ -22084,57 +20593,12 @@ dir = 9 }, /area/construction/mining/aux_base) -"aTn" = ( +"aRE" = ( /turf/open/floor/plasteel/yellow/side{ dir = 1 }, /area/construction/mining/aux_base) -"aTo" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/construction/mining/aux_base) -"aTp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/construction/mining/aux_base) -"aTq" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/construction/mining/aux_base) -"aTr" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/construction/mining/aux_base) -"aTs" = ( -/obj/structure/rack, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/device/assault_pod/mining, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/construction/mining/aux_base) -"aTt" = ( +"aRF" = ( /obj/structure/table, /obj/item/stack/sheet/metal/fifty, /obj/item/stack/sheet/metal/fifty, @@ -22147,7 +20611,10 @@ dir = 5 }, /area/construction/mining/aux_base) -"aTu" = ( +"aRG" = ( +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aRH" = ( /obj/machinery/conveyor{ dir = 1; id = "QMLoad"; @@ -22155,14 +20622,14 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aTv" = ( +"aRI" = ( /obj/structure/disposalpipe/segment, /obj/structure/chair/office/dark{ dir = 4 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aTw" = ( +"aRJ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -22181,7 +20648,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aTx" = ( +"aRK" = ( /obj/machinery/computer/cargo{ dir = 4 }, @@ -22189,7 +20656,7 @@ dir = 10 }, /area/quartermaster/qm) -"aTy" = ( +"aRL" = ( /obj/structure/chair/office/dark{ dir = 8 }, @@ -22206,7 +20673,7 @@ dir = 2 }, /area/quartermaster/qm) -"aTz" = ( +"aRM" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -22215,7 +20682,7 @@ dir = 2 }, /area/quartermaster/qm) -"aTA" = ( +"aRN" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -22225,17 +20692,7 @@ dir = 2 }, /area/quartermaster/qm) -"aTB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"aTC" = ( +"aRO" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1; @@ -22260,32 +20717,32 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/storage/primary) -"aTD" = ( +"aRP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plasteel, /area/storage/primary) -"aTE" = ( +"aRQ" = ( /obj/structure/disposalpipe/junction{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/storage/primary) -"aTF" = ( +"aRR" = ( /obj/structure/disposalpipe/segment{ dir = 10 }, /turf/open/floor/plasteel, /area/storage/primary) -"aTG" = ( +"aRS" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/brown{ dir = 4 }, /area/storage/primary) -"aTH" = ( +"aRT" = ( /obj/machinery/flasher{ id = "AI"; pixel_y = -24 @@ -22295,19 +20752,19 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aTI" = ( +"aRU" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aTJ" = ( +"aRV" = ( /obj/machinery/porta_turret/ai{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aTK" = ( +"aRW" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -22316,7 +20773,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aTL" = ( +"aRX" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/centcom{ name = "Courtroom"; @@ -22324,18 +20781,25 @@ }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aTM" = ( +"aRY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aTN" = ( +"aRZ" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=16-Fore"; location = "15-Court" }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aTO" = ( +"aSa" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aSb" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -22344,38 +20808,38 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aTP" = ( +"aSc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/locker) -"aTQ" = ( +"aSd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aTR" = ( +"aSe" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/crew_quarters/locker) -"aTS" = ( +"aSf" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aTT" = ( +"aSg" = ( /obj/machinery/holopad, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aTU" = ( +"aSh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/locker) -"aTV" = ( +"aSi" = ( /obj/structure/rack, /obj/item/storage/briefcase, /obj/item/storage/briefcase{ @@ -22386,7 +20850,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aTW" = ( +"aSj" = ( /obj/structure/table, /obj/item/cultivator, /obj/item/hatchet, @@ -22400,7 +20864,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aTX" = ( +"aSk" = ( /obj/structure/table, /obj/item/hatchet, /obj/item/cultivator, @@ -22412,7 +20876,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aTY" = ( +"aSl" = ( /obj/structure/table, /obj/item/reagent_containers/food/snacks/grown/wheat, /obj/item/reagent_containers/food/snacks/grown/watermelon, @@ -22429,7 +20893,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aTZ" = ( +"aSm" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -22438,7 +20902,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aUa" = ( +"aSn" = ( /obj/item/storage/bag/plants/portaseeder, /obj/structure/table, /obj/machinery/light, @@ -22448,7 +20912,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aUb" = ( +"aSo" = ( /obj/item/book/manual/wiki/engineering_hacking{ pixel_x = 4; pixel_y = 5 @@ -22460,7 +20924,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aUc" = ( +"aSp" = ( /obj/machinery/power/terminal, /obj/structure/cable, /obj/structure/extinguisher_cabinet{ @@ -22471,7 +20935,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aUd" = ( +"aSq" = ( /obj/machinery/power/terminal, /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ @@ -22479,7 +20943,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aUe" = ( +"aSr" = ( /obj/machinery/power/terminal, /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ @@ -22487,7 +20951,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aUf" = ( +"aSs" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ icon_state = "1-2" @@ -22503,7 +20967,7 @@ dir = 1 }, /area/engine/engineering) -"aUg" = ( +"aSt" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -22515,7 +20979,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aUh" = ( +"aSu" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -22527,7 +20991,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aUi" = ( +"aSv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -22538,7 +21002,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aUj" = ( +"aSw" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -22547,7 +21011,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aUk" = ( +"aSx" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -22557,7 +21021,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aUl" = ( +"aSz" = ( /obj/structure/cable{ icon_state = "1-4" }, @@ -22566,7 +21030,7 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aUm" = ( +"aSA" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -22578,148 +21042,42 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aUn" = ( +"aSB" = ( /obj/structure/cable{ icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 }, -/turf/open/floor/engine, +/turf/open/floor/plasteel, /area/engine/engineering) -"aUo" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aUp" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/meter, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ +"aSD" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/engine, -/area/engine/engineering) -"aUq" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aUr" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aUs" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Cooling Loop Bypass" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aUt" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aUu" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aUv" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aUw" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aUx" = ( +/turf/open/space, +/area/space/nearstation) +"aSE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /turf/closed/wall/r_wall, /area/aisat) -"aUy" = ( +"aSF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/closed/wall/r_wall, /area/aisat) -"aUz" = ( +"aSG" = ( /obj/structure/window/reinforced{ dir = 8 }, /obj/structure/window/reinforced, /turf/open/space, /area/space/nearstation) -"aUA" = ( +"aSH" = ( /obj/structure/chair{ dir = 4 }, @@ -22730,61 +21088,20 @@ icon_state = "platingdmg1" }, /area/hallway/secondary/entry) -"aUB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aUC" = ( +"aSI" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/hallway/secondary/entry) -"aUD" = ( +"aSJ" = ( /obj/machinery/computer/shuttle/mining, /turf/open/floor/plasteel/yellow/side{ dir = 10 }, /area/construction/mining/aux_base) -"aUE" = ( +"aSK" = ( /turf/open/floor/plasteel/yellow/side, /area/construction/mining/aux_base) -"aUF" = ( -/obj/machinery/camera{ - c_tag = "Auxillary Base Construction"; - dir = 1 - }, -/obj/machinery/button/door{ - id = "aux_base_shutters"; - name = "Public Shutters Control"; - pixel_y = -24; - req_access_txt = "0"; - req_one_access_txt = "32;47;48" - }, -/turf/open/floor/plasteel/yellow/side, -/area/construction/mining/aux_base) -"aUG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/yellow/side, -/area/construction/mining/aux_base) -"aUH" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for the Auxillary Mining Base."; - dir = 1; - name = "Auxillary Base Monitor"; - network = list("AuxBase"); - pixel_y = -28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/yellow/side, -/area/construction/mining/aux_base) -"aUI" = ( +"aSL" = ( /obj/structure/cable/yellow{ icon_state = "0-8" }, @@ -22796,14 +21113,14 @@ }, /turf/open/floor/plasteel/yellow/side, /area/construction/mining/aux_base) -"aUJ" = ( +"aSM" = ( /obj/machinery/airalarm{ dir = 1; pixel_y = -22 }, /turf/open/floor/plasteel/yellow/side, /area/construction/mining/aux_base) -"aUK" = ( +"aSN" = ( /obj/structure/table, /obj/item/stack/sheet/plasteel{ amount = 10 @@ -22814,7 +21131,7 @@ dir = 6 }, /area/construction/mining/aux_base) -"aUL" = ( +"aSO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -22823,14 +21140,14 @@ dir = 2 }, /turf/open/floor/plating, -/area/maintenance/port/fore) -"aUM" = ( +/area/maintenance/port) +"aSP" = ( /obj/structure/closet/crate{ icon_state = "crateopen" }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aUN" = ( +"aSQ" = ( /obj/machinery/conveyor_switch/oneway{ convdir = 1; id = "QMLoad"; @@ -22841,7 +21158,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aUO" = ( +"aSR" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -22849,12 +21166,12 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aUP" = ( +"aSS" = ( /obj/effect/spawner/lootdrop/maintenance, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aUQ" = ( +"aST" = ( /obj/structure/closet/crate, /obj/structure/disposalpipe/segment, /obj/effect/spawner/lootdrop/maintenance{ @@ -22864,21 +21181,21 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aUR" = ( +"aSU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment{ dir = 5 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aUS" = ( +"aSV" = ( /obj/structure/disposalpipe/segment, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aUT" = ( +"aSW" = ( /obj/machinery/light{ dir = 4 }, @@ -22898,10 +21215,10 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aUU" = ( +"aSX" = ( /turf/closed/wall, /area/security/checkpoint/supply) -"aUV" = ( +"aSY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "2-4" @@ -22914,7 +21231,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aUW" = ( +"aSZ" = ( /obj/machinery/door/airlock/maintenance{ name = "Tool Storage Maintenance"; req_access_txt = "12" @@ -22924,7 +21241,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"aUX" = ( +"aTa" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -22935,13 +21252,13 @@ dir = 8 }, /area/storage/primary) -"aUY" = ( +"aTb" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/storage/primary) -"aUZ" = ( +"aTc" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 @@ -22951,7 +21268,7 @@ }, /turf/open/floor/plasteel, /area/storage/primary) -"aVa" = ( +"aTd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -22961,7 +21278,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/storage/primary) -"aVb" = ( +"aTe" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -22970,7 +21287,7 @@ }, /turf/open/floor/plasteel, /area/storage/primary) -"aVc" = ( +"aTf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -22983,7 +21300,7 @@ }, /turf/open/floor/plasteel, /area/storage/primary) -"aVd" = ( +"aTg" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, @@ -22994,14 +21311,14 @@ dir = 4 }, /area/storage/primary) -"aVe" = ( +"aTh" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/open/floor/plating, /area/storage/primary) -"aVf" = ( +"aTi" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/highsecurity{ locked = 0; @@ -23011,9 +21328,10 @@ /obj/structure/cable/yellow{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aVg" = ( +"aTj" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -23022,17 +21340,17 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aVh" = ( +"aTk" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, /area/security/courtroom) -"aVi" = ( +"aTl" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aVj" = ( +"aTm" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -23041,7 +21359,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aVk" = ( +"aTn" = ( /obj/machinery/newscaster{ pixel_y = -32 }, @@ -23053,29 +21371,19 @@ }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aVl" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aVm" = ( +"aTo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aVn" = ( +"aTp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aVo" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/locker) -"aVp" = ( +"aTq" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -23085,13 +21393,13 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aVq" = ( +"aTr" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aVr" = ( +"aTs" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -23103,7 +21411,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aVs" = ( +"aTt" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -23111,7 +21419,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aVt" = ( +"aTu" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -23122,7 +21430,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/locker) -"aVu" = ( +"aTv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -23138,7 +21446,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aVv" = ( +"aTw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -23157,7 +21465,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aVw" = ( +"aTx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -23166,7 +21474,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aVx" = ( +"aTy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -23178,19 +21486,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aVy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/crew_quarters/locker) -"aVz" = ( +"aTA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -23198,7 +21494,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aVA" = ( +"aTB" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -23206,7 +21502,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aVB" = ( +"aTC" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, @@ -23215,7 +21511,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aVC" = ( +"aTD" = ( /obj/structure/cable/yellow{ icon_state = "0-4" }, @@ -23225,7 +21521,7 @@ /obj/machinery/power/smes/engineering, /turf/open/floor/plasteel/vault, /area/engine/engineering) -"aVD" = ( +"aTE" = ( /obj/structure/cable/yellow{ icon_state = "0-8" }, @@ -23235,7 +21531,7 @@ /obj/machinery/power/smes/engineering, /turf/open/floor/plasteel/vault, /area/engine/engineering) -"aVE" = ( +"aTF" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -23244,7 +21540,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aVF" = ( +"aTG" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -23259,7 +21555,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aVG" = ( +"aTH" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -23269,7 +21565,7 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plasteel, /area/engine/engineering) -"aVH" = ( +"aTI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ dir = 2 @@ -23279,7 +21575,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aVI" = ( +"aTJ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -23295,7 +21591,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aVJ" = ( +"aTK" = ( /obj/structure/cable/white{ icon_state = "4-8" }, @@ -23304,7 +21600,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aVK" = ( +"aTM" = ( /obj/structure/cable/white{ icon_state = "4-8" }, @@ -23313,94 +21609,27 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aVL" = ( +"aTN" = ( /obj/structure/cable/white{ icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/engine, /area/engine/engineering) -"aVM" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Atmos to Loop" - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aVN" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/engine, -/area/engine/engineering) -"aVO" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Aft"; - dir = 1; - network = list("SS13","Engine") - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aVP" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Gas to Cold Loop"; - on = 1 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/engineering) -"aVQ" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/engineering) -"aVR" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/engineering) -"aVS" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Cold Loop to Gas"; - on = 1 - }, +"aTO" = ( /obj/effect/turf_decal/stripes/line{ - dir = 6 + dir = 4 }, -/turf/open/floor/engine, +/turf/open/floor/plasteel, /area/engine/engineering) -"aVT" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 +"aTQ" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aVU" = ( -/obj/item/wrench, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aVV" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"aTR" = ( /obj/structure/window/reinforced{ dir = 1; layer = 2.9 @@ -23415,7 +21644,7 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"aVW" = ( +"aTS" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -23430,21 +21659,21 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"aVX" = ( +"aTT" = ( /obj/structure/window/reinforced{ dir = 8 }, /obj/structure/lattice, /turf/open/space, /area/aisat) -"aVY" = ( +"aTU" = ( /obj/structure/lattice, /turf/open/space, /area/aisat) -"aVZ" = ( +"aTV" = ( /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai) -"aWa" = ( +"aTW" = ( /obj/machinery/power/smes{ charge = 5e+006 }, @@ -23453,21 +21682,21 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai) -"aWb" = ( +"aTX" = ( /obj/structure/cable{ icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai) -"aWc" = ( +"aTY" = ( /obj/structure/lattice, /obj/structure/window/reinforced{ dir = 4 }, /turf/open/space, /area/aisat) -"aWd" = ( +"aTZ" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 @@ -23482,7 +21711,7 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"aWe" = ( +"aUa" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -23499,42 +21728,17 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"aWf" = ( +"aUb" = ( /obj/structure/sign/warning/pods, /turf/closed/wall, /area/hallway/secondary/entry) -"aWg" = ( +"aUc" = ( /obj/machinery/door/airlock/external{ name = "Escape Pod One" }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"aWh" = ( -/obj/machinery/door/poddoor/shutters{ - id = "aux_base_shutters"; - name = "Auxillary Base Shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aWi" = ( -/obj/machinery/door/airlock/engineering{ - cyclelinkeddir = 1; - name = "Auxillary Base Construction"; - req_access_txt = "0"; - req_one_access_txt = "32;47;48" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aWj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/construction/mining/aux_base) -"aWk" = ( +"aUd" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, @@ -23544,10 +21748,10 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aWl" = ( +"aUe" = ( /turf/closed/wall, /area/quartermaster/storage) -"aWm" = ( +"aUf" = ( /obj/machinery/light{ dir = 8 }, @@ -23563,24 +21767,20 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aWn" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aWo" = ( +"aUg" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aWp" = ( +"aUh" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aWq" = ( +"aUi" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -23594,7 +21794,7 @@ /obj/machinery/rnd/protolathe/department/cargo, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aWr" = ( +"aUj" = ( /obj/structure/closet/secure_closet/security/cargo, /obj/machinery/light_switch{ pixel_x = -25 @@ -23606,7 +21806,7 @@ dir = 9 }, /area/security/checkpoint/supply) -"aWs" = ( +"aUk" = ( /obj/machinery/power/apc{ dir = 1; name = "Security Post - Cargo Bay APC"; @@ -23621,7 +21821,7 @@ dir = 1 }, /area/security/checkpoint/supply) -"aWt" = ( +"aUl" = ( /obj/item/screwdriver{ pixel_y = 10 }, @@ -23638,7 +21838,7 @@ dir = 1 }, /area/security/checkpoint/supply) -"aWu" = ( +"aUm" = ( /obj/structure/filingcabinet, /obj/structure/reagent_dispensers/peppertank{ pixel_x = 30 @@ -23647,25 +21847,7 @@ dir = 5 }, /area/security/checkpoint/supply) -"aWv" = ( -/obj/structure/table, -/obj/item/device/analyzer, -/obj/machinery/power/apc{ - dir = 2; - name = "Tool Storage APC"; - areastring = "/area/storage/primary"; - pixel_y = -27 - }, -/obj/structure/cable/yellow, -/obj/item/wrench, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/brown{ - dir = 10 - }, -/area/storage/primary) -"aWw" = ( +"aUo" = ( /obj/structure/table, /obj/item/storage/belt/utility, /obj/machinery/airalarm{ @@ -23677,13 +21859,13 @@ dir = 2 }, /area/storage/primary) -"aWx" = ( +"aUp" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plasteel/brown{ dir = 2 }, /area/storage/primary) -"aWy" = ( +"aUq" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -23692,14 +21874,14 @@ dir = 2 }, /area/storage/primary) -"aWz" = ( +"aUr" = ( /obj/structure/reagent_dispensers/fueltank, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/brown{ dir = 2 }, /area/storage/primary) -"aWA" = ( +"aUs" = ( /obj/structure/table, /obj/item/crowbar, /obj/item/device/assembly/prox_sensor{ @@ -23712,7 +21894,7 @@ dir = 2 }, /area/storage/primary) -"aWB" = ( +"aUt" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -23721,7 +21903,7 @@ dir = 2 }, /area/storage/primary) -"aWC" = ( +"aUu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/light_switch{ pixel_x = 28 @@ -23730,20 +21912,20 @@ dir = 6 }, /area/storage/primary) -"aWD" = ( +"aUv" = ( /turf/closed/wall/r_wall, /area/hallway/primary/central) -"aWE" = ( +"aUw" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" }, /turf/open/floor/plating, /area/hallway/primary/central) -"aWF" = ( +"aUx" = ( /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai_upload_foyer) -"aWG" = ( +"aUy" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/machinery/turretid{ control_area = "/area/ai_monitored/turret_protected/ai_upload"; @@ -23782,7 +21964,7 @@ dir = 6 }, /area/ai_monitored/turret_protected/ai_upload_foyer) -"aWH" = ( +"aUz" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -23791,7 +21973,7 @@ }, /turf/open/floor/plasteel/vault, /area/ai_monitored/turret_protected/ai_upload_foyer) -"aWI" = ( +"aUA" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/landmark/start/cyborg, /obj/machinery/light/small{ @@ -23815,7 +21997,7 @@ dir = 10 }, /area/ai_monitored/turret_protected/ai_upload_foyer) -"aWJ" = ( +"aUB" = ( /obj/structure/sign/directions/security{ desc = "A direction sign, pointing out which way the security department is."; dir = 1; @@ -23836,7 +22018,7 @@ }, /turf/closed/wall/r_wall, /area/hallway/primary/fore) -"aWK" = ( +"aUC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -23846,7 +22028,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aWL" = ( +"aUD" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -23856,7 +22038,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aWM" = ( +"aUE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -23866,7 +22048,7 @@ dir = 2 }, /area/hallway/primary/fore) -"aWN" = ( +"aUF" = ( /obj/structure/sign/directions/engineering{ desc = "A direction sign, pointing out which way the escape arm is."; icon_state = "direction_evac"; @@ -23886,7 +22068,7 @@ }, /turf/closed/wall, /area/security/courtroom) -"aWO" = ( +"aUG" = ( /obj/machinery/power/apc{ dir = 2; name = "Courtroom APC"; @@ -23901,7 +22083,7 @@ /obj/item/storage/fancy/donut_box, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aWP" = ( +"aUH" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -23910,7 +22092,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aWQ" = ( +"aUI" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -23919,7 +22101,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aWR" = ( +"aUJ" = ( /obj/structure/table, /obj/item/book/manual/wiki/security_space_law{ pixel_x = -3; @@ -23943,14 +22125,14 @@ }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aWS" = ( +"aUK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aWT" = ( +"aUL" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -23959,10 +22141,10 @@ dir = 2 }, /area/crew_quarters/locker) -"aWU" = ( +"aUM" = ( /turf/closed/wall, /area/crew_quarters/locker) -"aWV" = ( +"aUN" = ( /obj/machinery/cryopod{ tag = "icon-cryopod-open (EAST)"; icon_state = "cryopod-open"; @@ -23970,32 +22152,32 @@ }, /turf/open/floor/plasteel/vault, /area/crew_quarters/locker) -"aWW" = ( +"aUO" = ( /obj/machinery/computer/cryopod{ pixel_y = -24 }, /turf/open/floor/plasteel/vault, /area/crew_quarters/locker) -"aWX" = ( +"aUP" = ( /obj/machinery/cryopod, /turf/open/floor/plasteel/vault, /area/crew_quarters/locker) -"aWY" = ( +"aUQ" = ( /turf/open/floor/plasteel/vault, /area/crew_quarters/locker) -"aWZ" = ( +"aUR" = ( /obj/structure/closet/wardrobe/green, /turf/open/floor/plasteel/vault, /area/crew_quarters/locker) -"aXa" = ( +"aUS" = ( /obj/machinery/vending/clothing, /turf/open/floor/plasteel/vault, /area/crew_quarters/locker) -"aXb" = ( +"aUT" = ( /obj/structure/closet/wardrobe/mixed, /turf/open/floor/plasteel/vault, /area/crew_quarters/locker) -"aXc" = ( +"aUU" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -24004,7 +22186,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aXd" = ( +"aUV" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -24019,17 +22201,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aXe" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aXf" = ( +"aUW" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -24040,22 +22212,22 @@ icon_state = "platingdmg3" }, /area/maintenance/starboard/fore) -"aXg" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" +"aUX" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/under/assistantformal, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aXh" = ( +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/turf/open/floor/plasteel/vault, +/area/crew_quarters/dorms) +"aUY" = ( /obj/effect/turf_decal/delivery, /obj/structure/closet/wardrobe/engineering_yellow, /turf/open/floor/plasteel, /area/engine/engineering) -"aXi" = ( +"aUZ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -24068,7 +22240,7 @@ dir = 1 }, /area/engine/engineering) -"aXj" = ( +"aVa" = ( /obj/machinery/requests_console{ announcementConsole = 0; department = "Engineering"; @@ -24077,28 +22249,26 @@ }, /turf/closed/wall, /area/engine/engineering) -"aXk" = ( +"aVb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/delivery, /obj/structure/closet/secure_closet/engineering_welding, /turf/open/floor/plasteel, /area/engine/engineering) -"aXl" = ( +"aVc" = ( /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/effect/turf_decal/bot{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, /turf/open/floor/plasteel{ dir = 1 }, /area/engine/engineering) -"aXm" = ( +"aVd" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -24106,13 +22276,13 @@ /obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor/plasteel, /area/engine/engineering) -"aXn" = ( +"aVe" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/engine/engineering) -"aXo" = ( +"aVf" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -24123,38 +22293,14 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"aXp" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"aXq" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"aXr" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"aXs" = ( +"aVh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, /area/engine/engineering) -"aXt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"aXu" = ( +"aVk" = ( /obj/structure/window/reinforced{ dir = 1; layer = 2.9 @@ -24164,38 +22310,27 @@ }, /turf/open/space, /area/space/nearstation) -"aXv" = ( +"aVl" = ( /obj/machinery/porta_turret/ai{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai) -"aXw" = ( +"aVm" = ( /obj/machinery/status_display{ pixel_y = 32 }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai) -"aXx" = ( +"aVn" = ( /obj/structure/showcase/cyborg/old{ dir = 2; pixel_y = 20 }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai) -"aXy" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = -24; - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"aXz" = ( +"aVp" = ( /obj/machinery/camera{ c_tag = "AI Chamber - Fore"; dir = 2; @@ -24211,24 +22346,24 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai) -"aXA" = ( +"aVq" = ( /obj/machinery/status_display{ pixel_y = 32 }, /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai) -"aXB" = ( +"aVr" = ( /obj/machinery/porta_turret/ai{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai) -"aXC" = ( +"aVs" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/hallway/secondary/entry) -"aXD" = ( +"aVt" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-13" }, @@ -24237,13 +22372,13 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aXE" = ( +"aVu" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aXF" = ( +"aVv" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -24256,17 +22391,14 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aXG" = ( +"aVw" = ( /obj/structure/chair, -/obj/machinery/light{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aXH" = ( +"aVx" = ( /obj/structure/chair, /obj/machinery/camera{ c_tag = "Arrivals - Fore Arm - Far"; @@ -24278,7 +22410,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aXI" = ( +"aVy" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -24290,7 +22422,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aXJ" = ( +"aVz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -24299,15 +22431,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aXK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 4 - }, -/area/hallway/secondary/entry) -"aXL" = ( +"aVA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -24319,7 +22443,7 @@ dir = 1 }, /area/hallway/secondary/entry) -"aXM" = ( +"aVB" = ( /obj/machinery/light{ dir = 1 }, @@ -24333,19 +22457,7 @@ dir = 1 }, /area/hallway/secondary/entry) -"aXN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aXO" = ( +"aVC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -24362,7 +22474,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aXP" = ( +"aVD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -24378,7 +22490,7 @@ dir = 4 }, /area/hallway/secondary/entry) -"aXQ" = ( +"aVE" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -24392,51 +22504,33 @@ dir = 1 }, /area/hallway/secondary/entry) -"aXR" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/arrival{ - dir = 5 - }, -/area/hallway/secondary/entry) -"aXS" = ( +"aVG" = ( /obj/machinery/status_display{ supply_display = 1 }, /turf/closed/wall, /area/quartermaster/storage) -"aXT" = ( -/mob/living/simple_animal/sloth/citrus, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aXU" = ( +"aVH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/item/storage/firstaid/regular, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aXV" = ( +"aVJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /obj/effect/landmark/start/cargo_technician, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aXW" = ( +"aVK" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aXX" = ( +"aVL" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -24451,7 +22545,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aXY" = ( +"aVM" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -24462,7 +22556,7 @@ }, /turf/open/floor/plasteel, /area/security/checkpoint/supply) -"aXZ" = ( +"aVN" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -24470,19 +22564,19 @@ dir = 8 }, /area/security/checkpoint/supply) -"aYa" = ( +"aVO" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, /turf/open/floor/plasteel, /area/security/checkpoint/supply) -"aYb" = ( +"aVP" = ( /obj/structure/chair/office/dark, /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/landmark/start/depsec/supply, /turf/open/floor/plasteel, /area/security/checkpoint/supply) -"aYc" = ( +"aVQ" = ( /obj/item/device/radio/intercom{ dir = 4; name = "Station Intercom (General)"; @@ -24496,12 +22590,12 @@ dir = 4 }, /area/security/checkpoint/supply) -"aYd" = ( +"aVR" = ( /obj/effect/spawner/structure/window, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/storage/primary) -"aYe" = ( +"aVS" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Primary Tool Storage" @@ -24514,7 +22608,7 @@ dir = 1 }, /area/storage/primary) -"aYf" = ( +"aVT" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Primary Tool Storage" @@ -24524,26 +22618,26 @@ dir = 1 }, /area/storage/primary) -"aYg" = ( +"aVU" = ( /obj/structure/closet/firecloset, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"aYh" = ( +"aVV" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/structure/closet/emcloset, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"aYi" = ( +"aVW" = ( /obj/structure/closet/emcloset, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"aYj" = ( +"aVX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai_upload_foyer) -"aYk" = ( +"aVY" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/highsecurity{ name = "Secure Network Access"; @@ -24552,13 +22646,16 @@ /obj/structure/cable/yellow{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/vault, /area/ai_monitored/turret_protected/ai_upload_foyer) -"aYl" = ( +"aVZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai_upload_foyer) -"aYm" = ( +"aWa" = ( /obj/machinery/airalarm{ pixel_y = 23 }, @@ -24569,7 +22666,7 @@ dir = 9 }, /area/hallway/primary/central) -"aYn" = ( +"aWb" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -24577,7 +22674,7 @@ dir = 1 }, /area/hallway/primary/central) -"aYo" = ( +"aWc" = ( /obj/machinery/light{ dir = 1 }, @@ -24588,7 +22685,7 @@ dir = 1 }, /area/hallway/primary/central) -"aYp" = ( +"aWd" = ( /obj/machinery/camera{ c_tag = "Central Primary Hallway - Fore"; dir = 2; @@ -24598,30 +22695,30 @@ dir = 1 }, /area/hallway/primary/central) -"aYq" = ( +"aWe" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/red/corner{ dir = 1 }, /area/hallway/primary/central) -"aYr" = ( +"aWf" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aYs" = ( +"aWg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/corner{ dir = 4 }, /area/hallway/primary/central) -"aYt" = ( +"aWh" = ( /turf/open/floor/plasteel/red/corner{ dir = 4 }, /area/hallway/primary/central) -"aYu" = ( +"aWi" = ( /obj/structure/sign/map/left{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; @@ -24631,7 +22728,7 @@ dir = 1 }, /area/hallway/primary/central) -"aYv" = ( +"aWj" = ( /obj/machinery/light{ dir = 1 }, @@ -24644,7 +22741,7 @@ dir = 1 }, /area/hallway/primary/central) -"aYw" = ( +"aWk" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -24661,7 +22758,7 @@ dir = 5 }, /area/hallway/primary/central) -"aYx" = ( +"aWl" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -24674,7 +22771,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aYy" = ( +"aWm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -24685,7 +22782,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aYz" = ( +"aWn" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Crew Quarters Access" @@ -24693,15 +22790,15 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aYA" = ( +"aWo" = ( /obj/structure/sign/warning/pods, /turf/closed/wall, /area/crew_quarters/locker) -"aYB" = ( +"aWp" = ( /obj/machinery/vending/snack/random, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"aYC" = ( +"aWq" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -24709,7 +22806,7 @@ /obj/structure/disposalpipe/trunk, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"aYD" = ( +"aWr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -24718,7 +22815,7 @@ }, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"aYE" = ( +"aWs" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, @@ -24730,7 +22827,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aYF" = ( +"aWt" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -24742,19 +22839,19 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aYG" = ( +"aWu" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, /turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aYH" = ( +/area/maintenance/starboard) +"aWv" = ( /turf/closed/wall, /area/storage/tech) -"aYI" = ( +"aWw" = ( /turf/closed/wall/r_wall, /area/crew_quarters/heads/chief) -"aYJ" = ( +"aWx" = ( /obj/machinery/keycard_auth{ pixel_x = -25; pixel_y = 25 @@ -24768,7 +22865,7 @@ /obj/machinery/computer/apc_control, /turf/open/floor/plasteel/vault, /area/crew_quarters/heads/chief) -"aYK" = ( +"aWy" = ( /obj/machinery/requests_console{ announcementConsole = 1; department = "Chief Engineer's Desk"; @@ -24779,18 +22876,18 @@ /obj/machinery/computer/card/minor/ce, /turf/open/floor/plasteel/vault, /area/crew_quarters/heads/chief) -"aYL" = ( +"aWz" = ( /obj/machinery/ai_status_display{ pixel_y = 32 }, /obj/machinery/computer/station_alert, /turf/open/floor/plasteel/vault, /area/crew_quarters/heads/chief) -"aYM" = ( +"aWA" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/crew_quarters/heads/chief) -"aYN" = ( +"aWB" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -24809,11 +22906,11 @@ dir = 1 }, /area/crew_quarters/heads/chief) -"aYO" = ( +"aWC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/engine/engineering) -"aYP" = ( +"aWD" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering{ @@ -24827,64 +22924,24 @@ /obj/effect/turf_decal/bot{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel{ dir = 1 }, /area/engine/engineering) -"aYQ" = ( -/turf/open/floor/plating, -/area/maintenance/starboard) -"aYR" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"aYS" = ( +"aWH" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 10 }, /turf/open/floor/plating, /area/maintenance/starboard) -"aYT" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard) -"aYU" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space, -/area/space/nearstation) -"aYV" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"aYW" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/space, -/area/space/nearstation) -"aYX" = ( +"aWK" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 10 }, /turf/open/space, /area/space/nearstation) -"aYY" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"aYZ" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aZa" = ( +"aWL" = ( /obj/machinery/ai_status_display{ pixel_x = -32 }, @@ -24893,20 +22950,20 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"aZb" = ( +"aWM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"aZc" = ( +"aWN" = ( /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"aZd" = ( +"aWO" = ( /obj/machinery/ai_slipper{ uses = 10 }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"aZe" = ( +"aWP" = ( /obj/structure/cable{ icon_state = "1-4" }, @@ -24915,7 +22972,7 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"aZf" = ( +"aWQ" = ( /obj/structure/cable{ icon_state = "2-8" }, @@ -24924,7 +22981,7 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"aZg" = ( +"aWR" = ( /obj/machinery/light{ dir = 4 }, @@ -24933,33 +22990,36 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"aZh" = ( +"aWT" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aZi" = ( +"aWU" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aZj" = ( +"aWV" = ( /obj/structure/sign/warning/vacuum/external{ pixel_y = -32 }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aZk" = ( +"aWW" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aZl" = ( +"aWX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aZm" = ( +"aWY" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -24968,14 +23028,14 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aZn" = ( +"aWZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aZo" = ( +"aXa" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -24984,20 +23044,20 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aZp" = ( +"aXb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aZq" = ( +"aXc" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aZr" = ( +"aXd" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -25013,18 +23073,18 @@ dir = 4 }, /area/hallway/secondary/entry) -"aZs" = ( +"aXe" = ( /obj/machinery/conveyor{ dir = 4; id = "QMLoad" }, /turf/open/floor/plating, /area/quartermaster/storage) -"aZt" = ( +"aXf" = ( /obj/machinery/holopad, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aZu" = ( +"aXg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -25035,7 +23095,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aZv" = ( +"aXh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25045,7 +23105,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aZw" = ( +"aXi" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -25055,7 +23115,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aZx" = ( +"aXj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25064,7 +23124,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aZy" = ( +"aXk" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -25074,7 +23134,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aZz" = ( +"aXl" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -25093,13 +23153,13 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aZA" = ( +"aXm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/closed/wall, /area/security/checkpoint/supply) -"aZB" = ( +"aXn" = ( /obj/machinery/recharger{ pixel_y = 4 }, @@ -25111,7 +23171,7 @@ dir = 10 }, /area/security/checkpoint/supply) -"aZC" = ( +"aXo" = ( /obj/item/paper_bin{ pixel_x = 1; pixel_y = 9 @@ -25128,7 +23188,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/checkpoint/supply) -"aZD" = ( +"aXp" = ( /obj/item/book/manual/wiki/security_space_law, /obj/machinery/newscaster{ pixel_y = -32 @@ -25139,7 +23199,7 @@ /obj/structure/table/reinforced, /turf/open/floor/plasteel/red/side, /area/security/checkpoint/supply) -"aZE" = ( +"aXq" = ( /obj/machinery/computer/secure_data{ dir = 8 }, @@ -25147,7 +23207,7 @@ dir = 6 }, /area/security/checkpoint/supply) -"aZF" = ( +"aXr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -25159,7 +23219,7 @@ icon_state = "panelscorched" }, /area/maintenance/port/fore) -"aZG" = ( +"aXs" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -25172,7 +23232,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aZH" = ( +"aXt" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -25186,8 +23246,8 @@ dir = 4 }, /turf/open/floor/plating, -/area/maintenance/port/fore) -"aZI" = ( +/area/maintenance/port) +"aXu" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -25203,7 +23263,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aZJ" = ( +"aXv" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -25217,7 +23277,7 @@ dir = 1 }, /area/hallway/primary/central) -"aZK" = ( +"aXw" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -25231,7 +23291,7 @@ dir = 1 }, /area/hallway/primary/central) -"aZL" = ( +"aXx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25240,7 +23300,7 @@ dir = 1 }, /area/hallway/primary/central) -"aZM" = ( +"aXy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25251,7 +23311,7 @@ dir = 1 }, /area/hallway/primary/central) -"aZN" = ( +"aXz" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -25262,7 +23322,7 @@ dir = 1 }, /area/hallway/primary/central) -"aZO" = ( +"aXA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25271,7 +23331,7 @@ dir = 1 }, /area/hallway/primary/central) -"aZP" = ( +"aXB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25280,7 +23340,7 @@ dir = 1 }, /area/hallway/primary/central) -"aZQ" = ( +"aXC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25288,7 +23348,7 @@ dir = 1 }, /area/hallway/primary/central) -"aZR" = ( +"aXD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25299,7 +23359,7 @@ dir = 1 }, /area/hallway/primary/central) -"aZS" = ( +"aXE" = ( /obj/machinery/light/small{ dir = 1 }, @@ -25321,7 +23381,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZT" = ( +"aXF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25337,7 +23397,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZU" = ( +"aXG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25349,7 +23409,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZV" = ( +"aXH" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -25361,7 +23421,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZW" = ( +"aXI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25376,7 +23436,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZX" = ( +"aXJ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -25385,7 +23445,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZY" = ( +"aXK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25394,7 +23454,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZZ" = ( +"aXL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25403,7 +23463,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"baa" = ( +"aXM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25413,7 +23473,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bab" = ( +"aXN" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25425,7 +23485,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bac" = ( +"aXO" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -25434,7 +23494,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bad" = ( +"aXP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25443,7 +23503,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bae" = ( +"aXQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25452,13 +23512,13 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"baf" = ( +"aXR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bag" = ( +"aXS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25466,7 +23526,7 @@ dir = 4 }, /area/hallway/primary/central) -"bah" = ( +"aXT" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -25474,7 +23534,7 @@ dir = 4 }, /area/hallway/primary/central) -"bai" = ( +"aXU" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -25485,7 +23545,7 @@ dir = 4 }, /area/hallway/primary/central) -"baj" = ( +"aXV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25494,7 +23554,7 @@ dir = 4 }, /area/hallway/primary/central) -"bak" = ( +"aXW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25506,7 +23566,7 @@ dir = 4 }, /area/hallway/primary/central) -"bal" = ( +"aXX" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -25514,7 +23574,7 @@ dir = 4 }, /area/hallway/primary/central) -"bam" = ( +"aXY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25523,7 +23583,7 @@ dir = 4 }, /area/hallway/primary/central) -"ban" = ( +"aXZ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -25534,7 +23594,17 @@ dir = 4 }, /area/hallway/primary/central) -"bao" = ( +"aYa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aYb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25545,7 +23615,7 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/fore) -"bap" = ( +"aYc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25558,27 +23628,24 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"baq" = ( +"aYd" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/aisat) +"aYe" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"bar" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bas" = ( +"aYf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25590,16 +23657,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"bat" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bau" = ( +"aYg" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -25609,7 +23667,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"bav" = ( +"aYh" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -25621,46 +23679,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"baw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"bax" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bay" = ( -/obj/item/cigbutt, -/obj/machinery/power/apc{ - dir = 2; - name = "Starboard Bow Maintenance APC"; - areastring = "/area/maintenance/starboard/fore"; - pixel_y = -28 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"baz" = ( +"aYi" = ( /obj/structure/rack, /obj/item/storage/toolbox/electrical{ pixel_x = 1; @@ -25671,7 +23690,7 @@ /obj/item/device/multitool, /turf/open/floor/plasteel/dark, /area/storage/tech) -"baA" = ( +"aYj" = ( /obj/structure/rack, /obj/item/circuitboard/computer/pandemic{ pixel_x = -3; @@ -25689,7 +23708,7 @@ /obj/item/circuitboard/machine/mechfab, /turf/open/floor/plasteel/dark, /area/storage/tech) -"baB" = ( +"aYk" = ( /obj/structure/rack, /obj/item/circuitboard/computer/mining, /obj/item/circuitboard/machine/autolathe{ @@ -25702,7 +23721,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tech) -"baC" = ( +"aYl" = ( /obj/structure/rack, /obj/item/circuitboard/machine/telecomms/processor, /obj/item/circuitboard/machine/telecomms/receiver, @@ -25714,7 +23733,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tech) -"baD" = ( +"aYm" = ( /obj/structure/table, /obj/item/device/flashlight{ pixel_x = 1; @@ -25737,13 +23756,13 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tech) -"baE" = ( +"aYn" = ( /obj/structure/table, /obj/item/device/aicard, /obj/item/aiModule/reset, /turf/open/floor/plasteel/dark, /area/storage/tech) -"baF" = ( +"aYo" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -25754,12 +23773,12 @@ dir = 5 }, /area/crew_quarters/heads/chief) -"baG" = ( +"aYp" = ( /turf/open/floor/plasteel/vault{ dir = 5 }, /area/crew_quarters/heads/chief) -"baH" = ( +"aYq" = ( /obj/item/storage/secure/safe{ pixel_x = 6; pixel_y = 30 @@ -25773,7 +23792,7 @@ dir = 5 }, /area/crew_quarters/heads/chief) -"baI" = ( +"aYr" = ( /obj/structure/disposalpipe/segment, /obj/machinery/power/apc{ dir = 4; @@ -25796,7 +23815,7 @@ dir = 5 }, /area/crew_quarters/heads/chief) -"baJ" = ( +"aYs" = ( /obj/structure/sign/warning/securearea{ pixel_y = 32 }, @@ -25806,20 +23825,7 @@ /obj/item/clothing/glasses/meson/engine, /turf/open/floor/plasteel, /area/engine/engineering) -"baK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engine/engineering) -"baL" = ( +"aYt" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -25831,63 +23837,17 @@ /obj/item/clothing/glasses/meson/engine, /turf/open/floor/plasteel, /area/engine/engineering) -"baM" = ( +"aYu" = ( /turf/closed/wall, /area/security/checkpoint/engineering) -"baN" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/floor/plating, -/area/maintenance/starboard) -"baO" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard) -"baP" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"baQ" = ( +"aYx" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 4 }, /obj/structure/lattice, /turf/open/space, /area/space/nearstation) -"baR" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"baS" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"baT" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"baU" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"baV" = ( +"aYy" = ( /obj/machinery/camera{ c_tag = "AI Chamber - Port"; dir = 4; @@ -25902,7 +23862,7 @@ dir = 1 }, /area/ai_monitored/turret_protected/ai) -"baW" = ( +"aYz" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "AI Core shutters"; @@ -25910,14 +23870,14 @@ }, /turf/open/floor/plating, /area/ai_monitored/turret_protected/ai) -"baX" = ( +"aYA" = ( /obj/structure/cable{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"baY" = ( +"aYB" = ( /obj/structure/showcase/cyborg/old{ dir = 8; pixel_x = 9; @@ -25927,18 +23887,11 @@ dir = 4 }, /area/ai_monitored/turret_protected/ai) -"baZ" = ( +"aYC" = ( /obj/structure/sign/warning/docking, /turf/closed/wall, /area/hallway/secondary/entry) -"bba" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; - name = "Arrival Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bbb" = ( +"aYE" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -25947,7 +23900,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bbc" = ( +"aYF" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-05" }, @@ -25956,7 +23909,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bbd" = ( +"aYG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -25966,7 +23919,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bbe" = ( +"aYH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -25979,7 +23932,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bbf" = ( +"aYI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -25991,7 +23944,7 @@ dir = 4 }, /area/hallway/secondary/entry) -"bbg" = ( +"aYJ" = ( /obj/machinery/light_switch{ pixel_x = -38 }, @@ -26004,13 +23957,13 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bbh" = ( +"aYK" = ( /obj/effect/turf_decal/loading_area{ dir = 1 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bbi" = ( +"aYL" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -26019,13 +23972,13 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bbj" = ( +"aYM" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bbk" = ( +"aYN" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -26034,14 +23987,14 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bbl" = ( +"aYO" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/stripes/corner{ dir = 2 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bbm" = ( +"aYP" = ( /obj/machinery/camera{ c_tag = "Cargo Bay - Aft"; dir = 1; @@ -26052,7 +24005,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bbn" = ( +"aYQ" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line{ @@ -26060,7 +24013,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bbo" = ( +"aYR" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -26073,11 +24026,11 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bbp" = ( +"aYS" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/checkpoint/supply) -"bbq" = ( +"aYT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance{ @@ -26086,13 +24039,13 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"bbr" = ( +"aYU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/neutral/corner{ dir = 1 }, /area/hallway/primary/central) -"bbs" = ( +"aYV" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -26107,7 +24060,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbt" = ( +"aYW" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26116,14 +24069,13 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbu" = ( +"aYX" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbv" = ( +"aYY" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26136,27 +24088,21 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbw" = ( +"aYZ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbx" = ( +"aZa" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bby" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bbz" = ( +"aZb" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26165,14 +24111,14 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbA" = ( +"aZc" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbB" = ( +"aZd" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26182,7 +24128,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbC" = ( +"aZe" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26192,7 +24138,7 @@ /obj/machinery/holopad, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbD" = ( +"aZf" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -26201,7 +24147,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbE" = ( +"aZg" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26210,7 +24156,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbF" = ( +"aZh" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26219,7 +24165,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbG" = ( +"aZi" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26233,20 +24179,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/landmark/observer_start, -/obj/effect/turf_decal/plaque{ - icon_state = "L8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bbI" = ( +"aZk" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26255,7 +24188,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbJ" = ( +"aZl" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26264,7 +24197,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbK" = ( +"aZm" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26273,7 +24206,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbL" = ( +"aZn" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26282,7 +24215,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbM" = ( +"aZo" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26291,7 +24224,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbN" = ( +"aZp" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26301,7 +24234,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbO" = ( +"aZq" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26311,7 +24244,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbP" = ( +"aZr" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -26322,7 +24255,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbQ" = ( +"aZs" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light{ dir = 4 @@ -26334,10 +24267,10 @@ dir = 4 }, /area/hallway/primary/central) -"bbR" = ( +"aZt" = ( /turf/closed/wall, /area/storage/tools) -"bbS" = ( +"aZv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; @@ -26345,10 +24278,10 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"bbT" = ( +"aZw" = ( /turf/closed/wall/r_wall, /area/storage/tech) -"bbU" = ( +"aZx" = ( /obj/machinery/power/apc{ dir = 8; name = "Tech Storage APC"; @@ -26362,7 +24295,7 @@ dir = 8 }, /area/storage/tech) -"bbV" = ( +"aZy" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26370,7 +24303,7 @@ dir = 8 }, /area/storage/tech) -"bbW" = ( +"aZz" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -26379,7 +24312,7 @@ dir = 8 }, /area/storage/tech) -"bbX" = ( +"aZA" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -26387,7 +24320,7 @@ dir = 8 }, /area/storage/tech) -"bbY" = ( +"aZB" = ( /obj/structure/table, /obj/item/stack/cable_coil{ pixel_x = -3; @@ -26406,7 +24339,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tech) -"bbZ" = ( +"aZC" = ( /obj/machinery/button/door{ desc = "A remote control-switch for the engineering security doors."; id = "Engineering"; @@ -26429,27 +24362,27 @@ dir = 5 }, /area/crew_quarters/heads/chief) -"bca" = ( +"aZD" = ( /obj/structure/table/reinforced, /obj/item/device/flashlight/lamp, /turf/open/floor/plasteel/neutral/corner{ dir = 2 }, /area/crew_quarters/heads/chief) -"bcb" = ( +"aZE" = ( /obj/structure/table/reinforced, /obj/item/folder/yellow, /obj/item/stamp/ce, /obj/item/reagent_containers/pill/patch/silver_sulf, /turf/open/floor/plasteel/neutral/side, /area/crew_quarters/heads/chief) -"bcc" = ( +"aZF" = ( /obj/structure/table/reinforced, /obj/item/clipboard, /obj/item/paper/monitorkey, /turf/open/floor/plasteel/neutral/side, /area/crew_quarters/heads/chief) -"bcd" = ( +"aZG" = ( /obj/structure/table/reinforced, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high{ @@ -26461,7 +24394,7 @@ dir = 8 }, /area/crew_quarters/heads/chief) -"bce" = ( +"aZH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -26470,7 +24403,7 @@ dir = 5 }, /area/crew_quarters/heads/chief) -"bcf" = ( +"aZI" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -26486,7 +24419,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"bcg" = ( +"aZJ" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -26499,7 +24432,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"bch" = ( +"aZK" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/machinery/shower{ dir = 8 @@ -26509,7 +24442,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"bci" = ( +"aZL" = ( /obj/structure/filingcabinet, /obj/structure/reagent_dispensers/peppertank{ pixel_y = 30 @@ -26522,7 +24455,7 @@ dir = 9 }, /area/security/checkpoint/engineering) -"bcj" = ( +"aZM" = ( /obj/structure/table, /obj/item/device/radio/intercom{ dir = 4; @@ -26536,7 +24469,7 @@ dir = 1 }, /area/security/checkpoint/engineering) -"bck" = ( +"aZN" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -1; @@ -26550,51 +24483,14 @@ dir = 5 }, /area/security/checkpoint/engineering) -"bcl" = ( -/turf/closed/wall/r_wall, -/area/security/checkpoint/engineering) -"bcm" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 +"aZO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Library" }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bcn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bco" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 10 - }, -/turf/open/space, -/area/space/nearstation) -"bcp" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bcq" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space, -/area/space/nearstation) -"bcr" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"bcs" = ( +/turf/open/floor/wood, +/area/library) +"aZQ" = ( /obj/effect/landmark/start/ai/secondary, /obj/item/device/radio/intercom{ anyai = 1; @@ -26632,7 +24528,7 @@ }, /turf/open/floor/circuit/green, /area/ai_monitored/turret_protected/ai) -"bct" = ( +"aZR" = ( /obj/machinery/holopad, /obj/machinery/flasher{ id = "AI"; @@ -26643,54 +24539,21 @@ dir = 1 }, /area/ai_monitored/turret_protected/ai) -"bcu" = ( +"aZS" = ( /obj/machinery/ai_slipper{ uses = 10 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"bcv" = ( -/obj/machinery/turretid{ - icon_state = "control_stun"; - name = "AI Chamber turret control"; - pixel_x = 3; - pixel_y = -23 - }, -/obj/machinery/door/window{ - base_state = "leftsecure"; - dir = 8; - obj_integrity = 300; - icon_state = "leftsecure"; - name = "Primary AI Core Access"; - req_access_txt = "16" - }, -/obj/machinery/newscaster/security_unit{ - pixel_x = 4; - pixel_y = 33 - }, -/turf/open/floor/plasteel/vault{ - dir = 6 - }, -/area/ai_monitored/turret_protected/ai) -"bcw" = ( -/obj/machinery/requests_console{ - department = "AI"; - departmentType = 5; - pixel_x = 30; - pixel_y = 30 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = 23; - pixel_y = -23 - }, +"aZU" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/under/assistantformal, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, /turf/open/floor/plasteel/vault, -/area/ai_monitored/turret_protected/ai) -"bcx" = ( +/area/crew_quarters/locker) +"aZV" = ( /obj/machinery/door/window{ base_state = "rightsecure"; dir = 4; @@ -26708,7 +24571,7 @@ dir = 10 }, /area/ai_monitored/turret_protected/ai) -"bcy" = ( +"aZW" = ( /obj/machinery/ai_slipper{ uses = 10 }, @@ -26718,7 +24581,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"bcz" = ( +"aZX" = ( /obj/machinery/holopad, /obj/machinery/flasher{ id = "AI"; @@ -26729,7 +24592,7 @@ dir = 4 }, /area/ai_monitored/turret_protected/ai) -"bcA" = ( +"aZY" = ( /obj/effect/landmark/start/ai/secondary, /obj/item/device/radio/intercom{ anyai = 1; @@ -26767,28 +24630,28 @@ }, /turf/open/floor/circuit/green, /area/ai_monitored/turret_protected/ai) -"bcB" = ( +"aZZ" = ( /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"bcC" = ( +"baa" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bcD" = ( +"bab" = ( /obj/machinery/vending/cigarette, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bcE" = ( +"bac" = ( /obj/machinery/vending/coffee, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bcF" = ( +"bad" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -26798,7 +24661,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bcG" = ( +"bae" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26810,7 +24673,7 @@ dir = 4 }, /area/hallway/secondary/entry) -"bcH" = ( +"baf" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26820,7 +24683,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"bcI" = ( +"bag" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26828,15 +24691,25 @@ icon_state = "panelscorched" }, /area/maintenance/port/fore) -"bcJ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" +"bah" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/under/assistantformal, +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = 32 }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/turf/open/floor/plasteel/vault, +/area/crew_quarters/locker) +"bai" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 }, -/area/maintenance/port/fore) -"bcK" = ( +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"baj" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -26845,7 +24718,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"bcL" = ( +"bak" = ( /obj/machinery/door/airlock/maintenance{ name = "Cargo Bay Maintenance"; req_access_txt = "0"; @@ -26856,7 +24729,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"bcM" = ( +"bal" = ( /obj/item/device/radio/intercom{ broadcasting = 0; listening = 1; @@ -26869,14 +24742,14 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bcN" = ( +"bam" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bcO" = ( +"ban" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -26885,7 +24758,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bcP" = ( +"bao" = ( /obj/machinery/conveyor_switch/oneway{ id = "packageSort2"; pixel_x = -8; @@ -26896,7 +24769,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bcQ" = ( +"bap" = ( /obj/structure/rack, /obj/item/stack/packageWrap{ pixel_x = 2; @@ -26929,7 +24802,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bcR" = ( +"baq" = ( /obj/structure/rack, /obj/machinery/power/apc{ dir = 2; @@ -26950,14 +24823,14 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bcS" = ( +"bar" = ( /obj/structure/closet/wardrobe/cargotech, /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bcT" = ( +"bas" = ( /obj/structure/closet/wardrobe/cargotech, /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/stripes/line{ @@ -26965,10 +24838,10 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bcU" = ( +"bat" = ( /turf/closed/wall, /area/quartermaster/office) -"bcV" = ( +"bau" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, @@ -26980,7 +24853,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/office) -"bcW" = ( +"bav" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -26994,7 +24867,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/office) -"bcX" = ( +"baw" = ( /obj/item/stamp{ pixel_x = -3; pixel_y = 3 @@ -27020,14 +24893,14 @@ dir = 9 }, /area/quartermaster/office) -"bcY" = ( +"bax" = ( /obj/structure/table/reinforced, /obj/machinery/computer/stockexchange, /turf/open/floor/plasteel/brown{ dir = 5 }, /area/quartermaster/office) -"bcZ" = ( +"bay" = ( /obj/structure/sign/directions/engineering{ desc = "A direction sign, pointing out which way the Cargo department is."; icon_state = "direction_supply"; @@ -27036,12 +24909,12 @@ }, /turf/closed/wall, /area/quartermaster/office) -"bda" = ( +"baz" = ( /obj/machinery/computer/cargo/request, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/primary/port) -"bdb" = ( +"baA" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/machinery/status_display{ pixel_y = 32; @@ -27053,7 +24926,7 @@ dir = 1 }, /area/hallway/primary/port) -"bdc" = ( +"baB" = ( /obj/machinery/firealarm{ dir = 2; pixel_y = 24 @@ -27062,14 +24935,14 @@ dir = 1 }, /area/hallway/primary/port) -"bdd" = ( +"baC" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/brown{ dir = 1 }, /area/hallway/primary/port) -"bde" = ( +"baD" = ( /obj/machinery/airalarm{ pixel_y = 23 }, @@ -27082,10 +24955,10 @@ dir = 5 }, /area/hallway/primary/port) -"bdf" = ( +"baE" = ( /turf/closed/wall, /area/hallway/primary/port) -"bdg" = ( +"baF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/extinguisher_cabinet{ pixel_x = -27 @@ -27102,14 +24975,14 @@ dir = 1 }, /area/hallway/primary/central) -"bdh" = ( +"baG" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bdi" = ( +"baH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -27120,7 +24993,7 @@ dir = 2 }, /area/hallway/primary/central) -"bdj" = ( +"baI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -27131,7 +25004,7 @@ dir = 2 }, /area/hallway/primary/central) -"bdk" = ( +"baJ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -27148,7 +25021,7 @@ dir = 2 }, /area/hallway/primary/central) -"bdl" = ( +"baK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -27160,7 +25033,7 @@ dir = 2 }, /area/hallway/primary/central) -"bdm" = ( +"baL" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -27175,7 +25048,7 @@ dir = 2 }, /area/hallway/primary/central) -"bdn" = ( +"baM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -27190,7 +25063,7 @@ dir = 2 }, /area/hallway/primary/central) -"bdo" = ( +"baN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -27201,7 +25074,7 @@ dir = 2 }, /area/hallway/primary/central) -"bdp" = ( +"baO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -27216,7 +25089,7 @@ dir = 2 }, /area/hallway/primary/central) -"bdq" = ( +"baP" = ( /obj/machinery/firealarm{ dir = 1; pixel_y = -24 @@ -27228,7 +25101,7 @@ dir = 2 }, /area/hallway/primary/central) -"bdr" = ( +"baQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -27236,7 +25109,7 @@ dir = 2 }, /area/hallway/primary/central) -"bds" = ( +"baR" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -27244,14 +25117,14 @@ dir = 2 }, /area/hallway/primary/central) -"bdt" = ( +"baS" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/machinery/holopad, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bdu" = ( +"baT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -27259,7 +25132,7 @@ dir = 8 }, /area/hallway/primary/central) -"bdv" = ( +"baU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -27271,7 +25144,7 @@ dir = 8 }, /area/hallway/primary/central) -"bdw" = ( +"baV" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -27284,7 +25157,7 @@ dir = 8 }, /area/hallway/primary/central) -"bdx" = ( +"baW" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -27293,7 +25166,7 @@ dir = 8 }, /area/hallway/primary/central) -"bdy" = ( +"baX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -27306,7 +25179,7 @@ dir = 8 }, /area/hallway/primary/central) -"bdz" = ( +"baY" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -27317,7 +25190,7 @@ dir = 8 }, /area/hallway/primary/central) -"bdA" = ( +"baZ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -27332,7 +25205,7 @@ dir = 8 }, /area/hallway/primary/central) -"bdB" = ( +"bba" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -27342,7 +25215,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bdC" = ( +"bbb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/camera{ c_tag = "Central Primary Hallway - Fore - Starboard Corner"; @@ -27353,13 +25226,13 @@ dir = 4 }, /area/hallway/primary/central) -"bdD" = ( +"bbc" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plasteel/yellow/side{ dir = 9 }, /area/storage/tools) -"bdE" = ( +"bbd" = ( /obj/machinery/power/apc{ dir = 1; name = "Auxiliary Tool Storage APC"; @@ -27376,7 +25249,7 @@ dir = 1 }, /area/storage/tools) -"bdF" = ( +"bbe" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -27384,7 +25257,7 @@ dir = 1 }, /area/storage/tools) -"bdG" = ( +"bbf" = ( /obj/structure/closet/toolcloset, /obj/item/device/radio/intercom{ freerange = 0; @@ -27396,20 +25269,20 @@ dir = 1 }, /area/storage/tools) -"bdH" = ( +"bbg" = ( /obj/structure/closet/toolcloset, /turf/open/floor/plasteel/yellow/side{ dir = 5 }, /area/storage/tools) -"bdI" = ( +"bbh" = ( /obj/effect/decal/cleanable/cobweb, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"bdJ" = ( +"bbi" = ( /obj/effect/landmark/xeno_spawn, /obj/item/cigbutt, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -27420,7 +25293,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"bdK" = ( +"bbj" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -27429,7 +25302,7 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/fore) -"bdL" = ( +"bbk" = ( /obj/structure/rack, /obj/item/circuitboard/computer/borgupload{ pixel_x = -1; @@ -27441,7 +25314,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tech) -"bdM" = ( +"bbl" = ( /obj/machinery/camera{ c_tag = "Secure Tech Storage"; dir = 8 @@ -27459,7 +25332,7 @@ dir = 8 }, /area/storage/tech) -"bdN" = ( +"bbm" = ( /obj/machinery/light{ dir = 8 }, @@ -27467,7 +25340,7 @@ dir = 8 }, /area/storage/tech) -"bdO" = ( +"bbn" = ( /obj/structure/rack, /obj/item/circuitboard/computer/cloning, /obj/item/circuitboard/computer/med_data{ @@ -27480,19 +25353,10 @@ /obj/item/circuitboard/machine/smoke_machine, /turf/open/floor/plasteel/dark, /area/storage/tech) -"bdP" = ( -/obj/structure/rack, -/obj/item/circuitboard/computer/secure_data{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/circuitboard/computer/security{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bdQ" = ( +"bbo" = ( +/turf/closed/wall, +/area/maintenance/solars/port/fore) +"bbp" = ( /obj/structure/rack, /obj/item/circuitboard/computer/powermonitor{ pixel_x = -2; @@ -27509,7 +25373,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/dark, /area/storage/tech) -"bdR" = ( +"bbq" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -27517,13 +25381,13 @@ dir = 8 }, /area/storage/tech) -"bdS" = ( +"bbr" = ( /obj/structure/table, /obj/item/electronics/apc, /obj/item/electronics/airlock, /turf/open/floor/plasteel/dark, /area/storage/tech) -"bdT" = ( +"bbs" = ( /obj/machinery/button/door{ id = "transittube"; name = "Transit Tube Lockdown"; @@ -27543,7 +25407,7 @@ dir = 5 }, /area/crew_quarters/heads/chief) -"bdU" = ( +"bbt" = ( /obj/item/cartridge/engineering{ pixel_x = 4; pixel_y = 5 @@ -27561,7 +25425,7 @@ dir = 4 }, /area/crew_quarters/heads/chief) -"bdV" = ( +"bbu" = ( /obj/effect/landmark/start/chief_engineer, /obj/structure/chair/office/light{ dir = 1; @@ -27571,13 +25435,13 @@ dir = 8 }, /area/crew_quarters/heads/chief) -"bdW" = ( +"bbv" = ( /obj/machinery/holopad, /turf/open/floor/plasteel/neutral{ dir = 8 }, /area/crew_quarters/heads/chief) -"bdX" = ( +"bbw" = ( /obj/structure/table/reinforced, /obj/item/paper_bin{ pixel_x = -3; @@ -27588,7 +25452,7 @@ dir = 8 }, /area/crew_quarters/heads/chief) -"bdY" = ( +"bbx" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -27607,7 +25471,7 @@ dir = 5 }, /area/crew_quarters/heads/chief) -"bdZ" = ( +"bby" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -27619,7 +25483,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"bea" = ( +"bbz" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -27630,7 +25494,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/engine/engineering) -"beb" = ( +"bbA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -27647,7 +25511,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"bec" = ( +"bbB" = ( /obj/item/screwdriver{ pixel_y = 10 }, @@ -27662,14 +25526,14 @@ dir = 8 }, /area/security/checkpoint/engineering) -"bed" = ( +"bbC" = ( /obj/structure/chair/office/dark{ dir = 4 }, /obj/effect/landmark/start/depsec/engineering, /turf/open/floor/plasteel, /area/security/checkpoint/engineering) -"bee" = ( +"bbD" = ( /obj/structure/table, /obj/item/book/manual/wiki/security_space_law, /obj/machinery/light{ @@ -27684,24 +25548,7 @@ dir = 4 }, /area/security/checkpoint/engineering) -"bef" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/starboard) -"beg" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"beh" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"bei" = ( -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bej" = ( +"bbF" = ( /obj/structure/showcase/cyborg/old{ dir = 4; pixel_x = -9; @@ -27711,7 +25558,9501 @@ dir = 1 }, /area/ai_monitored/turret_protected/ai) +"bbG" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/clothing/under/assistantformal, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/turf/open/floor/plasteel/vault, +/area/crew_quarters/locker) +"bbH" = ( +/obj/machinery/camera{ + c_tag = "AI Chamber - Starboard"; + dir = 8; + network = list("RD") + }, +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/ai_monitored/turret_protected/ai) +"bbI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bbJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/secondary/entry) +"bbK" = ( +/turf/closed/wall, +/area/security/checkpoint/customs) +"bbL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bbM" = ( +/obj/item/stack/sheet/cardboard, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bbN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/office) +"bbO" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/conveyor{ + backwards = 1; + dir = 2; + forwards = 2; + id = "packageSort2" + }, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bbP" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/quartermaster/sorting) +"bbQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/power/apc{ + dir = 8; + name = "Cargo Office APC"; + areastring = "/area/quartermaster/office"; + pixel_x = -24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/brown{ + dir = 9 + }, +/area/quartermaster/office) +"bbR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/office) +"bbS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/status_display{ + pixel_y = 32; + supply_display = 1 + }, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/office) +"bbT" = ( +/turf/open/floor/plasteel/brown/corner{ + dir = 1 + }, +/area/quartermaster/office) +"bbU" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/office) +"bbV" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + dir = 8; + name = "Cargo Desk"; + req_access_txt = "50" + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bbW" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbY" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bca" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Cargo - Foyer"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/hallway/primary/port) +"bcb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -29 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bcc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"bcd" = ( +/turf/closed/wall, +/area/janitor) +"bce" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_access_txt = "26" + }, +/turf/open/floor/plasteel, +/area/janitor) +"bcf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/janitor) +"bcg" = ( +/turf/closed/wall, +/area/maintenance/central) +"bch" = ( +/obj/machinery/door/airlock{ + name = "Central Emergency Storage"; + req_access_txt = "0" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bci" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/central) +"bcj" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain/private) +"bck" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain/private) +"bcl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bcm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bcn" = ( +/obj/structure/rack, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/clothing/suit/hazardvest, +/obj/item/device/multitool, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/storage/tools) +"bco" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/storage/tools) +"bcp" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/storage/tools) +"bcq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/storage/tools) +"bcr" = ( +/obj/machinery/camera{ + c_tag = "Auxiliary Tool Storage"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 4 + }, +/area/storage/tools) +"bcs" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bct" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bcu" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/storage/tech) +"bcv" = ( +/obj/structure/rack, +/obj/item/circuitboard/computer/crew{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/circuitboard/computer/card{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/circuitboard/computer/communications{ + pixel_x = 5; + pixel_y = -5 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bcw" = ( +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bcx" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage"; + req_access_txt = "19;23" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bcy" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bcz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bcA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bcB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bcC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bcD" = ( +/obj/structure/table, +/obj/item/screwdriver{ + pixel_y = 16 + }, +/obj/item/wirecutters, +/obj/item/device/multitool, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bcE" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bcF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/crew_quarters/heads/chief) +"bcG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/crew_quarters/heads/chief) +"bcH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/heads/chief) +"bcI" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bcJ" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bcK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engine/engineering) +"bcL" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Engineering Security APC"; + areastring = "/area/security/checkpoint/engineering"; + pixel_x = -24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/checkpoint/engineering) +"bcM" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bcN" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for monitoring the engine."; + dir = 8; + name = "Engine Monitor"; + network = list("Engine"); + pixel_x = 32 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/checkpoint/engineering) +"bcO" = ( +/obj/structure/easel, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"bcP" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"bcQ" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"bcV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/secondary/entry) +"bcW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/checkpoint/customs) +"bcX" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/checkpoint/customs) +"bcY" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Customs APC"; + areastring = "/area/security/checkpoint/customs"; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/customs) +"bcZ" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/machinery/computer/security, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/customs) +"bda" = ( +/obj/machinery/computer/card, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/obj/machinery/camera{ + c_tag = "Customs Checkpoint"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/customs) +"bdb" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/newscaster/security_unit{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/customs) +"bdc" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 + }, +/obj/structure/closet/secure_closet/security, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/checkpoint/customs) +"bdd" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"bde" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bdf" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/closed/wall, +/area/quartermaster/sorting) +"bdg" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bdh" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bdi" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bdj" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/structure/plasticflaps{ + opacity = 0 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bdk" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bdl" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/office) +"bdm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bdn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bdo" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bdp" = ( +/obj/machinery/computer/cargo{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/office) +"bdq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"bdr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bds" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdv" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/hallway/primary/port) +"bdw" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/hallway/primary/port) +"bdx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/brown/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bdy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + sortType = 22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"bdA" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light_switch{ + pixel_x = 8; + pixel_y = 30 + }, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bdB" = ( +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bdC" = ( +/obj/structure/closet/l3closet/janitor, +/obj/machinery/airalarm{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bdD" = ( +/obj/structure/closet/jcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bdE" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/central) +"bdF" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bdG" = ( +/turf/closed/wall/r_wall, +/area/maintenance/central) +"bdH" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bdI" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/wood, +/obj/item/pinpointer/nuke, +/obj/item/disk/nuclear, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bdJ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/security/wooden_tv, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bdK" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bdL" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bdM" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/filingcabinet{ + pixel_x = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bdN" = ( +/obj/machinery/light_switch{ + pixel_x = 28 + }, +/obj/structure/dresser, +/obj/item/storage/secure/safe{ + pixel_x = 6; + pixel_y = 28 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bdO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bdP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bdR" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 10 + }, +/area/storage/tools) +"bdS" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/storage/box/lights/mixed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/yellow/side{ + dir = 2 + }, +/area/storage/tools) +"bdT" = ( +/turf/open/floor/plasteel/yellow/side{ + dir = 2 + }, +/area/storage/tools) +"bdU" = ( +/obj/structure/rack, +/obj/item/electronics/apc, +/obj/item/electronics/airlock, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/yellow/side{ + dir = 2 + }, +/area/storage/tools) +"bdV" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/rods/fifty, +/turf/open/floor/plasteel/yellow/side{ + dir = 6 + }, +/area/storage/tools) +"bdW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bdX" = ( +/obj/structure/rack, +/obj/item/circuitboard/computer/robotics{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/circuitboard/computer/mecha_control{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bdY" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bdZ" = ( +/obj/machinery/vending/assist, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bea" = ( +/obj/structure/table, +/obj/item/device/plant_analyzer, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"beb" = ( +/obj/structure/table, +/obj/item/device/analyzer, +/obj/item/device/healthanalyzer, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bec" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/device/multitool, +/obj/item/clothing/glasses/meson, +/obj/machinery/light_switch{ + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bed" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bee" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bef" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"beg" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -29 + }, +/obj/machinery/suit_storage_unit/ce, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"beh" = ( +/obj/structure/rack, +/obj/item/storage/secure/briefcase, +/obj/item/clothing/mask/cigarette/cigar, +/obj/machinery/computer/security/telescreen{ + dir = 1; + name = "MiniSat Monitor"; + network = list("MiniSat","tcomm"); + pixel_y = -30 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bei" = ( +/obj/structure/rack, +/obj/item/lighter, +/obj/item/clothing/glasses/meson, +/obj/machinery/button/door{ + id = "ceprivacy"; + name = "Privacy Shutters Control"; + pixel_y = -26 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bej" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/parrot/Poly, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) "bek" = ( +/obj/structure/closet/secure_closet/engineering_chief{ + req_access_txt = "0" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bel" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engine/engineering) +"bem" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/camera/autoname{ + dir = 4; + network = list("SS13") + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for the engineering security doors."; + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_x = -24; + pixel_y = -6; + req_access_txt = "1" + }, +/obj/machinery/button/door{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_x = -24; + pixel_y = 5; + req_access_txt = "1" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/checkpoint/engineering) +"ben" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/engineering) +"beo" = ( +/obj/structure/closet/secure_closet/security/engine, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/checkpoint/engineering) +"bep" = ( +/turf/closed/wall, +/area/engine/break_room) +"beq" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall/r_wall, +/area/space/nearstation) +"bes" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bet" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Port Fore"; + dir = 8; + network = list("MiniSat") + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"beu" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"bew" = ( +/obj/machinery/power/apc{ + aidisabled = 0; + dir = 1; + name = "AI Chamber APC"; + areastring = "/area/ai_monitored/turret_protected/ai"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"bex" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"bey" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Starboard Fore"; + dir = 4; + network = list("MiniSat") + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bez" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/aisat) +"beA" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"beK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/checkpoint/customs) +"beL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/checkpoint/customs) +"beM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"beN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"beO" = ( +/obj/structure/chair/office/dark, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"beP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"beQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/checkpoint/customs) +"beR" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"beS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"beT" = ( +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"beU" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mailroom Maintenance"; + req_access_txt = "50" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"beV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"beW" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"beX" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort2"; + pixel_x = -2; + pixel_y = 12 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"beY" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Cargo - Office"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/office) +"beZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bfa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bfb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bfc" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/office) +"bfd" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bff" = ( +/turf/open/floor/plasteel/brown/corner{ + dir = 4 + }, +/area/hallway/primary/port) +"bfg" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/hallway/primary/port) +"bfh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/brown/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bfi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"bfj" = ( +/obj/item/restraints/legcuffs/beartrap, +/obj/item/restraints/legcuffs/beartrap, +/obj/structure/table, +/obj/machinery/requests_console{ + department = "Janitorial"; + departmentType = 1; + pixel_x = -29 + }, +/obj/item/reagent_containers/spray/cleaner, +/obj/machinery/camera{ + c_tag = "Custodial Closet"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bfk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plating, +/area/janitor) +"bfl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bfm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bfn" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Custodial Maintenance"; + req_access_txt = "26" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bfo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bfp" = ( +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bfq" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/central) +"bfr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/bridge) +"bfs" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/bridge) +"bft" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bfu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bfv" = ( +/turf/closed/wall/r_wall, +/area/bridge) +"bfw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bfx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/bridge) +"bfy" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster/security_unit{ + pixel_x = -30; + pixel_y = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bfz" = ( +/obj/effect/landmark/start/captain, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bfA" = ( +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bfB" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bfC" = ( +/obj/machinery/door/window/westright, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bfD" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/effect/landmark/start/captain, +/obj/machinery/camera{ + c_tag = "Captain's Quarters"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bfE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bfF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/yellow/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bfG" = ( +/obj/structure/sign/directions/security{ + desc = "A direction sign, pointing out which way the security department is."; + dir = 1; + icon_state = "direction_sec"; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the engineering department is."; + dir = 4; + icon_state = "direction_eng" + }, +/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 = -8 + }, +/turf/closed/wall/r_wall, +/area/storage/tools) +"bfH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/storage/tools) +"bfI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Auxiliary Tool Storage"; + req_access_txt = "12" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/storage/tools) +"bfJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/storage/tools) +"bfK" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/map/left{ + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault, +/area/hallway/primary/starboard) +"bfL" = ( +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/vault, +/area/hallway/primary/starboard) +"bfM" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bfN" = ( +/turf/closed/wall, +/area/hallway/primary/starboard) +"bfO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/storage/tech) +"bfP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage"; + req_access_txt = "0"; + req_one_access_txt = "23;30" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bfQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/chief) +"bfR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/chief) +"bfS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bfT" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "Engineering Security Doors" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bfU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bfV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"bfW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Engineering Security Post"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bfX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"bfY" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/engine/break_room) +"bfZ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/break_room) +"bga" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 8 + }, +/turf/closed/wall/mineral/titanium, +/area/shuttle/pod_4) +"bgb" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/pod_4) +"bgc" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Space Access Airlock"; + req_one_access_txt = "32;19" + }, +/turf/open/floor/plating, +/area/aisat) +"bgd" = ( +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/aisat) +"bge" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/aisat) +"bgf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/aisat) +"bgg" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "MiniSat Airlock Access"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bgh" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bgi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bgj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"bgk" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"bgl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bgm" = ( +/obj/structure/table/reinforced, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bgn" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/space, +/area/space/nearstation) +"bgo" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/space, +/area/space/nearstation) +"bgv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/secondary/entry) +"bgw" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/closet, +/obj/item/crowbar, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/radio, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/checkpoint/customs) +"bgx" = ( +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/customs) +"bgy" = ( +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/structure/table/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/customs) +"bgz" = ( +/obj/item/paper, +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 2; + name = "Arrivals Security Checkpoint"; + pixel_y = -8; + req_access_txt = "1" + }, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/customs) +"bgA" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/customs) +"bgB" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 28 + }, +/obj/structure/closet/crate/secure/weapon{ + desc = "A secure clothing crate."; + name = "formal uniform crate"; + req_access_txt = "3" + }, +/obj/item/clothing/under/rank/security/navyblue, +/obj/item/clothing/under/rank/security/navyblue, +/obj/item/clothing/under/rank/security/navyblue, +/obj/item/clothing/under/rank/security/navyblue, +/obj/item/clothing/under/rank/security/navyblue, +/obj/item/clothing/under/rank/security/navyblue, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/under/rank/warden/navyblue, +/obj/item/clothing/suit/security/warden, +/obj/item/clothing/under/rank/head_of_security/navyblue, +/obj/item/clothing/suit/security/hos, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navywarden, +/obj/item/clothing/head/beret/sec/navyhos, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/warden) +"bgC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bgD" = ( +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bgE" = ( +/obj/structure/disposalpipe/sorting/wrap{ + dir = 1 + }, +/turf/closed/wall, +/area/quartermaster/sorting) +"bgF" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bgG" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/eastleft{ + name = "Mail"; + req_access_txt = "50" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bgH" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bgI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bgJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bgK" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bgL" = ( +/obj/machinery/status_display{ + pixel_y = 32; + supply_display = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bgM" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bgN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Mailroom"; + req_access_txt = "0"; + req_one_access_txt = "48;50" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bgO" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/office) +"bgP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bgQ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bgR" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/cargo_technician, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bgS" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/office) +"bgT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Office"; + req_access_txt = "0"; + req_one_access_txt = "48;50" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bgU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/hallway/primary/port) +"bgV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgX" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgY" = ( +/turf/open/floor/plasteel/brown/corner{ + dir = 2 + }, +/area/hallway/primary/port) +"bgZ" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/brown{ + dir = 2 + }, +/area/hallway/primary/port) +"bha" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Custodial Closet APC"; + areastring = "/area/janitor"; + pixel_x = -24 + }, +/obj/structure/table, +/obj/item/clothing/gloves/color/orange, +/obj/item/storage/box/mousetraps, +/obj/item/storage/box/mousetraps, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bhb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/portable_atmospherics/canister/water_vapor, +/mob/living/simple_animal/hostile/lizard{ + name = "Wags-His-Tail"; + real_name = "Wags-His-Tail" + }, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bhc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/landmark/start/janitor, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bhd" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bhe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/central) +"bhf" = ( +/obj/effect/landmark/blobstart, +/obj/machinery/power/apc{ + dir = 4; + name = "Central Maintenance APC"; + areastring = "/area/maintenance/central"; + pixel_x = 26 + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/maintenance/central) +"bhg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/bridge) +"bhh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/computer/card, +/turf/open/floor/plasteel/darkgreen/side{ + dir = 9 + }, +/area/bridge) +"bhi" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel/darkgreen/side{ + dir = 1 + }, +/area/bridge) +"bhj" = ( +/obj/machinery/computer/crew, +/turf/open/floor/plasteel/darkgreen/side{ + dir = 1 + }, +/area/bridge) +"bhk" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/item/folder/yellow{ + pixel_y = 4 + }, +/obj/machinery/camera{ + c_tag = "Bridge - Central"; + dir = 2; + network = list("SS13") + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/darkbrown/side{ + dir = 1 + }, +/area/bridge) +"bhl" = ( +/obj/machinery/computer/station_alert, +/turf/open/floor/plasteel/darkbrown/side{ + dir = 1 + }, +/area/bridge) +"bhm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/computer/monitor{ + name = "Bridge Power Monitoring Console" + }, +/turf/open/floor/plasteel/darkbrown/side{ + dir = 1 + }, +/area/bridge) +"bhn" = ( +/obj/machinery/computer/atmos_alert, +/turf/open/floor/plasteel/darkbrown/side{ + dir = 1 + }, +/area/bridge) +"bho" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/darkbrown/side{ + dir = 1 + }, +/area/bridge) +"bhp" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel/darkred/side{ + dir = 1 + }, +/area/bridge) +"bhq" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/darkred/side{ + dir = 1 + }, +/area/bridge) +"bhr" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/computer/prisoner, +/turf/open/floor/plasteel/darkred/side{ + dir = 5 + }, +/area/bridge) +"bhs" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/bridge) +"bht" = ( +/obj/structure/table/wood, +/obj/item/storage/photo_album{ + pixel_y = -4 + }, +/obj/item/device/camera{ + pixel_y = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Captain)"; + pixel_x = -28 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bhu" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/item/razor{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/clothing/mask/cigarette/cigar, +/obj/item/reagent_containers/food/drinks/flask/gold, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bhv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bhw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bhx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bhy" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bhz" = ( +/obj/structure/table/wood, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bhA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bhB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=14.2-Central-CrewQuarters"; + location = "14-Starboard-Central" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhC" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bhD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Primary Hallway" + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhF" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhH" = ( +/obj/machinery/firealarm{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhI" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway - Tech Storage"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhJ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhL" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhO" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhP" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Starboard Hallway APC"; + areastring = "/area/hallway/primary/starboard"; + pixel_y = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bhS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=14-Starboard-Central"; + location = "13.3-Engineering-Central" + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bhT" = ( +/turf/closed/wall/r_wall, +/area/engine/break_room) +"bhU" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/glass, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bhV" = ( +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_guide{ + pixel_x = -4 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bhW" = ( +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/structure/table/glass, +/obj/item/storage/firstaid/fire{ + pixel_y = 8 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bhX" = ( +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bhY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bhZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bia" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bib" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bic" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bid" = ( +/obj/machinery/disposal/bin{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bie" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/break_room) +"bif" = ( +/turf/open/floor/plating, +/area/engine/break_room) +"big" = ( +/obj/machinery/door/airlock/titanium{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + dir = 4; + id = "pod4"; + name = "escape pod 4"; + port_direction = 2; + preferred_direction = 4; + timid = 0 + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/pod_4) +"bih" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/item/storage/pod{ + pixel_x = 6; + pixel_y = -32 + }, +/obj/machinery/light/small, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/pod_3) +"bii" = ( +/obj/docking_port/stationary/random{ + dir = 4; + id = "pod_lavaland3"; + name = "lavaland" + }, +/turf/open/space, +/area/space/nearstation) +"bij" = ( +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/pod_4) +"bik" = ( +/obj/machinery/light/small, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Space Access"; + dir = 1; + network = list("MiniSat") + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/aisat) +"bil" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window{ + dir = 8; + name = "MiniSat Airlock Access"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bim" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue{ + pixel_y = 2 + }, +/obj/item/pen, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bin" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bio" = ( +/obj/machinery/camera{ + c_tag = "AI Chamber - Aft"; + dir = 1; + network = list("RD") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bip" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"biq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bir" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bis" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue{ + pixel_y = 2 + }, +/obj/item/pen, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"biu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biv" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/secondary/entry) +"biw" = ( +/obj/structure/sign/warning/pods, +/turf/closed/wall, +/area/security/checkpoint/customs) +"bix" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/security/checkpoint/customs) +"biy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/security{ + name = "Customs Desk"; + req_access = null; + req_access_txt = "1" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"biz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/checkpoint/customs) +"biA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"biB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;48;50;1" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"biC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/port/fore) +"biD" = ( +/obj/machinery/door/window/eastleft{ + base_state = "right"; + icon_state = "right"; + name = "Deliveries"; + req_access_txt = "50" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"biE" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "packageExternal"; + pixel_y = 18 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"biF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"biG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"biH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"biI" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"biJ" = ( +/obj/structure/table, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/quartermaster/sorting) +"biK" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/obj/item/device/multitool, +/obj/item/pen/red, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/office) +"biL" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"biM" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/office) +"biN" = ( +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/hallway/primary/port) +"biO" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"biP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"biQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"biR" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/hallway/primary/port) +"biS" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"biT" = ( +/obj/structure/janitorialcart, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"biU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/vehicle/ridden/janicart, +/obj/item/key/janitor, +/turf/open/floor/plating, +/area/janitor) +"biV" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"biW" = ( +/obj/item/storage/box/lights/mixed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/central) +"biX" = ( +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/maintenance/central) +"biY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"biZ" = ( +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/darkgreen/side{ + dir = 8 + }, +/area/bridge) +"bja" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bjb" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bjc" = ( +/turf/open/floor/plasteel/dark, +/area/bridge) +"bjd" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bje" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bjf" = ( +/obj/item/folder/red{ + pixel_y = 3 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/folder/red{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/darkred/side{ + dir = 4 + }, +/area/bridge) +"bjg" = ( +/turf/closed/wall, +/area/crew_quarters/heads/captain/private) +"bjh" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/bikehorn/rubberducky, +/obj/machinery/light_switch{ + pixel_x = -28 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bji" = ( +/obj/machinery/door/window{ + dir = 1; + name = "Captain's Bedroom"; + req_access_txt = "20" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bjj" = ( +/obj/structure/closet/secure_closet/captains, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bjk" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/machinery/suit_storage_unit/captain, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bjl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bjm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjo" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Primary Hallway" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjs" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjt" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bju" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjB" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjD" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjE" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/caution/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bjF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/light_switch{ + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bjG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bjH" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bjI" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bjJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bjK" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bjL" = ( +/turf/open/floor/plasteel, +/area/engine/break_room) +"bjM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Escape Pod Four"; + req_access = null; + req_access_txt = "32" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bjO" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bjP" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat/foyer) +"bjQ" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bjR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bjS" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -24; + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bjT" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/satellite) +"bjV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bjW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/hallway/secondary/entry) +"bjX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/arrival{ + dir = 5 + }, +/area/hallway/secondary/entry) +"bjY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bjZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 9 + }, +/area/hallway/primary/port) +"bka" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bkb" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bkc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 5 + }, +/area/hallway/primary/port) +"bkd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 9 + }, +/area/hallway/primary/port) +"bke" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/hallway/primary/port) +"bkf" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 30 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 5 + }, +/area/hallway/primary/port) +"bkg" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageExternal" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bkh" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/computer/stockexchange, +/turf/open/floor/plasteel/arrival{ + dir = 2 + }, +/area/quartermaster/sorting) +"bki" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/plasteel/arrival{ + dir = 2 + }, +/area/quartermaster/sorting) +"bkj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/arrival{ + dir = 2 + }, +/area/quartermaster/sorting) +"bkk" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/machinery/camera{ + c_tag = "Cargo - Mailroom"; + dir = 1; + network = list("SS13") + }, +/turf/open/floor/plasteel/arrival{ + dir = 2 + }, +/area/quartermaster/sorting) +"bkl" = ( +/obj/structure/table, +/obj/item/stack/wrapping_paper, +/obj/item/stack/wrapping_paper, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_y = -30 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/storage/box/lights/mixed, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/arrival{ + dir = 2 + }, +/area/quartermaster/sorting) +"bkm" = ( +/obj/item/storage/box, +/obj/structure/table, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/item/hand_labeler, +/obj/machinery/power/apc{ + dir = 4; + name = "Delivery Office APC"; + areastring = "/area/quartermaster/sorting"; + pixel_x = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/arrival{ + dir = 6 + }, +/area/quartermaster/sorting) +"bkn" = ( +/obj/structure/table, +/obj/machinery/computer/stockexchange, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/turf/open/floor/plasteel/brown{ + dir = 10 + }, +/area/quartermaster/office) +"bko" = ( +/obj/machinery/photocopier, +/turf/open/floor/plasteel/brown{ + dir = 2 + }, +/area/quartermaster/office) +"bkp" = ( +/turf/open/floor/plasteel/brown{ + dir = 2 + }, +/area/quartermaster/office) +"bkq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/holopad, +/turf/open/floor/plasteel/brown{ + dir = 2 + }, +/area/quartermaster/office) +"bkr" = ( +/obj/machinery/autolathe, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/turf/open/floor/plasteel/brown{ + dir = 6 + }, +/area/quartermaster/office) +"bks" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/brown{ + dir = 10 + }, +/area/hallway/primary/port) +"bkt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/holopad, +/turf/open/floor/plasteel/brown/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bku" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/brown/corner{ + dir = 2 + }, +/area/hallway/primary/port) +"bkv" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/rack, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/brown{ + dir = 2 + }, +/area/hallway/primary/port) +"bkw" = ( +/obj/structure/table, +/obj/item/device/toner, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 30 + }, +/turf/open/floor/plasteel/brown{ + dir = 6 + }, +/area/hallway/primary/port) +"bkx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bky" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"bkz" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hop) +"bkA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/tank/internals/air, +/turf/open/floor/plating, +/area/maintenance/central) +"bkB" = ( +/obj/item/extinguisher, +/turf/open/floor/plating, +/area/maintenance/central) +"bkC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/modular_computer/console/preset/command, +/turf/open/floor/plasteel/darkblue/side{ + dir = 9 + }, +/area/bridge) +"bkD" = ( +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_y = 29 + }, +/obj/machinery/modular_computer/console/preset/engineering, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bkE" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/darkgreen/corner{ + dir = 1 + }, +/area/bridge) +"bkF" = ( +/obj/item/device/radio/beacon, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bkG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/recharger{ + pixel_y = 3 + }, +/obj/item/restraints/handcuffs{ + pixel_y = 3 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/darkred/corner{ + dir = 4 + }, +/area/bridge) +"bkH" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/computer/security/mining{ + network = list("MINE","AuxBase") + }, +/obj/machinery/keycard_auth{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bkI" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_x = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/computer/cargo/request, +/turf/open/floor/plasteel/darkblue/side{ + dir = 5 + }, +/area/bridge) +"bkJ" = ( +/obj/effect/landmark/xeno_spawn, +/obj/item/soap/deluxe, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/shower{ + pixel_y = 12 + }, +/obj/structure/curtain, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/captain/private) +"bkK" = ( +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/structure/sink{ + pixel_y = 17 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/captain/private) +"bkL" = ( +/obj/structure/toilet{ + pixel_y = 13 + }, +/obj/machinery/light{ + dir = 2 + }, +/obj/effect/landmark/start/captain, +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/captain/private) +"bkM" = ( +/obj/machinery/door/airlock/silver{ + name = "Bathroom" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/captain/private) +"bkN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bkO" = ( +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bkP" = ( +/obj/effect/landmark/start/captain, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bkQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bkR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=13.1-Engineering-Enter"; + location = "12-Central-Starboard" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bkS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/yellow/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"bkT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Primary Hallway" + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bkU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bkV" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bkW" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bkX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bkY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bkZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bla" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"blb" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway - Auxiliary Tool Storage"; + dir = 1; + network = list("SS13") + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"blc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bld" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"ble" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"blf" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway - Engineering"; + dir = 1; + network = list("SS13") + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"blg" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=13.2-Tcommstore"; + location = "13.1-Engineering-Enter" + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"blh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bli" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/caution/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"blj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/engine/break_room) +"blk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bll" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/engine/break_room) +"blm" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bln" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"blo" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"blp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/break_room) +"blq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"blr" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bls" = ( +/obj/structure/sign/warning/pods, +/turf/closed/wall/r_wall, +/area/engine/break_room) +"blt" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/maintenance/disposal) +"blu" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/curved/flipped{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"blv" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/crossing/horizontal, +/turf/open/space, +/area/space/nearstation) +"blw" = ( +/obj/structure/transit_tube/curved{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"blx" = ( +/turf/closed/wall, +/area/space/nearstation) +"bly" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/space, +/area/space/nearstation) +"blA" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/obj/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/aisat) +"blB" = ( +/obj/machinery/computer/teleporter, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat/foyer) +"blC" = ( +/obj/machinery/teleport/station, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat/foyer) +"blD" = ( +/obj/machinery/teleport/hub, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat/foyer) +"blE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"blF" = ( +/obj/structure/showcase/cyborg/old{ + dir = 2; + pixel_y = 20 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"blG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"blH" = ( +/obj/structure/showcase/cyborg/old{ + dir = 2; + pixel_y = 20 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 4 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"blI" = ( +/obj/machinery/door/airlock/highsecurity{ + locked = 0; + name = "AI Chamber"; + req_access_txt = "16" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Chamber entrance shutters"; + name = "AI Chamber entrance shutters" + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -26; + pixel_y = 3 + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_x = 28 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"blJ" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/storage/satellite) +"blK" = ( +/obj/machinery/recharge_station, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/storage/satellite) +"blL" = ( +/obj/machinery/airalarm{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 2; + name = "Auxiliary MiniSat Distribution Port" + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/storage/satellite) +"blM" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/storage/satellite) +"blT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"blU" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/secondary/entry) +"blV" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"blW" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 10 + }, +/area/hallway/primary/port) +"blX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral/side, +/area/hallway/primary/port) +"blY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=5-Customs"; + location = "4-Customs" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/neutral/side, +/area/hallway/primary/port) +"blZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/side, +/area/hallway/primary/port) +"bma" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 6 + }, +/area/hallway/primary/port) +"bmb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 10 + }, +/area/hallway/primary/port) +"bmc" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bmd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/hallway/primary/port) +"bme" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageExternal" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bmf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/window/westleft{ + dir = 1; + name = "Delivery Desk"; + req_access_txt = "50" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bmg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bmh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/mineral/ore_redemption, +/turf/open/floor/plasteel/dark, +/area/quartermaster/office) +"bmi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/quartermaster/office) +"bmj" = ( +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the Supply department is."; + dir = 1; + icon_state = "direction_supply"; + name = "cargo department"; + pixel_y = 8 + }, +/turf/closed/wall, +/area/quartermaster/office) +"bmk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/hallway/primary/port) +"bml" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/hallway/primary/port) +"bmm" = ( +/obj/structure/sign/directions/security{ + desc = "A direction sign, pointing out which way the security department is."; + dir = 1; + icon_state = "direction_sec"; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the engineering department is."; + dir = 4; + icon_state = "direction_eng" + }, +/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 = -8 + }, +/turf/closed/wall/r_wall, +/area/hallway/primary/port) +"bmn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"bmo" = ( +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/button/door{ + id = "hop"; + name = "Privacy Shutters Control"; + pixel_y = 25; + req_access_txt = "28" + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bmp" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/storage/secure/briefcase, +/obj/structure/table/wood, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching Prison Wing holding areas."; + name = "Prison Monitor"; + network = list("Prison"); + pixel_y = 30 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bmq" = ( +/obj/machinery/recharger, +/obj/item/storage/secure/safe{ + pixel_x = 34 + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bmr" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/central) +"bms" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/central) +"bmt" = ( +/obj/item/device/radio/off, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bmu" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "Bridge" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/central) +"bmv" = ( +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Bridge Deliveries"; + req_access_txt = "19" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/bridge) +"bmw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 8 + }, +/area/bridge) +"bmx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bmy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bmz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bmA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/darkblue/corner, +/area/bridge) +"bmB" = ( +/obj/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 2 + }, +/area/bridge) +"bmC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/window/brigdoor{ + dir = 2; + name = "Command Desk"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 2 + }, +/area/bridge) +"bmD" = ( +/obj/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 2 + }, +/area/bridge) +"bmE" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/bridge) +"bmF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bmG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bmH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/camera{ + c_tag = "Bridge - Starboard"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 4 + }, +/area/bridge) +"bmI" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access = null; + req_access_txt = "20" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bmJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bmK" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/yellow/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"bmL" = ( +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the escape arm is."; + icon_state = "direction_evac"; + name = "escape arm" + }, +/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 = 8 + }, +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the research department is."; + icon_state = "direction_sci"; + name = "research department"; + pixel_y = -8 + }, +/turf/closed/wall, +/area/storage/art) +"bmM" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/storage/art) +"bmN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Art Storage" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/storage/art) +"bmO" = ( +/turf/closed/wall, +/area/storage/art) +"bmP" = ( +/turf/closed/wall, +/area/crew_quarters/bar) +"bmQ" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;25;46" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bmR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/starboard) +"bmS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock{ + name = "Starboard Emergency Storage"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bmT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;25;46" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bmU" = ( +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the engineering department is."; + dir = 4; + icon_state = "direction_eng"; + pixel_y = 8 + }, +/turf/closed/wall, +/area/maintenance/starboard) +"bmV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bmW" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bmX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bmY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Foyer"; + req_access_txt = "0"; + req_one_access_txt = "32;19" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bmZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bna" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bnb" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bnc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bnd" = ( +/obj/structure/table/glass, +/obj/item/device/lightreplacer{ + pixel_y = 7 + }, +/obj/item/storage/belt/utility, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bne" = ( +/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko{ + pixel_y = 4 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bnf" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bng" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Foyer - Starboard"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bnh" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/device/taperecorder{ + pixel_x = -4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"bni" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/syndicatebomb/training, +/turf/open/floor/plasteel, +/area/security/main) +"bnk" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bnl" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bnm" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bnn" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bno" = ( +/obj/structure/transit_tube/diagonal, +/turf/open/space, +/area/space/nearstation) +"bnp" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/transit_tube/curved/flipped, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/aisat) +"bnq" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/aisat) +"bnr" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/aisat) +"bns" = ( +/obj/machinery/door/window{ + dir = 1; + name = "MiniSat Walkway Access"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/aisat) +"bnt" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/aisat) +"bnu" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/aisat) +"bnv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/aisat) +"bnw" = ( +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/ai_monitored/turret_protected/aisat/foyer) +"bnx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/ai_monitored/turret_protected/aisat/foyer) +"bny" = ( +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/aisat_interior"; + enabled = 1; + icon_state = "control_standby"; + name = "Antechamber Turret Control"; + pixel_x = 30; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/ai_monitored/turret_protected/aisat/foyer) +"bnz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bnA" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "MiniSat - Antechamber"; + dir = 4; + network = list("MiniSat") + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bnB" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bnC" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/start/cyborg, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bnD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 4 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bnE" = ( +/obj/machinery/power/apc{ + aidisabled = 0; + dir = 4; + name = "MiniSat Antechamber APC"; + areastring = "/area/ai_monitored/turret_protected/aisat_interior"; + pixel_x = 29 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 4 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bnF" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bnG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bnH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bnI" = ( +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bnK" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Arrivals - Station Entrance"; + dir = 4; + network = list("SS13") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bnL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bnM" = ( +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/secondary/entry) +"bnN" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bnO" = ( +/obj/structure/chair/comfy/beige, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bnP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bnQ" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/chips, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bnR" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"bnS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/hallway/primary/port) +"bnT" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/port) +"bnU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bnV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bnW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bnX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bnY" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bnZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Port Primary Hallway - Middle"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"boa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bob" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Port Hallway APC"; + areastring = "/area/hallway/primary/port"; + pixel_x = -1; + pixel_y = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"boc" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bod" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"boe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/brown/corner{ + dir = 4 + }, +/area/hallway/primary/port) +"bof" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/brown/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bog" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/brown/corner{ + dir = 4 + }, +/area/hallway/primary/port) +"boh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/brown/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"boi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Port Primary Hallway" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"boj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bok" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=4-Customs"; + location = "3-Central-Port" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bol" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "hop"; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hop) +"bom" = ( +/obj/item/folder/blue, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/table/wood, +/obj/item/device/assembly/flash/handheld, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bon" = ( +/obj/effect/landmark/start/head_of_personnel, +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"boo" = ( +/obj/machinery/newscaster/security_unit{ + pixel_x = 32 + }, +/obj/machinery/computer/security/mining{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bop" = ( +/obj/machinery/power/apc/highcap/ten_k{ + dir = 8; + name = "Bridge APC"; + areastring = "/area/bridge"; + pixel_x = -27 + }, +/obj/structure/cable/yellow, +/obj/machinery/camera{ + c_tag = "Bridge - Port"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 8 + }, +/area/bridge) +"boq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bor" = ( +/turf/open/floor/plasteel/darkblue/corner, +/area/bridge) +"bos" = ( +/turf/open/floor/plasteel/darkblue/side{ + dir = 2 + }, +/area/bridge) +"bot" = ( +/turf/open/floor/plasteel/darkblue/side{ + dir = 6 + }, +/area/bridge) +"bou" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/recharger, +/obj/item/restraints/handcuffs, +/obj/structure/table/glass, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bov" = ( +/obj/machinery/computer/communications, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bow" = ( +/obj/machinery/computer/security/wooden_tv{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/dark, +/area/bridge) +"box" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/folder/blue{ + pixel_y = 2 + }, +/obj/item/folder/blue{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"boy" = ( +/turf/open/floor/plasteel/darkblue/side{ + dir = 10 + }, +/area/bridge) +"boz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/bridge) +"boA" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"boB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/darkblue/side{ + dir = 4 + }, +/area/bridge) +"boC" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/item/storage/fancy/donut_box, +/obj/structure/table/glass, +/turf/open/floor/plasteel/dark, +/area/bridge) +"boD" = ( +/obj/structure/displaycase/captain{ + pixel_y = 5 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"boE" = ( +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"boF" = ( +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"boG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"boH" = ( +/obj/machinery/computer/communications{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Captain)"; + pixel_x = 28 + }, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/machinery/keycard_auth{ + pixel_x = 24; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"boI" = ( +/obj/structure/rack, +/obj/item/cane, +/obj/item/reagent_containers/food/snacks/grown/mushroom/glowshroom, +/turf/open/floor/plating, +/area/crew_quarters/heads/captain/private) +"boJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway - Starboard - Art Storage"; + dir = 4; + network = list("SS13") + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"boK" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"boL" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/art) +"boM" = ( +/obj/structure/table, +/obj/item/hand_labeler, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"boN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/storage/art) +"boO" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/easel, +/obj/item/canvas/twentythreeXtwentythree, +/obj/item/canvas/twentythreeXtwentythree, +/turf/open/floor/plasteel, +/area/storage/art) +"boP" = ( +/obj/structure/closet/secure_closet/bar{ + req_access_txt = "25" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"boQ" = ( +/obj/machinery/reagentgrinder, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"boR" = ( +/obj/structure/table/wood, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/gun/ballistic/revolver/doublebarrel, +/obj/machinery/camera{ + c_tag = "Bar - Backroom"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"boS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"boT" = ( +/obj/machinery/door/window/southleft{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Bar Delivery"; + req_access_txt = "25" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"boU" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 8; + freq = 1400; + location = "Bar" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/crew_quarters/bar) +"boV" = ( +/obj/item/storage/box/lights/mixed, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"boW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"boX" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"boY" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/starboard) +"boZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bpa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bpb" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"bpc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bpd" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bpe" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bpf" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/caution/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bpg" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bph" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bpi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bpj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bpk" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bpl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bpm" = ( +/obj/machinery/door/poddoor/preopen{ + id = "transittube"; + name = "Transit Tube Blast Door" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bpn" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bpp" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"bpq" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bpr" = ( +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bps" = ( +/obj/structure/window/reinforced, +/obj/machinery/light/small, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Fore"; + dir = 1; + network = list("MiniSat") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bpt" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/closet/wardrobe/red, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/checkpoint/customs) +"bpu" = ( +/turf/closed/wall/r_wall, +/area/space/nearstation) +"bpv" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/structure/transit_tube/station/reverse/flipped{ + dir = 1 + }, +/obj/structure/transit_tube_pod{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 4 + }, +/area/engine/break_room) +"bpw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/transit_tube/horizontal, +/turf/open/space, +/area/space/nearstation) +"bpx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/transit_tube/crossing/horizontal, +/turf/open/space, +/area/space/nearstation) +"bpy" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/transit_tube/horizontal, +/turf/open/space, +/area/space/nearstation) +"bpz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/transit_tube/junction/flipped{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"bpA" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space, +/area/space/nearstation) +"bpB" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space, +/area/space/nearstation) +"bpC" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/transit_tube/station{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bpD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bpE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bpF" = ( +/obj/machinery/holopad, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bpG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bpH" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bpI" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Foyer"; + req_one_access_txt = "32;19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"bpJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"bpK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/holopad, +/obj/item/device/radio/beacon, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"bpL" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"bpM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Antechamber"; + req_one_access_txt = "32;19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bpN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bpO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bpP" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/mob/living/simple_animal/bot/secbot/pingsky, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bpQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bpR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bpS" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "32" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bpT" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bpU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bpV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bpW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bpX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bpY" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bpZ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bqa" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bqb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bqc" = ( +/obj/machinery/holopad, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bqd" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Arrivals APC"; + areastring = "/area/hallway/secondary/entry"; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/secondary/entry) +"bqe" = ( +/obj/structure/chair/comfy/beige{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arrivals - Lounge"; + dir = 4; + network = list("SS13") + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bqf" = ( +/turf/open/floor/carpet, +/area/hallway/primary/port) +"bqg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/holopad{ + pixel_y = -16 + }, +/turf/open/floor/carpet, +/area/hallway/primary/port) +"bqh" = ( +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bqi" = ( +/obj/machinery/vending/cola/random, +/obj/machinery/newscaster{ + pixel_x = -28; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"bqj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/hallway/primary/port) +"bqk" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bql" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqm" = ( +/obj/machinery/turretid{ + icon_state = "control_stun"; + name = "AI Chamber turret control"; + pixel_x = 3; + pixel_y = -23 + }, +/obj/machinery/door/window{ + base_state = "leftsecure"; + dir = 8; + obj_integrity = 300; + icon_state = "leftsecure"; + name = "Primary AI Core Access"; + req_access_txt = "16" + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = 4; + pixel_y = 33 + }, +/turf/open/floor/plasteel/vault{ + dir = 6 + }, +/area/ai_monitored/turret_protected/ai) +"bqn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqo" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqs" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqt" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 3 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Port Primary Hallway" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bqz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bqA" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"bqB" = ( +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/pen, +/obj/structure/window/reinforced, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bqC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/window{ + dir = 2; + name = "HoP's Desk"; + req_access_txt = "57" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bqD" = ( +/obj/structure/window/reinforced, +/obj/machinery/computer/cargo/request{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bqE" = ( +/obj/machinery/vending/cart{ + req_access_txt = "57" + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bqF" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 4 + }, +/area/engine/break_room) +"bqG" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bqH" = ( +/turf/closed/wall, +/area/crew_quarters/heads/hop) +"bqI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/darkblue/side{ + dir = 2 + }, +/area/bridge) +"bqJ" = ( +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/rack, +/obj/item/storage/secure/briefcase, +/obj/item/clothing/mask/cigarette/cigar, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bqK" = ( +/obj/structure/rack, +/obj/item/device/aicard, +/obj/item/device/radio/off, +/obj/machinery/computer/security/telescreen{ + dir = 1; + name = "MiniSat Monitor"; + network = list("MiniSat","tcomm"); + pixel_y = -29 + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bqL" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/cell_charger{ + pixel_y = 4 + }, +/obj/structure/table/glass, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bqM" = ( +/turf/open/floor/carpet, +/area/bridge) +"bqN" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/bridge) +"bqO" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bqP" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/structure/rack, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/timer, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bqQ" = ( +/obj/machinery/light, +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/item/storage/toolbox/emergency{ + pixel_x = -2; + pixel_y = -3 + }, +/obj/item/wrench, +/obj/item/device/multitool, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bqR" = ( +/obj/machinery/light_switch{ + pixel_x = 8; + pixel_y = -26 + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 10 + }, +/area/bridge) +"bqS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 2 + }, +/area/bridge) +"bqT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/darkblue/side{ + dir = 6 + }, +/area/bridge) +"bqU" = ( +/obj/structure/fireaxecabinet{ + pixel_y = -32 + }, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/machinery/light_switch{ + pixel_x = 28 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bqV" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/power/apc{ + dir = 8; + name = "Captain's Quarters APC"; + areastring = "/area/crew_quarters/heads/captain/private"; + pixel_x = -24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/paper/fluff/gateway, +/obj/item/coin/plasma, +/obj/item/melee/chainofcommand, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bqW" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bqX" = ( +/obj/structure/table/wood, +/obj/item/stamp/captain, +/obj/machinery/computer/security/wooden_tv, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bqY" = ( +/obj/effect/landmark/start/captain, +/obj/structure/chair/comfy/brown, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bqZ" = ( +/obj/machinery/computer/card{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Captain's Desk"; + departmentType = 5; + name = "Captain RC"; + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bra" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"brb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"brc" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"brd" = ( +/obj/structure/table, +/obj/machinery/power/apc{ + dir = 8; + name = "Art Storage APC"; + areastring = "/area/storage/art"; + pixel_x = -25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/item/paper_bin, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/turf/open/floor/plasteel, +/area/storage/art) +"bre" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/storage/art) +"brf" = ( +/obj/structure/table, +/obj/item/paper_bin/construction, +/obj/item/airlock_painter, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"brg" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/vending_refill/cigarette, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brh" = ( +/obj/effect/landmark/start/bartender, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bri" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brk" = ( +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = -30 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brl" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Bar Maintenance"; + req_access_txt = "25" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bro" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 2; + sortType = 19 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;25;46" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"brs" = ( +/obj/item/device/assembly/prox_sensor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/item/storage/box/lights/mixed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bru" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;25;46" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brx" = ( +/obj/machinery/requests_console{ + department = "AI"; + departmentType = 5; + pixel_x = 30; + pixel_y = 30 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = 23; + pixel_y = -23 + }, +/turf/open/floor/plasteel/vault, +/area/ai_monitored/turret_protected/ai) +"bry" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"brz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 2 + }, +/area/hallway/primary/starboard) +"brA" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/engine/break_room) +"brB" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -30 + }, +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/engine/break_room) +"brC" = ( +/obj/machinery/microwave{ + pixel_y = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Foyer - Port"; + dir = 1; + network = list("SS13") + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/engine/break_room) +"brD" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/item/storage/box/donkpockets, +/obj/structure/table/glass, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/engine/break_room) +"brE" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"brF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Engineering Foyer APC"; + areastring = "/area/engine/break_room"; + pixel_x = -1; + pixel_y = -26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/engine/break_room) +"brG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"brH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"brI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"brJ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/structure/transit_tube/curved{ + dir = 8 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 4 + }, +/area/engine/break_room) +"brK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Access"; + req_one_access_txt = "32;19" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"brL" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"brM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/transit_tube/curved{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"brN" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/table/glass, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"brO" = ( +/obj/structure/transit_tube/diagonal/topleft, +/turf/open/space, +/area/space/nearstation) +"brP" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/transit_tube/curved{ + dir = 1 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/aisat) +"brQ" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/light/small, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior Access"; + dir = 1; + network = list("MiniSat") + }, +/obj/machinery/power/apc{ + aidisabled = 0; + dir = 2; + name = "MiniSat Exterior APC"; + areastring = "/area/aisat"; + pixel_y = -24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/aisat) +"brR" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/aisat) +"brS" = ( +/obj/machinery/door/window{ + dir = 2; + name = "MiniSat Walkway Access"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/aisat) +"brT" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/aisat) +"brU" = ( +/obj/structure/window/reinforced, +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/aisat) +"brV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/aisat) +"brW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat/foyer) +"brX" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/machinery/porta_turret/ai{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the RD's goons from the safety of his office."; + dir = 4; + name = "Research Monitor"; + network = list("RD"); + pixel_x = -28 + }, +/turf/open/floor/plasteel/vault{ + dir = 1 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"brY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc/highcap/five_k{ + aidisabled = 0; + dir = 2; + name = "MiniSat Foyer APC"; + areastring = "/area/ai_monitored/turret_protected/aisat/foyer"; + pixel_y = -29 + }, +/obj/structure/cable/yellow, +/obj/machinery/camera/motion{ + c_tag = "MiniSat Foyer"; + dir = 8; + network = list("MiniSat") + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat/foyer) +"brZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bsa" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/mob/living/simple_animal/bot/floorbot, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bsb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bsc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bsd" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/darkblue/corner, +/area/ai_monitored/turret_protected/aisat_interior) +"bse" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/porta_turret/ai{ + dir = 2 + }, +/obj/machinery/computer/security/telescreen{ + dir = 8; + name = "MiniSat Monitor"; + network = list("MiniSat","tcomm"); + pixel_x = 28 + }, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bsf" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat/foyer) +"bsg" = ( +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/computer/security/telescreen{ + dir = 1; + name = "MiniSat Monitor"; + network = list("MiniSat","tcomm"); + pixel_y = -29 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bsh" = ( +/obj/structure/table, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/computer/monitor{ + dir = 1 + }, +/obj/structure/cable/yellow, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bsi" = ( +/obj/machinery/camera/motion{ + c_tag = "MiniSat Maintenance"; + dir = 8; + network = list("MiniSat") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/multitool, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bsj" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bsk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bsl" = ( +/obj/machinery/vending/cola/random, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bsm" = ( +/obj/item/device/radio/beacon, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bsn" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bso" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bsp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/newscaster{ + pixel_x = 28; + pixel_y = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/secondary/entry) +"bsq" = ( +/obj/structure/chair/comfy/beige{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bsr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/hallway/primary/port) +"bss" = ( +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bst" = ( +/obj/machinery/vending/snack/random, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"bsu" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/hallway/primary/port) +"bsv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/port) +"bsw" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bsx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bsy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bsz" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bsA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bsB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bsC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bsD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bsE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bsG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bsH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Port Primary Hallway - Starboard"; + dir = 1; + network = list("SS13") + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bsI" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bsJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Port Primary Hallway" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bsK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bsL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=7-Command-Starboard"; + location = "6-Port-Central" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bsM" = ( +/obj/machinery/button/door{ + id = "hop"; + name = "Privacy Shutters Control"; + pixel_x = -24; + pixel_y = -6; + req_access_txt = "28" + }, +/obj/machinery/light_switch{ + pixel_x = -25; + pixel_y = 5 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bsN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bsO" = ( +/mob/living/simple_animal/pet/dog/corgi/Ian, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bsP" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/bed/dogbed/ian, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bsQ" = ( +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bsR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bsS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bsT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bsU" = ( +/turf/closed/wall, +/area/bridge) +"bsV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/machinery/vending/cola/random, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bsW" = ( +/obj/machinery/button/door{ + id = "bridge blast"; + name = "Bridge Access Blast Door Control"; + pixel_x = -1; + pixel_y = -24; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/button/door{ + id = "council blast"; + name = "Council Chamber Blast Door Control"; + pixel_x = -1; + pixel_y = -34; + req_access_txt = "19" + }, +/obj/machinery/camera{ + c_tag = "Bridge - Command Chair"; + dir = 1; + network = list("SS13") + }, +/turf/open/floor/carpet, +/area/bridge) +"bsX" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet, +/area/bridge) +"bsY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/button/door{ + id = "evashutter"; + name = "E.V.A. Storage Shutter Control"; + pixel_y = -24; + req_access_txt = "19" + }, +/obj/machinery/button/door{ + id = "gateshutter"; + name = "Gateway Shutter Control"; + pixel_y = -34; + req_access_txt = "19" + }, +/turf/open/floor/carpet, +/area/bridge) +"bsZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/vending/snack/random, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bta" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"btb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"btc" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced, +/obj/machinery/light_switch{ + pixel_x = -28 + }, +/obj/item/storage/secure/briefcase{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/storage/lockbox/medal, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"btd" = ( +/obj/machinery/door/window{ + name = "Captain's Desk"; + req_access_txt = "20" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bte" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"btf" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/machinery/door/window{ + base_state = "right"; + icon_state = "right"; + name = "Captain's Desk"; + req_access_txt = "20" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/item/stamp/captain, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"btg" = ( +/obj/structure/table/wood, +/obj/item/hand_tele, +/obj/structure/window/reinforced, +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bth" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bti" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "20;12" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"btj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"btk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"btl" = ( +/obj/structure/table, +/obj/item/canvas/twentythreeXtwentythree, +/obj/item/canvas/twentythreeXtwentythree, +/obj/item/canvas/twentythreeXnineteen, +/obj/item/canvas/twentythreeXnineteen, +/obj/item/canvas/nineteenXnineteen, +/obj/item/canvas/nineteenXnineteen, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/turf/open/floor/plasteel, +/area/storage/art) +"btm" = ( +/obj/structure/table, +/obj/item/device/camera, +/turf/open/floor/plasteel, +/area/storage/art) +"btn" = ( +/obj/structure/table, +/obj/item/device/camera_film, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 28 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"bto" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"btp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/xeno_spawn, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"btq" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/closet/gmcloset, +/obj/item/wrench, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"btr" = ( +/obj/machinery/chem_master/condimaster{ + desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments."; + name = "HoochMaster Deluxe"; + pixel_x = -4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bts" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"btt" = ( +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard) +"btu" = ( +/obj/item/storage/toolbox/emergency, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"btv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/starboard) +"btw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"btx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/caution{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bty" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/caution{ + dir = 4 + }, +/area/hallway/primary/starboard) +"btz" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Foyer Maintenance"; + req_access_txt = "0"; + req_one_access_txt = "32;19" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"btA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/caution{ + dir = 2 + }, +/area/engine/break_room) +"btB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/caution{ + dir = 2 + }, +/area/engine/break_room) +"btC" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Personnel's Desk"; + departmentType = 5; + name = "Head of Personnel RC"; + pixel_y = 30 + }, +/obj/machinery/pdapainter{ + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"btD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"btE" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/corner, +/area/engine/break_room) +"btF" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"btG" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/folder/blue{ + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/pen, +/obj/machinery/computer/security/telescreen{ + dir = 1; + name = "MiniSat Monitor"; + network = list("MiniSat","tcomm"); + pixel_y = -28 + }, +/turf/open/floor/plasteel/darkblue/corner, +/area/engine/break_room) +"btH" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Head of Personnel APC"; + areastring = "/area/crew_quarters/heads/hop"; + pixel_y = 24 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"btI" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/curved{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"btJ" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/curved/flipped{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"btK" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"btL" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"btM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"btN" = ( +/obj/machinery/door/airlock/hatch{ + name = "Telecomms Control Room"; + req_one_access_txt = "19; 61" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tcommsat/computer) +"btO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"btP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"btQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"btR" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-18" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"btS" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"btT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"btU" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-08" + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"btV" = ( +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"btW" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-03" + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"btX" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Port Primary Hallway - Port"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"btY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/hallway/primary/port) +"btZ" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/hallway/primary/port) +"bua" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/vault, +/area/hallway/primary/port) +"bub" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault, +/area/hallway/primary/port) +"buc" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/vault, +/area/hallway/primary/port) +"bud" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;27;37" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bue" = ( +/turf/closed/wall, +/area/library) +"buf" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"bug" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/turf/open/floor/wood, +/area/library) +"buh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/turf/open/floor/wood, +/area/library) +"bui" = ( +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the escape arm is."; + icon_state = "direction_evac"; + name = "escape arm" + }, +/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 = 8 + }, +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the research department is."; + icon_state = "direction_sci"; + name = "research department"; + pixel_y = -8 + }, +/turf/closed/wall, +/area/library) +"buj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"buk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + sortType = 15 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bul" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"bum" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access = null; + req_access_txt = "57" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bun" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"buo" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bup" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"buq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/holopad, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bur" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bus" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"but" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"buu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access = null; + req_access_txt = "57" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"buv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/darkblue/corner, +/area/bridge) +"buw" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bux" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/bridge) +"buy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/bookcase, +/turf/open/floor/wood, +/area/bridge) +"buz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/bridge) +"buA" = ( +/obj/machinery/door/airlock/command{ + name = "Command Desk"; + req_access = null; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/vault, +/area/bridge) +"buB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/bridge) +"buC" = ( +/obj/structure/bookcase, +/turf/open/floor/wood, +/area/bridge) +"buD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -26 + }, +/turf/open/floor/plasteel/darkblue/corner, +/area/bridge) +"buE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/bridge) +"buF" = ( +/obj/machinery/vending/boozeomat, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"buG" = ( +/obj/machinery/holopad{ + pixel_x = 9; + pixel_y = -9 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"buH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"buI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"buJ" = ( +/obj/machinery/camera{ + c_tag = "Captain's Office"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"buK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Captain's Office - Emergency Escape"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/central) +"buL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"buM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"buN" = ( +/obj/machinery/vending/boozeomat, +/turf/closed/wall, +/area/crew_quarters/bar) +"buO" = ( +/obj/machinery/door/airlock{ + name = "Bar Storage"; + req_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "wood" + }, +/area/crew_quarters/bar) +"buP" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/obj/structure/sign/barsign{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/crew_quarters/bar) +"buQ" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/turf/open/floor/carpet, +/area/crew_quarters/bar) +"buR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"buS" = ( +/obj/machinery/disposal/bin{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"buT" = ( +/obj/machinery/computer/arcade, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"buU" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/starboard) +"buV" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard) +"buX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"buY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;25;46" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"buZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/caution{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bva" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvb" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/caution{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bvc" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bvd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bve" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard) +"bvf" = ( /obj/item/device/radio/intercom{ broadcasting = 0; freerange = 1; @@ -27753,8988 +35094,72 @@ }, /turf/open/floor/circuit/green, /area/ai_monitored/turret_protected/ai) -"bel" = ( -/obj/machinery/camera{ - c_tag = "AI Chamber - Starboard"; - dir = 8; - network = list("RD") - }, -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/ai_monitored/turret_protected/ai) -"bem" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; - name = "Arrival Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"ben" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"beo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/secondary/entry) -"bep" = ( -/turf/closed/wall, -/area/security/checkpoint/customs) -"beq" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ber" = ( -/obj/item/stack/sheet/cardboard, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bes" = ( -/turf/closed/wall, -/area/quartermaster/sorting) -"bet" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"beu" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/conveyor{ - backwards = 1; - dir = 2; - forwards = 2; - id = "packageSort2" - }, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bev" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/quartermaster/sorting) -"bew" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/power/apc{ - dir = 8; - name = "Cargo Office APC"; - areastring = "/area/quartermaster/office"; - pixel_x = -24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/brown{ - dir = 9 - }, -/area/quartermaster/office) -"bex" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/office) -"bey" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/status_display{ - pixel_y = 32; - supply_display = 1 - }, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/office) -"bez" = ( -/turf/open/floor/plasteel/brown/corner{ - dir = 1 - }, -/area/quartermaster/office) -"beA" = ( -/obj/effect/landmark/start/cargo_technician, -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/office) -"beB" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westleft{ - dir = 8; - name = "Cargo Desk"; - req_access_txt = "50" - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"beC" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beE" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beF" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beG" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Foyer"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/hallway/primary/port) -"beH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -29 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"beI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"beJ" = ( -/turf/closed/wall, -/area/janitor) -"beK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_access_txt = "26" - }, -/turf/open/floor/plasteel, -/area/janitor) -"beL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/janitor) -"beM" = ( -/turf/closed/wall, -/area/maintenance/central) -"beN" = ( -/obj/machinery/door/airlock{ - name = "Central Emergency Storage"; - req_access_txt = "0" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/central) -"beO" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/central) -"beP" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain/private) -"beQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain/private) -"beR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"beS" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"beT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"beU" = ( -/obj/structure/rack, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/clothing/suit/hazardvest, -/obj/item/device/multitool, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/storage/tools) -"beV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/storage/tools) -"beW" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/storage/tools) -"beX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/storage/tools) -"beY" = ( -/obj/machinery/camera{ - c_tag = "Auxiliary Tool Storage"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 4 - }, -/area/storage/tools) -"beZ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bfa" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bfb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/storage/tech) -"bfc" = ( -/obj/structure/rack, -/obj/item/circuitboard/computer/crew{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/circuitboard/computer/card{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/circuitboard/computer/communications{ - pixel_x = 5; - pixel_y = -5 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bfd" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bfe" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage"; - req_access_txt = "19;23" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bff" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bfg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bfh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bfi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bfj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bfk" = ( -/obj/structure/table, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/item/wirecutters, -/obj/item/device/multitool, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bfl" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bfm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/heads/chief) -"bfn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/crew_quarters/heads/chief) -"bfo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/heads/chief) -"bfp" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bfq" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bfr" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engine/engineering) -"bfs" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/delivery, -/obj/item/clothing/glasses/meson/engine, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bft" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Engineering Security APC"; - areastring = "/area/security/checkpoint/engineering"; - pixel_x = -24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/checkpoint/engineering) -"bfu" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bfv" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring the engine."; - dir = 8; - name = "Engine Monitor"; - network = list("Engine"); - pixel_x = 32 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/checkpoint/engineering) -"bfw" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard) -"bfx" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bfy" = ( -/obj/structure/closet/firecloset, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bfz" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"bfA" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"bfB" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/ai_status_display{ - pixel_x = -32 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"bfC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/secondary/entry) -"bfD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/checkpoint/customs) -"bfE" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/checkpoint/customs) -"bfF" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Customs APC"; - areastring = "/area/security/checkpoint/customs"; - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/customs) -"bfG" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/obj/machinery/computer/security, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/customs) -"bfH" = ( -/obj/machinery/computer/card, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/obj/machinery/camera{ - c_tag = "Customs Checkpoint"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/customs) -"bfI" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/newscaster/security_unit{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/customs) -"bfJ" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 30 - }, -/obj/structure/closet/secure_closet/security, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/checkpoint/customs) -"bfK" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"bfL" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bfM" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/closed/wall, -/area/quartermaster/sorting) -"bfN" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bfO" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bfP" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bfQ" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/structure/plasticflaps{ - opacity = 0 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bfR" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bfS" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/office) -"bfT" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bfU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bfV" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bfW" = ( -/obj/machinery/computer/cargo{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/office) -"bfX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"bfY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bfZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bga" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgc" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/hallway/primary/port) -"bgd" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/hallway/primary/port) -"bge" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/brown/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bgf" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - sortType = 22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"bgh" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/light_switch{ - pixel_x = 8; - pixel_y = 30 - }, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bgi" = ( -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bgj" = ( -/obj/structure/closet/l3closet/janitor, -/obj/machinery/airalarm{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bgk" = ( -/obj/structure/closet/jcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bgl" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/central) -"bgm" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bgn" = ( -/turf/closed/wall/r_wall, -/area/maintenance/central) -"bgo" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bgp" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/wood, -/obj/item/pinpointer/nuke, -/obj/item/disk/nuclear, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bgq" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/computer/security/wooden_tv, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bgr" = ( -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bgs" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bgt" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/filingcabinet{ - pixel_x = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bgu" = ( -/obj/machinery/light_switch{ - pixel_x = 28 - }, -/obj/structure/dresser, -/obj/item/storage/secure/safe{ - pixel_x = 6; - pixel_y = 28 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bgv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bgw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"bgy" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 10 - }, -/area/storage/tools) -"bgz" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/yellow/side{ - dir = 2 - }, -/area/storage/tools) -"bgA" = ( -/turf/open/floor/plasteel/yellow/side{ - dir = 2 - }, -/area/storage/tools) -"bgB" = ( -/obj/structure/rack, -/obj/item/electronics/apc, -/obj/item/electronics/airlock, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/yellow/side{ - dir = 2 - }, -/area/storage/tools) -"bgC" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/rods/fifty, -/turf/open/floor/plasteel/yellow/side{ - dir = 6 - }, -/area/storage/tools) -"bgD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bgE" = ( -/obj/structure/rack, -/obj/item/circuitboard/computer/robotics{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/circuitboard/computer/mecha_control{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bgF" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bgG" = ( -/obj/machinery/vending/assist, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bgH" = ( -/obj/structure/table, -/obj/item/device/plant_analyzer, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bgI" = ( -/obj/structure/table, -/obj/item/device/analyzer, -/obj/item/device/healthanalyzer, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bgJ" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/device/multitool, -/obj/item/clothing/glasses/meson, -/obj/machinery/light_switch{ - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bgK" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bgL" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bgM" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bgN" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -29 - }, -/obj/machinery/suit_storage_unit/ce, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bgO" = ( -/obj/structure/rack, -/obj/item/storage/secure/briefcase, -/obj/item/clothing/mask/cigarette/cigar, -/obj/machinery/computer/security/telescreen{ - dir = 1; - name = "MiniSat Monitor"; - network = list("MiniSat","tcomm"); - pixel_y = -30 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bgP" = ( -/obj/structure/rack, -/obj/item/lighter, -/obj/item/clothing/glasses/meson, -/obj/machinery/button/door{ - id = "ceprivacy"; - name = "Privacy Shutters Control"; - pixel_y = -26 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bgQ" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/simple_animal/parrot/Poly, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bgR" = ( -/obj/structure/closet/secure_closet/engineering_chief{ - req_access_txt = "0" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bgS" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_access_txt = "10" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engine/engineering) -"bgT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/camera/autoname{ - dir = 4; - network = list("SS13") - }, -/obj/machinery/button/door{ - desc = "A remote control-switch for the engineering security doors."; - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_x = -24; - pixel_y = -6; - req_access_txt = "1" - }, -/obj/machinery/button/door{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_x = -24; - pixel_y = 5; - req_access_txt = "1" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/checkpoint/engineering) -"bgU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/engineering) -"bgV" = ( -/obj/structure/closet/secure_closet/security/engine, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/checkpoint/engineering) -"bgW" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bgX" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 5 - }, -/turf/open/space, -/area/space/nearstation) -"bgY" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bgZ" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bha" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 10 - }, -/turf/open/space, -/area/space/nearstation) -"bhb" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"bhc" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bhd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Port Fore"; - dir = 8; - network = list("MiniSat") - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bhe" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"bhf" = ( -/obj/machinery/porta_turret/ai{ - dir = 2 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_y = 24 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/ai) -"bhg" = ( -/obj/machinery/power/apc{ - aidisabled = 0; - dir = 1; - name = "AI Chamber APC"; - areastring = "/area/ai_monitored/turret_protected/ai"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"bhh" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"bhi" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Starboard Fore"; - dir = 4; - network = list("MiniSat") - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bhj" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bhk" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bhl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/checkpoint/customs) -"bhm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/checkpoint/customs) -"bhn" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bho" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bhp" = ( -/obj/structure/chair/office/dark, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bhq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bhr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/checkpoint/customs) -"bhs" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bht" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bhu" = ( -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bhv" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mailroom Maintenance"; - req_access_txt = "50" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bhw" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bhx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bhy" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bhz" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort2"; - pixel_x = -2; - pixel_y = 12 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bhA" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Office"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/office) -"bhB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bhC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bhD" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bhE" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/office) -"bhF" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/office) -"bhG" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bhH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bhI" = ( -/turf/open/floor/plasteel/brown/corner{ - dir = 4 - }, -/area/hallway/primary/port) -"bhJ" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/hallway/primary/port) -"bhK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/brown/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"bhL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"bhM" = ( -/obj/item/restraints/legcuffs/beartrap, -/obj/item/restraints/legcuffs/beartrap, -/obj/structure/table, -/obj/machinery/requests_console{ - department = "Janitorial"; - departmentType = 1; - pixel_x = -29 - }, -/obj/item/reagent_containers/spray/cleaner, -/obj/machinery/camera{ - c_tag = "Custodial Closet"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bhN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plating, -/area/janitor) -"bhO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bhP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bhQ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Custodial Maintenance"; - req_access_txt = "26" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bhR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bhS" = ( -/obj/item/device/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bhT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/central) -"bhU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/bridge) -"bhV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/bridge) -"bhW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bhX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bhY" = ( -/turf/closed/wall/r_wall, -/area/bridge) -"bhZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bia" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/bridge) -"bib" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster/security_unit{ - pixel_x = -30; - pixel_y = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bic" = ( -/obj/effect/landmark/start/captain, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bid" = ( -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bie" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bif" = ( -/obj/machinery/door/window/westright, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"big" = ( -/obj/structure/bed, -/obj/item/bedsheet/captain, -/obj/effect/landmark/start/captain, -/obj/machinery/camera{ - c_tag = "Captain's Quarters"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bih" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bii" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/yellow/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"bij" = ( -/obj/structure/sign/directions/security{ - desc = "A direction sign, pointing out which way the security department is."; - dir = 1; - icon_state = "direction_sec"; - pixel_y = 8 - }, -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the engineering department is."; - dir = 4; - icon_state = "direction_eng" - }, -/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 = -8 - }, -/turf/closed/wall/r_wall, -/area/storage/tools) -"bik" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/storage/tools) -"bil" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Auxiliary Tool Storage"; - req_access_txt = "12" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/storage/tools) -"bim" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/storage/tools) -"bin" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/map/left{ - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault, -/area/hallway/primary/starboard) -"bio" = ( -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/vault, -/area/hallway/primary/starboard) -"bip" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"biq" = ( -/turf/closed/wall, -/area/hallway/primary/starboard) -"bir" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/storage/tech) -"bis" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage"; - req_access_txt = "0"; - req_one_access_txt = "23;30" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bit" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "ceprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/chief) -"biu" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "ceprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/chief) -"biv" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Security Doors" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"biw" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Security Doors" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bix" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"biy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Engineering Security Post"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"biz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"biA" = ( -/turf/open/floor/plating, -/area/engine/break_room) -"biB" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/break_room) -"biC" = ( -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 8 - }, -/turf/closed/wall/mineral/titanium, -/area/shuttle/pod_4) -"biD" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/pod_4) -"biE" = ( -/obj/structure/lattice, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"biF" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Space Access Airlock"; - req_one_access_txt = "32;19" - }, -/turf/open/floor/plating, -/area/aisat) -"biG" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/aisat) -"biH" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/aisat) -"biI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/aisat) -"biJ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "MiniSat Airlock Access"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"biK" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"biL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"biM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"biN" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"biO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"biP" = ( -/obj/structure/table/reinforced, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_x = 28 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"biQ" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/space, -/area/space/nearstation) -"biR" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/space, -/area/space/nearstation) -"biS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/secondary/entry) -"biT" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/closet, -/obj/item/crowbar, -/obj/item/device/assembly/flash/handheld, -/obj/item/device/radio, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/checkpoint/customs) -"biU" = ( -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/customs) -"biV" = ( -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/structure/table/reinforced, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/customs) -"biW" = ( -/obj/item/paper, -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor{ - dir = 2; - name = "Arrivals Security Checkpoint"; - pixel_y = -8; - req_access_txt = "1" - }, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/customs) -"biX" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table/reinforced, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/customs) -"biY" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/closet/wardrobe/red, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/checkpoint/customs) -"biZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bja" = ( -/obj/machinery/space_heater, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bjb" = ( -/obj/structure/disposalpipe/sorting/wrap{ - dir = 1 - }, -/turf/closed/wall, -/area/quartermaster/sorting) -"bjc" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bjd" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/eastleft{ - name = "Mail"; - req_access_txt = "50" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bje" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bjf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bjg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bjh" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bji" = ( -/obj/machinery/status_display{ - pixel_y = 32; - supply_display = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bjj" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bjk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Mailroom"; - req_access_txt = "0"; - req_one_access_txt = "48;50" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bjl" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/office) -"bjm" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bjn" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bjo" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/cargo_technician, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bjp" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/office) -"bjq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Office"; - req_access_txt = "0"; - req_one_access_txt = "48;50" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bjr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/hallway/primary/port) -"bjs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bjt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bju" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bjv" = ( -/turf/open/floor/plasteel/brown/corner{ - dir = 2 - }, -/area/hallway/primary/port) -"bjw" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/brown{ - dir = 2 - }, -/area/hallway/primary/port) -"bjx" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Custodial Closet APC"; - areastring = "/area/janitor"; - pixel_x = -24 - }, -/obj/structure/table, -/obj/item/clothing/gloves/color/orange, -/obj/item/storage/box/mousetraps, -/obj/item/storage/box/mousetraps, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bjy" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/portable_atmospherics/canister/water_vapor, -/mob/living/simple_animal/hostile/lizard{ - name = "Wags-His-Tail"; - real_name = "Wags-His-Tail" - }, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bjz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/landmark/start/janitor, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bjA" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bjB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/central) -"bjC" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/power/apc{ - dir = 4; - name = "Central Maintenance APC"; - areastring = "/area/maintenance/central"; - pixel_x = 26 - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/maintenance/central) -"bjD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/bridge) -"bjE" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/computer/card, -/turf/open/floor/plasteel/darkgreen/side{ - dir = 9 - }, -/area/bridge) -"bjF" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/plasteel/darkgreen/side{ - dir = 1 - }, -/area/bridge) -"bjG" = ( -/obj/machinery/computer/crew, -/turf/open/floor/plasteel/darkgreen/side{ - dir = 1 - }, -/area/bridge) -"bjH" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/item/folder/yellow{ - pixel_y = 4 - }, -/obj/machinery/camera{ - c_tag = "Bridge - Central"; - dir = 2; - network = list("SS13") - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/darkbrown/side{ - dir = 1 - }, -/area/bridge) -"bjI" = ( -/obj/machinery/computer/station_alert, -/turf/open/floor/plasteel/darkbrown/side{ - dir = 1 - }, -/area/bridge) -"bjJ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/computer/monitor{ - name = "Bridge Power Monitoring Console" - }, -/turf/open/floor/plasteel/darkbrown/side{ - dir = 1 - }, -/area/bridge) -"bjK" = ( -/obj/machinery/computer/atmos_alert, -/turf/open/floor/plasteel/darkbrown/side{ - dir = 1 - }, -/area/bridge) -"bjL" = ( -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/darkbrown/side{ - dir = 1 - }, -/area/bridge) -"bjM" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel/darkred/side{ - dir = 1 - }, -/area/bridge) -"bjN" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel/darkred/side{ - dir = 1 - }, -/area/bridge) -"bjO" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/computer/prisoner, -/turf/open/floor/plasteel/darkred/side{ - dir = 5 - }, -/area/bridge) -"bjP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/bridge) -"bjQ" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album{ - pixel_y = -4 - }, -/obj/item/device/camera{ - pixel_y = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Captain)"; - pixel_x = -28 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bjR" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/item/razor{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/clothing/mask/cigarette/cigar, -/obj/item/reagent_containers/food/drinks/flask/gold, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bjS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bjT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bjU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bjV" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/holopad, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bjW" = ( -/obj/structure/table/wood, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bjX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bjY" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=14.2-Central-CrewQuarters"; - location = "14-Starboard-Central" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjZ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"bka" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Primary Hallway" - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bkb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bkc" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bkd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bke" = ( -/obj/machinery/firealarm{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bkf" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway - Tech Storage"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bkg" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bkh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bki" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bkj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bkk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bkl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bkm" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bkn" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bko" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Starboard Hallway APC"; - areastring = "/area/hallway/primary/starboard"; - pixel_y = 26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bkp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bkq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=14-Starboard-Central"; - location = "13.3-Engineering-Central" - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bkr" = ( -/turf/closed/wall/r_wall, -/area/engine/break_room) -"bks" = ( -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/glass, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bkt" = ( -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/book/manual/wiki/engineering_construction{ - pixel_y = 3 - }, -/obj/item/book/manual/wiki/engineering_guide{ - pixel_x = -4 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bku" = ( -/obj/item/folder/yellow, -/obj/item/folder/yellow, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/structure/table/glass, -/obj/item/storage/firstaid/fire{ - pixel_y = 8 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bkv" = ( -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bkw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bkx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bky" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bkz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bkA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bkB" = ( -/obj/machinery/disposal/bin{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bkC" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/break_room) -"bkD" = ( -/obj/machinery/door/airlock/titanium{ - name = "Escape Pod Airlock" - }, -/obj/docking_port/mobile/pod{ - dir = 4; - id = "pod4"; - name = "escape pod 4"; - port_direction = 2; - preferred_direction = 4; - timid = 0 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_4) -"bkE" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/item/storage/pod{ - pixel_x = 6; - pixel_y = -32 - }, -/obj/machinery/light/small, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_4) -"bkF" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_y = -32; - possible_destinations = "pod_lavaland4"; - shuttleId = "pod4" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_4) -"bkG" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/pod_4) -"bkH" = ( -/obj/docking_port/stationary/random{ - dir = 4; - id = "pod_lavaland4"; - name = "lavaland" - }, -/turf/open/space, -/area/space/nearstation) -"bkI" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"bkJ" = ( -/obj/machinery/light/small, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Space Access"; - dir = 1; - network = list("MiniSat") - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/aisat) -"bkK" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window{ - dir = 8; - name = "MiniSat Airlock Access"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bkL" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue{ - pixel_y = 2 - }, -/obj/item/pen, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bkM" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bkN" = ( -/obj/machinery/camera{ - c_tag = "AI Chamber - Aft"; - dir = 1; - network = list("RD") - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bkO" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bkP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bkQ" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bkR" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue{ - pixel_y = 2 - }, -/obj/item/pen, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bkS" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 15; - id = "arrivals_stationary"; - name = "arrivals"; - width = 7; - roundstart_template = /datum/map_template/shuttle/arrival/box; - - }, -/turf/open/space/basic, -/area/space) -"bkT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bkU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/secondary/entry) -"bkV" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall, -/area/security/checkpoint/customs) -"bkW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/security/checkpoint/customs) -"bkX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/security{ - name = "Customs Desk"; - req_access = null; - req_access_txt = "1" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bkY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/security/checkpoint/customs) -"bkZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bla" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;48;50;1" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"blb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/port/fore) -"blc" = ( -/obj/machinery/door/window/eastleft{ - base_state = "right"; - icon_state = "right"; - name = "Deliveries"; - req_access_txt = "50" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bld" = ( -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - id = "packageExternal"; - pixel_y = 18 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"ble" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"blf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"blg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"blh" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bli" = ( -/obj/structure/table, -/obj/item/device/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/quartermaster/sorting) -"blj" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/folder/yellow, -/obj/item/device/multitool, -/obj/item/pen/red, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/office) -"blk" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bll" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"blm" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/office) -"bln" = ( -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/hallway/primary/port) -"blo" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"blp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"blq" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"blr" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/hallway/primary/port) -"bls" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/box/lights/mixed, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"blt" = ( -/obj/structure/janitorialcart, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"blu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light/small, -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/vehicle/ridden/janicart, -/obj/item/key/janitor, -/turf/open/floor/plating, -/area/janitor) -"blv" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"blw" = ( -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/central) -"blx" = ( -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/maintenance/central) -"bly" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"blz" = ( -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/darkgreen/side{ - dir = 8 - }, -/area/bridge) -"blA" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"blB" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"blC" = ( -/turf/open/floor/plasteel/dark, -/area/bridge) -"blD" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"blE" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"blF" = ( -/obj/item/folder/red{ - pixel_y = 3 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/folder/red{ - pixel_y = 3 - }, -/turf/open/floor/plasteel/darkred/side{ - dir = 4 - }, -/area/bridge) -"blG" = ( -/turf/closed/wall, -/area/crew_quarters/heads/captain/private) -"blH" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/bikehorn/rubberducky, -/obj/machinery/light_switch{ - pixel_x = -28 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"blI" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Captain's Bedroom"; - req_access_txt = "20" - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"blJ" = ( -/obj/structure/closet/secure_closet/captains, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"blK" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/machinery/suit_storage_unit/captain, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"blL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"blM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"blN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"blO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Primary Hallway" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blP" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blR" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blS" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blT" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blU" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blV" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blW" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blX" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blY" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blZ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bma" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bmb" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bmc" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bmd" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bme" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 28 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/caution/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bmf" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/light_switch{ - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bmg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bmh" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bmi" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bmj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bmk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bml" = ( -/turf/open/floor/plasteel, -/area/engine/break_room) -"bmm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - name = "Escape Pod Four"; - req_access = null; - req_access_txt = "32" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bmn" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/engine/break_room) -"bmo" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bmp" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat/foyer) -"bmq" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bmr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bms" = ( -/obj/machinery/door/airlock/highsecurity{ - locked = 0; - name = "AI Chamber"; - req_access_txt = "16" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "AI Chamber entrance shutters"; - name = "AI Chamber entrance shutters" - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = -26; - pixel_y = 3 - }, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_x = 28 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bmt" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/satellite) -"bmu" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bmv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white/corner{ - dir = 4 - }, -/area/hallway/secondary/entry) -"bmw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/arrival{ - dir = 5 - }, -/area/hallway/secondary/entry) -"bmx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bmy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 9 - }, -/area/hallway/primary/port) -"bmz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bmA" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bmB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 5 - }, -/area/hallway/primary/port) -"bmC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bmD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 9 - }, -/area/hallway/primary/port) -"bmE" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/hallway/primary/port) -"bmF" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 30 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 5 - }, -/area/hallway/primary/port) -"bmG" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageExternal" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bmH" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/machinery/computer/stockexchange, -/turf/open/floor/plasteel/arrival{ - dir = 2 - }, -/area/quartermaster/sorting) -"bmI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair/office/dark, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel/arrival{ - dir = 2 - }, -/area/quartermaster/sorting) -"bmJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/arrival{ - dir = 2 - }, -/area/quartermaster/sorting) -"bmK" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Mailroom"; - dir = 1; - network = list("SS13") - }, -/turf/open/floor/plasteel/arrival{ - dir = 2 - }, -/area/quartermaster/sorting) -"bmL" = ( -/obj/structure/table, -/obj/item/stack/wrapping_paper, -/obj/item/stack/wrapping_paper, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_y = -30 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/storage/box/lights/mixed, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/arrival{ - dir = 2 - }, -/area/quartermaster/sorting) -"bmM" = ( -/obj/item/storage/box, -/obj/structure/table, -/obj/item/storage/box, -/obj/item/storage/box, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/item/hand_labeler, -/obj/machinery/power/apc{ - dir = 4; - name = "Delivery Office APC"; - areastring = "/area/quartermaster/sorting"; - pixel_x = 26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/arrival{ - dir = 6 - }, -/area/quartermaster/sorting) -"bmN" = ( -/obj/structure/table, -/obj/machinery/computer/stockexchange, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/turf/open/floor/plasteel/brown{ - dir = 10 - }, -/area/quartermaster/office) -"bmO" = ( -/obj/machinery/photocopier, -/turf/open/floor/plasteel/brown{ - dir = 2 - }, -/area/quartermaster/office) -"bmP" = ( -/turf/open/floor/plasteel/brown{ - dir = 2 - }, -/area/quartermaster/office) -"bmQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/holopad, -/turf/open/floor/plasteel/brown{ - dir = 2 - }, -/area/quartermaster/office) -"bmR" = ( -/obj/machinery/autolathe, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/turf/open/floor/plasteel/brown{ - dir = 6 - }, -/area/quartermaster/office) -"bmS" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/brown{ - dir = 10 - }, -/area/hallway/primary/port) -"bmT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/holopad, -/turf/open/floor/plasteel/brown/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bmU" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/brown/corner{ - dir = 2 - }, -/area/hallway/primary/port) -"bmV" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/rack, -/obj/item/storage/box, -/obj/item/storage/box, -/obj/item/storage/box, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/hand_labeler, -/turf/open/floor/plasteel/brown{ - dir = 2 - }, -/area/hallway/primary/port) -"bmW" = ( -/obj/structure/table, -/obj/item/device/toner, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 30 - }, -/turf/open/floor/plasteel/brown{ - dir = 6 - }, -/area/hallway/primary/port) -"bmX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"bmY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"bmZ" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hop) -"bna" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/tank/internals/air, -/turf/open/floor/plating, -/area/maintenance/central) -"bnb" = ( -/obj/item/extinguisher, -/turf/open/floor/plating, -/area/maintenance/central) -"bnc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/modular_computer/console/preset/command, -/turf/open/floor/plasteel/darkblue/side{ - dir = 9 - }, -/area/bridge) -"bnd" = ( -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_y = 29 - }, -/obj/machinery/modular_computer/console/preset/engineering, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bne" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/darkgreen/corner{ - dir = 1 - }, -/area/bridge) -"bnf" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bng" = ( -/obj/item/device/radio/beacon, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bnh" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/recharger{ - pixel_y = 3 - }, -/obj/item/restraints/handcuffs{ - pixel_y = 3 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/darkred/corner{ - dir = 4 - }, -/area/bridge) -"bni" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/computer/security/mining{ - network = list("MINE","AuxBase") - }, -/obj/machinery/keycard_auth{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bnj" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_x = 32 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/computer/cargo/request, -/turf/open/floor/plasteel/darkblue/side{ - dir = 5 - }, -/area/bridge) -"bnk" = ( -/obj/effect/landmark/xeno_spawn, -/obj/item/soap/deluxe, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/shower{ - pixel_y = 12 - }, -/obj/structure/curtain, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/captain/private) -"bnl" = ( -/obj/structure/mirror{ - pixel_y = 28 - }, -/obj/structure/sink{ - pixel_y = 17 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/captain/private) -"bnm" = ( -/obj/structure/toilet{ - pixel_y = 13 - }, -/obj/machinery/light{ - dir = 2 - }, -/obj/effect/landmark/start/captain, -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/captain/private) -"bnn" = ( -/obj/machinery/door/airlock/silver{ - name = "Bathroom" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/captain/private) -"bno" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bnp" = ( -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bnq" = ( -/obj/effect/landmark/start/captain, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bnr" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bns" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=13.1-Engineering-Enter"; - location = "12-Central-Starboard" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bnt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/yellow/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"bnu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Primary Hallway" - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnw" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnx" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bny" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway - Auxiliary Tool Storage"; - dir = 1; - network = list("SS13") - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnE" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnH" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway - Engineering"; - dir = 1; - network = list("SS13") - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnI" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=13.2-Tcommstore"; - location = "13.1-Engineering-Enter" - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnJ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bnK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/caution/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bnL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/engine/break_room) -"bnM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bnN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bnO" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bnP" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bnQ" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bnR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bnS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bnT" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bnU" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall/r_wall, -/area/engine/break_room) -"bnV" = ( -/turf/closed/wall/mineral/plastitanium, -/area/engine/break_room) -"bnW" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved/flipped{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bnX" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/crossing/horizontal, -/turf/open/space, -/area/space/nearstation) -"bnY" = ( -/obj/structure/transit_tube/curved{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"bnZ" = ( -/turf/closed/wall, -/area/space/nearstation) -"boa" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/space, -/area/space/nearstation) -"bob" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/obj/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/aisat) -"boc" = ( -/obj/machinery/computer/teleporter, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat/foyer) -"bod" = ( -/obj/machinery/teleport/station, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat/foyer) -"boe" = ( -/obj/machinery/teleport/hub, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat/foyer) -"bof" = ( -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/machinery/porta_turret/ai{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the RD's goons from the safety of his office."; - dir = 4; - name = "Research Monitor"; - network = list("RD"); - pixel_x = -28 - }, -/turf/open/floor/plasteel/vault{ - dir = 1 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bog" = ( -/obj/structure/showcase/cyborg/old{ - dir = 2; - pixel_y = 20 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"boh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"boi" = ( -/obj/structure/showcase/cyborg/old{ - dir = 2; - pixel_y = 20 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 4 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"boj" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/porta_turret/ai{ - dir = 2 - }, -/obj/machinery/computer/security/telescreen{ - dir = 8; - name = "MiniSat Monitor"; - network = list("MiniSat","tcomm"); - pixel_x = 28 - }, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bok" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/storage/satellite) -"bol" = ( -/obj/machinery/recharge_station, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/storage/satellite) -"bom" = ( -/obj/machinery/airalarm{ - pixel_y = 26 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 2; - name = "Auxiliary MiniSat Distribution Port" - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/storage/satellite) -"bon" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/storage/satellite) -"boo" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bop" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/secondary/entry) -"boq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bor" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 10 - }, -/area/hallway/primary/port) -"bos" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral/side, -/area/hallway/primary/port) -"bot" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=5-Customs"; - location = "4-Customs" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/neutral/side, -/area/hallway/primary/port) -"bou" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/side, -/area/hallway/primary/port) -"bov" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 6 - }, -/area/hallway/primary/port) -"bow" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 10 - }, -/area/hallway/primary/port) -"box" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"boy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/hallway/primary/port) -"boz" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageExternal" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"boA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/machinery/door/window/westleft{ - dir = 1; - name = "Delivery Desk"; - req_access_txt = "50" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"boB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"boC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/mineral/ore_redemption, -/turf/open/floor/plasteel/dark, -/area/quartermaster/office) -"boD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/quartermaster/office) -"boE" = ( -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the Supply department is."; - dir = 1; - icon_state = "direction_supply"; - name = "cargo department"; - pixel_y = 8 - }, -/turf/closed/wall, -/area/quartermaster/office) -"boF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/hallway/primary/port) -"boG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/hallway/primary/port) -"boH" = ( -/obj/structure/sign/directions/security{ - desc = "A direction sign, pointing out which way the security department is."; - dir = 1; - icon_state = "direction_sec"; - pixel_y = 8 - }, -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the engineering department is."; - dir = 4; - icon_state = "direction_eng" - }, -/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 = -8 - }, -/turf/closed/wall/r_wall, -/area/hallway/primary/port) -"boI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"boJ" = ( -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/button/door{ - id = "hop"; - name = "Privacy Shutters Control"; - pixel_y = 25; - req_access_txt = "28" - }, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"boK" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/storage/secure/briefcase, -/obj/structure/table/wood, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching Prison Wing holding areas."; - name = "Prison Monitor"; - network = list("Prison"); - pixel_y = 30 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"boL" = ( -/obj/machinery/recharger, -/obj/item/storage/secure/safe{ - pixel_x = 34 - }, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"boM" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/central) -"boN" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/central) -"boO" = ( -/obj/item/device/radio/off, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"boP" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Bridge" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/central) -"boQ" = ( -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Bridge Deliveries"; - req_access_txt = "19" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/bridge) -"boR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 8 - }, -/area/bridge) -"boS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"boT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"boU" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"boV" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/darkblue/corner, -/area/bridge) -"boW" = ( -/obj/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 2 - }, -/area/bridge) -"boX" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/window/brigdoor{ - dir = 2; - name = "Command Desk"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 2 - }, -/area/bridge) -"boY" = ( -/obj/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 2 - }, -/area/bridge) -"boZ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/bridge) -"bpa" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bpb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bpc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/camera{ - c_tag = "Bridge - Starboard"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 4 - }, -/area/bridge) -"bpd" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters"; - req_access = null; - req_access_txt = "20" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bpe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bpf" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/yellow/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"bpg" = ( -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the escape arm is."; - icon_state = "direction_evac"; - name = "escape arm" - }, -/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 = 8 - }, -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the research department is."; - icon_state = "direction_sci"; - name = "research department"; - pixel_y = -8 - }, -/turf/closed/wall, -/area/storage/art) -"bph" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/storage/art) -"bpi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Art Storage" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/storage/art) -"bpj" = ( -/turf/closed/wall, -/area/storage/art) -"bpk" = ( -/turf/closed/wall, -/area/crew_quarters/bar) -"bpl" = ( -/turf/closed/wall, -/area/maintenance/starboard) -"bpm" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;25;46" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bpn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/starboard) -"bpo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock{ - name = "Starboard Emergency Storage"; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bpp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;25;46" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bpq" = ( -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the engineering department is."; - dir = 4; - icon_state = "direction_eng"; - pixel_y = 8 - }, -/turf/closed/wall, -/area/maintenance/starboard) -"bpr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bps" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bpt" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bpu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Foyer"; - req_access_txt = "0"; - req_one_access_txt = "32;19" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bpv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bpw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bpx" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bpy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bpz" = ( -/obj/structure/table/glass, -/obj/item/device/lightreplacer{ - pixel_y = 7 - }, -/obj/item/storage/belt/utility, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bpA" = ( -/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko{ - pixel_y = 4 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bpB" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bpC" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Foyer - Starboard"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bpD" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 4 - }, -/area/engine/break_room) -"bpE" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/structure/transit_tube/station/reverse/flipped{ - dir = 1 - }, -/obj/structure/transit_tube_pod{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 4 - }, -/area/engine/break_room) -"bpF" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/structure/transit_tube/curved{ - dir = 8 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 4 - }, -/area/engine/break_room) -"bpG" = ( -/obj/structure/transit_tube/diagonal, -/turf/open/space, -/area/space/nearstation) -"bpH" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/transit_tube/curved/flipped, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/aisat) -"bpI" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/aisat) -"bpJ" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/aisat) -"bpK" = ( -/obj/machinery/door/window{ - dir = 1; - name = "MiniSat Walkway Access"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/aisat) -"bpL" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/aisat) -"bpM" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/aisat) -"bpN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/aisat) -"bpO" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/ai_monitored/turret_protected/aisat/foyer) -"bpP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/ai_monitored/turret_protected/aisat/foyer) -"bpQ" = ( -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/aisat_interior"; - enabled = 1; - icon_state = "control_standby"; - name = "Antechamber Turret Control"; - pixel_x = 30; - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/ai_monitored/turret_protected/aisat/foyer) -"bpR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bpS" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "MiniSat - Antechamber"; - dir = 4; - network = list("MiniSat") - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bpT" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bpU" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/start/cyborg, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bpV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 4 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bpW" = ( -/obj/machinery/power/apc{ - aidisabled = 0; - dir = 4; - name = "MiniSat Antechamber APC"; - areastring = "/area/ai_monitored/turret_protected/aisat_interior"; - pixel_x = 29 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 4 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bpX" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bpY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bpZ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bqa" = ( -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bqb" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Arrivals - Station Entrance"; - dir = 4; - network = list("SS13") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bqc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bqd" = ( -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/secondary/entry) -"bqe" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bqf" = ( -/obj/structure/chair/comfy/beige, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bqg" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bqh" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/chips, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bqi" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"bqj" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/hallway/primary/port) -"bqk" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/port) -"bql" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bqm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bqn" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bqo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bqp" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bqq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Port Primary Hallway - Middle"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bqr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bqs" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Port Hallway APC"; - areastring = "/area/hallway/primary/port"; - pixel_x = -1; - pixel_y = 26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bqt" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bqu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bqv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/brown/corner{ - dir = 4 - }, -/area/hallway/primary/port) -"bqw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/brown/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bqx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/brown/corner{ - dir = 4 - }, -/area/hallway/primary/port) -"bqy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/brown/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bqz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Port Primary Hallway" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bqA" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"bqB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=4-Customs"; - location = "3-Central-Port" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bqC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "hop"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hop) -"bqD" = ( -/obj/item/folder/blue, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/table/wood, -/obj/item/device/assembly/flash/handheld, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bqE" = ( -/obj/effect/landmark/start/head_of_personnel, -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bqF" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = 32 - }, -/obj/machinery/computer/security/mining{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bqG" = ( -/obj/machinery/power/apc/highcap/ten_k{ - dir = 8; - name = "Bridge APC"; - areastring = "/area/bridge"; - pixel_x = -27 - }, -/obj/structure/cable/yellow, -/obj/machinery/camera{ - c_tag = "Bridge - Port"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 8 - }, -/area/bridge) -"bqH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bqI" = ( -/turf/open/floor/plasteel/darkblue/corner, -/area/bridge) -"bqJ" = ( -/turf/open/floor/plasteel/darkblue/side{ - dir = 2 - }, -/area/bridge) -"bqK" = ( -/turf/open/floor/plasteel/darkblue/side{ - dir = 6 - }, -/area/bridge) -"bqL" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/recharger, -/obj/item/restraints/handcuffs, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bqM" = ( -/obj/machinery/computer/communications, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bqN" = ( -/obj/machinery/computer/security/wooden_tv{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bqO" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/folder/blue{ - pixel_y = 2 - }, -/obj/item/folder/blue{ - pixel_y = 2 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bqP" = ( -/turf/open/floor/plasteel/darkblue/side{ - dir = 10 - }, -/area/bridge) -"bqQ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/bridge) -"bqR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bqS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/darkblue/side{ - dir = 4 - }, -/area/bridge) -"bqT" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/item/storage/fancy/donut_box, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bqU" = ( -/obj/structure/displaycase/captain{ - pixel_y = 5 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bqV" = ( -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bqW" = ( -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bqX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bqY" = ( -/obj/machinery/computer/communications{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Captain)"; - pixel_x = 28 - }, -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/machinery/keycard_auth{ - pixel_x = 24; - pixel_y = 24 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bqZ" = ( -/obj/structure/rack, -/obj/item/cane, -/obj/item/reagent_containers/food/snacks/grown/mushroom/glowshroom, -/turf/open/floor/plating, -/area/crew_quarters/heads/captain/private) -"bra" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Starboard - Art Storage"; - dir = 4; - network = list("SS13") - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"brb" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"brc" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/art) -"brd" = ( -/obj/structure/table, -/obj/item/hand_labeler, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"bre" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/storage/art) -"brf" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/easel, -/obj/item/canvas/twentythreeXtwentythree, -/obj/item/canvas/twentythreeXtwentythree, -/turf/open/floor/plasteel, -/area/storage/art) -"brg" = ( -/obj/structure/closet/secure_closet/bar{ - req_access_txt = "25" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brh" = ( -/obj/machinery/reagentgrinder, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bri" = ( -/obj/structure/table/wood, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/gun/ballistic/revolver/doublebarrel, -/obj/machinery/camera{ - c_tag = "Bar - Backroom"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brj" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brk" = ( -/obj/machinery/door/window/southleft{ - base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Bar Delivery"; - req_access_txt = "25" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"brl" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 8; - freq = 1400; - location = "Bar" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/crew_quarters/bar) -"brm" = ( -/obj/item/storage/box/lights/mixed, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brn" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"bro" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brp" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brq" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brt" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"bru" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"brv" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brw" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"brx" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bry" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/caution/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"brz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/engine/break_room) -"brA" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/break_room) -"brB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/break_room) -"brC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"brD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"brE" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"brF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"brG" = ( -/obj/machinery/door/poddoor/preopen{ - id = "transittube"; - name = "Transit Tube Blast Door" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"brH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Access"; - req_one_access_txt = "32;19" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) -"brI" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) -"brJ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) -"brK" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/table/glass, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) -"brL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/transit_tube/curved{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"brM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/transit_tube/horizontal, -/turf/open/space, -/area/space/nearstation) -"brN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/transit_tube/horizontal, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"brO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/transit_tube/crossing/horizontal, -/turf/open/space, -/area/space/nearstation) -"brP" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/transit_tube/horizontal, -/turf/open/space, -/area/space/nearstation) -"brQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/transit_tube/junction/flipped{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"brR" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space, -/area/space/nearstation) -"brS" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space, -/area/space/nearstation) -"brT" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/transit_tube/station{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"brU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"brV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"brW" = ( -/obj/machinery/holopad, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/aisat) -"brX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"brY" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"brZ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Foyer"; - req_one_access_txt = "32;19" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bsa" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bsb" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/holopad, -/obj/item/device/radio/beacon, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bsc" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bsd" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Antechamber"; - req_one_access_txt = "32;19" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bse" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bsf" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bsg" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/mob/living/simple_animal/bot/secbot/pingsky, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bsh" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bsi" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bsj" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "32" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bsk" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bsl" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bsm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bsn" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bso" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bsp" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bsq" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bsr" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bss" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bst" = ( -/obj/machinery/holopad, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bsu" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Arrivals APC"; - areastring = "/area/hallway/secondary/entry"; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/secondary/entry) -"bsv" = ( -/obj/structure/chair/comfy/beige{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Arrivals - Lounge"; - dir = 4; - network = list("SS13") - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bsw" = ( -/turf/open/floor/carpet, -/area/hallway/primary/port) -"bsx" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/holopad{ - pixel_y = -16 - }, -/turf/open/floor/carpet, -/area/hallway/primary/port) -"bsy" = ( -/obj/structure/chair/comfy/beige{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bsz" = ( -/obj/machinery/vending/cola/random, -/obj/machinery/newscaster{ - pixel_x = -28; - pixel_y = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"bsA" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/hallway/primary/port) -"bsB" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsC" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsD" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/goonplaque{ - desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of sentient postcards in a realm of darkness. The station model number is MSv42A-160516" - }, -/area/hallway/primary/port) -"bsE" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsF" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsG" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsH" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsI" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsJ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsK" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsL" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 3 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsP" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Port Primary Hallway" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bsR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bsS" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"bsT" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen, -/obj/structure/window/reinforced, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bsU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/window{ - dir = 2; - name = "HoP's Desk"; - req_access_txt = "57" - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bsV" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/cargo/request{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bsW" = ( -/obj/machinery/vending/cart{ - req_access_txt = "57" - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bsX" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Personnel's Desk"; - departmentType = 5; - name = "Head of Personnel RC"; - pixel_y = 30 - }, -/obj/machinery/pdapainter{ - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bsY" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/bed/dogbed/ian, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bsZ" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bta" = ( -/turf/closed/wall, -/area/crew_quarters/heads/hop) -"btb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/darkblue/side{ - dir = 2 - }, -/area/bridge) -"btc" = ( -/obj/machinery/light, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/rack, -/obj/item/storage/secure/briefcase, -/obj/item/clothing/mask/cigarette/cigar, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"btd" = ( -/obj/structure/rack, -/obj/item/device/aicard, -/obj/item/device/radio/off, -/obj/machinery/computer/security/telescreen{ - dir = 1; - name = "MiniSat Monitor"; - network = list("MiniSat","tcomm"); - pixel_y = -29 - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bte" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/cell_charger{ - pixel_y = 4 - }, -/obj/structure/table/glass, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"btf" = ( -/turf/open/floor/carpet, -/area/bridge) -"btg" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/bridge) -"bth" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bti" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/structure/rack, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/timer, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"btj" = ( -/obj/machinery/light, -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/toolbox/emergency{ - pixel_x = -2; - pixel_y = -3 - }, -/obj/item/wrench, -/obj/item/device/multitool, -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"btk" = ( -/obj/machinery/light_switch{ - pixel_x = 8; - pixel_y = -26 - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 10 - }, -/area/bridge) -"btl" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 2 - }, -/area/bridge) -"btm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/darkblue/side{ - dir = 6 - }, -/area/bridge) -"btn" = ( -/obj/structure/fireaxecabinet{ - pixel_y = -32 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_y = 3 - }, -/obj/machinery/light_switch{ - pixel_x = 28 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bto" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/power/apc{ - dir = 8; - name = "Captain's Quarters APC"; - areastring = "/area/crew_quarters/heads/captain/private"; - pixel_x = -24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/paper/fluff/gateway, -/obj/item/coin/plasma, -/obj/item/melee/chainofcommand, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"btp" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"btq" = ( -/obj/structure/table/wood, -/obj/item/stamp/captain, -/obj/machinery/computer/security/wooden_tv, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"btr" = ( -/obj/effect/landmark/start/captain, -/obj/structure/chair/comfy/brown, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bts" = ( -/obj/machinery/computer/card{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Captain's Desk"; - departmentType = 5; - name = "Captain RC"; - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"btt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"btu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"btv" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"btw" = ( -/obj/structure/table, -/obj/machinery/power/apc{ - dir = 8; - name = "Art Storage APC"; - areastring = "/area/storage/art"; - pixel_x = -25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/item/paper_bin, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/turf/open/floor/plasteel, -/area/storage/art) -"btx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/storage/art) -"bty" = ( -/obj/structure/table, -/obj/item/paper_bin/construction, -/obj/item/airlock_painter, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"btz" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/vending_refill/cigarette, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"btA" = ( -/obj/effect/landmark/start/bartender, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"btB" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"btC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"btD" = ( -/obj/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = -30 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"btE" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Bar Maintenance"; - req_access_txt = "25" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btH" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 2; - sortType = 19 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btI" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;25;46" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btJ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btK" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"btL" = ( -/obj/item/device/assembly/prox_sensor, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;25;46" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btQ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/warning/securearea{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 2 - }, -/area/hallway/primary/starboard) -"btT" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/engine/break_room) -"btU" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -30 - }, -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/engine/break_room) -"btV" = ( -/obj/machinery/microwave{ - pixel_y = 4 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Foyer - Port"; - dir = 1; - network = list("SS13") - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/engine/break_room) -"btW" = ( -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/item/storage/box/donkpockets, -/obj/structure/table/glass, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/engine/break_room) -"btX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"btY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "Engineering Foyer APC"; - areastring = "/area/engine/break_room"; - pixel_x = -1; - pixel_y = -26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/engine/break_room) -"btZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bua" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bub" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"buc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/warning/securearea{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bud" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) -"bue" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/corner, -/area/engine/break_room) -"buf" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/folder/blue{ - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/pen, -/obj/machinery/computer/security/telescreen{ - dir = 1; - name = "MiniSat Monitor"; - network = list("MiniSat","tcomm"); - pixel_y = -28 - }, -/turf/open/floor/plasteel/darkblue/corner, -/area/engine/break_room) -"bug" = ( -/obj/structure/transit_tube/diagonal/topleft, -/turf/open/space, -/area/space/nearstation) -"buh" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/transit_tube/curved{ - dir = 1 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/aisat) -"bui" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/light/small, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior Access"; - dir = 1; - network = list("MiniSat") - }, -/obj/machinery/power/apc{ - aidisabled = 0; - dir = 2; - name = "MiniSat Exterior APC"; - areastring = "/area/aisat"; - pixel_y = -24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/aisat) -"buj" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/aisat) -"buk" = ( -/obj/machinery/door/window{ - dir = 2; - name = "MiniSat Walkway Access"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/aisat) -"bul" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/aisat) -"bum" = ( -/obj/structure/window/reinforced, -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/aisat) -"bun" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/aisat) -"buo" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat/foyer) -"bup" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat/foyer) -"buq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc/highcap/five_k{ - aidisabled = 0; - dir = 2; - name = "MiniSat Foyer APC"; - areastring = "/area/ai_monitored/turret_protected/aisat/foyer"; - pixel_y = -29 - }, -/obj/structure/cable/yellow, -/obj/machinery/camera/motion{ - c_tag = "MiniSat Foyer"; - dir = 8; - network = list("MiniSat") - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat/foyer) -"bur" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bus" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/mob/living/simple_animal/bot/floorbot, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"but" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"buu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"buv" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/darkblue/corner, -/area/ai_monitored/turret_protected/aisat_interior) -"buw" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/mob/living/simple_animal/bot/cleanbot, -/turf/open/floor/plasteel/darkblue/corner, -/area/ai_monitored/turret_protected/aisat_interior) -"bux" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/machinery/power/apc{ - dir = 2; - name = "MiniSat Maint APC"; - areastring = "/area/ai_monitored/storage/satellite"; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow, -/obj/item/stack/sheet/mineral/plasma{ - amount = 35 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"buy" = ( -/obj/machinery/computer/station_alert{ - dir = 1 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/machinery/computer/security/telescreen{ - dir = 1; - name = "MiniSat Monitor"; - network = list("MiniSat","tcomm"); - pixel_y = -29 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"buz" = ( -/obj/structure/table, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/computer/monitor{ - dir = 1 - }, -/obj/structure/cable/yellow, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"buA" = ( -/obj/machinery/camera/motion{ - c_tag = "MiniSat Maintenance"; - dir = 8; - network = list("MiniSat") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/multitool, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"buB" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"buC" = ( -/obj/machinery/vending/cola/random, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"buD" = ( -/obj/item/device/radio/beacon, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"buE" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"buF" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"buG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/newscaster{ - pixel_x = 28; - pixel_y = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/secondary/entry) -"buH" = ( -/obj/structure/chair/comfy/beige{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"buI" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/hallway/primary/port) -"buJ" = ( -/obj/structure/chair/comfy/beige{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"buK" = ( -/obj/machinery/vending/snack/random, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"buL" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/hallway/primary/port) -"buM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/port) -"buN" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"buO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"buP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"buQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"buR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"buS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"buT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"buU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"buV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"buW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/plaques/kiddie/library{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"buX" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"buY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"buZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bva" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Port Primary Hallway - Starboard"; - dir = 1; - network = list("SS13") - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bvb" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bvc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Port Primary Hallway" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bvd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bve" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=7-Command-Starboard"; - location = "6-Port-Central" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bvf" = ( -/obj/machinery/button/door{ - id = "hop"; - name = "Privacy Shutters Control"; - pixel_x = -24; - pixel_y = -6; - req_access_txt = "28" - }, -/obj/machinery/light_switch{ - pixel_x = -25; - pixel_y = 5 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) "bvg" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bvh" = ( -/mob/living/simple_animal/pet/dog/corgi/Ian, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bvi" = ( -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Head of Personnel APC"; - areastring = "/area/crew_quarters/heads/hop"; - pixel_y = 24 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bvj" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bvk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bvl" = ( -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bvm" = ( -/obj/machinery/keycard_auth{ - pixel_x = 26 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bvn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bvo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bvp" = ( -/turf/closed/wall, -/area/bridge) -"bvq" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/machinery/vending/cola/random, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bvr" = ( -/obj/machinery/button/door{ - id = "bridge blast"; - name = "Bridge Access Blast Door Control"; - pixel_x = -1; - pixel_y = -24; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/button/door{ - id = "council blast"; - name = "Council Chamber Blast Door Control"; - pixel_x = -1; - pixel_y = -34; - req_access_txt = "19" - }, -/obj/machinery/camera{ - c_tag = "Bridge - Command Chair"; - dir = 1; - network = list("SS13") - }, -/turf/open/floor/carpet, -/area/bridge) -"bvs" = ( -/obj/machinery/holopad, -/turf/open/floor/carpet, -/area/bridge) -"bvt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/button/door{ - id = "evashutter"; - name = "E.V.A. Storage Shutter Control"; - pixel_y = -24; - req_access_txt = "19" - }, -/obj/machinery/button/door{ - id = "gateshutter"; - name = "Gateway Shutter Control"; - pixel_y = -34; - req_access_txt = "19" - }, -/turf/open/floor/carpet, -/area/bridge) -"bvu" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/vending/snack/random, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bvv" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bvw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bvx" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced, -/obj/machinery/light_switch{ - pixel_x = -28 - }, -/obj/item/storage/secure/briefcase{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/storage/lockbox/medal, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bvy" = ( -/obj/machinery/door/window{ - name = "Captain's Desk"; - req_access_txt = "20" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bvz" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/structure/window/reinforced, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bvA" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/machinery/door/window{ - base_state = "right"; - icon_state = "right"; - name = "Captain's Desk"; - req_access_txt = "20" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/item/stamp/captain, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bvB" = ( -/obj/structure/table/wood, -/obj/item/hand_tele, -/obj/structure/window/reinforced, -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bvC" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" + dir = 4 }, /obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, /turf/open/floor/plating, -/area/maintenance/central) -"bvD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/area/maintenance/starboard) +"bvh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "20;12" - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bvE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ dir = 9 }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"bvi" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/engine/break_room) +"bvj" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bvk" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" }, -/area/hallway/primary/central) -"bvF" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bvl" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bvG" = ( -/obj/structure/table, -/obj/item/canvas/twentythreeXtwentythree, -/obj/item/canvas/twentythreeXtwentythree, -/obj/item/canvas/twentythreeXnineteen, -/obj/item/canvas/twentythreeXnineteen, -/obj/item/canvas/nineteenXnineteen, -/obj/item/canvas/nineteenXnineteen, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/turf/open/floor/plasteel, -/area/storage/art) -"bvH" = ( -/obj/structure/table, -/obj/item/device/camera, -/turf/open/floor/plasteel, -/area/storage/art) -"bvI" = ( -/obj/structure/table, -/obj/item/device/camera_film, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 28 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"bvJ" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bvK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/landmark/xeno_spawn, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bvL" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/closet/gmcloset, -/obj/item/wrench, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bvM" = ( -/obj/machinery/chem_master/condimaster{ - desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments."; - name = "HoochMaster Deluxe"; - pixel_x = -4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bvN" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bvO" = ( -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard) -"bvP" = ( -/obj/item/storage/toolbox/emergency, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bvQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bvR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"bvS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/caution{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bvT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/caution{ +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bvm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/area/hallway/primary/starboard) -"bvU" = ( -/turf/closed/wall, +/turf/closed/wall/r_wall, /area/engine/break_room) -"bvV" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Foyer Maintenance"; - req_access_txt = "0"; - req_one_access_txt = "32;19" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bvW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/caution{ - dir = 2 - }, -/area/engine/break_room) -"bvX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/caution{ - dir = 2 - }, -/area/engine/break_room) -"bvY" = ( +"bvn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/caution{ dir = 2 }, /area/engine/break_room) -"bvZ" = ( +"bvo" = ( /obj/structure/table/glass, /obj/item/wrench, /obj/item/crowbar, @@ -36744,7 +35169,7 @@ }, /turf/open/floor/plasteel/dark, /area/engine/break_room) -"bwa" = ( +"bvp" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/machinery/camera{ c_tag = "Engineering - Transit Tube Access"; @@ -36756,698 +35181,11 @@ }, /turf/open/floor/plasteel/dark, /area/engine/break_room) -"bwb" = ( +"bvq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/engine/break_room) -"bwc" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bwd" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved/flipped{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"bwe" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"bwf" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"bwg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"bwh" = ( -/obj/machinery/door/airlock/hatch{ - name = "Telecomms Control Room"; - req_one_access_txt = "19; 61" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tcommsat/computer) -"bwi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bwj" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bwk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bwl" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-18" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bwm" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bwn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bwo" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-08" - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bwp" = ( -/obj/structure/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bwq" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-03" - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bwr" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Port Primary Hallway - Port"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"bws" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/hallway/primary/port) -"bwt" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/hallway/primary/port) -"bwu" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/vault, -/area/hallway/primary/port) -"bwv" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault, -/area/hallway/primary/port) -"bww" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel/vault, -/area/hallway/primary/port) -"bwx" = ( -/turf/closed/wall, -/area/maintenance/port) -"bwy" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;27;37" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bwz" = ( -/turf/closed/wall, -/area/library) -"bwA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/turf/open/floor/wood, -/area/library) -"bwB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/turf/open/floor/wood, -/area/library) -"bwC" = ( -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the escape arm is."; - icon_state = "direction_evac"; - name = "escape arm" - }, -/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 = 8 - }, -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the research department is."; - icon_state = "direction_sci"; - name = "research department"; - pixel_y = -8 - }, -/turf/closed/wall, -/area/library) -"bwD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bwE" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - sortType = 15 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bwF" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"bwG" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access = null; - req_access_txt = "57" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bwH" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bwI" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bwJ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bwK" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/holopad, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bwL" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bwM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bwN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bwO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access = null; - req_access_txt = "57" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) -"bwP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/darkblue/corner, -/area/bridge) -"bwQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bwR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/bridge) -"bwS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/bookcase, -/turf/open/floor/wood, -/area/bridge) -"bwT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/bridge) -"bwU" = ( -/obj/machinery/door/airlock/command{ - name = "Command Desk"; - req_access = null; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/vault, -/area/bridge) -"bwV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/bridge) -"bwW" = ( -/obj/structure/bookcase, -/turf/open/floor/wood, -/area/bridge) -"bwX" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = -26 - }, -/turf/open/floor/plasteel/darkblue/corner, -/area/bridge) -"bwY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bwZ" = ( -/obj/machinery/vending/boozeomat, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bxa" = ( -/obj/machinery/holopad{ - pixel_x = 9; - pixel_y = -9 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bxb" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bxc" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bxd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bxe" = ( -/obj/machinery/camera{ - c_tag = "Captain's Office"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bxf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Captain's Office - Emergency Escape"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/central) -"bxg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bxh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"bxi" = ( -/obj/machinery/vending/boozeomat, -/turf/closed/wall, -/area/crew_quarters/bar) -"bxj" = ( -/obj/machinery/door/airlock{ - name = "Bar Storage"; - req_access_txt = "25" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "wood" - }, -/area/crew_quarters/bar) -"bxk" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/obj/structure/sign/barsign{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/crew_quarters/bar) -"bxl" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/turf/open/floor/carpet, -/area/crew_quarters/bar) -"bxm" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bxn" = ( -/obj/machinery/disposal/bin{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bxo" = ( -/obj/machinery/computer/arcade, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bxp" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bxq" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bxr" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard) -"bxs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bxt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bxu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;25;46" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bxv" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/caution{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bxw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bxx" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/caution{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bxy" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bxz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bxA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard) -"bxB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bxC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bxD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"bxE" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/engine/break_room) -"bxF" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bxG" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bxH" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bxI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/break_room) -"bxJ" = ( +"bvr" = ( /obj/structure/table/glass, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -37464,17 +35202,7 @@ }, /turf/open/floor/plasteel/dark, /area/engine/break_room) -"bxK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) -"bxL" = ( +"bvs" = ( /obj/machinery/door/airlock/hatch{ name = "MiniSat Space Access Airlock"; req_one_access_txt = "32;19" @@ -37482,34 +35210,15 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) -"bxM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/engine/break_room) -"bxN" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Space Access Airlock"; - req_one_access_txt = "32;19" - }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) -"bxO" = ( +"bvt" = ( /turf/closed/wall, /area/aisat) -"bxP" = ( +"bvu" = ( /obj/structure/table/wood, /obj/machinery/light/small{ dir = 8 @@ -37522,17 +35231,17 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bxQ" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/machinery/status_display{ - pixel_y = 31 +"bvv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/obj/item/folder/blue, -/obj/item/pen, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bxR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"bvw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/showcase/cyborg/old{ dir = 2; @@ -37540,14 +35249,14 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bxS" = ( +"bvx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bxT" = ( +"bvy" = ( /obj/machinery/light_switch{ pixel_y = 28 }, @@ -37557,7 +35266,7 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bxU" = ( +"bvz" = ( /obj/structure/table/wood, /obj/machinery/ai_status_display{ pixel_y = 31 @@ -37565,7 +35274,7 @@ /obj/item/device/flashlight/lamp, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bxV" = ( +"bvA" = ( /obj/machinery/light/small{ dir = 4 }, @@ -37586,7 +35295,7 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bxW" = ( +"bvB" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-20" }, @@ -37595,14 +35304,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bxX" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bxY" = ( +"bvC" = ( /obj/structure/chair, /obj/structure/sign/warning/vacuum/external{ pixel_y = 32 @@ -37612,7 +35314,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bxZ" = ( +"bvD" = ( /obj/structure/chair, /obj/effect/landmark/start/assistant, /obj/effect/turf_decal/stripes/line{ @@ -37620,19 +35322,16 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bya" = ( +"bvE" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"byb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, +"bvF" = ( /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"byc" = ( +"bvG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -37641,7 +35340,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"byd" = ( +"bvH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -37650,7 +35349,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bye" = ( +"bvI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -37659,7 +35358,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"byf" = ( +"bvJ" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -37668,7 +35367,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"byg" = ( +"bvK" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -37678,7 +35377,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"byh" = ( +"bvL" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -37690,7 +35389,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"byi" = ( +"bvM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -37698,14 +35397,14 @@ dir = 4 }, /area/hallway/secondary/entry) -"byj" = ( +"bvN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/hallway/primary/port) -"byk" = ( +"bvO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -37713,7 +35412,7 @@ dir = 9 }, /area/hallway/primary/port) -"byl" = ( +"bvP" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -37721,7 +35420,7 @@ dir = 1 }, /area/hallway/primary/port) -"bym" = ( +"bvQ" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=6-Port-Central"; location = "5-Customs" @@ -37736,7 +35435,7 @@ dir = 1 }, /area/hallway/primary/port) -"byn" = ( +"bvR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -37744,7 +35443,7 @@ dir = 1 }, /area/hallway/primary/port) -"byo" = ( +"bvS" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -37752,7 +35451,16 @@ dir = 5 }, /area/hallway/primary/port) -"byp" = ( +"bvT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"bvU" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, @@ -37763,7 +35471,7 @@ dir = 1 }, /area/hallway/primary/port) -"byq" = ( +"bvV" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -37771,19 +35479,14 @@ dir = 4 }, /area/hallway/primary/port) -"byr" = ( +"bvW" = ( /turf/closed/wall, /area/crew_quarters/toilet/auxiliary) -"bys" = ( +"bvX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, /area/crew_quarters/toilet/auxiliary) -"byt" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/port) -"byu" = ( +"bvY" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -37793,14 +35496,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"byv" = ( -/obj/structure/closet, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"byw" = ( +"bwa" = ( /obj/structure/table/wood, /obj/machinery/computer/security/telescreen/entertainment{ pixel_x = -32 @@ -37812,52 +35508,25 @@ }, /turf/open/floor/wood, /area/library) -"byx" = ( +"bwb" = ( /obj/structure/table/wood, /obj/machinery/computer/libraryconsole, /turf/open/floor/wood, /area/library) -"byy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +"bwc" = ( /turf/open/floor/carpet, /area/library) -"byz" = ( +"bwd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/library) -"byA" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" +"bwe" = ( +/obj/structure/chair/comfy/black{ + dir = 8 }, -/obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/wood, /area/library) -"byB" = ( -/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 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/cult{ - dir = 2 - }, -/area/library) -"byC" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/item/folder, -/obj/item/folder, -/turf/open/floor/plasteel/cult{ - dir = 2 - }, -/area/library) -"byD" = ( +"bwf" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ pixel_x = 1; @@ -37870,19 +35539,18 @@ dir = 2 }, /area/library) -"byE" = ( +"bwg" = ( /obj/structure/table/wood, /obj/machinery/newscaster{ pixel_y = 32 }, /obj/item/folder, /obj/item/folder, -/obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plasteel/cult{ dir = 2 }, /area/library) -"byF" = ( +"bwh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/extinguisher_cabinet{ pixel_x = -27 @@ -37891,14 +35559,14 @@ dir = 8 }, /area/hallway/primary/central) -"byG" = ( +"bwi" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/open/floor/wood, /area/crew_quarters/heads/hop) -"byH" = ( +"bwj" = ( /obj/item/hand_labeler, /obj/item/stack/packageWrap, /obj/structure/cable/yellow{ @@ -37907,33 +35575,27 @@ /obj/structure/table/wood, /turf/open/floor/wood, /area/crew_quarters/heads/hop) -"byI" = ( +"bwk" = ( /obj/structure/closet/secure_closet/hop, /turf/open/floor/wood, /area/crew_quarters/heads/hop) -"byJ" = ( -/obj/machinery/camera{ - c_tag = "Head of Personnel's Office"; - dir = 1; - network = list("SS13") +"bwl" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Space Access Airlock"; + req_one_access_txt = "32;19" }, -/obj/structure/table/wood, -/obj/item/storage/box/PDAs{ - pixel_x = 4; - pixel_y = 4 +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 }, -/obj/item/storage/box/silver_ids, -/obj/item/storage/box/ids, -/obj/machinery/light, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"byK" = ( +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"bwm" = ( /obj/machinery/computer/secure_data{ dir = 1 }, /turf/open/floor/wood, /area/crew_quarters/heads/hop) -"byL" = ( +"bwn" = ( /obj/machinery/computer/card{ dir = 1 }, @@ -37942,7 +35604,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/heads/hop) -"byM" = ( +"bwo" = ( /obj/structure/chair/office/dark, /obj/effect/landmark/start/head_of_personnel, /obj/structure/cable/yellow{ @@ -37973,7 +35635,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/heads/hop) -"byN" = ( +"bwp" = ( /obj/structure/table/wood, /obj/item/paper_bin{ pixel_x = -2; @@ -37985,11 +35647,11 @@ }, /turf/open/floor/wood, /area/crew_quarters/heads/hop) -"byO" = ( +"bwq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/darkblue/corner, /area/bridge) -"byP" = ( +"bwr" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/firealarm{ dir = 4; @@ -38004,7 +35666,7 @@ dir = 1 }, /area/bridge) -"byQ" = ( +"bws" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ pixel_x = 1; @@ -38012,7 +35674,7 @@ }, /turf/open/floor/plasteel/dark, /area/bridge) -"byR" = ( +"bwt" = ( /obj/structure/table/wood, /obj/item/book/manual/wiki/security_space_law{ pixel_y = 3 @@ -38024,7 +35686,7 @@ }, /turf/open/floor/plasteel/dark, /area/bridge) -"byS" = ( +"bwu" = ( /obj/machinery/holopad, /obj/machinery/status_display{ pixel_y = 32 @@ -38034,7 +35696,7 @@ }, /turf/open/floor/plasteel/dark, /area/bridge) -"byT" = ( +"bwv" = ( /obj/machinery/camera{ c_tag = "Council Chamber"; dir = 2; @@ -38049,7 +35711,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/dark, /area/bridge) -"byU" = ( +"bww" = ( /obj/structure/table/wood, /obj/item/folder/yellow, /obj/machinery/firealarm{ @@ -38057,7 +35719,7 @@ }, /turf/open/floor/plasteel/dark, /area/bridge) -"byV" = ( +"bwx" = ( /obj/structure/table/wood, /obj/item/paper_bin{ pixel_x = -3; @@ -38069,7 +35731,7 @@ }, /turf/open/floor/plasteel/dark, /area/bridge) -"byW" = ( +"bwy" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -38080,7 +35742,7 @@ }, /turf/open/floor/plasteel/darkblue/corner, /area/bridge) -"byX" = ( +"bwz" = ( /obj/machinery/light{ dir = 4 }, @@ -38093,17 +35755,17 @@ dir = 1 }, /area/bridge) -"byY" = ( +"bwA" = ( /obj/machinery/vending/cigarette, /turf/open/floor/wood, /area/crew_quarters/heads/captain/private) -"byZ" = ( +"bwB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bza" = ( +"bwC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -38115,7 +35777,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bzb" = ( +"bwD" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -38126,7 +35788,7 @@ /obj/item/storage/fancy/donut_box, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bzc" = ( +"bwE" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -38141,7 +35803,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bzd" = ( +"bwF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -38153,7 +35815,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bze" = ( +"bwG" = ( /obj/machinery/door/airlock/command{ name = "Emergency Escape"; req_access = null; @@ -38173,7 +35835,7 @@ }, /turf/open/floor/plating, /area/maintenance/central) -"bzf" = ( +"bwH" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -38189,14 +35851,14 @@ }, /turf/open/floor/plating, /area/maintenance/central) -"bzg" = ( +"bwI" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bzh" = ( +"bwJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, @@ -38204,7 +35866,7 @@ dir = 4 }, /area/hallway/primary/central) -"bzi" = ( +"bwK" = ( /obj/structure/table, /obj/machinery/firealarm{ dir = 8; @@ -38216,12 +35878,12 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bzj" = ( +"bwL" = ( /obj/structure/table, /obj/machinery/chem_dispenser/drinks/beer, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bzk" = ( +"bwM" = ( /obj/machinery/camera{ c_tag = "Bar"; dir = 2; @@ -38243,7 +35905,7 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bzl" = ( +"bwN" = ( /obj/machinery/light{ dir = 1 }, @@ -38252,18 +35914,17 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bzm" = ( -/obj/effect/landmark/event_spawn, +"bwO" = ( /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bzn" = ( +"bwP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment{ dir = 5 }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bzo" = ( +"bwQ" = ( /obj/structure/sign/warning/securearea{ desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; icon_state = "monkey_painting"; @@ -38279,7 +35940,7 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bzp" = ( +"bwR" = ( /obj/machinery/power/apc/highcap/five_k{ dir = 1; name = "Bar APC"; @@ -38294,13 +35955,13 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bzq" = ( +"bwS" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bzr" = ( +"bwT" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -38309,7 +35970,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bzs" = ( +"bwU" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -38329,7 +35990,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bzt" = ( +"bwV" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -38337,28 +35998,25 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/crew_quarters/bar) -"bzu" = ( +"bwW" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/crew_quarters/bar) -"bzv" = ( +"bwX" = ( /obj/structure/chair/stool{ pixel_y = 8 }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bzw" = ( -/turf/closed/wall, -/area/crew_quarters/theatre) -"bzx" = ( +"bwY" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/starboard) -"bzy" = ( +"bwZ" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -23 @@ -38370,7 +36028,7 @@ dir = 8 }, /area/hallway/primary/starboard) -"bzz" = ( +"bxa" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -38380,7 +36038,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/starboard) -"bzA" = ( +"bxb" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -38394,13 +36052,13 @@ dir = 4 }, /area/hallway/primary/starboard) -"bzB" = ( +"bxc" = ( /turf/closed/wall/r_wall, /area/engine/atmos) -"bzC" = ( +"bxd" = ( /turf/closed/wall, /area/engine/atmos) -"bzD" = ( +"bxe" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -38412,53 +36070,64 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bzE" = ( +"bxf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/closed/wall, /area/engine/atmos) -"bzF" = ( +"bxg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/engine/atmos) -"bzG" = ( +"bxh" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, /turf/closed/wall/r_wall, /area/engine/atmos) -"bzH" = ( +"bxi" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/engine/atmos) -"bzI" = ( +"bxj" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /turf/closed/wall/r_wall, /area/engine/atmos) -"bzJ" = ( +"bxk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/engine/atmos) -"bzK" = ( +"bxl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/closed/wall/r_wall, /area/engine/atmos) -"bzL" = ( -/obj/machinery/announcement_system, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bzM" = ( +"bxm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"bxn" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -38467,14 +36136,14 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bzN" = ( +"bxo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bzO" = ( +"bxp" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -38483,16 +36152,16 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bzP" = ( +"bxq" = ( /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bzQ" = ( +"bxr" = ( /obj/structure/chair/office/dark{ dir = 4 }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bzR" = ( +"bxs" = ( /obj/machinery/computer/security/telescreen{ dir = 8; name = "Telecomms Camera Monitor"; @@ -38505,12 +36174,12 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bzS" = ( +"bxt" = ( /obj/machinery/light, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bzT" = ( +"bxu" = ( /obj/machinery/camera{ c_tag = "Arrivals - Middle Arm - Far"; dir = 1; @@ -38522,21 +36191,21 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bzU" = ( +"bxv" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bzV" = ( +"bxw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bzW" = ( +"bxx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -38546,7 +36215,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bzX" = ( +"bxy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -38554,20 +36223,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bzY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = -25 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bzZ" = ( +"bxz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -38579,7 +36235,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bAa" = ( +"bxA" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -38588,7 +36244,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bAb" = ( +"bxB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -38600,7 +36256,7 @@ dir = 2 }, /area/hallway/secondary/entry) -"bAc" = ( +"bxC" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -38612,7 +36268,7 @@ dir = 2 }, /area/hallway/secondary/entry) -"bAd" = ( +"bxD" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -38623,7 +36279,7 @@ dir = 2 }, /area/hallway/secondary/entry) -"bAe" = ( +"bxE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -38637,7 +36293,7 @@ dir = 6 }, /area/hallway/secondary/entry) -"bAf" = ( +"bxF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -38650,7 +36306,7 @@ dir = 10 }, /area/hallway/primary/port) -"bAg" = ( +"bxG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -38661,7 +36317,7 @@ }, /turf/open/floor/plasteel/neutral/side, /area/hallway/primary/port) -"bAh" = ( +"bxH" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -38676,7 +36332,7 @@ }, /turf/open/floor/plasteel/neutral/side, /area/hallway/primary/port) -"bAi" = ( +"bxI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -38685,7 +36341,7 @@ }, /turf/open/floor/plasteel/neutral/side, /area/hallway/primary/port) -"bAj" = ( +"bxJ" = ( /obj/machinery/airalarm{ dir = 1; pixel_y = -22 @@ -38694,11 +36350,11 @@ dir = 6 }, /area/hallway/primary/port) -"bAk" = ( +"bxK" = ( /obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/hallway/primary/port) -"bAl" = ( +"bxL" = ( /obj/structure/sign/map/left{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; @@ -38708,7 +36364,7 @@ dir = 10 }, /area/hallway/primary/port) -"bAm" = ( +"bxM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -38722,7 +36378,7 @@ }, /turf/open/floor/plasteel/neutral/side, /area/hallway/primary/port) -"bAn" = ( +"bxN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -38733,7 +36389,7 @@ dir = 6 }, /area/hallway/primary/port) -"bAo" = ( +"bxO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -38747,7 +36403,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bAp" = ( +"bxP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -38761,7 +36417,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bAq" = ( +"bxQ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -38773,14 +36429,7 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/crew_quarters/toilet/auxiliary) -"bAr" = ( -/obj/machinery/vending/cigarette, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/crew_quarters/toilet/auxiliary) -"bAs" = ( +"bxS" = ( /obj/item/cigbutt, /obj/machinery/power/apc/highcap/five_k{ dir = 2; @@ -38796,7 +36445,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bAt" = ( +"bxT" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -38806,37 +36455,26 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port) -"bAu" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"bAv" = ( +"bxU" = ( /obj/structure/table/wood, /obj/machinery/newscaster{ pixel_x = -32 }, /turf/open/floor/wood, /area/library) -"bAw" = ( +"bxV" = ( /obj/structure/chair/office/dark{ dir = 1 }, /obj/effect/landmark/start/librarian, /turf/open/floor/wood, /area/library) -"bAx" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/wood, -/area/library) -"bAy" = ( +"bxW" = ( /turf/open/floor/plasteel/cult{ dir = 2 }, /area/library) -"bAz" = ( +"bxX" = ( /obj/structure/chair/comfy/brown{ dir = 1 }, @@ -38844,14 +36482,14 @@ dir = 2 }, /area/library) -"bAA" = ( +"bxY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /turf/open/floor/plasteel/neutral/corner{ dir = 8 }, /area/hallway/primary/central) -"bAB" = ( +"bxZ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/machinery/door/poddoor/preopen{ @@ -38860,7 +36498,7 @@ }, /turf/open/floor/plating, /area/crew_quarters/heads/hop) -"bAC" = ( +"byb" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/brigdoor{ base_state = "rightsecure"; @@ -38885,7 +36523,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/heads/hop) -"bAD" = ( +"byc" = ( /obj/machinery/light{ dir = 8 }, @@ -38897,13 +36535,13 @@ }, /turf/open/floor/plasteel/darkblue/corner, /area/bridge) -"bAE" = ( +"byd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/darkblue/corner{ dir = 1 }, /area/bridge) -"bAF" = ( +"bye" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ name = "Council Chamber"; @@ -38912,38 +36550,38 @@ }, /turf/open/floor/plasteel/dark, /area/bridge) -"bAG" = ( +"byf" = ( /obj/structure/chair/comfy/beige, /turf/open/floor/carpet, /area/bridge) -"bAH" = ( +"byg" = ( /obj/structure/chair/comfy/black, /turf/open/floor/carpet, /area/bridge) -"bAI" = ( +"byh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /obj/structure/chair/comfy/beige, /turf/open/floor/carpet, /area/bridge) -"bAJ" = ( +"byi" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/carpet, /area/bridge) -"bAK" = ( +"byj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/carpet, /area/bridge) -"bAL" = ( +"byk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/bridge) -"bAM" = ( +"byl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -38955,7 +36593,7 @@ }, /turf/open/floor/plasteel/dark, /area/bridge) -"bAN" = ( +"bym" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -38964,7 +36602,7 @@ }, /turf/open/floor/plasteel/darkblue/corner, /area/bridge) -"bAO" = ( +"byn" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -38972,7 +36610,7 @@ dir = 1 }, /area/bridge) -"bAP" = ( +"byo" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ name = "Captain's Quarters"; @@ -38981,28 +36619,28 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/captain/private) -"bAQ" = ( +"byp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bAR" = ( +"byq" = ( /obj/structure/chair/comfy/brown{ dir = 4 }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bAS" = ( +"byr" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/drinks/shaker, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bAT" = ( +"bys" = ( /obj/structure/chair/comfy/brown{ dir = 8 }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bAU" = ( +"byt" = ( /obj/machinery/airalarm{ dir = 8; pixel_x = 24 @@ -39012,7 +36650,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bAV" = ( +"byu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -39025,7 +36663,7 @@ icon_state = "platingdmg3" }, /area/maintenance/central) -"bAW" = ( +"byv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/firealarm{ dir = 8; @@ -39035,34 +36673,39 @@ dir = 8 }, /area/hallway/primary/central) -"bAX" = ( +"byw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/neutral/corner{ dir = 4 }, /area/hallway/primary/central) -"bAY" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall, -/area/crew_quarters/bar) -"bAZ" = ( -/turf/open/floor/plasteel/bar, -/area/crew_quarters/bar) -"bBa" = ( +"byx" = ( +/obj/machinery/porta_turret/ai{ + dir = 2 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_y = 24 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/ai) +"byy" = ( /obj/effect/landmark/start/bartender, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bBb" = ( +"byz" = ( /mob/living/carbon/monkey/punpun, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bBc" = ( +"byA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/landmark/start/bartender, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bBd" = ( +"byB" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Bar Access"; @@ -39070,10 +36713,10 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bBe" = ( +"byC" = ( /turf/open/floor/wood, /area/crew_quarters/bar) -"bBf" = ( +"byD" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -39081,14 +36724,14 @@ /obj/item/clothing/head/fedora, /turf/open/floor/wood, /area/crew_quarters/bar) -"bBg" = ( +"byE" = ( /obj/structure/table/wood/poker, /obj/item/toy/cards/deck{ pixel_y = 4 }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bBh" = ( +"byF" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, @@ -39100,7 +36743,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bBi" = ( +"byG" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -39109,7 +36752,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bBj" = ( +"byH" = ( /obj/structure/disposalpipe/segment{ dir = 10 }, @@ -39118,35 +36761,30 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bBk" = ( -/obj/structure/piano, +"byI" = ( /obj/structure/window/reinforced{ - dir = 8 + dir = 1 }, -/obj/structure/sign/poster/random{ - pixel_y = 32 +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bBl" = ( +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"byJ" = ( /obj/structure/chair/wood/wings{ dir = 8 }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bBm" = ( -/obj/machinery/light/small{ - dir = 1 +"byK" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "Engineering Security Doors" }, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bBn" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"byL" = ( /obj/machinery/power/apc{ dir = 1; name = "Theatre APC"; @@ -39160,40 +36798,55 @@ /obj/item/clothing/glasses/monocle, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bBo" = ( -/obj/structure/table/wood, -/obj/item/staff/broom, -/obj/item/wrench, -/obj/machinery/airalarm{ - dir = 8; +"byM" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; pixel_x = 24 }, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/turf/open/floor/wood, +/mob/living/simple_animal/bot/cleanbot, +/turf/open/floor/plasteel/darkblue/corner, +/area/ai_monitored/turret_protected/aisat_interior) +"byN" = ( +/turf/closed/wall, /area/crew_quarters/theatre) -"bBp" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" +"byO" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/machinery/power/apc{ + dir = 2; + name = "MiniSat Maint APC"; + areastring = "/area/ai_monitored/storage/satellite"; + pixel_y = -26 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bBq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow, +/obj/item/stack/sheet/mineral/plasma{ + amount = 35 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"byP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/item/device/radio/beacon, /turf/open/floor/plasteel/caution{ dir = 8 }, /area/hallway/primary/starboard) -"bBr" = ( +"byQ" = ( /turf/open/floor/plasteel/caution{ dir = 4 }, /area/hallway/primary/starboard) -"bBs" = ( +"byR" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -39213,7 +36866,7 @@ dir = 9 }, /area/engine/atmos) -"bBt" = ( +"byS" = ( /obj/machinery/status_display{ pixel_y = 32 }, @@ -39225,7 +36878,7 @@ dir = 1 }, /area/engine/atmos) -"bBu" = ( +"byT" = ( /obj/structure/sign/map/left{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; @@ -39240,7 +36893,7 @@ dir = 1 }, /area/engine/atmos) -"bBv" = ( +"byU" = ( /obj/structure/sign/map/right{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; @@ -39250,7 +36903,7 @@ dir = 1 }, /area/engine/atmos) -"bBw" = ( +"byV" = ( /obj/structure/sign/plaques/atmos{ pixel_y = 32 }, @@ -39270,7 +36923,7 @@ dir = 5 }, /area/engine/atmos) -"bBx" = ( +"byW" = ( /obj/structure/table, /obj/item/clothing/head/welding{ pixel_x = -3; @@ -39290,7 +36943,7 @@ dir = 8 }, /area/engine/atmos) -"bBy" = ( +"byX" = ( /obj/machinery/power/apc/highcap/ten_k{ dir = 1; name = "Atmospherics APC"; @@ -39306,14 +36959,14 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bBz" = ( +"byY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/engine/atmos) -"bBA" = ( +"byZ" = ( /obj/machinery/space_heater, /obj/machinery/firealarm{ dir = 2; @@ -39324,11 +36977,11 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bBB" = ( +"bza" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/engine/atmos) -"bBC" = ( +"bzb" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 8 }, @@ -39341,7 +36994,7 @@ dir = 1 }, /area/engine/atmos) -"bBD" = ( +"bzc" = ( /obj/machinery/light{ dir = 1 }, @@ -39357,7 +37010,7 @@ dir = 1 }, /area/engine/atmos) -"bBE" = ( +"bzd" = ( /obj/machinery/meter{ frequency = 1441; id_tag = "distro_meter"; @@ -39368,7 +37021,7 @@ dir = 1 }, /area/engine/atmos) -"bBF" = ( +"bze" = ( /obj/machinery/atmospherics/pipe/manifold/supply/visible{ dir = 1 }, @@ -39376,7 +37029,7 @@ dir = 1 }, /area/engine/atmos) -"bBG" = ( +"bzf" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; name = "Air to Distro"; @@ -39395,7 +37048,7 @@ dir = 1 }, /area/engine/atmos) -"bBH" = ( +"bzg" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 10 }, @@ -39403,7 +37056,7 @@ dir = 1 }, /area/engine/atmos) -"bBI" = ( +"bzh" = ( /obj/machinery/atmospherics/components/unary/thermomachine/heater{ dir = 2; on = 1 @@ -39412,17 +37065,17 @@ dir = 1 }, /area/engine/atmos) -"bBJ" = ( +"bzi" = ( /obj/structure/lattice, /obj/structure/grille, /turf/closed/wall/r_wall, /area/space/nearstation) -"bBK" = ( +"bzj" = ( /obj/structure/grille, /obj/structure/lattice, /turf/closed/wall/r_wall, /area/space/nearstation) -"bBL" = ( +"bzk" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 @@ -39432,7 +37085,7 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"bBM" = ( +"bzl" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -39443,7 +37096,7 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"bBN" = ( +"bzm" = ( /obj/structure/window/reinforced{ dir = 1; layer = 2.9 @@ -39464,7 +37117,7 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"bBO" = ( +"bzn" = ( /obj/machinery/computer/message_monitor{ dir = 4 }, @@ -39474,19 +37127,19 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bBP" = ( +"bzo" = ( /obj/structure/chair/office/dark{ dir = 8 }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bBQ" = ( +"bzp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bBR" = ( +"bzq" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -39500,7 +37153,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bBS" = ( +"bzr" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -39509,7 +37162,7 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bBT" = ( +"bzs" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -39519,7 +37172,7 @@ /obj/structure/chair/office/dark, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bBU" = ( +"bzt" = ( /obj/machinery/power/apc/highcap/five_k{ dir = 4; name = "Telecomms Control Room APC"; @@ -39535,7 +37188,7 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bBV" = ( +"bzu" = ( /obj/structure/window/reinforced{ dir = 1; layer = 2.9 @@ -39553,14 +37206,14 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"bBW" = ( +"bzv" = ( /obj/structure/window/reinforced{ dir = 4 }, /obj/structure/window/reinforced, /turf/open/floor/plasteel/dark, /area/aisat) -"bBX" = ( +"bzw" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -39571,14 +37224,14 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bBY" = ( +"bzx" = ( /turf/closed/wall, /area/security/vacantoffice) -"bBZ" = ( +"bzy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/security/vacantoffice) -"bCa" = ( +"bzz" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/centcom/abandoned{ name = "Vacant Office"; @@ -39591,7 +37244,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/security/vacantoffice) -"bCb" = ( +"bzA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -39601,33 +37254,29 @@ }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bCc" = ( +"bzB" = ( /obj/structure/mirror{ pixel_x = 28 }, /turf/open/floor/plating, /area/crew_quarters/toilet/auxiliary) -"bCd" = ( +"bzC" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port) -"bCe" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port) -"bCf" = ( +"bzD" = ( /obj/machinery/photocopier{ pixel_y = 3 }, /turf/open/floor/wood, /area/library) -"bCg" = ( +"bzE" = ( /turf/open/floor/wood, /area/library) -"bCh" = ( +"bzF" = ( /obj/machinery/light{ dir = 4 }, @@ -39638,14 +37287,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/library) -"bCi" = ( -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)" - }, -/turf/closed/wall, -/area/library) -"bCj" = ( +"bzG" = ( /obj/machinery/door/morgue{ name = "Study #1"; req_access_txt = "0" @@ -39654,7 +37296,7 @@ dir = 2 }, /area/library) -"bCk" = ( +"bzH" = ( /obj/machinery/door/morgue{ name = "Study #2"; req_access_txt = "0" @@ -39663,7 +37305,7 @@ dir = 2 }, /area/library) -"bCl" = ( +"bzI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light{ dir = 8 @@ -39672,29 +37314,18 @@ dir = 8 }, /area/hallway/primary/central) -"bCm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Port"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"bCn" = ( +"bzJ" = ( /turf/closed/wall, /area/hallway/secondary/command) -"bCo" = ( +"bzK" = ( /obj/machinery/vending/cola/random, /turf/open/floor/plasteel/dark, /area/hallway/secondary/command) -"bCp" = ( +"bzL" = ( /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bCq" = ( +"bzM" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -39707,14 +37338,14 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bCr" = ( +"bzN" = ( /obj/machinery/status_display{ pixel_y = 32 }, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bCs" = ( +"bzO" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -39725,7 +37356,7 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bCt" = ( +"bzP" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -39737,7 +37368,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bCu" = ( +"bzQ" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -2; @@ -39747,10 +37378,10 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bCv" = ( +"bzR" = ( /turf/closed/wall/r_wall, /area/hallway/secondary/command) -"bCw" = ( +"bzS" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -39765,7 +37396,7 @@ dir = 1 }, /area/bridge) -"bCx" = ( +"bzT" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -39780,7 +37411,7 @@ }, /turf/open/floor/plasteel/dark, /area/bridge) -"bCy" = ( +"bzU" = ( /obj/structure/chair/comfy/teal{ dir = 4 }, @@ -39789,7 +37420,7 @@ }, /turf/open/floor/carpet, /area/bridge) -"bCz" = ( +"bzV" = ( /obj/structure/table/wood, /obj/item/folder/white{ pixel_x = 4; @@ -39797,24 +37428,24 @@ }, /turf/open/floor/carpet, /area/bridge) -"bCA" = ( +"bzW" = ( /obj/structure/table/wood, /obj/item/folder/blue, /obj/item/lighter, /turf/open/floor/carpet, /area/bridge) -"bCB" = ( +"bzX" = ( /obj/structure/table/wood, /obj/item/folder/red, /turf/open/floor/carpet, /area/bridge) -"bCC" = ( +"bzY" = ( /obj/structure/chair/comfy/black{ dir = 8 }, /turf/open/floor/carpet, /area/bridge) -"bCD" = ( +"bzZ" = ( /obj/machinery/airalarm{ dir = 8; pixel_x = 24 @@ -39822,7 +37453,7 @@ /obj/machinery/vending/cigarette, /turf/open/floor/plasteel/dark, /area/bridge) -"bCE" = ( +"bAa" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -39835,13 +37466,13 @@ }, /turf/open/floor/plasteel/dark, /area/bridge) -"bCF" = ( +"bAb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/darkblue/corner{ dir = 1 }, /area/bridge) -"bCG" = ( +"bAc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -39851,13 +37482,13 @@ }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bCH" = ( +"bAd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bCI" = ( +"bAe" = ( /obj/machinery/light, /obj/machinery/computer/security/telescreen{ dir = 1; @@ -39869,7 +37500,7 @@ /mob/living/simple_animal/pet/fox/Renault, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bCJ" = ( +"bAf" = ( /obj/item/device/radio/intercom{ dir = 0; name = "Station Intercom (General)"; @@ -39877,14 +37508,14 @@ }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bCK" = ( +"bAg" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bCL" = ( +"bAh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -39893,14 +37524,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/central) -"bCM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bCN" = ( +"bAi" = ( /obj/structure/table/reinforced, /obj/item/lighter, /obj/machinery/computer/security/telescreen/entertainment{ @@ -39908,30 +37532,30 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bCO" = ( +"bAj" = ( /obj/structure/table/reinforced, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bCP" = ( +"bAk" = ( /obj/structure/table/reinforced, /obj/item/clothing/head/that{ throwforce = 1 }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bCQ" = ( +"bAl" = ( /obj/structure/table/reinforced, /obj/item/storage/box/matches{ pixel_y = 5 }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bCR" = ( +"bAm" = ( /obj/structure/table/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bCS" = ( +"bAn" = ( /obj/structure/table/reinforced, /obj/item/reagent_containers/food/condiment/saltshaker{ pixel_x = -3 @@ -39941,13 +37565,13 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bCT" = ( +"bAo" = ( /obj/machinery/smartfridge/drinks{ icon_state = "boozeomat" }, /turf/closed/wall, /area/crew_quarters/bar) -"bCU" = ( +"bAp" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -39957,7 +37581,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bCV" = ( +"bAq" = ( /obj/structure/table/wood/poker, /obj/effect/spawner/lootdrop{ loot = list(/obj/item/gun/ballistic/revolver/russian = 5, /obj/item/storage/box/syndie_kit/throwing_weapons, /obj/item/toy/cards/deck/syndicate = 2); @@ -39965,7 +37589,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bCW" = ( +"bAr" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 @@ -39975,7 +37599,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bCX" = ( +"bAs" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -39984,19 +37608,19 @@ }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bCY" = ( +"bAt" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bCZ" = ( +"bAu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bDa" = ( +"bAv" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -40005,18 +37629,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bDb" = ( -/obj/structure/table/wood, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/clothing/head/sombrero, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"bDc" = ( +"bAx" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -40034,7 +37647,7 @@ dir = 8 }, /area/hallway/primary/starboard) -"bDd" = ( +"bAy" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -40044,7 +37657,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/hallway/primary/starboard) -"bDe" = ( +"bAz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -40052,7 +37665,7 @@ dir = 4 }, /area/hallway/primary/starboard) -"bDf" = ( +"bAA" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "atmos"; @@ -40063,7 +37676,7 @@ }, /turf/open/floor/plating, /area/engine/atmos) -"bDg" = ( +"bAB" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -40074,26 +37687,26 @@ dir = 8 }, /area/engine/atmos) -"bDh" = ( +"bAC" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bDi" = ( +"bAD" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bDj" = ( +"bAE" = ( /obj/structure/chair/office/dark{ dir = 4 }, /obj/effect/landmark/start/atmospheric_technician, /turf/open/floor/plasteel, /area/engine/atmos) -"bDk" = ( +"bAF" = ( /obj/machinery/computer/atmos_control{ dir = 8 }, @@ -40107,7 +37720,7 @@ dir = 4 }, /area/engine/atmos) -"bDl" = ( +"bAG" = ( /obj/machinery/light{ dir = 8 }, @@ -40120,7 +37733,7 @@ dir = 8 }, /area/engine/atmos) -"bDm" = ( +"bAH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -40129,36 +37742,36 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bDn" = ( +"bAI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-8" }, /turf/open/floor/plasteel, /area/engine/atmos) -"bDo" = ( +"bAJ" = ( /obj/machinery/space_heater, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bDp" = ( +"bAK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /turf/open/floor/plasteel, /area/engine/atmos) -"bDq" = ( +"bAL" = ( /obj/machinery/atmospherics/components/unary/thermomachine/freezer, /turf/open/floor/plasteel, /area/engine/atmos) -"bDr" = ( +"bAM" = ( /obj/machinery/atmospherics/components/unary/thermomachine/heater{ dir = 1; on = 1 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bDs" = ( +"bAN" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1; name = "Mix to Distro"; @@ -40166,30 +37779,30 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bDt" = ( +"bAO" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bDu" = ( +"bAP" = ( /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 8 }, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmos) -"bDv" = ( +"bAQ" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bDw" = ( +"bAR" = ( /obj/structure/grille, /turf/closed/wall/r_wall, /area/engine/atmos) -"bDx" = ( +"bAS" = ( /obj/structure/window/reinforced{ dir = 1; pixel_y = 2 @@ -40197,7 +37810,7 @@ /obj/structure/lattice, /turf/open/space, /area/space/nearstation) -"bDy" = ( +"bAT" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -40207,52 +37820,59 @@ }, /turf/open/space, /area/space/nearstation) -"bDz" = ( +"bAU" = ( /obj/machinery/microwave{ pixel_y = 4 }, /obj/structure/table/wood, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bDA" = ( +"bAV" = ( /obj/machinery/light/small, /obj/item/storage/box/donkpockets, /obj/structure/table/wood, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bDB" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" +"bAW" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/machinery/status_display{ + pixel_y = 31 }, +/obj/item/folder/blue, +/obj/item/pen, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bDC" = ( +"bAX" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bDD" = ( +"bAY" = ( /obj/structure/filingcabinet{ pixel_x = 3 }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bDE" = ( -/obj/machinery/light/small, -/obj/item/folder, -/obj/item/folder, +"bAZ" = ( /obj/machinery/camera{ - c_tag = "Telecomms - Control Room"; + c_tag = "Head of Personnel's Office"; dir = 1; - network = list("SS13","tcomm") + network = list("SS13") }, /obj/structure/table/wood, -/obj/item/pen, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bDF" = ( +/obj/item/storage/box/PDAs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/silver_ids, +/obj/item/storage/box/ids, +/obj/machinery/light, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bBa" = ( /obj/machinery/requests_console{ announcementConsole = 1; department = "Telecomms Admin"; @@ -40271,7 +37891,7 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bDG" = ( +"bBb" = ( /obj/structure/window/reinforced{ dir = 1; layer = 2.9 @@ -40279,12 +37899,12 @@ /obj/structure/lattice, /turf/open/space, /area/space/nearstation) -"bDH" = ( +"bBc" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bDI" = ( +"bBd" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -40293,16 +37913,12 @@ dir = 4 }, /area/hallway/secondary/entry) -"bDJ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/port) -"bDK" = ( +"bBe" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/maintenance/port) -"bDL" = ( +"bBf" = ( /obj/structure/table/wood, /obj/machinery/light_switch{ pixel_x = -28 @@ -40311,31 +37927,28 @@ /obj/item/folder, /turf/open/floor/wood, /area/security/vacantoffice) -"bDM" = ( +"bBg" = ( /turf/open/floor/wood, /area/security/vacantoffice) -"bDN" = ( +"bBh" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/security/vacantoffice) -"bDO" = ( +"bBi" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp, /turf/open/floor/wood, /area/security/vacantoffice) -"bDP" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/paper, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 +"bBj" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "panelscorched" }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bDQ" = ( +/area/maintenance/starboard) +"bBk" = ( /obj/structure/table/wood, /obj/item/device/camera_film{ pixel_y = 9 @@ -40346,39 +37959,30 @@ }, /turf/open/floor/wood, /area/security/vacantoffice) -"bDR" = ( -/obj/structure/urinal{ - pixel_y = 29 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/crew_quarters/toilet/auxiliary) -"bDS" = ( +"bBl" = ( /obj/structure/urinal{ pixel_y = 29 }, /turf/open/floor/plating, /area/crew_quarters/toilet/auxiliary) -"bDT" = ( +"bBm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bDU" = ( +"bBn" = ( /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bDV" = ( +"bBo" = ( /obj/machinery/door/airlock{ id_tag = "AuxToilet1"; name = "Unit 1" }, /turf/open/floor/plasteel, /area/crew_quarters/toilet/auxiliary) -"bDW" = ( +"bBp" = ( /obj/structure/toilet{ pixel_y = 8 }, @@ -40398,13 +38002,13 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/toilet/auxiliary) -"bDX" = ( +"bBq" = ( /obj/structure/rack, /obj/item/device/flashlight, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port) -"bDY" = ( +"bBr" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -23 @@ -40412,51 +38016,40 @@ /obj/structure/displaycase/trophy, /turf/open/floor/wood, /area/library) -"bDZ" = ( -/obj/structure/displaycase/trophy, -/turf/open/floor/wood, -/area/library) -"bEa" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 +"bBs" = ( +/obj/structure/chair/office/dark{ + dir = 8 }, /turf/open/floor/wood, /area/library) -"bEb" = ( +"bBt" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bBu" = ( /obj/machinery/vending/coffee, /obj/machinery/newscaster{ pixel_y = 32 }, /turf/open/floor/wood, /area/library) -"bEc" = ( +"bBv" = ( /obj/structure/chair/comfy/black, /obj/effect/landmark/start/assistant, /turf/open/floor/wood, /area/library) -"bEd" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 30 - }, -/obj/machinery/photocopier{ - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/library) -"bEe" = ( +"bBw" = ( /obj/machinery/bookbinder, /turf/open/floor/wood, /area/library) -"bEf" = ( -/obj/effect/spawner/structure/window/reinforced, +"bBx" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, /turf/open/floor/wood, /area/library) -"bEg" = ( +"bBy" = ( /obj/structure/sign/directions/engineering{ desc = "A direction sign, pointing out which way the bridge is."; dir = 4; @@ -40477,14 +38070,14 @@ }, /turf/closed/wall, /area/hallway/secondary/command) -"bEh" = ( +"bBz" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" }, /turf/open/floor/plating, /area/hallway/secondary/command) -"bEi" = ( +"bBA" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "hopqueue"; name = "HoP Queue Shutters" @@ -40497,7 +38090,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bEj" = ( +"bBB" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" @@ -40507,7 +38100,7 @@ }, /turf/open/floor/plating, /area/hallway/secondary/command) -"bEk" = ( +"bBC" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -40521,7 +38114,7 @@ /obj/effect/turf_decal/loading_area, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bEl" = ( +"bBD" = ( /obj/structure/sign/directions/engineering{ desc = "A direction sign, pointing out which way the bridge is."; dir = 1; @@ -40531,7 +38124,7 @@ }, /turf/closed/wall/r_wall, /area/hallway/secondary/command) -"bEm" = ( +"bBE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; @@ -40542,9 +38135,12 @@ name = "Bridge Access"; req_access_txt = "19" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/vault, /area/bridge) -"bEn" = ( +"bBF" = ( /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; name = "bridge blast door" @@ -40555,13 +38151,23 @@ name = "Bridge Access"; req_access_txt = "19" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/vault, /area/bridge) -"bEo" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/bridge) -"bEp" = ( +"bBG" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/goonplaque{ + desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of sentient postcards in a realm of darkness. The station model number is MSv42A-160516" + }, +/area/hallway/primary/port) +"bBH" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "council blast"; @@ -40572,7 +38178,7 @@ }, /turf/open/floor/plating, /area/bridge) -"bEq" = ( +"bBI" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "council blast"; @@ -40586,7 +38192,7 @@ }, /turf/open/floor/plating, /area/bridge) -"bEr" = ( +"bBJ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "council blast"; @@ -40603,7 +38209,7 @@ }, /turf/open/floor/plating, /area/bridge) -"bEs" = ( +"bBK" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "council blast"; @@ -40617,7 +38223,7 @@ }, /turf/open/floor/plating, /area/bridge) -"bEt" = ( +"bBL" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "council blast"; @@ -40628,7 +38234,7 @@ }, /turf/open/floor/plating, /area/bridge) -"bEu" = ( +"bBM" = ( /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; name = "bridge blast door" @@ -40641,9 +38247,12 @@ /obj/structure/cable/yellow{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/vault, /area/bridge) -"bEv" = ( +"bBN" = ( /obj/structure/sign/directions/engineering{ desc = "A direction sign, pointing out which way the bridge is."; dir = 1; @@ -40653,7 +38262,7 @@ }, /turf/closed/wall/r_wall, /area/crew_quarters/heads/captain/private) -"bEw" = ( +"bBO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -40665,7 +38274,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/central) -"bEx" = ( +"bBP" = ( /obj/structure/sign/directions/engineering{ desc = "A direction sign, pointing out which way the engineering department is."; dir = 4; @@ -40686,7 +38295,7 @@ }, /turf/closed/wall, /area/maintenance/central) -"bEy" = ( +"bBQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/light{ dir = 8 @@ -40695,7 +38304,7 @@ dir = 8 }, /area/hallway/primary/central) -"bEz" = ( +"bBR" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -40705,35 +38314,31 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bEA" = ( +"bBS" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/crew_quarters/bar) -"bEB" = ( +"bBT" = ( /obj/structure/chair/stool/bar, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bEC" = ( +"bBU" = ( /obj/machinery/holopad, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bED" = ( +"bBV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/landmark/start/assistant, /obj/structure/chair/stool/bar, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bEE" = ( +"bBX" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bEF" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bEG" = ( +"bBY" = ( /obj/structure/disposalpipe/segment, /obj/structure/table/wood/poker, /obj/item/toy/cards/deck{ @@ -40741,29 +38346,29 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bEH" = ( +"bBZ" = ( /obj/structure/window/reinforced{ dir = 8 }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bEI" = ( +"bCa" = ( /obj/structure/chair/wood/wings, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/landmark/start/mime, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bEJ" = ( +"bCb" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bEK" = ( +"bCc" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bEL" = ( +"bCd" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -40772,15 +38377,7 @@ /obj/item/reagent_containers/food/snacks/pie/cream, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bEM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bEN" = ( +"bCe" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -40790,7 +38387,7 @@ dir = 8 }, /area/hallway/primary/starboard) -"bEO" = ( +"bCf" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -40798,7 +38395,7 @@ dir = 4 }, /area/hallway/primary/starboard) -"bEP" = ( +"bCg" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/northleft{ dir = 4; @@ -40823,7 +38420,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bEQ" = ( +"bCh" = ( /obj/structure/chair{ dir = 8 }, @@ -40835,13 +38432,10 @@ dir = 8 }, /area/engine/atmos) -"bER" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, +"bCi" = ( /turf/open/floor/plasteel, /area/engine/atmos) -"bES" = ( +"bCj" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -40850,13 +38444,13 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bET" = ( +"bCk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bEU" = ( +"bCl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -40867,14 +38461,14 @@ dir = 4 }, /area/engine/atmos) -"bEV" = ( +"bCm" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plating, /area/engine/atmos) -"bEW" = ( +"bCn" = ( /obj/structure/table, /obj/item/storage/belt/utility, /obj/item/device/t_scanner, @@ -40887,7 +38481,7 @@ dir = 8 }, /area/engine/atmos) -"bEX" = ( +"bCo" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -40896,14 +38490,14 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bEY" = ( +"bCp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bEZ" = ( +"bCq" = ( /obj/machinery/space_heater, /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -40914,7 +38508,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bFa" = ( +"bCr" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; name = "Waste to Filter"; @@ -40922,30 +38516,24 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bFb" = ( -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bFc" = ( +"bCt" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/purple/visible{ dir = 1 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bFd" = ( +"bCu" = ( /obj/machinery/atmospherics/pipe/manifold/purple/visible, /turf/open/floor/plasteel, /area/engine/atmos) -"bFe" = ( +"bCv" = ( /obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bFf" = ( +"bCw" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; name = "Air to Mix"; @@ -40956,7 +38544,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bFg" = ( +"bCx" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 4 @@ -40965,14 +38553,14 @@ dir = 5 }, /area/engine/atmos) -"bFh" = ( +"bCy" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 4 }, /turf/open/floor/plating, /area/engine/atmos) -"bFi" = ( +"bCz" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 4 @@ -40980,15 +38568,15 @@ /obj/machinery/atmospherics/pipe/simple/orange/visible, /turf/open/space, /area/space/nearstation) -"bFj" = ( +"bCA" = ( /obj/machinery/meter, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/purple/visible{ +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 }, +/obj/structure/grille, /turf/closed/wall/r_wall, /area/engine/atmos) -"bFk" = ( +"bCB" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 8; frequency = 1441; @@ -40997,17 +38585,17 @@ }, /turf/open/floor/engine/vacuum, /area/engine/atmos) -"bFl" = ( +"bCC" = ( /turf/open/floor/engine/vacuum, /area/engine/atmos) -"bFm" = ( +"bCD" = ( /turf/closed/wall/r_wall, /area/tcommsat/server) -"bFn" = ( +"bCE" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/tcommsat/server) -"bFo" = ( +"bCF" = ( /obj/machinery/door/airlock/hatch{ name = "Telecomms Server Room" }, @@ -41015,14 +38603,15 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/dark, /area/tcommsat/server) -"bFp" = ( +"bCG" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/sign/warning/vacuum/external, /turf/open/floor/plating, /area/hallway/secondary/entry) -"bFq" = ( +"bCH" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -41036,7 +38625,7 @@ dir = 4 }, /area/hallway/secondary/entry) -"bFr" = ( +"bCI" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -41045,7 +38634,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bFs" = ( +"bCJ" = ( /obj/item/storage/toolbox/emergency, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 @@ -41054,43 +38643,30 @@ icon_state = "panelscorched" }, /area/maintenance/port) -"bFt" = ( -/obj/item/tank/internals/air, -/obj/item/tank/internals/air, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/machinery/light/small{ +"bCK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, -/area/maintenance/port) -"bFu" = ( +/area/maintenance/starboard) +"bCL" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, /turf/open/floor/wood, /area/security/vacantoffice) -"bFv" = ( +"bCM" = ( /obj/structure/table/wood, /turf/open/floor/wood, /area/security/vacantoffice) -"bFw" = ( +"bCN" = ( /obj/structure/chair/office/dark{ dir = 8 }, /turf/open/floor/wood, /area/security/vacantoffice) -"bFx" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen/red, -/obj/machinery/newscaster{ - pixel_x = 30; - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bFy" = ( +"bCP" = ( /obj/machinery/light/small, /obj/machinery/camera{ c_tag = "Auxilary Restrooms"; @@ -41099,13 +38675,13 @@ }, /turf/open/floor/plating, /area/crew_quarters/toilet/auxiliary) -"bFz" = ( +"bCQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bFA" = ( +"bCR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -41118,46 +38694,18 @@ /obj/structure/cable/yellow, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bFB" = ( +"bCS" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bFC" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port) -"bFD" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/port) -"bFE" = ( -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/wood, -/area/library) -"bFF" = ( +"bCV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/carpet, /area/library) -"bFG" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/library) -"bFH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/turf/open/floor/wood, -/area/library) -"bFI" = ( +"bCW" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, @@ -41165,7 +38713,7 @@ dir = 8 }, /area/hallway/primary/central) -"bFJ" = ( +"bCX" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -41177,7 +38725,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bFK" = ( +"bCY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -41189,7 +38737,7 @@ dir = 4 }, /area/hallway/primary/central) -"bFL" = ( +"bCZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41204,7 +38752,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bFM" = ( +"bDa" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41215,7 +38763,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bFN" = ( +"bDb" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -41226,7 +38774,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bFO" = ( +"bDd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41240,7 +38788,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bFP" = ( +"bDe" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -41251,13 +38799,13 @@ dir = 1 }, /area/hallway/secondary/command) -"bFQ" = ( +"bDf" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plasteel/neutral/corner{ dir = 1 }, /area/hallway/secondary/command) -"bFR" = ( +"bDg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -41266,7 +38814,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bFS" = ( +"bDh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41280,7 +38828,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bFT" = ( +"bDi" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41292,7 +38840,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bFU" = ( +"bDj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41300,7 +38848,7 @@ dir = 4 }, /area/hallway/secondary/command) -"bFV" = ( +"bDk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41308,7 +38856,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bFW" = ( +"bDl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41319,7 +38867,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bFX" = ( +"bDm" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -41327,7 +38875,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bFY" = ( +"bDn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41335,7 +38883,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bFZ" = ( +"bDo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41346,7 +38894,7 @@ dir = 4 }, /area/hallway/secondary/command) -"bGa" = ( +"bDp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41363,7 +38911,7 @@ dir = 4 }, /area/hallway/secondary/command) -"bGb" = ( +"bDq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41374,13 +38922,13 @@ dir = 4 }, /area/hallway/secondary/command) -"bGc" = ( +"bDr" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plasteel/neutral/corner{ dir = 4 }, /area/hallway/secondary/command) -"bGd" = ( +"bDs" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -41388,7 +38936,7 @@ dir = 4 }, /area/hallway/secondary/command) -"bGe" = ( +"bDu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41407,7 +38955,7 @@ dir = 4 }, /area/hallway/secondary/command) -"bGf" = ( +"bDv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41419,7 +38967,7 @@ dir = 4 }, /area/hallway/secondary/command) -"bGg" = ( +"bDw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41431,7 +38979,7 @@ dir = 4 }, /area/hallway/secondary/command) -"bGh" = ( +"bDx" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -41445,7 +38993,7 @@ dir = 4 }, /area/hallway/secondary/command) -"bGi" = ( +"bDy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41460,7 +39008,7 @@ dir = 4 }, /area/hallway/secondary/command) -"bGj" = ( +"bDz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -41472,7 +39020,7 @@ dir = 1 }, /area/hallway/primary/central) -"bGk" = ( +"bDA" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -41484,7 +39032,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bGl" = ( +"bDB" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -41495,22 +39043,22 @@ dir = 4 }, /area/hallway/primary/central) -"bGm" = ( +"bDC" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Bar" }, /turf/open/floor/plasteel, /area/crew_quarters/bar) -"bGn" = ( +"bDD" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bGo" = ( +"bDF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bGp" = ( +"bDG" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/centcom{ name = "Club"; @@ -41518,7 +39066,7 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bGq" = ( +"bDH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -41527,54 +39075,25 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bGr" = ( -/obj/effect/landmark/xmastree, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bGs" = ( +"bDI" = ( /obj/structure/chair/stool{ pixel_y = 8 }, /obj/effect/landmark/start/assistant, /turf/open/floor/wood, /area/crew_quarters/bar) -"bGt" = ( +"bDJ" = ( /obj/structure/disposalpipe/segment, /obj/structure/table/wood/poker, /obj/item/clothing/mask/cigarette/cigar, /turf/open/floor/wood, /area/crew_quarters/bar) -"bGu" = ( +"bDK" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bGv" = ( -/obj/structure/chair/wood/wings{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bGw" = ( -/obj/structure/table/wood, -/obj/item/lipstick{ - pixel_y = 5 - }, -/obj/machinery/camera{ - c_tag = "Theatre - Stage"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/device/instrument/guitar, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"bGx" = ( +"bDM" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -41587,7 +39106,7 @@ dir = 8 }, /area/hallway/primary/starboard) -"bGy" = ( +"bDN" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -41597,16 +39116,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/starboard) -"bGz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/engine/atmos) -"bGA" = ( +"bDO" = ( /obj/structure/tank_dispenser{ pixel_x = -1 }, @@ -41614,11 +39124,7 @@ dir = 1 }, /area/engine/atmos) -"bGB" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bGC" = ( +"bDP" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ @@ -41626,7 +39132,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bGD" = ( +"bDQ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -41634,7 +39140,7 @@ dir = 4 }, /area/engine/atmos) -"bGE" = ( +"bDR" = ( /obj/machinery/door/airlock/atmos/glass{ name = "Atmospherics Monitoring"; req_access_txt = "24" @@ -41644,15 +39150,12 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bGF" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, +"bDS" = ( /turf/open/floor/plasteel/caution{ dir = 8 }, /area/engine/atmos) -"bGG" = ( +"bDT" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -41662,22 +39165,22 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/engine/atmos) -"bGH" = ( +"bDU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/engine/atmos) -"bGI" = ( +"bDV" = ( /obj/structure/closet/crate, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/atmos) -"bGJ" = ( +"bDW" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bGK" = ( +"bDX" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; name = "Mix to Filter"; @@ -41685,33 +39188,33 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bGL" = ( +"bDY" = ( /obj/machinery/atmospherics/pipe/manifold/purple/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bGM" = ( +"bDZ" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 6 }, /obj/effect/landmark/start/atmospheric_technician, /turf/open/floor/plasteel, /area/engine/atmos) -"bGN" = ( +"bEa" = ( /obj/machinery/atmospherics/pipe/manifold/green/visible{ dir = 1 }, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmos) -"bGO" = ( +"bEb" = ( /obj/machinery/atmospherics/pipe/manifold/green/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bGP" = ( +"bEc" = ( /obj/machinery/computer/atmos_control/tank{ dir = 8; frequency = 1441; @@ -41725,24 +39228,20 @@ dir = 4 }, /area/engine/atmos) -"bGQ" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/atmos) -"bGR" = ( +"bEd" = ( /obj/machinery/air_sensor{ frequency = 1441; id_tag = "mix_sensor" }, /turf/open/floor/engine/vacuum, /area/engine/atmos) -"bGS" = ( +"bEe" = ( /obj/machinery/light/small{ dir = 4 }, /turf/open/floor/engine/vacuum, /area/engine/atmos) -"bGT" = ( +"bEf" = ( /obj/machinery/telecomms/processor/preset_one, /obj/machinery/camera{ c_tag = "Telecomms - Server Room - Fore-Port"; @@ -41751,29 +39250,29 @@ }, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"bGU" = ( +"bEg" = ( /obj/structure/showcase/cyborg/old{ dir = 2; pixel_y = 20 }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bGV" = ( +"bEh" = ( /obj/machinery/telecomms/receiver/preset_left, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"bGW" = ( +"bEi" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/tcommsat/server) -"bGX" = ( +"bEj" = ( /obj/machinery/telecomms/receiver/preset_right, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"bGY" = ( +"bEk" = ( /obj/machinery/telecomms/processor/preset_three, /obj/machinery/camera{ c_tag = "Telecomms - Server Room - Fore-Starboard"; @@ -41782,31 +39281,22 @@ }, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"bGZ" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 13; - id = "ferry_home"; - name = "port bay 2"; - turf_type = /turf/open/space; - width = 5 - }, -/turf/open/space/basic, -/area/space) -"bHa" = ( +"bEl" = ( /obj/machinery/door/airlock/external{ name = "Transport Airlock" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"bHb" = ( +"bEm" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"bHc" = ( +"bEn" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -41817,7 +39307,7 @@ dir = 4 }, /area/hallway/secondary/entry) -"bHd" = ( +"bEo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -41825,36 +39315,28 @@ /obj/item/storage/box/lights/mixed, /turf/open/floor/plating, /area/maintenance/port) -"bHe" = ( +"bEp" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 }, /obj/machinery/portable_atmospherics/canister/air, /turf/open/floor/plating, /area/maintenance/port) -"bHf" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/port) -"bHg" = ( +"bEq" = ( /obj/structure/light_construct{ dir = 8 }, /turf/open/floor/wood, /area/security/vacantoffice) -"bHh" = ( +"bEs" = ( /obj/item/paper_bin{ pixel_x = -2; pixel_y = 6 }, /obj/structure/table/wood, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/wood, +/turf/open/floor/carpet, /area/security/vacantoffice) -"bHi" = ( +"bEt" = ( /obj/machinery/door/airlock{ id_tag = "AuxShower"; name = "Shower" @@ -41862,14 +39344,14 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bHj" = ( +"bEu" = ( /obj/machinery/door/airlock{ id_tag = "AuxToilet2"; name = "Unit 2" }, /turf/open/floor/plasteel, /area/crew_quarters/toilet/auxiliary) -"bHk" = ( +"bEv" = ( /obj/structure/toilet{ pixel_y = 8 }, @@ -41889,25 +39371,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/toilet/auxiliary) -"bHl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bHm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bHn" = ( +"bEw" = ( /obj/machinery/computer/security/telescreen/entertainment{ pixel_x = -32 }, @@ -41918,39 +39382,32 @@ /obj/structure/displaycase/trophy, /turf/open/floor/wood, /area/library) -"bHo" = ( +"bEx" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, /turf/open/floor/carpet, /area/library) -"bHp" = ( +"bEy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/library) -"bHq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/library) -"bHr" = ( +"bEz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/carpet, /area/library) -"bHs" = ( +"bEA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/carpet, /area/library) -"bHt" = ( +"bEB" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -41964,7 +39421,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bHu" = ( +"bEC" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -41975,7 +39432,7 @@ dir = 2 }, /area/hallway/primary/central) -"bHv" = ( +"bED" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -41990,7 +39447,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bHw" = ( +"bEE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42001,7 +39458,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bHx" = ( +"bEF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42013,7 +39470,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bHy" = ( +"bEG" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42027,7 +39484,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bHz" = ( +"bEH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42039,7 +39496,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bHA" = ( +"bEI" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -42061,7 +39518,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bHB" = ( +"bEJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42075,19 +39532,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bHC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/secondary/command) -"bHD" = ( +"bEK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42103,7 +39548,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bHE" = ( +"bEL" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42114,7 +39559,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bHF" = ( +"bEM" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42128,7 +39573,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bHG" = ( +"bEN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42142,7 +39587,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bHH" = ( +"bEO" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42154,7 +39599,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bHI" = ( +"bEP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42163,7 +39608,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bHJ" = ( +"bEQ" = ( /obj/machinery/holopad, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -42179,7 +39624,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bHK" = ( +"bER" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42189,7 +39634,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bHL" = ( +"bES" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42203,7 +39648,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHM" = ( +"bET" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42215,7 +39660,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHN" = ( +"bEU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42232,7 +39677,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHO" = ( +"bEV" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42249,7 +39694,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHP" = ( +"bEW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42260,7 +39705,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHQ" = ( +"bEX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42275,7 +39720,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHR" = ( +"bEY" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42286,7 +39731,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHS" = ( +"bEZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42300,7 +39745,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHT" = ( +"bFa" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42316,7 +39761,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHU" = ( +"bFb" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42327,7 +39772,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHV" = ( +"bFc" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -42339,7 +39784,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHW" = ( +"bFd" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42350,7 +39795,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHX" = ( +"bFe" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42367,7 +39812,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHY" = ( +"bFf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42382,7 +39827,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHZ" = ( +"bFg" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42393,7 +39838,7 @@ dir = 8 }, /area/hallway/primary/central) -"bIa" = ( +"bFh" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -42409,7 +39854,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bIb" = ( +"bFi" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42420,7 +39865,7 @@ dir = 2 }, /area/hallway/primary/central) -"bIc" = ( +"bFj" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -42433,7 +39878,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/bar) -"bId" = ( +"bFk" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42442,7 +39887,7 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bIe" = ( +"bFl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -42452,7 +39897,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bIf" = ( +"bFm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -42461,17 +39906,7 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bIg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/bar, -/area/crew_quarters/bar) -"bIh" = ( +"bFn" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -42480,7 +39915,7 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bIi" = ( +"bFo" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -42489,7 +39924,7 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bIj" = ( +"bFp" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42503,7 +39938,7 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bIk" = ( +"bFq" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42515,7 +39950,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bIl" = ( +"bFr" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42527,7 +39962,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bIm" = ( +"bFs" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -42541,11 +39976,11 @@ /obj/item/storage/pill_bottle/dice, /turf/open/floor/wood, /area/crew_quarters/bar) -"bIn" = ( +"bFt" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/wood, /area/crew_quarters/bar) -"bIo" = ( +"bFu" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, @@ -42555,7 +39990,7 @@ /obj/structure/table/wood/poker, /turf/open/floor/wood, /area/crew_quarters/bar) -"bIp" = ( +"bFv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42564,7 +39999,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bIq" = ( +"bFw" = ( /obj/structure/chair/wood/wings{ dir = 1 }, @@ -42575,7 +40010,7 @@ /obj/effect/landmark/start/clown, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bIr" = ( +"bFx" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42584,7 +40019,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bIs" = ( +"bFy" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -42599,7 +40034,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bIt" = ( +"bFz" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42611,7 +40046,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bIu" = ( +"bFA" = ( /obj/machinery/door/airlock{ name = "Theatre Stage"; req_access_txt = "0"; @@ -42628,7 +40063,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bIv" = ( +"bFB" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -42646,7 +40081,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bIw" = ( +"bFC" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -42660,7 +40095,7 @@ dir = 8 }, /area/hallway/primary/starboard) -"bIx" = ( +"bFD" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -42672,7 +40107,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/starboard) -"bIy" = ( +"bFE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment{ dir = 4 @@ -42681,7 +40116,7 @@ dir = 4 }, /area/hallway/primary/starboard) -"bIz" = ( +"bFF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42701,7 +40136,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/atmos) -"bIA" = ( +"bFG" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42710,20 +40145,20 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bIB" = ( +"bFH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bIC" = ( +"bFI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/atmos) -"bID" = ( +"bFJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42732,7 +40167,7 @@ dir = 2 }, /area/engine/atmos) -"bIE" = ( +"bFK" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 8 @@ -42752,13 +40187,13 @@ dir = 6 }, /area/engine/atmos) -"bIF" = ( +"bFL" = ( /obj/machinery/holopad, /turf/open/floor/plasteel/caution{ dir = 8 }, /area/engine/atmos) -"bIG" = ( +"bFM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 6 }, @@ -42767,21 +40202,21 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bIH" = ( +"bFN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/engine/atmos) -"bII" = ( +"bFO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/atmos) -"bIJ" = ( +"bFP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, @@ -42791,25 +40226,25 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bIK" = ( +"bFQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 9 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bIL" = ( +"bFR" = ( /obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 6 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bIM" = ( +"bFS" = ( /obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 9 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bIN" = ( +"bFT" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1; name = "Pure to Mix"; @@ -42817,13 +40252,13 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bIO" = ( +"bFU" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 5 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bIP" = ( +"bFV" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, /obj/machinery/atmospherics/components/binary/pump{ dir = 4; @@ -42832,7 +40267,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bIQ" = ( +"bFW" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 }, @@ -42841,22 +40276,21 @@ dir = 6 }, /area/engine/atmos) -"bIR" = ( +"bFX" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 }, /turf/open/floor/plating, /area/engine/atmos) -"bIS" = ( +"bFY" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/orange/visible, /turf/open/space, /area/space/nearstation) -"bIT" = ( +"bFZ" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 @@ -42864,7 +40298,7 @@ /obj/structure/grille, /turf/closed/wall/r_wall, /area/engine/atmos) -"bIU" = ( +"bGa" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 8; frequency = 1441; @@ -42873,7 +40307,7 @@ }, /turf/open/floor/engine/vacuum, /area/engine/atmos) -"bIV" = ( +"bGb" = ( /obj/machinery/camera{ c_tag = "Atmospherics Tank - Mix"; dir = 8; @@ -42881,54 +40315,34 @@ }, /turf/open/floor/engine/vacuum, /area/engine/atmos) -"bIW" = ( +"bGc" = ( /obj/machinery/telecomms/bus/preset_one, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"bIX" = ( +"bGd" = ( /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bIY" = ( +"bGe" = ( /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"bIZ" = ( +"bGf" = ( /obj/machinery/telecomms/bus/preset_three, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"bJa" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" +"bGg" = ( +/obj/structure/chair/wood/wings{ + dir = 8 }, -/obj/machinery/light{ - dir = 4 +/obj/machinery/light_switch{ + pixel_y = 28 }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/secondary/entry) -"bJb" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;27;37" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bJc" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bJd" = ( +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bGh" = ( +/obj/machinery/announcement_system, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bGj" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -42937,7 +40351,7 @@ }, /turf/open/floor/wood, /area/security/vacantoffice) -"bJe" = ( +"bGk" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -42946,7 +40360,7 @@ }, /turf/open/floor/wood, /area/security/vacantoffice) -"bJf" = ( +"bGl" = ( /obj/machinery/shower{ dir = 4 }, @@ -42961,21 +40375,22 @@ /obj/item/soap/nanotrasen, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bJg" = ( +"bGm" = ( /obj/machinery/shower{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bJh" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 +"bGp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, -/area/crew_quarters/toilet/auxiliary) -"bJi" = ( +/area/maintenance/starboard) +"bGq" = ( /obj/machinery/door/airlock/maintenance{ name = "Library Maintenance"; req_access_txt = "0"; @@ -42983,46 +40398,48 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bJj" = ( +"bGr" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /turf/open/floor/carpet, /area/library) -"bJk" = ( +"bGs" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/wood, /area/library) -"bJl" = ( +"bGt" = ( /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/library) -"bJm" = ( +"bGu" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, /turf/open/floor/wood, /area/library) -"bJn" = ( -/obj/machinery/holopad, -/turf/open/floor/wood, -/area/library) -"bJo" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" +"bGv" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)" }, -/turf/open/floor/wood, +/turf/closed/wall, /area/library) -"bJp" = ( +"bGw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway - Port"; + dir = 8; + network = list("SS13") + }, /turf/open/floor/plasteel/neutral/corner{ - dir = 4 + dir = 2 }, /area/hallway/primary/central) -"bJq" = ( +"bGx" = ( /obj/structure/sign/directions/engineering{ desc = "A direction sign, pointing out which way the research department is."; icon_state = "direction_sci"; @@ -43042,10 +40459,10 @@ }, /turf/closed/wall/r_wall, /area/ai_monitored/storage/eva) -"bJr" = ( +"bGy" = ( /turf/closed/wall/r_wall, /area/ai_monitored/storage/eva) -"bJs" = ( +"bGz" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/command{ @@ -43055,11 +40472,11 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bJt" = ( +"bGA" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/ai_monitored/storage/eva) -"bJu" = ( +"bGB" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -43072,10 +40489,10 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bJv" = ( +"bGC" = ( /turf/closed/wall/r_wall, /area/teleporter) -"bJw" = ( +"bGD" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -43090,17 +40507,17 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/teleporter) -"bJx" = ( +"bGE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/teleporter) -"bJy" = ( +"bGF" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /turf/open/floor/plating, /area/hallway/secondary/command) -"bJz" = ( +"bGG" = ( /obj/structure/chair{ dir = 1 }, @@ -43111,17 +40528,17 @@ dir = 8 }, /area/hallway/secondary/command) -"bJA" = ( +"bGH" = ( /obj/structure/chair{ dir = 1 }, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bJB" = ( +"bGI" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bJC" = ( +"bGJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -43130,13 +40547,13 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bJD" = ( +"bGK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bJE" = ( +"bGL" = ( /obj/structure/chair{ dir = 1 }, @@ -43155,14 +40572,14 @@ dir = 2 }, /area/hallway/secondary/command) -"bJF" = ( +"bGM" = ( /turf/closed/wall/r_wall, /area/gateway) -"bJG" = ( +"bGN" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/gateway) -"bJH" = ( +"bGO" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -43175,26 +40592,26 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/gateway) -"bJI" = ( +"bGP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/r_wall, /area/gateway) -"bJJ" = ( +"bGQ" = ( /obj/machinery/vending/cola/random, /turf/open/floor/plasteel/vault, /area/hallway/secondary/command) -"bJK" = ( +"bGR" = ( /obj/machinery/vending/cigarette, /obj/machinery/newscaster{ pixel_y = -29 }, /turf/open/floor/plasteel/vault, /area/hallway/secondary/command) -"bJL" = ( +"bGS" = ( /obj/machinery/vending/coffee, /turf/open/floor/plasteel/vault, /area/hallway/secondary/command) -"bJM" = ( +"bGT" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "0"; req_one_access_txt = "12;17" @@ -43204,7 +40621,7 @@ }, /turf/open/floor/plating, /area/maintenance/central) -"bJN" = ( +"bGU" = ( /obj/structure/sign/directions/engineering{ desc = "A direction sign, pointing out which way the escape arm is."; icon_state = "direction_evac"; @@ -43224,7 +40641,7 @@ }, /turf/closed/wall, /area/maintenance/central) -"bJO" = ( +"bGV" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -43232,7 +40649,7 @@ dir = 1 }, /area/hallway/primary/central) -"bJP" = ( +"bGW" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -43241,7 +40658,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bJQ" = ( +"bGX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -43250,38 +40667,38 @@ dir = 2 }, /area/hallway/primary/central) -"bJR" = ( +"bGY" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plating, /area/crew_quarters/bar) -"bJS" = ( +"bGZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bJT" = ( +"bHa" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bJU" = ( +"bHb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bJV" = ( +"bHc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bJW" = ( +"bHd" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -43293,7 +40710,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bJX" = ( +"bHe" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -43302,7 +40719,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bJY" = ( +"bHf" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -43311,7 +40728,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bJZ" = ( +"bHg" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -43323,7 +40740,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bKa" = ( +"bHh" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -43333,7 +40750,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bKb" = ( +"bHi" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -43342,7 +40759,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bKc" = ( +"bHj" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -43351,18 +40768,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bKd" = ( -/obj/item/soap/nanotrasen, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"bKe" = ( +"bHl" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -43370,7 +40776,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/starboard) -"bKf" = ( +"bHm" = ( /obj/item/crowbar, /obj/item/wrench, /obj/structure/table, @@ -43379,7 +40785,7 @@ dir = 8 }, /area/hallway/primary/starboard) -"bKg" = ( +"bHn" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -43390,7 +40796,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/hallway/primary/starboard) -"bKh" = ( +"bHo" = ( /obj/machinery/light/small{ dir = 4 }, @@ -43405,7 +40811,7 @@ dir = 4 }, /area/hallway/primary/starboard) -"bKi" = ( +"bHp" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/light/small{ dir = 8 @@ -43416,7 +40822,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/atmos) -"bKj" = ( +"bHq" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -43424,7 +40830,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/atmos) -"bKk" = ( +"bHr" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -43433,7 +40839,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/atmos) -"bKl" = ( +"bHs" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /obj/machinery/light/small{ dir = 4 @@ -43444,7 +40850,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/atmos) -"bKm" = ( +"bHt" = ( /obj/machinery/light{ dir = 8 }, @@ -43452,25 +40858,25 @@ dir = 8 }, /area/engine/atmos) -"bKn" = ( +"bHu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/engine/atmos) -"bKo" = ( +"bHv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/atmos) -"bKp" = ( +"bHw" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 6 }, /turf/open/floor/plating, /area/engine/atmos) -"bKq" = ( +"bHx" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/purple/visible, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ @@ -43478,14 +40884,14 @@ }, /turf/open/floor/plating, /area/engine/atmos) -"bKr" = ( +"bHy" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /turf/open/floor/plating, /area/engine/atmos) -"bKs" = ( +"bHz" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/yellow/visible, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ @@ -43493,7 +40899,7 @@ }, /turf/open/floor/plating, /area/engine/atmos) -"bKt" = ( +"bHA" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/green/visible, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ @@ -43501,42 +40907,26 @@ }, /turf/open/floor/plating, /area/engine/atmos) -"bKu" = ( +"bHB" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 4 }, /turf/open/floor/plating, /area/engine/atmos) -"bKv" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bKw" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bKx" = ( +"bHC" = ( /obj/machinery/light/small{ dir = 8 }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bKy" = ( +"bHD" = ( /obj/machinery/light/small{ dir = 1 }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bKz" = ( +"bHE" = ( /obj/machinery/holopad, /obj/structure/cable/yellow{ icon_state = "1-4" @@ -43546,7 +40936,7 @@ }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bKA" = ( +"bHF" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -43558,18 +40948,18 @@ }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bKB" = ( +"bHG" = ( /obj/machinery/light/small{ dir = 4 }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bKC" = ( +"bHH" = ( /obj/structure/closet/firecloset, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bKD" = ( +"bHI" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -43581,13 +40971,13 @@ dir = 4 }, /area/hallway/secondary/entry) -"bKE" = ( +"bHJ" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating{ icon_state = "platingdmg1" }, /area/maintenance/port) -"bKF" = ( +"bHK" = ( /obj/item/book/manual/wiki/security_space_law{ pixel_x = -3; pixel_y = 5 @@ -43595,13 +40985,13 @@ /obj/structure/table/wood, /turf/open/floor/wood, /area/security/vacantoffice) -"bKG" = ( +"bHL" = ( /obj/structure/chair/comfy/black{ dir = 4 }, /turf/open/floor/carpet, /area/security/vacantoffice) -"bKH" = ( +"bHM" = ( /obj/item/folder/white{ pixel_x = 4; pixel_y = -3 @@ -43609,21 +40999,7 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/security/vacantoffice) -"bKI" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/security/vacantoffice) -"bKJ" = ( -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bKK" = ( +"bHN" = ( /obj/machinery/shower{ dir = 4 }, @@ -43632,7 +41008,7 @@ /obj/effect/decal/cleanable/blood/gibs/old, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bKL" = ( +"bHO" = ( /obj/machinery/shower{ dir = 8 }, @@ -43641,21 +41017,14 @@ }, /turf/open/floor/plating, /area/crew_quarters/toilet/auxiliary) -"bKM" = ( -/obj/machinery/light/small, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/crew_quarters/toilet/auxiliary) -"bKN" = ( +"bHP" = ( /obj/machinery/door/airlock{ id_tag = "AuxToilet3"; name = "Unit 3" }, /turf/open/floor/plating, /area/crew_quarters/toilet/auxiliary) -"bKO" = ( +"bHQ" = ( /obj/structure/toilet{ pixel_y = 8 }, @@ -43676,38 +41045,27 @@ /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/crew_quarters/toilet/auxiliary) -"bKP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bKQ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bKR" = ( +"bHR" = ( /obj/structure/bookcase/random/nonfiction, /turf/open/floor/wood, /area/library) -"bKS" = ( +"bHS" = ( /obj/structure/bookcase/random/fiction, /turf/open/floor/wood, /area/library) -"bKT" = ( +"bHT" = ( /obj/structure/table/wood, -/obj/item/device/paicard, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, /turf/open/floor/wood, /area/library) -"bKU" = ( +"bHU" = ( +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/library) +"bHV" = ( /obj/structure/table/wood, /obj/item/paper_bin{ pixel_x = -3; @@ -43715,37 +41073,7 @@ }, /turf/open/floor/wood, /area/library) -"bKV" = ( -/obj/structure/table/wood, -/obj/item/device/camera_film{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/device/camera_film{ - pixel_y = 9 - }, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/turf/open/floor/wood, -/area/library) -"bKW" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -30 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bKX" = ( +"bHW" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -43755,7 +41083,13 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bKY" = ( +"bHX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bHY" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/structure/extinguisher_cabinet{ pixel_x = -27 @@ -43764,20 +41098,20 @@ dir = 8 }, /area/ai_monitored/storage/eva) -"bKZ" = ( +"bHZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line{ dir = 9 }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bLa" = ( +"bIa" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bLb" = ( +"bIb" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -43787,7 +41121,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bLc" = ( +"bIc" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/machinery/light_switch{ pixel_x = -8; @@ -43797,10 +41131,10 @@ dir = 8 }, /area/ai_monitored/storage/eva) -"bLd" = ( +"bId" = ( /turf/closed/wall, /area/ai_monitored/storage/eva) -"bLe" = ( +"bIe" = ( /obj/structure/table, /obj/item/hand_tele, /obj/item/device/radio/beacon, @@ -43812,7 +41146,7 @@ dir = 4 }, /area/teleporter) -"bLf" = ( +"bIf" = ( /obj/structure/table, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high{ @@ -43826,7 +41160,7 @@ dir = 4 }, /area/teleporter) -"bLg" = ( +"bIg" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -43839,7 +41173,7 @@ dir = 8 }, /area/teleporter) -"bLh" = ( +"bIh" = ( /obj/structure/closet/crate{ icon_state = "crate"; opened = 0 @@ -43863,7 +41197,7 @@ dir = 1 }, /area/teleporter) -"bLi" = ( +"bIi" = ( /obj/structure/chair{ dir = 1 }, @@ -43877,7 +41211,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bLj" = ( +"bIj" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -43886,7 +41220,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bLk" = ( +"bIk" = ( /obj/structure/chair{ dir = 1 }, @@ -43900,14 +41234,14 @@ dir = 2 }, /area/hallway/secondary/command) -"bLl" = ( +"bIl" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/open/floor/plating, /area/hallway/secondary/command) -"bLm" = ( +"bIm" = ( /obj/structure/closet/secure_closet/exile, /obj/structure/extinguisher_cabinet{ pixel_x = -27 @@ -43919,7 +41253,7 @@ dir = 1 }, /area/gateway) -"bLn" = ( +"bIn" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -43932,7 +41266,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bLo" = ( +"bIo" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -43942,7 +41276,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bLp" = ( +"bIp" = ( /obj/structure/closet/crate{ icon_state = "crateopen" }, @@ -43969,7 +41303,7 @@ dir = 1 }, /area/gateway) -"bLq" = ( +"bIq" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -43978,7 +41312,7 @@ }, /turf/open/floor/plating, /area/maintenance/central) -"bLr" = ( +"bIr" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -43987,13 +41321,13 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bLs" = ( +"bIs" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/neutral/corner{ dir = 2 }, /area/hallway/primary/central) -"bLt" = ( +"bIt" = ( /obj/structure/table, /obj/item/clothing/head/hardhat/cakehat, /obj/machinery/newscaster{ @@ -44005,7 +41339,7 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bLu" = ( +"bIu" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -44014,12 +41348,13 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bLv" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/bar, -/area/crew_quarters/bar) -"bLw" = ( +"bIv" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bIw" = ( /obj/machinery/light, /obj/machinery/camera{ c_tag = "Kitchen Hatch"; @@ -44028,7 +41363,13 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bLx" = ( +"bIx" = ( +/obj/structure/rack, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/suit/hooded/wintercoat, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"bIy" = ( /obj/machinery/firealarm{ dir = 1; pixel_y = -24 @@ -44036,20 +41377,7 @@ /obj/machinery/light, /turf/open/floor/wood, /area/crew_quarters/bar) -"bLy" = ( -/obj/machinery/door/window{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Theatre Stage"; - req_access_txt = "0" - }, -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bLz" = ( +"bIA" = ( /obj/machinery/light_switch{ pixel_y = -28 }, @@ -44059,13 +41387,13 @@ /obj/machinery/light, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bLA" = ( +"bIB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bLB" = ( +"bIC" = ( /obj/structure/table/wood, /obj/machinery/light/small, /obj/item/clothing/glasses/regular/hipster{ @@ -44073,21 +41401,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bLC" = ( -/obj/item/device/instrument/violin, -/obj/structure/table/wood, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"bLD" = ( +"bIE" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -44097,13 +41411,13 @@ icon_state = "platingdmg2" }, /area/maintenance/starboard) -"bLE" = ( +"bIF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/yellow/side{ dir = 10 }, /area/hallway/primary/starboard) -"bLF" = ( +"bIG" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -44114,7 +41428,7 @@ dir = 2 }, /area/hallway/primary/starboard) -"bLG" = ( +"bIH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -44125,7 +41439,7 @@ dir = 6 }, /area/hallway/primary/starboard) -"bLH" = ( +"bII" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -44133,7 +41447,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/atmos) -"bLI" = ( +"bIJ" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -44141,7 +41455,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/atmos) -"bLJ" = ( +"bIK" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 @@ -44149,7 +41463,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/atmos) -"bLK" = ( +"bIL" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -44157,13 +41471,13 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/atmos) -"bLL" = ( +"bIM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/closed/wall/r_wall, /area/engine/atmos) -"bLM" = ( +"bIN" = ( /obj/structure/table, /obj/item/stack/sheet/glass/fifty, /obj/item/stack/sheet/glass/fifty, @@ -44179,7 +41493,7 @@ dir = 1 }, /area/engine/atmos) -"bLN" = ( +"bIO" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; name = "Air to External Air Ports"; @@ -44189,7 +41503,7 @@ dir = 8 }, /area/engine/atmos) -"bLO" = ( +"bIP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 @@ -44199,49 +41513,49 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bLP" = ( +"bIQ" = ( /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 1 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bLQ" = ( +"bIR" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/atmos) -"bLR" = ( +"bIS" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bLS" = ( +"bIT" = ( /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 4 }, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmos) -"bLT" = ( +"bIU" = ( /obj/machinery/atmospherics/pipe/simple/purple/visible, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmos) -"bLU" = ( +"bIV" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 6 }, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmos) -"bLV" = ( +"bIW" = ( /obj/machinery/atmospherics/pipe/manifold/yellow/visible, /turf/open/floor/plasteel, /area/engine/atmos) -"bLW" = ( +"bIX" = ( /obj/machinery/atmospherics/pipe/manifold/yellow/visible{ dir = 1 }, @@ -44250,7 +41564,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bLX" = ( +"bIY" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -44264,37 +41578,28 @@ dir = 5 }, /area/engine/atmos) -"bLY" = ( +"bIZ" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"bLZ" = ( +"bJa" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 }, /turf/open/floor/plating, /area/engine/atmos) -"bMa" = ( +"bJb" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/orange/visible, /turf/open/space, /area/space/nearstation) -"bMb" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bMc" = ( +"bJc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 8; frequency = 1441; @@ -44303,65 +41608,79 @@ }, /turf/open/floor/engine/n2o, /area/engine/atmos) -"bMd" = ( +"bJd" = ( /turf/open/floor/engine/n2o, /area/engine/atmos) -"bMe" = ( +"bJe" = ( /obj/structure/lattice, /obj/structure/grille, /obj/structure/lattice, /obj/structure/lattice, /turf/closed/wall/r_wall, /area/space/nearstation) -"bMf" = ( +"bJf" = ( /obj/structure/lattice, /obj/structure/grille, /obj/structure/lattice, /turf/closed/wall/r_wall, /area/space/nearstation) -"bMg" = ( +"bJg" = ( /obj/machinery/telecomms/message_server, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"bMh" = ( -/obj/machinery/telecomms/bus/preset_two, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bMi" = ( -/obj/machinery/telecomms/processor/preset_two, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bMj" = ( -/obj/structure/table/glass, -/obj/item/folder{ - pixel_y = 2 +"bJh" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" }, -/obj/item/folder{ - pixel_y = 2 +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bJi" = ( +/obj/machinery/light/small, +/obj/item/folder, +/obj/item/folder, +/obj/machinery/camera{ + c_tag = "Telecomms - Control Room"; + dir = 1; + network = list("SS13","tcomm") }, +/obj/structure/table/wood, /obj/item/pen, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bMk" = ( +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bJj" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;27;37" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bJk" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bMl" = ( -/obj/machinery/telecomms/processor/preset_four, +"bJl" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bJm" = ( +/obj/machinery/telecomms/bus/preset_two, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"bMm" = ( -/obj/machinery/telecomms/bus/preset_four, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bMn" = ( +"bJn" = ( /obj/machinery/blackbox_recorder, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"bMo" = ( +"bJo" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -44372,7 +41691,7 @@ dir = 4 }, /area/hallway/secondary/entry) -"bMp" = ( +"bJp" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "0"; req_one_access_txt = "12;27;37" @@ -44382,7 +41701,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bMq" = ( +"bJq" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -44394,20 +41713,20 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bMr" = ( +"bJr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/effect/landmark/event_spawn, /turf/open/floor/plating, /area/maintenance/port) -"bMs" = ( +"bJs" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/open/floor/plating, /area/maintenance/port) -"bMt" = ( +"bJt" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -44419,7 +41738,7 @@ }, /turf/open/floor/wood, /area/security/vacantoffice) -"bMu" = ( +"bJu" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -44428,25 +41747,25 @@ }, /turf/open/floor/wood, /area/security/vacantoffice) -"bMv" = ( +"bJv" = ( /obj/item/folder/blue, /obj/structure/table/wood, /turf/open/floor/carpet, /area/security/vacantoffice) -"bMw" = ( +"bJw" = ( /obj/structure/chair/office/dark{ dir = 8 }, /turf/open/floor/carpet, /area/security/vacantoffice) -"bMx" = ( +"bJx" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 }, /turf/open/floor/wood, /area/security/vacantoffice) -"bMy" = ( +"bJy" = ( /obj/machinery/light/small{ dir = 8 }, @@ -44457,12 +41776,12 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/wood, /area/library) -"bMz" = ( +"bJz" = ( /turf/open/floor/wood{ icon_state = "wood-broken5" }, /area/library) -"bMA" = ( +"bJA" = ( /obj/machinery/door/window/northright{ base_state = "left"; dir = 8; @@ -44473,29 +41792,14 @@ }, /turf/open/floor/wood, /area/library) -"bMB" = ( +"bJB" = ( /obj/effect/landmark/start/librarian, /obj/structure/chair/office/dark{ dir = 1 }, /turf/open/floor/wood, /area/library) -"bMC" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole/bookmanagement, -/obj/structure/noticeboard{ - desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; - dir = 8; - name = "requests board"; - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/library) -"bMD" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"bME" = ( +"bJC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/extinguisher_cabinet{ pixel_x = 27 @@ -44504,13 +41808,13 @@ dir = 4 }, /area/hallway/primary/central) -"bMF" = ( +"bJD" = ( /obj/machinery/suit_storage_unit/standard_unit, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/ai_monitored/storage/eva) -"bMG" = ( +"bJE" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -44519,7 +41823,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bMH" = ( +"bJF" = ( /obj/structure/table, /obj/item/storage/belt/utility, /obj/item/storage/belt/utility, @@ -44530,7 +41834,7 @@ /obj/item/device/multitool, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bMI" = ( +"bJG" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -44540,7 +41844,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bMJ" = ( +"bJH" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/machinery/firealarm{ dir = 4; @@ -44550,7 +41854,7 @@ dir = 8 }, /area/ai_monitored/storage/eva) -"bMK" = ( +"bJI" = ( /obj/structure/window/reinforced, /obj/structure/table, /obj/item/stack/packageWrap, @@ -44562,7 +41866,7 @@ dir = 4 }, /area/teleporter) -"bML" = ( +"bJJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -44571,7 +41875,7 @@ }, /turf/open/floor/plasteel, /area/teleporter) -"bMM" = ( +"bJK" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -44585,7 +41889,7 @@ }, /turf/open/floor/plasteel, /area/teleporter) -"bMN" = ( +"bJL" = ( /obj/structure/closet/crate{ icon_state = "crate"; opened = 0 @@ -44607,14 +41911,14 @@ dir = 1 }, /area/teleporter) -"bMO" = ( +"bJM" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/open/floor/plating, /area/teleporter) -"bMP" = ( +"bJN" = ( /obj/structure/chair{ dir = 1 }, @@ -44625,7 +41929,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bMQ" = ( +"bJO" = ( /obj/structure/chair{ dir = 1 }, @@ -44633,7 +41937,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bMR" = ( +"bJP" = ( /obj/structure/chair{ dir = 1 }, @@ -44641,7 +41945,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bMS" = ( +"bJQ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -44650,7 +41954,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bMT" = ( +"bJR" = ( /obj/structure/chair{ dir = 1 }, @@ -44661,14 +41965,14 @@ dir = 2 }, /area/hallway/secondary/command) -"bMU" = ( +"bJS" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" }, /turf/open/floor/plating, /area/gateway) -"bMV" = ( +"bJT" = ( /obj/structure/closet/l3closet/scientist, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -44680,7 +41984,7 @@ dir = 1 }, /area/gateway) -"bMW" = ( +"bJU" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -44698,7 +42002,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bMX" = ( +"bJV" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -44711,7 +42015,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bMY" = ( +"bJW" = ( /obj/structure/table, /obj/item/folder/yellow, /obj/structure/cable/yellow{ @@ -44728,7 +42032,7 @@ dir = 1 }, /area/gateway) -"bMZ" = ( +"bJX" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -44738,7 +42042,7 @@ }, /turf/open/floor/plating, /area/gateway) -"bNa" = ( +"bJY" = ( /obj/machinery/gateway{ dir = 9 }, @@ -44747,7 +42051,7 @@ dir = 1 }, /area/gateway) -"bNb" = ( +"bJZ" = ( /obj/machinery/gateway{ dir = 1 }, @@ -44759,7 +42063,7 @@ dir = 8 }, /area/gateway) -"bNc" = ( +"bKa" = ( /obj/machinery/gateway{ dir = 5 }, @@ -44768,7 +42072,7 @@ dir = 4 }, /area/gateway) -"bNd" = ( +"bKb" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -44776,28 +42080,24 @@ icon_state = "panelscorched" }, /area/maintenance/central) -"bNe" = ( +"bKc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/firedoor, /turf/open/floor/plasteel/neutral/corner{ dir = 1 }, /area/hallway/primary/central) -"bNf" = ( +"bKd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /turf/open/floor/plasteel/neutral/corner{ dir = 2 }, /area/hallway/primary/central) -"bNg" = ( -/obj/structure/sign/poster/official/random, +"bKe" = ( /turf/closed/wall, /area/crew_quarters/kitchen) -"bNh" = ( -/turf/closed/wall, -/area/crew_quarters/kitchen) -"bNi" = ( +"bKf" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "kitchen"; name = "Serving Hatch" @@ -44808,7 +42108,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bNj" = ( +"bKg" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ @@ -44821,11 +42121,11 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bNk" = ( +"bKh" = ( /obj/machinery/computer/security/telescreen/entertainment, /turf/closed/wall, /area/crew_quarters/kitchen) -"bNl" = ( +"bKi" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ @@ -44842,7 +42142,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bNm" = ( +"bKj" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ @@ -44854,7 +42154,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bNn" = ( +"bKk" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -44867,18 +42167,18 @@ dir = 2 }, /area/crew_quarters/kitchen) -"bNo" = ( +"bKl" = ( /obj/machinery/vending/snack/random, /obj/machinery/newscaster{ pixel_y = -29 }, /turf/open/floor/carpet, /area/crew_quarters/bar) -"bNp" = ( +"bKm" = ( /obj/machinery/vending/coffee, /turf/open/floor/carpet, /area/crew_quarters/bar) -"bNq" = ( +"bKn" = ( /obj/machinery/camera{ c_tag = "Club - Aft"; dir = 1; @@ -44891,15 +42191,15 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/crew_quarters/bar) -"bNr" = ( +"bKo" = ( /obj/machinery/vending/cigarette, /turf/open/floor/carpet, /area/crew_quarters/bar) -"bNs" = ( +"bKp" = ( /obj/machinery/vending/cola/random, /turf/open/floor/carpet, /area/crew_quarters/bar) -"bNt" = ( +"bKq" = ( /obj/machinery/door/airlock{ name = "Theatre Backstage"; req_access_txt = "46" @@ -44907,14 +42207,14 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bNu" = ( +"bKr" = ( /turf/closed/wall/r_wall, /area/storage/tcom) -"bNv" = ( +"bKs" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/storage/tcom) -"bNw" = ( +"bKt" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/airlock/engineering{ @@ -44927,33 +42227,13 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/storage/tcom) -"bNx" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNy" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNz" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNA" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNB" = ( +"bKu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/closed/wall/r_wall, /area/engine/atmos) -"bNC" = ( +"bKv" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; name = "External Waste Ports to Filter"; @@ -44967,7 +42247,7 @@ dir = 8 }, /area/engine/atmos) -"bND" = ( +"bKw" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 4 }, @@ -44976,26 +42256,26 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bNE" = ( +"bKx" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 2 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bNF" = ( +"bKy" = ( /obj/item/device/radio/beacon, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bNG" = ( +"bKz" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bNH" = ( +"bKA" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; name = "Air to Ports"; @@ -45003,7 +42283,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bNI" = ( +"bKB" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; name = "Mix to Ports"; @@ -45011,7 +42291,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bNJ" = ( +"bKC" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; name = "Pure to Ports"; @@ -45019,15 +42299,15 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bNK" = ( +"bKD" = ( /obj/effect/landmark/start/atmospheric_technician, /turf/open/floor/plasteel, /area/engine/atmos) -"bNL" = ( +"bKE" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible, /turf/open/floor/plasteel, /area/engine/atmos) -"bNM" = ( +"bKF" = ( /obj/machinery/computer/atmos_control/tank{ dir = 8; frequency = 1441; @@ -45044,85 +42324,70 @@ dir = 4 }, /area/engine/atmos) -"bNN" = ( +"bKG" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"bNO" = ( +"bKH" = ( /obj/machinery/air_sensor{ frequency = 1441; id_tag = "n2o_sensor" }, /turf/open/floor/engine/n2o, /area/engine/atmos) -"bNP" = ( +"bKI" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide{ valve_open = 1 }, /turf/open/floor/engine/n2o, /area/engine/atmos) -"bNQ" = ( +"bKJ" = ( /obj/machinery/light/small{ dir = 4 }, /turf/open/floor/engine/n2o, /area/engine/atmos) -"bNR" = ( +"bKK" = ( /obj/structure/grille, /obj/structure/lattice, /obj/structure/lattice, /turf/closed/wall/r_wall, /area/space/nearstation) -"bNS" = ( -/obj/machinery/light/small{ - dir = 4 +"bKL" = ( +/obj/machinery/telecomms/processor/preset_two, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bKM" = ( +/obj/structure/table/glass, +/obj/item/folder{ + pixel_y = 2 }, -/obj/machinery/door/window{ - dir = 2; - name = "MiniSat Walkway Access"; - req_access_txt = "0" +/obj/item/folder{ + pixel_y = 2 }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Aft Port"; - dir = 8; - network = list("MiniSat") - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bNT" = ( +/obj/item/pen, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"bKN" = ( +/obj/machinery/telecomms/bus/preset_four, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bKO" = ( +/obj/machinery/telecomms/hub/preset, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"bKP" = ( +/obj/machinery/telecomms/processor/preset_four, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bKQ" = ( /obj/structure/lattice, /obj/structure/window/reinforced{ dir = 8 }, /turf/open/space, /area/aisat) -"bNU" = ( -/obj/machinery/telecomms/server/presets/common, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bNV" = ( -/obj/machinery/telecomms/server/presets/engineering, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bNW" = ( -/obj/machinery/telecomms/hub/preset, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bNX" = ( -/obj/machinery/telecomms/server/presets/science, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bNY" = ( -/obj/machinery/telecomms/server/presets/medical, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bNZ" = ( +"bKR" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -45146,7 +42411,7 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"bOa" = ( +"bKS" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-06" }, @@ -45155,7 +42420,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bOb" = ( +"bKT" = ( /obj/structure/chair, /obj/effect/landmark/start/assistant, /obj/machinery/light{ @@ -45166,14 +42431,14 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bOc" = ( +"bKU" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bOd" = ( +"bKV" = ( /obj/machinery/light{ dir = 1 }, @@ -45182,7 +42447,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bOe" = ( +"bKW" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -45199,7 +42464,7 @@ dir = 4 }, /area/hallway/secondary/entry) -"bOf" = ( +"bKX" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -45207,11 +42472,7 @@ icon_state = "platingdmg2" }, /area/maintenance/port) -"bOg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bOh" = ( +"bKY" = ( /obj/machinery/power/apc{ dir = 8; name = "Vacant Office APC"; @@ -45223,24 +42484,24 @@ }, /turf/open/floor/wood, /area/security/vacantoffice) -"bOi" = ( +"bKZ" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, /turf/open/floor/wood, /area/security/vacantoffice) -"bOj" = ( +"bLa" = ( /obj/structure/light_construct{ dir = 4 }, /turf/open/floor/wood, /area/security/vacantoffice) -"bOk" = ( +"bLb" = ( /obj/structure/table, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port) -"bOl" = ( +"bLc" = ( /obj/structure/closet/crate{ icon_state = "crateopen" }, @@ -45250,7 +42511,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bOm" = ( +"bLd" = ( /obj/structure/closet, /obj/item/clothing/shoes/jackboots, /obj/effect/spawner/lootdrop/maintenance{ @@ -45259,42 +42520,38 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bOn" = ( +"bLe" = ( /obj/machinery/vending/autodrobe{ req_access_txt = "0" }, /turf/open/floor/plating, /area/maintenance/port) -"bOo" = ( +"bLf" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/costume, /obj/effect/spawner/lootdrop/costume, /turf/open/floor/plating, /area/maintenance/port) -"bOp" = ( +"bLg" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/rack, /obj/effect/spawner/lootdrop/costume, /obj/effect/spawner/lootdrop/costume, /turf/open/floor/plating, /area/maintenance/port) -"bOq" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/port) -"bOr" = ( +"bLh" = ( /obj/structure/bookcase/random/religion, /turf/open/floor/wood, /area/library) -"bOs" = ( +"bLi" = ( /obj/structure/bookcase/random/adult, /turf/open/floor/wood, /area/library) -"bOt" = ( +"bLk" = ( /obj/structure/bookcase/random/reference, /turf/open/floor/wood, /area/library) -"bOu" = ( +"bLl" = ( /obj/structure/table/wood, /obj/item/pen/red, /obj/item/pen/blue{ @@ -45303,17 +42560,7 @@ }, /turf/open/floor/wood, /area/library) -"bOv" = ( -/obj/machinery/light_switch{ - pixel_x = 28 - }, -/turf/open/floor/wood, -/area/library) -"bOw" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"bOx" = ( +"bLm" = ( /obj/item/stack/sheet/rglass{ amount = 50 }, @@ -45344,7 +42591,7 @@ dir = 8 }, /area/ai_monitored/storage/eva) -"bOy" = ( +"bLn" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -45353,13 +42600,13 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bOz" = ( +"bLo" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bOA" = ( +"bLp" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -45369,7 +42616,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bOB" = ( +"bLq" = ( /obj/machinery/door/window/northleft{ dir = 8; name = "Magboot Storage"; @@ -45394,11 +42641,11 @@ dir = 8 }, /area/ai_monitored/storage/eva) -"bOC" = ( +"bLr" = ( /obj/machinery/teleport/hub, /turf/open/floor/plating, /area/teleporter) -"bOD" = ( +"bLs" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -45407,7 +42654,7 @@ }, /turf/open/floor/plasteel, /area/teleporter) -"bOE" = ( +"bLt" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment{ dir = 5 @@ -45417,7 +42664,7 @@ }, /turf/open/floor/plasteel, /area/teleporter) -"bOF" = ( +"bLu" = ( /obj/machinery/door/window/northleft{ dir = 8; name = "Disposals Chute"; @@ -45439,7 +42686,7 @@ dir = 1 }, /area/teleporter) -"bOG" = ( +"bLv" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -45450,10 +42697,10 @@ }, /turf/open/floor/plating, /area/bridge/showroom/corporate) -"bOH" = ( +"bLw" = ( /turf/closed/wall/r_wall, /area/bridge/showroom/corporate) -"bOI" = ( +"bLx" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -45464,7 +42711,7 @@ }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bOJ" = ( +"bLy" = ( /obj/structure/closet/secure_closet/medical1, /obj/machinery/airalarm{ dir = 4; @@ -45477,7 +42724,7 @@ dir = 1 }, /area/gateway) -"bOK" = ( +"bLz" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -45486,7 +42733,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bOL" = ( +"bLA" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ @@ -45494,7 +42741,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bOM" = ( +"bLB" = ( /obj/structure/table, /obj/item/paper/pamphlet/gateway, /obj/effect/turf_decal/bot{ @@ -45504,12 +42751,12 @@ dir = 1 }, /area/gateway) -"bON" = ( +"bLC" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /turf/open/floor/plating, /area/gateway) -"bOO" = ( +"bLD" = ( /obj/machinery/gateway{ dir = 8 }, @@ -45518,11 +42765,11 @@ dir = 8 }, /area/gateway) -"bOP" = ( +"bLE" = ( /obj/machinery/gateway/centerstation, /turf/open/floor/plasteel/dark, /area/gateway) -"bOQ" = ( +"bLF" = ( /obj/machinery/gateway{ dir = 4 }, @@ -45531,7 +42778,7 @@ dir = 8 }, /area/gateway) -"bOR" = ( +"bLG" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -45539,7 +42786,7 @@ /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/central) -"bOS" = ( +"bLH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/status_display{ pixel_x = -32 @@ -45553,7 +42800,7 @@ dir = 1 }, /area/hallway/primary/central) -"bOT" = ( +"bLI" = ( /obj/structure/table, /obj/machinery/microwave{ pixel_x = -3; @@ -45569,7 +42816,7 @@ dir = 2 }, /area/crew_quarters/kitchen) -"bOU" = ( +"bLJ" = ( /obj/structure/table, /obj/machinery/microwave{ pixel_x = -3; @@ -45590,18 +42837,18 @@ dir = 2 }, /area/crew_quarters/kitchen) -"bOV" = ( +"bLK" = ( /turf/open/floor/plasteel/cafeteria{ dir = 5 }, /area/crew_quarters/kitchen) -"bOW" = ( +"bLL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/cafeteria{ dir = 5 }, /area/crew_quarters/kitchen) -"bOX" = ( +"bLM" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -45613,7 +42860,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bOY" = ( +"bLN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -45621,7 +42868,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bOZ" = ( +"bLO" = ( /obj/structure/disposalpipe/segment{ dir = 10 }, @@ -45635,7 +42882,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bPa" = ( +"bLP" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -45643,34 +42890,29 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bPb" = ( +"bLQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/light_switch{ pixel_x = -26 }, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bPc" = ( +"bLR" = ( /obj/structure/dresser, /obj/machinery/newscaster{ pixel_y = 32 }, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bPd" = ( +"bLS" = ( /obj/machinery/vending/autodrobe, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bPe" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bPf" = ( +"bLT" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/bridge) +"bLU" = ( /obj/structure/rack, /obj/item/circuitboard/machine/telecomms/bus, /obj/item/circuitboard/machine/telecomms/broadcaster, @@ -45684,7 +42926,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tcom) -"bPg" = ( +"bLV" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/holopad, /obj/structure/cable/yellow{ @@ -45692,7 +42934,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tcom) -"bPh" = ( +"bLW" = ( /obj/structure/table, /obj/item/stock_parts/subspace/analyzer, /obj/item/stock_parts/subspace/analyzer, @@ -45702,7 +42944,21 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tcom) -"bPi" = ( +"bLX" = ( +/obj/structure/closet, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"bLY" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bLZ" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bMa" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -45711,7 +42967,7 @@ dir = 8 }, /area/engine/atmos) -"bPj" = ( +"bMb" = ( /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 1 }, @@ -45719,7 +42975,7 @@ dir = 8 }, /area/engine/atmos) -"bPk" = ( +"bMc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -45729,14 +42985,14 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bPl" = ( +"bMd" = ( /obj/structure/reagent_dispensers/watertank, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 9 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bPm" = ( +"bMe" = ( /obj/structure/reagent_dispensers/fueltank, /obj/item/device/radio/intercom{ freerange = 0; @@ -45752,7 +43008,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/atmos) -"bPn" = ( +"bMf" = ( /obj/structure/rack, /obj/item/clothing/suit/hazardvest, /obj/item/clothing/suit/hazardvest, @@ -45765,28 +43021,26 @@ /obj/item/clothing/mask/gas, /turf/open/floor/plasteel, /area/engine/atmos) -"bPo" = ( +"bMg" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bPp" = ( +"bMh" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmos) -"bPq" = ( +"bMi" = ( /obj/machinery/atmospherics/pipe/manifold4w/general/visible, /turf/open/floor/plasteel, /area/engine/atmos) -"bPr" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, +"bMj" = ( +/obj/machinery/holopad, /turf/open/floor/plasteel, /area/engine/atmos) -"bPs" = ( +"bMk" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1; filter_type = "n2o"; @@ -45800,14 +43054,14 @@ dir = 6 }, /area/engine/atmos) -"bPt" = ( +"bMl" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"bPu" = ( +"bMm" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 8; frequency = 1441; @@ -45816,7 +43070,7 @@ }, /turf/open/floor/engine/n2o, /area/engine/atmos) -"bPv" = ( +"bMn" = ( /obj/machinery/camera{ c_tag = "Atmospherics Tank - N2O"; dir = 8; @@ -45824,7 +43078,7 @@ }, /turf/open/floor/engine/n2o, /area/engine/atmos) -"bPw" = ( +"bMo" = ( /obj/machinery/airalarm/server{ dir = 4; pixel_x = -22 @@ -45839,13 +43093,13 @@ }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bPx" = ( +"bMp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bPy" = ( +"bMq" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -45854,13 +43108,13 @@ }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bPz" = ( +"bMr" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bPA" = ( +"bMs" = ( /obj/machinery/power/apc/highcap/five_k{ dir = 4; name = "Telecomms Server Room APC"; @@ -45880,7 +43134,16 @@ }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bPB" = ( +"bMt" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bMu" = ( /obj/machinery/camera{ c_tag = "Arrivals - Aft Arm - Far"; dir = 1; @@ -45889,14 +43152,27 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bPC" = ( +"bMv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bPD" = ( +"bMw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = -25 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bMx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -45905,7 +43181,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bPE" = ( +"bMy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -45913,7 +43189,7 @@ dir = 2 }, /area/hallway/secondary/entry) -"bPF" = ( +"bMz" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -45924,7 +43200,7 @@ dir = 2 }, /area/hallway/secondary/entry) -"bPG" = ( +"bMA" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -45940,7 +43216,7 @@ dir = 2 }, /area/hallway/secondary/entry) -"bPH" = ( +"bMB" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -45959,21 +43235,11 @@ dir = 6 }, /area/hallway/secondary/entry) -"bPI" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bPJ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/port) -"bPK" = ( +"bMC" = ( /obj/structure/chair/office/dark, /turf/open/floor/wood, /area/security/vacantoffice) -"bPL" = ( +"bMD" = ( /obj/structure/table/wood, /obj/item/paper_bin{ pixel_x = 1; @@ -45981,7 +43247,7 @@ }, /turf/open/floor/wood, /area/security/vacantoffice) -"bPM" = ( +"bME" = ( /obj/structure/mirror{ pixel_x = -28 }, @@ -45997,20 +43263,7 @@ /obj/structure/table, /turf/open/floor/plating, /area/maintenance/port) -"bPN" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bPO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/port) -"bPP" = ( +"bMF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -46018,7 +43271,7 @@ icon_state = "panelscorched" }, /area/maintenance/port) -"bPQ" = ( +"bMG" = ( /obj/structure/closet/crate{ icon_state = "crateopen" }, @@ -46026,7 +43279,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port) -"bPR" = ( +"bMH" = ( /obj/machinery/light/small, /obj/machinery/power/apc{ dir = 8; @@ -46040,27 +43293,27 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/wood, /area/library) -"bPS" = ( +"bMI" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/wood, /area/library) -"bPT" = ( +"bMJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/carpet, /area/library) -"bPU" = ( +"bMK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "2-8" }, /turf/open/floor/carpet, /area/library) -"bPV" = ( +"bML" = ( /obj/machinery/light/small, /obj/machinery/airalarm{ dir = 1; @@ -46068,7 +43321,7 @@ }, /turf/open/floor/wood, /area/library) -"bPW" = ( +"bMM" = ( /obj/item/folder, /obj/item/folder, /obj/machinery/camera/autoname{ @@ -46080,26 +43333,24 @@ /obj/item/device/tape, /turf/open/floor/wood, /area/library) -"bPX" = ( +"bMN" = ( /obj/machinery/light/small, /obj/machinery/libraryscanner, /turf/open/floor/wood, /area/library) -"bPY" = ( +"bMO" = ( /obj/machinery/newscaster{ pixel_x = -1; pixel_y = -29 }, /turf/open/floor/wood, /area/library) -"bPZ" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/wood, -/area/library) -"bQa" = ( +"bMP" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/bar, +/area/crew_quarters/bar) +"bMR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/light{ dir = 4 @@ -46108,7 +43359,7 @@ dir = 4 }, /area/hallway/primary/central) -"bQb" = ( +"bMS" = ( /obj/structure/closet/crate/rcd{ pixel_y = 4 }, @@ -46127,13 +43378,13 @@ dir = 8 }, /area/ai_monitored/storage/eva) -"bQc" = ( +"bMT" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bQd" = ( +"bMU" = ( /obj/structure/tank_dispenser/oxygen{ layer = 2.9; pixel_x = -1; @@ -46141,7 +43392,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bQe" = ( +"bMV" = ( /obj/machinery/camera/motion{ c_tag = "E.V.A. Storage"; dir = 8 @@ -46159,7 +43410,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bQf" = ( +"bMW" = ( /obj/machinery/teleport/station, /obj/machinery/firealarm{ dir = 8; @@ -46167,21 +43418,21 @@ }, /turf/open/floor/plating, /area/teleporter) -"bQg" = ( +"bMX" = ( /obj/machinery/bluespace_beacon, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/teleporter) -"bQh" = ( +"bMY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plasteel, /area/teleporter) -"bQi" = ( +"bMZ" = ( /obj/machinery/camera{ c_tag = "Teleporter Room"; dir = 8; @@ -46200,7 +43451,7 @@ dir = 1 }, /area/teleporter) -"bQj" = ( +"bNa" = ( /obj/structure/window/reinforced, /obj/structure/showcase/mecha/ripley, /obj/structure/cable/yellow{ @@ -46209,7 +43460,7 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bQk" = ( +"bNb" = ( /obj/structure/sign/plaques/kiddie/perfect_drone{ pixel_y = 32 }, @@ -46218,7 +43469,7 @@ /obj/structure/window/reinforced, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bQl" = ( +"bNc" = ( /obj/structure/showcase/mecha/marauder, /obj/structure/window/reinforced{ dir = 4 @@ -46229,13 +43480,17 @@ }, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bQm" = ( -/obj/structure/bookcase{ - name = "bookcase" +"bNd" = ( +/obj/item/tank/internals/air, +/obj/item/tank/internals/air, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/machinery/light/small{ + dir = 4 }, -/turf/open/floor/wood, -/area/bridge/showroom/corporate) -"bQn" = ( +/turf/open/floor/plating, +/area/maintenance/port) +"bNe" = ( /obj/structure/table/wood, /obj/item/phone{ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; @@ -46257,13 +43512,13 @@ }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bQo" = ( +"bNf" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bQp" = ( +"bNg" = ( /obj/machinery/light_switch{ pixel_y = 24 }, @@ -46281,7 +43536,17 @@ }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bQq" = ( +"bNh" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/pen/red, +/obj/machinery/newscaster{ + pixel_x = 30; + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bNi" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -46296,7 +43561,7 @@ }, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bQr" = ( +"bNj" = ( /obj/structure/showcase/perfect_employee, /obj/structure/sign/plaques/kiddie/perfect_man{ pixel_y = 32 @@ -46304,7 +43569,7 @@ /obj/structure/window/reinforced, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bQs" = ( +"bNk" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -46316,10 +43581,10 @@ }, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bQt" = ( +"bNl" = ( /turf/closed/wall, /area/gateway) -"bQu" = ( +"bNm" = ( /obj/structure/bed/roller, /obj/machinery/vending/wallmed{ pixel_x = -28 @@ -46336,14 +43601,14 @@ dir = 1 }, /area/gateway) -"bQv" = ( +"bNn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plasteel, /area/gateway) -"bQw" = ( +"bNo" = ( /obj/structure/tank_dispenser/oxygen{ pixel_x = -1; pixel_y = 2 @@ -46363,7 +43628,7 @@ dir = 1 }, /area/gateway) -"bQx" = ( +"bNp" = ( /obj/machinery/gateway{ dir = 10 }, @@ -46372,7 +43637,7 @@ dir = 4 }, /area/gateway) -"bQy" = ( +"bNq" = ( /obj/machinery/gateway, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -46382,7 +43647,7 @@ dir = 8 }, /area/gateway) -"bQz" = ( +"bNr" = ( /obj/machinery/gateway{ dir = 6 }, @@ -46391,13 +43656,13 @@ dir = 1 }, /area/gateway) -"bQA" = ( +"bNs" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plating, /area/maintenance/central) -"bQB" = ( +"bNt" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/item/device/radio/intercom{ dir = 8; @@ -46408,7 +43673,7 @@ dir = 1 }, /area/hallway/primary/central) -"bQC" = ( +"bNu" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, @@ -46416,7 +43681,7 @@ dir = 2 }, /area/hallway/primary/central) -"bQD" = ( +"bNv" = ( /obj/effect/spawner/structure/window, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -46427,7 +43692,7 @@ }, /turf/open/floor/plating, /area/crew_quarters/kitchen) -"bQE" = ( +"bNw" = ( /obj/structure/rack, /obj/item/book/manual/chef_recipes{ pixel_x = 2; @@ -46442,7 +43707,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bQF" = ( +"bNx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -46450,7 +43715,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bQG" = ( +"bNy" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -46458,7 +43723,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bQH" = ( +"bNz" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -46466,7 +43731,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bQI" = ( +"bNA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -46474,13 +43739,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bQJ" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/kitchen) -"bQK" = ( +"bNB" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -46489,7 +43748,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bQL" = ( +"bNC" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -46499,14 +43758,14 @@ dir = 2 }, /area/crew_quarters/kitchen) -"bQM" = ( +"bND" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, /obj/structure/closet/secure_closet/freezer/meat, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bQN" = ( +"bNE" = ( /obj/structure/sink/kitchen{ desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; @@ -46514,52 +43773,40 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bQO" = ( +"bNF" = ( /obj/machinery/gibber, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bQP" = ( +"bNG" = ( /obj/structure/kitchenspike, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bQQ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/clothing/mask/pig, -/obj/item/bikehorn, -/obj/structure/table/wood, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"bQR" = ( +"bNI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bQS" = ( +"bNJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/effect/landmark/start/mime, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bQT" = ( -/obj/machinery/light/small{ - dir = 4 +"bNK" = ( +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/sign/poster/contraband/clown{ - pixel_x = 32 +/obj/structure/table/wood, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 }, /turf/open/floor/wood, -/area/crew_quarters/theatre) -"bQU" = ( +/area/security/vacantoffice) +"bNL" = ( /obj/structure/table, /obj/item/stock_parts/subspace/transmitter, /obj/item/stock_parts/subspace/transmitter, @@ -46580,7 +43827,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tcom) -"bQV" = ( +"bNM" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -46589,7 +43836,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tcom) -"bQW" = ( +"bNN" = ( /obj/structure/table, /obj/item/stock_parts/subspace/treatment, /obj/item/stock_parts/subspace/treatment, @@ -46603,26 +43850,11 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tcom) -"bQX" = ( -/obj/structure/closet, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"bQY" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bQZ" = ( -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bRa" = ( +"bNO" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/item/storage/box/lights/mixed, /turf/open/floor/plating, /area/maintenance/starboard) -"bRb" = ( +"bNP" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 9 }, @@ -46630,7 +43862,7 @@ dir = 8 }, /area/engine/atmos) -"bRc" = ( +"bNQ" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -46640,11 +43872,11 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bRd" = ( +"bNR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/engine/atmos) -"bRe" = ( +"bNS" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, @@ -46658,10 +43890,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bRf" = ( -/turf/open/floor/plasteel, -/area/engine/atmos) -"bRg" = ( +"bNU" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; name = "Port Mix to East Ports"; @@ -46670,22 +43899,7 @@ /obj/item/crowbar, /turf/open/floor/plasteel, /area/engine/atmos) -"bRh" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bRi" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Mix to Engine"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bRj" = ( +"bNV" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, /obj/machinery/door/window/northleft{ dir = 8; @@ -46693,45 +43907,39 @@ name = "Inner Pipe Access"; req_access_txt = "24" }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"bNW" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/door/window{ + dir = 2; + name = "MiniSat Walkway Access"; + req_access_txt = "0" + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Aft Port"; + dir = 8; + network = list("MiniSat") + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ dir = 4 }, /turf/open/floor/plasteel/dark, -/area/engine/atmos) -"bRk" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) -"bRl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"bRm" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 9 - }, -/turf/open/space, -/area/space/nearstation) -"bRn" = ( -/obj/machinery/telecomms/broadcaster/preset_left, +/area/aisat) +"bNX" = ( +/obj/machinery/telecomms/server/presets/common, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"bRo" = ( -/obj/machinery/telecomms/server/presets/command, +"bNY" = ( +/obj/machinery/telecomms/server/presets/engineering, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"bRp" = ( -/obj/machinery/telecomms/server/presets/security, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bRq" = ( +"bNZ" = ( /obj/machinery/light/small, /obj/machinery/camera{ c_tag = "Telecomms - Server Room - Aft"; @@ -46742,25 +43950,26 @@ /obj/machinery/ntnet_relay, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bRr" = ( -/obj/machinery/telecomms/server/presets/service, +"bOa" = ( +/obj/machinery/telecomms/server/presets/medical, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"bRs" = ( -/obj/machinery/telecomms/server/presets/supply, +"bOb" = ( +/obj/machinery/telecomms/server/presets/science, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"bRt" = ( -/obj/machinery/telecomms/broadcaster/preset_right, +"bOc" = ( +/obj/machinery/telecomms/broadcaster/preset_left, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"bRu" = ( +"bOd" = ( /obj/machinery/door/airlock/external{ name = "Auxiliary Airlock" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/hallway/secondary/entry) -"bRv" = ( +"bOe" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "0"; req_one_access_txt = "12;27" @@ -46771,15 +43980,16 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port) -"bRw" = ( -/obj/structure/table/wood, -/obj/item/paper, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 +"bOf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bRx" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bOg" = ( /obj/structure/table/wood, /obj/item/folder/white{ pixel_x = 4; @@ -46787,30 +43997,17 @@ }, /turf/open/floor/wood, /area/security/vacantoffice) -"bRy" = ( +"bOh" = ( /obj/item/toy/cards/deck, /obj/structure/table/wood, /turf/open/floor/wood, /area/security/vacantoffice) -"bRz" = ( +"bOi" = ( /obj/structure/table, /obj/item/clothing/mask/cigarette/pipe, /turf/open/floor/plating, /area/maintenance/port) -"bRA" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port) -"bRB" = ( -/turf/open/floor/plating, -/area/maintenance/port) -"bRC" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port) -"bRD" = ( +"bOk" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/centcom{ name = "Quiet Room"; @@ -46819,7 +44016,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/library) -"bRE" = ( +"bOl" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/centcom{ name = "Quiet Room"; @@ -46831,21 +44028,21 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/library) -"bRF" = ( +"bOm" = ( /obj/machinery/door/morgue{ name = "Private Study"; req_access_txt = "37" }, /turf/open/floor/engine/cult, /area/library) -"bRG" = ( +"bOn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/firedoor, /turf/open/floor/plasteel/neutral/corner{ dir = 4 }, /area/hallway/primary/central) -"bRH" = ( +"bOo" = ( /obj/item/stack/sheet/metal/fifty, /obj/item/stack/sheet/metal/fifty, /obj/structure/table, @@ -46868,25 +44065,32 @@ dir = 8 }, /area/ai_monitored/storage/eva) -"bRI" = ( +"bOp" = ( /obj/machinery/holopad, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bRJ" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bRK" = ( +"bOq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"bOr" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bRL" = ( +"bOs" = ( /obj/machinery/door/window/northleft{ dir = 8; name = "Jetpack Storage"; @@ -46908,38 +44112,32 @@ dir = 8 }, /area/ai_monitored/storage/eva) -"bRM" = ( +"bOt" = ( /obj/machinery/computer/teleporter{ dir = 4 }, /turf/open/floor/plating, /area/teleporter) -"bRN" = ( +"bOu" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/teleporter) -"bRO" = ( -/obj/structure/rack, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = 27 +"bOv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 }, -/turf/open/floor/plasteel/vault{ - dir = 1 +/obj/structure/cable/yellow{ + icon_state = "1-4" }, -/area/teleporter) -"bRP" = ( +/turf/open/floor/plating, +/area/maintenance/port) +"bOw" = ( /turf/closed/wall, /area/teleporter) -"bRQ" = ( +"bOx" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -46952,14 +44150,14 @@ }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bRR" = ( +"bOy" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/effect/decal/cleanable/oil, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bRS" = ( +"bOz" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -46968,35 +44166,20 @@ }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bRT" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/bridge/showroom/corporate) -"bRU" = ( +"bOB" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bRV" = ( +"bOC" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bRW" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/bridge/showroom/corporate) -"bRX" = ( +"bOD" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -47010,14 +44193,14 @@ icon_state = "wood-broken6" }, /area/bridge/showroom/corporate) -"bRY" = ( +"bOE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bRZ" = ( +"bOF" = ( /obj/machinery/power/apc/highcap/five_k{ dir = 4; name = "Nanotrasen Corporate Showroom APC"; @@ -47036,7 +44219,7 @@ }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bSa" = ( +"bOG" = ( /obj/structure/rack, /obj/item/stack/medical/ointment, /obj/item/stack/medical/bruise_pack, @@ -47052,43 +44235,43 @@ dir = 1 }, /area/gateway) -"bSb" = ( +"bOH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/corner{ dir = 8 }, /turf/open/floor/plasteel, /area/gateway) -"bSc" = ( +"bOI" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 }, /turf/open/floor/plasteel, /area/gateway) -"bSd" = ( +"bOJ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" }, /turf/open/floor/plating, /area/gateway) -"bSe" = ( +"bOK" = ( /turf/open/floor/plasteel/vault, /area/gateway) -"bSf" = ( +"bOL" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/vault, /area/gateway) -"bSg" = ( +"bOM" = ( /obj/machinery/light{ dir = 4 }, /turf/open/floor/plasteel/vault, /area/gateway) -"bSh" = ( +"bON" = ( /obj/structure/sign/warning/securearea{ pixel_x = -32 }, @@ -47099,7 +44282,7 @@ icon_state = "platingdmg2" }, /area/maintenance/central) -"bSi" = ( +"bOO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/light{ dir = 8 @@ -47108,7 +44291,7 @@ dir = 1 }, /area/hallway/primary/central) -"bSj" = ( +"bOP" = ( /obj/effect/spawner/structure/window, /obj/machinery/door/poddoor/preopen{ id = "kitchenwindow"; @@ -47116,23 +44299,23 @@ }, /turf/open/floor/plating, /area/crew_quarters/kitchen) -"bSk" = ( +"bOQ" = ( /obj/machinery/food_cart, /turf/open/floor/plasteel/cafeteria{ dir = 5 }, /area/crew_quarters/kitchen) -"bSl" = ( +"bOR" = ( /obj/effect/landmark/start/cook, /turf/open/floor/plasteel/cafeteria, /area/crew_quarters/kitchen) -"bSm" = ( +"bOS" = ( /obj/structure/table, /turf/open/floor/plasteel/cafeteria{ dir = 5 }, /area/crew_quarters/kitchen) -"bSn" = ( +"bOT" = ( /obj/structure/table, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/item/storage/box/donkpockets, @@ -47140,25 +44323,20 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bSo" = ( +"bOU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/table, /turf/open/floor/plasteel/cafeteria{ dir = 5 }, /area/crew_quarters/kitchen) -"bSp" = ( +"bOV" = ( /obj/machinery/deepfryer, /turf/open/floor/plasteel/cafeteria{ dir = 5 }, /area/crew_quarters/kitchen) -"bSq" = ( -/obj/effect/landmark/start/cook, -/obj/machinery/holopad, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bSr" = ( +"bOW" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -47167,27 +44345,33 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bSs" = ( +"bOX" = ( /obj/structure/closet/secure_closet/freezer/kitchen, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bSt" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"bSu" = ( +"bOY" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bOZ" = ( /obj/machinery/chem_master/condimaster{ name = "CondiMaster Neo"; pixel_x = -4 }, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bSv" = ( +"bPa" = ( /mob/living/simple_animal/hostile/retaliate/goat{ name = "Pete" }, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bSw" = ( +"bPb" = ( /obj/structure/table/wood, /obj/structure/mirror{ pixel_x = -28 @@ -47203,20 +44387,20 @@ }, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bSx" = ( +"bPc" = ( /obj/structure/chair/wood/wings{ dir = 8 }, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bSy" = ( +"bPd" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /obj/effect/landmark/start/clown, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bSz" = ( +"bPe" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -47228,7 +44412,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bSA" = ( +"bPf" = ( /obj/machinery/door/airlock{ name = "Theatre Backstage"; req_access_txt = "46" @@ -47241,7 +44425,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bSB" = ( +"bPg" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -47257,7 +44441,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bSC" = ( +"bPh" = ( /obj/structure/table, /obj/item/stock_parts/subspace/ansible, /obj/item/stock_parts/subspace/ansible, @@ -47267,7 +44451,7 @@ /obj/item/stock_parts/subspace/crystal, /turf/open/floor/plasteel/dark, /area/storage/tcom) -"bSD" = ( +"bPi" = ( /obj/structure/table, /obj/item/stock_parts/micro_laser, /obj/item/stock_parts/manipulator, @@ -47285,7 +44469,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tcom) -"bSE" = ( +"bPj" = ( /obj/structure/table, /obj/item/stock_parts/subspace/filter, /obj/item/stock_parts/subspace/filter, @@ -47294,37 +44478,37 @@ /obj/item/stock_parts/subspace/filter, /turf/open/floor/plasteel/dark, /area/storage/tcom) -"bSF" = ( +"bPk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/plating, /area/maintenance/starboard) -"bSG" = ( +"bPl" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/starboard) -"bSH" = ( +"bPm" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/starboard) -"bSI" = ( +"bPn" = ( /obj/machinery/atmospherics/components/trinary/filter, /turf/open/floor/plating, /area/maintenance/starboard) -"bSJ" = ( +"bPo" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, /obj/machinery/portable_atmospherics/scrubber, /turf/open/floor/plasteel/red, /area/engine/atmos) -"bSK" = ( +"bPp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, @@ -47332,7 +44516,7 @@ dir = 8 }, /area/engine/atmos) -"bSL" = ( +"bPq" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -47341,14 +44525,14 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bSM" = ( +"bPr" = ( /obj/structure/closet/secure_closet/atmospherics, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bSN" = ( +"bPs" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -47360,14 +44544,14 @@ dir = 1 }, /area/engine/atmos) -"bSO" = ( +"bPt" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4 }, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmos) -"bSP" = ( +"bPu" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 }, @@ -47379,13 +44563,13 @@ dir = 1 }, /area/engine/atmos) -"bSQ" = ( +"bPv" = ( /obj/machinery/atmospherics/pipe/manifold/yellow/visible{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bSR" = ( +"bPw" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, /obj/machinery/atmospherics/components/binary/pump{ dir = 8; @@ -47401,14 +44585,7 @@ }, /turf/open/floor/plasteel/purple, /area/engine/atmos) -"bSS" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bST" = ( +"bPx" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 8; frequency = 1441; @@ -47417,14 +44594,14 @@ }, /turf/open/floor/engine/plasma, /area/engine/atmos) -"bSU" = ( +"bPy" = ( /turf/open/floor/engine/plasma, /area/engine/atmos) -"bSV" = ( +"bPz" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/engine/plasma, /area/engine/atmos) -"bSW" = ( +"bPA" = ( /obj/machinery/light/small{ dir = 8 }, @@ -47433,7 +44610,7 @@ }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"bSX" = ( +"bPC" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -47445,7 +44622,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bSY" = ( +"bPD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -47454,22 +44631,14 @@ icon_state = "platingdmg2" }, /area/maintenance/port) -"bSZ" = ( -/obj/structure/closet/crate, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/poster/random_official, -/turf/open/floor/plating, -/area/maintenance/port) -"bTa" = ( +"bPF" = ( /obj/structure/grille, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/port) -"bTb" = ( +"bPG" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -47478,14 +44647,14 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bTc" = ( +"bPH" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, /obj/item/trash/candy, /turf/open/floor/plating, /area/maintenance/port) -"bTd" = ( +"bPI" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Vacant Office Maintenance"; req_access_txt = "32"; @@ -47493,22 +44662,22 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bTe" = ( +"bPJ" = ( /obj/structure/rack, /obj/item/clothing/mask/horsehead, /turf/open/floor/plating, /area/maintenance/port) -"bTf" = ( +"bPK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/port) -"bTg" = ( +"bPL" = ( /obj/structure/rack, /obj/item/storage/box, /turf/open/floor/plating, /area/maintenance/port) -"bTh" = ( +"bPM" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -47517,12 +44686,12 @@ icon_state = "platingdmg2" }, /area/maintenance/port) -"bTi" = ( +"bPN" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/maintenance/port) -"bTj" = ( +"bPO" = ( /obj/structure/table/wood, /obj/item/paper_bin{ pixel_x = -2; @@ -47532,19 +44701,19 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/wood, /area/library) -"bTk" = ( +"bPP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, /turf/open/floor/wood, /area/library) -"bTl" = ( +"bPQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, /turf/open/floor/wood, /area/library) -"bTm" = ( +"bPR" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -47553,7 +44722,7 @@ }, /turf/open/floor/wood, /area/library) -"bTn" = ( +"bPS" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -47562,12 +44731,17 @@ }, /turf/open/floor/wood, /area/library) -"bTo" = ( +"bPT" = ( +/obj/structure/table/wood, +/obj/item/device/paicard, +/turf/open/floor/wood, +/area/library) +"bPU" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/machinery/vending/games, /turf/open/floor/wood, /area/library) -"bTp" = ( +"bPV" = ( /obj/structure/destructible/cult/tome, /obj/machinery/newscaster{ pixel_x = -30 @@ -47577,11 +44751,11 @@ /obj/item/book/codex_gigas, /turf/open/floor/engine/cult, /area/library) -"bTq" = ( +"bPW" = ( /obj/structure/chair/comfy/brown, /turf/open/floor/engine/cult, /area/library) -"bTr" = ( +"bPX" = ( /obj/effect/landmark/blobstart, /obj/machinery/light/small{ dir = 1 @@ -47592,7 +44766,7 @@ /obj/structure/closet/wardrobe/curator, /turf/open/floor/engine/cult, /area/library) -"bTs" = ( +"bPY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/airalarm{ dir = 8; @@ -47602,7 +44776,7 @@ dir = 4 }, /area/hallway/primary/central) -"bTt" = ( +"bPZ" = ( /obj/structure/table, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high{ @@ -47615,7 +44789,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bTu" = ( +"bQa" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -47624,7 +44798,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bTv" = ( +"bQb" = ( /obj/machinery/shieldwallgen, /obj/structure/window/reinforced{ dir = 1; @@ -47637,7 +44811,7 @@ dir = 4 }, /area/teleporter) -"bTw" = ( +"bQc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -47646,7 +44820,7 @@ }, /turf/open/floor/plasteel, /area/teleporter) -"bTx" = ( +"bQd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -47655,7 +44829,7 @@ }, /turf/open/floor/plasteel, /area/teleporter) -"bTy" = ( +"bQe" = ( /obj/machinery/shieldwallgen, /obj/structure/window/reinforced{ dir = 1; @@ -47668,7 +44842,7 @@ dir = 1 }, /area/teleporter) -"bTz" = ( +"bQf" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -47689,32 +44863,32 @@ }, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bTA" = ( +"bQg" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bTB" = ( +"bQh" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bTC" = ( +"bQi" = ( /turf/open/floor/wood{ icon_state = "wood-broken3" }, /area/bridge/showroom/corporate) -"bTD" = ( +"bQj" = ( /obj/machinery/cell_charger, /obj/item/stock_parts/cell/crap, /obj/structure/table/wood, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bTE" = ( +"bQk" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/holopad, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bTF" = ( +"bQl" = ( /obj/structure/table/wood, /obj/item/toy/plush/carpplushie{ color = "red"; @@ -47722,36 +44896,17 @@ }, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bTG" = ( +"bQm" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bTH" = ( +"bQn" = ( /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bTI" = ( -/obj/structure/table/wood, -/obj/machinery/button/door{ - id = "corporate_privacy"; - name = "corporate showroom shutters control"; - pixel_x = 28; - req_access_txt = "19" - }, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/item/device/paicard{ - desc = "A real Nanotrasen success, these personal AIs provide all of the companionship of an AI without any law related red-tape."; - name = "Nanotrasen-brand personal AI device exhibit" - }, -/turf/open/floor/carpet, -/area/bridge/showroom/corporate) -"bTJ" = ( +"bQp" = ( /obj/structure/rack, /obj/item/clothing/suit/hazardvest, /obj/item/clothing/suit/hazardvest, @@ -47770,7 +44925,7 @@ dir = 1 }, /area/gateway) -"bTK" = ( +"bQq" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -47782,7 +44937,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bTL" = ( +"bQr" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -47794,7 +44949,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bTM" = ( +"bQs" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -47806,7 +44961,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bTN" = ( +"bQt" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -47825,7 +44980,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bTO" = ( +"bQu" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -47834,7 +44989,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bTP" = ( +"bQv" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -47843,7 +44998,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bTQ" = ( +"bQw" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -47852,7 +45007,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bTR" = ( +"bQx" = ( /obj/machinery/door/airlock/maintenance{ name = "Gateway Maintenance"; req_access_txt = "17" @@ -47865,7 +45020,7 @@ }, /turf/open/floor/plating, /area/maintenance/central) -"bTS" = ( +"bQy" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -47880,7 +45035,7 @@ }, /turf/open/floor/plating, /area/maintenance/central) -"bTT" = ( +"bQz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/extinguisher_cabinet{ pixel_x = -27 @@ -47889,7 +45044,7 @@ dir = 1 }, /area/hallway/primary/central) -"bTU" = ( +"bQA" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -47898,7 +45053,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bTV" = ( +"bQB" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -47906,7 +45061,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bTW" = ( +"bQC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -47917,7 +45072,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bTX" = ( +"bQD" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -47931,7 +45086,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bTY" = ( +"bQE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -47942,7 +45097,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bTZ" = ( +"bQF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -47953,7 +45108,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bUa" = ( +"bQG" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-8" @@ -47965,7 +45120,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bUb" = ( +"bQH" = ( /obj/machinery/requests_console{ department = "Kitchen"; departmentType = 2; @@ -47976,11 +45131,11 @@ dir = 2 }, /area/crew_quarters/kitchen) -"bUc" = ( +"bQI" = ( /obj/structure/closet/chefcloset, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bUd" = ( +"bQJ" = ( /obj/effect/landmark/start/cook, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 @@ -47988,114 +45143,58 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bUe" = ( +"bQK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bUf" = ( -/obj/machinery/icecream_vat, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"bUg" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/clothing/mask/horsehead, -/obj/structure/table/wood, +"bQN" = ( /obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/item/clothing/mask/cigarette/pipe, -/obj/item/clothing/mask/fakemoustache, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"bUh" = ( -/obj/machinery/camera{ - c_tag = "Theatre - Backstage"; - dir = 1; - network = list("SS13") - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/obj/structure/closet/crate/wooden/toy, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"bUi" = ( -/obj/machinery/light/small, -/obj/item/toy/dummy, -/obj/item/toy/prize/honk{ - pixel_y = 12 - }, -/obj/structure/table/wood, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"bUj" = ( -/obj/machinery/firealarm{ - dir = 4; + dir = 8; pixel_x = 24 }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"bUk" = ( +/turf/open/floor/plating, +/area/crew_quarters/toilet/auxiliary) +"bQQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/item/wrench, /turf/open/floor/plating, /area/maintenance/starboard) -"bUl" = ( +"bQR" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 }, /obj/machinery/portable_atmospherics/canister, /turf/open/floor/plating, /area/maintenance/starboard) -"bUm" = ( +"bQS" = ( /obj/machinery/suit_storage_unit/atmos, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bUn" = ( +"bQT" = ( /obj/structure/sign/warning/nosmoking, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/engine/atmos) -"bUo" = ( +"bQU" = ( /obj/machinery/atmospherics/components/trinary/filter{ filter_type = -1; on = 1 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bUp" = ( +"bQV" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 8 }, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmos) -"bUq" = ( +"bQW" = ( /obj/machinery/computer/atmos_control/tank{ dir = 8; frequency = 1441; @@ -48110,54 +45209,44 @@ }, /turf/open/floor/plasteel/purple, /area/engine/atmos) -"bUr" = ( +"bQX" = ( /obj/machinery/air_sensor{ frequency = 1441; id_tag = "tox_sensor" }, /turf/open/floor/engine/plasma, /area/engine/atmos) -"bUs" = ( +"bQY" = ( /obj/machinery/portable_atmospherics/canister/toxins, /turf/open/floor/engine/plasma, /area/engine/atmos) -"bUt" = ( +"bQZ" = ( /obj/machinery/light/small{ dir = 4 }, /turf/open/floor/engine/plasma, /area/engine/atmos) -"bUu" = ( +"bRa" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, /area/aisat) -"bUv" = ( +"bRc" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, /turf/open/floor/plating, /area/maintenance/port) -"bUw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bUx" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port) -"bUy" = ( +"bRd" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/port) -"bUz" = ( +"bRe" = ( /obj/item/trash/cheesie, /turf/open/floor/plating, /area/maintenance/port) -"bUA" = ( +"bRf" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; req_access_txt = "12" @@ -48165,22 +45254,22 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port) -"bUB" = ( +"bRg" = ( /obj/machinery/holopad, /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, /turf/open/floor/wood, /area/library) -"bUC" = ( +"bRh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/library) -"bUD" = ( +"bRi" = ( /obj/structure/chair/office/dark, /turf/open/floor/wood, /area/library) -"bUE" = ( +"bRj" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -48191,7 +45280,7 @@ icon_state = "wood-broken" }, /area/library) -"bUF" = ( +"bRk" = ( /obj/machinery/computer/security/telescreen/entertainment{ pixel_x = 30 }, @@ -48201,7 +45290,7 @@ }, /turf/open/floor/wood, /area/library) -"bUG" = ( +"bRl" = ( /obj/structure/table/wood, /obj/item/paper_bin{ pixel_x = -3; @@ -48210,7 +45299,7 @@ /obj/item/pen/invisible, /turf/open/floor/engine/cult, /area/library) -"bUH" = ( +"bRm" = ( /obj/item/device/taperecorder, /obj/item/device/camera, /obj/item/device/radio/intercom{ @@ -48219,13 +45308,13 @@ /obj/structure/table/wood, /turf/open/floor/engine/cult, /area/library) -"bUI" = ( +"bRn" = ( /obj/structure/bookcase{ name = "Forbidden Knowledge" }, /turf/open/floor/engine/cult, /area/library) -"bUJ" = ( +"bRo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/item/device/radio/intercom{ dir = 4; @@ -48236,49 +45325,49 @@ dir = 4 }, /area/hallway/primary/central) -"bUK" = ( +"bRp" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bUL" = ( +"bRq" = ( /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bUM" = ( +"bRr" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bUN" = ( +"bRs" = ( /obj/machinery/shieldwallgen, /turf/open/floor/plasteel/vault{ dir = 4 }, /area/teleporter) -"bUO" = ( +"bRt" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/plasteel, /area/teleporter) -"bUP" = ( +"bRu" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/plasteel, /area/teleporter) -"bUQ" = ( +"bRv" = ( /obj/machinery/shieldwallgen, /turf/open/floor/plasteel/vault{ dir = 1 }, /area/teleporter) -"bUR" = ( +"bRw" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -48295,7 +45384,7 @@ }, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bUS" = ( +"bRx" = ( /obj/structure/table/wood, /obj/item/storage/secure/briefcase{ desc = "A large briefcase with a digital locking system, and the Nanotrasen logo emblazoned on the sides."; @@ -48304,11 +45393,11 @@ }, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bUT" = ( +"bRy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bUU" = ( +"bRz" = ( /obj/structure/showcase/machinery/microwave{ dir = 1; pixel_y = 2 @@ -48316,7 +45405,7 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bUV" = ( +"bRA" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -48329,7 +45418,7 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bUW" = ( +"bRB" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -48347,7 +45436,7 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bUX" = ( +"bRC" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -48372,7 +45461,7 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bUY" = ( +"bRD" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48384,7 +45473,7 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bUZ" = ( +"bRE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-8" @@ -48395,7 +45484,7 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bVa" = ( +"bRF" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48419,7 +45508,7 @@ }, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bVb" = ( +"bRG" = ( /obj/item/book/manual/wiki/security_space_law{ name = "space law"; pixel_y = 2 @@ -48446,7 +45535,7 @@ }, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bVc" = ( +"bRH" = ( /obj/structure/table, /obj/item/storage/fancy/donut_box, /obj/machinery/firealarm{ @@ -48460,7 +45549,7 @@ dir = 1 }, /area/gateway) -"bVd" = ( +"bRI" = ( /obj/structure/table, /obj/machinery/recharger, /obj/effect/turf_decal/bot{ @@ -48470,7 +45559,7 @@ dir = 1 }, /area/gateway) -"bVe" = ( +"bRJ" = ( /obj/structure/table, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high{ @@ -48484,7 +45573,7 @@ dir = 1 }, /area/gateway) -"bVf" = ( +"bRK" = ( /obj/item/storage/belt/utility, /obj/item/device/radio/off, /obj/item/device/radio/off, @@ -48503,13 +45592,13 @@ dir = 1 }, /area/gateway) -"bVg" = ( +"bRL" = ( /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plasteel, /area/gateway) -"bVh" = ( +"bRM" = ( /obj/machinery/airalarm{ dir = 8; pixel_x = 24 @@ -48524,7 +45613,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bVi" = ( +"bRN" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -48532,7 +45621,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/central) -"bVj" = ( +"bRO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/firealarm{ dir = 8; @@ -48542,7 +45631,7 @@ dir = 1 }, /area/hallway/primary/central) -"bVk" = ( +"bRP" = ( /obj/structure/table, /obj/item/reagent_containers/food/snacks/mint, /obj/machinery/airalarm{ @@ -48560,7 +45649,7 @@ dir = 2 }, /area/crew_quarters/kitchen) -"bVl" = ( +"bRQ" = ( /obj/structure/table, /obj/item/reagent_containers/glass/beaker{ pixel_x = 5 @@ -48572,7 +45661,7 @@ dir = 2 }, /area/crew_quarters/kitchen) -"bVm" = ( +"bRR" = ( /obj/structure/table, /obj/item/stack/packageWrap, /obj/item/hand_labeler, @@ -48586,7 +45675,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bVn" = ( +"bRS" = ( /obj/structure/table, /obj/item/reagent_containers/food/condiment/saltshaker{ pixel_x = -3 @@ -48604,7 +45693,7 @@ dir = 2 }, /area/crew_quarters/kitchen) -"bVo" = ( +"bRT" = ( /obj/structure/extinguisher_cabinet{ pixel_y = -30 }, @@ -48614,7 +45703,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bVp" = ( +"bRU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -48628,7 +45717,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bVq" = ( +"bRV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -48642,7 +45731,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bVr" = ( +"bRW" = ( /obj/machinery/door/airlock{ name = "Kitchen Cold Room"; req_access_txt = "28" @@ -48658,7 +45747,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bVs" = ( +"bRX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -48674,7 +45763,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bVt" = ( +"bRY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -48695,7 +45784,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bVu" = ( +"bRZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -48711,7 +45800,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bVv" = ( +"bSa" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -48723,22 +45812,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bVw" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 28 - }, -/obj/structure/reagent_dispensers/cooking_oil, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"bVx" = ( +"bSc" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -48748,26 +45822,22 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard) -"bVy" = ( +"bSd" = ( /obj/machinery/portable_atmospherics/canister, /turf/open/floor/plating, /area/maintenance/starboard) -"bVz" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bVA" = ( +"bSe" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/starboard) -"bVB" = ( +"bSf" = ( /obj/item/crowbar, /turf/open/floor/plating{ icon_state = "platingdmg1" }, /area/maintenance/starboard) -"bVC" = ( +"bSg" = ( /obj/structure/fireaxecabinet{ pixel_x = -32 }, @@ -48783,7 +45853,7 @@ dir = 8 }, /area/engine/atmos) -"bVD" = ( +"bSh" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -48799,7 +45869,7 @@ dir = 1 }, /area/engine/atmos) -"bVE" = ( +"bSi" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4 }, @@ -48807,7 +45877,7 @@ /obj/item/wrench, /turf/open/floor/plasteel, /area/engine/atmos) -"bVF" = ( +"bSj" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1; filter_type = "plasma"; @@ -48819,14 +45889,7 @@ /obj/structure/window/reinforced, /turf/open/floor/plasteel/purple, /area/engine/atmos) -"bVG" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bVH" = ( +"bSk" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 8; frequency = 1441; @@ -48835,7 +45898,7 @@ }, /turf/open/floor/engine/plasma, /area/engine/atmos) -"bVI" = ( +"bSl" = ( /obj/machinery/camera{ c_tag = "Atmospherics Tank - Toxins"; dir = 8; @@ -48843,18 +45906,7 @@ }, /turf/open/floor/engine/plasma, /area/engine/atmos) -"bVJ" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 11; - height = 15; - id = "whiteship_home"; - name = "SS13: Auxiliary Dock, Station-Port"; - width = 28 - }, -/turf/open/space/basic, -/area/space) -"bVK" = ( +"bSn" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -48865,7 +45917,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/port) -"bVL" = ( +"bSo" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48874,17 +45926,16 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bVM" = ( +"bSp" = ( /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 + dir = 9 }, -/obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port) -"bVN" = ( +"bSq" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48894,7 +45945,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/port) -"bVO" = ( +"bSr" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48903,7 +45954,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bVP" = ( +"bSs" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48915,7 +45966,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bVQ" = ( +"bSt" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48926,20 +45977,7 @@ icon_state = "platingdmg1" }, /area/maintenance/port) -"bVR" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port) -"bVS" = ( +"bSu" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48950,7 +45988,7 @@ icon_state = "panelscorched" }, /area/maintenance/port) -"bVT" = ( +"bSv" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48962,50 +46000,48 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bVU" = ( -/obj/item/storage/box, +"bSw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, /turf/open/floor/plating, /area/maintenance/port) -"bVV" = ( +"bSx" = ( /obj/machinery/newscaster{ pixel_x = -32 }, -/obj/effect/landmark/event_spawn, /turf/open/floor/wood, /area/library) -"bVW" = ( +"bSy" = ( /obj/structure/chair/office/dark{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/library) -"bVX" = ( +"bSz" = ( /obj/structure/table/wood, /obj/item/folder, /obj/item/folder, /obj/item/pen, /turf/open/floor/wood, /area/library) -"bVY" = ( +"bSA" = ( /obj/structure/table/wood, /obj/item/storage/crayons, /turf/open/floor/wood, /area/library) -"bVZ" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/wood, -/area/library) -"bWa" = ( +"bSB" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/library) -"bWb" = ( +"bSC" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /obj/item/device/radio/intercom{ @@ -49015,7 +46051,7 @@ }, /turf/open/floor/wood, /area/library) -"bWc" = ( +"bSD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/firealarm{ dir = 8; @@ -49025,7 +46061,7 @@ dir = 8 }, /area/hallway/primary/central) -"bWd" = ( +"bSE" = ( /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters{ id = "evashutter"; @@ -49034,7 +46070,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bWe" = ( +"bSF" = ( /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters{ id = "evashutter"; @@ -49049,7 +46085,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bWf" = ( +"bSG" = ( /obj/machinery/door/poddoor/shutters{ id = "teleshutter"; name = "Teleporter Access Shutter" @@ -49057,7 +46093,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/teleporter) -"bWg" = ( +"bSH" = ( /obj/machinery/door/poddoor/shutters{ id = "teleshutter"; name = "Teleporter Access Shutter" @@ -49072,7 +46108,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/teleporter) -"bWh" = ( +"bSI" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/machinery/door/poddoor/shutters/preopen{ @@ -49081,11 +46117,7 @@ }, /turf/open/floor/plating, /area/bridge/showroom/corporate) -"bWi" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/bridge/showroom/corporate) -"bWj" = ( +"bSK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -49094,7 +46126,7 @@ }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bWk" = ( +"bSM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -49103,7 +46135,7 @@ }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bWl" = ( +"bSO" = ( /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters{ id = "gateshutter"; @@ -49112,7 +46144,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/gateway) -"bWm" = ( +"bSP" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -49123,25 +46155,25 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/central) -"bWn" = ( +"bSQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/neutral/corner{ dir = 1 }, /area/hallway/primary/central) -"bWo" = ( +"bSR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/green/corner{ dir = 2 }, /area/hallway/primary/central) -"bWp" = ( +"bSS" = ( /turf/closed/wall, /area/hallway/primary/central) -"bWq" = ( +"bST" = ( /turf/closed/wall, /area/hydroponics) -"bWr" = ( +"bSU" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "kitchenhydro"; name = "Service Shutter" @@ -49155,11 +46187,7 @@ dir = 5 }, /area/hydroponics) -"bWs" = ( -/obj/structure/sign/poster/official/random, -/turf/closed/wall, -/area/hydroponics) -"bWt" = ( +"bSV" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/eastleft{ dir = 1; @@ -49179,11 +46207,11 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hydroponics) -"bWu" = ( +"bSW" = ( /obj/machinery/smartfridge, /turf/closed/wall, /area/hydroponics) -"bWv" = ( +"bSX" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -49192,7 +46220,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/kitchen) -"bWw" = ( +"bSY" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -49208,7 +46236,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/kitchen) -"bWx" = ( +"bSZ" = ( /obj/machinery/door/airlock/maintenance{ name = "Kitchen Maintenance"; req_access_txt = "28" @@ -49221,7 +46249,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bWy" = ( +"bTa" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -49237,7 +46265,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bWz" = ( +"bTb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -49249,7 +46277,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bWA" = ( +"bTc" = ( /obj/machinery/power/apc{ dir = 1; name = "Starboard Maintenance APC"; @@ -49268,67 +46296,49 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bWB" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, +"bTd" = ( +/obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard) -"bWC" = ( +"bTe" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, /obj/structure/cable/yellow{ icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, /turf/open/floor/plating, /area/maintenance/starboard) -"bWD" = ( +"bTf" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 2 }, /obj/machinery/meter, /turf/open/floor/plating, /area/maintenance/starboard) -"bWE" = ( +"bTg" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 }, /turf/open/floor/plating, /area/maintenance/starboard) -"bWF" = ( +"bTh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/starboard) -"bWG" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bWH" = ( +"bTi" = ( /obj/structure/closet/wardrobe/atmospherics_yellow, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"bWI" = ( -/turf/open/floor/plasteel/caution{ - dir = 8 - }, -/area/engine/atmos) -"bWJ" = ( +"bTj" = ( /obj/machinery/requests_console{ department = "Atmospherics"; departmentType = 4; @@ -49345,7 +46355,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bWK" = ( +"bTk" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; name = "Port to Filter"; @@ -49361,32 +46371,22 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bWL" = ( +"bTl" = ( /obj/machinery/atmospherics/components/unary/thermomachine/heater{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bWM" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/door/window/northleft{ - dir = 8; - icon_state = "left"; - name = "Inner Pipe Access"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) -"bWN" = ( +"bTm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/lattice/catwalk, /obj/structure/window/reinforced, /turf/open/space, /area/aisat) -"bWO" = ( +"bTn" = ( /turf/closed/wall, /area/maintenance/solars/port/aft) -"bWP" = ( +"bTo" = ( /obj/machinery/door/airlock/engineering{ name = "Port Quarter Solar Access"; req_access_txt = "10" @@ -49397,11 +46397,17 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"bWQ" = ( +"bTp" = ( /obj/structure/sign/warning/electricshock, /turf/closed/wall, /area/maintenance/solars/port/aft) -"bWR" = ( +"bTq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"bTr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; @@ -49409,32 +46415,26 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bWS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +"bTs" = ( +/turf/closed/wall, +/area/maintenance/aft) +"bTt" = ( +/obj/item/storage/box, /turf/open/floor/plating, /area/maintenance/port) -"bWT" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"bWU" = ( +"bTv" = ( /obj/structure/rack, /obj/item/paper, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port) -"bWV" = ( +"bTw" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/wood, /area/library) -"bWW" = ( +"bTx" = ( /obj/structure/chair/office/dark{ dir = 4 }, @@ -49447,7 +46447,7 @@ }, /turf/open/floor/wood, /area/library) -"bWX" = ( +"bTy" = ( /obj/machinery/firealarm{ dir = 1; pixel_y = -24 @@ -49459,12 +46459,12 @@ /obj/structure/table/wood, /turf/open/floor/wood, /area/library) -"bWY" = ( +"bTz" = ( /obj/structure/table/wood, /obj/machinery/light, /turf/open/floor/wood, /area/library) -"bWZ" = ( +"bTA" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -49476,7 +46476,7 @@ }, /turf/open/floor/wood, /area/library) -"bXa" = ( +"bTB" = ( /obj/machinery/door/airlock/maintenance{ name = "Library Maintenance"; req_access_txt = "0"; @@ -49490,7 +46490,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bXb" = ( +"bTC" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -49502,14 +46502,14 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bXc" = ( +"bTD" = ( /obj/machinery/vending/snack/random, /obj/machinery/newscaster{ pixel_x = -30 }, /turf/open/floor/plasteel/dark, /area/hallway/primary/central) -"bXd" = ( +"bTE" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -49520,7 +46520,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bXe" = ( +"bTF" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -49528,7 +46528,7 @@ dir = 4 }, /area/hallway/primary/central) -"bXf" = ( +"bTG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49536,7 +46536,7 @@ dir = 4 }, /area/hallway/primary/central) -"bXg" = ( +"bTH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49549,7 +46549,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bXh" = ( +"bTI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49558,7 +46558,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bXi" = ( +"bTJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49567,7 +46567,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bXj" = ( +"bTK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49576,7 +46576,7 @@ dir = 4 }, /area/hallway/primary/central) -"bXk" = ( +"bTL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49588,7 +46588,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bXl" = ( +"bTM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49603,7 +46603,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bXm" = ( +"bTN" = ( /obj/machinery/light{ dir = 1 }, @@ -49617,7 +46617,7 @@ dir = 4 }, /area/hallway/primary/central) -"bXn" = ( +"bTO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49626,18 +46626,7 @@ dir = 1 }, /area/hallway/primary/central) -"bXo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/hallway/primary/central) -"bXp" = ( +"bTP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49645,7 +46634,7 @@ dir = 1 }, /area/hallway/primary/central) -"bXq" = ( +"bTQ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -49653,7 +46642,7 @@ dir = 1 }, /area/hallway/primary/central) -"bXr" = ( +"bTR" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -49661,7 +46650,7 @@ dir = 1 }, /area/hallway/primary/central) -"bXs" = ( +"bTS" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49669,7 +46658,7 @@ dir = 1 }, /area/hallway/primary/central) -"bXt" = ( +"bTT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49683,7 +46672,7 @@ dir = 1 }, /area/hallway/primary/central) -"bXu" = ( +"bTU" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -49700,7 +46689,7 @@ dir = 1 }, /area/hallway/primary/central) -"bXv" = ( +"bTV" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -49713,7 +46702,7 @@ dir = 1 }, /area/hallway/primary/central) -"bXw" = ( +"bTW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49726,7 +46715,7 @@ dir = 1 }, /area/hallway/primary/central) -"bXx" = ( +"bTX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49740,7 +46729,7 @@ dir = 1 }, /area/hallway/primary/central) -"bXy" = ( +"bTY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49756,7 +46745,13 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bXz" = ( +"bTZ" = ( +/obj/structure/bookcase{ + name = "bookcase" + }, +/turf/open/floor/wood, +/area/bridge/showroom/corporate) +"bUa" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49768,7 +46763,7 @@ dir = 1 }, /area/hallway/primary/central) -"bXA" = ( +"bUb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -49776,7 +46771,7 @@ dir = 1 }, /area/hallway/primary/central) -"bXB" = ( +"bUc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/sign/departments/botany{ pixel_x = 32; @@ -49786,7 +46781,7 @@ dir = 4 }, /area/hallway/primary/central) -"bXC" = ( +"bUd" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -2; @@ -49795,11 +46790,11 @@ /obj/item/pen, /turf/open/floor/plasteel/green, /area/hallway/primary/central) -"bXD" = ( +"bUe" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/hydroponics) -"bXE" = ( +"bUf" = ( /obj/machinery/vending/hydroseeds{ slogan_delay = 700 }, @@ -49811,7 +46806,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics) -"bXF" = ( +"bUg" = ( /obj/machinery/vending/hydronutrients, /obj/machinery/light{ dir = 1 @@ -49819,11 +46814,11 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics) -"bXG" = ( +"bUh" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics) -"bXH" = ( +"bUi" = ( /obj/item/storage/box/syringes, /obj/item/storage/box/beakers{ pixel_x = 2; @@ -49833,18 +46828,18 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics) -"bXI" = ( +"bUj" = ( /obj/machinery/reagentgrinder, /obj/structure/table/glass, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics) -"bXJ" = ( +"bUk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics) -"bXK" = ( +"bUm" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/chem_master/condimaster{ desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; @@ -49853,7 +46848,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"bXL" = ( +"bUn" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/reagent_dispensers/watertank/high, /obj/item/reagent_containers/glass/bucket, @@ -49862,7 +46857,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"bXM" = ( +"bUo" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/window/reinforced{ dir = 4 @@ -49871,7 +46866,7 @@ /obj/item/reagent_containers/glass/bucket, /turf/open/floor/plasteel, /area/hydroponics) -"bXN" = ( +"bUp" = ( /obj/structure/closet{ name = "spare parts locker" }, @@ -49887,7 +46882,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/crew_quarters/kitchen) -"bXO" = ( +"bUq" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, @@ -49902,7 +46897,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/crew_quarters/kitchen) -"bXP" = ( +"bUr" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; dir = 8; @@ -49925,7 +46920,7 @@ dir = 1 }, /area/crew_quarters/kitchen) -"bXQ" = ( +"bUs" = ( /obj/structure/disposalpipe/sorting/mail{ dir = 2; sortType = 20 @@ -49942,7 +46937,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bXR" = ( +"bUt" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -49957,7 +46952,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bXS" = ( +"bUu" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -49972,7 +46967,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bXT" = ( +"bUv" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -49986,54 +46981,37 @@ icon_state = "panelscorched" }, /area/maintenance/starboard) -"bXU" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bXV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bXW" = ( +"bUw" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bUx" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard) -"bXX" = ( +"bUy" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 }, /obj/machinery/portable_atmospherics/canister, /turf/open/floor/plating, /area/maintenance/starboard) -"bXY" = ( +"bUz" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"bXZ" = ( +"bUA" = ( /obj/machinery/pipedispenser, /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bYa" = ( +"bUB" = ( /obj/machinery/light{ dir = 1 }, @@ -50045,7 +47023,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/engine/atmos) -"bYb" = ( +"bUC" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -50058,7 +47036,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bYc" = ( +"bUD" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; name = "Port to Filter"; @@ -50066,25 +47044,25 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bYd" = ( +"bUE" = ( /obj/item/cigbutt, /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bYe" = ( +"bUF" = ( /obj/machinery/atmospherics/components/unary/thermomachine/heater{ dir = 4; on = 1 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bYf" = ( +"bUG" = ( /obj/machinery/atmospherics/pipe/manifold4w/yellow/visible, /turf/open/floor/plasteel, /area/engine/atmos) -"bYg" = ( +"bUH" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; name = "CO2 to Pure"; @@ -50100,7 +47078,7 @@ }, /turf/open/floor/plasteel/vault, /area/engine/atmos) -"bYh" = ( +"bUI" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 8; frequency = 1441; @@ -50109,47 +47087,28 @@ }, /turf/open/floor/engine/co2, /area/engine/atmos) -"bYi" = ( +"bUJ" = ( /turf/open/floor/engine/co2, /area/engine/atmos) -"bYj" = ( +"bUK" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/aisat) -"bYk" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bYl" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Aft"; - dir = 2; - network = list("MiniSat") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bYm" = ( +"bUL" = ( +/obj/machinery/telecomms/server/presets/security, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bUM" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/aisat) -"bYn" = ( +"bUN" = ( /obj/machinery/power/apc{ dir = 8; name = "Port Quarter Solar APC"; @@ -50164,7 +47123,7 @@ icon_state = "platingdmg1" }, /area/maintenance/solars/port/aft) -"bYo" = ( +"bUO" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50177,14 +47136,14 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"bYp" = ( +"bUP" = ( /obj/structure/cable/yellow{ icon_state = "0-8" }, /obj/machinery/power/smes, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"bYq" = ( +"bUQ" = ( /obj/item/cigbutt, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 @@ -50194,7 +47153,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bYr" = ( +"bUR" = ( /obj/structure/closet, /obj/item/storage/box/donkpockets, /obj/effect/spawner/lootdrop/maintenance{ @@ -50203,7 +47162,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bYs" = ( +"bUS" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "0"; req_one_access_txt = "12;5;39;25;28" @@ -50214,7 +47173,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bYt" = ( +"bUT" = ( /obj/structure/rack, /obj/item/weldingtool, /obj/item/screwdriver{ @@ -50223,23 +47182,23 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"bYu" = ( +"bUU" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bYv" = ( +"bUV" = ( /obj/machinery/recharge_station, /turf/open/floor/plating, /area/maintenance/port/aft) -"bYw" = ( +"bUW" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bYx" = ( +"bUX" = ( /obj/structure/rack, /obj/item/stack/cable_coil{ pixel_x = -1; @@ -50250,19 +47209,12 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"bYy" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port) -"bYz" = ( +"bUY" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /turf/open/floor/plasteel/dark, /area/hallway/primary/central) -"bYA" = ( +"bUZ" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -50275,7 +47227,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYB" = ( +"bVa" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50284,7 +47236,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYC" = ( +"bVb" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50293,7 +47245,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYD" = ( +"bVc" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50302,7 +47254,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYE" = ( +"bVd" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50312,7 +47264,7 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYF" = ( +"bVe" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50322,7 +47274,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYG" = ( +"bVf" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50331,7 +47283,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYH" = ( +"bVg" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50344,7 +47296,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYI" = ( +"bVh" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -50356,7 +47308,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYJ" = ( +"bVi" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50370,7 +47322,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYK" = ( +"bVj" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50379,7 +47331,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYL" = ( +"bVk" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50388,7 +47340,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYM" = ( +"bVl" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50401,7 +47353,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYN" = ( +"bVm" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50410,7 +47362,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYO" = ( +"bVn" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50420,7 +47372,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYP" = ( +"bVo" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -50436,7 +47388,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYQ" = ( +"bVp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "2-8" @@ -50445,10 +47397,10 @@ dir = 4 }, /area/hallway/primary/central) -"bYR" = ( +"bVq" = ( /turf/open/floor/plasteel/green, /area/hallway/primary/central) -"bYS" = ( +"bVr" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, /obj/machinery/door/window/westleft{ @@ -50461,22 +47413,22 @@ dir = 4 }, /area/hydroponics) -"bYT" = ( +"bVs" = ( /turf/open/floor/plasteel/green/side{ dir = 9 }, /area/hydroponics) -"bYU" = ( +"bVt" = ( /turf/open/floor/plasteel/green/side{ dir = 5 }, /area/hydroponics) -"bYV" = ( +"bVu" = ( /turf/open/floor/plasteel/green/side{ dir = 1 }, /area/hydroponics) -"bYW" = ( +"bVv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -50484,7 +47436,7 @@ dir = 5 }, /area/hydroponics) -"bYX" = ( +"bVw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -50492,7 +47444,7 @@ dir = 9 }, /area/hydroponics) -"bYY" = ( +"bVx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -50500,7 +47452,7 @@ dir = 1 }, /area/hydroponics) -"bYZ" = ( +"bVy" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 @@ -50512,12 +47464,12 @@ dir = 2 }, /area/hydroponics) -"bZa" = ( +"bVz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, /turf/closed/wall, /area/hallway/secondary/service) -"bZb" = ( +"bVA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/airlock{ name = "Service Hall"; @@ -50529,10 +47481,7 @@ }, /turf/open/floor/plating, /area/hallway/secondary/service) -"bZc" = ( -/turf/closed/wall, -/area/hallway/secondary/service) -"bZd" = ( +"bVB" = ( /obj/structure/rack, /obj/item/extinguisher, /obj/item/storage/belt/utility, @@ -50541,44 +47490,17 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard) -"bZe" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bZf" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bZg" = ( +"bVC" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/maintenance/starboard) -"bZh" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/storage/box/lights/mixed, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bZi" = ( +"bVE" = ( /obj/structure/closet/crate, /obj/item/storage/belt/utility, /obj/item/stack/cable_coil/random, /turf/open/floor/plating, /area/maintenance/starboard) -"bZj" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bZk" = ( +"bVF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 6 }, @@ -50609,7 +47531,7 @@ dir = 9 }, /area/engine/atmos) -"bZl" = ( +"bVG" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 1 }, @@ -50617,7 +47539,7 @@ dir = 1 }, /area/engine/atmos) -"bZm" = ( +"bVH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, @@ -50626,7 +47548,7 @@ dir = 1 }, /area/engine/atmos) -"bZn" = ( +"bVI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, @@ -50634,7 +47556,7 @@ dir = 1 }, /area/engine/atmos) -"bZo" = ( +"bVJ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 2 }, @@ -50644,13 +47566,13 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bZp" = ( +"bVK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bZq" = ( +"bVL" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; name = "Port to Fuel Pipe"; @@ -50658,7 +47580,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bZr" = ( +"bVM" = ( /obj/machinery/computer/atmos_control/tank{ dir = 8; frequency = 1441; @@ -50673,34 +47595,24 @@ }, /turf/open/floor/plasteel/vault, /area/engine/atmos) -"bZs" = ( +"bVN" = ( /obj/machinery/air_sensor{ frequency = 1441; id_tag = "co2_sensor" }, /turf/open/floor/engine/co2, /area/engine/atmos) -"bZt" = ( +"bVO" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /turf/open/floor/engine/co2, /area/engine/atmos) -"bZu" = ( +"bVP" = ( /obj/machinery/light/small{ dir = 4 }, /turf/open/floor/engine/co2, /area/engine/atmos) -"bZv" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bZw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bZx" = ( +"bVQ" = ( /obj/structure/chair/stool, /obj/structure/cable{ icon_state = "2-4" @@ -50712,7 +47624,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"bZy" = ( +"bVR" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -50722,7 +47634,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"bZz" = ( +"bVS" = ( /obj/machinery/power/terminal{ dir = 1 }, @@ -50739,20 +47651,20 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"bZA" = ( +"bVT" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/port) -"bZB" = ( +"bVU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating{ icon_state = "panelscorched" }, /area/maintenance/port) -"bZC" = ( +"bVV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -50762,39 +47674,28 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bZD" = ( +"bVW" = ( /turf/open/floor/plating{ icon_state = "platingdmg1" }, /area/maintenance/port/aft) -"bZE" = ( +"bVX" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bZF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bZG" = ( +"bVZ" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bZH" = ( +"bWa" = ( /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/port/aft) -"bZI" = ( -/obj/item/hand_labeler_refill, -/obj/structure/easel, -/turf/open/floor/plating, -/area/maintenance/port) -"bZJ" = ( +"bWb" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -50803,7 +47704,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bZK" = ( +"bWc" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50818,7 +47719,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bZL" = ( +"bWd" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50830,23 +47731,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bZM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port) -"bZN" = ( +"bWe" = ( /obj/structure/disposalpipe/sorting/mail/flip{ dir = 4; sortType = 16 @@ -50862,22 +47747,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bZO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bZP" = ( +"bWf" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50893,7 +47763,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bZQ" = ( +"bWg" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50905,7 +47775,7 @@ }, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"bZR" = ( +"bWh" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50919,7 +47789,7 @@ dir = 8 }, /area/hallway/primary/central) -"bZS" = ( +"bWi" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -50938,7 +47808,7 @@ dir = 8 }, /area/hallway/primary/central) -"bZT" = ( +"bWj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -50946,7 +47816,7 @@ dir = 8 }, /area/hallway/primary/central) -"bZU" = ( +"bWk" = ( /obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -50955,7 +47825,7 @@ dir = 8 }, /area/hallway/primary/central) -"bZV" = ( +"bWl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -50967,7 +47837,7 @@ dir = 8 }, /area/hallway/primary/central) -"bZW" = ( +"bWm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -50978,7 +47848,7 @@ dir = 8 }, /area/hallway/primary/central) -"bZX" = ( +"bWn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -50987,13 +47857,13 @@ dir = 8 }, /area/hallway/primary/central) -"bZY" = ( +"bWo" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bZZ" = ( +"bWp" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -51002,14 +47872,14 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"caa" = ( +"bWq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/hallway/primary/central) -"cab" = ( +"bWr" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -51018,7 +47888,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"cac" = ( +"bWs" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51027,7 +47897,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"cad" = ( +"bWt" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -51036,7 +47906,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"cae" = ( +"bWu" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -51048,7 +47918,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"caf" = ( +"bWv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51058,7 +47928,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"cag" = ( +"bWw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51067,7 +47937,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"cah" = ( +"bWx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51076,13 +47946,13 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"cai" = ( +"bWy" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"caj" = ( +"bWz" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -51095,7 +47965,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"cak" = ( +"bWA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51104,7 +47974,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"cal" = ( +"bWB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51115,7 +47985,7 @@ dir = 2 }, /area/hallway/primary/central) -"cam" = ( +"bWC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51127,7 +47997,7 @@ dir = 2 }, /area/hallway/primary/central) -"can" = ( +"bWD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51138,7 +48008,7 @@ dir = 2 }, /area/hallway/primary/central) -"cao" = ( +"bWE" = ( /obj/machinery/light, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 @@ -51155,7 +48025,7 @@ dir = 2 }, /area/hallway/primary/central) -"cap" = ( +"bWF" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -51163,7 +48033,7 @@ dir = 2 }, /area/hallway/primary/central) -"caq" = ( +"bWG" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -51175,7 +48045,7 @@ dir = 2 }, /area/hallway/primary/central) -"car" = ( +"bWH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51183,7 +48053,7 @@ dir = 2 }, /area/hallway/primary/central) -"cas" = ( +"bWI" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -51194,13 +48064,13 @@ dir = 6 }, /area/hallway/primary/central) -"cat" = ( +"bWJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/green, /area/hallway/primary/central) -"cau" = ( +"bWK" = ( /obj/structure/table/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -51224,7 +48094,7 @@ dir = 4 }, /area/hydroponics) -"cav" = ( +"bWL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51236,7 +48106,7 @@ dir = 10 }, /area/hydroponics) -"caw" = ( +"bWM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51244,7 +48114,7 @@ dir = 6 }, /area/hydroponics) -"cax" = ( +"bWN" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51252,71 +48122,54 @@ dir = 8 }, /area/hydroponics) -"cay" = ( +"bWO" = ( /obj/machinery/hydroponics/constructable, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/hydroponics) -"caz" = ( +"bWP" = ( /obj/machinery/hydroponics/constructable, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/open/floor/plasteel, /area/hydroponics) -"caA" = ( +"bWQ" = ( /turf/open/floor/plasteel/green/side{ dir = 4 }, /area/hydroponics) -"caB" = ( -/obj/effect/landmark/event_spawn, +"bWR" = ( /turf/open/floor/plasteel/green/side{ dir = 8 }, /area/hydroponics) -"caC" = ( +"bWS" = ( /obj/machinery/hydroponics/constructable, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/hydroponics) -"caD" = ( +"bWT" = ( /obj/machinery/hydroponics/constructable, /turf/open/floor/plasteel, /area/hydroponics) -"caE" = ( +"bWU" = ( /obj/machinery/seed_extractor, /obj/effect/turf_decal/stripes/line{ dir = 9 }, /turf/open/floor/plasteel, /area/hydroponics) -"caF" = ( +"bWV" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, /obj/structure/closet/wardrobe/botanist, /turf/open/floor/plasteel/hydrofloor, /area/hydroponics) -"caG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/firealarm{ - pixel_y = 29 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/obj/structure/closet/crate/hydroponics, -/obj/item/shovel/spade, -/obj/item/wrench, -/obj/item/reagent_containers/glass/bucket, -/obj/item/cultivator, -/obj/item/wirecutters, -/turf/open/floor/plasteel/hydrofloor, -/area/hydroponics) -"caH" = ( +"bWX" = ( /obj/structure/disposalpipe/segment, /obj/structure/table, /obj/item/storage/bag/plants, @@ -51329,32 +48182,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/service) -"caI" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"caJ" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/hallway/secondary/service"; - dir = 1; - name = "Service Hall APC"; - pixel_y = 25 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"caK" = ( +"bWY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -51366,7 +48194,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"caL" = ( +"bWZ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -51380,7 +48208,7 @@ icon_state = "platingdmg2" }, /area/maintenance/starboard) -"caM" = ( +"bXa" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -51392,7 +48220,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"caN" = ( +"bXb" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -51407,7 +48235,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"caO" = ( +"bXc" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -51417,7 +48245,7 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plating, /area/maintenance/starboard) -"caP" = ( +"bXd" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -51432,7 +48260,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"caQ" = ( +"bXe" = ( /obj/machinery/door/airlock/maintenance{ name = "Atmospherics Maintenance"; req_access_txt = "24" @@ -51448,7 +48276,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"caR" = ( +"bXf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -51463,7 +48291,7 @@ dir = 8 }, /area/engine/atmos) -"caS" = ( +"bXg" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -51478,7 +48306,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"caT" = ( +"bXh" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -51492,7 +48320,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"caU" = ( +"bXi" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -51501,7 +48329,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"caV" = ( +"bXj" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -51510,14 +48338,14 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"caW" = ( +"bXk" = ( /obj/effect/landmark/start/atmospheric_technician, /obj/machinery/atmospherics/pipe/simple/dark/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"caX" = ( +"bXl" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -51526,27 +48354,20 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"caY" = ( +"bXm" = ( /obj/machinery/atmospherics/pipe/simple/dark/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"caZ" = ( -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cba" = ( +"bXn" = ( /obj/machinery/atmospherics/pipe/manifold/dark/visible, /obj/machinery/meter{ color = "" }, /turf/open/floor/plasteel, /area/engine/atmos) -"cbb" = ( +"bXo" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; name = "Pure to Fuel Pipe"; @@ -51554,13 +48375,13 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"cbc" = ( +"bXp" = ( /obj/machinery/atmospherics/pipe/manifold/yellow/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"cbd" = ( +"bXq" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1; filter_type = "co2"; @@ -51572,7 +48393,7 @@ /obj/structure/window/reinforced, /turf/open/floor/plasteel/vault, /area/engine/atmos) -"cbe" = ( +"bXr" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 8; frequency = 1441; @@ -51581,7 +48402,7 @@ }, /turf/open/floor/engine/co2, /area/engine/atmos) -"cbf" = ( +"bXs" = ( /obj/machinery/camera{ c_tag = "Atmospherics Tank - CO2"; dir = 8; @@ -51589,19 +48410,7 @@ }, /turf/open/floor/engine/co2, /area/engine/atmos) -"cbg" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/aisat) -"cbh" = ( -/obj/structure/window/reinforced, -/obj/machinery/holopad, -/turf/open/floor/plasteel/dark, -/area/aisat) -"cbi" = ( +"bXt" = ( /obj/machinery/power/solar_control{ dir = 1; id = "aftport"; @@ -51614,7 +48423,7 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"cbj" = ( +"bXu" = ( /obj/structure/cable{ icon_state = "2-8" }, @@ -51623,30 +48432,24 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"cbk" = ( +"bXv" = ( /obj/structure/sign/warning/vacuum/external{ pixel_x = 32 }, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"cbl" = ( -/obj/structure/rack, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"cbm" = ( +"bXx" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/port) -"cbn" = ( +"bXy" = ( /obj/structure/closet, /obj/item/device/flashlight, /turf/open/floor/plating, /area/maintenance/port/aft) -"cbo" = ( +"bXz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -51656,22 +48459,22 @@ icon_state = "panelscorched" }, /area/maintenance/port/aft) -"cbp" = ( +"bXA" = ( /obj/structure/table, /obj/item/device/flashlight/lamp, /turf/open/floor/plating, /area/maintenance/port/aft) -"cbq" = ( +"bXB" = ( /obj/structure/chair/stool, /turf/open/floor/plating, /area/maintenance/port/aft) -"cbr" = ( +"bXC" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cbs" = ( +"bXD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -51679,15 +48482,15 @@ icon_state = "platingdmg2" }, /area/maintenance/port/aft) -"cbt" = ( +"bXE" = ( /turf/open/floor/plating, /area/maintenance/port/aft) -"cbu" = ( +"bXF" = ( /obj/structure/girder, /obj/structure/grille, /turf/open/floor/plating, /area/maintenance/port/aft) -"cbv" = ( +"bXG" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -51698,33 +48501,33 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"cbw" = ( +"bXH" = ( /obj/structure/closet/crate, /obj/item/coin/silver, /obj/item/device/flashlight, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port) -"cbx" = ( +"bXI" = ( /obj/structure/closet, /obj/item/clothing/neck/stethoscope, /obj/item/hemostat, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port) -"cby" = ( +"bXJ" = ( /obj/item/storage/box/lights/mixed, /turf/open/floor/plating{ icon_state = "platingdmg3" }, /area/maintenance/port) -"cbz" = ( +"bXK" = ( /turf/closed/wall, /area/medical/storage) -"cbA" = ( +"bXL" = ( /turf/closed/wall, /area/security/checkpoint/medical) -"cbB" = ( +"bXM" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, @@ -51735,12 +48538,12 @@ dir = 8 }, /area/hallway/primary/central) -"cbC" = ( +"bXN" = ( /turf/open/floor/plasteel/blue/corner{ dir = 8 }, /area/hallway/primary/central) -"cbD" = ( +"bXO" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -51749,13 +48552,13 @@ dir = 8 }, /area/hallway/primary/central) -"cbE" = ( +"bXP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/blue/corner{ dir = 8 }, /area/hallway/primary/central) -"cbF" = ( +"bXQ" = ( /obj/machinery/camera{ c_tag = "Central Primary Hallway - Aft-Port"; dir = 1; @@ -51765,36 +48568,36 @@ dir = 8 }, /area/hallway/primary/central) -"cbG" = ( +"bXR" = ( /obj/machinery/light/small, /turf/open/floor/plasteel/blue/corner{ dir = 8 }, /area/hallway/primary/central) -"cbH" = ( +"bXS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/blue/corner{ dir = 8 }, /area/hallway/primary/central) -"cbI" = ( +"bXT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/purple/corner{ dir = 2 }, /area/hallway/primary/central) -"cbJ" = ( +"bXU" = ( /obj/machinery/light/small, /turf/open/floor/plasteel/purple/corner{ dir = 2 }, /area/hallway/primary/central) -"cbK" = ( +"bXV" = ( /turf/open/floor/plasteel/purple/corner{ dir = 2 }, /area/hallway/primary/central) -"cbL" = ( +"bXW" = ( /obj/machinery/camera{ c_tag = "Central Primary Hallway - Aft-Starboard"; dir = 1; @@ -51804,13 +48607,13 @@ dir = 2 }, /area/hallway/primary/central) -"cbM" = ( +"bXX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/purple/corner{ dir = 2 }, /area/hallway/primary/central) -"cbN" = ( +"bXY" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -51820,7 +48623,7 @@ dir = 2 }, /area/hallway/primary/central) -"cbO" = ( +"bXZ" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -51832,7 +48635,7 @@ dir = 2 }, /area/hallway/primary/central) -"cbP" = ( +"bYa" = ( /obj/structure/disposalpipe/trunk{ dir = 1 }, @@ -51842,7 +48645,7 @@ }, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"cbQ" = ( +"bYb" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "0"; req_one_access_txt = "12;35;47" @@ -51850,11 +48653,11 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cbR" = ( +"bYc" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/hallway/primary/central) -"cbS" = ( +"bYd" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -51864,7 +48667,7 @@ }, /turf/open/floor/plasteel/hydrofloor, /area/hallway/primary/central) -"cbT" = ( +"bYe" = ( /obj/machinery/camera/autoname{ dir = 4; network = list("SS13") @@ -51880,7 +48683,7 @@ /obj/structure/table/glass, /turf/open/floor/plasteel/green, /area/hydroponics) -"cbU" = ( +"bYf" = ( /obj/item/stack/packageWrap, /obj/item/stack/packageWrap, /obj/item/stack/packageWrap, @@ -51890,38 +48693,33 @@ /obj/structure/table/glass, /turf/open/floor/plasteel/green, /area/hydroponics) -"cbV" = ( -/turf/open/floor/plasteel/green/side{ - dir = 8 - }, -/area/hydroponics) -"cbW" = ( +"bYg" = ( /obj/effect/landmark/start/botanist, /obj/machinery/holopad, /turf/open/floor/plasteel, /area/hydroponics) -"cbX" = ( +"bYh" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel, /area/hydroponics) -"cbY" = ( +"bYi" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, /turf/open/floor/plasteel, /area/hydroponics) -"cbZ" = ( +"bYj" = ( /turf/open/floor/plasteel, /area/hydroponics) -"cca" = ( +"bYk" = ( /obj/effect/landmark/start/botanist, /turf/open/floor/plasteel/green/side{ dir = 4 }, /area/hydroponics) -"ccb" = ( +"bYl" = ( /obj/item/seeds/wheat, /obj/item/seeds/sugarcane, /obj/item/seeds/potato, @@ -51948,11 +48746,11 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"ccc" = ( +"bYm" = ( /obj/structure/closet/secure_closet/hydroponics, /turf/open/floor/plasteel/hydrofloor, /area/hydroponics) -"ccd" = ( +"bYn" = ( /obj/machinery/light/small{ dir = 4 }, @@ -51964,7 +48762,7 @@ /obj/effect/landmark/start/botanist, /turf/open/floor/plasteel/hydrofloor, /area/hydroponics) -"cce" = ( +"bYo" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, @@ -51975,7 +48773,7 @@ /obj/item/kitchen/rollingpin, /turf/open/floor/plasteel, /area/hallway/secondary/service) -"ccf" = ( +"bYp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51985,54 +48783,22 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel, /area/hallway/secondary/service) -"ccg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +"bYq" = ( +/obj/structure/rack, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = 27 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plasteel/vault{ + dir = 1 }, -/obj/machinery/rnd/protolathe/department/service, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"cch" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/hallway/secondary/service) -"cci" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ccj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cck" = ( +/area/teleporter) +"bYr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -52044,20 +48810,20 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"ccl" = ( +"bYs" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, /obj/effect/landmark/event_spawn, /turf/open/floor/plating, /area/maintenance/starboard) -"ccm" = ( +"bYt" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/plating, /area/maintenance/starboard) -"ccn" = ( +"bYu" = ( /obj/item/cigbutt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ @@ -52066,12 +48832,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard) -"cco" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"ccp" = ( +"bYv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/machinery/light{ dir = 8 @@ -52089,17 +48850,17 @@ dir = 8 }, /area/engine/atmos) -"ccq" = ( +"bYw" = ( /obj/machinery/atmospherics/pipe/simple/dark/visible, /turf/open/floor/plasteel, /area/engine/atmos) -"ccr" = ( +"bYx" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 6 }, /turf/open/floor/plasteel, /area/engine/atmos) -"ccs" = ( +"bYy" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; name = "N2 to Airmix"; @@ -52107,7 +48868,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"cct" = ( +"bYz" = ( /obj/machinery/atmospherics/components/trinary/mixer{ dir = 4; node1_concentration = 0.8; @@ -52117,28 +48878,24 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"ccu" = ( +"bYA" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 10 }, /turf/open/floor/plasteel, /area/engine/atmos) -"ccv" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/engine/atmos) -"ccw" = ( +"bYB" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/machinery/light{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"ccx" = ( +"bYC" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"ccy" = ( +"bYD" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -52147,25 +48904,17 @@ req_access = null; req_access_txt = "10; 13" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"ccz" = ( +"bYE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plating, /area/maintenance/port/aft) -"ccA" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/poster/random_contraband, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ccB" = ( +"bYG" = ( /obj/structure/table, /obj/item/folder/white{ pixel_x = 4; @@ -52182,20 +48931,20 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"ccC" = ( +"bYH" = ( /obj/structure/light_construct, /turf/open/floor/plating{ icon_state = "panelscorched" }, /area/maintenance/port/aft) -"ccD" = ( +"bYI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"ccE" = ( +"bYJ" = ( /obj/structure/table, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high{ @@ -52204,34 +48953,34 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"ccF" = ( +"bYK" = ( /obj/machinery/mech_bay_recharge_port, /obj/structure/cable/yellow{ icon_state = "0-2" }, /turf/open/floor/plating, /area/maintenance/port/aft) -"ccG" = ( +"bYL" = ( /turf/open/floor/mech_bay_recharge_floor, /area/maintenance/port/aft) -"ccH" = ( +"bYM" = ( /obj/machinery/computer/mech_bay_power_console, /obj/structure/cable/yellow{ icon_state = "0-2" }, /turf/open/floor/circuit, /area/maintenance/port/aft) -"ccI" = ( +"bYN" = ( /obj/machinery/space_heater, /turf/open/floor/plating{ icon_state = "platingdmg3" }, /area/maintenance/port/aft) -"ccJ" = ( +"bYO" = ( /obj/item/vending_refill/cola, /turf/open/floor/plating, /area/maintenance/port/aft) -"ccK" = ( +"bYP" = ( /obj/structure/closet/crate{ icon_state = "crateopen" }, @@ -52239,7 +48988,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"ccL" = ( +"bYQ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -52251,13 +49000,13 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"ccM" = ( +"bYR" = ( /obj/machinery/vending/medical, /turf/open/floor/plasteel/whiteblue/side{ dir = 9 }, /area/medical/storage) -"ccN" = ( +"bYS" = ( /obj/structure/noticeboard{ pixel_y = 32 }, @@ -52282,7 +49031,7 @@ dir = 1 }, /area/medical/storage) -"ccO" = ( +"bYT" = ( /obj/structure/closet/secure_closet/medical3, /obj/item/screwdriver{ pixel_y = 6 @@ -52294,7 +49043,7 @@ dir = 1 }, /area/medical/storage) -"ccP" = ( +"bYU" = ( /obj/structure/closet/secure_closet/medical3, /obj/machinery/light{ dir = 1 @@ -52309,7 +49058,7 @@ dir = 1 }, /area/medical/storage) -"ccQ" = ( +"bYV" = ( /obj/item/device/radio/intercom{ broadcasting = 1; freerange = 0; @@ -52335,14 +49084,14 @@ dir = 1 }, /area/medical/storage) -"ccR" = ( +"bYW" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /turf/open/floor/plasteel/whiteblue/side{ dir = 5 }, /area/medical/storage) -"ccS" = ( +"bYX" = ( /obj/machinery/power/apc{ dir = 8; name = "Medical Security Checkpoint APC"; @@ -52360,7 +49109,7 @@ dir = 9 }, /area/security/checkpoint/medical) -"ccT" = ( +"bYY" = ( /obj/machinery/recharger{ pixel_y = 4 }, @@ -52382,7 +49131,7 @@ dir = 1 }, /area/security/checkpoint/medical) -"ccU" = ( +"bYZ" = ( /obj/item/pen, /obj/structure/table/reinforced, /obj/structure/reagent_dispensers/peppertank{ @@ -52404,15 +49153,15 @@ dir = 5 }, /area/security/checkpoint/medical) -"ccV" = ( +"bZa" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/medical/medbay/central) -"ccW" = ( +"bZb" = ( /obj/structure/sign/departments/medbay/alt, /turf/closed/wall, /area/medical/medbay/central) -"ccX" = ( +"bZc" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -52422,14 +49171,14 @@ dir = 2 }, /area/medical/medbay/central) -"ccY" = ( +"bZd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/firedoor, /turf/open/floor/plasteel/white/side{ dir = 2 }, /area/medical/medbay/central) -"ccZ" = ( +"bZe" = ( /obj/structure/sign/directions/security{ desc = "A direction sign, pointing out which way the security department is."; dir = 1; @@ -52450,7 +49199,7 @@ }, /turf/closed/wall, /area/medical/medbay/central) -"cda" = ( +"bZf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -52460,7 +49209,7 @@ dir = 8 }, /area/hallway/primary/aft) -"cdb" = ( +"bZg" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -52470,7 +49219,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/aft) -"cdc" = ( +"bZh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -52480,7 +49229,7 @@ dir = 2 }, /area/hallway/primary/aft) -"cdd" = ( +"bZi" = ( /obj/structure/sign/directions/engineering{ desc = "A direction sign, pointing out which way the medical department is."; dir = 8; @@ -52502,22 +49251,22 @@ }, /turf/closed/wall, /area/science/research) -"cde" = ( +"bZj" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/science/research) -"cdf" = ( +"bZk" = ( /obj/structure/sign/departments/science, /turf/closed/wall, /area/science/research) -"cdg" = ( +"bZl" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white/side{ dir = 2 }, /area/science/research) -"cdh" = ( +"bZm" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -52528,20 +49277,13 @@ dir = 2 }, /area/science/research) -"cdi" = ( +"bZn" = ( /turf/closed/wall, /area/science/research) -"cdj" = ( +"bZo" = ( /turf/closed/wall, /area/security/checkpoint/science/research) -"cdk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cdl" = ( +"bZq" = ( /obj/item/reagent_containers/food/snacks/grown/wheat, /obj/item/reagent_containers/food/snacks/grown/watermelon, /obj/item/reagent_containers/food/snacks/grown/citrus/orange, @@ -52552,13 +49294,13 @@ /obj/structure/table/glass, /turf/open/floor/plasteel/hydrofloor, /area/hallway/primary/central) -"cdm" = ( +"bZr" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/hydrofloor, /area/hallway/primary/central) -"cdn" = ( +"bZs" = ( /obj/item/cultivator, /obj/item/crowbar, /obj/item/device/plant_analyzer, @@ -52566,7 +49308,7 @@ /obj/structure/table/glass, /turf/open/floor/plasteel/hydrofloor, /area/hallway/primary/central) -"cdo" = ( +"bZt" = ( /obj/structure/sink{ dir = 8; pixel_x = -12; @@ -52576,13 +49318,13 @@ dir = 9 }, /area/hydroponics) -"cdp" = ( +"bZu" = ( /obj/effect/landmark/start/botanist, /turf/open/floor/plasteel/green/side{ dir = 8 }, /area/hydroponics) -"cdq" = ( +"bZv" = ( /obj/machinery/biogenerator, /obj/machinery/light_switch{ pixel_x = 26 @@ -52592,25 +49334,21 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"cdr" = ( +"bZw" = ( /obj/structure/closet/secure_closet/hydroponics, /obj/machinery/light_switch{ pixel_x = -26 }, /turf/open/floor/plasteel/hydrofloor, /area/hydroponics) -"cds" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +"bZx" = ( +/obj/machinery/icecream_vat, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 }, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/hydrofloor, -/area/hydroponics) -"cdt" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"bZy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/airlock{ name = "Service Hall"; @@ -52619,38 +49357,29 @@ }, /turf/open/floor/plating, /area/hallway/secondary/service) -"cdu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cdv" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"cdw" = ( +"bZz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/starboard) -"cdx" = ( +"bZA" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"bZB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, /turf/open/floor/plating, /area/maintenance/starboard) -"cdy" = ( +"bZC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/disposal/incinerator) -"cdz" = ( +"bZD" = ( /obj/machinery/door/airlock/maintenance{ name = "Incinerator Access"; req_access_txt = "12" @@ -52661,10 +49390,10 @@ }, /turf/open/floor/plating, /area/maintenance/disposal/incinerator) -"cdA" = ( +"bZE" = ( /turf/closed/wall, /area/maintenance/disposal/incinerator) -"cdB" = ( +"bZF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 5 }, @@ -52678,46 +49407,46 @@ dir = 8 }, /area/engine/atmos) -"cdC" = ( +"bZG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 10 }, /turf/open/floor/plasteel, /area/engine/atmos) -"cdD" = ( +"bZH" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; name = "N2 to Pure" }, /turf/open/floor/plasteel, /area/engine/atmos) -"cdE" = ( +"bZI" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"cdF" = ( +"bZJ" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"cdG" = ( +"bZK" = ( /obj/machinery/atmospherics/pipe/manifold/yellow/visible{ dir = 1 }, /turf/open/floor/plasteel, /area/engine/atmos) -"cdH" = ( +"bZL" = ( /obj/machinery/atmospherics/pipe/manifold/yellow/visible{ dir = 4 }, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmos) -"cdI" = ( +"bZM" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -52735,13 +49464,13 @@ dir = 4 }, /area/engine/atmos) -"cdJ" = ( +"bZN" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/plating/airless, /area/maintenance/solars/port/aft) -"cdK" = ( +"bZO" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; req_access_txt = "12" @@ -52749,16 +49478,16 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port/aft) -"cdL" = ( +"bZP" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/circuit, /area/maintenance/port/aft) -"cdM" = ( +"bZQ" = ( /turf/open/floor/circuit, /area/maintenance/port/aft) -"cdN" = ( +"bZR" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -52769,15 +49498,15 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cdO" = ( +"bZS" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating, /area/maintenance/port/aft) -"cdP" = ( +"bZT" = ( /obj/machinery/space_heater, /turf/open/floor/plating, -/area/maintenance/port/aft) -"cdQ" = ( +/area/maintenance/aft) +"bZU" = ( /obj/machinery/light/small{ dir = 1 }, @@ -52785,13 +49514,13 @@ /obj/item/mop, /turf/open/floor/plating, /area/maintenance/port/aft) -"cdR" = ( +"bZV" = ( /obj/item/storage/toolbox/emergency, /obj/item/hand_labeler, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"cdS" = ( +"bZW" = ( /obj/item/cigbutt, /obj/structure/disposalpipe/segment{ dir = 6 @@ -52801,7 +49530,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cdT" = ( +"bZX" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=4"; dir = 4; @@ -52822,7 +49551,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/medical/storage) -"cdU" = ( +"bZY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -52830,20 +49559,20 @@ dir = 8 }, /area/medical/storage) -"cdV" = ( +"bZZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plasteel/white, /area/medical/storage) -"cdW" = ( +"caa" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plasteel/white, /area/medical/storage) -"cdX" = ( +"cab" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -52852,7 +49581,7 @@ }, /turf/open/floor/plasteel/white, /area/medical/storage) -"cdY" = ( +"cac" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -52866,7 +49595,7 @@ dir = 4 }, /area/medical/storage) -"cdZ" = ( +"cad" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Medbay Security Post"; @@ -52880,7 +49609,7 @@ }, /turf/open/floor/plasteel/red, /area/security/checkpoint/medical) -"cea" = ( +"cae" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -52894,10 +49623,10 @@ dir = 8 }, /area/security/checkpoint/medical) -"ceb" = ( +"caf" = ( /turf/open/floor/plasteel, /area/security/checkpoint/medical) -"cec" = ( +"cag" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -52905,14 +49634,14 @@ dir = 4 }, /area/security/checkpoint/medical) -"ced" = ( +"cah" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plating, /area/security/checkpoint/medical) -"cee" = ( +"cai" = ( /obj/structure/table, /obj/item/pen, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -52923,7 +49652,7 @@ dir = 1 }, /area/medical/medbay/central) -"cef" = ( +"caj" = ( /obj/machinery/light/small{ dir = 1 }, @@ -52949,31 +49678,31 @@ dir = 1 }, /area/medical/medbay/central) -"ceg" = ( +"cak" = ( /obj/structure/chair, /turf/open/floor/plasteel/whiteblue/side{ dir = 1 }, /area/medical/medbay/central) -"ceh" = ( +"cal" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cei" = ( +"cam" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cej" = ( +"can" = ( /obj/structure/chair, /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel/whiteblue/side{ dir = 1 }, /area/medical/medbay/central) -"cek" = ( +"cao" = ( /obj/structure/table, /obj/item/storage/box/bodybags{ pixel_x = 3; @@ -52983,7 +49712,7 @@ dir = 1 }, /area/medical/medbay/central) -"cel" = ( +"cap" = ( /obj/structure/table, /obj/item/stack/medical/gauze, /obj/item/stack/medical/ointment, @@ -52992,25 +49721,25 @@ dir = 1 }, /area/medical/medbay/central) -"cem" = ( +"caq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/blue/corner{ dir = 8 }, /area/hallway/primary/aft) -"cen" = ( +"car" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/hallway/primary/aft) -"ceo" = ( +"cas" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/purple/corner{ dir = 2 }, /area/hallway/primary/aft) -"cep" = ( +"cat" = ( /obj/structure/table, /obj/item/folder/white{ pixel_x = 4; @@ -53021,25 +49750,25 @@ dir = 1 }, /area/science/research) -"ceq" = ( +"cau" = ( /obj/structure/table, /obj/item/paper/pamphlet/gateway, /turf/open/floor/plasteel/whitepurple/side{ dir = 1 }, /area/science/research) -"cer" = ( +"cav" = ( /obj/structure/chair, /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel/whitepurple/side{ dir = 1 }, /area/science/research) -"ces" = ( +"caw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white, /area/science/research) -"cet" = ( +"cax" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -53047,13 +49776,13 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/white, /area/science/research) -"ceu" = ( +"cay" = ( /obj/structure/chair, /turf/open/floor/plasteel/whitepurple/side{ dir = 1 }, /area/science/research) -"cev" = ( +"caz" = ( /obj/structure/table, /obj/item/stack/cable_coil, /obj/item/device/assembly/igniter{ @@ -53070,7 +49799,7 @@ dir = 1 }, /area/science/research) -"cew" = ( +"caA" = ( /obj/structure/table, /obj/item/stack/sheet/glass, /obj/item/electronics/airlock, @@ -53082,7 +49811,7 @@ dir = 1 }, /area/science/research) -"cex" = ( +"caB" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -2; @@ -53108,7 +49837,7 @@ dir = 1 }, /area/science/research) -"cey" = ( +"caC" = ( /obj/structure/table, /obj/machinery/recharger{ pixel_y = 4 @@ -53124,7 +49853,7 @@ dir = 9 }, /area/security/checkpoint/science/research) -"cez" = ( +"caD" = ( /obj/structure/table, /obj/machinery/requests_console{ department = "Security"; @@ -53157,7 +49886,7 @@ dir = 1 }, /area/security/checkpoint/science/research) -"ceA" = ( +"caE" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = 1; @@ -53172,16 +49901,7 @@ dir = 5 }, /area/security/checkpoint/science/research) -"ceB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"ceC" = ( +"caG" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -53193,19 +49913,19 @@ }, /turf/open/floor/plasteel/hydrofloor, /area/hallway/primary/central) -"ceD" = ( +"caH" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, /turf/open/floor/plasteel/hydrofloor, /area/hallway/primary/central) -"ceE" = ( +"caI" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/hydrofloor, /area/hallway/primary/central) -"ceF" = ( +"caJ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical/glass{ name = "Hydroponics"; @@ -53216,7 +49936,7 @@ }, /turf/open/floor/plasteel/hydrofloor, /area/hydroponics) -"ceG" = ( +"caK" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -53227,7 +49947,7 @@ dir = 10 }, /area/hydroponics) -"ceH" = ( +"caL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -53238,7 +49958,7 @@ dir = 6 }, /area/hydroponics) -"ceI" = ( +"caM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -53249,7 +49969,7 @@ dir = 10 }, /area/hydroponics) -"ceJ" = ( +"caN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -53260,7 +49980,7 @@ dir = 2 }, /area/hydroponics) -"ceK" = ( +"caO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -53274,7 +49994,7 @@ dir = 2 }, /area/hydroponics) -"ceL" = ( +"caP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -53288,7 +50008,7 @@ dir = 2 }, /area/hydroponics) -"ceM" = ( +"caQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -53304,11 +50024,14 @@ /obj/effect/turf_decal/bot{ dir = 2 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel{ dir = 2 }, /area/hydroponics) -"ceN" = ( +"caR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -53318,7 +50041,7 @@ }, /turf/open/floor/plasteel/hydrofloor, /area/hydroponics) -"ceO" = ( +"caS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -53330,7 +50053,7 @@ }, /turf/open/floor/plasteel/hydrofloor, /area/hydroponics) -"ceP" = ( +"caT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -53345,9 +50068,12 @@ /obj/structure/cable/yellow{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating, /area/maintenance/starboard) -"ceQ" = ( +"caU" = ( /obj/structure/disposalpipe/sorting/mail{ sortType = 21 }, @@ -53365,25 +50091,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"ceR" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ceS" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ceT" = ( +"caW" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -53392,12 +50100,12 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"ceU" = ( +"caX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/light_switch, /turf/closed/wall, /area/maintenance/disposal/incinerator) -"ceV" = ( +"caY" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -53407,7 +50115,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"ceW" = ( +"caZ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -53418,7 +50126,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"ceX" = ( +"cba" = ( /obj/machinery/power/smes{ capacity = 9e+006; charge = 10000 @@ -53428,7 +50136,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"ceY" = ( +"cbb" = ( /obj/machinery/door/window/northleft{ dir = 1; icon_state = "left"; @@ -53437,7 +50145,7 @@ }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"ceZ" = ( +"cbc" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -53449,7 +50157,7 @@ }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cfa" = ( +"cbd" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 4; filter_type = "n2"; @@ -53458,7 +50166,7 @@ /obj/structure/window/reinforced, /turf/open/floor/plasteel/red, /area/engine/atmos) -"cfb" = ( +"cbe" = ( /obj/structure/window/reinforced, /obj/machinery/computer/atmos_control/tank{ dir = 1; @@ -53474,7 +50182,7 @@ /obj/machinery/atmospherics/pipe/simple/dark/visible, /turf/open/floor/plasteel/red, /area/engine/atmos) -"cfc" = ( +"cbf" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/components/binary/pump{ dir = 1; @@ -53486,7 +50194,7 @@ }, /turf/open/floor/plasteel/red, /area/engine/atmos) -"cfd" = ( +"cbg" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -53504,7 +50212,7 @@ }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cfe" = ( +"cbh" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/components/trinary/filter{ dir = 4; @@ -53513,7 +50221,7 @@ }, /turf/open/floor/plasteel/blue, /area/engine/atmos) -"cff" = ( +"cbi" = ( /obj/structure/window/reinforced, /obj/machinery/computer/atmos_control/tank{ dir = 1; @@ -53528,7 +50236,7 @@ }, /turf/open/floor/plasteel/blue, /area/engine/atmos) -"cfg" = ( +"cbj" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/components/binary/pump{ dir = 1; @@ -53540,7 +50248,7 @@ }, /turf/open/floor/plasteel/blue, /area/engine/atmos) -"cfh" = ( +"cbk" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -53562,7 +50270,7 @@ }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cfi" = ( +"cbl" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/machinery/atmospherics/pipe/simple/green/visible{ @@ -53572,24 +50280,7 @@ dir = 8 }, /area/engine/atmos) -"cfj" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/atmos_control/tank{ - dir = 1; - frequency = 1441; - input_tag = "air_in"; - name = "Mixed Air Supply Control"; - output_tag = "air_out"; - sensors = list("air_sensor" = "Tank") - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/engine/atmos) -"cfk" = ( +"cbn" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/components/binary/pump{ dir = 1; @@ -53602,7 +50293,7 @@ dir = 8 }, /area/engine/atmos) -"cfl" = ( +"cbo" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -53614,7 +50305,7 @@ dir = 8 }, /area/engine/atmos) -"cfm" = ( +"cbp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -53623,7 +50314,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfn" = ( +"cbq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -53634,7 +50325,7 @@ icon_state = "panelscorched" }, /area/maintenance/port/aft) -"cfo" = ( +"cbr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -53643,13 +50334,13 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfp" = ( +"cbs" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfq" = ( +"cbt" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -53658,12 +50349,12 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfr" = ( +"cbu" = ( /turf/open/floor/plating{ icon_state = "panelscorched" }, -/area/maintenance/port/aft) -"cfs" = ( +/area/maintenance/aft) +"cbv" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -53675,7 +50366,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cft" = ( +"cbw" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -53683,13 +50374,13 @@ icon_state = "platingdmg3" }, /area/maintenance/port/aft) -"cfu" = ( +"cbx" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfv" = ( +"cby" = ( /obj/machinery/mecha_part_fabricator{ dir = 2; name = "counterfeit exosuit fabricator"; @@ -53697,7 +50388,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfw" = ( +"cbz" = ( /obj/structure/rack, /obj/item/stack/sheet/cardboard, /obj/item/device/radio/off, @@ -53707,7 +50398,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfx" = ( +"cbA" = ( /obj/structure/closet, /obj/item/stack/sheet/metal{ amount = 34 @@ -53716,7 +50407,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfy" = ( +"cbB" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -53727,7 +50418,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfz" = ( +"cbC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -53735,8 +50426,8 @@ dir = 4 }, /turf/open/floor/plating, -/area/maintenance/port/aft) -"cfA" = ( +/area/maintenance/aft) +"cbD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -53746,7 +50437,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfB" = ( +"cbE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -53756,7 +50447,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfC" = ( +"cbF" = ( /obj/item/reagent_containers/glass/bottle/morphine, /obj/item/trash/candy, /obj/structure/disposalpipe/segment{ @@ -53767,7 +50458,7 @@ icon_state = "platingdmg1" }, /area/maintenance/port/aft) -"cfD" = ( +"cbG" = ( /obj/item/storage/box/lights/mixed, /obj/structure/disposalpipe/segment{ dir = 4 @@ -53777,7 +50468,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfE" = ( +"cbH" = ( /obj/item/tank/internals/air, /obj/item/tank/internals/air, /obj/item/clothing/mask/breath, @@ -53793,7 +50484,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfF" = ( +"cbI" = ( /obj/machinery/door/airlock{ name = "Medbay Emergency Storage"; req_access_txt = "5" @@ -53803,7 +50494,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfG" = ( +"cbJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -53814,7 +50505,7 @@ dir = 8 }, /area/medical/storage) -"cfH" = ( +"cbK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -53823,7 +50514,7 @@ }, /turf/open/floor/plasteel/white, /area/medical/storage) -"cfI" = ( +"cbL" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -53832,7 +50523,7 @@ }, /turf/open/floor/plasteel/white, /area/medical/storage) -"cfJ" = ( +"cbM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -53841,7 +50532,7 @@ }, /turf/open/floor/plasteel/white, /area/medical/storage) -"cfK" = ( +"cbN" = ( /obj/machinery/holopad, /obj/effect/landmark/start/medical_doctor, /obj/structure/cable/yellow{ @@ -53852,7 +50543,7 @@ }, /turf/open/floor/plasteel/white, /area/medical/storage) -"cfL" = ( +"cbO" = ( /obj/machinery/camera{ c_tag = "Medbay Storage"; dir = 8; @@ -53865,7 +50556,7 @@ dir = 4 }, /area/medical/storage) -"cfM" = ( +"cbP" = ( /obj/machinery/requests_console{ announcementConsole = 0; department = "Medbay"; @@ -53874,7 +50565,7 @@ }, /turf/closed/wall, /area/security/checkpoint/medical) -"cfN" = ( +"cbQ" = ( /obj/machinery/computer/secure_data{ dir = 4 }, @@ -53893,7 +50584,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/checkpoint/medical) -"cfO" = ( +"cbR" = ( /obj/structure/chair/office/dark, /obj/machinery/button/door{ desc = "A remote control switch for the medbay foyer."; @@ -53908,11 +50599,11 @@ dir = 6 }, /area/security/checkpoint/medical) -"cfP" = ( +"cbS" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/checkpoint/medical) -"cfQ" = ( +"cbT" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -53921,7 +50612,7 @@ }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cfR" = ( +"cbU" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -53931,7 +50622,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cfS" = ( +"cbV" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -53940,7 +50631,7 @@ }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cfT" = ( +"cbW" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -53950,62 +50641,62 @@ /obj/machinery/holopad, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cfU" = ( +"cbX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cfV" = ( +"cbY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cfW" = ( +"cbZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cfX" = ( +"cca" = ( /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cfY" = ( +"ccb" = ( /obj/machinery/door/firedoor, /turf/open/floor/plasteel/white/side{ dir = 8 }, /area/medical/medbay/central) -"cfZ" = ( +"ccc" = ( /obj/machinery/door/firedoor, /turf/open/floor/plasteel/white/side{ dir = 4 }, /area/science/research) -"cga" = ( +"ccd" = ( /turf/open/floor/plasteel/white, /area/science/research) -"cgb" = ( +"cce" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /turf/open/floor/plasteel/white, /area/science/research) -"cgc" = ( +"ccf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/white, /area/science/research) -"cgd" = ( +"ccg" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/white, /area/science/research) -"cge" = ( +"cch" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -54016,26 +50707,26 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/white, /area/science/research) -"cgf" = ( +"cci" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel/white, /area/science/research) -"cgg" = ( +"ccj" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, /turf/open/floor/plasteel/white, /area/science/research) -"cgh" = ( +"cck" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plating, /area/security/checkpoint/science/research) -"cgi" = ( +"ccl" = ( /obj/item/screwdriver{ pixel_y = 10 }, @@ -54047,7 +50738,7 @@ dir = 8 }, /area/security/checkpoint/science/research) -"cgj" = ( +"ccm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/chair/office/dark{ dir = 1 @@ -54055,7 +50746,7 @@ /obj/effect/landmark/start/depsec/science, /turf/open/floor/plasteel, /area/security/checkpoint/science/research) -"cgk" = ( +"ccn" = ( /obj/machinery/computer/secure_data{ dir = 8 }, @@ -54072,18 +50763,26 @@ dir = 4 }, /area/security/checkpoint/science/research) -"cgl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cgm" = ( +"cco" = ( +/obj/machinery/light/small, +/obj/item/toy/dummy, +/obj/item/toy/prize/honk{ + pixel_y = 12 + }, +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"ccp" = ( /obj/machinery/vending/hydroseeds{ slogan_delay = 700 }, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"cgn" = ( +"ccq" = ( /obj/structure/table, /obj/item/book/manual/hydroponics_pod_people, /obj/machinery/light, @@ -54098,11 +50797,11 @@ }, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"cgo" = ( +"ccr" = ( /obj/machinery/vending/hydronutrients, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"cgp" = ( +"ccs" = ( /obj/machinery/disposal/bin{ pixel_x = -2; pixel_y = -2 @@ -54118,13 +50817,13 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"cgq" = ( +"cct" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 }, /turf/open/floor/plasteel, /area/hydroponics) -"cgr" = ( +"ccu" = ( /obj/machinery/hydroponics/constructable, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -54135,14 +50834,14 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"cgs" = ( +"ccv" = ( /obj/machinery/hydroponics/constructable, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, /area/hydroponics) -"cgt" = ( +"ccw" = ( /obj/machinery/hydroponics/constructable, /obj/machinery/light, /obj/machinery/power/apc{ @@ -54157,7 +50856,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"cgu" = ( +"ccx" = ( /obj/machinery/hydroponics/constructable, /obj/machinery/airalarm{ dir = 1; @@ -54168,7 +50867,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"cgv" = ( +"ccy" = ( /obj/machinery/hydroponics/constructable, /obj/machinery/firealarm{ dir = 1; @@ -54179,14 +50878,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"cgw" = ( -/obj/machinery/plantgenes, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"cgx" = ( +"ccz" = ( /obj/item/wrench, /obj/item/clothing/suit/apron, /obj/item/clothing/accessory/armband/hydro, @@ -54196,7 +50888,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"cgy" = ( +"ccA" = ( /obj/item/reagent_containers/spray/plantbgone{ pixel_y = 3 }, @@ -54219,7 +50911,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"cgz" = ( +"ccB" = ( /obj/machinery/door/window/eastright{ dir = 1; name = "Hydroponics Delivery"; @@ -54234,7 +50926,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hydroponics) -"cgA" = ( +"ccC" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; dir = 8; @@ -54254,7 +50946,7 @@ dir = 1 }, /area/hydroponics) -"cgB" = ( +"ccD" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -54268,21 +50960,21 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"cgC" = ( +"ccE" = ( /obj/machinery/atmospherics/components/unary/tank/toxins{ dir = 4 }, /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cgD" = ( +"ccF" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; name = "plasma tank pump" }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cgE" = ( +"ccG" = ( /obj/structure/sink/kitchen{ desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; @@ -54296,7 +50988,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cgF" = ( +"ccH" = ( /obj/machinery/light{ dir = 1 }, @@ -54312,7 +51004,7 @@ /obj/item/pen, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cgG" = ( +"ccI" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -54321,7 +51013,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cgH" = ( +"ccJ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ icon_state = "2-4" @@ -54331,7 +51023,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cgI" = ( +"ccK" = ( /obj/structure/cable{ icon_state = "0-8" }, @@ -54343,68 +51035,59 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cgJ" = ( +"ccL" = ( /obj/machinery/atmospherics/pipe/simple/dark/visible{ dir = 4 }, /turf/closed/wall/r_wall, /area/engine/atmos) -"cgK" = ( +"ccM" = ( /obj/machinery/atmospherics/pipe/simple/dark/visible{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cgL" = ( -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/valve/digital{ - name = "Waste Release" - }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) -"cgM" = ( +"ccN" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, /obj/machinery/atmospherics/pipe/simple/dark/visible{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cgN" = ( +"ccO" = ( /obj/machinery/atmospherics/pipe/simple/dark/visible{ dir = 9 }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cgO" = ( +"ccP" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cgP" = ( +"ccQ" = ( /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cgQ" = ( +"ccR" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cgR" = ( +"ccS" = ( /obj/machinery/light, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cgS" = ( +"ccT" = ( /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cgT" = ( +"ccU" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cgU" = ( +"ccV" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 9 }, @@ -54415,14 +51098,17 @@ }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cgV" = ( +"ccW" = ( /obj/machinery/door/airlock/external{ req_access_txt = "24"; req_one_access_txt = "0" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/engine/atmos) -"cgW" = ( +"ccX" = ( /obj/structure/sign/warning/vacuum/external{ pixel_y = -32 }, @@ -54434,10 +51120,10 @@ }, /turf/open/floor/plating, /area/engine/atmos) -"cgX" = ( +"ccY" = ( /turf/open/floor/plating, /area/engine/atmos) -"cgY" = ( +"ccZ" = ( /obj/machinery/door/window/northleft{ dir = 8; icon_state = "left"; @@ -54452,12 +51138,12 @@ }, /turf/open/floor/plating, /area/engine/atmos) -"cgZ" = ( +"cda" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, /turf/open/space, /area/solar/port/aft) -"cha" = ( +"cdb" = ( /obj/structure/girder, /obj/structure/grille, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -54468,7 +51154,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"chb" = ( +"cdc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -54477,7 +51163,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"chc" = ( +"cdd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -54489,7 +51175,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"chd" = ( +"cde" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; req_access_txt = "12" @@ -54502,7 +51188,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"che" = ( +"cdf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -54514,19 +51200,19 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"chf" = ( +"cdg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"chg" = ( +"cdh" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"chh" = ( +"cdi" = ( /obj/structure/closet, /obj/item/stack/sheet/glass{ amount = 12 @@ -54534,7 +51220,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"chi" = ( +"cdj" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -54542,31 +51228,31 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port/aft) -"chj" = ( +"cdk" = ( /obj/item/trash/semki, /turf/open/floor/plating, /area/maintenance/port/aft) -"chk" = ( +"cdl" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/maintenance/port/aft) -"chl" = ( +"cdm" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, -/area/maintenance/port/aft) -"chm" = ( +/area/maintenance/aft) +"cdn" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 }, /obj/machinery/portable_atmospherics/canister/air, /turf/open/floor/plating, /area/maintenance/port/aft) -"chn" = ( +"cdo" = ( /obj/effect/landmark/xeno_spawn, /obj/structure/closet/firecloset, /turf/open/floor/plating, /area/maintenance/port/aft) -"cho" = ( +"cdp" = ( /obj/machinery/light_switch{ pixel_x = -26 }, @@ -54585,7 +51271,7 @@ dir = 10 }, /area/medical/storage) -"chp" = ( +"cdq" = ( /obj/machinery/firealarm{ dir = 1; pixel_y = -24 @@ -54595,7 +51281,7 @@ dir = 2 }, /area/medical/storage) -"chq" = ( +"cdr" = ( /obj/item/storage/box/bodybags{ pixel_x = 3; pixel_y = 3 @@ -54627,37 +51313,37 @@ dir = 8 }, /area/medical/storage) -"chr" = ( +"cds" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white, /area/medical/storage) -"chs" = ( +"cdt" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/white, /area/medical/storage) -"cht" = ( +"cdu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/whiteblue/corner{ dir = 4 }, /area/medical/storage) -"chu" = ( +"cdv" = ( /obj/machinery/rnd/protolathe/department/medical, /turf/open/floor/plasteel/whiteblue/side{ dir = 5 }, /area/medical/storage) -"chv" = ( +"cdw" = ( /turf/closed/wall, /area/medical/medbay/central) -"chw" = ( +"cdx" = ( /obj/machinery/computer/crew, /turf/open/floor/plasteel/vault, /area/medical/medbay/central) -"chx" = ( +"cdy" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -54672,19 +51358,19 @@ }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"chy" = ( +"cdz" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"chz" = ( +"cdA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"chA" = ( +"cdB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -54695,29 +51381,25 @@ }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"chB" = ( +"cdC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"chC" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"chD" = ( +"cdD" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"chE" = ( +"cdE" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"chF" = ( +"cdF" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 @@ -54726,7 +51408,7 @@ dir = 8 }, /area/medical/medbay/central) -"chG" = ( +"cdG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment{ dir = 4 @@ -54735,7 +51417,7 @@ dir = 8 }, /area/hallway/primary/aft) -"chH" = ( +"cdH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -54747,7 +51429,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/aft) -"chI" = ( +"cdI" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, @@ -54755,17 +51437,13 @@ dir = 2 }, /area/hallway/primary/aft) -"chJ" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/research) -"chK" = ( +"cdJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /turf/open/floor/plasteel/white, /area/science/research) -"chL" = ( +"cdK" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -54777,7 +51455,7 @@ }, /turf/open/floor/plasteel/white, /area/science/research) -"chM" = ( +"cdL" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -54789,7 +51467,7 @@ }, /turf/open/floor/plasteel/white, /area/science/research) -"chN" = ( +"cdM" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -54798,7 +51476,7 @@ }, /turf/open/floor/plasteel/white, /area/science/research) -"chO" = ( +"cdN" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -54810,7 +51488,7 @@ }, /turf/open/floor/plasteel/white, /area/science/research) -"chP" = ( +"cdO" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -54823,7 +51501,7 @@ }, /turf/open/floor/plasteel/white, /area/science/research) -"chQ" = ( +"cdP" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -54833,7 +51511,7 @@ }, /turf/open/floor/plating, /area/security/checkpoint/science/research) -"chR" = ( +"cdQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -54845,13 +51523,13 @@ dir = 8 }, /area/security/checkpoint/science/research) -"chS" = ( +"cdR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /turf/open/floor/plasteel, /area/security/checkpoint/science/research) -"chT" = ( +"cdS" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = 30 }, @@ -54867,12 +51545,7 @@ dir = 4 }, /area/security/checkpoint/science/research) -"chU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"chV" = ( +"cdU" = ( /obj/machinery/door/airlock/maintenance{ name = "Hydroponics Maintenance"; req_access_txt = "35"; @@ -54880,7 +51553,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"chW" = ( +"cdV" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -54890,28 +51563,28 @@ icon_state = "panelscorched" }, /area/maintenance/starboard) -"chX" = ( +"cdW" = ( /obj/item/device/flashlight, /obj/machinery/light/small{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/starboard) -"chY" = ( +"cdX" = ( /obj/structure/closet/crate, /obj/item/coin/silver, /obj/effect/spawner/lootdrop/maintenance, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard) -"chZ" = ( +"cdY" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/storage/box/lights/mixed, /obj/effect/spawner/lootdrop/maintenance, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard) -"cia" = ( +"cdZ" = ( /obj/structure/sign/warning/nosmoking{ pixel_x = -28 }, @@ -54922,14 +51595,14 @@ /obj/machinery/portable_atmospherics/canister/oxygen, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cib" = ( +"cea" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; name = "input port pump" }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cic" = ( +"ceb" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -54942,7 +51615,7 @@ /obj/machinery/meter, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cid" = ( +"cec" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -54951,7 +51624,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cie" = ( +"ced" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -54960,7 +51633,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cif" = ( +"cee" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -54972,7 +51645,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cig" = ( +"cef" = ( /obj/structure/sign/warning/fire{ pixel_x = 32 }, @@ -54983,37 +51656,32 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cih" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/atmos) -"cii" = ( +"ceg" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/green/visible, /turf/open/floor/plating, /area/engine/atmos) -"cij" = ( +"ceh" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/yellow/visible, /turf/open/floor/plating, /area/engine/atmos) -"cik" = ( +"cei" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/open/floor/plating, /area/engine/atmos) -"cil" = ( +"cej" = ( /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/aft) -"cim" = ( +"cek" = ( /obj/machinery/door/airlock/external{ req_access_txt = "13" }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cin" = ( +"cel" = ( /obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, @@ -55022,7 +51690,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cio" = ( +"cem" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -55034,7 +51702,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cip" = ( +"cen" = ( /obj/structure/girder, /obj/structure/grille, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -55045,7 +51713,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"ciq" = ( +"ceo" = ( /obj/structure/girder, /obj/structure/grille, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -55056,7 +51724,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cir" = ( +"cep" = ( /obj/structure/rack, /obj/item/screwdriver{ pixel_y = 16 @@ -55065,7 +51733,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"cis" = ( +"ceq" = ( /obj/structure/rack, /obj/item/stack/cable_coil{ pixel_x = -1; @@ -55076,7 +51744,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"cit" = ( +"cer" = ( /obj/structure/rack, /obj/item/stack/rods{ amount = 23 @@ -55084,7 +51752,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"ciu" = ( +"ces" = ( /obj/structure/table, /obj/item/folder/white{ pixel_x = 4; @@ -55097,23 +51765,14 @@ /obj/item/pen, /turf/open/floor/plating, /area/maintenance/port/aft) -"civ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ciw" = ( +"ceu" = ( /obj/structure/grille, /turf/open/floor/plating, /area/maintenance/port/aft) -"cix" = ( +"cev" = ( /turf/closed/wall, /area/medical/sleeper) -"ciy" = ( +"cew" = ( /obj/item/storage/firstaid/regular{ pixel_x = 3; pixel_y = -3 @@ -55137,7 +51796,7 @@ dir = 8 }, /area/medical/storage) -"ciz" = ( +"cex" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -55146,13 +51805,13 @@ }, /turf/open/floor/plasteel/white, /area/medical/storage) -"ciA" = ( +"cey" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel/white, /area/medical/storage) -"ciB" = ( +"cez" = ( /obj/item/storage/firstaid/regular{ pixel_x = 3; pixel_y = -3 @@ -55178,7 +51837,7 @@ dir = 4 }, /area/medical/storage) -"ciC" = ( +"ceA" = ( /obj/structure/sink{ dir = 8; pixel_x = -12; @@ -55200,7 +51859,7 @@ dir = 9 }, /area/medical/medbay/central) -"ciD" = ( +"ceB" = ( /obj/structure/chair/office/light{ dir = 4 }, @@ -55217,23 +51876,11 @@ dir = 5 }, /area/medical/medbay/central) -"ciE" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/door/firedoor, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/syringe, -/obj/item/pen, -/turf/open/floor/plasteel/whitegreen, -/area/medical/medbay/central) -"ciF" = ( +"ceC" = ( +/obj/machinery/telecomms/server/presets/command, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"ceD" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -55242,13 +51889,13 @@ dir = 2 }, /area/medical/medbay/central) -"ciG" = ( +"ceE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/whiteblue/side{ dir = 2 }, /area/medical/medbay/central) -"ciH" = ( +"ceF" = ( /obj/structure/bed/roller, /obj/item/device/radio/intercom{ broadcasting = 0; @@ -55267,20 +51914,20 @@ dir = 2 }, /area/medical/medbay/central) -"ciI" = ( +"ceG" = ( /obj/machinery/light, /obj/structure/bed/roller, /turf/open/floor/plasteel/whiteblue/side{ dir = 2 }, /area/medical/medbay/central) -"ciJ" = ( +"ceH" = ( /obj/structure/bed/roller, /turf/open/floor/plasteel/whiteblue/side{ dir = 2 }, /area/medical/medbay/central) -"ciK" = ( +"ceI" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-11" }, @@ -55288,12 +51935,12 @@ dir = 2 }, /area/medical/medbay/central) -"ciL" = ( +"ceJ" = ( /turf/open/floor/plasteel/whiteyellow/side{ dir = 2 }, /area/medical/medbay/central) -"ciM" = ( +"ceK" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -55307,14 +51954,14 @@ dir = 2 }, /area/medical/medbay/central) -"ciN" = ( +"ceL" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/hallway/primary/aft) -"ciO" = ( +"ceN" = ( /obj/structure/table, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high{ @@ -55325,14 +51972,7 @@ dir = 2 }, /area/science/research) -"ciP" = ( -/obj/structure/table, -/obj/item/device/paicard, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 2 - }, -/area/science/research) -"ciQ" = ( +"ceO" = ( /obj/structure/table, /obj/item/stock_parts/cell/potato, /obj/machinery/light, @@ -55344,7 +51984,7 @@ dir = 2 }, /area/science/research) -"ciR" = ( +"ceQ" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -55353,15 +51993,7 @@ dir = 2 }, /area/science/research) -"ciS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 2 - }, -/area/science/research) -"ciT" = ( +"ceR" = ( /obj/structure/disposalpipe/junction/flip{ dir = 4 }, @@ -55369,7 +52001,7 @@ dir = 2 }, /area/science/research) -"ciU" = ( +"ceS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -55386,7 +52018,7 @@ dir = 2 }, /area/science/research) -"ciV" = ( +"ceT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment{ dir = 10 @@ -55395,7 +52027,7 @@ dir = 2 }, /area/science/research) -"ciW" = ( +"ceU" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -55412,7 +52044,7 @@ dir = 2 }, /area/science/research) -"ciX" = ( +"ceV" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -55423,13 +52055,13 @@ dir = 8 }, /area/security/checkpoint/science/research) -"ciY" = ( +"ceW" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel, /area/security/checkpoint/science/research) -"ciZ" = ( +"ceX" = ( /obj/item/device/radio/intercom{ dir = 4; name = "Station Intercom (General)"; @@ -55445,7 +52077,7 @@ dir = 4 }, /area/security/checkpoint/science/research) -"cja" = ( +"ceY" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -55457,7 +52089,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cjb" = ( +"ceZ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -55469,7 +52101,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cjc" = ( +"cfa" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -55483,7 +52115,7 @@ icon_state = "platingdmg2" }, /area/maintenance/starboard/aft) -"cjd" = ( +"cfb" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -55498,7 +52130,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cje" = ( +"cfc" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -55513,7 +52145,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cjf" = ( +"cfd" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -55527,48 +52159,7 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/aft) -"cjg" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cjh" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cji" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cjj" = ( +"cff" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -55582,7 +52173,7 @@ icon_state = "panelscorched" }, /area/maintenance/starboard/aft) -"cjk" = ( +"cfg" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -55600,7 +52191,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cjl" = ( +"cfh" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -55615,7 +52206,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cjm" = ( +"cfi" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -55630,20 +52221,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"cjn" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cjo" = ( +"cfj" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -55655,7 +52233,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"cjp" = ( +"cfk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -55664,7 +52242,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"cjq" = ( +"cfl" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; req_access_txt = "12" @@ -55674,7 +52252,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"cjr" = ( +"cfm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -55683,7 +52261,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"cjs" = ( +"cfn" = ( /obj/machinery/portable_atmospherics/canister, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4; @@ -55691,7 +52269,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cjt" = ( +"cfo" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -55699,20 +52277,20 @@ /obj/machinery/atmospherics/pipe/manifold/general/visible, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cju" = ( +"cfp" = ( /obj/effect/landmark/xeno_spawn, /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 4 }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cjv" = ( +"cfq" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 4 }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cjw" = ( +"cfr" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -55723,64 +52301,66 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cjx" = ( +"cfs" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4 }, /obj/machinery/meter, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cjy" = ( +"cft" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/disposal/incinerator) -"cjz" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1441; - id = "n2_in"; - volume_rate = 200 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/engine/atmos) -"cjA" = ( +"cfu" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/green/visible, /turf/open/space, /area/space/nearstation) -"cjB" = ( +"cfv" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/yellow/visible, /turf/open/space, /area/space/nearstation) -"cjC" = ( +"cfw" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/manifold/yellow/visible{ dir = 8 }, /turf/open/space, /area/space/nearstation) -"cjD" = ( +"cfx" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 9 }, /turf/open/space, /area/space/nearstation) -"cjE" = ( +"cfy" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/open/space, /area/space/nearstation) -"cjF" = ( +"cfz" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ icon_state = "0-2" }, /turf/open/space, /area/solar/port/aft) -"cjG" = ( +"cfA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cfB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -55790,7 +52370,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cjH" = ( +"cfC" = ( /obj/item/trash/pistachios, /obj/structure/closet, /obj/item/stack/sheet/glass, @@ -55798,31 +52378,31 @@ /obj/item/storage/belt/utility, /turf/open/floor/plating, /area/maintenance/port/aft) -"cjI" = ( +"cfD" = ( /obj/item/storage/box, /turf/open/floor/plating, /area/maintenance/port/aft) -"cjJ" = ( +"cfE" = ( /obj/structure/closet/crate, /obj/item/reagent_containers/dropper, /turf/open/floor/plating, /area/maintenance/port/aft) -"cjK" = ( +"cfF" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/maintenance/port/aft) -"cjL" = ( +"cfG" = ( /obj/structure/closet/wardrobe/pjs, /turf/open/floor/plasteel/vault, /area/medical/sleeper) -"cjM" = ( +"cfH" = ( /obj/structure/closet/wardrobe/pjs, /obj/machinery/airalarm{ pixel_y = 24 }, /turf/open/floor/plasteel/vault, /area/medical/sleeper) -"cjN" = ( +"cfI" = ( /obj/machinery/computer/med_data, /obj/machinery/light{ dir = 1 @@ -55832,7 +52412,7 @@ }, /turf/open/floor/plasteel/vault, /area/medical/sleeper) -"cjO" = ( +"cfJ" = ( /obj/structure/table, /obj/item/folder/white{ pixel_x = 4; @@ -55855,7 +52435,7 @@ /obj/item/clothing/neck/stethoscope, /turf/open/floor/plasteel/vault, /area/medical/sleeper) -"cjP" = ( +"cfK" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -2; @@ -55867,7 +52447,7 @@ }, /turf/open/floor/plasteel/vault, /area/medical/sleeper) -"cjQ" = ( +"cfL" = ( /obj/item/storage/firstaid/regular{ pixel_x = 3; pixel_y = -3 @@ -55894,7 +52474,7 @@ dir = 10 }, /area/medical/storage) -"cjR" = ( +"cfM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -55902,7 +52482,7 @@ dir = 2 }, /area/medical/storage) -"cjS" = ( +"cfN" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -55917,13 +52497,13 @@ dir = 2 }, /area/medical/storage) -"cjT" = ( +"cfO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/whiteblue/side{ dir = 2 }, /area/medical/storage) -"cjU" = ( +"cfP" = ( /obj/item/storage/firstaid/regular{ pixel_x = 3; pixel_y = -3 @@ -55946,7 +52526,7 @@ dir = 6 }, /area/medical/storage) -"cjV" = ( +"cfQ" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -23 @@ -55956,7 +52536,7 @@ dir = 10 }, /area/medical/medbay/central) -"cjW" = ( +"cfR" = ( /obj/structure/chair/office/light{ dir = 4 }, @@ -55965,20 +52545,20 @@ dir = 6 }, /area/medical/medbay/central) -"cjX" = ( +"cfS" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, /obj/item/reagent_containers/food/drinks/britcup, /turf/open/floor/plasteel/whitegreen, /area/medical/medbay/central) -"cjY" = ( +"cfT" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/whiteblue, /area/medical/medbay/central) -"cjZ" = ( +"cfU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/sink{ dir = 4; @@ -55986,17 +52566,17 @@ }, /turf/open/floor/plasteel/whiteblue, /area/medical/medbay/central) -"cka" = ( +"cfV" = ( /obj/structure/sign/directions/medical{ pixel_y = -7 }, /turf/closed/wall, /area/medical/chemistry) -"ckb" = ( +"cfW" = ( /obj/structure/sign/departments/chemistry, /turf/closed/wall, /area/medical/chemistry) -"ckc" = ( +"cfX" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "chemistry_shutters"; @@ -56004,11 +52584,11 @@ }, /turf/open/floor/plating, /area/medical/chemistry) -"ckd" = ( +"cfY" = ( /obj/machinery/smartfridge/chemistry/preloaded, /turf/closed/wall, /area/medical/chemistry) -"cke" = ( +"cfZ" = ( /obj/structure/table/reinforced, /obj/item/folder/white{ pixel_x = 4; @@ -56032,10 +52612,10 @@ dir = 4 }, /area/medical/chemistry) -"ckf" = ( +"cga" = ( /turf/closed/wall, /area/medical/chemistry) -"ckg" = ( +"cgb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light{ dir = 8 @@ -56045,7 +52625,7 @@ dir = 8 }, /area/hallway/primary/aft) -"ckh" = ( +"cgc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/airalarm{ dir = 8; @@ -56055,10 +52635,10 @@ dir = 2 }, /area/hallway/primary/aft) -"cki" = ( +"cgd" = ( /turf/closed/wall/r_wall, /area/science/lab) -"ckj" = ( +"cge" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "research_shutters"; @@ -56066,7 +52646,7 @@ }, /turf/open/floor/plating, /area/science/lab) -"ckk" = ( +"cgf" = ( /obj/structure/table/reinforced, /obj/item/pen, /obj/item/folder/white{ @@ -56089,29 +52669,13 @@ }, /turf/open/floor/plating, /area/science/lab) -"ckl" = ( -/obj/machinery/autolathe{ - name = "public autolathe" - }, -/obj/machinery/door/window/eastright{ - dir = 2; - name = "Research and Development Desk"; - req_access_txt = "7" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters"; - name = "research shutters" - }, -/turf/open/floor/plasteel/whitepurple, -/area/science/lab) -"ckm" = ( +"cgg" = ( /obj/structure/sign/directions/science{ pixel_y = -8 }, /turf/closed/wall/r_wall, /area/science/lab) -"ckn" = ( +"cgh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, /obj/machinery/door/poddoor/preopen{ @@ -56121,7 +52685,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/science/research) -"cko" = ( +"cgi" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -56133,7 +52697,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/science/research) -"ckp" = ( +"cgj" = ( /obj/machinery/power/apc{ dir = 8; name = "Security Post - Research Division APC"; @@ -56145,11 +52709,11 @@ dir = 10 }, /area/security/checkpoint/science/research) -"ckq" = ( +"cgk" = ( /obj/structure/closet/secure_closet/security/science, /turf/open/floor/plasteel/red/side, /area/security/checkpoint/science/research) -"ckr" = ( +"cgl" = ( /obj/structure/filingcabinet, /obj/machinery/airalarm{ dir = 8; @@ -56159,7 +52723,7 @@ dir = 6 }, /area/security/checkpoint/science/research) -"cks" = ( +"cgm" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -56170,16 +52734,16 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"ckt" = ( +"cgn" = ( /obj/item/cigbutt, /turf/open/floor/plating{ icon_state = "platingdmg3" }, /area/maintenance/starboard/aft) -"cku" = ( +"cgo" = ( /turf/closed/wall/r_wall, /area/science/research) -"ckv" = ( +"cgp" = ( /obj/machinery/door/airlock/maintenance{ name = "Research Maintenance"; req_access_txt = "47"; @@ -56188,25 +52752,15 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/science/research) -"ckw" = ( +"cgq" = ( /turf/closed/wall/r_wall, /area/science/explab) -"ckx" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cky" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"ckz" = ( +"cgs" = ( /turf/open/floor/plating{ - icon_state = "platingdmg1" + icon_state = "platingdmg2" }, -/area/maintenance/starboard) -"ckA" = ( +/area/maintenance/starboard/aft) +"cgt" = ( /obj/machinery/power/apc{ dir = 8; name = "Incinerator APC"; @@ -56218,13 +52772,13 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"ckB" = ( +"cgu" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"ckC" = ( +"cgv" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-8" @@ -56234,40 +52788,33 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"ckD" = ( +"cgw" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 10 }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"ckE" = ( +"cgx" = ( /obj/structure/cable{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"ckF" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plasteel/floorgrime, -/area/maintenance/disposal/incinerator) -"ckG" = ( +"cgy" = ( +/obj/machinery/telecomms/server/presets/service, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cgz" = ( /turf/closed/wall/r_wall, /area/maintenance/disposal/incinerator) -"ckH" = ( +"cgA" = ( /obj/machinery/atmospherics/pipe/simple, /obj/machinery/meter, /obj/structure/grille, /turf/closed/wall/r_wall, /area/engine/atmos) -"ckI" = ( +"cgB" = ( /obj/machinery/atmospherics/pipe/simple, /obj/machinery/meter{ name = "Mixed Air Tank In" @@ -56275,7 +52822,7 @@ /obj/structure/grille, /turf/closed/wall/r_wall, /area/engine/atmos) -"ckJ" = ( +"cgC" = ( /obj/machinery/atmospherics/pipe/simple, /obj/machinery/meter{ name = "Mixed Air Tank Out" @@ -56283,7 +52830,7 @@ /obj/structure/grille, /turf/closed/wall/r_wall, /area/engine/atmos) -"ckK" = ( +"cgD" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -56292,7 +52839,7 @@ }, /turf/open/floor/plating, /area/engine/atmos) -"ckL" = ( +"cgE" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -56301,31 +52848,39 @@ }, /turf/open/floor/plating, /area/engine/atmos) -"ckM" = ( -/obj/structure/cable{ - icon_state = "1-2" +"cgF" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"ckN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 28 + }, +/obj/structure/reagent_dispensers/cooking_oil, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"cgG" = ( /obj/structure/closet/emcloset/anchored, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"ckO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, +"cgH" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, -/area/maintenance/port/aft) -"ckP" = ( +/area/maintenance/port) +"cgI" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -56340,7 +52895,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"ckQ" = ( +"cgJ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -56351,37 +52906,8 @@ dir = 4 }, /turf/open/floor/plating, -/area/maintenance/port/aft) -"ckR" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ckS" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ckT" = ( +/area/maintenance/aft) +"cgL" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -56399,7 +52925,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"ckU" = ( +"cgM" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -56407,8 +52933,8 @@ dir = 4 }, /turf/open/floor/plating, -/area/maintenance/port/aft) -"ckV" = ( +/area/maintenance/aft) +"cgN" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -56419,8 +52945,8 @@ dir = 4 }, /turf/open/floor/plating, -/area/maintenance/port/aft) -"ckW" = ( +/area/maintenance/aft) +"cgO" = ( /obj/machinery/door/airlock/maintenance{ name = "Medbay Maintenance"; req_access_txt = "5" @@ -56433,7 +52959,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"ckX" = ( +"cgP" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -56444,7 +52970,7 @@ dir = 9 }, /area/medical/sleeper) -"ckY" = ( +"cgQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -56455,7 +52981,7 @@ dir = 1 }, /area/medical/sleeper) -"ckZ" = ( +"cgR" = ( /obj/structure/chair/office/light{ dir = 1 }, @@ -56470,7 +52996,7 @@ dir = 1 }, /area/medical/sleeper) -"cla" = ( +"cgS" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -56484,7 +53010,7 @@ dir = 1 }, /area/medical/sleeper) -"clb" = ( +"cgT" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -56500,7 +53026,7 @@ dir = 5 }, /area/medical/sleeper) -"clc" = ( +"cgU" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical/glass{ id_tag = null; @@ -56509,7 +53035,7 @@ }, /turf/open/floor/plasteel/whiteblue, /area/medical/storage) -"cld" = ( +"cgV" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -56517,7 +53043,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/medical/storage) -"cle" = ( +"cgW" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/airlock/medical/glass{ @@ -56527,7 +53053,7 @@ }, /turf/open/floor/plasteel/whiteblue, /area/medical/storage) -"clf" = ( +"cgX" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/medical/glass{ @@ -56537,12 +53063,12 @@ }, /turf/open/floor/plasteel/whiteblue, /area/medical/medbay/central) -"clg" = ( +"cgY" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/medical/medbay/central) -"clh" = ( +"cgZ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -56555,7 +53081,7 @@ }, /turf/open/floor/plasteel/whiteblue, /area/medical/medbay/central) -"cli" = ( +"cha" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical/glass{ @@ -56565,7 +53091,7 @@ }, /turf/open/floor/plasteel/whiteblue, /area/medical/medbay/central) -"clj" = ( +"chb" = ( /obj/machinery/chem_heater, /obj/machinery/light_switch{ pixel_x = -23 @@ -56574,14 +53100,14 @@ dir = 9 }, /area/medical/chemistry) -"clk" = ( +"chc" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /turf/open/floor/plasteel/whiteyellow/side{ dir = 5 }, /area/medical/chemistry) -"cll" = ( +"chd" = ( /obj/item/reagent_containers/glass/beaker/large, /obj/item/reagent_containers/glass/beaker/large, /obj/item/reagent_containers/glass/beaker{ @@ -56599,7 +53125,7 @@ dir = 4 }, /area/medical/chemistry) -"clm" = ( +"che" = ( /obj/structure/chair/office/light{ dir = 1 }, @@ -56608,7 +53134,7 @@ dir = 4 }, /area/medical/chemistry) -"cln" = ( +"chf" = ( /obj/machinery/chem_dispenser{ layer = 2.7 }, @@ -56623,19 +53149,19 @@ dir = 4 }, /area/medical/chemistry) -"clo" = ( +"chg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/neutral/corner{ dir = 8 }, /area/hallway/primary/aft) -"clp" = ( +"chh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/neutral/corner{ dir = 2 }, /area/hallway/primary/aft) -"clq" = ( +"chi" = ( /obj/structure/table, /obj/item/crowbar, /obj/item/wrench, @@ -56653,7 +53179,7 @@ }, /turf/open/floor/plasteel, /area/science/lab) -"clr" = ( +"chj" = ( /obj/structure/sink/kitchen{ desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; @@ -56663,21 +53189,12 @@ dir = 9 }, /area/science/lab) -"cls" = ( +"chk" = ( /turf/open/floor/plasteel/whitepurple/side{ dir = 1 }, /area/science/lab) -"clt" = ( -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/lab) -"clu" = ( +"chm" = ( /obj/machinery/button/door{ id = "research_shutters"; name = "research shutters control"; @@ -56688,40 +53205,18 @@ dir = 5 }, /area/science/lab) -"clv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - cyclelinkeddir = 2; - id_tag = "ResearchExt"; - name = "Research Division"; - req_access_txt = "0"; - req_one_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"clw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - cyclelinkeddir = 2; - id_tag = "ResearchExt"; - name = "Research Division"; - req_access_txt = "0"; - req_one_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"clx" = ( +"chn" = ( +/obj/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cho" = ( +/obj/machinery/telecomms/server/presets/supply, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"chp" = ( /turf/closed/wall/r_wall, /area/security/checkpoint/science/research) -"cly" = ( +"chq" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Security Post - Research Division"; @@ -56729,7 +53224,7 @@ }, /turf/open/floor/plasteel/red, /area/security/checkpoint/science/research) -"clz" = ( +"chr" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -56739,9 +53234,10 @@ }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"clA" = ( +"chs" = ( /obj/item/paper, /obj/structure/sign/map/left{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; @@ -56757,7 +53253,7 @@ dir = 5 }, /area/science/research) -"clB" = ( +"cht" = ( /obj/structure/sign/map/right{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; @@ -56769,7 +53265,7 @@ dir = 5 }, /area/science/research) -"clC" = ( +"chu" = ( /obj/machinery/ai_status_display{ pixel_y = 32 }, @@ -56778,28 +53274,20 @@ dir = 5 }, /area/science/research) -"clD" = ( +"chv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/cafeteria{ dir = 5 }, /area/science/research) -"clE" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"clF" = ( +"chw" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/bridge/showroom/corporate) +"chx" = ( /turf/open/floor/engine, /area/science/explab) -"clG" = ( +"chy" = ( /obj/structure/sign/warning/nosmoking{ pixel_y = 32 }, @@ -56813,13 +53301,20 @@ }, /turf/open/floor/engine, /area/science/explab) -"clH" = ( +"chz" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"chA" = ( /obj/item/device/radio/intercom{ pixel_y = 25 }, /turf/open/floor/engine, /area/science/explab) -"clI" = ( +"chB" = ( /obj/machinery/space_heater, /obj/effect/landmark/blobstart, /obj/effect/turf_decal/stripes/line{ @@ -56827,7 +53322,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"clJ" = ( +"chC" = ( /obj/structure/closet/crate, /obj/item/storage/belt/utility, /obj/item/stack/cable_coil/random, @@ -56837,7 +53332,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"clK" = ( +"chD" = ( /obj/structure/closet/crate{ icon_state = "crateopen" }, @@ -56848,14 +53343,14 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"clL" = ( +"chE" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/starboard) -"clM" = ( +"chF" = ( /obj/structure/closet, /obj/item/device/flashlight, /obj/effect/spawner/lootdrop/maintenance, @@ -56864,7 +53359,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"clN" = ( +"chG" = ( /obj/structure/reagent_dispensers/fueltank, /obj/item/storage/toolbox/emergency, /obj/item/device/radio/intercom{ @@ -56873,7 +53368,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"clO" = ( +"chH" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/extinguisher, /obj/machinery/light/small, @@ -56882,7 +53377,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"clP" = ( +"chI" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/components/binary/valve{ dir = 2; @@ -56890,7 +53385,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"clQ" = ( +"chJ" = ( /obj/structure/extinguisher_cabinet{ pixel_y = -31 }, @@ -56900,14 +53395,14873 @@ /obj/machinery/portable_atmospherics/canister, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"clR" = ( +"chL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) +"chM" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Aft"; + dir = 2; + network = list("MiniSat") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/aisat) +"chN" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "n2_in" + }, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"chO" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "n2_sensor" + }, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"chP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 1; + frequency = 1441; + id_tag = "n2_out"; + name = "n2 out" + }, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"chQ" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "o2_in" + }, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"chR" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "o2_sensor" + }, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"chS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 1; + frequency = 1441; + id_tag = "o2_out"; + name = "o2 out" + }, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"chT" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "air_in" + }, +/turf/open/floor/engine/air, +/area/engine/atmos) +"chU" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "air_sensor" + }, +/turf/open/floor/engine/air, +/area/engine/atmos) +"chV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/on{ + dir = 1; + frequency = 1441; + id_tag = "air_out"; + name = "air out" + }, +/turf/open/floor/engine/air, +/area/engine/atmos) +"chW" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/engine/atmos) +"chX" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/engine/atmos) +"chY" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"chZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cia" = ( +/turf/closed/wall, +/area/medical/surgery) +"cib" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/medical/surgery) +"cic" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/surgery) +"cid" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cie" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/sleeper) +"cif" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"cig" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"cih" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"cii" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/sleeper) +"cij" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/whiteblue, +/area/medical/sleeper) +"cik" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 9 + }, +/area/medical/medbay/central) +"cil" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/medbay/central) +"cim" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/medbay/central) +"cin" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/medbay/central) +"cio" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cip" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Medbay Central APC"; + areastring = "/area/medical/medbay/central"; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Medbay Hallway Fore"; + dir = 2; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"ciq" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/medbay/central) +"cir" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cis" = ( +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Exit Button"; + normaldoorcontrol = 1; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"cit" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/medbay/central) +"ciu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/medbay/central) +"civ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + id_tag = null; + name = "Chemistry Lab"; + req_access_txt = "5; 33" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"ciw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 8 + }, +/area/medical/chemistry) +"cix" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whiteyellow/corner{ + dir = 4 + }, +/area/medical/chemistry) +"ciy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 1 + }, +/area/medical/chemistry) +"ciz" = ( +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 5 + }, +/area/medical/chemistry) +"ciA" = ( +/obj/machinery/chem_master, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/noticeboard{ + desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; + name = "requests board"; + pixel_x = 32 + }, +/turf/open/floor/plasteel/whiteyellow{ + dir = 4 + }, +/area/medical/chemistry) +"ciB" = ( +/obj/machinery/rnd/destructive_analyzer, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"ciC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"ciD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/rnd/protolathe/department/science, +/turf/open/floor/plasteel, +/area/science/lab) +"ciE" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"ciF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/science/lab) +"ciG" = ( +/obj/machinery/disposal/bin{ + pixel_x = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 4 + }, +/area/science/lab) +"ciH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ciI" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ciJ" = ( +/obj/machinery/power/apc/highcap/ten_k{ + dir = 1; + name = "Research Division APC"; + areastring = "/area/science/research"; + pixel_y = 25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/camera{ + c_tag = "Research Division - Airlock"; + dir = 2; + network = list("SS13","RD") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ciK" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research) +"ciL" = ( +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ciM" = ( +/obj/effect/landmark/blobstart, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/cigbutt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ciN" = ( +/obj/structure/chair/stool, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"ciO" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"ciP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"ciQ" = ( +/obj/item/cigbutt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"ciR" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/vending/cola/random, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"ciS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/mob/living/simple_animal/pet/dog/pug{ + desc = "It's Pugley IV, the research department's lovable pug clone. Hopefully nothing happens to this one - fourth time lucky!"; + name = "Pugley IV"; + real_name = "Pugley IV" + }, +/turf/open/floor/engine, +/area/science/explab) +"ciT" = ( +/obj/item/device/radio/beacon, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/engine, +/area/science/explab) +"ciU" = ( +/obj/machinery/rnd/experimentor, +/turf/open/floor/engine, +/area/science/explab) +"ciV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/explab) +"ciW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/engine, +/area/science/explab) +"ciX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"ciY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"ciZ" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 2 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"cja" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/public/glass{ + autoclose = 0; + frequency = 1449; + heat_proof = 1; + id_tag = "incinerator_airlock_interior"; + name = "Incinerator Interior Airlock"; + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"cjb" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"cjc" = ( +/turf/open/floor/engine/n2, +/area/engine/atmos) +"cjd" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"cje" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - N2"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"cjf" = ( +/turf/open/floor/engine/o2, +/area/engine/atmos) +"cjg" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"cjh" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - O2"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"cji" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/engine/air, +/area/engine/atmos) +"cjj" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/engine/air, +/area/engine/atmos) +"cjk" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - Air"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/engine/air, +/area/engine/atmos) +"cjl" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"cjm" = ( +/obj/machinery/door/airlock/atmos/glass{ + heat_proof = 1; + name = "Auxiliary Chamber"; + req_access_txt = "24" + }, +/turf/open/floor/plating, +/area/engine/atmos) +"cjn" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"cjo" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating/airless, +/area/engine/atmos) +"cjp" = ( +/obj/machinery/vending/boozeomat, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cjq" = ( +/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/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/maintenance/port/aft) +"cjr" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cjs" = ( +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/structure/table/wood, +/obj/structure/light_construct/small{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cjt" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cjv" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cjw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cjx" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cjy" = ( +/obj/item/cigbutt, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cjz" = ( +/obj/structure/chair, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cjA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cjB" = ( +/obj/item/cigbutt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cjC" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cjD" = ( +/obj/structure/chair, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cjE" = ( +/obj/structure/bed/roller, +/obj/item/device/radio/intercom{ + broadcasting = 1; + freerange = 0; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_x = -30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/machinery/camera{ + c_tag = "Medbay Sleepers"; + dir = 4; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 10 + }, +/area/medical/sleeper) +"cjF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/sleeper) +"cjG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"cjH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 2 + }, +/area/medical/sleeper) +"cjI" = ( +/obj/structure/bed/roller, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 6 + }, +/area/medical/sleeper) +"cjJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/whiteblue, +/area/medical/sleeper) +"cjK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/medbay/central) +"cjL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cjM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cjN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cjO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cjP" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cjQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cjR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/turf/open/floor/plasteel/whiteyellow/corner{ + dir = 2 + }, +/area/medical/medbay/central) +"cjS" = ( +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/storage/pill_bottle/epinephrine{ + pixel_x = 3 + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 8 + }, +/area/medical/chemistry) +"cjT" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cjU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cjV" = ( +/obj/machinery/smoke_machine, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 4 + }, +/area/medical/chemistry) +"cjW" = ( +/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/structure/table/glass, +/turf/open/floor/plasteel/whiteyellow{ + dir = 4 + }, +/area/medical/chemistry) +"cjX" = ( +/obj/machinery/computer/rdconsole/core{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/lab) +"cjY" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/lab) +"cjZ" = ( +/obj/item/reagent_containers/glass/beaker/sulphuric, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/rnd/circuit_imprinter/department/science, +/turf/open/floor/plasteel, +/area/science/lab) +"cka" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"ckb" = ( +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"ckc" = ( +/obj/structure/table, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/micro_laser, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/clothing/glasses/science, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"ckd" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/lab) +"cke" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ckf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ckg" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ckh" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"cki" = ( +/obj/item/storage/toolbox/emergency, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckj" = ( +/obj/machinery/light/small, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/device/flashlight, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckl" = ( +/obj/item/stack/packageWrap, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckm" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/item/cigbutt, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"ckn" = ( +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"cko" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"ckp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"ckq" = ( +/obj/machinery/vending/coffee, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"ckr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/engine, +/area/science/explab) +"cks" = ( +/obj/machinery/button/door{ + id = "telelab"; + name = "Test Chamber Blast Doors"; + pixel_y = -25 + }, +/turf/open/floor/engine, +/area/science/explab) +"ckt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/engine, +/area/science/explab) +"cku" = ( +/obj/structure/closet, +/obj/item/storage/box/donkpockets, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckv" = ( +/obj/structure/closet/crate, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/item/device/assembly/infra, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckw" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/item/shard, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckx" = ( +/obj/structure/table, +/obj/structure/sign/departments/medbay{ + pixel_y = 32 + }, +/obj/item/reagent_containers/glass/beaker/large, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cky" = ( +/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/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckz" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckA" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/syringe, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckB" = ( +/obj/item/reagent_containers/glass/bottle/toxin{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/reagentgrinder{ + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckC" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + name = "Incinerator Output Pump"; + on = 1; + use_power = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/space, +/area/maintenance/disposal/incinerator) +"ckD" = ( +/obj/machinery/doorButtons/access_button{ + idDoor = "incinerator_airlock_exterior"; + layer = 3.1; + idSelf = "incinerator_access_control"; + name = "Incinerator airlock control"; + pixel_x = 8; + pixel_y = -24 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/warning/fire{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + on = 1 + }, +/obj/machinery/doorButtons/access_button{ + idDoor = "incinerator_airlock_interior"; + idSelf = "incinerator_access_control"; + name = "Incinerator airlock control"; + pixel_x = 8; + pixel_y = 24 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"ckE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"ckF" = ( +/obj/structure/sign/warning/fire{ + pixel_x = 32 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"ckG" = ( +/obj/machinery/light/small, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"ckH" = ( +/obj/machinery/light/small, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"ckI" = ( +/turf/open/floor/engine/air, +/area/engine/atmos) +"ckJ" = ( +/obj/machinery/light/small, +/turf/open/floor/engine/air, +/area/engine/atmos) +"ckK" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"ckL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"ckM" = ( +/obj/structure/girder, +/turf/open/floor/plating/airless, +/area/engine/atmos) +"ckN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ckO" = ( +/obj/structure/closet/secure_closet/bar{ + pixel_x = -3; + pixel_y = -1; + req_access_txt = "25" + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"ckP" = ( +/turf/open/floor/wood, +/area/maintenance/port/aft) +"ckQ" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/port/aft) +"ckR" = ( +/obj/item/reagent_containers/glass/rag, +/obj/structure/table/wood, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/maintenance/port/aft) +"ckS" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/maintenance/port/aft) +"ckT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"ckU" = ( +/obj/structure/chair, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"ckV" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"ckW" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"ckX" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"ckY" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"ckZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Observation"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cla" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"clb" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"clc" = ( +/obj/item/cigbutt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 28 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cld" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue, +/area/medical/sleeper) +"cle" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 10 + }, +/area/medical/sleeper) +"clf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 2 + }, +/area/medical/sleeper) +"clg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 6 + }, +/area/medical/sleeper) +"clh" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue, +/area/medical/sleeper) +"cli" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"clj" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"clk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cll" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"clm" = ( +/obj/item/device/radio/intercom{ + broadcasting = 1; + freerange = 0; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_y = -30 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cln" = ( +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 2 + }, +/area/medical/medbay/central) +"clo" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 2 + }, +/area/medical/medbay/central) +"clp" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"clq" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/whiteyellow/corner{ + dir = 2 + }, +/area/medical/medbay/central) +"clr" = ( +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 6 + }, +/area/medical/medbay/central) +"cls" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastright{ + name = "Chemistry Desk"; + req_access_txt = "5; 33" + }, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Chemistry Desk"; + req_access_txt = "5" + }, +/obj/item/reagent_containers/glass/bottle/morphine, +/obj/item/reagent_containers/glass/bottle/toxin{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 8 + }, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = -5 + }, +/obj/item/reagent_containers/syringe/epinephrine, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"clt" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 8 + }, +/area/medical/chemistry) +"clu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"clv" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 4 + }, +/area/medical/chemistry) +"clw" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_y = 2 + }, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/screwdriver{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/device/radio/headset/headset_med, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/whiteyellow{ + dir = 4 + }, +/area/medical/chemistry) +"clx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cly" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway - Fore"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"clz" = ( +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/item/clothing/glasses/welding, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"clA" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/lab) +"clB" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/white, +/area/science/lab) +"clC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/white, +/area/science/lab) +"clD" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"clE" = ( +/obj/structure/table, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/scanning_module, +/obj/item/stock_parts/scanning_module, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 30 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"clF" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"clG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"clH" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/research) +"clI" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"clJ" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Research Division" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"clK" = ( +/turf/closed/wall/r_wall, +/area/maintenance/aft) +"clL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/item/storage/box/lights/mixed, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"clN" = ( +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"clO" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"clP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"clQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/noticeboard{ + pixel_y = -32 + }, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Research Division - Break Room"; + dir = 1; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"clR" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) "clS" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/science/explab) +"clT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/science/explab) +"clU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/turf/open/floor/plating, +/area/science/explab) +"clV" = ( +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/engine, +/area/science/explab) +"clW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"clX" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + locked = 0; + name = "Storage Room"; + req_access_txt = "0"; + req_one_access_txt = "12;47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"clY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"clZ" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cma" = ( +/obj/structure/rack, +/obj/item/clothing/suit/apron, +/obj/item/clothing/mask/surgical, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cmb" = ( +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo"; + pixel_x = -4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cmc" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/space, +/area/space/nearstation) +"cmd" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/public/glass{ + autoclose = 0; + frequency = 1449; + heat_proof = 1; + id_tag = "incinerator_airlock_exterior"; + name = "Incinerator Exterior Airlock"; + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"cme" = ( +/obj/item/stack/rods{ + amount = 25 + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"cmf" = ( +/turf/open/floor/plating/airless, +/area/engine/atmos) +"cmg" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/glass/beaker/cryoxadone, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/dropper, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cmh" = ( +/obj/item/reagent_containers/food/drinks/ale, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cmi" = ( +/obj/structure/light_construct/small{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 30 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cmk" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/surgery) +"cml" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/medical/surgery) +"cmm" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/medical/surgery) +"cmn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Observation"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/medical/surgery) +"cmo" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/medical/sleeper) +"cmp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"cmr" = ( +/obj/machinery/door/firedoor, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cms" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cmt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cmu" = ( +/turf/closed/wall, +/area/crew_quarters/heads/cmo) +"cmv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"cmw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"cmx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"cmy" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/medical/medbay/central) +"cmz" = ( +/obj/machinery/reagentgrinder, +/obj/machinery/requests_console{ + department = "Chemistry"; + departmentType = 2; + pixel_x = -30; + receive_ore_updates = 1 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 8 + }, +/area/medical/chemistry) +"cmA" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cmB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cmC" = ( +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/structure/table/glass, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 4 + }, +/area/medical/chemistry) +"cmD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/departments/chemistry{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cmE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/departments/science{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/purple/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"cmF" = ( +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/lab) +"cmG" = ( +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/structure/table, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cmH" = ( +/obj/structure/table, +/obj/structure/disposalpipe/segment, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/disk/tech_disk, +/obj/item/disk/tech_disk, +/obj/item/disk/design_disk, +/obj/item/disk/design_disk, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cmI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cmJ" = ( +/obj/machinery/camera{ + c_tag = "Research and Development"; + dir = 8; + network = list("SS13","RD") + }, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stock_parts/scanning_module{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/stock_parts/scanning_module, +/turf/open/floor/plasteel, +/area/science/lab) +"cmK" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/dark, +/area/aisat) +"cmL" = ( +/obj/machinery/door/window/westleft{ + dir = 2; + name = "Research Division Deliveries"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"cmM" = ( +/obj/machinery/door/airlock{ + name = "Research Emergency Storage"; + req_access_txt = "0"; + req_one_access_txt = "47" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cmN" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/medical{ + name = "Research Break Room"; + req_access_txt = "0"; + req_one_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"cmO" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/window/reinforced/tinted/fulltile, +/turf/open/floor/plating, +/area/science/research) +"cmP" = ( +/turf/closed/wall, +/area/science/explab) +"cmQ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_y = 30; + receive_ore_updates = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cmR" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/pen, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cmS" = ( +/obj/structure/table/reinforced, +/obj/item/hand_labeler, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/device/taperecorder, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cmT" = ( +/obj/machinery/computer/rdconsole/experiment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cmU" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/book/manual/experimentor, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cmV" = ( +/obj/machinery/button/door{ + id = "telelab"; + name = "Test Chamber Blast Doors"; + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/reagent_containers/dropper, +/obj/item/stack/medical/bruise_pack{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/stack/medical/ointment, +/obj/item/device/healthanalyzer, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cmW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cmX" = ( +/obj/structure/window/reinforced, +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/aisat) +"cmY" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cmZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cna" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/white, +/obj/item/clothing/head/soft/mime, +/obj/item/clothing/under/color/white, +/obj/item/clothing/head/soft/mime, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/mask/surgical, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cnb" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/aft) +"cnc" = ( +/obj/machinery/chem_heater, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cnd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon{ + dir = 1; + name = "incinerator output intake" + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cne" = ( +/obj/machinery/igniter{ + icon_state = "igniter0"; + id = "Incinerator"; + luminosity = 2; + on = 0 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cnf" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "air_in" + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cng" = ( +/obj/machinery/door/poddoor{ + id = "auxincineratorvent"; + name = "Incineration Chamber Vent" + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cnh" = ( +/obj/item/device/flashlight/lamp, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cni" = ( +/obj/item/reagent_containers/food/drinks/bottle/tequila, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cnj" = ( +/obj/item/reagent_containers/food/drinks/beer, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cnk" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/maintenance/port/aft) +"cnl" = ( +/obj/structure/mineral_door/wood{ + name = "The Gobbetting Barmaid" + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cnm" = ( +/obj/structure/table, +/obj/item/hemostat, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"cnn" = ( +/obj/structure/table, +/obj/item/surgicaldrill, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/surgery) +"cno" = ( +/obj/structure/table, +/obj/item/scalpel{ + pixel_y = 12 + }, +/obj/item/circular_saw, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/surgery) +"cnp" = ( +/obj/structure/table, +/obj/item/cautery{ + pixel_x = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/razor{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/surgery) +"cnq" = ( +/obj/structure/table, +/obj/item/retractor, +/turf/open/floor/plasteel, +/area/medical/surgery) +"cnr" = ( +/obj/machinery/computer/med_data{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/surgery) +"cns" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/surgery) +"cnt" = ( +/obj/structure/table/reinforced, +/obj/item/device/radio/intercom{ + broadcasting = 1; + freerange = 0; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_x = 30 + }, +/obj/structure/bedsheetbin{ + pixel_x = 2 + }, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/item/gun/syringe, +/obj/item/clothing/glasses/eyepatch, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/surgery) +"cnu" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Cryogenics APC"; + areastring = "/area/medical/cryo"; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/reagent_containers/dropper, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/cryo) +"cnv" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/closet/secure_closet/medical1{ + pixel_x = -3 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"cnw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cnx" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cny" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cnz" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/cryo) +"cnA" = ( +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"cnB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cnC" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cnD" = ( +/obj/item/cartridge/medical{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/cartridge/medical{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/cartridge/medical, +/obj/item/cartridge/chemistry{ + pixel_y = 2 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cnE" = ( +/obj/item/folder/blue, +/obj/structure/table/glass, +/obj/item/stamp/cmo, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cnF" = ( +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/clothing/glasses/hud/health, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cnG" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/item/storage/secure/safe{ + pixel_x = 5; + pixel_y = 26 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 30 + }, +/obj/item/screwdriver{ + pixel_y = 6 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cnH" = ( +/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") + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 10 + }, +/area/medical/chemistry) +"cnI" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whiteyellow/corner{ + dir = 8 + }, +/area/medical/chemistry) +"cnJ" = ( +/obj/machinery/disposal/bin{ + pixel_x = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cnK" = ( +/obj/machinery/chem_dispenser{ + layer = 2.7 + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 4 + }, +/area/medical/chemistry) +"cnL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters_2"; + name = "chemistry shutters" + }, +/turf/open/floor/plating, +/area/medical/chemistry) +"cnM" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/floor/plasteel/yellow{ + dir = 4 + }, +/area/hallway/primary/aft) +"cnN" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/hallway/primary/aft) +"cnO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cnP" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/purple/side{ + dir = 4 + }, +/area/hallway/primary/aft) +"cnQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/purple, +/area/hallway/primary/aft) +"cnR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters_2"; + name = "research shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/lab) +"cnS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/lab) +"cnT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cnU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cnV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cnW" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/lab) +"cnX" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/science/lab) +"cnY" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 9 + }, +/area/science/research) +"cnZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/research) +"coa" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"cob" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Research Division Hallway - Central"; + dir = 2; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"coc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cod" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 29 + }, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/science/research) +"coe" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/science/research) +"cof" = ( +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/science/research) +"cog" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/research) +"coh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/research) +"coi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"coj" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 2 + }, +/area/science/research) +"cok" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/explab) +"col" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"com" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"con" = ( +/obj/effect/landmark/start/scientist, +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"coo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/science, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cop" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/science/explab) +"coq" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cor" = ( +/obj/structure/girder, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cos" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 6 + }, +/obj/item/pen, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cot" = ( +/obj/structure/table, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cou" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cov" = ( +/obj/structure/bed, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cow" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/rnd/protolathe/department/service, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"cox" = ( +/obj/structure/mineral_door/wood{ + name = "The Gobbetting Barmaid" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/maintenance/port/aft) +"coy" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/suit/apron/surgical, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/surgery) +"coz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"coA" = ( +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"coB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"coC" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Surgery APC"; + areastring = "/area/medical/surgery"; + pixel_x = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/table, +/obj/item/surgical_drapes, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/surgery) +"coD" = ( +/obj/structure/bed/roller, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"coE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"coF" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/bedsheet/medical, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"coG" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/surgery) +"coH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/cryo) +"coI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"coJ" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"coK" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 2 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel, +/area/medical/cryo) +"coL" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"coM" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/cryo) +"coN" = ( +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/medbay/central) +"coO" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"coP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"coQ" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/chief_medical_officer, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"coR" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/mob/living/simple_animal/pet/cat/Runtime, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"coS" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "CMO's Office APC"; + areastring = "/area/crew_quarters/heads/cmo"; + pixel_x = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/camera{ + c_tag = "CMO's Office"; + dir = 8; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"coT" = ( +/obj/structure/closet/wardrobe/chemistry_white{ + pixel_x = -3 + }, +/obj/item/storage/backpack/satchel/chem, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"coU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 8 + }, +/area/medical/chemistry) +"coV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"coW" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 4 + }, +/area/medical/chemistry) +"coX" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Chemistry Desk"; + req_access_txt = "5; 33" + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters_2"; + name = "chemistry shutters" + }, +/turf/open/floor/plasteel/whiteyellow{ + dir = 4 + }, +/area/medical/chemistry) +"coY" = ( +/turf/open/floor/plasteel/yellow{ + dir = 4 + }, +/area/hallway/primary/aft) +"coZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/hallway/primary/aft) +"cpa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/purple/side{ + dir = 4 + }, +/area/hallway/primary/aft) +"cpb" = ( +/turf/open/floor/plasteel/purple, +/area/hallway/primary/aft) +"cpc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + dir = 4; + name = "Research and Development Desk"; + req_access_txt = "7" + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/door/firedoor, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters_2"; + name = "research shutters" + }, +/turf/open/floor/plating, +/area/science/lab) +"cpd" = ( +/obj/effect/landmark/start/scientist, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/lab) +"cpe" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cpf" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cpg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cph" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 4 + }, +/area/science/lab) +"cpj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/research) +"cpk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpl" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpm" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpo" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpt" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpw" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 4 + }, +/area/science/research) +"cpx" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Experimentation Lab"; + req_access_txt = "8" + }, +/turf/open/floor/plasteel/whitepurple{ + dir = 4 + }, +/area/science/explab) +"cpy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/explab) +"cpz" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cpA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cpB" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cpC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cpD" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cpE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cpF" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Experimentation Lab Maintenance"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cpG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cpH" = ( +/obj/structure/bed/roller, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cpI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"cpJ" = ( +/obj/structure/barricade/wooden, +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cpK" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cpL" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/structure/rack, +/obj/item/storage/firstaid/regular, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/ointment, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cpM" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/space, +/area/space/nearstation) +"cpN" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/maintenance/disposal/incinerator) +"cpO" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/aisat) +"cpP" = ( +/obj/structure/lattice/catwalk, +/obj/item/wrench, +/turf/open/space, +/area/space/nearstation) +"cpQ" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/port/aft) +"cpR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Port"; + dir = 8; + network = list("SS13","Engine") + }, +/obj/machinery/airalarm/engine{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"cpS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cpT" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Surgery Maintenance"; + req_access_txt = "45" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cpU" = ( +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cpW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cpX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre"; + req_access_txt = "45" + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cpY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cpZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cqa" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cqb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Surgery Observation"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cqc" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/cryo) +"cqd" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"cqe" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cqf" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cqg" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cqh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cqi" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/medbay/central) +"cqj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cqk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "privacy shutter" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"cql" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cqm" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cqn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cqo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cqp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "CMO Maintenance"; + req_access_txt = "40" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cqq" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cqr" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Chemistry APC"; + areastring = "/area/medical/chemistry"; + pixel_x = -24 + }, +/obj/structure/closet/secure_closet/chemical{ + pixel_x = -3 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cqs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 10 + }, +/area/medical/chemistry) +"cqt" = ( +/obj/machinery/chem_heater{ + pixel_x = 4 + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 2 + }, +/area/medical/chemistry) +"cqu" = ( +/obj/machinery/chem_master, +/obj/structure/noticeboard{ + desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; + dir = 1; + name = "requests board"; + pixel_y = -32 + }, +/obj/machinery/button/door{ + id = "chemistry_shutters_2"; + name = "chemistry shutters control"; + pixel_x = 26; + pixel_y = -26; + req_access_txt = "5; 33" + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 6 + }, +/area/medical/chemistry) +"cqv" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/floor/plasteel/purple, +/area/hallway/primary/aft) +"cqw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters_2"; + name = "research shutters" + }, +/turf/open/floor/plating, +/area/science/lab) +"cqx" = ( +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Research Lab APC"; + areastring = "/area/science/lab"; + pixel_y = -26 + }, +/obj/structure/cable/yellow, +/obj/structure/table, +/obj/machinery/button/door{ + id = "research_shutters_2"; + name = "research shutters control"; + pixel_x = -26; + pixel_y = -26; + req_access_txt = "7" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cqy" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cqz" = ( +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_y = -30; + receive_ore_updates = 1 + }, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cqA" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + dir = 1; + name = "Research and Development Deliveries"; + req_access_txt = "7" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/lab) +"cqB" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cqC" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"cqD" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqG" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Research Division Hallway - Starboard"; + dir = 1; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqL" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqN" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 2 + }, +/area/science/research) +"cqO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 6 + }, +/area/science/research) +"cqP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/science/explab) +"cqQ" = ( +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/explab) +"cqR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Experimentation Lab APC"; + areastring = "/area/science/explab"; + pixel_y = -24 + }, +/obj/structure/cable/yellow, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cqS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/machinery/camera{ + c_tag = "Experimentation Lab"; + dir = 1; + network = list("SS13","RD") + }, +/obj/machinery/light, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cqT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cqU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cqV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cqW" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cqX" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cqY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cqZ" = ( +/obj/structure/barricade/wooden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cra" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"crb" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"crc" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/space, +/area/space/nearstation) +"crd" = ( +/obj/structure/disposaloutlet{ + dir = 2 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"cre" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"crf" = ( +/obj/machinery/door/poddoor{ + id = "turbinevent"; + name = "Turbine Vent" + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"crg" = ( +/obj/item/toy/cards/deck, +/obj/structure/table/wood/poker, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"crh" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/maintenance/port/aft) +"crj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/light_switch{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/surgery) +"crk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"crl" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"crm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"crn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/surgery) +"cro" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"crq" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/light_switch{ + pixel_x = 26 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"crr" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/cryo) +"crs" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/machinery/camera{ + c_tag = "Medbay Cryo"; + dir = 1; + network = list("SS13","Medbay") + }, +/obj/item/screwdriver{ + pixel_y = 6 + }, +/obj/item/clothing/neck/stethoscope, +/obj/item/wrench/medical, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"crt" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + freerange = 0; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_y = -30 + }, +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cru" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Connector Port (Air Supply)" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"crv" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Connector Port (Air Supply)" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"crw" = ( +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"crx" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 2 + }, +/area/medical/medbay/central) +"cry" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"crz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"crA" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/storage/secure/briefcase, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"crB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"crC" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/keycard_auth{ + pixel_x = 26; + pixel_y = -7 + }, +/obj/machinery/computer/med_data/laptop, +/obj/structure/table/glass, +/obj/machinery/button/door{ + id = "cmoprivacy"; + name = "Privacy Shutters Control"; + pixel_x = 26; + pixel_y = 4 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"crD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"crE" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chemistry Lab Maintenance"; + req_access_txt = "5; 33" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"crF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -29 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/aft) +"crG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"crH" = ( +/obj/machinery/power/apc/highcap/five_k{ + dir = 4; + name = "Aft Hallway APC"; + areastring = "/area/hallway/primary/aft"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/purple/corner{ + dir = 4 + }, +/area/hallway/primary/aft) +"crI" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Research and Development" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/lab) +"crJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"crK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white/side{ + dir = 5 + }, +/area/science/research) +"crL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/science/research) +"crM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/science/research) +"crN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"crO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"crP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"crQ" = ( +/turf/closed/wall, +/area/crew_quarters/heads/hor) +"crR" = ( +/turf/closed/wall/r_wall, +/area/science/storage) +"crS" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall/r_wall, +/area/science/storage) +"crT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage"; + req_access_txt = "8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "toxins_blastdoor"; + name = "biohazard containment shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"crU" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"crV" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"crW" = ( +/obj/structure/closet/l3closet/scientist{ + pixel_x = -2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"crX" = ( +/obj/structure/closet/wardrobe/science_white, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"crY" = ( +/obj/structure/rack, +/obj/item/reagent_containers/blood/random, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"crZ" = ( +/obj/structure/table, +/obj/structure/bedsheetbin{ + pixel_x = 2 + }, +/obj/item/clothing/mask/muzzle, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"csa" = ( +/obj/structure/table, +/obj/item/restraints/handcuffs/cable/white, +/obj/item/gun/syringe, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"csb" = ( +/obj/structure/rack, +/obj/item/hatchet, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"csc" = ( +/obj/machinery/iv_drip, +/obj/item/roller, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"csd" = ( +/obj/structure/rack, +/obj/item/tank/internals/anesthetic, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cse" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"csf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"csg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"csh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/port/aft) +"csi" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"csj" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -28 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"csk" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/surgery) +"csl" = ( +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Medbay Surgery"; + dir = 1; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"csm" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/surgery) +"csn" = ( +/obj/item/device/radio/intercom{ + broadcasting = 1; + freerange = 0; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_y = -30 + }, +/obj/structure/closet/crate/freezer/blood, +/turf/open/floor/plasteel, +/area/medical/surgery) +"cso" = ( +/obj/structure/bed/roller, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -28 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 2 + }, +/area/medical/surgery) +"csp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 2 + }, +/area/medical/surgery) +"csq" = ( +/obj/structure/bed, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/item/bedsheet/medical, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/camera{ + c_tag = "Medbay Recovery Room"; + dir = 1; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 2 + }, +/area/medical/surgery) +"csr" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"css" = ( +/turf/closed/wall, +/area/medical/cryo) +"cst" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/camera{ + c_tag = "Medbay Hallway Central"; + dir = 4; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"csu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"csv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/medbay/central) +"csw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Chief Medical Officer's Office"; + req_access_txt = "40"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"csx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"csy" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"csz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/table/glass, +/obj/item/folder/blue, +/obj/item/folder/blue, +/obj/item/pen, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"csA" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer RC"; + pixel_y = -32 + }, +/obj/effect/landmark/start/chief_medical_officer, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"csB" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for monitoring medbay to ensure patient safety."; + dir = 8; + name = "Medbay Monitor"; + network = list("Medbay"); + pixel_x = 29 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/machinery/computer/card/minor/cmo{ + dir = 8 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"csC" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/aft) +"csD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/aft) +"csF" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 11 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csH" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;5;9" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"csK" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"csL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"csM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Aft Emergency Storage"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csN" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 14 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "7;47;29;12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csR" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 12 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"csU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Research Maintenance"; + req_access_txt = "0"; + req_one_access_txt = "7;47;29" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csV" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"csW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 13 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"csX" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"csY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"csZ" = ( +/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_y = 2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"ctb" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Research Director's Desk"; + departmentType = 5; + name = "Research Director RC"; + pixel_y = 30; + receive_ore_updates = 1 + }, +/obj/machinery/modular_computer/console/preset/research{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"ctc" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/landmark/xmastree/rdrod, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/hor) +"ctd" = ( +/obj/structure/displaycase/labcage, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/warning/biohazard{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/hor) +"cte" = ( +/obj/item/storage/secure/safe{ + pixel_x = 32 + }, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/hor) +"ctf" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"ctg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"cth" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"cti" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/power/apc/highcap/five_k{ + dir = 1; + name = "Toxins Storage APC"; + areastring = "/area/science/storage"; + pixel_y = 25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"ctj" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"ctk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ctl" = ( +/obj/machinery/camera{ + active_power_usage = 0; + c_tag = "Turbine Vent"; + dir = 4; + network = list("Turbine"); + use_power = 0 + }, +/turf/open/space, +/area/space/nearstation) +"ctm" = ( +/obj/structure/grille/broken, +/turf/open/space, +/area/space/nearstation) +"ctn" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cto" = ( +/obj/machinery/vending/assist, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ctq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ctr" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/patients_rooms/room_a) +"cts" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/vending/wallmed{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/white, +/area/medical/patients_rooms/room_a) +"ctt" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/patients_rooms/room_a) +"ctu" = ( +/obj/machinery/door/airlock/medical{ + name = "Patient Room A"; + req_access_txt = "5" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/patients_rooms/room_a) +"ctv" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"ctw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"ctx" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = -28 + }, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cty" = ( +/obj/machinery/suit_storage_unit/cmo, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"ctz" = ( +/obj/structure/table/glass, +/obj/item/pen, +/obj/item/clothing/neck/stethoscope, +/obj/structure/extinguisher_cabinet{ + pixel_x = 6; + pixel_y = -30 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"ctA" = ( +/turf/closed/wall/r_wall, +/area/medical/genetics) +"ctB" = ( +/turf/closed/wall, +/area/medical/genetics) +"ctC" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Genetics Maintenance"; + req_access_txt = "9"; + req_one_access_txt = "0" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft) +"ctD" = ( +/obj/structure/sign/directions/evac, +/turf/closed/wall, +/area/medical/genetics) +"ctE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/blue/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"ctF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ctG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"ctH" = ( +/obj/structure/sign/directions/evac, +/turf/closed/wall, +/area/maintenance/aft) +"ctJ" = ( +/obj/item/storage/toolbox/emergency, +/obj/structure/closet/firecloset, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"ctK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"ctL" = ( +/turf/closed/wall/r_wall, +/area/science/misc_lab/range) +"ctM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Research Testing Range Maintenance"; + req_access_txt = "0"; + req_one_access_txt = "7;47;29" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ctN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/science/research) +"ctO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"ctP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"ctQ" = ( +/obj/machinery/button/door{ + id = "xeno_blastdoor"; + name = "Secure Lab Shutter Control"; + pixel_x = -5; + pixel_y = -5; + req_access_txt = "47" + }, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "rdprivacy"; + name = "Privacy Shutters Control"; + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/button/door{ + id = "Biohazard"; + name = "Entrance Shutter Control"; + pixel_x = -5; + pixel_y = 5; + req_access_txt = "47" + }, +/obj/machinery/button/door{ + id = "toxins_blastdoor"; + name = "Toxins Shutter Control"; + pixel_x = 5; + pixel_y = -5; + req_access_txt = "47" + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"ctR" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/research_director, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"ctS" = ( +/obj/machinery/computer/robotics{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"ctT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/hor) +"ctU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/hor) +"ctV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/hor) +"ctW" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"ctX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"ctY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/chair/stool, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"ctZ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"cua" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"cub" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cuc" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cud" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cue" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/solar{ + id = "aftport"; + name = "Aft-Port Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port/aft) +"cuf" = ( +/obj/structure/closet, +/obj/item/extinguisher, +/obj/effect/decal/cleanable/cobweb, +/obj/item/device/flashlight, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cug" = ( +/obj/structure/closet, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/dropper, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cuh" = ( +/obj/structure/closet/crate, +/obj/item/stack/cable_coil, +/obj/item/grenade/chem_grenade, +/obj/item/device/flashlight, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cui" = ( +/obj/structure/closet/crate, +/obj/item/coin/silver, +/obj/item/reagent_containers/spray/weedspray, +/obj/item/paper, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cuj" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Port Quarter Maintenance APC"; + areastring = "/area/maintenance/port/aft"; + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cuk" = ( +/obj/structure/table, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/clothing/neck/stethoscope, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Patient Room A APC"; + areastring = "/area/medical/patients_rooms/room_a"; + pixel_x = -26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/patients_rooms/room_a) +"cul" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/patients_rooms/room_a) +"cum" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/button/door{ + id = "isola"; + name = "Privacy Shutters"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/patients_rooms/room_a) +"cun" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "isola"; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/medical/patients_rooms/room_a) +"cuo" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cup" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cuq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cur" = ( +/obj/item/storage/box/rxglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -29 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/vault, +/area/medical/genetics) +"cus" = ( +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/gloves/color/latex, +/obj/item/storage/box/disks{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/vault, +/area/medical/genetics) +"cut" = ( +/obj/machinery/requests_console{ + department = "Genetics"; + departmentType = 0; + name = "Genetics Requests Console"; + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/storage/box/monkeycubes, +/obj/item/device/radio/headset/headset_medsci, +/obj/item/device/flashlight/pen{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/device/flashlight/pen{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/structure/noticeboard{ + desc = "A board for pinning important notices upon."; + name = "notice board"; + pixel_x = -32; + pixel_y = 32 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/vault, +/area/medical/genetics) +"cuu" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Genetics Lab APC"; + areastring = "/area/medical/genetics"; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/storage/pill_bottle/mutadone, +/obj/item/storage/pill_bottle/mannitol, +/obj/structure/table/glass, +/turf/open/floor/plasteel/vault, +/area/medical/genetics) +"cuv" = ( +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/vault, +/area/medical/genetics) +"cuw" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/blue/side{ + dir = 9 + }, +/area/medical/genetics) +"cux" = ( +/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 = 32 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/blue/side{ + dir = 5 + }, +/area/medical/genetics) +"cuy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "genetics_shutters"; + name = "genetics shutters" + }, +/turf/open/floor/plating, +/area/medical/genetics) +"cuz" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/floor/plasteel/blue, +/area/medical/genetics) +"cuA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/blue/side{ + dir = 8 + }, +/area/hallway/primary/aft) +"cuB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/aft) +"cuC" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/aft) +"cuD" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/storage/box/lights/mixed, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cuE" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cuF" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cuG" = ( +/turf/open/floor/engine{ + dir = 9; + icon_state = "floor" + }, +/area/science/misc_lab/range) +"cuH" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cuI" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 5 + }, +/area/science/research) +"cuJ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cuK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 2 + }, +/area/science/research) +"cuL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"cuM" = ( +/obj/machinery/computer/card/minor/rd{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cuN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cuO" = ( +/obj/machinery/computer/mecha{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cuP" = ( +/obj/structure/table, +/obj/item/device/aicard, +/obj/item/circuitboard/aicore{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cuQ" = ( +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cuR" = ( +/obj/structure/table, +/obj/item/device/taperecorder{ + pixel_x = -3 + }, +/obj/item/device/paicard{ + pixel_x = 4 + }, +/obj/item/storage/secure/briefcase, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cuS" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"cuT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"cuU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"cuV" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"cuW" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Toxins Storage"; + dir = 8; + network = list("SS13","RD") + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"cuY" = ( +/obj/structure/rack, +/obj/item/extinguisher, +/obj/item/storage/belt/utility, +/obj/item/clothing/mask/gas, +/obj/item/storage/box/lights/mixed, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cuZ" = ( +/turf/closed/wall/r_wall, +/area/science/circuit) +"cvd" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"cve" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"cvf" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"cvg" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"cvh" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"cvi" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"cvj" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cvk" = ( +/obj/structure/closet/crate, +/obj/item/crowbar/red, +/obj/item/pen, +/obj/item/device/flashlight/pen{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cvl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cvm" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cvn" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cvo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/medical/patients_rooms/room_a) +"cvp" = ( +/turf/closed/wall, +/area/medical/patients_rooms/room_a) +"cvq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/departments/examroom{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cvr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cvs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cvt" = ( +/turf/closed/wall, +/area/medical/genetics/cloning) +"cvu" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/door/window/southleft{ + dir = 2; + name = "Cloning Shower" + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/vault, +/area/medical/genetics/cloning) +"cvv" = ( +/obj/machinery/door/window/southleft{ + base_state = "right"; + dir = 2; + icon_state = "right"; + name = "Cloning Shower" + }, +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "sink"; + pixel_y = 28 + }, +/turf/open/floor/plasteel/vault, +/area/medical/genetics/cloning) +"cvw" = ( +/obj/machinery/clonepod{ + pixel_y = 2 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/vault, +/area/medical/genetics/cloning) +"cvx" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Genetics Lab"; + dir = 4; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/whiteblue, +/area/medical/genetics) +"cvy" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 9 + }, +/area/medical/genetics) +"cvz" = ( +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/genetics) +"cvA" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 5 + }, +/area/medical/genetics) +"cvB" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue, +/area/medical/genetics) +"cvC" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/storage/box/syringes, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/blue/side{ + dir = 8 + }, +/area/medical/genetics) +"cvD" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/plasteel/blue/side{ + dir = 4 + }, +/area/medical/genetics) +"cvE" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/pen, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Genetics Desk"; + req_access_txt = "5;9" + }, +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Outer Window" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "genetics_shutters"; + name = "genetics shutters" + }, +/turf/open/floor/plating, +/area/medical/genetics) +"cvF" = ( +/turf/open/floor/plasteel/blue, +/area/medical/genetics) +"cvG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"cvH" = ( +/turf/closed/wall, +/area/science/robotics/mechbay) +"cvI" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mech Bay Maintenance"; + req_access_txt = "29" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft) +"cvJ" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = -29 + }, +/turf/open/floor/engine{ + dir = 9; + icon_state = "floor" + }, +/area/science/misc_lab/range) +"cvK" = ( +/obj/machinery/magnetic_module, +/obj/effect/landmark/blobstart, +/obj/structure/target_stake, +/obj/effect/turf_decal/bot{ + dir = 9 + }, +/turf/open/floor/plasteel{ + dir = 9 + }, +/area/science/misc_lab/range) +"cvL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "researchrangeshutters"; + name = "blast door" + }, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"cvM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"cvN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cvO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/science/research) +"cvP" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Research Director's Office"; + req_access_txt = "30"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cvQ" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cvR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cvS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cvT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cvU" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cvV" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"cvW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"cvX" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"cvY" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"cwa" = ( +/obj/structure/reagent_dispensers/watertank/high, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cwb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"cwc" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/aft) +"cwd" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cwe" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "aftport"; + name = "Aft-Port Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port/aft) +"cwf" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"cwg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"cwh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cwi" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cwj" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cwm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cwn" = ( +/obj/structure/rack, +/obj/item/clothing/glasses/sunglasses, +/obj/item/device/flashlight/pen, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cwo" = ( +/obj/structure/table, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/clothing/neck/stethoscope, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Patient Room B APC"; + areastring = "/area/medical/patients_rooms/room_b"; + pixel_x = -26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/patients_rooms/room_b) +"cwp" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/vending/wallmed{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/white, +/area/medical/patients_rooms/room_b) +"cwq" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/button/door{ + id = "isolb"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/patients_rooms/room_b) +"cwr" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "isolb"; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/medical/patients_rooms/room_b) +"cws" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/aft) +"cwt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cwu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cwv" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 9 + }, +/area/medical/genetics/cloning) +"cww" = ( +/obj/effect/landmark/start/geneticist, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/genetics/cloning) +"cwx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/computer/cloning{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 5 + }, +/area/medical/genetics/cloning) +"cwy" = ( +/obj/machinery/dna_scannernew, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/turf/open/floor/plasteel/whiteblue, +/area/medical/genetics) +"cwz" = ( +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/genetics) +"cwA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cwB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/genetics) +"cwC" = ( +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel/whiteblue, +/area/medical/genetics) +"cwD" = ( +/obj/item/storage/box/disks{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -29 + }, +/obj/machinery/camera{ + c_tag = "Genetics Desk"; + dir = 4; + network = list("SS13","Medbay") + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/blue/side{ + dir = 8 + }, +/area/medical/genetics) +"cwE" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/button/door{ + id = "genetics_shutters"; + name = "genetics shutters control"; + pixel_x = 28; + req_access_txt = "9" + }, +/turf/open/floor/plasteel/blue/side{ + dir = 4 + }, +/area/medical/genetics) +"cwF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel/blue/corner{ + dir = 1 + }, +/area/hallway/primary/aft) +"cwG" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -28 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cwH" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/science/robotics/mechbay) +"cwI" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = 31 + }, +/turf/open/floor/mech_bay_recharge_floor, +/area/science/robotics/mechbay) +"cwJ" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"cwK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cwL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cwM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Research Division Hallway - Mech Bay"; + dir = 4; + network = list("SS13","RD") + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/science/research) +"cwN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cwO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/science/research) +"cwP" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "RD Office APC"; + areastring = "/area/crew_quarters/heads/hor"; + pixel_y = -27 + }, +/obj/structure/cable/yellow, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/obj/item/twohanded/required/kirbyplants/dead, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cwQ" = ( +/obj/item/paper_bin{ + pixel_y = 7 + }, +/obj/structure/table, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/obj/item/stamp/rd{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/folder/white{ + pixel_x = 9; + pixel_y = -1 + }, +/obj/item/pen, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cwR" = ( +/obj/structure/table, +/obj/item/cartridge/signal/toxins, +/obj/item/cartridge/signal/toxins{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/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/machinery/light, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cwS" = ( +/obj/structure/closet/secure_closet/RD, +/obj/machinery/keycard_auth{ + pixel_y = -24 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cwT" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cwU" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cwV" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"cwW" = ( +/obj/item/cigbutt, +/obj/machinery/light_switch{ + pixel_y = -23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"cwX" = ( +/obj/effect/landmark/start/scientist, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/storage) +"cwY" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light/small, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"cwZ" = ( +/turf/open/floor/plasteel, +/area/science/circuit) +"cxa" = ( +/obj/item/stack/cable_coil, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"cxb" = ( +/obj/structure/rack, +/obj/item/tank/internals/air, +/obj/item/wrench, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/port/aft) +"cxc" = ( +/obj/item/trash/chips, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cxd" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cxe" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/patients_rooms/room_b) +"cxf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/patients_rooms/room_b) +"cxg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/patients_rooms/room_b) +"cxh" = ( +/obj/machinery/door/airlock/medical{ + name = "Patient Room B"; + req_access_txt = "5" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/patients_rooms/room_b) +"cxi" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cxj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cxk" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 2 + }, +/area/medical/medbay/aft) +"cxl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/genetics/cloning) +"cxm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/genetics/cloning) +"cxn" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"cxo" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/genetics/cloning) +"cxp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/genetics) +"cxq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 9 + }, +/area/medical/genetics) +"cxr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/genetics) +"cxs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cxt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/genetics) +"cxu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 5 + }, +/area/medical/genetics) +"cxv" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/genetics) +"cxw" = ( +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/stack/packageWrap, +/obj/item/pen, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/table/glass, +/turf/open/floor/plasteel/blue/side{ + dir = 8 + }, +/area/medical/genetics) +"cxx" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/blue/corner{ + dir = 4 + }, +/area/medical/genetics) +"cxy" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = 28 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 5 + }, +/area/medical/genetics) +"cxz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=10.1-Central-from-Aft"; + location = "10-Aft-To-Central" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cxA" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=9.1-Escape-1"; + location = "8.1-Aft-to-Escape" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"cxC" = ( +/obj/machinery/door/poddoor/shutters{ + id = "Skynet_launch"; + name = "Mech Bay" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cxD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cxE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"cxF" = ( +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"cxG" = ( +/obj/machinery/camera{ + c_tag = "Mech Bay"; + dir = 8; + network = list("SS13","RD") + }, +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"cxH" = ( +/turf/open/floor/plating, +/area/science/misc_lab/range) +"cxI" = ( +/obj/machinery/camera{ + c_tag = "Research Testing Range"; + dir = 8; + network = list("SS13","RD"); + pixel_y = -22 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"cxJ" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"cxK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage"; + req_access_txt = "8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/storage) +"cxL" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/aft) +"cxM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cxN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"cxO" = ( +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cxP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cxQ" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"cxR" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cxS" = ( +/obj/item/latexballon, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cxT" = ( +/obj/item/clothing/suit/ianshirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cxU" = ( +/turf/closed/wall, +/area/medical/medbay/aft) +"cxV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/aft) +"cxW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cxX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/medbay/aft) +"cxY" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "CloningDoor"; + name = "Cloning Lab"; + req_access_txt = "5; 68" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue, +/area/medical/genetics/cloning) +"cxZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/genetics/cloning) +"cya" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"cyb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/genetics/cloning) +"cyc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Genetics Lab"; + req_access_txt = "5; 9; 68" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue, +/area/medical/genetics) +"cyd" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/genetics) +"cye" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cyf" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cyg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cyh" = ( +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/genetics) +"cyi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + id_tag = "AuxGenetics"; + locked = 0; + name = "Genetics Lab"; + req_access_txt = "9"; + req_one_access_txt = "0" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"cyj" = ( +/turf/open/floor/plasteel/blue/side{ + dir = 8 + }, +/area/medical/genetics) +"cyk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"cyl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 4 + }, +/area/medical/genetics) +"cym" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + id_tag = "AuxGenetics"; + locked = 0; + name = "Genetics Access"; + req_access_txt = "9"; + req_one_access_txt = "0" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"cyn" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cyo" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"cyp" = ( +/obj/machinery/door/poddoor/shutters{ + id = "Skynet_launch"; + name = "Mech Bay" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cyq" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cyr" = ( +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"cys" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/landmark/start/roboticist, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"cyt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"cyu" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"cyv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cyw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cyx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cyy" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall, +/area/science/mixing) +"cyz" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/structure/closet/l3closet/scientist{ + pixel_x = -2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyA" = ( +/obj/structure/closet/wardrobe/science_white, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyB" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyC" = ( +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyD" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyE" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Toxins - Lab"; + dir = 2; + network = list("SS13","RD") + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyF" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyG" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyJ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyK" = ( +/turf/closed/wall/r_wall, +/area/science/mixing) +"cyM" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/circuit) +"cyN" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/medbay/aft) +"cyO" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/medbay/aft) +"cyP" = ( +/obj/machinery/vending/coffee, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/medbay/aft) +"cyQ" = ( +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/obj/machinery/vending/cola/random, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/medbay/aft) +"cyR" = ( +/obj/machinery/vending/cigarette, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/medbay/aft) +"cyT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cyU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 28 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/aft) +"cyV" = ( +/obj/machinery/button/door{ + desc = "A remote control switch for the cloning door."; + id = "CloningDoor"; + name = "Cloning Exit Button"; + normaldoorcontrol = 1; + pixel_x = -23; + pixel_y = 8 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 10 + }, +/area/medical/genetics/cloning) +"cyW" = ( +/obj/effect/landmark/start/geneticist, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 2 + }, +/area/medical/genetics/cloning) +"cyX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/power/apc{ + dir = 4; + locked = 0; + name = "Cloning Lab APC"; + areastring = "/area/medical/genetics/cloning"; + pixel_x = 24 + }, +/obj/structure/cable/yellow, +/obj/machinery/camera{ + c_tag = "Genetics Cloning Lab"; + dir = 8; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 6 + }, +/area/medical/genetics/cloning) +"cyY" = ( +/turf/open/floor/plasteel/whiteblue/side{ + dir = 10 + }, +/area/medical/genetics) +"cyZ" = ( +/turf/open/floor/plasteel/whiteblue/side{ + dir = 2 + }, +/area/medical/genetics) +"cza" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 6 + }, +/area/medical/genetics) +"czb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 10 + }, +/area/medical/genetics) +"czc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 0 + }, +/area/medical/genetics) +"czd" = ( +/obj/machinery/light_switch{ + pixel_x = 23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 6 + }, +/area/medical/genetics) +"cze" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/genetics) +"czf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"czg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"czh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/button/door{ + dir = 2; + id = "Skynet_launch"; + name = "Mech Bay Door Control"; + pixel_x = 26; + pixel_y = 6; + req_one_access_txt = "29" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"czi" = ( +/obj/machinery/button/door{ + dir = 2; + id = "Skynet_launch"; + name = "Mech Bay Door Control"; + pixel_x = -26; + pixel_y = 6 + }, +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = -2 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"czj" = ( +/turf/open/floor/mech_bay_recharge_floor, +/area/science/robotics/mechbay) +"czk" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"czl" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/paper/guides/jobs/security/range{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"czm" = ( +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "door"; + req_access_txt = "0" + }, +/turf/open/floor/engine{ + dir = 9; + icon_state = "floor" + }, +/area/science/misc_lab/range) +"czn" = ( +/obj/structure/table/reinforced, +/obj/machinery/magnetic_controller{ + autolink = 1; + pixel_y = 3 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/clothing/ears/earmuffs, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"czo" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"czp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"czq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 2 + }, +/area/science/research) +"czr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "toxins_blastdoor"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/mixing) +"czs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"czt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"czv" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"czw" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"czx" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"czy" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"czz" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"czA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"czB" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"czC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;47" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"czD" = ( +/turf/closed/wall, +/area/science/mixing) +"czE" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/syringe, +/obj/item/pen, +/turf/open/floor/plasteel/whitegreen, +/area/medical/medbay/central) +"czF" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/science/mixing) +"czG" = ( +/obj/item/stack/rods/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/target, +/obj/item/target/syndicate, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/structure/closet/crate/secure{ + desc = "A secure crate containing various materials for building a customised test-site."; + name = "Test Site Materials Crate"; + req_access_txt = "8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/science/mixing) +"czH" = ( +/obj/machinery/airalarm/all_access{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plasteel/floorgrime, +/area/maintenance/disposal/incinerator) +"czI" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/wall, +/area/science/mixing) +"czJ" = ( +/turf/closed/wall, +/area/science/test_area) +"czK" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/test_area) +"czL" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"czN" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/medical/medbay/aft) +"czO" = ( +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"czP" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"czQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"czR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"czS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/cigbutt, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"czT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + name = "Medbay Break Room"; + req_access_txt = "5" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"czU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"czV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"czW" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Medbay Aft APC"; + areastring = "/area/medical/medbay/aft"; + pixel_x = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"czX" = ( +/obj/item/book/manual/medical_cloning{ + pixel_y = 6 + }, +/obj/item/paper, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/vault, +/area/medical/genetics/cloning) +"czY" = ( +/obj/item/storage/box/rxglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/table/glass, +/turf/open/floor/plasteel/vault, +/area/medical/genetics/cloning) +"czZ" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/vault, +/area/medical/genetics/cloning) +"cAa" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/closet/wardrobe/genetics_white, +/turf/open/floor/plasteel/vault, +/area/medical/genetics) +"cAb" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/bed/roller, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/genetics) +"cAc" = ( +/obj/structure/bed/roller, +/obj/machinery/door/window/westleft{ + dir = 1; + name = "Monkey Pen"; + pixel_y = 2; + req_access_txt = "9" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/genetics) +"cAd" = ( +/obj/machinery/light, +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "Monkey Pen"; + pixel_y = 2; + req_access_txt = "9" + }, +/obj/structure/bed/roller, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/genetics) +"cAe" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/bed/roller, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/genetics) +"cAf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/vault, +/area/medical/genetics) +"cAg" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel/vault, +/area/medical/genetics) +"cAh" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway - Middle"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cAi" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cAj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"cAk" = ( +/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/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cAl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cAm" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cAn" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cAo" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Mech Bay APC"; + areastring = "/area/science/robotics/mechbay"; + pixel_x = 28 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cAp" = ( +/obj/structure/rack, +/obj/item/target, +/obj/item/target, +/obj/item/target/alien, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/item/target/clown, +/obj/item/target/syndicate, +/obj/item/target/syndicate, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cAq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cAr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cAs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Research Testing Range"; + req_access_txt = "0"; + req_one_access_txt = "7;47;29" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/purple, +/area/science/misc_lab/range) +"cAt" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/research) +"cAu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cAv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 4 + }, +/area/science/research) +"cAw" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Lab"; + req_access_txt = "8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "toxins_blastdoor"; + name = "biohazard containment shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"cAx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cAy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cAz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cAA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cAB" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cAC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cAD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cAE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/effect/landmark/start/scientist, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cAF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cAG" = ( +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/scrubber, +/obj/item/storage/firstaid/toxin, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cAH" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall/r_wall, +/area/science/mixing) +"cAI" = ( +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/chair/comfy{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"cAJ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/floorgrime, +/area/science/mixing) +"cAK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"cAL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/science/mixing) +"cAM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/research{ + id_tag = "ResearchExt"; + name = "Research Division"; + req_access_txt = "0"; + req_one_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"cAN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cAO" = ( +/obj/structure/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 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cAP" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/mixing) +"cAQ" = ( +/obj/structure/window/reinforced, +/obj/item/target, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/science/test_area) +"cAS" = ( +/obj/structure/chair/stool, +/obj/item/device/radio/intercom{ + broadcasting = 1; + freerange = 0; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_x = -30 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cAT" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cAU" = ( +/obj/item/cigbutt, +/obj/machinery/holopad, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cAV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cAW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cAX" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay/aft) +"cAY" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/aft) +"cAZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cBa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + broadcasting = 1; + freerange = 0; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_x = 30 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cBb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/medical/genetics/cloning) +"cBc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/centcom{ + name = "Genetics"; + opacity = 1; + req_access_txt = "9" + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics) +"cBd" = ( +/obj/structure/sign/directions/evac, +/turf/closed/wall, +/area/hallway/primary/aft) +"cBe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cBf" = ( +/obj/structure/sign/directions/evac, +/turf/closed/wall, +/area/science/robotics/mechbay) +"cBg" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cBh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cBi" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 28 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cBj" = ( +/obj/structure/table, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/item/clothing/glasses/science, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cBk" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "researchrangeshutters"; + name = "Blast Door Control"; + pixel_y = -24; + req_access_txt = "0" + }, +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cBl" = ( +/obj/item/gun/energy/laser/practice, +/obj/machinery/power/apc{ + dir = 2; + name = "Research Firing Range APC"; + areastring = "/area/science/misc_lab/range"; + pixel_y = -28 + }, +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cBm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "researchrangeshutters"; + name = "blast door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"cBn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"cBo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cBp" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/research) +"cBq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "toxins_blastdoor"; + name = "biohazard containment door" + }, +/turf/open/floor/plating, +/area/science/mixing) +"cBr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cBs" = ( +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cBt" = ( +/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_y = 2 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBu" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/scientist, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBv" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cBx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cBy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cBz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cBA" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cBB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room Access"; + req_access_txt = "8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "toxins_blastdoor"; + name = "biohazard containment shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"cBE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"cBF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"cBG" = ( +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBJ" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBK" = ( +/obj/machinery/light/small, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBL" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/button/massdriver{ + dir = 2; + id = "toxinsdriver"; + pixel_x = 24; + pixel_y = -24 + }, +/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 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBM" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/wall, +/area/science/test_area) +"cBN" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cBO" = ( +/obj/item/device/flashlight/lamp, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cBP" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cBQ" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"cBR" = ( +/turf/closed/wall/r_wall, +/area/medical/virology) +"cBS" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/virology) +"cBT" = ( +/obj/item/cigbutt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cBU" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cBV" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -30 + }, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/table/glass, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cBW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/structure/extinguisher_cabinet{ + pixel_y = -29 + }, +/obj/machinery/camera{ + c_tag = "Medbay Break Room"; + dir = 1; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cBX" = ( +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cBY" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cBZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cCa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/medical/medbay/aft) +"cCb" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel/white/corner{ + dir = 2 + }, +/area/medical/medbay/aft) +"cCc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/medbay/aft) +"cCd" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/medical/medbay/aft) +"cCe" = ( +/turf/closed/wall, +/area/medical/morgue) +"cCf" = ( +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCg" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCi" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCj" = ( +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCk" = ( +/obj/machinery/airalarm{ + pixel_y = 32 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/paper/guides/jobs/medical/morgue{ + pixel_x = -4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCl" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cCm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel/purple/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"cCn" = ( +/turf/closed/wall/r_wall, +/area/science/robotics/mechbay) +"cCo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics_shutters"; + name = "robotics shutters" + }, +/turf/open/floor/plating, +/area/science/robotics/mechbay) +"cCp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cCq" = ( +/turf/closed/wall/r_wall, +/area/science/robotics/lab) +"cCr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/science/research) +"cCs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/science/research) +"cCt" = ( +/obj/structure/closet/bombcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCu" = ( +/obj/item/device/assembly/signaler{ + 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, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCv" = ( +/obj/item/device/transfer_valve{ + pixel_x = -5 + }, +/obj/item/device/transfer_valve{ + pixel_x = -5 + }, +/obj/item/device/transfer_valve, +/obj/item/device/transfer_valve, +/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_y = -30; + receive_ore_updates = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCw" = ( +/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, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCy" = ( +/obj/machinery/disposal/bin{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cCA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cCB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cCC" = ( +/obj/structure/table, +/obj/item/device/assembly/igniter{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 2; + pixel_y = -1 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Toxins Lab APC"; + areastring = "/area/science/mixing"; + pixel_x = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCD" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/floorgrime, +/area/science/mixing) +"cCF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCG" = ( +/obj/machinery/door/window/southleft{ + name = "Mass Driver Door"; + req_access_txt = "7" + }, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCH" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cCI" = ( +/turf/open/floor/plating/airless, +/area/science/test_area) +"cCJ" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cCK" = ( +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cCL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cCM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cCN" = ( +/obj/machinery/camera{ + c_tag = "Medbay Hallway Aft"; + dir = 4; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/white/side{ + dir = 5 + }, +/area/medical/medbay/aft) +"cCO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cCP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cCQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/medical/medbay/aft) +"cCR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/medbay/aft) +"cCS" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cCT" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cCU" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCX" = ( +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCY" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCZ" = ( +/obj/machinery/vending/cola/random, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cDa" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics_shutters"; + name = "robotics shutters" + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"cDb" = ( +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/machinery/button/door{ + id = "robotics_shutters"; + name = "robotics shutters control"; + pixel_x = -26; + pixel_y = 26; + req_access_txt = "29" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cDc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cDd" = ( +/obj/machinery/mecha_part_fabricator{ + dir = 2 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cDe" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/structure/rack, +/obj/item/book/manual/robotics_cyborgs{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/storage/belt/utility, +/obj/item/reagent_containers/glass/beaker/large, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cDf" = ( +/obj/machinery/mecha_part_fabricator{ + dir = 2 + }, +/obj/machinery/camera{ + c_tag = "Robotics - Fore"; + dir = 2; + network = list("SS13","RD") + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cDg" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Robotics Lab APC"; + areastring = "/area/science/robotics/lab"; + pixel_y = 25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cDh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/research{ + id_tag = "ResearchExt"; + name = "Research Division"; + req_access_txt = "0"; + req_one_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"cDi" = ( +/turf/closed/wall, +/area/science/robotics/lab) +"cDj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cDk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/science/mixing) +"cDl" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/science/mixing) +"cDm" = ( +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cDn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cDo" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cDp" = ( +/obj/structure/table, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cDq" = ( +/obj/machinery/mass_driver{ + dir = 4; + id = "toxinsdriver" + }, +/turf/open/floor/plating, +/area/science/mixing) +"cDr" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/science/mixing) +"cDs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/mixing) +"cDt" = ( +/obj/machinery/door/poddoor{ + id = "toxinsdriver"; + name = "Toxins Launcher Bay Door" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/science/mixing) +"cDu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cDv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cDw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cDx" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cDy" = ( +/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. An external light is attached to the top."; + dir = 8; + invuln = 1; + light = null; + luminosity = 3; + name = "Hardened Bomb-Test Camera"; + network = list("Toxins"); + use_power = 0 + }, +/obj/item/target/alien/anchored, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless{ + luminosity = 2 + }, +/area/science/test_area) +"cDz" = ( +/turf/closed/indestructible{ + desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; + icon_state = "riveted"; + name = "hyper-reinforced wall" + }, +/area/science/test_area) +"cDA" = ( +/obj/structure/bed/roller, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cDB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cDC" = ( +/obj/effect/landmark/blobstart, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cDD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cDE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/medical/virology) +"cDF" = ( +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/box/syringes, +/obj/machinery/power/apc/highcap/five_k{ + dir = 1; + name = "Virology APC"; + areastring = "/area/medical/virology"; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/table/glass, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 9 + }, +/area/medical/virology) +"cDG" = ( +/obj/item/book/manual/wiki/infections{ + pixel_y = 7 + }, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/table/glass, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 5 + }, +/area/medical/virology) +"cDH" = ( +/obj/machinery/smartfridge/chemistry/virology/preloaded, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/whitegreen, +/area/medical/virology) +"cDI" = ( +/obj/machinery/reagentgrinder{ + pixel_y = 8 + }, +/obj/structure/table/glass, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 9 + }, +/area/medical/virology) +"cDJ" = ( +/obj/item/clothing/gloves/color/latex, +/obj/item/device/healthanalyzer, +/obj/item/clothing/glasses/hud/health, +/obj/structure/reagent_dispensers/virusfood{ + pixel_y = 30 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 5 + }, +/area/medical/virology) +"cDK" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cDL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cDM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"cDN" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cDO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cDP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cDQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/medbay/aft) +"cDR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cDS" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cDT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/medical/medbay/aft) +"cDU" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/medbay/aft) +"cDV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cDW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cDX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/centcom{ + name = "Morgue"; + opacity = 1; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cDY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cDZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEb" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEc" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEd" = ( +/obj/structure/table, +/obj/machinery/power/apc{ + dir = 4; + name = "Morgue APC"; + areastring = "/area/medical/morgue"; + pixel_x = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/clothing/gloves/color/latex, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/morgue) +"cEf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/hallway/primary/aft) +"cEg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cEh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/purple/side{ + dir = 4 + }, +/area/hallway/primary/aft) +"cEi" = ( +/turf/open/floor/plasteel/purple, +/area/science/robotics/lab) +"cEj" = ( +/obj/structure/table/reinforced, +/obj/item/pen, +/obj/machinery/door/window/eastright{ + dir = 4; + name = "Robotics Desk"; + req_access_txt = "29" + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics_shutters"; + name = "robotics shutters" + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"cEk" = ( +/obj/effect/landmark/start/roboticist, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cEl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cEm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cEn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cEo" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/machinery/ai_status_display{ + pixel_x = 32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cEp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/science/research) +"cEq" = ( +/obj/structure/lattice, +/turf/open/space, +/area/science/mixing) +"cEr" = ( +/obj/machinery/door/poddoor{ + id = "mixvent"; + name = "Mixer Room Vent" + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"cEs" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"cEt" = ( +/obj/machinery/sparker{ + dir = 2; + id = "mixingsparker"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"cEu" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"cEv" = ( +/obj/machinery/airlock_sensor{ + id_tag = "tox_airlock_sensor"; + master_tag = "tox_airlock_control"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/engine, +/area/science/mixing) +"cEw" = ( +/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; + sanitize_external = 1; + sensor_tag = "tox_airlock_sensor" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cEx" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "manual outlet valve" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cEy" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cEz" = ( +/obj/structure/closet/wardrobe/grey, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cEA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/space/nearstation) +"cEB" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cEC" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cED" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"cEE" = ( +/turf/closed/wall, +/area/medical/virology) +"cEF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/medical/virology) +"cEG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Test Subject Cell"; + req_access_txt = "39" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cEH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/medical/virology) +"cEI" = ( +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/structure/sign/warning/deathsposal{ + pixel_x = -30 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/virology) +"cEJ" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 4 + }, +/area/medical/virology) +"cEK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/virology) +"cEL" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/virologist, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 1 + }, +/area/medical/virology) +"cEM" = ( +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/pen/red, +/obj/machinery/requests_console{ + department = "Virology"; + name = "Virology Requests Console"; + pixel_x = 29; + receive_ore_updates = 1 + }, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/structure/table/glass, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/virology) +"cEN" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;5;39;6" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cEO" = ( +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/medical/medbay/aft) +"cEP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cEQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/medical/medbay/aft) +"cER" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/medical/medbay/aft) +"cES" = ( +/obj/item/device/healthanalyzer{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = -30 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/medbay/aft) +"cET" = ( +/obj/machinery/vending/medical, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/medical/medbay/aft) +"cEU" = ( +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEV" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEX" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/centcom{ + name = "Morgue"; + opacity = 1; + req_access_txt = "6" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEZ" = ( +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cFa" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cFb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cFc" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/departments/science{ + name = "\improper ROBOTICS!"; + pixel_x = 32 + }, +/turf/open/floor/plasteel/purple/corner{ + dir = 4 + }, +/area/hallway/primary/aft) +"cFd" = ( +/obj/structure/noticeboard{ + dir = 4; + pixel_x = -27 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/aug_manipulator, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cFe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cFf" = ( +/obj/effect/landmark/start/roboticist, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cFg" = ( +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cFh" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cFi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cFj" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 28; + pixel_y = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table, +/obj/item/wrench, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/obj/item/stack/cable_coil, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cFk" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Research Division Hallway - Robotics"; + dir = 4; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cFl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cFm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/research) +"cFn" = ( +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"cFo" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/research/glass{ + autoclose = 0; + frequency = 1449; + heat_proof = 1; + id_tag = "tox_airlock_exterior"; + name = "Mixing Room Exterior Airlock"; + req_access_txt = "8" + }, +/turf/open/floor/engine, +/area/science/mixing) +"cFp" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{ + dir = 2; + frequency = 1449; + id = "tox_airlock_pump" + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/engine, +/area/science/mixing) +"cFq" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/research/glass{ + autoclose = 0; + frequency = 1449; + heat_proof = 1; + id_tag = "tox_airlock_interior"; + name = "Mixing Room Interior Airlock"; + req_access_txt = "8" + }, +/turf/open/floor/engine, +/area/science/mixing) +"cFr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cFs" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Toxins - Mixing Area"; + dir = 8; + network = list("SS13","RD") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cFu" = ( +/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 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cFv" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cFw" = ( +/obj/item/device/flashlight/lamp, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cFx" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cFy" = ( +/obj/item/device/radio/intercom{ + pixel_x = -28 + }, +/obj/structure/table/glass, +/obj/item/hand_labeler, +/obj/item/device/radio/headset/headset_med, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/camera{ + c_tag = "Virology - Cells"; + dir = 4; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 9 + }, +/area/medical/virology) +"cFz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/virology) +"cFA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/virology) +"cFB" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/virology) +"cFC" = ( +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/machinery/light_switch{ + pixel_y = 26 + }, +/obj/item/wrench, +/obj/item/restraints/handcuffs, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 5 + }, +/area/medical/virology) +"cFD" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/virology) +"cFE" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/virology) +"cFF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cFG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cFH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cFI" = ( +/obj/machinery/computer/pandemic{ + layer = 2.5; + pixel_x = -4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/virology) +"cFJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"cFK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/virology) +"cFL" = ( +/obj/structure/sign/warning/biohazard{ + pixel_y = 32 + }, +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cFM" = ( +/obj/structure/sink{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cFN" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/machinery/shower{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cFO" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cFP" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/medbay/aft) +"cFQ" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21"; + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 8 + }, +/area/medical/medbay/aft) +"cFR" = ( +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cFS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cFT" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/medical/medbay/aft) +"cFU" = ( +/obj/machinery/light/small, +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cFV" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cFW" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cFX" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light_switch{ + pixel_x = 23 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cFY" = ( +/obj/structure/closet, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cFZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/aft) +"cGa" = ( +/obj/machinery/computer/rdconsole/robotics{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Robotics"; + departmentType = 2; + name = "Robotics RC"; + pixel_x = -31; + receive_ore_updates = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGf" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGg" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cGh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cGi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/science/research) +"cGj" = ( +/obj/machinery/sparker{ + dir = 2; + id = "mixingsparker"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4; + frequency = 1441; + id = "air_in" + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"cGk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/warning/fire{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/engine, +/area/science/mixing) +"cGl" = ( +/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 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cGm" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "manual inlet valve" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cGn" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cGo" = ( +/obj/structure/closet/crate, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cGp" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/item/target, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/science/test_area) +"cGq" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/pen/red, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/virology) +"cGr" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGs" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGt" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/virology) +"cGv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Containment Cells"; + req_access_txt = "39" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen, +/area/medical/virology) +"cGw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/virology) +"cGx" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/holopad, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/virology) +"cGB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/virology{ + name = "Virology Access"; + req_access_txt = "39" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/whitegreen, +/area/medical/virology) +"cGC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/virology) +"cGD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/doorButtons/airlock_controller{ + idExterior = "virology_airlock_exterior"; + idSelf = "virology_airlock_control"; + idInterior = "virology_airlock_interior"; + name = "Virology Access Console"; + pixel_x = 26; + pixel_y = 26; + req_access_txt = "39" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/virology) +"cGF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + id_tag = "virology_airlock_interior"; + name = "Virology Interior Airlock"; + req_access_txt = "39" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen, +/area/medical/virology) +"cGG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/doorButtons/access_button{ + idDoor = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -26; + pixel_y = 28; + req_access_txt = "39" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGI" = ( +/obj/machinery/doorButtons/access_button{ + idDoor = "virology_airlock_exterior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_y = 24; + req_access_txt = "39" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + id_tag = "virology_airlock_exterior"; + name = "Virology Exterior Airlock"; + req_access_txt = "39" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/whitegreen, +/area/medical/virology) +"cGJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cGK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/medbay/aft) +"cGL" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + name = "Virology Access"; + req_access_txt = "39" + }, +/turf/open/floor/plasteel/whitegreen, +/area/medical/medbay/aft) +"cGM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cGN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cGO" = ( +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cGP" = ( +/obj/machinery/door/airlock/abandoned{ + name = "Medical Surplus Storeroom"; + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cGQ" = ( +/turf/open/floor/plasteel/floorgrime, +/area/maintenance/aft) +"cGR" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/storage/backpack/duffelbag/med, +/obj/item/device/flashlight/pen{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/floor/plasteel/floorgrime, +/area/maintenance/aft) +"cGS" = ( +/obj/structure/table, +/obj/item/retractor, +/obj/item/hemostat, +/obj/item/device/healthanalyzer, +/obj/item/clothing/glasses/eyepatch, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/floorgrime, +/area/maintenance/aft) +"cGT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance{ + name = "Morgue Maintenance"; + req_access_txt = "6" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cGU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/aft) +"cGV" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/rnd/circuit_imprinter, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGW" = ( +/obj/effect/landmark/start/roboticist, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/rack, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/device/healthanalyzer{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/device/healthanalyzer{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/device/healthanalyzer{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/device/radio/headset/headset_sci{ + pixel_x = -3 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGZ" = ( +/obj/effect/spawner/structure/window, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"cHa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"cHb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cHc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 2 + }, +/area/science/research) +"cHd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM" + }, +/turf/closed/wall/r_wall, +/area/science/server) +"cHe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/server) +"cHf" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/closed/wall/r_wall, +/area/science/server) +"cHg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"cHh" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Toxins Lab Maintenance"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "toxins_blastdoor"; + name = "biohazard containment shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cHi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"cHk" = ( +/obj/structure/cable, +/obj/machinery/power/tracker, +/turf/open/floor/plating/airless, +/area/solar/port/aft) +"cHl" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 10 + }, +/area/medical/virology) +"cHm" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/side, +/area/medical/virology) +"cHn" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen/side, +/area/medical/virology) +"cHo" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/side, +/area/medical/virology) +"cHp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 6 + }, +/area/medical/virology) +"cHq" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/medical/virology) +"cHr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 10 + }, +/area/medical/virology) +"cHs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen/side, +/area/medical/virology) +"cHt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/side, +/area/medical/virology) +"cHu" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/whitegreen/side, +/area/medical/virology) +"cHv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/machinery/camera{ + c_tag = "Virology - Lab"; + dir = 8; + network = list("SS13","Medbay") + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/light_switch{ + pixel_x = 26 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 6 + }, +/area/medical/virology) +"cHw" = ( +/obj/structure/closet/emcloset, +/obj/item/device/radio/intercom{ + pixel_x = -28 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cHx" = ( +/obj/machinery/camera{ + c_tag = "Virology - Airlock"; + dir = 1; + network = list("SS13","Medbay") + }, +/obj/machinery/light, +/obj/structure/closet/l3closet, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cHy" = ( +/obj/structure/closet/l3closet, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cHz" = ( +/obj/structure/sign/warning/biohazard{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cHA" = ( +/obj/machinery/camera{ + c_tag = "Virology - Entrance"; + dir = 8; + network = list("SS13","Medbay") + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/medbay/aft) +"cHB" = ( +/obj/structure/sign/warning/biohazard{ + pixel_x = -32 + }, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/storage/box/masks, +/obj/structure/table/glass, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 1 + }, +/area/medical/medbay/aft) +"cHC" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_y = -30 + }, +/obj/item/storage/box/beakers{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/bodybags, +/obj/structure/table/glass, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cHD" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/light, +/obj/item/hand_labeler, +/obj/item/pen, +/obj/item/pen, +/obj/structure/table/glass, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cHE" = ( +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/medical/medbay/aft) +"cHF" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel/floorgrime, +/area/maintenance/aft) +"cHG" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel/floorgrime, +/area/maintenance/aft) +"cHH" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/blood, +/obj/item/reagent_containers/blood, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/dropper, +/obj/structure/sign/warning/biohazard{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/floorgrime, +/area/maintenance/aft) +"cHI" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cHJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/aft) +"cHK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/aft) +"cHL" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cHM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;5;39;6" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cHN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/aft) +"cHO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cHP" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cHQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cHR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cHS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cHT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cHU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cHV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Robotics Lab"; + req_access_txt = "29"; + req_one_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/purple, +/area/science/robotics/lab) +"cHW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/research) +"cHX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"cHY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/science/research) +"cHZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Research Division Server Room"; + req_access = null; + req_access_txt = "30" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cIa" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cIb" = ( +/obj/machinery/camera{ + c_tag = "Research Division - Server Room"; + dir = 2; + network = list("SS13","RD"); + pixel_x = 22 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Research Division Server Room APC"; + areastring = "/area/science/server"; + pixel_y = 25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cIc" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + target_temperature = 80; + dir = 2; + on = 1 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cId" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/science/server) +"cIe" = ( +/obj/machinery/rnd/server, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"cIf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + external_pressure_bound = 140; + name = "server vent"; + pressure_checks = 0 + }, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"cIg" = ( +/turf/closed/wall/r_wall, +/area/science/server) +"cIh" = ( +/obj/structure/closet, +/obj/item/storage/box/lights/mixed, +/obj/item/device/flashlight, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cIi" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cIj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/biohazard{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cIk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cIl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cIm" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Research and Development Lab"; + req_access_txt = "0"; + req_one_access_txt = "7;29" + }, +/turf/open/floor/plasteel/whitepurple{ + dir = 4 + }, +/area/science/lab) +"cIn" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cIp" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/medical/virology) +"cIq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation B"; + req_access_txt = "39" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cIr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation A"; + req_access_txt = "39" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cIs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/closed/wall, +/area/medical/virology) +"cIt" = ( +/obj/structure/closet/wardrobe/virology_white, +/obj/item/storage/backpack/satchel/vir, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/turf/open/floor/plasteel/vault, +/area/medical/virology) +"cIu" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/blood, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood/AMinus, +/obj/item/reagent_containers/blood/BMinus{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/blood/BPlus{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OPlus{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/turf/open/floor/plasteel/vault, +/area/medical/virology) +"cIv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/vault, +/area/medical/virology) +"cIw" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/plasteel/vault, +/area/medical/virology) +"cIx" = ( +/obj/structure/closet/l3closet/virology, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/vault, +/area/medical/virology) +"cIy" = ( +/obj/structure/sign/warning/biohazard{ + pixel_x = -32 + }, +/turf/open/space, +/area/space/nearstation) +"cIz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;5;39;6" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cIA" = ( +/obj/structure/bed/roller, +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/floorgrime, +/area/maintenance/aft) +"cIB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plating, +/area/maintenance/aft) +"cIC" = ( +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/structure/rack, +/obj/item/clothing/suit/toggle/labcoat, +/obj/item/clothing/suit/apron/surgical, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/mask/breath/medical, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/aft) +"cID" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cIE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/escape{ + dir = 2 + }, +/area/hallway/primary/aft) +"cIF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/escape{ + dir = 2 + }, +/area/hallway/primary/aft) +"cIG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway - Aft"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel/escape{ + dir = 2 + }, +/area/hallway/primary/aft) +"cIH" = ( +/obj/structure/sign/directions/evac, +/turf/closed/wall/r_wall, +/area/hallway/primary/aft) +"cII" = ( +/obj/structure/table, +/obj/item/circular_saw, +/obj/item/scalpel{ + pixel_y = 12 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/item/razor{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/robotics/lab) +"cIJ" = ( +/obj/effect/landmark/start/roboticist, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"cIK" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"cIL" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/surgical_drapes, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/robotics/lab) +"cIM" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cIN" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table, +/obj/item/storage/box/bodybags{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/borg/upgrade/rename, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cIO" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/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/item/device/multitool{ + pixel_x = 3 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cIP" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/science/robotics/lab) +"cIQ" = ( +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"cIR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"cIS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/science/research) +"cIT" = ( +/turf/closed/wall, +/area/science/server) +"cIU" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cIV" = ( +/obj/structure/chair/office/light, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cIW" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cIX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Server Access"; + req_access_txt = "30" + }, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cIY" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/telecomms/server/walkway, +/area/science/server) +"cIZ" = ( +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/manifold{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/airalarm/server{ + dir = 8; + pixel_x = 22 + }, +/turf/open/floor/plasteel/dark/telecomms/server/walkway, +/area/science/server) +"cJa" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cJb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cJc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"cJd" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cJe" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cJf" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"cJg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/bedsheet/medical, +/obj/structure/bed, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cJh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cJi" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/bedsheet/medical, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cJj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/medical/virology) +"cJk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/virology{ + name = "Break Room"; + req_access_txt = "39" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen, +/area/medical/virology) +"cJl" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Research Lab Maintenance"; + req_access_txt = "0"; + req_one_access_txt = "7;29" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJn" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJo" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/wrench, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJs" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJt" = ( +/obj/structure/rack, +/obj/item/screwdriver{ + pixel_y = 6 + }, +/obj/item/crowbar, +/obj/item/storage/pill_bottle, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/item/cigbutt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/aft) +"cJv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Medical Surplus Storeroom"; + req_access_txt = "12"; + req_one_access_txt = "0" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJy" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/vault, +/area/hallway/secondary/exit/departure_lounge) +"cJz" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/vault, +/area/hallway/secondary/exit/departure_lounge) +"cJA" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plasteel/vault, +/area/hallway/secondary/exit/departure_lounge) +"cJB" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault, +/area/hallway/secondary/exit/departure_lounge) +"cJC" = ( +/obj/machinery/vending/coffee, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault, +/area/hallway/secondary/exit/departure_lounge) +"cJD" = ( +/obj/machinery/vending/snack/random, +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault, +/area/hallway/secondary/exit/departure_lounge) +"cJE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"cJF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cJG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/secondary/exit/departure_lounge) +"cJH" = ( +/obj/structure/table, +/obj/item/retractor, +/obj/item/hemostat, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -29 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/science/robotics/lab) +"cJJ" = ( +/obj/machinery/computer/operating{ + dir = 1; + name = "Robotics Operating Computer" + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/robotics/lab) +"cJK" = ( +/obj/structure/table, +/obj/item/device/mmi, +/obj/item/device/mmi, +/obj/item/device/mmi, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/science/robotics/lab) +"cJL" = ( +/obj/machinery/door/window/eastleft{ + dir = 1; + name = "Robotics Deliveries"; + req_access_txt = "29" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cJM" = ( +/obj/structure/closet/wardrobe/robotics_black{ + pixel_x = 2 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cJN" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/crowbar, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cJO" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 2 + }, +/area/science/research) +"cJP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 2 + }, +/area/science/research) +"cJQ" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"cJR" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cJS" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/machinery/computer/rdservercontrol{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cJT" = ( +/obj/structure/table, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cJU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/server) +"cJW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 1; + external_pressure_bound = 120; + name = "server vent" + }, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"cJX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"cJY" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/costume, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cJZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKa" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/science, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKb" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cKf" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cKg" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cKh" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cKi" = ( +/obj/structure/table/glass, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/paper, +/obj/item/pen/red, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 9 + }, +/area/medical/virology) +"cKj" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 29 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/virology) +"cKk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/virology) +"cKl" = ( +/obj/structure/table/glass, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/light_switch{ + pixel_y = 26 + }, +/obj/machinery/camera{ + c_tag = "Virology - Break Room"; + dir = 2; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/virology) +"cKm" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/structure/table/glass, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 5 + }, +/area/medical/virology) +"cKn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/aft) +"cKp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 17 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKu" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKv" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKy" = ( +/obj/machinery/power/apc/highcap/five_k{ + dir = 1; + name = "Departure Lounge APC"; + areastring = "/area/hallway/secondary/exit/departure_lounge"; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKA" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKD" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKF" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKG" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Robotics" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cKH" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Robotics Maintenance"; + req_access_txt = "29" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKI" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/science/research) +"cKJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKK" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/abandoned{ + locked = 0; + name = "Storage Room"; + req_access_txt = "0"; + req_one_access_txt = "12;47" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKN" = ( +/obj/item/storage/box/lights/mixed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"cKP" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/aft) +"cKQ" = ( +/obj/machinery/door/airlock/engineering{ + name = "Starboard Quarter Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cKR" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/aft) +"cKS" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/glass/beaker, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cKT" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_y = 4 + }, +/obj/item/pen/red, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cKU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/closed/wall, +/area/medical/virology) +"cKV" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/virology) +"cKW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cKX" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cKY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cKZ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/virology) +"cLa" = ( +/turf/closed/wall, +/area/chapel/office) +"cLb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/maintenance{ + name = "Crematorium Maintenance"; + req_access_txt = "0"; + req_one_access_txt = "27" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + name = "Chapel Office Maintenance"; + req_access_txt = "0"; + req_one_access_txt = "22" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLd" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/aft) +"cLj" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLk" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;5;39;6" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLm" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLn" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=10-Aft-To-Central"; + location = "9.4-Escape-4" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLs" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLv" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;47" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"cLy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLC" = ( /obj/machinery/doorButtons/airlock_controller{ idExterior = "incinerator_airlock_exterior"; idInterior = "incinerator_airlock_interior"; @@ -56950,13908 +68304,22 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"clT" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1441; - id = "n2_in" - }, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"clU" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "n2_sensor" - }, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"clV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 1; - frequency = 1441; - id_tag = "n2_out"; - name = "n2 out" - }, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"clW" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1441; - id = "o2_in" - }, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"clX" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "o2_sensor" - }, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"clY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 1; - frequency = 1441; - id_tag = "o2_out"; - name = "o2 out" - }, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"clZ" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1441; - id = "air_in" - }, -/turf/open/floor/engine/air, -/area/engine/atmos) -"cma" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "air_sensor" - }, -/turf/open/floor/engine/air, -/area/engine/atmos) -"cmb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/on{ - dir = 1; - frequency = 1441; - id_tag = "air_out"; - name = "air out" - }, -/turf/open/floor/engine/air, -/area/engine/atmos) -"cmc" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/engine/atmos) -"cmd" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/engine/atmos) -"cme" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"cmf" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cmg" = ( -/turf/closed/wall, -/area/medical/surgery) -"cmh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/medical/surgery) -"cmi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/surgery) -"cmj" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cmk" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/sleeper) -"cml" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cmm" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cmn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cmo" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/sleeper) -"cmp" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/whiteblue, -/area/medical/sleeper) -"cmq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 9 - }, -/area/medical/medbay/central) -"cmr" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/medbay/central) -"cms" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/medbay/central) -"cmt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/medbay/central) -"cmu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cmv" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Medbay Central APC"; - areastring = "/area/medical/medbay/central"; - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Medbay Hallway Fore"; - dir = 2; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cmw" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/medbay/central) -"cmx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cmy" = ( -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer"; - name = "Medbay Exit Button"; - normaldoorcontrol = 1; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cmz" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/medbay/central) -"cmA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/medbay/central) -"cmB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = null; - name = "Chemistry Lab"; - req_access_txt = "5; 33" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cmC" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 8 - }, -/area/medical/chemistry) -"cmD" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whiteyellow/corner{ - dir = 4 - }, -/area/medical/chemistry) -"cmE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 1 - }, -/area/medical/chemistry) -"cmF" = ( -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 5 - }, -/area/medical/chemistry) -"cmG" = ( -/obj/machinery/chem_master, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/noticeboard{ - desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; - name = "requests board"; - pixel_x = 32 - }, -/turf/open/floor/plasteel/whiteyellow{ - dir = 4 - }, -/area/medical/chemistry) -"cmH" = ( -/obj/machinery/rnd/destructive_analyzer, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cmI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cmJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/rnd/protolathe/department/science, -/turf/open/floor/plasteel, -/area/science/lab) -"cmK" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cmL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cmM" = ( -/obj/machinery/disposal/bin{ - pixel_x = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 4 - }, -/area/science/lab) -"cmN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cmO" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cmP" = ( -/obj/machinery/power/apc/highcap/ten_k{ - dir = 1; - name = "Research Division APC"; - areastring = "/area/science/research"; - pixel_y = 25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/camera{ - c_tag = "Research Division - Airlock"; - dir = 2; - network = list("SS13","RD") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cmQ" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research) -"cmR" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cmS" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cmT" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/cigbutt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cmU" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cmV" = ( -/obj/structure/chair/stool, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"cmW" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"cmX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"cmY" = ( -/obj/item/cigbutt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"cmZ" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/vending/cola/random, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"cna" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/mob/living/simple_animal/pet/dog/pug{ - desc = "It's Pugley IV, the research department's lovable pug clone. Hopefully nothing happens to this one - fourth time lucky!"; - name = "Pugley IV"; - real_name = "Pugley IV" - }, -/turf/open/floor/engine, -/area/science/explab) -"cnb" = ( -/obj/item/device/radio/beacon, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/engine, -/area/science/explab) -"cnc" = ( -/obj/machinery/rnd/experimentor, -/turf/open/floor/engine, -/area/science/explab) -"cnd" = ( -/obj/effect/landmark/blobstart, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/engine, -/area/science/explab) -"cne" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/explab) -"cnf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/engine, -/area/science/explab) -"cng" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"cnh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"cni" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 2 - }, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"cnj" = ( -/obj/machinery/door/airlock/public/glass{ - autoclose = 0; - frequency = 1449; - heat_proof = 1; - icon_state = "door_locked"; - id_tag = "incinerator_airlock_interior"; - locked = 1; - name = "Incinerator Interior Airlock"; - req_access_txt = "12" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"cnk" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"cnl" = ( -/turf/open/floor/engine/n2, -/area/engine/atmos) -"cnm" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"cnn" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - N2"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"cno" = ( -/turf/open/floor/engine/o2, -/area/engine/atmos) -"cnp" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"cnq" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - O2"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"cnr" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/engine/air, -/area/engine/atmos) -"cns" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine/air, -/area/engine/atmos) -"cnt" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - Air"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/engine/air, -/area/engine/atmos) -"cnu" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 2 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"cnv" = ( -/obj/machinery/door/airlock/atmos/glass{ - heat_proof = 1; - name = "Auxiliary Chamber"; - req_access_txt = "24" - }, -/turf/open/floor/plating, -/area/engine/atmos) -"cnw" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"cnx" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/plating/airless, -/area/engine/atmos) -"cny" = ( -/obj/machinery/vending/boozeomat, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cnz" = ( -/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/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/maintenance/port/aft) -"cnA" = ( -/obj/structure/rack, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/bottle/vermouth{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cnB" = ( -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/structure/table/wood, -/obj/structure/light_construct/small{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cnC" = ( -/obj/structure/chair/stool, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cnD" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"cnE" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cnF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cnG" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cnH" = ( -/obj/item/cigbutt, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cnI" = ( -/obj/structure/chair, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cnJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cnK" = ( -/obj/item/cigbutt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cnL" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cnM" = ( -/obj/structure/chair, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cnN" = ( -/obj/structure/bed/roller, -/obj/item/device/radio/intercom{ - broadcasting = 1; - freerange = 0; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_x = -30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/machinery/camera{ - c_tag = "Medbay Sleepers"; - dir = 4; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 10 - }, -/area/medical/sleeper) -"cnO" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/sleeper) -"cnP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cnQ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 2 - }, -/area/medical/sleeper) -"cnR" = ( -/obj/structure/bed/roller, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 6 - }, -/area/medical/sleeper) -"cnS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/whiteblue, -/area/medical/sleeper) -"cnT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/medbay/central) -"cnU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cnV" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cnW" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cnX" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cnY" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cnZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"coa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/turf/open/floor/plasteel/whiteyellow/corner{ - dir = 2 - }, -/area/medical/medbay/central) -"cob" = ( -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/item/storage/pill_bottle/epinephrine{ - pixel_x = 3 - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 8 - }, -/area/medical/chemistry) -"coc" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cod" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"coe" = ( -/obj/machinery/smoke_machine, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 4 - }, -/area/medical/chemistry) -"cof" = ( -/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/structure/table/glass, -/turf/open/floor/plasteel/whiteyellow{ - dir = 4 - }, -/area/medical/chemistry) -"cog" = ( -/obj/machinery/computer/rdconsole/core{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/lab) -"coh" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/lab) -"coi" = ( -/obj/item/reagent_containers/glass/beaker/sulphuric, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/rnd/circuit_imprinter/department/science, -/turf/open/floor/plasteel, -/area/science/lab) -"coj" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cok" = ( -/obj/effect/landmark/start/scientist, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"col" = ( -/obj/structure/table, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/micro_laser, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"com" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/lab) -"con" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"coo" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cop" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"coq" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"cor" = ( -/obj/item/storage/toolbox/emergency, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cos" = ( -/obj/machinery/light/small, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cot" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/device/flashlight, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cou" = ( -/obj/item/stack/packageWrap, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cov" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/item/cigbutt, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"cow" = ( -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"cox" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"coy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"coz" = ( -/obj/machinery/vending/coffee, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"coA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/engine, -/area/science/explab) -"coB" = ( -/obj/machinery/button/door{ - id = "telelab"; - name = "Test Chamber Blast Doors"; - pixel_y = -25 - }, -/turf/open/floor/engine, -/area/science/explab) -"coC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/engine, -/area/science/explab) -"coD" = ( -/obj/structure/closet, -/obj/item/storage/box/donkpockets, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"coE" = ( -/obj/structure/closet/crate, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/item/device/assembly/infra, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"coF" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/item/shard, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"coG" = ( -/obj/structure/table, -/obj/structure/sign/departments/medbay{ - pixel_y = 32 - }, -/obj/item/reagent_containers/glass/beaker/large, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"coH" = ( -/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/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"coI" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"coJ" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/syringe, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"coK" = ( -/obj/item/reagent_containers/glass/bottle/toxin{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/reagentgrinder{ - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"coL" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 2; - name = "Incinerator Output Pump"; - on = 1; - use_power = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/open/space, -/area/maintenance/disposal/incinerator) -"coM" = ( -/obj/machinery/doorButtons/access_button{ - idDoor = "incinerator_airlock_exterior"; - layer = 3.1; - idSelf = "incinerator_access_control"; - name = "Incinerator airlock control"; - pixel_x = 8; - pixel_y = -24 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/warning/fire{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - on = 1 - }, -/obj/machinery/doorButtons/access_button{ - idDoor = "incinerator_airlock_interior"; - idSelf = "incinerator_access_control"; - name = "Incinerator airlock control"; - pixel_x = 8; - pixel_y = 24 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"coN" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"coO" = ( -/obj/structure/sign/warning/fire{ - pixel_x = 32 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 2; - on = 1 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"coP" = ( -/obj/machinery/light/small, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"coQ" = ( -/obj/machinery/light/small, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"coR" = ( -/turf/open/floor/engine/air, -/area/engine/atmos) -"coS" = ( -/obj/machinery/light/small, -/turf/open/floor/engine/air, -/area/engine/atmos) -"coT" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"coU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"coV" = ( -/obj/structure/girder, -/turf/open/floor/plating/airless, -/area/engine/atmos) -"coW" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"coX" = ( -/obj/structure/closet/secure_closet/bar{ - pixel_x = -3; - pixel_y = -1; - req_access_txt = "25" - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"coY" = ( -/turf/open/floor/wood, -/area/maintenance/port/aft) -"coZ" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/port/aft) -"cpa" = ( -/obj/item/reagent_containers/glass/rag, -/obj/structure/table/wood, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/maintenance/port/aft) -"cpb" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cpc" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/port/aft) -"cpd" = ( -/obj/structure/chair/stool, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"cpe" = ( -/obj/structure/chair, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cpf" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cpg" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cph" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cpi" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cpj" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Observation"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cpk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cpl" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cpm" = ( -/obj/item/cigbutt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 28 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cpn" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue, -/area/medical/sleeper) -"cpo" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 10 - }, -/area/medical/sleeper) -"cpp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 2 - }, -/area/medical/sleeper) -"cpq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 6 - }, -/area/medical/sleeper) -"cpr" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue, -/area/medical/sleeper) -"cps" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"cpt" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cpu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cpv" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cpw" = ( -/obj/item/device/radio/intercom{ - broadcasting = 1; - freerange = 0; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_y = -30 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cpx" = ( -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 2 - }, -/area/medical/medbay/central) -"cpy" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 2 - }, -/area/medical/medbay/central) -"cpz" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"cpA" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/whiteyellow/corner{ - dir = 2 - }, -/area/medical/medbay/central) -"cpB" = ( -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 6 - }, -/area/medical/medbay/central) -"cpC" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastright{ - name = "Chemistry Desk"; - req_access_txt = "5; 33" - }, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Chemistry Desk"; - req_access_txt = "5" - }, -/obj/item/reagent_containers/glass/bottle/morphine, -/obj/item/reagent_containers/glass/bottle/toxin{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 8 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = -5 - }, -/obj/item/reagent_containers/syringe/epinephrine, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cpD" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/chemist, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 8 - }, -/area/medical/chemistry) -"cpE" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/chemist, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cpF" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 4 - }, -/area/medical/chemistry) -"cpG" = ( -/obj/structure/table/glass, -/obj/item/folder/white{ - pixel_y = 2 - }, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/screwdriver{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/device/radio/headset/headset_med, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/whiteyellow{ - dir = 4 - }, -/area/medical/chemistry) -"cpH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cpI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway - Fore"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"cpJ" = ( -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/metal/fifty, -/obj/item/clothing/glasses/welding, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cpK" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/lab) -"cpL" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cpM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/chair/stool, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cpN" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cpO" = ( -/obj/structure/table, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/scanning_module, -/obj/item/stock_parts/scanning_module, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 30 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cpP" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpQ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpR" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpS" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"cpT" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Research Division" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cpU" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/aft) -"cpV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cpW" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cpX" = ( -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"cpY" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"cpZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"cqa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/noticeboard{ - pixel_y = -32 - }, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Research Division - Break Room"; - dir = 1; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"cqb" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"cqc" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/science/explab) -"cqd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "telelab"; - name = "test chamber blast door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/science/explab) -"cqe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "telelab"; - name = "test chamber blast door" - }, -/turf/open/floor/plating, -/area/science/explab) -"cqf" = ( -/obj/machinery/door/poddoor/preopen{ - id = "telelab"; - name = "test chamber blast door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/engine, -/area/science/explab) -"cqg" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cqh" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - locked = 0; - name = "Storage Room"; - req_access_txt = "0"; - req_one_access_txt = "12;47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cqi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cqj" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cqk" = ( -/obj/structure/rack, -/obj/item/clothing/suit/apron, -/obj/item/clothing/mask/surgical, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cql" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cqm" = ( -/obj/machinery/chem_master/condimaster{ - name = "CondiMaster Neo"; - pixel_x = -4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cqn" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/space, -/area/space/nearstation) -"cqo" = ( -/obj/machinery/door/airlock/public/glass{ - autoclose = 0; - frequency = 1449; - heat_proof = 1; - icon_state = "door_locked"; - id_tag = "incinerator_airlock_exterior"; - locked = 1; - name = "Incinerator Exterior Airlock"; - req_access_txt = "12" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"cqp" = ( -/obj/item/stack/rods{ - amount = 25 - }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"cqq" = ( -/turf/open/floor/plating/airless, -/area/engine/atmos) -"cqr" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/item/reagent_containers/glass/beaker/cryoxadone, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/dropper, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cqs" = ( -/obj/item/reagent_containers/food/drinks/ale, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cqt" = ( -/obj/structure/light_construct/small{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 30 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cqu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cqv" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/surgery) -"cqw" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/medical/surgery) -"cqx" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/medical/surgery) -"cqy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Observation"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/medical/surgery) -"cqz" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/medical/sleeper) -"cqA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"cqB" = ( -/obj/machinery/door/firedoor, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cqC" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cqD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cqE" = ( -/turf/closed/wall, -/area/crew_quarters/heads/cmo) -"cqF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "cmoprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"cqG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "cmoprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"cqH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "cmoprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"cqI" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/turf/open/floor/plating, -/area/medical/medbay/central) -"cqJ" = ( -/obj/machinery/reagentgrinder, -/obj/machinery/requests_console{ - department = "Chemistry"; - departmentType = 2; - pixel_x = -30; - receive_ore_updates = 1 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 8 - }, -/area/medical/chemistry) -"cqK" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cqL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cqM" = ( -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/structure/table/glass, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 4 - }, -/area/medical/chemistry) -"cqN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/departments/chemistry{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cqO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/departments/science{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/purple/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"cqP" = ( -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/lab) -"cqQ" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/structure/table, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cqR" = ( -/obj/structure/table, -/obj/structure/disposalpipe/segment, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/disk/tech_disk, -/obj/item/disk/tech_disk, -/obj/item/disk/design_disk, -/obj/item/disk/design_disk, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cqS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cqT" = ( -/obj/machinery/camera{ - c_tag = "Research and Development"; - dir = 8; - network = list("SS13","RD") - }, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/scanning_module{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/stock_parts/scanning_module, -/turf/open/floor/plasteel, -/area/science/lab) -"cqU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - cyclelinkeddir = 1; - id_tag = "ResearchInt"; - name = "Research Division"; - req_access_txt = "0"; - req_one_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"cqV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - cyclelinkeddir = 1; - id_tag = "ResearchInt"; - name = "Research Division"; - req_access_txt = "0"; - req_one_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"cqW" = ( -/obj/machinery/door/window/westleft{ - dir = 2; - name = "Research Division Deliveries"; - req_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"cqX" = ( -/obj/machinery/door/airlock{ - name = "Research Emergency Storage"; - req_access_txt = "0"; - req_one_access_txt = "47" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cqY" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/medical{ - name = "Research Break Room"; - req_access_txt = "0"; - req_one_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"cqZ" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/window/reinforced/tinted/fulltile, -/turf/open/floor/plating, -/area/science/research) -"cra" = ( -/turf/closed/wall, -/area/science/explab) -"crb" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_y = 30; - receive_ore_updates = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"crc" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/pen, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"crd" = ( -/obj/structure/table/reinforced, -/obj/item/hand_labeler, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/device/taperecorder, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cre" = ( -/obj/machinery/computer/rdconsole/experiment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"crf" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/book/manual/experimentor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"crg" = ( -/obj/machinery/button/door{ - id = "telelab"; - name = "Test Chamber Blast Doors"; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/reagent_containers/dropper, -/obj/item/stack/medical/bruise_pack{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/stack/medical/ointment, -/obj/item/device/healthanalyzer, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"crh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cri" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"crj" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"crk" = ( -/obj/structure/rack, -/obj/item/clothing/under/color/white, -/obj/item/clothing/head/soft/mime, -/obj/item/clothing/under/color/white, -/obj/item/clothing/head/soft/mime, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/mask/surgical, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"crl" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"crm" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"crn" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"cro" = ( -/obj/machinery/chem_heater, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"crp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon{ - dir = 1; - name = "incinerator output intake" - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"crq" = ( -/obj/machinery/igniter{ - icon_state = "igniter0"; - id = "Incinerator"; - luminosity = 2; - on = 0 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"crr" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1441; - id = "air_in" - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"crs" = ( -/obj/machinery/door/poddoor{ - id = "auxincineratorvent"; - name = "Incineration Chamber Vent" - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"crt" = ( -/obj/item/device/flashlight/lamp, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cru" = ( -/obj/item/reagent_containers/food/drinks/bottle/tequila, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"crv" = ( -/obj/item/reagent_containers/food/drinks/beer, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"crw" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/port/aft) -"crx" = ( -/obj/structure/mineral_door/wood{ - name = "The Gobbetting Barmaid" - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cry" = ( -/obj/structure/table, -/obj/item/hemostat, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel, -/area/medical/surgery) -"crz" = ( -/obj/structure/table, -/obj/item/surgicaldrill, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/surgery) -"crA" = ( -/obj/structure/table, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/item/circular_saw, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/surgery) -"crB" = ( -/obj/structure/table, -/obj/item/cautery{ - pixel_x = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/razor{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/surgery) -"crC" = ( -/obj/structure/table, -/obj/item/retractor, -/turf/open/floor/plasteel, -/area/medical/surgery) -"crD" = ( -/obj/machinery/computer/med_data{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/surgery) -"crE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/surgery) -"crF" = ( -/obj/structure/table/reinforced, -/obj/item/device/radio/intercom{ - broadcasting = 1; - freerange = 0; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_x = 30 - }, -/obj/structure/bedsheetbin{ - pixel_x = 2 - }, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/obj/item/gun/syringe, -/obj/item/clothing/glasses/eyepatch, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/surgery) -"crG" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Cryogenics APC"; - areastring = "/area/medical/cryo"; - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 6; - pixel_y = 2 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/cryo) -"crH" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/closet/secure_closet/medical1{ - pixel_x = -3 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"crI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"crJ" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"crK" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"crL" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/cryo) -"crM" = ( -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"crN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"crO" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"crP" = ( -/obj/item/cartridge/medical{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/cartridge/medical{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/cartridge/medical, -/obj/item/cartridge/chemistry{ - pixel_y = 2 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"crQ" = ( -/obj/item/folder/blue, -/obj/structure/table/glass, -/obj/item/stamp/cmo, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"crR" = ( -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/clothing/glasses/hud/health, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"crS" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/item/storage/secure/safe{ - pixel_x = 5; - pixel_y = 26 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 30 - }, -/obj/item/screwdriver{ - pixel_y = 6 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"crT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"crU" = ( -/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") - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 10 - }, -/area/medical/chemistry) -"crV" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whiteyellow/corner{ - dir = 8 - }, -/area/medical/chemistry) -"crW" = ( -/obj/machinery/disposal/bin{ - pixel_x = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"crX" = ( -/obj/machinery/chem_dispenser{ - layer = 2.7 - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 4 - }, -/area/medical/chemistry) -"crY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters_2"; - name = "chemistry shutters" - }, -/turf/open/floor/plating, -/area/medical/chemistry) -"crZ" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/turf/open/floor/plasteel/yellow{ - dir = 4 - }, -/area/hallway/primary/aft) -"csa" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/hallway/primary/aft) -"csb" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"csc" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/purple/side{ - dir = 4 - }, -/area/hallway/primary/aft) -"csd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/purple, -/area/hallway/primary/aft) -"cse" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters_2"; - name = "research shutters" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/lab) -"csf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/lab) -"csg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair/stool, -/turf/open/floor/plasteel/white, -/area/science/lab) -"csh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"csi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"csj" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/lab) -"csk" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/science/lab) -"csl" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 9 - }, -/area/science/research) -"csm" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/research) -"csn" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"cso" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Research Division Hallway - Central"; - dir = 2; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"csp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"csq" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 - }, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/science/research) -"csr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/science/research) -"css" = ( -/turf/open/floor/plasteel/white/side{ - dir = 6 - }, -/area/science/research) -"cst" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/research) -"csu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/research) -"csv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"csw" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-10" - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 2 - }, -/area/science/research) -"csx" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/explab) -"csy" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"csz" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"csA" = ( -/obj/effect/landmark/start/scientist, -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"csB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/crowbar, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/glasses/science, -/obj/item/device/multitool{ - pixel_x = 3 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"csC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/science/explab) -"csD" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"csE" = ( -/obj/structure/girder, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"csF" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_y = 6 - }, -/obj/item/pen, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"csG" = ( -/obj/structure/table, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/reagent_containers/blood{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"csH" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"csI" = ( -/obj/structure/bed, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"csJ" = ( -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/compressor{ - comp_id = "incineratorturbine"; - dir = 1; - luminosity = 2 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"csK" = ( -/obj/structure/mineral_door/wood{ - name = "The Gobbetting Barmaid" - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/port/aft) -"csL" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/suit/apron/surgical, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/surgery) -"csM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"csN" = ( -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"csO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"csP" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Surgery APC"; - areastring = "/area/medical/surgery"; - pixel_x = 26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/table, -/obj/item/surgical_drapes, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/surgery) -"csQ" = ( -/obj/structure/bed/roller, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"csR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"csS" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/bedsheet/medical, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"csT" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/surgery) -"csU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/cryo) -"csV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"csW" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"csX" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 2 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel, -/area/medical/cryo) -"csY" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"csZ" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cta" = ( -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/medbay/central) -"ctb" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"ctc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"ctd" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/chief_medical_officer, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cte" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/mob/living/simple_animal/pet/cat/Runtime, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"ctf" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "CMO's Office APC"; - areastring = "/area/crew_quarters/heads/cmo"; - pixel_x = 26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/camera{ - c_tag = "CMO's Office"; - dir = 8; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"ctg" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/aft) -"cth" = ( -/obj/structure/closet/wardrobe/chemistry_white{ - pixel_x = -3 - }, -/obj/item/storage/backpack/satchel/chem, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cti" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 8 - }, -/area/medical/chemistry) -"ctj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"ctk" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/chemist, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 4 - }, -/area/medical/chemistry) -"ctl" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Chemistry Desk"; - req_access_txt = "5; 33" - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters_2"; - name = "chemistry shutters" - }, -/turf/open/floor/plasteel/whiteyellow{ - dir = 4 - }, -/area/medical/chemistry) -"ctm" = ( -/turf/open/floor/plasteel/yellow{ - dir = 4 - }, -/area/hallway/primary/aft) -"ctn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/hallway/primary/aft) -"cto" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/purple/side{ - dir = 4 - }, -/area/hallway/primary/aft) -"ctp" = ( -/turf/open/floor/plasteel/purple, -/area/hallway/primary/aft) -"ctq" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - dir = 4; - name = "Research and Development Desk"; - req_access_txt = "7" - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/door/firedoor, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters_2"; - name = "research shutters" - }, -/turf/open/floor/plating, -/area/science/lab) -"ctr" = ( -/obj/effect/landmark/start/scientist, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/lab) -"cts" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"ctt" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"ctu" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"ctv" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 4 - }, -/area/science/lab) -"ctw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Research and Development Lab"; - req_access_txt = "0"; - req_one_access_txt = "7;29" - }, -/turf/open/floor/plasteel/whitepurple{ - dir = 4 - }, -/area/science/lab) -"ctx" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/research) -"cty" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ctz" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/research) -"ctA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ctB" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"ctC" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ctD" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ctE" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ctF" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ctG" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"ctH" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ctI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ctJ" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 4 - }, -/area/science/research) -"ctK" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Experimentation Lab"; - req_access_txt = "8" - }, -/turf/open/floor/plasteel/whitepurple{ - dir = 4 - }, -/area/science/explab) -"ctL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/explab) -"ctM" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"ctN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"ctO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"ctP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"ctQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"ctR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"ctS" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Experimentation Lab Maintenance"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ctT" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ctU" = ( -/obj/structure/bed/roller, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ctV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"ctW" = ( -/obj/structure/barricade/wooden, -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ctX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ctY" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ctZ" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/structure/rack, -/obj/item/storage/firstaid/regular, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cua" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cub" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/space, -/area/space/nearstation) -"cuc" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/maintenance/disposal/incinerator) -"cud" = ( -/obj/structure/cable, -/obj/machinery/power/turbine{ - luminosity = 2 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cue" = ( -/obj/structure/lattice/catwalk, -/obj/item/wrench, -/turf/open/space, -/area/space/nearstation) -"cuf" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/port/aft) -"cug" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/port/aft) -"cuh" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cui" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Surgery Maintenance"; - req_access_txt = "45" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cuj" = ( -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cuk" = ( -/obj/structure/table/optable, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cul" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cum" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre"; - req_access_txt = "45" - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cun" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cuo" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cup" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cuq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Surgery Observation"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cur" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/cryo) -"cus" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cut" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cuu" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cuv" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cuw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cux" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/medbay/central) -"cuy" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cuz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "cmoprivacy"; - name = "privacy shutter" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"cuA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cuB" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cuC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cuD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cuE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cuF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "CMO Maintenance"; - req_access_txt = "40" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cuG" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cuH" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Chemistry APC"; - areastring = "/area/medical/chemistry"; - pixel_x = -24 - }, -/obj/structure/closet/secure_closet/chemical{ - pixel_x = -3 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cuI" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 10 - }, -/area/medical/chemistry) -"cuJ" = ( -/obj/machinery/chem_heater{ - pixel_x = 4 - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 2 - }, -/area/medical/chemistry) -"cuK" = ( -/obj/machinery/chem_master, -/obj/structure/noticeboard{ - desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; - dir = 1; - name = "requests board"; - pixel_y = -32 - }, -/obj/machinery/button/door{ - id = "chemistry_shutters_2"; - name = "chemistry shutters control"; - pixel_x = 26; - pixel_y = -26; - req_access_txt = "5; 33" - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 6 - }, -/area/medical/chemistry) -"cuL" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/turf/open/floor/plasteel/purple, -/area/hallway/primary/aft) -"cuM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters_2"; - name = "research shutters" - }, -/turf/open/floor/plating, -/area/science/lab) -"cuN" = ( -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "Research Lab APC"; - areastring = "/area/science/lab"; - pixel_y = -26 - }, -/obj/structure/cable/yellow, -/obj/structure/table, -/obj/machinery/button/door{ - id = "research_shutters_2"; - name = "research shutters control"; - pixel_x = -26; - pixel_y = -26; - req_access_txt = "7" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cuO" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cuP" = ( -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_y = -30; - receive_ore_updates = 1 - }, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cuQ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/eastleft{ - dir = 1; - name = "Research and Development Deliveries"; - req_access_txt = "7" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/lab) -"cuR" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cuS" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"cuT" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cuU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/research) -"cuV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cuW" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cuX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cuY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"cuZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cva" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Research Division Hallway - Starboard"; - dir = 1; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cvb" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cvc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cvd" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 2 - }, -/area/science/research) -"cve" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 6 - }, -/area/science/research) -"cvf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/science/explab) -"cvg" = ( -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/explab) -"cvh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "Experimentation Lab APC"; - areastring = "/area/science/explab"; - pixel_y = -24 - }, -/obj/structure/cable/yellow, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cvi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/machinery/camera{ - c_tag = "Experimentation Lab"; - dir = 1; - network = list("SS13","RD") - }, -/obj/machinery/light, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cvj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cvk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cvl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cvm" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cvn" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cvo" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cvp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cvq" = ( -/obj/structure/barricade/wooden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cvr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cvs" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/aft) -"cvt" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cvu" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/space, -/area/space/nearstation) -"cvv" = ( -/obj/structure/disposaloutlet{ - dir = 2 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"cvw" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"cvx" = ( -/obj/machinery/door/poddoor{ - id = "turbinevent"; - name = "Turbine Vent" - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cvy" = ( -/obj/item/toy/cards/deck, -/obj/structure/table/wood/poker, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cvz" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/maintenance/port/aft) -"cvA" = ( -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/reagent_containers/food/drinks/beer{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/ale, -/obj/structure/table/wood, -/obj/item/device/instrument/eguitar, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cvB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/light_switch{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/surgery) -"cvC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cvD" = ( -/obj/machinery/computer/operating{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cvE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cvF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/surgery) -"cvG" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cvH" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cvI" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/cryo) -"cvJ" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/table/reinforced, -/obj/item/crowbar, -/obj/machinery/camera{ - c_tag = "Medbay Cryo"; - dir = 1; - network = list("SS13","Medbay") - }, -/obj/item/screwdriver{ - pixel_y = 6 - }, -/obj/item/clothing/neck/stethoscope, -/obj/item/wrench/medical, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cvK" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - broadcasting = 1; - freerange = 0; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_y = -30 - }, -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cvL" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1; - name = "Connector Port (Air Supply)" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cvM" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1; - name = "Connector Port (Air Supply)" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cvN" = ( -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cvO" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 2 - }, -/area/medical/medbay/central) -"cvP" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cvQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cvR" = ( -/obj/structure/table/glass, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/storage/secure/briefcase, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cvS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cvT" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/keycard_auth{ - pixel_x = 26; - pixel_y = -7 - }, -/obj/machinery/computer/med_data/laptop, -/obj/structure/table/glass, -/obj/machinery/button/door{ - id = "cmoprivacy"; - name = "Privacy Shutters Control"; - pixel_x = 26; - pixel_y = 4 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cvU" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cvV" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chemistry Lab Maintenance"; - req_access_txt = "5; 33" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cvW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -29 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/aft) -"cvX" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cvY" = ( -/obj/machinery/power/apc/highcap/five_k{ - dir = 4; - name = "Aft Hallway APC"; - areastring = "/area/hallway/primary/aft"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/purple/corner{ - dir = 4 - }, -/area/hallway/primary/aft) -"cvZ" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Research and Development" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/lab) -"cwa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Research Lab Maintenance"; - req_access_txt = "0"; - req_one_access_txt = "7;29" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cwb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white/side{ - dir = 5 - }, -/area/science/research) -"cwc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/science/research) -"cwd" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/science/research) -"cwe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "rdprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"cwf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/door/poddoor/preopen{ - id = "rdprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"cwg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/door/poddoor/preopen{ - id = "rdprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"cwh" = ( -/turf/closed/wall, -/area/crew_quarters/heads/hor) -"cwi" = ( -/turf/closed/wall/r_wall, -/area/science/storage) -"cwj" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/r_wall, -/area/science/storage) -"cwk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/research{ - name = "Toxins Storage"; - req_access_txt = "8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "toxins_blastdoor"; - name = "biohazard containment shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"cwl" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cwm" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cwn" = ( -/obj/structure/closet/l3closet/scientist{ - pixel_x = -2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cwo" = ( -/obj/structure/closet/wardrobe/science_white, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cwp" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cwq" = ( -/obj/structure/rack, -/obj/item/reagent_containers/blood/random, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cwr" = ( -/obj/structure/table, -/obj/structure/bedsheetbin{ - pixel_x = 2 - }, -/obj/item/clothing/mask/muzzle, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cws" = ( -/obj/structure/table, -/obj/item/restraints/handcuffs/cable/white, -/obj/item/gun/syringe, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cwt" = ( -/obj/structure/rack, -/obj/item/hatchet, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cwu" = ( -/obj/machinery/iv_drip, -/obj/item/roller, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cwv" = ( -/obj/structure/rack, -/obj/item/tank/internals/anesthetic, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cww" = ( -/obj/structure/light_construct/small, -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cwx" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"cwy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"cwz" = ( -/obj/item/dice/d20, -/obj/item/dice, -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cwA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/port/aft) -"cwB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cwC" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -28 - }, -/turf/open/floor/plasteel, -/area/medical/surgery) -"cwD" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/surgery) -"cwE" = ( -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Medbay Surgery"; - dir = 1; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cwF" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/surgery) -"cwG" = ( -/obj/item/device/radio/intercom{ - broadcasting = 1; - freerange = 0; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_y = -30 - }, -/obj/structure/closet/crate/freezer/blood, -/turf/open/floor/plasteel, -/area/medical/surgery) -"cwH" = ( -/obj/structure/bed/roller, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -28 - }, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 2 - }, -/area/medical/surgery) -"cwI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 2 - }, -/area/medical/surgery) -"cwJ" = ( -/obj/structure/bed, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/item/bedsheet/medical, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/camera{ - c_tag = "Medbay Recovery Room"; - dir = 1; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 2 - }, -/area/medical/surgery) -"cwK" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cwL" = ( -/turf/closed/wall, -/area/medical/cryo) -"cwM" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/camera{ - c_tag = "Medbay Hallway Central"; - dir = 4; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"cwN" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cwO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/medbay/central) -"cwP" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Chief Medical Officer's Office"; - req_access_txt = "40"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cwQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cwR" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cwS" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/table/glass, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/pen, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cwT" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Medical Officer's Desk"; - departmentType = 5; - name = "Chief Medical Officer RC"; - pixel_y = -32 - }, -/obj/effect/landmark/start/chief_medical_officer, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cwU" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring medbay to ensure patient safety."; - dir = 8; - name = "Medbay Monitor"; - network = list("Medbay"); - pixel_x = 29 - }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/machinery/computer/card/minor/cmo{ - dir = 8 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cwV" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/aft) -"cwW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cwX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/aft) -"cwY" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 11 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cwZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxa" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;5;9" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cxe" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cxf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"cxg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Aft Emergency Storage"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxh" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 14 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "7;47;29;12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxm" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 12 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Research Maintenance"; - req_access_txt = "0"; - req_one_access_txt = "7;47;29" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxq" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"cxr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 13 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cxs" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"cxt" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "rdprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"cxu" = ( -/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_y = 2 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cxv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cxw" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Research Director's Desk"; - departmentType = 5; - name = "Research Director RC"; - pixel_y = 30; - receive_ore_updates = 1 - }, -/obj/machinery/modular_computer/console/preset/research{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cxx" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/landmark/xmastree/rdrod, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/hor) -"cxy" = ( -/obj/structure/displaycase/labcage, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/warning/biohazard{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/hor) -"cxz" = ( -/obj/item/storage/secure/safe{ - pixel_x = 32 - }, -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/hor) -"cxA" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"cxB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"cxC" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"cxD" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/power/apc/highcap/five_k{ - dir = 1; - name = "Toxins Storage APC"; - areastring = "/area/science/storage"; - pixel_y = 25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"cxE" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"cxF" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cxG" = ( -/obj/machinery/camera{ - active_power_usage = 0; - c_tag = "Turbine Vent"; - dir = 4; - network = list("Turbine"); - use_power = 0 - }, -/turf/open/space, -/area/space/nearstation) -"cxH" = ( -/obj/structure/grille/broken, -/turf/open/space, -/area/space/nearstation) -"cxI" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cxJ" = ( -/obj/machinery/vending/assist, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cxK" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/patients_rooms/room_a) -"cxL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/vending/wallmed{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms/room_a) -"cxM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/patients_rooms/room_a) -"cxN" = ( -/obj/machinery/door/airlock/medical{ - name = "Patient Room A"; - req_access_txt = "5" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms/room_a) -"cxO" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cxP" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cxQ" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = -28 - }, -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cxR" = ( -/obj/machinery/suit_storage_unit/cmo, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cxS" = ( -/obj/structure/table/glass, -/obj/item/pen, -/obj/item/clothing/neck/stethoscope, -/obj/structure/extinguisher_cabinet{ - pixel_x = 6; - pixel_y = -30 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cxT" = ( -/turf/closed/wall/r_wall, -/area/medical/genetics) -"cxU" = ( -/turf/closed/wall, -/area/medical/genetics) -"cxV" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Genetics Maintenance"; - req_access_txt = "9"; - req_one_access_txt = "0" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxW" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall, -/area/medical/genetics) -"cxX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/blue/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cxY" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cxZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"cya" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall, -/area/maintenance/aft) -"cyb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cyc" = ( -/obj/item/storage/toolbox/emergency, -/obj/structure/closet/firecloset, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cyd" = ( -/obj/item/tank/internals/air, -/obj/item/tank/internals/air, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/machinery/space_heater, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cye" = ( -/turf/closed/wall, -/area/maintenance/aft) -"cyf" = ( -/turf/closed/wall/r_wall, -/area/science/misc_lab/range) -"cyg" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Research Testing Range Maintenance"; - req_access_txt = "0"; - req_one_access_txt = "7;47;29" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cyh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 6 - }, -/area/science/research) -"cyi" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/research) -"cyj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"cyk" = ( -/obj/machinery/button/door{ - id = "xeno_blastdoor"; - name = "Secure Lab Shutter Control"; - pixel_x = -5; - pixel_y = -5; - req_access_txt = "47" - }, -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "rdprivacy"; - name = "Privacy Shutters Control"; - pixel_x = 5; - pixel_y = 5 - }, -/obj/machinery/button/door{ - id = "Biohazard"; - name = "Entrance Shutter Control"; - pixel_x = -5; - pixel_y = 5; - req_access_txt = "47" - }, -/obj/machinery/button/door{ - id = "toxins_blastdoor"; - name = "Toxins Shutter Control"; - pixel_x = 5; - pixel_y = -5; - req_access_txt = "47" - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cyl" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/research_director, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cym" = ( -/obj/machinery/computer/robotics{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cyn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/hor) -"cyo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/hor) -"cyp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/hor) -"cyq" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"cyr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"cys" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/chair/stool, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"cyt" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"cyu" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"cyv" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cyw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cyx" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cyy" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/science/circuit) -"cyz" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cyA" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cyB" = ( -/obj/structure/target_stake, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cyC" = ( -/obj/structure/closet/crate, -/obj/item/target/alien, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/item/target/clown, -/obj/item/target/syndicate, -/obj/item/target/syndicate, -/obj/item/gun/energy/laser/practice, -/obj/item/gun/energy/laser/practice, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cyD" = ( -/obj/structure/falsewall, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cyE" = ( -/obj/structure/reagent_dispensers/beerkeg{ - desc = "One of the more successful achievements of the Nanotrasen Corporate Warfare Division, their nuclear fission explosives are renowned for being cheap to produce and devastatingly effective. Signs explain that though this particular device has been decommissioned, every Nanotrasen station is equipped with an equivalent one, just in case. All Captains carefully guard the disk needed to detonate them - at least, the sign says they do. There seems to be a tap on the back."; - icon = 'icons/obj/machines/nuke.dmi'; - icon_state = "nuclearbomb_base"; - name = "Nanotrasen-brand nuclear fission explosive"; - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cyF" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/space) -"cyG" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"cyH" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/solar{ - id = "aftport"; - name = "Aft-Port Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port/aft) -"cyI" = ( -/obj/structure/closet, -/obj/item/extinguisher, -/obj/effect/decal/cleanable/cobweb, -/obj/item/device/flashlight, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cyJ" = ( -/obj/structure/closet, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/dropper, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cyK" = ( -/obj/structure/closet/crate, -/obj/item/stack/cable_coil, -/obj/item/grenade/chem_grenade, -/obj/item/device/flashlight, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cyL" = ( -/obj/structure/closet/crate, -/obj/item/coin/silver, -/obj/item/reagent_containers/spray/weedspray, -/obj/item/paper, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cyM" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Port Quarter Maintenance APC"; - areastring = "/area/maintenance/port/aft"; - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cyN" = ( -/obj/structure/table, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/clothing/neck/stethoscope, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Patient Room A APC"; - areastring = "/area/medical/patients_rooms/room_a"; - pixel_x = -26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/patients_rooms/room_a) -"cyO" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms/room_a) -"cyP" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/button/door{ - id = "isola"; - name = "Privacy Shutters"; - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/patients_rooms/room_a) -"cyQ" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "isola"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/medical/patients_rooms/room_a) -"cyR" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cyS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cyT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cyU" = ( -/obj/item/storage/box/rxglasses{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -29 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/vault, -/area/medical/genetics) -"cyV" = ( -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/gloves/color/latex, -/obj/item/storage/box/disks{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/vault, -/area/medical/genetics) -"cyW" = ( -/obj/machinery/requests_console{ - department = "Genetics"; - departmentType = 0; - name = "Genetics Requests Console"; - pixel_y = 30 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/storage/box/monkeycubes, -/obj/item/device/radio/headset/headset_medsci, -/obj/item/device/flashlight/pen{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/device/flashlight/pen{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/structure/noticeboard{ - desc = "A board for pinning important notices upon."; - name = "notice board"; - pixel_x = -32; - pixel_y = 32 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/vault, -/area/medical/genetics) -"cyX" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Genetics Lab APC"; - areastring = "/area/medical/genetics"; - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/storage/pill_bottle/mutadone, -/obj/item/storage/pill_bottle/mannitol, -/obj/structure/table/glass, -/turf/open/floor/plasteel/vault, -/area/medical/genetics) -"cyY" = ( -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/vault, -/area/medical/genetics) -"cyZ" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel/blue/side{ - dir = 9 - }, -/area/medical/genetics) -"cza" = ( -/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 = 32 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/blue/side{ - dir = 5 - }, -/area/medical/genetics) -"czb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "genetics_shutters"; - name = "genetics shutters" - }, -/turf/open/floor/plating, -/area/medical/genetics) -"czc" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/turf/open/floor/plasteel/blue, -/area/medical/genetics) -"czd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/blue/side{ - dir = 8 - }, -/area/hallway/primary/aft) -"cze" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/aft) -"czf" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/wrench, -/turf/open/floor/plating, -/area/maintenance/aft) -"czg" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/storage/box/lights/mixed, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"czh" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"czi" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"czj" = ( -/turf/open/floor/engine{ - dir = 9; - icon_state = "floor" - }, -/area/science/misc_lab/range) -"czk" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"czl" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 5 - }, -/area/science/research) -"czm" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"czn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 2 - }, -/area/science/research) -"czo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/machinery/door/poddoor/preopen{ - id = "rdprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"czp" = ( -/obj/machinery/computer/card/minor/rd{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"czq" = ( -/obj/machinery/computer/mecha{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"czr" = ( -/obj/structure/table, -/obj/item/device/aicard, -/obj/item/circuitboard/aicore{ - pixel_x = -2; - pixel_y = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"czs" = ( -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"czt" = ( -/obj/structure/table, -/obj/item/device/taperecorder{ - pixel_x = -3 - }, -/obj/item/device/paicard{ - pixel_x = 4 - }, -/obj/item/storage/secure/briefcase, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"czu" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"czv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"czw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"czx" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"czy" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Toxins Storage"; - dir = 8; - network = list("SS13","RD") - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"czz" = ( -/obj/structure/rack, -/obj/item/extinguisher, -/obj/item/storage/belt/utility, -/obj/item/clothing/mask/gas, -/obj/item/storage/box/lights/mixed, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"czA" = ( -/turf/closed/wall/r_wall, -/area/science/circuit) -"czB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/research/glass{ - name = "Circuitry Lab"; - req_access_txt = "47" - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"czC" = ( -/turf/closed/wall, -/area/science/circuit) -"czD" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"czE" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"czF" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"czG" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"czH" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"czI" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"czJ" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"czK" = ( -/obj/structure/closet/crate, -/obj/item/crowbar/red, -/obj/item/pen, -/obj/item/device/flashlight/pen{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"czL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"czM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"czN" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"czO" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"czP" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"czQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"czR" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"czS" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"czT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/medical/patients_rooms/room_a) -"czU" = ( -/turf/closed/wall, -/area/medical/patients_rooms/room_a) -"czV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/departments/examroom{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"czW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"czX" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"czY" = ( -/turf/closed/wall, -/area/medical/genetics/cloning) -"czZ" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/door/window/southleft{ - dir = 2; - name = "Cloning Shower" - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/vault, -/area/medical/genetics/cloning) -"cAa" = ( -/obj/machinery/door/window/southleft{ - base_state = "right"; - dir = 2; - icon_state = "right"; - name = "Cloning Shower" - }, -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "sink"; - pixel_y = 28 - }, -/turf/open/floor/plasteel/vault, -/area/medical/genetics/cloning) -"cAb" = ( -/obj/machinery/clonepod{ - pixel_y = 2 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/vault, -/area/medical/genetics/cloning) -"cAc" = ( -/obj/machinery/computer/scan_consolenew{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Genetics Lab"; - dir = 4; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/whiteblue, -/area/medical/genetics) -"cAd" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/geneticist, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 9 - }, -/area/medical/genetics) -"cAe" = ( -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/genetics) -"cAf" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/geneticist, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 5 - }, -/area/medical/genetics) -"cAg" = ( -/obj/machinery/computer/scan_consolenew{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue, -/area/medical/genetics) -"cAh" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/storage/box/syringes, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/blue/side{ - dir = 8 - }, -/area/medical/genetics) -"cAi" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/geneticist, -/turf/open/floor/plasteel/blue/side{ - dir = 4 - }, -/area/medical/genetics) -"cAj" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/pen, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Genetics Desk"; - req_access_txt = "5;9" - }, -/obj/machinery/door/window/southleft{ - dir = 4; - name = "Outer Window" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "genetics_shutters"; - name = "genetics shutters" - }, -/turf/open/floor/plating, -/area/medical/genetics) -"cAk" = ( -/turf/open/floor/plasteel/blue, -/area/medical/genetics) -"cAl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/blue/side{ - dir = 8 - }, -/area/hallway/primary/aft) -"cAm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"cAn" = ( -/turf/closed/wall, -/area/science/robotics/mechbay) -"cAo" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mech Bay Maintenance"; - req_access_txt = "29" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/aft) -"cAp" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_x = -29 - }, -/turf/open/floor/engine{ - dir = 9; - icon_state = "floor" - }, -/area/science/misc_lab/range) -"cAq" = ( -/obj/machinery/magnetic_module, -/obj/effect/landmark/blobstart, -/obj/structure/target_stake, -/obj/effect/turf_decal/bot{ - dir = 9 - }, -/turf/open/floor/plasteel{ - dir = 9 - }, -/area/science/misc_lab/range) -"cAr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "researchrangeshutters"; - name = "blast door" - }, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"cAs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"cAt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cAu" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/science/research) -"cAv" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Research Director's Office"; - req_access_txt = "30"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cAw" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cAx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cAy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cAz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cAA" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cAB" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"cAC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"cAD" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"cAE" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"cAF" = ( -/obj/structure/reagent_dispensers/watertank/high, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cAG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"cAH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"cAI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"cAJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"cAK" = ( -/obj/machinery/airalarm{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cAL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cAM" = ( -/obj/item/device/multitool, -/obj/item/screwdriver, -/obj/structure/table/reinforced, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cAN" = ( -/obj/structure/table/reinforced, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - dir = 2; - name = "Science Requests Console"; - pixel_y = 30; - receive_ore_updates = 1 - }, -/obj/item/device/integrated_electronics/debugger, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cAO" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/stock_parts/cell/super, -/obj/item/stock_parts/cell/super, -/obj/item/stack/sheet/metal/fifty, -/obj/structure/table/reinforced, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/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_y = 32 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cAP" = ( -/obj/item/screwdriver, -/obj/structure/table/reinforced, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cAQ" = ( -/obj/machinery/power/apc{ - areastring = "/area/science/circuit"; - dir = 1; - name = "Circuitry Lab APC"; - pixel_y = 30 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/table/reinforced, -/obj/item/device/multitool, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cAR" = ( -/obj/item/stock_parts/cell/super, -/obj/item/stock_parts/cell/super, -/obj/item/stack/sheet/metal/fifty, -/obj/structure/table/reinforced, -/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_y = 32 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cAS" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "aftport"; - name = "Aft-Port Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port/aft) -"cAT" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"cAU" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"cAV" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cAW" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cAX" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cAY" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cAZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cBa" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cBb" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cBc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cBd" = ( -/obj/structure/rack, -/obj/item/clothing/glasses/sunglasses, -/obj/item/device/flashlight/pen, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cBe" = ( -/obj/structure/table, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/clothing/neck/stethoscope, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Patient Room B APC"; - areastring = "/area/medical/patients_rooms/room_b"; - pixel_x = -26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/patients_rooms/room_b) -"cBf" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/vending/wallmed{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms/room_b) -"cBg" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/button/door{ - id = "isolb"; - name = "Privacy Shutters"; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/patients_rooms/room_b) -"cBh" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "isolb"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/medical/patients_rooms/room_b) -"cBi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/aft) -"cBj" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cBk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cBl" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 9 - }, -/area/medical/genetics/cloning) -"cBm" = ( -/obj/effect/landmark/start/geneticist, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/genetics/cloning) -"cBn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/computer/cloning{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 5 - }, -/area/medical/genetics/cloning) -"cBo" = ( -/obj/machinery/dna_scannernew, -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/turf/open/floor/plasteel/whiteblue, -/area/medical/genetics) -"cBp" = ( -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/genetics) -"cBq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cBr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/genetics) -"cBs" = ( -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel/whiteblue, -/area/medical/genetics) -"cBt" = ( -/obj/item/storage/box/disks{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -29 - }, -/obj/machinery/camera{ - c_tag = "Genetics Desk"; - dir = 4; - network = list("SS13","Medbay") - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/blue/side{ - dir = 8 - }, -/area/medical/genetics) -"cBu" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/button/door{ - id = "genetics_shutters"; - name = "genetics shutters control"; - pixel_x = 28; - req_access_txt = "9" - }, -/turf/open/floor/plasteel/blue/side{ - dir = 4 - }, -/area/medical/genetics) -"cBv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel/blue/corner{ - dir = 1 - }, -/area/hallway/primary/aft) -"cBw" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -28 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cBx" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/science/robotics/mechbay) -"cBy" = ( -/obj/structure/sign/warning/electricshock{ - pixel_y = 31 - }, -/turf/open/floor/mech_bay_recharge_floor, -/area/science/robotics/mechbay) -"cBz" = ( -/obj/machinery/computer/mech_bay_power_console, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"cBA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cBB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cBC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Research Division Hallway - Mech Bay"; - dir = 4; - network = list("SS13","RD") - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/white/side{ - dir = 6 - }, -/area/science/research) -"cBD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/research) -"cBE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/science/research) -"cBF" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "RD Office APC"; - areastring = "/area/crew_quarters/heads/hor"; - pixel_y = -27 - }, -/obj/structure/cable/yellow, -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/obj/item/twohanded/required/kirbyplants/dead, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cBG" = ( -/obj/item/paper_bin{ - pixel_y = 7 - }, -/obj/structure/table, -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/obj/item/stamp/rd{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/folder/white{ - pixel_x = 9; - pixel_y = -1 - }, -/obj/item/pen, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cBH" = ( -/obj/structure/table, -/obj/item/cartridge/signal/toxins, -/obj/item/cartridge/signal/toxins{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/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/machinery/light, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cBI" = ( -/obj/structure/closet/secure_closet/RD, -/obj/machinery/keycard_auth{ - pixel_y = -24 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cBJ" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cBK" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cBL" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"cBM" = ( -/obj/item/cigbutt, -/obj/machinery/light_switch{ - pixel_y = -23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"cBN" = ( -/obj/effect/landmark/start/scientist, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/science/storage) -"cBO" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/light/small, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"cBP" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cBQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"cBR" = ( -/turf/open/floor/plasteel, -/area/science/circuit) -"cBS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"cBT" = ( -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cBU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cBV" = ( -/obj/structure/table/reinforced, -/obj/item/device/integrated_electronics/analyzer, -/obj/item/device/integrated_circuit_printer, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cBW" = ( -/obj/effect/landmark/start/scientist, -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cBX" = ( -/obj/item/device/integrated_electronics/wirer, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cBY" = ( -/obj/structure/table/reinforced, -/obj/item/device/integrated_circuit_printer, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cBZ" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cCa" = ( -/obj/item/device/integrated_electronics/analyzer, -/obj/item/device/integrated_electronics/debugger, -/obj/item/device/integrated_electronics/wirer, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cCb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/circuit) -"cCc" = ( -/obj/item/stack/cable_coil, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"cCd" = ( -/obj/structure/rack, -/obj/item/tank/internals/air, -/obj/item/wrench, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port/aft) -"cCe" = ( -/obj/item/trash/chips, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cCf" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cCg" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cCh" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/patients_rooms/room_b) -"cCi" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms/room_b) -"cCj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/patients_rooms/room_b) -"cCk" = ( -/obj/machinery/door/airlock/medical{ - name = "Patient Room B"; - req_access_txt = "5" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms/room_b) -"cCl" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cCm" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cCn" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 2 - }, -/area/medical/medbay/aft) -"cCo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/genetics/cloning) -"cCp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/genetics/cloning) -"cCq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics/cloning) -"cCr" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/genetics/cloning) -"cCs" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/genetics) -"cCt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 9 - }, -/area/medical/genetics) -"cCu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/genetics) -"cCv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cCw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/genetics) -"cCx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 5 - }, -/area/medical/genetics) -"cCy" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/genetics) -"cCz" = ( -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/stack/packageWrap, -/obj/item/pen, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/table/glass, -/turf/open/floor/plasteel/blue/side{ - dir = 8 - }, -/area/medical/genetics) -"cCA" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/blue/corner{ - dir = 4 - }, -/area/medical/genetics) -"cCB" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_x = 28 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 5 - }, -/area/medical/genetics) -"cCC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=10.1-Central-from-Aft"; - location = "10-Aft-To-Central" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cCD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cCE" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=9.1-Escape-1"; - location = "8.1-Aft-to-Escape" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"cCF" = ( -/obj/machinery/door/poddoor/shutters{ - id = "Skynet_launch"; - name = "Mech Bay" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cCG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cCH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"cCI" = ( -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"cCJ" = ( -/obj/machinery/camera{ - c_tag = "Mech Bay"; - dir = 8; - network = list("SS13","RD") - }, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"cCK" = ( -/turf/open/floor/plating, -/area/science/misc_lab/range) -"cCL" = ( -/obj/machinery/camera{ - c_tag = "Research Testing Range"; - dir = 8; - network = list("SS13","RD"); - pixel_y = -22 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"cCM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cCN" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"cCO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Toxins Storage"; - req_access_txt = "8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/science/storage) -"cCP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cCQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"cCR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cCS" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cCT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cCU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/rnd/protolathe/department/science, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cCV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/autolathe, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cCW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cCX" = ( -/obj/item/stack/sheet/glass/fifty, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cCY" = ( -/obj/structure/rack, -/obj/item/device/flashlight, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cCZ" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cDa" = ( -/obj/item/latexballon, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cDb" = ( -/obj/item/clothing/suit/ianshirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cDc" = ( -/turf/closed/wall, -/area/medical/medbay/aft) -"cDd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/aft) -"cDe" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cDf" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/medbay/aft) -"cDg" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "CloningDoor"; - name = "Cloning Lab"; - req_access_txt = "5; 68" - }, -/turf/open/floor/plasteel/whiteblue, -/area/medical/genetics/cloning) -"cDh" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/genetics/cloning) -"cDi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics/cloning) -"cDj" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/genetics/cloning) -"cDk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "Genetics Lab"; - req_access_txt = "5; 9; 68" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue, -/area/medical/genetics) -"cDl" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/genetics) -"cDm" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cDn" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/landmark/start/geneticist, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cDo" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cDp" = ( -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/genetics) -"cDq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - id_tag = "AuxGenetics"; - locked = 0; - name = "Genetics Lab"; - req_access_txt = "9"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"cDr" = ( -/turf/open/floor/plasteel/blue/side{ - dir = 8 - }, -/area/medical/genetics) -"cDs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"cDt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 4 - }, -/area/medical/genetics) -"cDu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - id_tag = "AuxGenetics"; - locked = 0; - name = "Genetics Access"; - req_access_txt = "9"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"cDv" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cDw" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"cDx" = ( -/obj/machinery/door/poddoor/shutters{ - id = "Skynet_launch"; - name = "Mech Bay" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cDy" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cDz" = ( -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"cDA" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"cDB" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/landmark/start/roboticist, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"cDC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"cDD" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"cDE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cDF" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cDG" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cDH" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall, -/area/science/mixing) -"cDI" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/structure/closet/l3closet/scientist{ - pixel_x = -2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cDJ" = ( -/obj/structure/closet/wardrobe/science_white, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cDK" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cDL" = ( -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cDM" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cDN" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Toxins - Lab"; - dir = 2; - network = list("SS13","RD") - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cDO" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cDP" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cDQ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cDR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"cDS" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cDT" = ( -/turf/closed/wall/r_wall, -/area/science/mixing) -"cDU" = ( -/obj/structure/chair/comfy, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cDV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cDW" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cDX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"cDY" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/circuit) -"cDZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"cEa" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cEb" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/medbay/aft) -"cEc" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/medbay/aft) -"cEd" = ( -/obj/machinery/vending/coffee, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/medbay/aft) -"cEe" = ( -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/machinery/vending/cola/random, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/medbay/aft) -"cEf" = ( -/obj/machinery/vending/cigarette, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/medbay/aft) -"cEg" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/aft) -"cEh" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cEi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 28 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/aft) -"cEj" = ( -/obj/machinery/button/door{ - desc = "A remote control switch for the cloning door."; - id = "CloningDoor"; - name = "Cloning Exit Button"; - normaldoorcontrol = 1; - pixel_x = -23; - pixel_y = 8 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 10 - }, -/area/medical/genetics/cloning) -"cEk" = ( -/obj/effect/landmark/start/geneticist, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 2 - }, -/area/medical/genetics/cloning) -"cEl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/machinery/power/apc{ - dir = 4; - locked = 0; - name = "Cloning Lab APC"; - areastring = "/area/medical/genetics/cloning"; - pixel_x = 24 - }, -/obj/structure/cable/yellow, -/obj/machinery/camera{ - c_tag = "Genetics Cloning Lab"; - dir = 8; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 6 - }, -/area/medical/genetics/cloning) -"cEm" = ( -/turf/open/floor/plasteel/whiteblue/side{ - dir = 10 - }, -/area/medical/genetics) -"cEn" = ( -/turf/open/floor/plasteel/whiteblue/side{ - dir = 2 - }, -/area/medical/genetics) -"cEo" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 6 - }, -/area/medical/genetics) -"cEp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 10 - }, -/area/medical/genetics) -"cEq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 0 - }, -/area/medical/genetics) -"cEr" = ( -/obj/machinery/light_switch{ - pixel_x = 23 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 6 - }, -/area/medical/genetics) -"cEs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/genetics) -"cEt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cEu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cEv" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/button/door{ - dir = 2; - id = "Skynet_launch"; - name = "Mech Bay Door Control"; - pixel_x = 26; - pixel_y = 6; - req_one_access_txt = "29" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"cEw" = ( -/obj/machinery/button/door{ - dir = 2; - id = "Skynet_launch"; - name = "Mech Bay Door Control"; - pixel_x = -26; - pixel_y = 6 - }, -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = -2 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cEx" = ( -/turf/open/floor/mech_bay_recharge_floor, -/area/science/robotics/mechbay) -"cEy" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"cEz" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/paper/guides/jobs/security/range{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cEA" = ( -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "door"; - req_access_txt = "0" - }, -/turf/open/floor/engine{ - dir = 9; - icon_state = "floor" - }, -/area/science/misc_lab/range) -"cEB" = ( -/obj/structure/table/reinforced, -/obj/machinery/magnetic_controller{ - autolink = 1; - pixel_y = 3 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/clothing/ears/earmuffs, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cEC" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"cED" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cEE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 2 - }, -/area/science/research) -"cEF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "toxins_blastdoor"; - name = "biohazard containment door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/mixing) -"cEG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cEH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cEI" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cEJ" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cEK" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cEL" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cEM" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cEN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cEO" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cEP" = ( -/obj/structure/table/glass, -/obj/machinery/camera/autoname{ - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cEQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cER" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/research/glass{ - name = "Circuitry Lab"; - req_access_txt = "47" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/science/circuit) -"cES" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cET" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cEU" = ( -/obj/machinery/light, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cEV" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cEW" = ( -/obj/item/device/radio/intercom{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cEX" = ( -/obj/machinery/camera{ - c_tag = "Research Division Circuitry Lab"; - dir = 1; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cEY" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cEZ" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/libraryconsole/bookmanagement, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cFa" = ( -/obj/machinery/bookbinder, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cFb" = ( -/obj/machinery/libraryscanner, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cFc" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"cFd" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cFe" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/turf/open/floor/plating, -/area/medical/medbay/aft) -"cFf" = ( -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cFg" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cFh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cFi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cFj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/cigbutt, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cFk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/medical{ - name = "Medbay Break Room"; - req_access_txt = "5" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cFl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cFm" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cFn" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Medbay Aft APC"; - areastring = "/area/medical/medbay/aft"; - pixel_x = 26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/disposalpipe/junction, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cFo" = ( -/obj/item/book/manual/medical_cloning{ - pixel_y = 6 - }, -/obj/item/paper, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/vault, -/area/medical/genetics/cloning) -"cFp" = ( -/obj/item/storage/box/rxglasses{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/table/glass, -/turf/open/floor/plasteel/vault, -/area/medical/genetics/cloning) -"cFq" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/vault, -/area/medical/genetics/cloning) -"cFr" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/closet/wardrobe/genetics_white, -/turf/open/floor/plasteel/vault, -/area/medical/genetics) -"cFs" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/bed/roller, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/genetics) -"cFt" = ( -/obj/structure/bed/roller, -/obj/machinery/door/window/westleft{ - dir = 1; - name = "Monkey Pen"; - pixel_y = 2; - req_access_txt = "9" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/genetics) -"cFu" = ( -/obj/machinery/light, -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "Monkey Pen"; - pixel_y = 2; - req_access_txt = "9" - }, -/obj/structure/bed/roller, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/genetics) -"cFv" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/bed/roller, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/genetics) -"cFw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/vault, -/area/medical/genetics) -"cFx" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel/vault, -/area/medical/genetics) -"cFy" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway - Middle"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cFz" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cFA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"cFB" = ( -/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/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cFC" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cFD" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cFE" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cFF" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Mech Bay APC"; - areastring = "/area/science/robotics/mechbay"; - pixel_x = 28 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cFG" = ( -/obj/structure/rack, -/obj/item/target, -/obj/item/target, -/obj/item/target/alien, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/item/target/clown, -/obj/item/target/syndicate, -/obj/item/target/syndicate, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light_switch{ - pixel_x = -25 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cFH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cFI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cFJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Research Testing Range"; - req_access_txt = "0"; - req_one_access_txt = "7;47;29" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/purple, -/area/science/misc_lab/range) -"cFK" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/research) -"cFL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cFM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 4 - }, -/area/science/research) -"cFN" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/research{ - name = "Toxins Lab"; - req_access_txt = "8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "toxins_blastdoor"; - name = "biohazard containment shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"cFO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cFP" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cFQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cFR" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cFS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cFT" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cFU" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cFV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cFW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/holopad, -/obj/effect/landmark/start/scientist, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cFX" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cFY" = ( -/obj/structure/window/reinforced, -/obj/machinery/portable_atmospherics/scrubber, -/obj/item/storage/firstaid/toxin, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cFZ" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/r_wall, -/area/science/mixing) -"cGa" = ( -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/chair/comfy{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cGb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cGc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/closed/wall, -/area/science/circuit) -"cGd" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cGe" = ( -/obj/structure/chair/stool, -/obj/item/device/radio/intercom{ - broadcasting = 1; - freerange = 0; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_x = -30 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cGf" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cGg" = ( -/obj/item/cigbutt, -/obj/machinery/holopad, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cGh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cGi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cGj" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay/aft) -"cGk" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/aft) -"cGl" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cGm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/item/device/radio/intercom{ - broadcasting = 1; - freerange = 0; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_x = 30 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cGn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/medical/genetics/cloning) -"cGo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/centcom{ - name = "Genetics"; - opacity = 1; - req_access_txt = "9" - }, -/turf/open/floor/plasteel/dark, -/area/medical/genetics) -"cGp" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall, -/area/hallway/primary/aft) -"cGq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cGr" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall, -/area/science/robotics/mechbay) -"cGs" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cGt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cGu" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 28 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cGv" = ( -/obj/structure/table, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cGw" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "researchrangeshutters"; - name = "Blast Door Control"; - pixel_y = -24; - req_access_txt = "0" - }, -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cGx" = ( -/obj/item/gun/energy/laser/practice, -/obj/machinery/power/apc{ - dir = 2; - name = "Research Firing Range APC"; - areastring = "/area/science/misc_lab/range"; - pixel_y = -28 - }, -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cGy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "researchrangeshutters"; - name = "blast door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"cGz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"cGA" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cGB" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/research) -"cGC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "toxins_blastdoor"; - name = "biohazard containment door" - }, -/turf/open/floor/plating, -/area/science/mixing) -"cGD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cGE" = ( -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cGF" = ( -/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_y = 2 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cGG" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/scientist, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cGH" = ( -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cGI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cGJ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cGK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cGL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cGM" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cGN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"cGO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Room Access"; - req_access_txt = "8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "toxins_blastdoor"; - name = "biohazard containment shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"cGP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cGQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cGR" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cGS" = ( -/turf/closed/wall, -/area/science/mixing) -"cGT" = ( -/obj/machinery/camera{ - c_tag = "Toxins - Launch Area"; - dir = 2; - network = list("SS13","RD") - }, -/obj/machinery/suit_storage_unit/rd, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/science/mixing) -"cGU" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/science/mixing) -"cGV" = ( -/obj/item/stack/rods/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/target, -/obj/item/target/syndicate, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/structure/closet/crate/secure{ - desc = "A secure crate containing various materials for building a customised test-site."; - name = "Test Site Materials Crate"; - req_access_txt = "8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/science/mixing) -"cGW" = ( -/obj/machinery/doppler_array{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 22 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/science/mixing) -"cGX" = ( -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/wall, -/area/science/mixing) -"cGY" = ( -/turf/closed/wall, -/area/science/test_area) -"cGZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/test_area) -"cHa" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"cHb" = ( -/turf/closed/wall/r_wall, -/area/medical/virology) -"cHc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/medical/virology) -"cHd" = ( -/obj/item/cigbutt, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cHe" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cHf" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -30 - }, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/table/glass, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cHg" = ( -/obj/structure/chair/stool, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cHh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light/small, -/obj/structure/extinguisher_cabinet{ - pixel_y = -29 - }, -/obj/machinery/camera{ - c_tag = "Medbay Break Room"; - dir = 1; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cHi" = ( -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cHj" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cHk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cHl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white/side{ - dir = 9 - }, -/area/medical/medbay/aft) -"cHm" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel/white/corner{ - dir = 2 - }, -/area/medical/medbay/aft) -"cHn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/medbay/aft) -"cHo" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel/white/corner{ - dir = 8 - }, -/area/medical/medbay/aft) -"cHp" = ( -/turf/closed/wall, -/area/medical/morgue) -"cHq" = ( -/obj/structure/bodycontainer/morgue, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cHr" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cHs" = ( -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cHt" = ( -/obj/machinery/camera{ - c_tag = "Morgue"; - dir = 2; - network = list("SS13","Medbay") - }, -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cHu" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cHv" = ( -/obj/machinery/airalarm{ - pixel_y = 32 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/paper/guides/jobs/medical/morgue{ - pixel_x = -4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cHw" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"cHx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel/purple/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"cHy" = ( -/turf/closed/wall/r_wall, -/area/science/robotics/mechbay) -"cHz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics_shutters"; - name = "robotics shutters" - }, -/turf/open/floor/plating, -/area/science/robotics/mechbay) -"cHA" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cHB" = ( -/turf/closed/wall/r_wall, -/area/science/robotics/lab) -"cHC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/science/research) -"cHD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/science/research) -"cHE" = ( -/obj/structure/closet/bombcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cHF" = ( -/obj/item/device/assembly/signaler{ - 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, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cHG" = ( -/obj/item/device/transfer_valve{ - pixel_x = -5 - }, -/obj/item/device/transfer_valve{ - pixel_x = -5 - }, -/obj/item/device/transfer_valve, -/obj/item/device/transfer_valve, -/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_y = -30; - receive_ore_updates = 1 - }, -/obj/structure/table/reinforced, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/science/mixing) -"cHH" = ( -/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, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cHI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/structure/tank_dispenser, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cHJ" = ( -/obj/machinery/disposal/bin{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cHK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cHL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cHM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cHN" = ( -/obj/structure/table, -/obj/item/device/assembly/igniter{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 2; - pixel_y = -1 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Toxins Lab APC"; - areastring = "/area/science/mixing"; - pixel_x = 26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cHO" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cHP" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/floorgrime, -/area/science/mixing) -"cHQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/science/mixing) -"cHR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/science/mixing) -"cHS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cHT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cHU" = ( -/obj/structure/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 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cHV" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/mixing) -"cHW" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"cHX" = ( -/obj/structure/window/reinforced, -/obj/item/target, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/science/test_area) -"cHY" = ( -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cHZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cIa" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cIb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cIc" = ( -/obj/machinery/camera{ - c_tag = "Medbay Hallway Aft"; - dir = 4; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/white/side{ - dir = 5 - }, -/area/medical/medbay/aft) -"cId" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cIe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cIf" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/medical/medbay/aft) -"cIg" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/medbay/aft) -"cIh" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cIi" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cIj" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/bodycontainer/morgue, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cIk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cIl" = ( -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cIm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cIn" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cIo" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cIp" = ( -/obj/machinery/vending/cola/random, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"cIq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics_shutters"; - name = "robotics shutters" - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"cIr" = ( -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/machinery/button/door{ - id = "robotics_shutters"; - name = "robotics shutters control"; - pixel_x = -26; - pixel_y = 26; - req_access_txt = "29" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cIs" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cIt" = ( -/obj/machinery/mecha_part_fabricator{ - dir = 2 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cIu" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/structure/rack, -/obj/item/book/manual/robotics_cyborgs{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/storage/belt/utility, -/obj/item/reagent_containers/glass/beaker/large, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cIv" = ( -/obj/machinery/mecha_part_fabricator{ - dir = 2 - }, -/obj/machinery/camera{ - c_tag = "Robotics - Fore"; - dir = 2; - network = list("SS13","RD") - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cIw" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Robotics Lab APC"; - areastring = "/area/science/robotics/lab"; - pixel_y = 25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cIx" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 40; - pixel_x = 3; - pixel_y = -4 - }, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cIy" = ( -/turf/closed/wall, -/area/science/robotics/lab) -"cIz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cIA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/science/mixing) -"cIB" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/science/mixing) -"cIC" = ( -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cID" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cIE" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cIF" = ( -/obj/structure/table, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/item/device/multitool{ - pixel_x = 3 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cIG" = ( -/obj/machinery/vending/assist, -/turf/open/floor/plasteel, -/area/science/mixing) -"cIH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/floorgrime, -/area/science/mixing) -"cII" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cIJ" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Room"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"cIK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cIL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/mixing) -"cIM" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/mixing) -"cIN" = ( -/obj/machinery/light/small, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/mixing) -"cIO" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/button/massdriver{ - dir = 2; - id = "toxinsdriver"; - pixel_x = 24; - pixel_y = -24 - }, -/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 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cIP" = ( -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/wall, -/area/science/test_area) -"cIQ" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cIR" = ( -/obj/item/device/flashlight/lamp, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cIS" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cIT" = ( -/obj/structure/bed/roller, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cIU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cIV" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cIW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cIX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/medical/virology) -"cIY" = ( -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/box/syringes, -/obj/machinery/power/apc/highcap/five_k{ - dir = 1; - name = "Virology APC"; - areastring = "/area/medical/virology"; - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/table/glass, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 9 - }, -/area/medical/virology) -"cIZ" = ( -/obj/item/book/manual/wiki/infections{ - pixel_y = 7 - }, -/obj/item/reagent_containers/syringe/antiviral, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/table/glass, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 5 - }, -/area/medical/virology) -"cJa" = ( -/obj/machinery/smartfridge/chemistry/virology/preloaded, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/whitegreen, -/area/medical/virology) -"cJb" = ( -/obj/machinery/reagentgrinder{ - pixel_y = 8 - }, -/obj/structure/table/glass, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 9 - }, -/area/medical/virology) -"cJc" = ( -/obj/item/clothing/gloves/color/latex, -/obj/item/device/healthanalyzer, -/obj/item/clothing/glasses/hud/health, -/obj/structure/reagent_dispensers/virusfood{ - pixel_y = 30 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 5 - }, -/area/medical/virology) -"cJd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cJe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cJf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"cJg" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cJh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cJi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cJj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/medbay/aft) -"cJk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cJl" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cJm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/medical/medbay/aft) -"cJn" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/medbay/aft) -"cJo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cJp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cJq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/centcom{ - name = "Morgue"; - opacity = 1; - req_access_txt = "5" - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cJr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cJs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cJt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cJu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cJv" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cJw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cJx" = ( -/obj/structure/table, -/obj/machinery/power/apc{ - dir = 4; - name = "Morgue APC"; - areastring = "/area/medical/morgue"; - pixel_x = 26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/clothing/gloves/color/latex, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cJy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/morgue) -"cJz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/hallway/primary/aft) -"cJA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cJB" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/purple/side{ - dir = 4 - }, -/area/hallway/primary/aft) -"cJC" = ( -/turf/open/floor/plasteel/purple, -/area/science/robotics/lab) -"cJD" = ( -/obj/structure/table/reinforced, -/obj/item/pen, -/obj/machinery/door/window/eastright{ - dir = 4; - name = "Robotics Desk"; - req_access_txt = "29" - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics_shutters"; - name = "robotics shutters" - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"cJE" = ( -/obj/effect/landmark/start/roboticist, -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cJF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cJG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cJH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cJI" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/item/device/assembly/flash/handheld, -/obj/item/device/assembly/flash/handheld, -/obj/item/device/assembly/flash/handheld, -/obj/item/device/assembly/flash/handheld, -/obj/item/device/assembly/flash/handheld, -/obj/item/device/assembly/flash/handheld, -/obj/item/device/assembly/flash/handheld, -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cJJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/white/side{ - dir = 9 - }, -/area/science/research) -"cJK" = ( -/obj/structure/lattice, -/turf/open/space, -/area/science/mixing) -"cJL" = ( -/obj/machinery/door/poddoor{ - id = "mixvent"; - name = "Mixer Room Vent" - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"cJM" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"cJN" = ( -/obj/machinery/sparker{ - dir = 2; - id = "mixingsparker"; - pixel_x = 25 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"cJO" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"cJP" = ( -/obj/machinery/airlock_sensor{ - id_tag = "tox_airlock_sensor"; - master_tag = "tox_airlock_control"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/engine, -/area/science/mixing) -"cJQ" = ( -/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; - sanitize_external = 1; - sensor_tag = "tox_airlock_sensor" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cJR" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4; - name = "manual outlet valve" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cJS" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cJT" = ( -/obj/machinery/vending/snack/random, -/turf/open/floor/plasteel, -/area/science/mixing) -"cJU" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel, -/area/science/mixing) -"cJV" = ( -/obj/machinery/door/window/southleft{ - name = "Mass Driver Door"; - req_access_txt = "7" - }, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plasteel, -/area/science/mixing) -"cJW" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cJX" = ( -/turf/open/floor/plating/airless, -/area/science/test_area) -"cJY" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cJZ" = ( -/turf/closed/wall, -/area/medical/virology) -"cKa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/medical/virology) -"cKb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Test Subject Cell"; - req_access_txt = "39" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cKc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/medical/virology) -"cKd" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/structure/sign/warning/deathsposal{ - pixel_x = -30 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/virology) -"cKe" = ( -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 4 - }, -/area/medical/virology) -"cKf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) -"cKg" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/virologist, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 1 - }, -/area/medical/virology) -"cKh" = ( -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/pen/red, -/obj/machinery/requests_console{ - department = "Virology"; - name = "Virology Requests Console"; - pixel_x = 29; - receive_ore_updates = 1 - }, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/structure/table/glass, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/virology) -"cKi" = ( -/turf/closed/wall/r_wall, -/area/maintenance/port/aft) -"cKj" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;5;39;6" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cKk" = ( -/turf/open/floor/plasteel/white/side{ - dir = 6 - }, -/area/medical/medbay/aft) -"cKl" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cKm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/medical/medbay/aft) -"cKn" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 4 - }, -/area/medical/medbay/aft) -"cKo" = ( -/obj/item/device/healthanalyzer{ - pixel_x = 1; - pixel_y = 4 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_y = -30 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/medbay/aft) -"cKp" = ( -/obj/machinery/vending/medical, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/medical/medbay/aft) -"cKq" = ( -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/obj/structure/bodycontainer/morgue, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cKr" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cKs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cKt" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cKu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/centcom{ - name = "Morgue"; - opacity = 1; - req_access_txt = "6" - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cKv" = ( -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"cKw" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cKx" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cKy" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/departments/science{ - name = "\improper ROBOTICS!"; - pixel_x = 32 - }, -/turf/open/floor/plasteel/purple/corner{ - dir = 4 - }, -/area/hallway/primary/aft) -"cKz" = ( -/obj/structure/noticeboard{ - dir = 4; - pixel_x = -27 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/aug_manipulator, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cKA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cKB" = ( -/obj/effect/landmark/start/roboticist, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cKC" = ( -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cKD" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cKE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cKF" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 28; - pixel_y = 5 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table, -/obj/item/wrench, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/item/device/multitool{ - pixel_x = 3 - }, -/obj/item/stack/cable_coil, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cKG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Research Division Hallway - Robotics"; - dir = 4; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cKH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cKI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/science/research) -"cKJ" = ( -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"cKK" = ( -/obj/machinery/door/airlock/research/glass{ - autoclose = 0; - frequency = 1449; - heat_proof = 1; - id_tag = "tox_airlock_exterior"; - locked = 1; - name = "Mixing Room Exterior Airlock"; - req_access_txt = "8" - }, -/turf/open/floor/engine, -/area/science/mixing) -"cKL" = ( -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{ - dir = 2; - frequency = 1449; - id = "tox_airlock_pump" - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/engine, -/area/science/mixing) -"cKM" = ( -/obj/machinery/door/airlock/research/glass{ - autoclose = 0; - frequency = 1449; - heat_proof = 1; - id_tag = "tox_airlock_interior"; - locked = 1; - name = "Mixing Room Interior Airlock"; - req_access_txt = "8" - }, -/turf/open/floor/engine, -/area/science/mixing) -"cKN" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Toxins - Mixing Area"; - dir = 8; - network = list("SS13","RD") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cKO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;47" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cKP" = ( -/obj/machinery/mass_driver{ - dir = 4; - id = "toxinsdriver" - }, -/turf/open/floor/plating, -/area/science/mixing) -"cKQ" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/science/mixing) -"cKR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/mixing) -"cKS" = ( -/obj/machinery/door/poddoor{ - id = "toxinsdriver"; - name = "Toxins Launcher Bay Door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/science/mixing) -"cKT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cKU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cKV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cKW" = ( -/obj/item/device/radio/beacon, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cKX" = ( -/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. An external light is attached to the top."; - dir = 8; - invuln = 1; - light = null; - luminosity = 3; - name = "Hardened Bomb-Test Camera"; - network = list("Toxins"); - use_power = 0 - }, -/obj/item/target/alien/anchored, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless{ - luminosity = 2 - }, -/area/science/test_area) -"cKY" = ( -/turf/closed/indestructible{ - desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; - icon_state = "riveted"; - name = "hyper-reinforced wall" - }, -/area/science/test_area) -"cKZ" = ( -/obj/item/device/radio/intercom{ - pixel_x = -28 - }, -/obj/structure/table/glass, -/obj/item/hand_labeler, -/obj/item/device/radio/headset/headset_med, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/machinery/camera{ - c_tag = "Virology - Cells"; - dir = 4; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 9 - }, -/area/medical/virology) -"cLa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) -"cLb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) -"cLc" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) -"cLd" = ( -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/obj/item/wrench, -/obj/item/restraints/handcuffs, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 5 - }, -/area/medical/virology) -"cLe" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/virology) -"cLf" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/virology) -"cLg" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cLh" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cLi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cLj" = ( -/obj/machinery/computer/pandemic{ - layer = 2.5; - pixel_x = -4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/virology) -"cLk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"cLl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/virology) -"cLm" = ( -/obj/structure/sign/warning/biohazard{ - pixel_y = 32 - }, -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cLn" = ( -/obj/structure/sink{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cLo" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cLp" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cLq" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/medbay/aft) -"cLr" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21"; - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 8 - }, -/area/medical/medbay/aft) -"cLs" = ( -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cLt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cLu" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/white/side{ - dir = 9 - }, -/area/medical/medbay/aft) -"cLv" = ( -/obj/machinery/light/small, -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cLw" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cLx" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cLy" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light_switch{ - pixel_x = 23 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cLz" = ( -/obj/structure/closet, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"cLA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/aft) -"cLB" = ( -/obj/machinery/computer/rdconsole/robotics{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Robotics"; - departmentType = 2; - name = "Robotics RC"; - pixel_x = -31; - receive_ore_updates = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cLC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) "cLD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cLE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cLF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cLG" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cLH" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cLI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cLJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/science/research) -"cLK" = ( -/obj/machinery/sparker{ - dir = 2; - id = "mixingsparker"; - pixel_x = 25 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4; - frequency = 1441; - id = "air_in" - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"cLL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/warning/fire{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/engine, -/area/science/mixing) -"cLM" = ( -/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 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cLN" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4; - name = "manual inlet valve" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cLO" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cLP" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cLQ" = ( -/obj/structure/closet/wardrobe/grey, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cLR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cLS" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/space/nearstation) -"cLT" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cLU" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cLV" = ( -/obj/structure/table/glass, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/pen/red, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/virology) -"cLW" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cLX" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cLY" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cLZ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/virology) -"cMa" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Containment Cells"; - req_access_txt = "39" - }, -/turf/open/floor/plasteel/whitegreen, -/area/medical/virology) -"cMb" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/virology) -"cMc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cMd" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/holopad, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cMe" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cMf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/virology) -"cMg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/virology{ - name = "Virology Access"; - req_access_txt = "39" - }, -/turf/open/floor/plasteel/whitegreen, -/area/medical/virology) -"cMh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/virology) -"cMi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cMj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/doorButtons/airlock_controller{ - idExterior = "virology_airlock_exterior"; - idSelf = "virology_airlock_control"; - idInterior = "virology_airlock_interior"; - name = "Virology Access Console"; - pixel_x = 26; - pixel_y = 26; - req_access_txt = "39" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/virology) -"cMk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - icon_state = "door_locked"; - id_tag = "virology_airlock_interior"; - locked = 1; - name = "Virology Interior Airlock"; - req_access_txt = "39" - }, -/turf/open/floor/plasteel/whitegreen, -/area/medical/virology) -"cMl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/doorButtons/access_button{ - idDoor = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = -26; - pixel_y = 28; - req_access_txt = "39" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cMm" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cMn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cMo" = ( -/obj/machinery/doorButtons/access_button{ - idDoor = "virology_airlock_exterior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_y = 24; - req_access_txt = "39" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - icon_state = "door_locked"; - id_tag = "virology_airlock_exterior"; - locked = 1; - name = "Virology Exterior Airlock"; - req_access_txt = "39" - }, -/turf/open/floor/plasteel/whitegreen, -/area/medical/virology) -"cMp" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cMq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/medbay/aft) -"cMr" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - name = "Virology Access"; - req_access_txt = "39" - }, -/turf/open/floor/plasteel/whitegreen, -/area/medical/medbay/aft) -"cMs" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cMt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cMu" = ( -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cMv" = ( -/obj/machinery/door/airlock/abandoned{ - name = "Medical Surplus Storeroom"; - req_access_txt = "5" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cMw" = ( -/turf/open/floor/plasteel/floorgrime, -/area/maintenance/aft) -"cMx" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/storage/backpack/duffelbag/med, -/obj/item/device/flashlight/pen{ - pixel_x = 4; - pixel_y = 3 - }, -/turf/open/floor/plasteel/floorgrime, -/area/maintenance/aft) -"cMy" = ( -/obj/structure/table, -/obj/item/retractor, -/obj/item/hemostat, -/obj/item/device/healthanalyzer, -/obj/item/clothing/glasses/eyepatch, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/floorgrime, -/area/maintenance/aft) -"cMz" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/maintenance{ - name = "Morgue Maintenance"; - req_access_txt = "6" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cMA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/aft) -"cMB" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/rnd/circuit_imprinter, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cMC" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cMD" = ( -/obj/effect/landmark/start/roboticist, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cME" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cMF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/rack, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/device/healthanalyzer{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/device/healthanalyzer{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/device/healthanalyzer{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/device/radio/headset/headset_sci{ - pixel_x = -3 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cMG" = ( -/obj/effect/spawner/structure/window, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"cMH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"cMI" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cMJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 2 - }, -/area/science/research) -"cMK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM" - }, -/turf/closed/wall/r_wall, -/area/science/server) -"cML" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/server) -"cMM" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/closed/wall/r_wall, -/area/science/server) -"cMN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"cMO" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Toxins Lab Maintenance"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "toxins_blastdoor"; - name = "biohazard containment shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cMP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"cMQ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cMR" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cMS" = ( -/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 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cMT" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cMU" = ( -/obj/item/device/flashlight/lamp, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cMV" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cMW" = ( -/obj/structure/cable, -/obj/machinery/power/tracker, -/turf/open/floor/plating/airless, -/area/solar/port/aft) -"cMX" = ( -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 10 - }, -/area/medical/virology) -"cMY" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/side, -/area/medical/virology) -"cMZ" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitegreen/side, -/area/medical/virology) -"cNa" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/side, -/area/medical/virology) -"cNb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 6 - }, -/area/medical/virology) -"cNc" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/medical/virology) -"cNd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 10 - }, -/area/medical/virology) -"cNe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitegreen/side, -/area/medical/virology) -"cNf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/side, -/area/medical/virology) -"cNg" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/whitegreen/side, -/area/medical/virology) -"cNh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/machinery/camera{ - c_tag = "Virology - Lab"; - dir = 8; - network = list("SS13","Medbay") - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 6 - }, -/area/medical/virology) -"cNi" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/virology) -"cNj" = ( -/obj/structure/closet/emcloset, -/obj/item/device/radio/intercom{ - pixel_x = -28 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cNk" = ( -/obj/machinery/camera{ - c_tag = "Virology - Airlock"; - dir = 1; - network = list("SS13","Medbay") - }, -/obj/machinery/light, -/obj/structure/closet/l3closet, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cNl" = ( -/obj/structure/closet/l3closet, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cNm" = ( -/obj/structure/sign/warning/biohazard{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cNn" = ( -/obj/machinery/camera{ - c_tag = "Virology - Entrance"; - dir = 8; - network = list("SS13","Medbay") - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/medbay/aft) -"cNo" = ( -/obj/structure/sign/warning/biohazard{ - pixel_x = -32 - }, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/storage/box/masks, -/obj/structure/table/glass, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 1 - }, -/area/medical/medbay/aft) -"cNp" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_y = -30 - }, -/obj/item/storage/box/beakers{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/bodybags, -/obj/structure/table/glass, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cNq" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/light, -/obj/item/hand_labeler, -/obj/item/pen, -/obj/item/pen, -/obj/structure/table/glass, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cNr" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/medical/medbay/aft) -"cNs" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel/floorgrime, -/area/maintenance/aft) -"cNt" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel/floorgrime, -/area/maintenance/aft) -"cNu" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/blood, -/obj/item/reagent_containers/blood, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/dropper, -/obj/structure/sign/warning/biohazard{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/floorgrime, -/area/maintenance/aft) -"cNv" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cNw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cNx" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/aft) -"cNy" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/aft) -"cNz" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 +"cLE" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1; + name = "euthanization chamber freezer"; + on = 1; + target_temperature = 80 }, /turf/open/floor/plating, -/area/maintenance/aft) -"cNA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/aft) -"cNB" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cNC" = ( +/area/science/xenobiology) +"cLF" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -70859,2221 +68327,63 @@ dir = 4 }, /turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/aft) -"cND" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 + icon_state = "platingdmg2" }, +/area/maintenance/starboard/aft) +"cLH" = ( +/obj/machinery/space_heater, /obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cNE" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;5;39;6" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cNF" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ dir = 1 }, -/area/hallway/primary/aft) -"cNG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cNH" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cLJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/closet, +/obj/item/storage/box/lights/mixed, +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cNI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cNJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cNK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cNL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cNM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cNN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Robotics Lab"; - req_access_txt = "29"; - req_one_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/purple, -/area/science/robotics/lab) -"cNO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/research) -"cNP" = ( +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cLK" = ( +/obj/machinery/power/smes, /obj/structure/cable/yellow{ - icon_state = "1-2" + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cLL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" }, /obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"cNQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/science/research) -"cNR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Research Division Server Room"; - req_access = null; - req_access_txt = "30" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cNS" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cNT" = ( -/obj/machinery/camera{ - c_tag = "Research Division - Server Room"; - dir = 2; - network = list("SS13","RD"); - pixel_x = 22 +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cLM" = ( /obj/machinery/power/apc{ dir = 1; - name = "Research Division Server Room APC"; - areastring = "/area/science/server"; - pixel_y = 25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cNU" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - target_temperature = 80; - dir = 2; - on = 1 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cNV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/science/server) -"cNW" = ( -/obj/machinery/rnd/server, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"cNX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - external_pressure_bound = 140; - name = "server vent"; - pressure_checks = 0 - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"cNY" = ( -/turf/closed/wall/r_wall, -/area/science/server) -"cNZ" = ( -/obj/structure/closet, -/obj/item/storage/box/lights/mixed, -/obj/item/device/flashlight, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOa" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOb" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/warning/biohazard{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOc" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOd" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOe" = ( -/obj/machinery/power/apc/highcap/five_k{ - dir = 2; - name = "Starboard Quarter Maintenance APC"; - areastring = "/area/maintenance/starboard/aft"; - pixel_y = -24 - }, -/obj/structure/cable/yellow, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOf" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOg" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/item/target, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/science/test_area) -"cOh" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/medical/virology) -"cOi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation B"; - req_access_txt = "39" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cOj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation A"; - req_access_txt = "39" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cOk" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/medical/virology) -"cOl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/closed/wall, -/area/medical/virology) -"cOm" = ( -/obj/structure/closet/wardrobe/virology_white, -/obj/item/storage/backpack/satchel/vir, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/turf/open/floor/plasteel/vault, -/area/medical/virology) -"cOn" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/blood, -/obj/item/reagent_containers/blood{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/reagent_containers/blood/AMinus, -/obj/item/reagent_containers/blood/BMinus{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/reagent_containers/blood/BPlus{ - pixel_x = 1; - pixel_y = 2 - }, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OPlus{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/turf/open/floor/plasteel/vault, -/area/medical/virology) -"cOo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/vault, -/area/medical/virology) -"cOp" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/plasteel/vault, -/area/medical/virology) -"cOq" = ( -/obj/structure/closet/l3closet/virology, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/vault, -/area/medical/virology) -"cOr" = ( -/obj/structure/sign/warning/biohazard{ - pixel_x = -32 - }, -/turf/open/space, -/area/space/nearstation) -"cOs" = ( -/turf/closed/wall/r_wall, -/area/maintenance/aft) -"cOt" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;5;39;6" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cOu" = ( -/obj/structure/bed/roller, -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/floorgrime, -/area/maintenance/aft) -"cOv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plating, -/area/maintenance/aft) -"cOw" = ( -/obj/item/clothing/gloves/color/latex/nitrile, -/obj/structure/rack, -/obj/item/clothing/suit/toggle/labcoat, -/obj/item/clothing/suit/apron/surgical, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/mask/breath/medical, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/aft) -"cOx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cOy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/escape{ - dir = 2 - }, -/area/hallway/primary/aft) -"cOz" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/escape{ - dir = 2 - }, -/area/hallway/primary/aft) -"cOA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway - Aft"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel/escape{ - dir = 2 - }, -/area/hallway/primary/aft) -"cOB" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall/r_wall, -/area/hallway/primary/aft) -"cOC" = ( -/obj/structure/table, -/obj/item/circular_saw, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/item/razor{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/robotics/lab) -"cOD" = ( -/obj/effect/landmark/start/roboticist, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"cOE" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"cOF" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/surgical_drapes, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/science/robotics/lab) -"cOG" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cOH" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/borg/upgrade/rename, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cOI" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/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/item/device/multitool{ - pixel_x = 3 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cOJ" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/science/robotics/lab) -"cOK" = ( -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"cOL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"cOM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/science/research) -"cON" = ( -/turf/closed/wall, -/area/science/server) -"cOO" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cOP" = ( -/obj/structure/chair/office/light, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cOQ" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cOR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Server Access"; - req_access_txt = "30" - }, -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cOS" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/telecomms/server/walkway, -/area/science/server) -"cOT" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/manifold{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/airalarm/server{ - dir = 8; - pixel_x = 22 - }, -/turf/open/floor/plasteel/dark/telecomms/server/walkway, -/area/science/server) -"cOU" = ( -/obj/item/storage/box, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOV" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/glasses/sunglasses, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOW" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/solar{ - id = "aftstarboard"; - name = "Aft-Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cOX" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/space, -/area/solar/starboard/aft) -"cOY" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/solar{ - id = "aftstarboard"; - name = "Aft-Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cOZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/bedsheet/medical, -/obj/structure/bed, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cPa" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cPb" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/bedsheet/medical, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cPc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/medical/virology) -"cPd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/virology{ - name = "Break Room"; - req_access_txt = "39" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen, -/area/medical/virology) -"cPe" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPf" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPg" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPh" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/aft) -"cPi" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPj" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPk" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/stack/ore/slag, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPl" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPm" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPn" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/closet/crate, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/wrench, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPo" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPp" = ( -/obj/structure/rack, -/obj/item/screwdriver{ - pixel_y = 6 - }, -/obj/item/crowbar, -/obj/item/storage/pill_bottle, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/item/cigbutt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/aft) -"cPr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/generic, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Medical Surplus Storeroom"; - req_access_txt = "12"; - req_one_access_txt = "0" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPu" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/vault, -/area/hallway/secondary/exit/departure_lounge) -"cPv" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel/vault, -/area/hallway/secondary/exit/departure_lounge) -"cPw" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/plasteel/vault, -/area/hallway/secondary/exit/departure_lounge) -"cPx" = ( -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"cPy" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault, -/area/hallway/secondary/exit/departure_lounge) -"cPz" = ( -/obj/machinery/vending/coffee, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault, -/area/hallway/secondary/exit/departure_lounge) -"cPA" = ( -/obj/machinery/vending/snack/random, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault, -/area/hallway/secondary/exit/departure_lounge) -"cPB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"cPC" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cPD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/secondary/exit/departure_lounge) -"cPE" = ( -/obj/structure/table, -/obj/item/retractor, -/obj/item/hemostat, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -29 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 4 - }, -/area/science/robotics/lab) -"cPF" = ( -/obj/structure/table/optable{ - name = "Robotics Operating Table" - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/machinery/camera{ - c_tag = "Robotics - Aft"; - dir = 1; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/science/robotics/lab) -"cPG" = ( -/obj/machinery/computer/operating{ - dir = 1; - name = "Robotics Operating Computer" - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/science/robotics/lab) -"cPH" = ( -/obj/structure/table, -/obj/item/device/mmi, -/obj/item/device/mmi, -/obj/item/device/mmi, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/science/robotics/lab) -"cPI" = ( -/obj/machinery/door/window/eastleft{ - dir = 1; - name = "Robotics Deliveries"; - req_access_txt = "29" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cPJ" = ( -/obj/structure/closet/wardrobe/robotics_black{ - pixel_x = 2 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cPK" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/crowbar, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cPL" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 2 - }, -/area/science/research) -"cPM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 2 - }, -/area/science/research) -"cPN" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-10" - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"cPO" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cPP" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/machinery/computer/rdservercontrol{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cPQ" = ( -/obj/structure/table, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cPR" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/server) -"cPS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 1; - external_pressure_bound = 120; - name = "server vent" - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"cPT" = ( -/obj/structure/easel, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"cPV" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPX" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/science, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPY" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPZ" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQa" = ( -/obj/structure/closet/crate, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQb" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space, -/area/solar/starboard/aft) -"cQc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cQd" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cQe" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cQf" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cQg" = ( -/obj/structure/table/glass, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/paper, -/obj/item/pen/red, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 9 - }, -/area/medical/virology) -"cQh" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 29 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) -"cQi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) -"cQj" = ( -/obj/structure/table/glass, -/obj/item/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/obj/machinery/camera{ - c_tag = "Virology - Break Room"; - dir = 2; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) -"cQk" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/structure/table/glass, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 5 - }, -/area/medical/virology) -"cQl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/aft) -"cQm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/aft) -"cQn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/aft) -"cQo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cQp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 17 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/aft) -"cQq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cQr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/grille, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/aft) -"cQs" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cQt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"cQu" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQx" = ( -/obj/machinery/power/apc/highcap/five_k{ - dir = 1; - name = "Departure Lounge APC"; - areastring = "/area/hallway/secondary/exit/departure_lounge"; + name = "Starboard Quarter Solar APC"; + areastring = "/area/maintenance/solars/starboard/aft"; pixel_y = 24 }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQy" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQz" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQC" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQE" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQF" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Robotics" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cQG" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Robotics Maintenance"; - req_access_txt = "29" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cQH" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/science/research) -"cQI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitepurple{ - dir = 4 - }, -/area/science/research) -"cQJ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/abandoned{ - locked = 0; - name = "Storage Room"; - req_access_txt = "0"; - req_one_access_txt = "12;47" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQM" = ( -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"cQO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"cQQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQR" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQS" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQT" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"cQU" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/glass/beaker, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cQV" = ( -/obj/structure/table/glass, -/obj/item/folder/white{ - pixel_y = 4 - }, -/obj/item/pen/red, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cQW" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/closed/wall, -/area/medical/virology) -"cQX" = ( -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/virology) -"cQY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cQZ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cRa" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cRb" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/virology) -"cRc" = ( -/obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/open/floor/plating, -/area/medical/virology) -"cRd" = ( -/turf/closed/wall, -/area/chapel/office) -"cRe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/maintenance{ - name = "Crematorium Maintenance"; - req_access_txt = "0"; - req_one_access_txt = "27" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - name = "Chapel Office Maintenance"; - req_access_txt = "0"; - req_one_access_txt = "22" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRg" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRj" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/aft) -"cRm" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRn" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;5;39;6" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cRp" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cRq" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=10-Aft-To-Central"; - location = "9.4-Escape-4" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cRr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cRs" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cRt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cRu" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cRv" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cRw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cRx" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cRy" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;47" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRz" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"cRB" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRC" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRD" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRE" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRF" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Research Division Hallway - Xenobiology Lab Access"; - dir = 2; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/xenobiology) -"cRG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/xenobiology) -"cRH" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/xenobiology) -"cRI" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRJ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRK" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRL" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/aft) -"cRM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRN" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRO" = ( -/obj/machinery/space_heater, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRP" = ( -/obj/structure/closet/crate, -/obj/item/poster/random_official, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/closet, -/obj/item/storage/box/lights/mixed, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRR" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRS" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRT" = ( -/obj/structure/closet, -/obj/item/device/flashlight, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/medical/virology) -"cRV" = ( +/area/maintenance/solars/starboard/aft) +"cLN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment, /turf/closed/wall/r_wall, /area/medical/virology) -"cRW" = ( +"cLO" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -23 @@ -73085,13 +68395,13 @@ dir = 10 }, /area/medical/virology) -"cRX" = ( +"cLP" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, /turf/open/floor/plasteel/whitegreen/side, /area/medical/virology) -"cRY" = ( +"cLQ" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -73101,11 +68411,11 @@ }, /turf/open/floor/plasteel/whitegreen/side, /area/medical/virology) -"cRZ" = ( +"cLR" = ( /obj/structure/chair/stool, /turf/open/floor/plasteel/whitegreen/side, /area/medical/virology) -"cSa" = ( +"cLS" = ( /obj/structure/chair/stool, /obj/machinery/firealarm{ dir = 4; @@ -73115,21 +68425,19 @@ dir = 6 }, /area/medical/virology) -"cSb" = ( +"cLT" = ( /obj/effect/decal/cleanable/cobweb, /obj/structure/bodycontainer/morgue{ dir = 2 }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cSc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"cSd" = ( +"cLU" = ( +/obj/effect/landmark/blobstart, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/engine, +/area/science/explab) +"cLV" = ( /obj/item/device/radio/intercom{ pixel_y = 25 }, @@ -73146,7 +68454,7 @@ /obj/item/clothing/under/burial, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cSe" = ( +"cLW" = ( /obj/machinery/requests_console{ department = "Chapel"; departmentType = 2; @@ -73157,7 +68465,7 @@ }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cSf" = ( +"cLX" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -73169,13 +68477,13 @@ }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cSg" = ( +"cLY" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cSh" = ( +"cLZ" = ( /obj/machinery/door/morgue{ name = "Relic Closet"; req_access_txt = "22" @@ -73184,7 +68492,7 @@ dir = 2 }, /area/chapel/office) -"cSi" = ( +"cMa" = ( /obj/structure/table/wood, /obj/item/spellbook/oneuse/smoke/lesser{ name = "mysterious old book of " @@ -73203,7 +68511,7 @@ dir = 2 }, /area/chapel/office) -"cSj" = ( +"cMb" = ( /obj/machinery/door/airlock/maintenance{ name = "Chapel Maintenance"; req_access_txt = "0"; @@ -73215,52 +68523,32 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/aft) -"cSk" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Departure Lounge - Port Fore"; - dir = 4; - network = list("SS13") - }, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-24" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cSl" = ( +"cMd" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cSm" = ( +"cMe" = ( /obj/effect/turf_decal/stripes/corner{ dir = 2 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cSn" = ( +"cMf" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cSo" = ( +"cMg" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cSp" = ( +"cMh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cSq" = ( +"cMi" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -73271,7 +68559,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cSr" = ( +"cMj" = ( /obj/machinery/light{ dir = 4 }, @@ -73291,20 +68579,18 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cSs" = ( -/obj/machinery/light/small{ - dir = 8 +"cMk" = ( +/obj/machinery/power/apc/highcap/five_k{ + dir = 2; + name = "Aft Maintenance APC"; + areastring = "/area/maintenance/aft"; + pixel_y = -24 }, +/obj/structure/cable/yellow, +/obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/aft) -"cSt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cSu" = ( +"cMl" = ( /obj/structure/table, /obj/item/stack/sheet/glass/fifty{ pixel_x = 3; @@ -73313,79 +68599,83 @@ /obj/item/stack/sheet/metal/fifty, /turf/open/floor/plating, /area/maintenance/aft) -"cSv" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xeno_blastdoor"; - name = "biohazard containment door" +"cMm" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSw" = ( /obj/structure/cable/yellow{ - icon_state = "1-2" + icon_state = "2-4" }, -/obj/machinery/door/poddoor/preopen{ - id = "xeno_blastdoor"; - name = "biohazard containment door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSx" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xeno_blastdoor"; - name = "biohazard containment door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSy" = ( -/obj/machinery/space_heater, /turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cSz" = ( +/area/maintenance/port/aft) +"cMo" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cMp" = ( /obj/structure/chair, /obj/item/cigbutt, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cSA" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/aft) -"cSB" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/aft) -"cSC" = ( -/obj/machinery/door/airlock/engineering{ - name = "Starboard Quarter Solar Access"; - req_access_txt = "10" +"cMq" = ( +/obj/machinery/power/terminal{ + dir = 1 }, -/obj/structure/cable/yellow{ - icon_state = "1-2" +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/camera{ + c_tag = "Aft Starboard Solar Maintenance"; + dir = 4; + network = list("SS13") }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) -"cSD" = ( +"cMr" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/solars/starboard/aft) +"cMs" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cMt" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, /turf/open/floor/plating/airless, /area/space/nearstation) -"cSE" = ( +"cMu" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/airless, /area/space/nearstation) -"cSF" = ( +"cMv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -73394,7 +68684,7 @@ }, /turf/open/floor/plating/airless, /area/medical/virology) -"cSG" = ( +"cMw" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 @@ -73407,7 +68697,7 @@ }, /turf/open/floor/plating, /area/medical/virology) -"cSH" = ( +"cMx" = ( /obj/machinery/atmospherics/components/unary/tank/air{ dir = 1 }, @@ -73416,7 +68706,7 @@ }, /turf/open/floor/plasteel/vault, /area/medical/virology) -"cSI" = ( +"cMy" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1; name = "virology air connector port" @@ -73427,7 +68717,7 @@ }, /turf/open/floor/plasteel/vault, /area/medical/virology) -"cSJ" = ( +"cMz" = ( /obj/item/trash/popcorn, /obj/structure/table/glass, /obj/structure/cable/yellow{ @@ -73435,25 +68725,25 @@ }, /turf/open/floor/plasteel/vault, /area/medical/virology) -"cSK" = ( +"cMA" = ( /obj/item/reagent_containers/food/snacks/sosjerky, /obj/structure/table/glass, /turf/open/floor/plasteel/vault, /area/medical/virology) -"cSL" = ( +"cMB" = ( /obj/item/trash/cheesie{ pixel_y = 4 }, /obj/structure/table/glass, /turf/open/floor/plasteel/vault, /area/medical/virology) -"cSM" = ( +"cMC" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cSN" = ( +"cMD" = ( /obj/machinery/light/small{ dir = 4 }, @@ -73463,7 +68753,7 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cSO" = ( +"cME" = ( /obj/item/device/flashlight/lamp, /obj/machinery/newscaster{ pixel_x = -30 @@ -73471,13 +68761,13 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cSP" = ( +"cMF" = ( /obj/structure/chair, /obj/effect/landmark/start/chaplain, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cSQ" = ( +"cMG" = ( /obj/item/paper_bin{ pixel_x = -2; pixel_y = 8 @@ -73490,7 +68780,7 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cSR" = ( +"cMH" = ( /obj/machinery/light/small{ dir = 4 }, @@ -73499,10 +68789,10 @@ }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cSS" = ( +"cMI" = ( /turf/closed/wall, /area/chapel/main) -"cST" = ( +"cMJ" = ( /obj/item/candle, /obj/machinery/light_switch{ pixel_x = -27 @@ -73511,7 +68801,7 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cSU" = ( +"cMK" = ( /obj/item/storage/book/bible, /obj/machinery/light/small{ dir = 1 @@ -73527,7 +68817,7 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cSV" = ( +"cML" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/snacks/grown/poppy{ pixel_y = 2 @@ -73546,14 +68836,14 @@ }, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cSW" = ( +"cMM" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cSX" = ( +"cMN" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/snacks/grown/harebell, /obj/item/reagent_containers/food/snacks/grown/harebell, @@ -73562,7 +68852,7 @@ /obj/item/reagent_containers/food/snacks/grown/harebell, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cSY" = ( +"cMO" = ( /obj/item/paper_bin{ pixel_x = -2; pixel_y = 8 @@ -73576,7 +68866,7 @@ }, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cSZ" = ( +"cMP" = ( /obj/item/candle, /obj/machinery/light_switch{ pixel_y = 25 @@ -73585,13 +68875,24 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cTa" = ( +"cMQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/hallway/primary/central) +"cMR" = ( /obj/structure/table, /obj/item/candle, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cTb" = ( +"cMS" = ( /obj/structure/chair{ dir = 4 }, @@ -73601,7 +68902,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cTc" = ( +"cMT" = ( /obj/structure/chair{ dir = 8 }, @@ -73610,13 +68911,13 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cTd" = ( +"cMU" = ( /obj/machinery/status_display{ layer = 4 }, /turf/closed/wall, /area/hallway/secondary/exit/departure_lounge) -"cTe" = ( +"cMV" = ( /obj/structure/chair{ dir = 4 }, @@ -73625,14 +68926,14 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cTf" = ( +"cMW" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cTg" = ( +"cMX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -73642,7 +68943,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cTh" = ( +"cMY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -73651,7 +68952,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cTi" = ( +"cMZ" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/westleft{ base_state = "right"; @@ -73672,7 +68973,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cTj" = ( +"cNa" = ( /obj/structure/chair/office/dark{ dir = 8 }, @@ -73689,7 +68990,7 @@ dir = 9 }, /area/hallway/secondary/exit/departure_lounge) -"cTk" = ( +"cNb" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -73700,7 +69001,7 @@ dir = 1 }, /area/hallway/secondary/exit/departure_lounge) -"cTl" = ( +"cNc" = ( /obj/structure/chair, /obj/structure/sign/map/left{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; @@ -73711,7 +69012,7 @@ dir = 1 }, /area/hallway/secondary/exit/departure_lounge) -"cTm" = ( +"cNd" = ( /obj/structure/table, /obj/machinery/recharger{ pixel_y = 4 @@ -73729,52 +69030,49 @@ dir = 5 }, /area/hallway/secondary/exit/departure_lounge) -"cTn" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/aft) -"cTo" = ( -/obj/machinery/power/apc/highcap/five_k{ - dir = 2; - name = "Aft Maintenance APC"; - areastring = "/area/maintenance/aft"; - pixel_y = -24 +"cNe" = ( +/obj/machinery/door/airlock/external{ + name = "Auxiliary Escape Airlock" }, -/obj/structure/cable/yellow, -/obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/maintenance/aft) -"cTp" = ( -/obj/machinery/droneDispenser, -/turf/open/floor/plating, -/area/maintenance/aft) -"cTq" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall, -/area/science/xenobiology) -"cTr" = ( +"cNf" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, /obj/structure/cable/yellow{ - icon_state = "1-2" + icon_state = "1-8" }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "47" +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 }, -/turf/open/floor/plasteel/whitepurple{ - dir = 4 +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cNg" = ( +/obj/structure/rack, +/obj/item/device/flashlight, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cNh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 }, -/area/science/xenobiology) -"cTs" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/science/xenobiology) -"cTt" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/aft) +"cNi" = ( /obj/machinery/biogenerator, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cTu" = ( +"cNj" = ( /obj/item/reagent_containers/food/snacks/grown/banana, /obj/item/reagent_containers/food/snacks/grown/banana, /obj/item/reagent_containers/food/snacks/grown/wheat, @@ -73794,7 +69092,7 @@ /obj/item/seeds/cannabis/rainbow, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cTv" = ( +"cNk" = ( /obj/item/storage/bag/plants/portaseeder, /obj/item/storage/bag/plants/portaseeder, /obj/item/device/plant_analyzer, @@ -73809,7 +69107,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cTw" = ( +"cNl" = ( /obj/machinery/hydroponics/soil{ pixel_y = 8 }, @@ -73818,19 +69116,22 @@ /obj/item/seeds/cannabis/white, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cTx" = ( -/obj/machinery/hydroponics/soil{ - pixel_y = 8 +"cNm" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/obj/item/seeds/glowshroom, -/obj/item/seeds/corn, -/obj/effect/turf_decal/stripes/line, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, /turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cTy" = ( +/area/maintenance/port/aft) +"cNn" = ( /obj/machinery/hydroponics/soil{ pixel_y = 8 }, @@ -73838,61 +69139,49 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cTz" = ( -/obj/machinery/power/smes, -/obj/structure/cable/yellow{ - icon_state = "0-4" +"cNo" = ( +/obj/structure/cable{ + icon_state = "1-4" }, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) -"cTA" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ +"cNp" = ( +/obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, +/obj/structure/chair/stool, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) -"cTB" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Starboard Quarter Solar APC"; - areastring = "/area/maintenance/solars/starboard/aft"; - pixel_y = 24 +"cNq" = ( +/obj/machinery/power/solar_control{ + dir = 8; + id = "aftstarboard"; + name = "Starboard Quarter Solar Control"; + track = 0 }, -/obj/structure/cable/yellow{ +/obj/structure/cable, +/obj/structure/cable{ icon_state = "0-8" }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) -"cTC" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cTD" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space, -/area/solar/starboard/aft) -"cTE" = ( +"cNr" = ( /obj/structure/disposaloutlet, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/open/floor/plating/airless, /area/space/nearstation) -"cTF" = ( +"cNs" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 1 }, /turf/open/floor/plating/airless, /area/medical/virology) -"cTG" = ( +"cNt" = ( /obj/machinery/button/crematorium{ id = "crematoriumChapel"; pixel_x = -26; @@ -73900,7 +69189,7 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cTH" = ( +"cNu" = ( /obj/machinery/camera{ c_tag = "Chapel Office - Backroom"; dir = 8; @@ -73913,7 +69202,7 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cTI" = ( +"cNv" = ( /obj/item/storage/crayons, /obj/machinery/light/small{ dir = 8 @@ -73921,15 +69210,19 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cTJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table/wood, -/obj/item/folder{ - pixel_y = 2 +"cNw" = ( +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" }, -/turf/open/floor/plasteel/grimy, -/area/chapel/office) -"cTK" = ( +/obj/machinery/power/compressor{ + comp_id = "incineratorturbine"; + dir = 1; + luminosity = 2 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cNx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -73940,10 +69233,10 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cTL" = ( +"cNy" = ( /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cTM" = ( +"cNz" = ( /obj/item/device/radio/intercom{ broadcasting = 1; frequency = 1480; @@ -73953,31 +69246,31 @@ /obj/structure/chair, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cTN" = ( +"cNA" = ( /obj/machinery/door/morgue{ name = "Confession Booth" }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cTO" = ( +"cNB" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/carpet, /area/chapel/main) -"cTP" = ( +"cNC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/carpet, /area/chapel/main) -"cTQ" = ( +"cND" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/carpet, /area/chapel/main) -"cTR" = ( +"cNE" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -73986,7 +69279,7 @@ }, /turf/open/floor/carpet, /area/chapel/main) -"cTS" = ( +"cNF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -73995,7 +69288,7 @@ }, /turf/open/floor/carpet, /area/chapel/main) -"cTT" = ( +"cNG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -74004,7 +69297,7 @@ }, /turf/open/floor/carpet, /area/chapel/main) -"cTU" = ( +"cNH" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -74017,7 +69310,7 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cTV" = ( +"cNI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -74029,7 +69322,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cTW" = ( +"cNJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -74041,7 +69334,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cTX" = ( +"cNK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -74050,7 +69343,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cTY" = ( +"cNL" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -74059,7 +69352,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cTZ" = ( +"cNN" = ( /obj/structure/flora/ausbushes/fernybush, /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/ppflowers, @@ -74067,21 +69360,21 @@ /obj/structure/window/reinforced/fulltile, /turf/open/floor/grass, /area/hallway/secondary/exit/departure_lounge) -"cUa" = ( +"cNO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cUb" = ( +"cNP" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" }, /turf/open/floor/plating, /area/hallway/secondary/exit/departure_lounge) -"cUc" = ( +"cNQ" = ( /obj/machinery/computer/secure_data{ dir = 4 }, @@ -74092,13 +69385,13 @@ dir = 8 }, /area/hallway/secondary/exit/departure_lounge) -"cUd" = ( +"cNR" = ( /obj/structure/chair/office/dark{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cUe" = ( +"cNS" = ( /obj/structure/table, /obj/item/folder/red{ pixel_x = 3 @@ -74121,28 +69414,23 @@ dir = 4 }, /area/hallway/secondary/exit/departure_lounge) -"cUf" = ( -/obj/machinery/door/airlock/external{ - name = "Auxiliary Escape Airlock" +"cNT" = ( +/obj/structure/sign/warning/vacuum{ + pixel_x = 32 }, +/obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/aft) -"cUg" = ( -/turf/closed/wall, -/area/science/xenobiology) -"cUh" = ( +"cNU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/xenobiology) -"cUi" = ( -/obj/effect/spawner/structure/window/reinforced, +/obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, -/area/science/xenobiology) -"cUj" = ( +/area/maintenance/port/aft) +"cNW" = ( /obj/structure/sink/kitchen{ desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; @@ -74155,140 +69443,42 @@ icon_state = "platingdmg3" }, /area/maintenance/starboard/aft) -"cUk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cUl" = ( +"cNX" = ( /obj/item/seeds/watermelon, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cUm" = ( +"cNY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/grille, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cUn" = ( +"cNZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /obj/structure/chair, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cUo" = ( -/obj/machinery/power/terminal{ - dir = 1 +"cOa" = ( +/obj/structure/cable, +/obj/machinery/power/turbine{ + luminosity = 2 }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/camera{ - c_tag = "Aft Starboard Solar Maintenance"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cUp" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/solars/starboard/aft) -"cUq" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cUr" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cUs" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cUt" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space, -/area/solar/starboard/aft) -"cUu" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/space, -/area/solar/starboard/aft) -"cUv" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/aft) -"cUw" = ( -/obj/structure/lattice/catwalk, -/obj/item/stack/cable_coil, -/turf/open/space, -/area/solar/starboard/aft) -"cUx" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/space, -/area/solar/starboard/aft) -"cUy" = ( -/obj/machinery/power/tracker, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating/airless, -/area/solar/starboard/aft) -"cUz" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"cUA" = ( +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cOb" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /obj/effect/landmark/xeno_spawn, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cUB" = ( +"cOc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -74299,20 +69489,20 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cUC" = ( +"cOd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cUD" = ( +"cOe" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cUE" = ( +"cOf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -74322,7 +69512,7 @@ }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cUF" = ( +"cOg" = ( /obj/machinery/light_switch{ pixel_x = 28 }, @@ -74339,11 +69529,11 @@ }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cUG" = ( +"cOh" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cUH" = ( +"cOi" = ( /obj/structure/cable/yellow{ icon_state = "0-4" }, @@ -74355,13 +69545,13 @@ }, /turf/open/floor/carpet, /area/chapel/main) -"cUI" = ( +"cOj" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/carpet, /area/chapel/main) -"cUJ" = ( +"cOk" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -74371,7 +69561,7 @@ /obj/effect/landmark/xmastree, /turf/open/floor/carpet, /area/chapel/main) -"cUK" = ( +"cOl" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -74380,14 +69570,14 @@ }, /turf/open/floor/carpet, /area/chapel/main) -"cUL" = ( +"cOm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/chapel/main) -"cUM" = ( +"cOn" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -74397,7 +69587,7 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cUN" = ( +"cOo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -74406,7 +69596,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cUO" = ( +"cOp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -74415,23 +69605,23 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cUP" = ( +"cOq" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cUQ" = ( +"cOr" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cUR" = ( +"cOs" = ( /obj/machinery/ai_status_display, /turf/closed/wall, /area/hallway/secondary/exit/departure_lounge) -"cUS" = ( +"cOt" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -74440,7 +69630,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cUT" = ( +"cOu" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -74452,7 +69642,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cUU" = ( +"cOv" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Departure Lounge Security Post"; @@ -74466,7 +69656,7 @@ }, /turf/open/floor/plasteel/red, /area/hallway/secondary/exit/departure_lounge) -"cUV" = ( +"cOw" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -74484,13 +69674,13 @@ dir = 10 }, /area/hallway/secondary/exit/departure_lounge) -"cUW" = ( +"cOx" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, /turf/open/floor/plasteel/red/side, /area/hallway/secondary/exit/departure_lounge) -"cUX" = ( +"cOy" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -74499,7 +69689,7 @@ /obj/item/pen, /turf/open/floor/plasteel/red/side, /area/hallway/secondary/exit/departure_lounge) -"cUY" = ( +"cOz" = ( /obj/structure/table, /obj/machinery/newscaster/security_unit{ pixel_x = 29; @@ -74527,88 +69717,37 @@ dir = 6 }, /area/hallway/secondary/exit/departure_lounge) -"cUZ" = ( -/obj/structure/sign/warning/vacuum{ - pixel_x = 32 +"cOA" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/sunglasses, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/small{ + dir = 4 }, -/obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, -/area/maintenance/aft) -"cVa" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cVb" = ( +/area/maintenance/starboard/aft) +"cOB" = ( /obj/item/seeds/sunflower/moonflower, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cVc" = ( +"cOC" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cVd" = ( +"cOD" = ( /obj/item/seeds/berry, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cVe" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"cVf" = ( +"cOE" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/reagent_containers/glass/bucket, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cVg" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cVh" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cVi" = ( -/obj/machinery/power/solar_control{ - dir = 8; - id = "aftstarboard"; - name = "Starboard Quarter Solar Control"; - track = 0 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cVj" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/space, -/area/solar/starboard/aft) -"cVk" = ( -/obj/structure/bodycontainer/crematorium{ - id = "crematoriumChapel"; - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"cVl" = ( +"cOF" = ( /obj/structure/table, /obj/item/storage/box/bodybags{ pixel_x = 2; @@ -74616,7 +69755,7 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cVm" = ( +"cOG" = ( /obj/structure/closet/wardrobe/chaplain_black, /obj/machinery/airalarm{ dir = 4; @@ -74624,14 +69763,14 @@ }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cVn" = ( +"cOH" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cVo" = ( +"cOI" = ( /obj/machinery/power/apc{ dir = 2; lighting = 3; @@ -74646,20 +69785,20 @@ /obj/structure/cable/yellow, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cVp" = ( +"cOJ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cVq" = ( +"cOK" = ( /obj/machinery/door/morgue{ name = "Confession Booth (Chaplain)"; req_access_txt = "22" }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cVr" = ( +"cOL" = ( /obj/item/device/radio/intercom{ broadcasting = 1; frequency = 1480; @@ -74672,58 +69811,58 @@ /obj/effect/landmark/start/chaplain, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cVs" = ( +"cOM" = ( /turf/open/floor/plasteel/chapel{ dir = 4 }, /area/chapel/main) -"cVt" = ( +"cON" = ( /obj/structure/chair/stool, /turf/open/floor/plasteel/chapel{ dir = 1 }, /area/chapel/main) -"cVu" = ( +"cOO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/chair/stool, /turf/open/floor/plasteel/chapel{ dir = 4 }, /area/chapel/main) -"cVv" = ( +"cOP" = ( /turf/open/floor/plasteel/dark, /area/chapel/main) -"cVw" = ( +"cOQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/chair/stool, /turf/open/floor/plasteel/chapel{ dir = 1 }, /area/chapel/main) -"cVx" = ( +"cOR" = ( /obj/structure/chair/stool, /turf/open/floor/plasteel/chapel{ dir = 4 }, /area/chapel/main) -"cVy" = ( +"cOS" = ( /turf/open/floor/plasteel/chapel{ dir = 1 }, /area/chapel/main) -"cVz" = ( +"cOT" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cVA" = ( +"cOU" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cVB" = ( +"cOV" = ( /obj/structure/chair{ dir = 8 }, @@ -74735,7 +69874,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cVC" = ( +"cOW" = ( /obj/structure/flora/ausbushes/fernybush, /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/brflowers, @@ -74746,7 +69885,7 @@ /obj/structure/window/reinforced/fulltile, /turf/open/floor/grass, /area/hallway/secondary/exit/departure_lounge) -"cVD" = ( +"cOX" = ( /obj/structure/chair{ dir = 4 }, @@ -74758,20 +69897,20 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cVE" = ( +"cOY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cVF" = ( +"cOZ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cVG" = ( +"cPa" = ( /obj/structure/chair{ dir = 8 }, @@ -74783,7 +69922,10 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cVH" = ( +"cPb" = ( +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"cPc" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/structure/cable/yellow{ @@ -74791,23 +69933,24 @@ }, /turf/open/floor/plating, /area/hallway/secondary/exit/departure_lounge) -"cVI" = ( +"cPd" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/open/floor/plating, /area/hallway/secondary/exit/departure_lounge) -"cVJ" = ( +"cPe" = ( /obj/structure/cable/yellow{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/machinery/light/small{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cVK" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cPf" = ( /obj/machinery/hydroponics/soil{ pixel_y = 8 }, @@ -74818,7 +69961,7 @@ /obj/item/seeds/cannabis/ultimate, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cVL" = ( +"cPg" = ( /obj/machinery/hydroponics/soil{ pixel_y = 8 }, @@ -74828,7 +69971,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cVM" = ( +"cPh" = ( /obj/machinery/hydroponics/soil{ pixel_y = 8 }, @@ -74838,7 +69981,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cVN" = ( +"cPi" = ( /obj/machinery/hydroponics/soil{ pixel_y = 8 }, @@ -74849,7 +69992,7 @@ /obj/item/seeds/cannabis, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cVO" = ( +"cPj" = ( /obj/machinery/hydroponics/soil{ pixel_y = 8 }, @@ -74859,24 +70002,11 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cVP" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space, -/area/solar/starboard/aft) -"cVQ" = ( +"cPk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/chapel/office) -"cVR" = ( +"cPl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/public/glass{ name = "Chapel Office"; @@ -74884,7 +70014,7 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cVS" = ( +"cPm" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -23 @@ -74894,29 +70024,29 @@ }, /turf/open/floor/plasteel/chapel, /area/chapel/main) -"cVT" = ( +"cPn" = ( /obj/structure/chair/stool, /turf/open/floor/plasteel/chapel{ dir = 8 }, /area/chapel/main) -"cVU" = ( +"cPo" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/chapel, /area/chapel/main) -"cVV" = ( +"cPp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/chair/stool, /turf/open/floor/plasteel/chapel{ dir = 8 }, /area/chapel/main) -"cVW" = ( +"cPq" = ( /obj/structure/chair/stool, /turf/open/floor/plasteel/chapel, /area/chapel/main) -"cVX" = ( +"cPr" = ( /obj/machinery/light{ dir = 4 }, @@ -74924,24 +70054,20 @@ dir = 8 }, /area/chapel/main) -"cVY" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cVZ" = ( +"cPs" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWa" = ( +"cPt" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWb" = ( +"cPu" = ( /obj/structure/chair{ dir = 8 }, @@ -74951,11 +70077,29 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWc" = ( +"cPv" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/hallway/secondary/exit/departure_lounge) -"cWd" = ( +"cPx" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cPz" = ( +/obj/structure/closet, +/obj/item/device/flashlight, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cPA" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "chapel_shutters_parlour"; @@ -74963,7 +70107,7 @@ }, /turf/open/floor/plating, /area/chapel/main) -"cWe" = ( +"cPB" = ( /obj/structure/closet/coffin, /obj/machinery/light/small{ dir = 1 @@ -74971,14 +70115,14 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating, /area/chapel/main) -"cWf" = ( +"cPC" = ( /obj/structure/closet/coffin, /obj/structure/window/reinforced{ dir = 4 }, /turf/open/floor/plating, /area/chapel/main) -"cWg" = ( +"cPD" = ( /obj/structure/noticeboard{ desc = "A memorial wall for pinning up momentos"; name = "memorial board"; @@ -74993,7 +70137,7 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/chapel/main) -"cWh" = ( +"cPE" = ( /obj/structure/sign/plaques/kiddie/badger{ pixel_y = 32 }, @@ -75018,7 +70162,7 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/chapel/main) -"cWi" = ( +"cPF" = ( /obj/structure/noticeboard{ desc = "A memorial wall for pinning up momentos"; name = "memorial board"; @@ -75028,15 +70172,15 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/chapel/main) -"cWj" = ( +"cPG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/chapel/main) -"cWk" = ( +"cPH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cWl" = ( +"cPI" = ( /obj/machinery/light/small{ dir = 1 }, @@ -75051,7 +70195,7 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cWm" = ( +"cPJ" = ( /obj/structure/chair/comfy/black{ dir = 4 }, @@ -75060,7 +70204,7 @@ dir = 1 }, /area/chapel/main) -"cWn" = ( +"cPK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -75068,7 +70212,7 @@ dir = 4 }, /area/chapel/main) -"cWo" = ( +"cPL" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -75078,7 +70222,7 @@ dir = 1 }, /area/chapel/main) -"cWp" = ( +"cPM" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 @@ -75087,7 +70231,7 @@ dir = 4 }, /area/chapel/main) -"cWq" = ( +"cPN" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/chair/comfy/black{ dir = 8 @@ -75096,7 +70240,7 @@ dir = 4 }, /area/chapel/main) -"cWr" = ( +"cPO" = ( /obj/machinery/camera{ c_tag = "Departure Lounge - Port Aft"; dir = 4; @@ -75116,19 +70260,19 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWs" = ( +"cPP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWt" = ( +"cPQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWu" = ( +"cPR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -75137,7 +70281,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWv" = ( +"cPS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -75147,7 +70291,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWw" = ( +"cPT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -75156,13 +70300,13 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWx" = ( +"cPU" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWy" = ( +"cPV" = ( /obj/machinery/camera{ c_tag = "Departure Lounge - Starboard Aft"; dir = 8; @@ -75185,19 +70329,49 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWz" = ( -/obj/structure/closet/coffin, -/turf/open/floor/plating, -/area/chapel/main) -"cWA" = ( -/obj/structure/closet/coffin, -/obj/machinery/door/window/eastleft{ - name = "Coffin Storage"; - req_access_txt = "22" +"cPW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/grille, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/aft) +"cPX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/whitepurple{ + dir = 4 + }, +/area/science/research) +"cPY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cPZ" = ( +/obj/structure/closet/coffin, /turf/open/floor/plating, /area/chapel/main) -"cWB" = ( +"cQa" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -75209,13 +70383,13 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cWC" = ( +"cQb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cWD" = ( +"cQc" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -75231,13 +70405,13 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cWE" = ( +"cQd" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cWF" = ( +"cQf" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -75247,7 +70421,7 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cWG" = ( +"cQg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -75255,20 +70429,20 @@ dir = 8 }, /area/chapel/main) -"cWH" = ( +"cQh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/chapel, /area/chapel/main) -"cWI" = ( +"cQi" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/chapel, /area/chapel/main) -"cWJ" = ( +"cQj" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -75276,7 +70450,7 @@ dir = 8 }, /area/chapel/main) -"cWK" = ( +"cQk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -75284,22 +70458,22 @@ dir = 8 }, /area/chapel/main) -"cWL" = ( +"cQl" = ( /turf/open/floor/plasteel/chapel, /area/chapel/main) -"cWM" = ( +"cQm" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWN" = ( +"cQn" = ( /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWO" = ( +"cQo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=9.4-Escape-4"; @@ -75310,7 +70484,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWP" = ( +"cQp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=9.3-Escape-3"; @@ -75321,91 +70495,141 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWQ" = ( +"cQq" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" +"cQr" = ( +/obj/machinery/light/small{ + dir = 1 }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cWS" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cWT" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/light/small{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cWU" = ( -/obj/structure/closet/coffin, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/chapel/main) -"cWV" = ( -/obj/structure/chair{ - pixel_y = -2 - }, -/turf/open/floor/plasteel/vault, -/area/chapel/main) -"cWW" = ( -/obj/structure/chair{ - pixel_y = -2 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/vault, -/area/chapel/main) -"cWX" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, /obj/machinery/camera{ - c_tag = "Chapel - Funeral Parlour"; - dir = 8; - network = list("SS13") + c_tag = "Research Division Hallway - Xenobiology Lab Access"; + dir = 2; + network = list("SS13","RD") }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/chapel/main) -"cWY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/chapel/main) -"cWZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/chapel/main) -"cXa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/plasteel/chapel{ +/turf/open/floor/plasteel/whitepurple/side{ dir = 1 }, +/area/science/xenobiology) +"cQs" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/xenobiology) +"cQt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/xenobiology) +"cQv" = ( +/obj/machinery/camera{ + c_tag = "Toxins - Launch Area"; + dir = 2; + network = list("SS13","RD") + }, +/obj/machinery/suit_storage_unit/rd, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/science/mixing) +"cQx" = ( +/obj/structure/chair{ + pixel_y = -2 + }, +/turf/open/floor/plasteel/vault, /area/chapel/main) -"cXb" = ( +"cQB" = ( +/obj/machinery/doppler_array{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 22 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/science/mixing) +"cQC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cQD" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 40; + pixel_x = 3; + pixel_y = -4 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cQE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -75413,22 +70637,22 @@ dir = 4 }, /area/chapel/main) -"cXc" = ( +"cQF" = ( /obj/structure/table/wood, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cXd" = ( +"cQG" = ( /obj/item/storage/book/bible, /obj/structure/table/wood, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cXe" = ( +"cQH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/chapel{ dir = 1 }, /area/chapel/main) -"cXf" = ( +"cQI" = ( /obj/structure/chair/comfy/black{ dir = 8 }, @@ -75441,71 +70665,192 @@ dir = 4 }, /area/chapel/main) -"cXg" = ( +"cQJ" = ( /obj/structure/sign/warning/vacuum{ pixel_x = -32 }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cXh" = ( +"cQK" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cXi" = ( +"cQL" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cXj" = ( +"cQM" = ( /obj/machinery/holopad, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cXk" = ( +"cQN" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cXl" = ( +"cQO" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cXm" = ( +"cQP" = ( /obj/structure/sign/warning/vacuum{ pixel_x = 32 }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cXn" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-4" +"cQR" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xeno_blastdoor"; + name = "biohazard containment door" }, -/obj/structure/cable{ - icon_state = "1-8" +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cQS" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 }, -/turf/open/space, -/area/solar/starboard/aft) -"cXo" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xeno_blastdoor"; + name = "biohazard containment door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cQT" = ( +/obj/structure/closet/coffin, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/chapel/main) +"cQV" = ( +/obj/item/device/flashlight/lantern{ + pixel_y = 7 + }, +/obj/structure/table/wood, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"cQW" = ( +/obj/effect/landmark/start/chaplain, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"cQX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/chapel/main) +"cQY" = ( +/obj/machinery/door/airlock/external{ + name = "Departure Lounge Airlock" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cQZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno_blastdoor"; + name = "biohazard containment door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cRa" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall, +/area/science/xenobiology) +"cRb" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/science/xenobiology) +"cRc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "47" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/whitepurple{ + dir = 4 + }, +/area/science/xenobiology) +"cRe" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"cRf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/xenobiology) +"cRg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRh" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 9 + }, +/area/science/xenobiology) +"cRi" = ( +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"cRj" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cXp" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main) -"cXq" = ( +"cRk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRl" = ( /obj/machinery/door/window{ dir = 4; name = "Mass Driver"; @@ -75516,7 +70861,7 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cXr" = ( +"cRm" = ( /obj/machinery/mass_driver{ dir = 2; id = "chapelgun" @@ -75536,7 +70881,7 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cXs" = ( +"cRn" = ( /obj/machinery/camera{ c_tag = "Chapel - Port"; dir = 4; @@ -75549,49 +70894,55 @@ dir = 8 }, /area/chapel/main) -"cXt" = ( -/obj/item/device/flashlight/lantern{ - pixel_y = 7 +"cRo" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel/chapel{ + dir = 4 }, -/obj/structure/table/wood, -/turf/open/floor/plasteel/dark, /area/chapel/main) -"cXu" = ( -/obj/effect/landmark/start/chaplain, -/turf/open/floor/plasteel/dark, +"cRp" = ( +/turf/open/floor/plasteel/vault, /area/chapel/main) -"cXv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 +"cRq" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/vault, +/area/chapel/main) +"cRr" = ( +/obj/machinery/light/small, +/obj/machinery/button/door{ + id = "chapel_shutters_space"; + name = "chapel shutters control"; + pixel_x = -6; + pixel_y = -25; + req_access_txt = "0" + }, +/obj/machinery/light_switch{ + pixel_x = 6; + pixel_y = -25 }, /turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/chapel/main) +"cRs" = ( +/obj/machinery/light/small{ dir = 8 }, -/area/chapel/main) -"cXw" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel/chapel, -/area/chapel/main) -"cXx" = ( -/obj/machinery/door/airlock/external{ - name = "Departure Lounge Airlock" - }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cXy" = ( +"cRt" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cRu" = ( /obj/structure/sign/warning/biohazard, /turf/closed/wall/r_wall, /area/science/xenobiology) -"cXz" = ( -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"cXA" = ( +"cRv" = ( /obj/machinery/doorButtons/access_button{ idDoor = "xeno_airlock_exterior"; idSelf = "xeno_airlock_control"; @@ -75603,12 +70954,11 @@ icon_state = "1-2" }, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/research{ autoclose = 0; frequency = 1449; - icon_state = "door_locked"; id_tag = "xeno_airlock_exterior"; - locked = 1; name = "Xenobiology Lab External Airlock"; req_access_txt = "55" }, @@ -75616,11 +70966,59 @@ dir = 4 }, /area/science/xenobiology) -"cXB" = ( +"cRw" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/science/xenobiology) -"cXC" = ( +"cRx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"cRy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRz" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/xenobiology) +"cRA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/xenobiology) +"cRC" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRD" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cRE" = ( /obj/machinery/hydroponics/soil{ pixel_y = 8 }, @@ -75635,7 +71033,7 @@ dir = 2 }, /area/chapel/main) -"cXD" = ( +"cRF" = ( /obj/machinery/door/morgue{ name = "Chapel Garden"; req_access_txt = "0" @@ -75644,7 +71042,7 @@ dir = 2 }, /area/chapel/main) -"cXE" = ( +"cRG" = ( /obj/machinery/light/small, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -75657,20 +71055,16 @@ }, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cXF" = ( +"cRH" = ( /obj/structure/chair, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cXG" = ( +"cRI" = ( /obj/structure/chair, /obj/effect/landmark/start/chaplain, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cXH" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/vault, -/area/chapel/main) -"cXI" = ( +"cRJ" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -75688,7 +71082,7 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cXJ" = ( +"cRK" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -75697,41 +71091,1356 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cXK" = ( -/obj/structure/bookcase{ - name = "Holy Bookcase" - }, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/chapel/main) -"cXL" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/chapel/main) -"cXM" = ( -/turf/open/floor/plasteel/vault, -/area/chapel/main) -"cXN" = ( -/obj/machinery/light/small, -/obj/machinery/button/door{ +"cRL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ id = "chapel_shutters_space"; - name = "chapel shutters control"; - pixel_x = -6; - pixel_y = -25; - req_access_txt = "0" + name = "chapel shutters" }, +/turf/open/floor/plating, +/area/chapel/main) +"cRM" = ( +/obj/machinery/processor/slime, +/obj/effect/turf_decal/stripes/corner{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRN" = ( +/obj/machinery/monkey_recycler, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/xenobiology) +"cRO" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/aft) +"cRP" = ( +/obj/machinery/door/poddoor{ + id = "chapelgun"; + name = "Chapel Launcher Door" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/chapel/main) +"cRR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cRS" = ( +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/xenobiology) +"cRT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/light_switch{ + pixel_x = 25 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"cRU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"cRV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRW" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"cRX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRY" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "test chamber blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"cRZ" = ( +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"cSa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"cSd" = ( +/turf/closed/wall, +/area/science/xenobiology) +"cSe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSh" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSj" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSk" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSm" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio8"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSn" = ( +/turf/open/floor/engine, +/area/science/xenobiology) +"cSp" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Pen #1"; + dir = 4; + network = list("SS13","RD","Xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSq" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen #1"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSs" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen #1"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSt" = ( +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSv" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen #2"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSw" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen #2"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSx" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Pen #2"; + dir = 8; + network = list("SS13","RD","Xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSy" = ( +/mob/living/simple_animal/slime, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSz" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/space, +/area/solar/starboard/aft) +"cSA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSB" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio3"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSC" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/space, +/area/solar/starboard/aft) +"cSD" = ( +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"cSE" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSF" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSI" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/science/xenobiology) +"cSJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSL" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSM" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio7"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSN" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen #3"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSO" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen #3"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSP" = ( +/obj/docking_port/stationary/random{ + id = "pod_lavaland1"; + name = "lavaland" + }, +/turf/open/space, +/area/space/nearstation) +"cSQ" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen #4"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "containment blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSR" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen #4"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSS" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio2"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cST" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio1"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSU" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_x = -32; + possible_destinations = "pod_lavaland1"; + shuttleId = "pod1" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/pod_1) +"cSV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSW" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table/wood, +/obj/item/folder{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/office) +"cSZ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cTa" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cTb" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen #5"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTc" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen #5"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio1"; + name = "containment blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cTd" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_x = 25 + }, +/obj/item/storage/pod{ + pixel_x = -26 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/pod_1) +"cTe" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen #6"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTf" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"cTg" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen #6"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cTi" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_y = -32; + possible_destinations = "pod_lavaland4"; + shuttleId = "pod4" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/pod_4) +"cTj" = ( +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTk" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/button/ignition{ + id = "Xenobio"; + pixel_x = -6; + pixel_y = -3 + }, +/obj/machinery/button/door{ + id = "Xenolab"; + name = "Test Chamber Blast Doors"; + pixel_x = 4; + pixel_y = -3; + req_access_txt = "55" + }, +/obj/structure/table/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTm" = ( +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "test chamber blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"cTn" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"cTo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/chapel/main) +"cTp" = ( +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"cTq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch{ + name = "Test Chamber Maintenance"; + req_access_txt = "47"; + req_one_access_txt = "0" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cTr" = ( +/obj/machinery/computer/security/telescreen{ + dir = 1; + name = "Test Chamber Monitor"; + network = list("Xeno"); + pixel_y = 2 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTs" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTt" = ( +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Maximum Security Test Chamber"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTu" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/item/storage/pod{ pixel_x = 6; - pixel_y = -25 + pixel_y = -32 + }, +/obj/machinery/light/small, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/pod_4) +"cTw" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cTy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/comfy/black{ + dir = 4 }, /turf/open/floor/plasteel/chapel{ dir = 1 }, /area/chapel/main) -"cXO" = ( +"cTz" = ( +/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/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTA" = ( +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"cTB" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"cTC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"cTD" = ( +/obj/structure/cable/yellow, +/obj/machinery/shieldwallgen/xenobiologyaccess, +/turf/open/floor/plating, +/area/science/xenobiology) +"cTR" = ( +/obj/effect/landmark/xmastree, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"cTT" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"cUH" = ( +/obj/structure/table/optable, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cUL" = ( +/obj/docking_port/stationary/random{ + dir = 4; + id = "pod_lavaland4"; + name = "lavaland" + }, +/turf/open/space, +/area/space/nearstation) +"cUM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cUN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cUR" = ( +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/valve/digital{ + name = "Waste Release" + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cUT" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/machinery/photocopier{ + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/library) +"cUU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/wood, +/area/library) +"cUZ" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 5; + height = 7; + id = "supply_home"; + name = "Cargo Bay"; + width = 12 + }, +/turf/open/space/basic, +/area/space) +"cVa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cVb" = ( +/obj/structure/table/wood, +/obj/item/device/camera_film{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/device/camera_film{ + pixel_y = 9 + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/turf/open/floor/wood, +/area/library) +"cVd" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -30 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"cVe" = ( +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole/bookmanagement, +/obj/structure/noticeboard{ + desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; + dir = 8; + name = "requests board"; + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/library) +"cVf" = ( +/obj/machinery/light_switch{ + pixel_x = 28 + }, +/turf/open/floor/wood, +/area/library) +"cVh" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"cVi" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/wood, +/area/library) +"cVx" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 13; + id = "ferry_home"; + name = "port bay 2"; + turf_type = /turf/open/space; + width = 5 + }, +/turf/open/space/basic, +/area/space) +"cVy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/atmos) +"cVz" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "n2_in"; + volume_rate = 200 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/engine/atmos) +"cVC" = ( +/mob/living/simple_animal/sloth/citrus, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"cVD" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cVE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"cVH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"cVJ" = ( +/obj/structure/window/reinforced, +/obj/machinery/computer/atmos_control/tank{ + dir = 1; + frequency = 1441; + input_tag = "air_in"; + name = "Mixed Air Supply Control"; + output_tag = "air_out"; + sensors = list("air_sensor" = "Tank") + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/engine/atmos) +"cVK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"cVL" = ( +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"cVM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"cVQ" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"cWg" = ( +/obj/docking_port/mobile/auxillary_base{ + dheight = 4; + dir = 2; + dwidth = 4; + height = 9; + width = 9; + timid = 0 + }, +/obj/machinery/bluespace_beacon, +/obj/machinery/computer/auxillary_base, +/turf/closed/wall, +/area/shuttle/auxillary_base) +"cWh" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"cWA" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cWF" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"cWJ" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"cWK" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"cWM" = ( +/obj/machinery/door/airlock/external{ + name = "Construction Zone"; + req_access = null; + req_access_txt = "0"; + req_one_access_txt = "0" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"cXc" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/easel, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cXz" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Aft"; + dir = 1; + network = list("SS13","Engine") + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cXA" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) +"cXE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/construction/mining/aux_base) +"cXI" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cXR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/construction/mining/aux_base) +"cXZ" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cYc" = ( +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/machinery/camera{ + c_tag = "Robotics - Aft"; + dir = 1; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/robotics/lab) +"cYj" = ( +/obj/structure/closet/firecloset, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cYE" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/construction/mining/aux_base) +"cYG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/yellow/side, +/area/construction/mining/aux_base) +"cYJ" = ( +/obj/docking_port/stationary{ + dheight = 0; + dir = 2; + dwidth = 9; + height = 25; + id = "emergency_home"; + name = "MetaStation emergency evac bay"; + width = 29 + }, +/turf/open/space/basic, +/area/space) +"cYK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for the Auxillary Mining Base."; + dir = 1; + name = "Auxillary Base Monitor"; + network = list("AuxBase"); + pixel_y = -28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/yellow/side, +/area/construction/mining/aux_base) +"cYL" = ( +/obj/machinery/door/poddoor/shutters{ + id = "aux_base_shutters"; + name = "Auxillary Base Shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"cYP" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/engineering{ + name = "Auxillary Base Construction"; + req_access_txt = "0"; + req_one_access_txt = "32;47;48" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"cYQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/construction/mining/aux_base) +"cYT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cZa" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cZc" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel/chapel, +/area/chapel/main) +"cZd" = ( /obj/structure/chair/comfy/black{ dir = 8 }, @@ -75739,21 +72448,559 @@ dir = 4 }, /area/chapel/main) -"cXP" = ( +"cZf" = ( +/obj/structure/chair, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"cZh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 4 + }, +/area/hallway/secondary/entry) +"cZq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"cZv" = ( +/turf/open/floor/circuit/killroom, +/area/science/xenobiology) +"cZR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/main) +"dap" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/main) +"daA" = ( +/obj/machinery/door/window/southleft{ + dir = 2; + name = "Maximum Security Test Chamber"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "test chamber blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"daB" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/engine, +/area/science/xenobiology) +"daC" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"daD" = ( +/obj/structure/disposaloutlet{ + dir = 2 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"daE" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 10 + }, +/obj/item/device/electropack, +/turf/open/floor/engine, +/area/science/xenobiology) +"daF" = ( +/obj/machinery/sparker{ + id = "Xenobio"; + pixel_x = -25 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"daG" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"daH" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/engine, +/area/science/xenobiology) +"daI" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/stack/cable_coil, +/obj/item/device/multitool, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"daJ" = ( +/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner, +/turf/open/floor/engine, +/area/science/xenobiology) +"daK" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Test Chamber"; + dir = 1; + network = list("SS13","RD","Xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"daL" = ( +/obj/machinery/light/small, +/turf/open/floor/engine, +/area/science/xenobiology) +"daM" = ( +/obj/structure/table, +/obj/item/device/assembly/igniter{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 2; + pixel_y = -1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"daN" = ( +/obj/item/device/radio/intercom{ + pixel_y = -25 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"daO" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"daP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"daQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"daR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1; + external_pressure_bound = 140; + name = "server vent"; + pressure_checks = 0 + }, +/turf/open/floor/circuit/killroom, +/area/science/xenobiology) +"daS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/circuit/killroom, +/area/science/xenobiology) +"daW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"daX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/port/fore) +"daY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"daZ" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/machinery/power/rad_collector/anchored, +/obj/structure/cable, +/obj/structure/window/plasma/reinforced, +/turf/open/floor/engine, +/area/engine/supermatter) +"dbb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"dbd" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"dbe" = ( +/obj/machinery/keycard_auth{ + pixel_x = 26 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"dbg" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dbh" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dbj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dbk" = ( +/obj/item/hand_labeler_refill, +/obj/structure/easel, +/turf/open/floor/plating, +/area/maintenance/port) +"dbl" = ( +/obj/structure/easel, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dbm" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"dbn" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"dbo" = ( /obj/machinery/light/small{ dir = 8 }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cXQ" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Pen #3"; + dir = 4; + network = list("SS13","RD","Xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"dbp" = ( /obj/machinery/light/small{ dir = 4 }, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Pen #4"; + dir = 8; + network = list("SS13","RD","Xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"dbq" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/maintenance/port/aft) +"dbr" = ( +/obj/machinery/camera{ + c_tag = "Morgue"; + dir = 2; + network = list("SS13","Medbay") + }, +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"dbs" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Pen #5"; + dir = 4; + network = list("SS13","RD","Xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"dbt" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Pen #6"; + dir = 8; + network = list("SS13","RD","Xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"dbv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small, +/turf/open/floor/circuit/killroom, +/area/science/xenobiology) +"dbw" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Kill Chamber"; + dir = 1; + network = list("SS13","RD","Xeno"); + start_active = 1 + }, +/turf/open/floor/circuit/killroom, +/area/science/xenobiology) +"dbE" = ( +/obj/machinery/plantgenes, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"dbF" = ( +/obj/structure/bookcase{ + name = "Holy Bookcase" + }, +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/chapel/main) +"dbH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/research{ + id_tag = "ResearchInt"; + name = "Research Division"; + req_access_txt = "0"; + req_one_access_txt = "47" + }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cXR" = ( +/area/science/research) +"dbI" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/research{ + id_tag = "ResearchInt"; + name = "Research Division"; + req_access_txt = "0"; + req_one_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"dbJ" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/solar{ + id = "aftstarboard"; + name = "Aft-Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard/aft) +"dbK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/space, +/area/solar/starboard/aft) +"dbL" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/solar{ + id = "aftstarboard"; + name = "Aft-Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard/aft) +"dbM" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space, +/area/solar/starboard/aft) +"dbN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"dbO" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space, +/area/solar/starboard/aft) +"dbP" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"dbQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"dbR" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space, +/area/solar/starboard/aft) +"dbS" = ( +/obj/structure/lattice/catwalk, +/obj/item/stack/cable_coil, +/turf/open/space, +/area/solar/starboard/aft) +"dbT" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/space, +/area/solar/starboard/aft) +"dbU" = ( +/obj/machinery/power/tracker, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating/airless, +/area/solar/starboard/aft) +"dbV" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space, +/area/solar/starboard/aft) +"dbW" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/space, +/area/solar/starboard/aft) +"dbX" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/sink{ dir = 8; @@ -75765,7 +73012,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cXS" = ( +"dbY" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -75774,7 +73021,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cXT" = ( +"dbZ" = ( /obj/machinery/doorButtons/access_button{ idDoor = "xeno_airlock_interior"; idSelf = "xeno_airlock_control"; @@ -75796,20 +73043,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cXU" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 9 - }, -/area/science/xenobiology) -"cXV" = ( +"dca" = ( /obj/machinery/firealarm{ dir = 2; pixel_y = 26 @@ -75818,12 +73052,7 @@ dir = 1 }, /area/science/xenobiology) -"cXW" = ( -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/xenobiology) -"cXX" = ( +"dcb" = ( /obj/machinery/airalarm{ pixel_y = 23 }, @@ -75836,7 +73065,7 @@ dir = 1 }, /area/science/xenobiology) -"cXY" = ( +"dcc" = ( /obj/structure/table/glass, /obj/item/stack/sheet/mineral/plasma{ pixel_y = 4 @@ -75872,7 +73101,7 @@ dir = 1 }, /area/science/xenobiology) -"cXZ" = ( +"dcd" = ( /obj/structure/table/glass, /obj/item/paper_bin{ pixel_y = 4 @@ -75898,7 +73127,7 @@ dir = 1 }, /area/science/xenobiology) -"cYa" = ( +"dce" = ( /obj/structure/table/glass, /obj/item/storage/box/monkeycubes{ pixel_x = 2; @@ -75909,7 +73138,7 @@ dir = 1 }, /area/science/xenobiology) -"cYb" = ( +"dcf" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 @@ -75918,23 +73147,7 @@ dir = 5 }, /area/science/xenobiology) -"cYc" = ( -/obj/machinery/door/poddoor{ - id = "chapelgun"; - name = "Chapel Launcher Door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/chapel/main) -"cYd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chapel_shutters_space"; - name = "chapel shutters" - }, -/turf/open/floor/plating, -/area/chapel/main) -"cYe" = ( +"dcg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/shower{ dir = 4 @@ -75950,7 +73163,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYf" = ( +"dch" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -75959,7 +73172,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYg" = ( +"dci" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -75971,14 +73184,13 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYh" = ( +"dcj" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/research{ autoclose = 0; frequency = 1449; - icon_state = "door_locked"; id_tag = "xeno_airlock_interior"; - locked = 1; name = "Xenobiology Lab Internal Airlock"; req_access_txt = "55" }, @@ -75992,7 +73204,7 @@ dir = 4 }, /area/science/xenobiology) -"cYi" = ( +"dck" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -76011,7 +73223,7 @@ dir = 8 }, /area/science/xenobiology) -"cYj" = ( +"dcl" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -76020,7 +73232,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYk" = ( +"dcm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -76033,7 +73245,7 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"cYl" = ( +"dcn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -76049,7 +73261,7 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"cYm" = ( +"dco" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -76062,39 +73274,24 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"cYn" = ( +"dcp" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYo" = ( +"dcq" = ( /obj/structure/chair/office/light{ dir = 1 }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYp" = ( -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cYq" = ( +"dcr" = ( /turf/open/floor/plasteel/whitepurple/side{ dir = 4 }, /area/science/xenobiology) -"cYr" = ( -/obj/docking_port/stationary{ - dheight = 0; - dir = 2; - dwidth = 9; - height = 25; - id = "emergency_home"; - name = "MetaStation emergency evac bay"; - width = 29 - }, -/turf/open/space/basic, -/area/space) -"cYs" = ( +"dcs" = ( /obj/structure/closet/emcloset, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -76109,7 +73306,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYt" = ( +"dct" = ( /obj/structure/closet/l3closet/scientist, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -76120,7 +73317,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYu" = ( +"dcu" = ( /obj/structure/closet/l3closet/scientist, /obj/machinery/airalarm{ dir = 1; @@ -76134,28 +73331,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"cYw" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/xenobiology) -"cYx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cYy" = ( +"dcv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -76167,14 +73343,14 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"cYz" = ( +"dcw" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/science/xenobiology) -"cYA" = ( +"dcx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/chair/comfy/black{ dir = 1 @@ -76184,67 +73360,33 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"cYB" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cYC" = ( +"dcy" = ( /obj/machinery/holopad, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYD" = ( +"dcz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/r_wall, /area/science/xenobiology) -"cYE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/xenobiology) -"cYF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cYG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cYH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cYI" = ( +"dcA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYJ" = ( +"dcB" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYK" = ( +"dcC" = ( /obj/structure/chair/office/light, /obj/effect/landmark/start/scientist, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYL" = ( +"dcD" = ( /obj/machinery/reagentgrinder{ pixel_x = -1; pixel_y = 8 @@ -76254,49 +73396,20 @@ dir = 4 }, /area/science/xenobiology) -"cYM" = ( +"dcE" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 4 }, /turf/open/floor/plating/airless, /area/science/xenobiology) -"cYN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/science/xenobiology) -"cYO" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cYP" = ( -/obj/machinery/monkey_recycler, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/xenobiology) -"cYQ" = ( -/obj/machinery/processor/slime, -/obj/effect/turf_decal/stripes/corner{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cYR" = ( +"dcG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYS" = ( +"dcH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -76308,7 +73421,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYT" = ( +"dcI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment{ dir = 4 @@ -76318,7 +73431,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYU" = ( +"dcJ" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/extinguisher{ pixel_x = 4; @@ -76333,7 +73446,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYV" = ( +"dcK" = ( /obj/machinery/disposal/bin, /obj/structure/sign/warning/deathsposal{ pixel_y = -32 @@ -76345,7 +73458,7 @@ dir = 2 }, /area/science/xenobiology) -"cYW" = ( +"dcL" = ( /obj/machinery/light, /obj/structure/table/glass, /obj/item/storage/box/beakers{ @@ -76357,7 +73470,7 @@ }, /turf/open/floor/plasteel/whitepurple/side, /area/science/xenobiology) -"cYX" = ( +"dcM" = ( /obj/machinery/chem_master, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -76365,339 +73478,13 @@ }, /turf/open/floor/plasteel/whitepurple/side, /area/science/xenobiology) -"cYY" = ( +"dcN" = ( /obj/machinery/chem_heater, /turf/open/floor/plasteel/whitepurple/side{ dir = 6 }, /area/science/xenobiology) -"cYZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZa" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZc" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet, -/turf/open/floor/engine, -/area/science/xenobiology) -"cZd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cZe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cZf" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZj" = ( -/obj/structure/window/reinforced, -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio8"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZk" = ( -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cZl" = ( -/turf/open/floor/engine, -/area/science/xenobiology) -"cZm" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #1"; - dir = 4; - network = list("SS13","RD","Xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cZn" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #1"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cZo" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #1"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZs" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #2"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZt" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #2"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "containment blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cZu" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #2"; - dir = 8; - network = list("SS13","RD","Xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cZv" = ( -/mob/living/simple_animal/slime, -/turf/open/floor/engine, -/area/science/xenobiology) -"cZw" = ( -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cZx" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio3"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZy" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZB" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cZD" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cZE" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall, -/area/science/xenobiology) -"cZF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZG" = ( +"dcO" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 @@ -76713,7 +73500,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cZH" = ( +"dcP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -76727,35 +73514,14 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/xenobiology) -"cZI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZJ" = ( +"dcQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/corner{ dir = 8 }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cZK" = ( -/obj/structure/window/reinforced, -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio7"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZL" = ( +"dcR" = ( /obj/structure/cable/yellow{ icon_state = "0-2" }, @@ -76766,138 +73532,7 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/xenobiology) -"cZM" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #3"; - dir = 4; - network = list("SS13","RD","Xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cZN" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #3"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cZO" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #3"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZQ" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #4"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZR" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #4"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "containment blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cZS" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #4"; - dir = 8; - network = list("SS13","RD","Xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cZT" = ( -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cZU" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio2"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZV" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZW" = ( +"dcS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -76912,26 +73547,14 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/xenobiology) -"cZX" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZY" = ( +"dcT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cZZ" = ( +"dcU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -76945,7 +73568,7 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/xenobiology) -"daa" = ( +"dcV" = ( /obj/structure/window/reinforced, /obj/machinery/button/door{ id = "xenobio6"; @@ -76959,7 +73582,7 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"dab" = ( +"dcW" = ( /obj/structure/cable/yellow{ icon_state = "0-2" }, @@ -76970,85 +73593,7 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/xenobiology) -"dac" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #5"; - dir = 4; - network = list("SS13","RD","Xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dad" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #5"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "containment blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dae" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #5"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"daf" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #6"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"dag" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #6"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "containment blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dah" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #6"; - dir = 8; - network = list("SS13","RD","Xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dai" = ( +"dcX" = ( /obj/structure/cable/yellow{ icon_state = "0-4" }, @@ -77060,26 +73605,7 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/xenobiology) -"daj" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio1"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"dak" = ( +"dcY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -77089,20 +73615,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dal" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dam" = ( +"dcZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -77110,7 +73623,7 @@ /obj/effect/turf_decal/stripes/corner, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dan" = ( +"dda" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -77126,7 +73639,7 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"dao" = ( +"ddb" = ( /obj/structure/cable/yellow, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -77141,7 +73654,7 @@ }, /turf/open/floor/plating, /area/science/xenobiology) -"dap" = ( +"ddc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -77150,7 +73663,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"daq" = ( +"ddd" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -77162,17 +73675,11 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dar" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"das" = ( +"dde" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"dat" = ( -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"dau" = ( +"ddf" = ( /obj/machinery/portable_atmospherics/canister, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 @@ -77187,60 +73694,7 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"dav" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"daw" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dax" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"day" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"daz" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"daA" = ( +"ddg" = ( /obj/machinery/portable_atmospherics/canister, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 @@ -77255,38 +73709,21 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"daB" = ( +"ddh" = ( /turf/open/floor/plating{ icon_state = "platingdmg3" }, /area/maintenance/department/science/xenobiology) -"daC" = ( +"ddi" = ( /obj/structure/rack, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"daD" = ( +"ddj" = ( /turf/open/floor/plating{ icon_state = "platingdmg2" }, /area/maintenance/department/science/xenobiology) -"daE" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"daF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch{ - name = "Test Chamber Maintenance"; - req_access_txt = "47"; - req_one_access_txt = "0" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"daG" = ( +"ddk" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -77298,19 +73735,7 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"daH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"daI" = ( +"ddl" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -77330,7 +73755,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"daJ" = ( +"ddm" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -77345,7 +73770,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"daK" = ( +"ddn" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -77354,7 +73779,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"daL" = ( +"ddo" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -77366,7 +73791,7 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"daM" = ( +"ddp" = ( /obj/machinery/door/airlock/hatch{ name = "Test Chamber Maintenance"; req_access_txt = "47"; @@ -77377,111 +73802,17 @@ }, /turf/open/floor/plating, /area/science/xenobiology) -"daN" = ( +"ddq" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"daO" = ( +"ddr" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"daP" = ( -/obj/structure/closet, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"daQ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"daR" = ( -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"daS" = ( -/obj/machinery/computer/security/telescreen{ - dir = 1; - name = "Test Chamber Monitor"; - network = list("Xeno"); - pixel_y = 2 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"daT" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/button/ignition{ - id = "Xenobio"; - pixel_x = -6; - pixel_y = -3 - }, -/obj/machinery/button/door{ - id = "Xenolab"; - name = "Test Chamber Blast Doors"; - pixel_x = 4; - pixel_y = -3; - req_access_txt = "55" - }, -/obj/structure/table/reinforced, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"daU" = ( -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Maximum Security Test Chamber"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"daV" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"daW" = ( -/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/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"daX" = ( +"dds" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -77490,64 +73821,13 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"daY" = ( +"ddt" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"daZ" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"dba" = ( -/obj/structure/cable/yellow, -/obj/machinery/shieldwallgen/xenobiologyaccess, -/turf/open/floor/plating, -/area/science/xenobiology) -"dbb" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "test chamber blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"dbc" = ( -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "test chamber blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"dbd" = ( -/obj/machinery/door/window/southleft{ - dir = 2; - name = "Maximum Security Test Chamber"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "test chamber blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbe" = ( +"ddu" = ( /obj/structure/cable/yellow{ icon_state = "0-8" }, @@ -77562,7 +73842,7 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/xenobiology) -"dbf" = ( +"ddv" = ( /obj/structure/cable/yellow{ icon_state = "0-8" }, @@ -77573,62 +73853,7 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/xenobiology) -"dbg" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"dbh" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbi" = ( -/obj/structure/disposaloutlet{ - dir = 2 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbj" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 10 - }, -/obj/item/device/electropack, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbk" = ( -/obj/machinery/sparker{ - id = "Xenobio"; - pixel_x = -25 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbl" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbm" = ( -/obj/item/device/radio/beacon, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbn" = ( -/obj/structure/table, -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/stack/cable_coil, -/obj/item/device/multitool, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbo" = ( +"ddw" = ( /obj/structure/cable/yellow, /obj/machinery/power/apc{ dir = 4; @@ -77638,91 +73863,7 @@ }, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"dbp" = ( -/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbq" = ( -/obj/machinery/light/small, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbr" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Test Chamber"; - dir = 1; - network = list("SS13","RD","Xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbs" = ( -/obj/item/device/radio/intercom{ - pixel_y = -25 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbt" = ( -/obj/structure/table, -/obj/item/device/assembly/igniter{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 2; - pixel_y = -1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbu" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"dbv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"dbw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"dbx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - glass = 1; - name = "Slime Euthanization Chamber"; - opacity = 0; - req_access_txt = "55" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dby" = ( +"ddx" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -77733,56 +73874,17 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dbz" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dbA" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dbB" = ( -/obj/machinery/door/airlock/research{ - glass = 1; - name = "Slime Euthanization Chamber"; - opacity = 0; - req_access_txt = "55" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dbC" = ( +"ddy" = ( /turf/open/floor/plating{ icon_state = "platingdmg1" }, /area/maintenance/department/science/xenobiology) -"dbD" = ( -/obj/structure/rack, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/suit/hooded/wintercoat, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"dbE" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1; - name = "euthanization chamber freezer"; - on = 1; - target_temperature = 80 - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"dbF" = ( +"ddz" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/open/floor/plating, /area/science/xenobiology) -"dbG" = ( +"ddA" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research{ @@ -77793,23 +73895,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dbH" = ( -/turf/open/floor/circuit/killroom, -/area/science/xenobiology) -"dbI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1; - external_pressure_bound = 140; - name = "server vent"; - pressure_checks = 0 - }, -/turf/open/floor/circuit/killroom, -/area/science/xenobiology) -"dbJ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/circuit/killroom, -/area/science/xenobiology) -"dbK" = ( +"ddB" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 1; external_pressure_bound = 120; @@ -77817,31 +73903,4363 @@ }, /turf/open/floor/circuit/killroom, /area/science/xenobiology) -"dbL" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small, -/turf/open/floor/circuit/killroom, -/area/science/xenobiology) -"dbM" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Kill Chamber"; - dir = 1; - network = list("SS13","RD","Xeno"); - start_active = 1 - }, -/turf/open/floor/circuit/killroom, -/area/science/xenobiology) -"dbN" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"dbO" = ( +"ddC" = ( /obj/structure/disposalpipe/trunk{ dir = 1 }, /obj/structure/disposaloutlet, /turf/open/floor/plating/airless, /area/science/xenobiology) +"ddE" = ( +/obj/effect/landmark/start/cook, +/obj/machinery/holopad, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"ddF" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"ddG" = ( +/obj/effect/turf_decal/stripes/line, +/obj/docking_port/stationary/public_mining_dock, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"ddO" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ddP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ddQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ddS" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Fore"; + dir = 4; + network = list("SS13","Engine") + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ddT" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ddU" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ddV" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ddW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ddX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ddY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ddZ" = ( +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"dea" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + volume_rate = 200 + }, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"deb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"ded" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/engineering) +"dee" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/engineering) +"def" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"deh" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/engineering) +"dei" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dej" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dek" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + name = "Mix to Gas" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"del" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dem" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Gas to Mix" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"den" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"dep" = ( +/obj/machinery/firealarm{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"deq" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"der" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"des" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"deu" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dev" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"dew" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Laser Room"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"dex" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"dey" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"deA" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"deB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"deC" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"deD" = ( +/obj/machinery/status_display, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"deI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"deJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, +/turf/open/floor/engine, +/area/engine/engineering) +"deK" = ( +/obj/structure/cable/white, +/obj/machinery/power/emitter/anchored{ + dir = 2; + state = 2 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"deL" = ( +/obj/structure/cable/white, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"deM" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"deN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"deO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"deS" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/machinery/power/rad_collector/anchored, +/obj/structure/cable, +/obj/structure/window/plasma/reinforced, +/turf/open/floor/engine, +/area/engine/supermatter) +"deU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, +/turf/open/floor/engine, +/area/engine/engineering) +"deV" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"deW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Starboard"; + dir = 4; + network = list("SS13","Engine") + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"deX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"deY" = ( +/obj/structure/reflector/single/anchored{ + dir = 9 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"dfa" = ( +/obj/machinery/power/supermatter_shard/crystal/engine, +/turf/open/floor/engine, +/area/engine/supermatter) +"dfb" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"dfc" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"dfd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dfe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, +/turf/open/floor/engine, +/area/engine/engineering) +"dff" = ( +/obj/structure/reflector/double/anchored{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"dfg" = ( +/obj/structure/reflector/single/anchored{ + dir = 10 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"dfh" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"dfi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"dfj" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"dfk" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/power/rad_collector/anchored, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"dfm" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/machinery/power/rad_collector/anchored, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"dfp" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"dfq" = ( +/obj/machinery/camera{ + c_tag = "Supermatter Chamber"; + dir = 4; + network = list("Engine") + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"dft" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dfu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + filter_type = "n2" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dfz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"dfA" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"dfB" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/power/emitter/anchored{ + dir = 1; + state = 2 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"dfC" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/power/emitter/anchored{ + dir = 1; + state = 2 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"dfD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dfE" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dfF" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/meter, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dfG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dfI" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Cooling Loop Bypass" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dfJ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dfM" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"dfO" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"dfP" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Atmos to Loop" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dfQ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/engine, +/area/engine/engineering) +"dfR" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Gas to Cold Loop"; + on = 1 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engine/engineering) +"dfS" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engine/engineering) +"dfT" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engine/engineering) +"dfU" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Cold Loop to Gas"; + on = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dfV" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"dfW" = ( +/obj/item/wrench, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"dfX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engine/engineering) +"dfY" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"dfZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"dga" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"dgb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"dgc" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dgd" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/space, +/area/space/nearstation) +"dge" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"dgf" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/space, +/area/space/nearstation) +"dgg" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"dgh" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"dgi" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dgj" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"dgk" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"dgm" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"dgo" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dgp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dgr" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 10 + }, +/turf/open/space, +/area/space/nearstation) +"dgt" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"dgu" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/space, +/area/space/nearstation) +"dgv" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"dgw" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space/nearstation) +"dgz" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/delivery, +/obj/item/clothing/glasses/meson/engine, +/turf/open/floor/plasteel, +/area/engine/engineering) +"dgA" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space/nearstation) +"dgB" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"dgI" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 5 + }, +/turf/open/space, +/area/space/nearstation) +"dgJ" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"dgK" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"dgM" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 10 + }, +/turf/open/space, +/area/space/nearstation) +"dgN" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space/nearstation) +"dgO" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space/nearstation) +"dgS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/transit_tube/horizontal, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space/nearstation) +"dha" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space/nearstation) +"dhc" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space/nearstation) +"dhe" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"dhg" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"dhh" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Mix to Engine"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"dhi" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/door/window/northleft{ + dir = 8; + icon_state = "left"; + name = "Inner Pipe Access"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"dhj" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"dhk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"dhl" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 9 + }, +/turf/open/space, +/area/space/nearstation) +"dhn" = ( +/obj/structure/table, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fore) +"dho" = ( +/obj/item/stack/sheet/cardboard, +/obj/structure/light_construct/small{ + dir = 1 + }, +/obj/structure/closet/crate, +/obj/item/coin/silver, +/obj/item/grenade/chem_grenade, +/obj/item/storage/box/lights/mixed, +/obj/item/watertank, +/obj/item/storage/box/donkpockets, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dhp" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"dhq" = ( +/obj/structure/table/reinforced, +/obj/structure/light_construct/small{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/structure/window/reinforced, +/obj/item/poster/random_official, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dhr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"dhs" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/blue, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/neck/tie/blue, +/obj/item/clothing/head/soft/blue, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault, +/area/crew_quarters/fitness/recreation) +"dht" = ( +/obj/item/cigbutt, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dhu" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dhv" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Outer Window"; + req_access_txt = "0" + }, +/obj/machinery/door/window/brigdoor{ + dir = 8; + name = "Brig Control Desk"; + req_access_txt = "3" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/poster/random_official, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"dhw" = ( +/obj/structure/closet, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dhx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dhy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/cardboard, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/floorgrime, +/area/quartermaster/warehouse) +"dhz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"dhA" = ( +/obj/machinery/washing_machine, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/barber, +/area/crew_quarters/dorms) +"dhB" = ( +/obj/item/clothing/glasses/meson, +/obj/structure/closet/crate, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dhC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/rack, +/obj/item/stack/sheet/cardboard, +/obj/item/stack/rods/fifty, +/obj/item/paper, +/obj/item/storage/box/lights/mixed, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/floorgrime, +/area/quartermaster/warehouse) +"dhD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"dhE" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dhF" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault, +/area/crew_quarters/dorms) +"dhG" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/brown/corner{ + dir = 4 + }, +/area/construction/storage/wing) +"dhH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dhI" = ( +/obj/machinery/vending/assist, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/storage/primary) +"dhJ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"dhK" = ( +/obj/structure/closet, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dhL" = ( +/obj/structure/table, +/obj/item/device/analyzer, +/obj/machinery/power/apc{ + dir = 2; + name = "Tool Storage APC"; + areastring = "/area/storage/primary"; + pixel_y = -27 + }, +/obj/structure/cable/yellow, +/obj/item/wrench, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/brown{ + dir = 10 + }, +/area/storage/primary) +"dhM" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/arrival{ + dir = 5 + }, +/area/hallway/secondary/entry) +"dhN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"dhO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dhP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"dhQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dhR" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"dhS" = ( +/obj/machinery/vending/cigarette, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/crew_quarters/toilet/auxiliary) +"dhT" = ( +/obj/structure/sign/poster/random, +/turf/closed/wall, +/area/crew_quarters/bar) +"dhU" = ( +/obj/structure/piano, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"dhV" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"dhW" = ( +/obj/structure/table/wood, +/obj/item/staff/broom, +/obj/item/wrench, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"dhX" = ( +/obj/structure/table/wood, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/clothing/head/sombrero, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"dhZ" = ( +/obj/structure/urinal{ + pixel_y = 29 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/crew_quarters/toilet/auxiliary) +"dib" = ( +/obj/structure/table/wood, +/obj/item/lipstick{ + pixel_y = 5 + }, +/obj/machinery/camera{ + c_tag = "Theatre - Stage"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/device/instrument/guitar, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"dic" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/secondary/entry) +"did" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"dif" = ( +/obj/item/soap/nanotrasen, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"dig" = ( +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"dih" = ( +/obj/machinery/light/small, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/crew_quarters/toilet/auxiliary) +"dii" = ( +/obj/machinery/door/window{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Theatre Stage"; + req_access_txt = "0" + }, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"dij" = ( +/obj/item/device/instrument/violin, +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"dik" = ( +/obj/structure/sign/poster/official/random, +/turf/closed/wall, +/area/crew_quarters/kitchen) +"dil" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/clothing/mask/pig, +/obj/item/bikehorn, +/obj/structure/table/wood, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"dim" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/sign/poster/contraband/clown{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"din" = ( +/obj/structure/table/wood, +/obj/item/paper, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"dio" = ( +/obj/structure/closet/crate, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/poster/random_official, +/turf/open/floor/plating, +/area/maintenance/port) +"dip" = ( +/obj/structure/table/wood, +/obj/machinery/button/door{ + id = "corporate_privacy"; + name = "corporate showroom shutters control"; + pixel_x = 28; + req_access_txt = "19" + }, +/obj/item/poster/random_official, +/obj/item/poster/random_official, +/obj/item/poster/random_official, +/obj/item/poster/random_official, +/obj/item/poster/random_official, +/obj/item/device/paicard{ + desc = "A real Nanotrasen success, these personal AIs provide all of the companionship of an AI without any law related red-tape."; + name = "Nanotrasen-brand personal AI device exhibit" + }, +/turf/open/floor/carpet, +/area/bridge/showroom/corporate) +"diq" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/clothing/mask/horsehead, +/obj/structure/table/wood, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/obj/item/clothing/mask/cigarette/pipe, +/obj/item/clothing/mask/fakemoustache, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"dir" = ( +/obj/machinery/camera{ + c_tag = "Theatre - Backstage"; + dir = 1; + network = list("SS13") + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/obj/structure/closet/crate/wooden/toy, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"dis" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"dit" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port) +"diu" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/storage/box/lights/mixed, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"div" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port) +"diw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/firealarm{ + pixel_y = 29 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/obj/structure/closet/crate/hydroponics, +/obj/item/shovel/spade, +/obj/item/wrench, +/obj/item/reagent_containers/glass/bucket, +/obj/item/cultivator, +/obj/item/wirecutters, +/turf/open/floor/plasteel/hydrofloor, +/area/hydroponics) +"dix" = ( +/obj/structure/rack, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"diy" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/poster/random_contraband, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"diz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/hydrofloor, +/area/hydroponics) +"diA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"diB" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"diC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"diD" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"diE" = ( +/obj/structure/rack, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/bottle/vermouth{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"diF" = ( +/obj/structure/chair/stool, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"diG" = ( +/obj/structure/chair/stool, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"diH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"diI" = ( +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/reagent_containers/food/drinks/beer{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/ale, +/obj/structure/table/wood, +/obj/item/device/instrument/eguitar, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"diJ" = ( +/obj/structure/light_construct/small, +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"diK" = ( +/obj/item/dice/d20, +/obj/item/dice, +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"diL" = ( +/obj/item/tank/internals/air, +/obj/item/tank/internals/air, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/machinery/space_heater, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"diM" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"diN" = ( +/obj/structure/chair/stool, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"diP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"diQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/aft) +"diR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/stack/ore/slag, +/turf/open/floor/plating, +/area/maintenance/aft) +"diS" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/aft) +"diT" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"diU" = ( +/obj/structure/closet/crate, +/obj/item/poster/random_official, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"diV" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Departure Lounge - Port Fore"; + dir = 4; + network = list("SS13") + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-24" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"diW" = ( +/obj/machinery/hydroponics/soil{ + pixel_y = 8 + }, +/obj/item/seeds/glowshroom, +/obj/item/seeds/corn, +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"djg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"djh" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"djj" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/camera{ + c_tag = "Chapel - Funeral Parlour"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"djk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/chapel/main) +"djr" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"djs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/science/xenobiology) +"djt" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"djx" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/crowbar, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"djz" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"djB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/landmark/observer_start, +/obj/effect/turf_decal/plaque{ + icon_state = "L8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"djC" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"djM" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 15; + id = "arrivals_stationary"; + name = "arrivals"; + width = 7; + roundstart_template = /datum/map_template/shuttle/arrival/box; + }, +/turf/open/space/basic, +/area/space) +"djW" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/paper, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"djX" = ( +/obj/structure/closet/coffin, +/obj/machinery/door/window/eastleft{ + name = "Coffin Storage"; + req_access_txt = "22" + }, +/turf/open/floor/plating, +/area/chapel/main) +"dlI" = ( +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"dlN" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/supermatter) +"dlV" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/science/xenobiology) +"dmq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + glass = 1; + name = "Slime Euthanization Chamber"; + opacity = 0; + req_access_txt = "55" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dmr" = ( +/obj/machinery/door/airlock/research{ + glass = 1; + name = "Slime Euthanization Chamber"; + opacity = 0; + req_access_txt = "55" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dmD" = ( +/obj/structure/displaycase/trophy, +/turf/open/floor/wood, +/area/library) +"dmF" = ( +/turf/closed/wall, +/area/quartermaster/sorting) +"dmH" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"dmT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"dnd" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dne" = ( +/turf/closed/wall, +/area/maintenance/port/fore) +"dnh" = ( +/turf/closed/wall, +/area/maintenance/starboard/fore) +"dni" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dnk" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dnr" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Port Bow Maintenance APC"; + areastring = "/area/maintenance/port/fore"; + pixel_x = 26 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/port/fore) +"dnu" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dnz" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dnF" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"dnG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dnM" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dnO" = ( +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dnP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dnR" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dnS" = ( +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dnZ" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"dod" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"doe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"doh" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard/fore) +"dou" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"doA" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"doJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dpk" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dps" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"dpG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dpL" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"dqe" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dqp" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/fore) +"dqu" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dqT" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboard/fore) +"dqU" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel, +/area/science/mixing) +"drQ" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/port/fore) +"dsg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"dss" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dst" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dtl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dtE" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dtP" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dtR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dtS" = ( +/obj/item/cigbutt, +/obj/machinery/power/apc{ + dir = 2; + name = "Starboard Bow Maintenance APC"; + areastring = "/area/maintenance/starboard/fore"; + pixel_y = -28 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"duo" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dux" = ( +/turf/closed/wall, +/area/maintenance/port/aft) +"duH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dvq" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dvt" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"dvw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dvE" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dvY" = ( +/turf/closed/wall, +/area/maintenance/starboard/aft) +"dwb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dwc" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dwe" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dwi" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dwj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dwv" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dww" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dwL" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboard/aft) +"dwQ" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dwX" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"dwY" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dxh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dxk" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dxv" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"dxQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dyc" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dyg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dyj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"dyp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"dyw" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dzc" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dzI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dzK" = ( +/turf/closed/wall/r_wall, +/area/maintenance/port/aft) +"dzQ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dAd" = ( +/obj/machinery/power/apc/highcap/five_k{ + dir = 2; + name = "Starboard Quarter Maintenance APC"; + areastring = "/area/maintenance/starboard/aft"; + pixel_y = -24 + }, +/obj/structure/cable/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dAh" = ( +/obj/item/storage/box, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dAn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dAp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/aft) +"dAw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dAx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dAZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dBe" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"dBu" = ( +/turf/closed/wall, +/area/engine/gravity_generator) +"dBw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"dBx" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"dBy" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"dBz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"dBA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"dBB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dBC" = ( +/obj/machinery/meter, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"dBF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/brig) +"dBG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/brig) +"dBH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/brig) +"dBI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/engine/break_room) +"dBJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"dBK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/engine/atmos) +"dBM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/caution{ + dir = 8 + }, +/area/engine/atmos) +"dBN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/medical/virology) +"dBO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"dBS" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dBT" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/medical/virology) +"dBU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/medical/virology) +"dBV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/medical/virology) +"dBX" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"dBY" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/crew_quarters/fitness/recreation) +"dBZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/warden) +"dCa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/warden) +"dCb" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/red, +/area/security/main) +"dCc" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/crew_quarters/fitness/recreation) +"dCe" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/fore) +"dCf" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"dCg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/brig) +"dCh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"dCi" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"dCj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"dCk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/engineering) +"dCl" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dCn" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"dCo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"dCp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/fore) +"dCq" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/courtroom) +"dCr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"dCs" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dCt" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/storage/primary) +"dCv" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/floorgrime, +/area/crew_quarters/locker) +"dCw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/engineering) +"dCx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"dCz" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"dCA" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/locker) +"dCB" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"dCC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dCD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dCE" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dCH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dCI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"dCJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"dCK" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/bridge) +"dCM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"dCN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"dCO" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"dCP" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"dCS" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/bar, +/area/crew_quarters/bar) +"dCT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dCU" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"dCV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dCW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port) +"dCX" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/library) +"dCY" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/atmos) +"dCZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/library) +"dDa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/secondary/command) +"dDb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/bar, +/area/crew_quarters/bar) +"dDe" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/kitchen) +"dDf" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/bridge/showroom/corporate) +"dDg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/bridge/showroom/corporate) +"dDi" = ( +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/library) +"dDl" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/green/side{ + dir = 8 + }, +/area/hydroponics) +"dDm" = ( +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/atmos) +"dDo" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dDp" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/research) +"dDq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dDr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dDs" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dDt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"dDu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dDv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/blue/side{ + dir = 8 + }, +/area/hallway/primary/aft) +"dDw" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dDy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/research) +"dDz" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"dDA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"dDB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dDC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"dDE" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dDF" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dDG" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dDH" = ( +/obj/structure/chair{ + pixel_y = -2 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/vault, +/area/chapel/main) +"dDI" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dDJ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/construction/mining/aux_base) +"dDK" = ( +/obj/structure/rack, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/device/assault_pod/mining, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/construction/mining/aux_base) +"dDL" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Storage Room"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dGH" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"dIs" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"dLK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dYu" = ( +/obj/machinery/door/airlock/external{ + name = "Auxiliary Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"eoK" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"eqq" = ( +/obj/item/screwdriver, +/obj/structure/table/reinforced, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"eqG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"evy" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/space) +"eEe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"eFN" = ( +/obj/structure/bodycontainer/crematorium{ + id = "crematoriumChapel"; + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"eXy" = ( +/obj/machinery/airalarm{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"eZe" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"fdr" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/engine/engineering) +"fDD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"gfh" = ( +/obj/machinery/libraryscanner, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"gix" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/research/glass{ + name = "Circuitry Lab"; + req_access_txt = "47" + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"gnZ" = ( +/obj/item/device/radio/intercom{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"gEk" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"gGT" = ( +/obj/effect/landmark/start/scientist, +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"gHh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"gJs" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/atmos) +"gLC" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"gNe" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"gRS" = ( +/obj/structure/table/reinforced, +/obj/item/device/integrated_electronics/analyzer, +/obj/item/device/integrated_circuit_printer, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"hfJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/autolathe, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"hyP" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Two" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/security/prison) +"ioI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/research/glass{ + name = "Circuitry Lab"; + req_access_txt = "47" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/science/circuit) +"izu" = ( +/obj/machinery/autolathe{ + name = "public autolathe" + }, +/obj/machinery/door/window/eastright{ + dir = 2; + name = "Research and Development Desk"; + req_access_txt = "7" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters"; + name = "research shutters" + }, +/turf/open/floor/plasteel/whitepurple, +/area/science/lab) +"jwW" = ( +/turf/closed/wall/mineral/plastitanium, +/area/crew_quarters/fitness/recreation) +"jyv" = ( +/obj/item/stock_parts/cell/super, +/obj/item/stock_parts/cell/super, +/obj/item/stack/sheet/metal/fifty, +/obj/structure/table/reinforced, +/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_y = 32 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"jyQ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"jKK" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"kfu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"krD" = ( +/turf/closed/wall, +/area/science/circuit) +"kys" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/hallway/secondary/service"; + dir = 1; + name = "Service Hall APC"; + pixel_y = 25 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"kzn" = ( +/obj/machinery/door/airlock/external{ + name = "Departure Lounge Airlock" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"kDM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"kOt" = ( +/obj/item/device/multitool, +/obj/item/screwdriver, +/obj/structure/table/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"kVo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"lal" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"llb" = ( +/obj/structure/table/reinforced, +/obj/item/device/integrated_circuit_printer, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"lsv" = ( +/obj/machinery/power/apc{ + areastring = "/area/science/circuit"; + dir = 1; + name = "Circuitry Lab APC"; + pixel_y = 30 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/table/reinforced, +/obj/item/device/multitool, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"lzk" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"lMz" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"lMJ" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"lNZ" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"lWY" = ( +/obj/machinery/door/airlock/hatch{ + name = "Telecomms Server Room" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/server) +"mjJ" = ( +/obj/structure/reagent_dispensers/beerkeg{ + desc = "One of the more successful achievements of the Nanotrasen Corporate Warfare Division, their nuclear fission explosives are renowned for being cheap to produce and devastatingly effective. Signs explain that though this particular device has been decommissioned, every Nanotrasen station is equipped with an equivalent one, just in case. All Captains carefully guard the disk needed to detonate them - at least, the sign says they do. There seems to be a tap on the back."; + icon = 'icons/obj/machines/nuke.dmi'; + icon_state = "nuclearbomb_base"; + name = "Nanotrasen-brand nuclear fission explosive"; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"mvj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/hallway/secondary/service) +"mzh" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"ngl" = ( +/obj/machinery/bookbinder, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"nnK" = ( +/obj/item/stack/sheet/glass/fifty, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"noG" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/circuit) +"nyo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"nAG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"nIb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay"; + req_access_txt = "0"; + req_one_access_txt = "48;50" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/storage/wing) +"obb" = ( +/obj/structure/target_stake, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"ocT" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/stock_parts/cell/super, +/obj/item/stock_parts/cell/super, +/obj/item/stack/sheet/metal/fifty, +/obj/structure/table/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/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_y = 32 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"ohj" = ( +/obj/item/device/integrated_electronics/analyzer, +/obj/item/device/integrated_electronics/debugger, +/obj/item/device/integrated_electronics/wirer, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"oub" = ( +/obj/structure/sign/poster/official/random, +/turf/closed/wall, +/area/hydroponics) +"oLW" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + dir = 2; + name = "Science Requests Console"; + pixel_y = 30; + receive_ore_updates = 1 + }, +/obj/item/device/integrated_electronics/debugger, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"oRL" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 11; + height = 15; + id = "whiteship_home"; + name = "SS13: Auxiliary Dock, Station-Port"; + width = 28 + }, +/turf/open/space/basic, +/area/space) +"oUA" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"pvA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"pzj" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"pCV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"pSX" = ( +/obj/machinery/door/airlock/external{ + name = "Auxiliary Escape Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"pVo" = ( +/obj/machinery/light, +/obj/machinery/vending/kink, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/crew_quarters/locker) +"qnJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/science/circuit) +"qqg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"qBh" = ( +/obj/structure/table, +/obj/item/device/paicard, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 2 + }, +/area/science/research) +"qBq" = ( +/turf/closed/wall/mineral/plastitanium, +/area/hallway/secondary/entry) +"qJZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"qRM" = ( +/obj/machinery/camera{ + c_tag = "Research Division Circuitry Lab"; + dir = 1; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"rzX" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/lab) +"rQK" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/main) +"rSL" = ( +/obj/machinery/vending/snack/random, +/turf/open/floor/plasteel, +/area/science/mixing) +"sdi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"siF" = ( +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"sGh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"sIA" = ( +/obj/machinery/door/airlock/external{ + name = "Transport Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"sJW" = ( +/turf/closed/wall/mineral/plastitanium, +/area/engine/break_room) +"tjH" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/libraryconsole/bookmanagement, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"tsx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"txj" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"tDM" = ( +/obj/machinery/door/airlock/engineering/glass{ + heat_proof = 1; + name = "Supermatter Chamber"; + req_access_txt = "10" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"tFJ" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"tVY" = ( +/obj/structure/closet/crate, +/obj/item/target/alien, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/item/target/clown, +/obj/item/target/syndicate, +/obj/item/target/syndicate, +/obj/item/gun/energy/laser/practice, +/obj/item/gun/energy/laser/practice, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"upN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"urv" = ( +/turf/closed/wall/mineral/plastitanium, +/area/security/prison) +"uun" = ( +/obj/machinery/vending/assist, +/turf/open/floor/plasteel, +/area/science/mixing) +"uGW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"uHc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"uJU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"uRM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 2 + }, +/area/science/research) +"uTS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/rnd/protolathe/department/science, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"uYk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"vhG" = ( +/obj/structure/table/glass, +/obj/machinery/camera/autoname{ + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"vLD" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"wiZ" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "1" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/security/prison) +"wxc" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "24"; + req_one_access_txt = "0" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"wFH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"wKo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/closed/wall, +/area/science/circuit) +"wOE" = ( +/obj/machinery/droneDispenser, +/turf/open/floor/plating, +/area/maintenance/aft) +"wPk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"wRy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"xkG" = ( +/obj/item/device/integrated_electronics/wirer, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"xse" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"xyp" = ( +/obj/docking_port/stationary{ + dheight = 1; + dir = 8; + dwidth = 12; + height = 17; + id = "syndicate_nw"; + name = "northwest of station"; + turf_type = /turf/open/space; + width = 23 + }, +/turf/open/space/basic, +/area/space/nearstation) +"xAp" = ( +/obj/structure/chair/comfy, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"xVl" = ( +/turf/closed/wall, +/area/hallway/secondary/service) +"xVP" = ( +/obj/machinery/light, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"ygk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"ykE" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/white, +/area/science/circuit) (1,1,1) = {" aaa @@ -83358,7 +83776,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -83891,7 +84309,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -84369,7 +84787,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -85120,7 +85538,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -85646,7 +86064,7 @@ aaa aaa aaa aaa -anY +anT aaa aaa aaf @@ -85899,7 +86317,7 @@ aaa aaa aaa aaa -anY +anT aaa aaa aaa @@ -86157,12 +86575,12 @@ aaa aaa aaa aaf -aqL -anX +aqB +anS aaf aaf aaa -anX +anS aaf aaf aaf @@ -86410,16 +86828,16 @@ aaa aaa aaa aaa -anY +anT aaa aaa -anX +anS aaf -anX +anS aaf aaf aaf -anX +anS aaf aaa aaa @@ -86667,16 +87085,16 @@ aaa aaa aaa aaa -aqL -anX -anX -anX -anX -anX +aqB +anS +anS +anS +anS +anS aaf -anX -anX -anX +anS +anS +anS aaf aaf aaf @@ -86923,17 +87341,17 @@ aaa aaa aaa aaa -anX +anS aaf aaf -anX -anX -apy -anX +anS +anS +apq +anS aaf -anX -anX -anX +anS +anS +anS aaf aaa aaa @@ -86943,15 +87361,15 @@ aaa aaa aaa aaa -aQu -aRJ -aRJ -aRJ -aRJ -aXC -aXC -aXC -aXC +qBq +aRA +aRA +aRA +aRA +aVs +aVs +aVs +aVs aaf aaa aaa @@ -86961,20 +87379,20 @@ aaa aaa aaa aaf -aXC -aXC -aXC -aXC -aXC +aVs +aVs +aVs +aVs +aVs aaa aaa aaa aaa aaa -aXC -aXC -aXC -aXC +aVs +aVs +aVs +aVs aaa aaf aaa @@ -87016,7 +87434,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -87180,17 +87598,17 @@ aaa aaa aaa aaa -anX -anX -anX -anX -anX -anX -anX +anS +anS +anS +anS +anS +anS +anS aaf -anX -anX -anX +anS +anS +anS aaf aaa aaa @@ -87199,15 +87617,15 @@ aaa aaa aaa aaa -aOT -aOT -aOT -aTk -aUA -aWf -aXD -aZh -aXC +aOZ +aOZ +aOZ +aRB +aSH +aUb +aVt +aWT +aVs aaf aaf aaa @@ -87219,21 +87637,21 @@ aaa aaa aaf aaf -aXC -bxW -aZh -aXC +aVs +bvB +aWT +aVs aaa aaa aaa aaa aaa -aXC -bOa -aZh -aXC -aXC -aXC +aVs +bKS +aWT +aVs +aVs +aVs aaa aaa aaa @@ -87440,13 +87858,13 @@ aaa aaf aaf aaf -anX -anX -anX -anX -anX -anX -anX +anS +anS +anS +anS +anS +anS +anS aaf aaf aaf @@ -87455,16 +87873,16 @@ aaa aaa aaa aaa -aNy -aOU -aQv -aRK -aTl -aUB -aWg -aXE -aZi -baZ +cSP +aND +cSU +cTd +aRC +bsk +aUc +aVu +aWU +aYC aaa aaf aaa @@ -87476,21 +87894,21 @@ aaa aaa aaf aaa -baZ -aXE -aZi -aRJ +aYC +aVu +aWU +aRA aaa aaa aaa aaa aaa -aRJ -bwm -aZi -bRu -bSW -bRu +aRA +btS +aWU +bOd +bPA +dYu aaa aaa aaa @@ -87695,15 +88113,15 @@ aaa aaa aaa aaf -aqL -anX -anX -anX -anX -anX -anX -apy -anX +aqB +anS +anS +anS +anS +anS +anS +apq +anS aaf aaf aaf @@ -87713,15 +88131,15 @@ aaa aaa aaa aaa -aOT -aOT -aOT -aTk -aUC -aRJ -aXF -aZi -aXC +aOZ +aOZ +aOZ +aRB +aSI +aRA +aVv +aWU +aVs aaf aaf aaa @@ -87733,22 +88151,22 @@ aaa aaa aaf aaf -aXC -bxX -aZi -aXC +aVs +aVw +aWU +aVs aaa aaa aaa aaa aaa -aXC -bxX -aZi -bRu -bcB -bRu -bVJ +aVs +aVw +aWU +bOd +aZZ +dYu +oRL aaa aaa aaa @@ -87951,16 +88369,16 @@ aaa aaa aaa aaa -anX +anS aaf -anX +anS aaf -anX -anX -anX -anX -anX -anX +anS +anS +anS +anS +anS +anS aaf aaf aaa @@ -87971,14 +88389,14 @@ aaa aaa aaf aaa -aQu -aRJ -aRJ -aRJ -aRJ -aXG -aZj -aRJ +qBq +aRA +aRA +aRA +aRA +cZf +aWV +aRA aaa aaa aaa @@ -87990,21 +88408,21 @@ aaa aaa aaa aaa -aRJ -bxY -bzS -baZ +aRA +bvC +bxt +aYC aaa aaa aaa aaa aaa -baZ -bOb -aZi -aXC -aXC -aXC +aYC +bKT +aWU +aVs +aVs +aVs aaa aaa aaa @@ -88208,19 +88626,19 @@ aaa aaa aaa aaa -anX -anX -anX -anX -anX -avW -anX -anX -anX -anX -anX +anS +anS +anS +anS +anS +avI +anS +anS +anS +anS +anS aaf -anX +anS aaa aaf aaa @@ -88232,12 +88650,12 @@ aaf aaa aaf aaf -aRJ -aXH -aZi -aXC -aXC -aXC +aRA +aVx +aWU +aVs +aVs +aVs aaa aaa aaa @@ -88245,21 +88663,21 @@ aaa aaa aaa aaa -aXC -aXC -aXC -bxZ -aZi -aXC +aVs +aVs +aVs +bvD +aWU +aVs aaa aaa aaa aaa aaa -aXC -bxX -aZi -aXC +aVs +aVw +aWU +aVs aaa aaf aaa @@ -88283,21 +88701,21 @@ aaa aaa aaa aaa -cxH -anY -aae -anY -aae -anY -anY -anY -aqL -anY -anY -anY -anY -aqL -anY +ctm +anT +aai +anT +aai +anT +anT +anT +aqB +anT +anT +anT +anT +aqB +anT aaf aaa aaa @@ -88464,37 +88882,37 @@ aaa aaa aaa aaa -anX -anX -anX -apy -anX -anX +anS +anS +anS +apq +anS +anS aaf -anX -anX -anX +anS +anS +anS aaf -anX -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aXE -aZi -bba -bcB -bem +anS +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aVu +aWU +djz +aZZ +djC aaa aaa aaa @@ -88502,21 +88920,21 @@ aaa aaa aaa aaa -bba -aUB -bem -aXE -bzT -aRJ +djz +bsk +djC +aVu +bxu +aRA aaa aaa aaa aaa aaa -aRJ -aXE -aZi -aXC +aRA +aVu +aWU +aVs aaf aaf aaa @@ -88539,7 +88957,7 @@ aaa aaa aaa aaa -anY +anT aaa aaa aaf @@ -88554,7 +88972,7 @@ aaf aaf aaa aaa -aae +aai aaa aaa aaa @@ -88696,7 +89114,7 @@ aaa aaa aaa aaa -aat +xyp aaa aaa aaa @@ -88721,37 +89139,37 @@ aaa aaa aaa aaa -anY +anT aaf aaf aaf aaf -anX -anX -anX -anX +anS +anS +anS +anS azg -anX -anX -aDo -aEM -aGn -aGn -aGn -aGn -aGn -aGn -aGn -aQw -aRL -aTm -aUD -aDo -aXI -aZi -aXC -aXC -aXC +anS +anS +aDb +aDa +cVK +cVK +cVK +cVK +cVK +cVK +cVK +cWF +cWK +aRD +aSJ +aDb +aVy +aWU +aVs +aVs +aVs aaa aaa aaa @@ -88759,21 +89177,21 @@ aaa aaa aaa aaa -aXC -aXC -aXC -aXE -bzU -aXC +aVs +aVs +aVs +aVu +bxv +aVs aaa aaa aaa aaa aaa -aXC -aXE -bPB -aRJ +aVs +aVu +bMu +aRA aaa aaf aaa @@ -88796,22 +89214,22 @@ aaa aaa aaa aaa -anY +anT aaa -cyH -czD -cAS +cue +cvd +cwe aaf -cyH -czD -cAS +cue +cvd +cwe aaf -cyH -czD -cAS +cue +cvd +cwe aaa aaa -anY +anT aaf aaf aaa @@ -88980,35 +89398,35 @@ aaa aaa aaa aaa -anX +anS aaf -aqL -anX -anX +aqB +anS +anS aaf -anX -anX +anS +anS aaf -aae -aDo -aEN -aGo -aGo -aGo -aGo -aGo -aGo -aGo -aQx -aRL -aTn -aUE -aWh -aXJ -aZk -aZh -bcC -aXC +aai +aDb +cVE +cVL +cVL +cVL +cVL +cVL +cVL +cVL +cWJ +cWK +aRE +aSK +cYL +aVz +aWW +aWT +baa +aVs aaa aaa aaa @@ -89016,21 +89434,21 @@ aaa aaa aaa aaa -aXC -buC -bwi -bya -bzV -aXC +aVs +bsl +btO +bvE +bxw +aVs aaa aaa aaa aaa aaa -aXC -bOc -bPC -aXC +aVs +bKU +bMv +aVs aaa aaf aaa @@ -89055,20 +89473,20 @@ aaf aaf aaf aaa -cyH -czE -cAS +cue +cve +cwe aaa -cyH -czE -cAS +cue +cve +cwe aaa -cyH -czE -cAS +cue +cve +cwe aaf aaa -anY +anT aaa aaa aaa @@ -89236,36 +89654,36 @@ aaa aaa aaa aaa -anX -anX +anS +anS aaf -anX -auT -anX -anX -ayn -anX +anS +auC +anS +anS +ayf +anS aaf aaa -aDo -aEN -aGo -aGo -aGo -aGo -aGo -aGo -aGo -aQx -aRL -aTn -aUE -aWh -aXJ -aZl -aZi -bcC -aXC +aDb +cVE +cVL +cVL +cVL +cVL +cVL +cVL +cVL +cWJ +cWK +aRE +aSK +cYL +aVz +bvF +aWU +baa +aVs aaa aaa aaa @@ -89273,21 +89691,21 @@ aaa aaa aaa aaa -aXC -buD -aXE -aZl -bzV -aXC +aVs +bsm +aVu +bvF +bxw +aVs aaa aaa aaa aaa aaa -aXC -aXE -bzY -aRJ +aVs +aVu +bMw +aRA aaa aaf aaa @@ -89310,22 +89728,22 @@ aaa aaf aaa aaa -aae +aai aaf -cyH -czE -cAS +cue +cve +cwe aaf -cyH -czE -cAS +cue +cve +cwe aaf -cyH -czE -cAS +cue +cve +cwe aaf aaa -anY +anT aaa aaa aaa @@ -89492,37 +89910,37 @@ aaa aaa aaa aaa -anX -anX -anX -anX -anX -anX -anX -anX -anX -anX -anX +anS +anS +anS +anS +anS +anS +anS +anS +anS +anS +anS aaf -aDo -aEN -aGo -aGo -aGo -aKt -aGo -aGo -aGo -aQx -aRL -aTo -aUF -aDo -aXK -aZl -aZi -bcD -aXC +aDb +cVE +cVL +cVL +cVL +cVQ +cVL +cVL +cVL +cWJ +cWK +cXE +aIf +aDb +cZh +bvF +aWU +bab +aVs aaa aaa aaa @@ -89530,21 +89948,21 @@ aaa aaa aaa aaa -aXC -bcC -bwj -byb -bzW -aRJ +aVs +baa +btP +aWX +bxx +aRA aaa aaa aaa aaa aaa -aRJ -bwm -bzV -aXC +aRA +btS +bxw +aVs aaf aaf aaa @@ -89567,19 +89985,19 @@ aaf aaf aaa aaa -anY +anT aaa -cyH -czE -cAS +cue +cve +cwe aaf -cyH -czE -cAS +cue +cve +cwe aaa -cyH -czE -cAS +cue +cve +cwe aaf aaa aaa @@ -89750,36 +90168,36 @@ aaa aaa aaa aaa -apy -anX -anX +apq +anS +anS aaf aaf -anX -anX +anS +anS aaf -anX -anX +anS +anS aaf -aDo -aEN -aGo -aGo -aJd -aKu -aGo -aGo -aGo -aQy -aRM -aTp -aUG -aWi -aXL -aZm -bbb -bcE -aXC +aDb +cVE +cVL +cVL +aHb +cWg +cVL +cVL +cVL +ddG +cWM +cXR +cYG +cYP +aVA +aWY +aYE +bac +aVs aaa aaa aaa @@ -89787,21 +90205,21 @@ aaa aaa aaa aaa -aXC -buE -bwk -byc -bzV -aXC +aVs +bsn +btQ +bvG +bxw +aVs aaa aaa -bGZ +cVx aaa aaa -aXC -aXE -bzV -aRJ +aVs +aVu +bxw +aRA aaa aaf aaa @@ -89826,23 +90244,23 @@ aaa aaa aaa aaa -cyH -czE -cAS +cue +cve +cwe aaf -cyH -czE -cAS +cue +cve +cwe aaf -cyH -czE -cAS +cue +cve +cwe aaa aaa aaa -anY -anY -anY +anT +anT +anT aaa aaa aaa @@ -90006,37 +90424,37 @@ aaa aaa aaa aaa -anX -anX -anX +anS +anS +anS aaf aaf -aqL -anX +aqB +anS aaf aaf aaf aaf aaf -aDo -aEN -aGo -aGo -aGo -aKv -aGo -aGo -aGo -aQx -aRL -aTq -aUH -aWj -aXM -aZn -aXC -aXC -aXC +aDb +cVE +cVL +cVL +cVL +cWh +cVL +cVL +cVL +cWJ +cWK +cYE +cYK +cYQ +aVB +aWZ +aVs +aVs +aVs aaa aaa aaa @@ -90044,21 +90462,21 @@ aaa aaa aaa aaa -aXC -aXC -aXC -byd -bzX -aRJ +aVs +aVs +aVs +bvH +bxy +aRA aaf -bFp -bHa -aXC +bCG +bEl +aVs aaf -aRJ -bOd -bPD -aRJ +aRA +bKV +bMx +aRA aaa aaf aaa @@ -90081,25 +90499,25 @@ aaa aaa aaf aaa -aae +aai aaa aaf -czF +cvf aaa aaa aaf -czF +cvf aaa aaa aaf -czF +cvf aaa aaa aaa aaa aaf aaa -anY +anT aaa aaa aaa @@ -90264,36 +90682,36 @@ aaa aaa aaa aaa -anX +anS aaa aaa aaf -akt -avX -akt +dne +avJ +dne aaf aaa aaf aaa -aDo -aEN -aGo -aGo -aGo -aGo -aGo -aGo -aGo -aQx -aRL -aTr -aUI -aDo -aXN -aZn -bba -bcB -bem +aDb +cVE +cVL +cVL +cVL +cVL +cVL +cVL +cVL +cWJ +cWK +dDJ +aSL +aDb +cZq +aWZ +djz +aZZ +djC aaa aaa aaa @@ -90301,24 +90719,24 @@ aaa aaa aaa aaa -bba -aUB -bem -byd -bzY -aRJ -aXC -aXC -bHb -aXC -aXC -aRJ -bwm -bPE -bwx -bwx -bwx -bwx +djz +bsk +djC +bvH +bMw +aRA +aVs +aVs +bEm +aVs +aVs +aRA +btS +bMy +alK +alK +alK +alK aaa aaa aaa @@ -90338,25 +90756,25 @@ aaf aaf aaf aaf -anY +anT aaf aaf -cil -cil -cCc -cil -cil -cFc -ckM -cHa -cil -cFc -ckM -ckM -ckM -cMW +cej +cej +cxa +cej +cej +czL +cED +cBQ +cej +czL +cED +cED +cED +cHk aaf -anY +anT aaa aaa aaa @@ -90510,7 +90928,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -90525,32 +90943,32 @@ aaa aaa aaf aaf -akt -avY -akt +dne +avK +dne aaf aaf -akt -akt -aDo -aEN -aGo -aGo -aGo -aGo -aGo -aGo -aGo -aQx -aRL -aTs -aUJ -aDo -aXN -aZn -aXC -aXC -aXC +dne +dne +aDb +cVE +cVL +cVL +cVL +cVL +cVL +cVL +cVL +cWJ +cWK +dDK +aSM +aDb +cZq +aWZ +aVs +aVs +aVs aaa aaa aaa @@ -90558,31 +90976,31 @@ aaa aaa aaa aaa -aXC -aXC -aXC -byd -bzZ -aRJ -bDH -aXC -bHa -aXC -bKC -aRJ -aXE -bPF -bRv -bSX -bUv -bwx +aVs +aVs +aVs +bvH +bxz +aRA +bBc +aVs +sIA +aVs +bHH +aRA +aVu +bMz +bOe +bPC +bRc +alK aaf aaf aaf aaf -aae -anY -aae +aai +anT +aai aaf aaf aaf @@ -90595,25 +91013,25 @@ aaa aaa aaa aaa -anY +anT aaa aaf -czG +cvg aaa aaa aaf -czG +cvg aaf aaa aaf -czG +cvg aaa aaf aaa aaa aaf aaa -anY +anT aaa aaa aaa @@ -90781,58 +91199,58 @@ aaf aaf aaa aaf -akt -akt -avX -akt -akt -aio -akt -alD -aDo -aEO -aGp -aGp -aGp -aGp -aGp -aGp -aGp -aQz -aRL -aTt -aUK -aDo -aXO -aZo -bbc -aXC +dne +dne +pzj +dne +dne +aip +dne +dnk +aDb +cVH +cVM +cVM +cVM +cVM +cVM +cVM +cVM +aPb +cWK +aRF +aSN +aDb +aVC +aXa +aYF +aVs aaa aaa aaa aaa -bkS +djM aaa aaa aaa aaa -aXC -bwl -bye -bAa -bkT -ben -ben -ben -ben -ben -bmu -bwn -bPG -bwx -bSY -bUw -bwx +aVs +btR +bvI +bxA +biu +bbI +bbI +bbI +bbI +bbI +bjV +btT +bMA +alK +bPD +asa +alK aaa aaa aaf @@ -90854,23 +91272,23 @@ aaa aaa aaf aaa -cyH -czH -cAS +cue +cvh +cwe aaf -cyH -czH -cAS +cue +cvh +cwe aaf -cyH -czH -cAS +cue +cvh +cwe aaa aaa aaa -anY -anY -anY +anT +anT +anT aaa aaa aaa @@ -91035,93 +91453,93 @@ aaa aaa aaa aaf -akt -akt -aio -akt -auU -avZ -awZ -alD -auW -arf -alD -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aXP -aZp -bbd -aRJ -aRJ -aRJ -aXC -aXC -aXC -aXC -aXC -aRJ -aRJ -aRJ -bwm -byf -bAb -bkU -bDI -bFq -bHc -bJa -bKD -bMo -bOe -bPH -bwx -bSZ -bUw -bwx -bWO -bWO -bWO -bWO -bWO +dne +dne +aip +dne +auD +avL +awM +dnk +dqe +doA +dnk +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aVD +aXb +aYG +aRA +aRA +aRA +aVs +aVs +aVs +aVs +aVs +aRA +aRA +aRA +btS +bvJ +bxB +biv +bBd +bCH +bEn +dic +bHI +bJo +bKW +bMB +alK +dio +asa +alK +bTn +bTn +bTn +bTn +bTn aaa aaf aaa aaf -aae -anY -anY -aae -anY -aae -anY -aae -anY -anY +aai +anT +anT +aai +anT +aai +anT +aai +anT +anT aaf aaf -cyH -czH -cAS +cue +cvh +cwe aaa -cyH -czH -cAS +cue +cvh +cwe aaa -cyH -czH -cAS +cue +cvh +cwe aaa aaa aaa @@ -91292,68 +91710,68 @@ aaa aaa aaa aaf -akt -aqM -asj -atC -auV -awa -awh -awh -awh -awh -aCa -awh -aEP -awa -awh -awh -awh -awh -awh -awh -awh -awh -awh -aUL -aWk -aXQ -aZq -bbe -bcF -ben -ben -ben -ben -bkT -bmu -bmu +dne +aqC +arW +ato +auE +avM +avT +avT +avT +avT +aJi +avT +dss +avM +avT +avT +avT +avT +avT +avT +avT +avT +avT +dtl +aUd +aVE +aXc +aYH +bad +bbI +bbI +bbI +bbI +biu +bjV +bjV +bnK bqb -bss -ben -bwn -byg -bAc -bwx -bwx -bwx -bwx -bwx -bwx -bMp -bwx -bwx -bwx -bTa -bUw -bTg -bWO -bYn -bZx -cbi -ccx -ccx -ccx +bbI +btT +bvK +bxC +alK +alK +alK +alK +alK +alK +bJp +alK +alK +alK +bPF +asa +bPL +bTn +bUN +bVQ +bXt +bYC +bYC +bYC aaa aaa aaf @@ -91368,20 +91786,20 @@ aaa aaa aaf aaa -cyH -czH -cAS +cue +cvh +cwe aaf -cyH -czH -cAS +cue +cvh +cwe aaf -cyH -czH -cAS +cue +cvh +cwe aaf aaa -anY +anT aaa aaa aaa @@ -91549,96 +91967,96 @@ aaa aaa aaa aaa -aio -aqN -ask -akt -akt -akt -aoh -aoi -azh -akt -aio -akt -aEQ -aGq -aHZ -aoh -aoh -aLL -auX -ako -aQA -alD -aoh -aUM -akt -aXR -aZr -bbf -bcG -beo -bfC -beo -biS -bkU -bmv -boo +aip +aqD +arX +dne +dne +dne +aRG +aoc +drQ +dne +aip +dne +dst +aDc +dhE +aRG +aRG +cWA +auG +dnd +dhK +dnk +aRG +aSP +dne +dhM +aXd +aYI +bae +bbJ +bcV +bbJ +bgv +biv +bjW +blT +bnL bqc -bst -buF -bqc -byh -bAd -bBX -byu -bFr -bHd -bJb -bCd -bMq -bOf -bPI -bPI -bTb -bAt -bVK -bWP -bYo -bZy -cbj -ccy -cdJ -ccy -cgZ -cil -cjF -ckM -cme -cil -cil -cil -cjF -ckM -cgZ -cil -cil -cjF -ckM -czH -cAS +bso +bnL +bvL +bxD +bzw +bvY +bCI +bEo +bJj +bzC +bJq +bKX +bbL +bbL +bPG +bxT +bSn +bTo +bUO +bVR +bXu +bYD +bZN +jyQ +cda +cej +cfz +cED +chY +cej +cej +cej +cfz +cED +cda +cej +cej +cfz +cED +cvh +cwe aaa -cyH -czH -cAS +cue +cvh +cwe aaf -cyH -czH -cAS +cue +cvh +cwe aaf aaf -anY +anT aaf aaf aaa @@ -91806,68 +92224,68 @@ aaa aaa aaa aaa -akt -akt -asl -akt +dne +dne +arY +dne aaf -akt -akt -aio -akt -akt +dne +dne +aip +dne +dne aaa -akt -akt -akt -akt -aio -akt -akt -akt -akt -akt -akt -aio -akt -akt -akt -akt -akt -bcH -bep -bfD -bhl -bep -bkV -bmw -bop +dne +dne +dne +dne +aip +dne +dne +dne +dne +dne +dne +aip +dne +dne +dne +dne +dne +baf +bbK +bcW +beK +bbK +biw +bjX +blU +bnM bqd -bsu -buG -bqd -byi -bAe -bwx -bDJ -bFs -bHe -bwx -bFD -bMr -bCe -bPJ -bOq -bTa -bRA -bUw -bWQ -bYp -bZz -cbk -ccx -ccx -ccx +bsp +bnM +bvM +bxE +alK +auF +bCJ +bEp +alK +apz +bJr +alC +aqK +aqO +bPF +aGN +asa +bTp +bUP +bVS +bXv +bYC +bYC +bYC aaa aaa aaf @@ -91882,20 +92300,20 @@ aaa aaa aaf aaa -cyH -czI -cAS +cue +cvi +cwe aaf -cyH -czI -cAS +cue +cvi +cwe aaf -cyH -czI -cAS +cue +cvi +cwe aaa aaa -anY +anT aaa aaf aaa @@ -91914,7 +92332,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -92064,9 +92482,9 @@ aaa aaa aaa aaf -aqO -asm -atD +aqE +arZ +atp aaf aaf aaa @@ -92090,39 +92508,39 @@ aaf aaf aaa aaa -akt -asm -bep -bfE -bhm -biT -bkW -bmx -boq -bdf -bdf -bdf -bdf -byj -bmx -bwx -bDK -bFt -bHf -bwx -bKE -bMs -bOg -bOg -bOg -bTc -bOg -bVL -bWO -bWO -bWO -bWO -bWO +dne +arZ +bbK +bcX +beL +bgw +bix +bjY +blV +baE +baE +baE +baE +bvN +bjY +alK +bBe +bNd +ako +alK +bHJ +bJs +aLd +aLd +aLd +bPH +aLd +bSo +bTn +bTn +bTn +bTn +bTn aaa aaf aaa @@ -92152,7 +92570,7 @@ aaf aaa aaa aaa -aqL +aqB aaa aaf aaa @@ -92321,9 +92739,9 @@ aaa aaa aaa aaa -aqP -asn -atE +aqF +doJ +atq aaf aaa aaa @@ -92347,39 +92765,39 @@ aaa aaa aaa aaa -akt -asn -bep -bfF -bhn -biU -bkX -bmy -bor +dne +doJ +bbK +bcY +beM +bgx +biy +bjZ +blW +bnN bqe -bsv -buH -bwo -byk -bAf -bBY -bBY -bBY -bBY -bBY -bBY -bBY -bBY -bBY -bBY -bBY -bCe -bVM -bwx -bRB -bRB -cbl -bwx +bsq +btU +bvO +bxF +bzx +bzx +bzx +bzx +bzx +bzx +bzx +bzx +bzx +bzx +bzx +alC +cgH +alK +aob +aob +dix +alK aaf aaf aaf @@ -92396,20 +92814,20 @@ aaa aaf aaf aaf -anY +anT aaf -anY -anY -anY -aqL -anY -aqL -anY -anY -aqL -anY -aqL -anY +anT +anT +anT +aqB +anT +aqB +anT +anT +aqB +anT +aqB +anT aaf aaf aaa @@ -92578,9 +92996,9 @@ aaa aaa aaa aaf -aqP -asn -atE +aqF +doJ +atq aaf aaa aaa @@ -92604,39 +93022,39 @@ aaa aaa aaa aaf -akt -bcI -bep -bfG -bho -biV -bkY -bmz -bos +dne +bag +bbK +bcZ +beN +bgy +biz +bka +blX +bnO bqf -bsw -bsw -bwp -byl -bAg -bBZ -bDL -bFu -bHg -bJc -bKF -bMt -bOh -bDO -bPL -bBY -bUx -bVN -bWR -bYq -bZA -bRB -bwx +bqf +btV +bvP +bxG +bzy +bBf +bCL +bEq +did +bHK +bJt +bKY +bBi +bMD +bzx +amZ +bSq +bTr +bUQ +bVT +aob +alK aaa aaf aaa @@ -92803,20 +93221,20 @@ aaa aaa aaa aaf -aac -aad -aad -aad -aae -aad -aad -aad -aac -aad -aad -aae -aad -aad +aaj +aag +aag +aag +aai +aag +aag +aag +aaj +aag +aag +aai +aag +aag aaf aaa aaa @@ -92835,9 +93253,9 @@ aaa aaa aaf aaf -aqP -asn -atE +aqF +doJ +atq aaf aaa aaa @@ -92861,43 +93279,43 @@ aaa aaa aaa aaf -aio -asn -bep -bfH -bhp -biW -bkZ -bmz -bot +aip +doJ +bbK +bda +beO +bgz +biA +bka +blY +bnP bqg -bsx -buI -bqg -bym -bAh -bBY -bDM -bDM -bDM -bJd -bDN -bMu -bOi -bPK -bRw -bBY -bDJ -bVO -bwx -bMs -bZB -cbm -bwx +bsr +bnP +bvQ +bxH +bzx +bBg +bBg +bBg +bGj +bBh +bJu +bKZ +bMC +din +bzx +auF +bSr +alK +bJs +bVU +bXx +alK aaa aaf aaf -acg +ack aaf aaf aaf @@ -93056,10 +93474,10 @@ aaa aaa aaa aaa -aab +aac aaa aaa -aae +aai aaa aaf aaf @@ -93073,7 +93491,7 @@ aaf aaf aaa aaa -aad +aag aaf aaa aaa @@ -93092,9 +93510,9 @@ aaa aaa aaa aaf -aqP -asn -atE +aqF +doJ +atq aaf aaa aaa @@ -93118,43 +93536,43 @@ aaa aaa aaa aaa -aio -asv -bep -bfI -bhq -biX -bkY -bmA -bou +aip +asi +bbK +bdb +beP +bgA +biz +bkb +blZ +bnO bqf -bsw -bsw -bwp -byn -bAi -bCa -bDN -bDN -bDN -bJe -bKG -bKG -bDM -bDM -bRx -bBY -bAu -bVO -bwx -bYr -bwx -bwx -bwx +bqf +btV +bvR +bxI +bzz +bBh +bBh +bBh +bGk +bHL +bHL +bBg +bBg +bOg +bzx +aoa +bSr +alK +bUR +alK +alK +alK aaa aaf aaa -acg +ack aaf aaa aaa @@ -93316,21 +93734,21 @@ aaa aaa aaa aaa -aac +aaj aaa -aai -aak -aas +aal +aan +aau aaa -aai -aak -aas +aal +aan +aau aaa -aai -aak -aas +aal +aan +aau aaf -aad +aag aaf aaa aaa @@ -93349,15 +93767,15 @@ aaa aaa aaf aaf -aqP -asn -atE +aqF +doJ +atq aaf aaa aaa aaa aaa -aAE +aAA aaa aaa aaa @@ -93375,78 +93793,78 @@ aaa aaa aaa aaa -aio -asn -bep -bfJ -bhr -biY -bfD -bmB -bov +aip +doJ +bbK +bdc +beQ +bpt +bcW +bkc +bma +bnQ bqh -bsy -buJ -bwq -byo -bAj -bBY -bDO -bFv -bDM -bDM -bKH -bMv -bDM -bDM -bDM -bTd -bUy -bVO -bwx -bwx -bwx -cbn -bWT -bWT -bWT -bWT -cim -bWT -bWT -bWT -bWT -coW -coW -coW -coW -coW -coW -coW -coW +bss +btW +bvS +bxJ +bzx +bBi +bCM +bBg +bBg +bHM +bJv +bBg +bBg +bBg +bPI +bRd +bSr +alK +alK +alK +bXy +dux +dux +dux +dux +cek +dux +dux +dux +dux +ckN +ckN +ckN +ckN +ckN +ckN +ckN +ckN aaa aaf aaa aaf -aae -anY +aai +anT aaf aaf -aae -anY -anY -aae -anY -anY +aai +anT +anT +aai +anT +anT aaf aaf aaf -aae -anY +aai +anT aaf -aae -anY -aae +aai +anT +aai aaa aaa aaa @@ -93573,19 +93991,19 @@ aaa aaa aaa aaa -aad +aag aaf -aai aal -aas +aao +aau aaa -aai aal -aas +aao +aau aaa -aai aal -aas +aao +aau aaf aaf aaf @@ -93606,17 +94024,17 @@ aaa aaa aaa aaf -aqQ -aso -atF +aqG +asb +atr aaf aaa aaf -ayo -ayo -aAF -ayo -ayo +ayi +ayi +aAB +ayi +ayi aaf aaa aaa @@ -93632,55 +94050,55 @@ aaa aaa aaa aaf -akt -bcJ -bep -bep -bhs -bep -bfD -bmC -boq -bdf -bdf -bdf -bdf -byj -bAk -bBY -bDP -bFw -bDM -bDM -bKI -bMw -bDM -bPK -bRx -bBY -bUz -bVP -bWS -bYs -bZC -cbo -ccz -ccz -cfm -bWT -cin -bYu +dne +daX +bbK +bbK +beR +bbK +bcW +dhP +blV +baE +baE +baE +baE +bvN +bxK +bzx +djW +bCN +bBg +bBg +bEs +bJw +bBg +bMC +bOg +bzx +bRe +bSs +aSO +bUS +bVV +bXz +bYE +bYE +cbp +dux +cel +bUU +cgG +dux +cjp +ckO +cmg +cnh +ckN +cpQ +crg +cjt ckN -bWT -cny -coX -cqr -crt -coW -cuf -cvy -cpb -coW aaa aaf aaf @@ -93830,19 +94248,19 @@ aaa aaa aaa aaf -aad +aag aaf -aai aal -aas +aao +aau aaf -aai aal -aas +aao +aau aaf -aai aal -aas +aao +aau aaf aaa aaf @@ -93862,18 +94280,18 @@ aaf aaf aaf aaf -akt -akt -asp -akt +dne +dne +asc +dne aaf aaa aaf -ayo -azi -aAG -aCb -ayo +ayi +azj +aAC +aBS +ayi aaf aaa aaa @@ -93882,62 +94300,62 @@ aaa aaa aaa aaa -aQB +cUZ aaa aaa aaa aaa aaa aaf -akt -bcK -beq -bfK -bht -biZ -bla -bmD -bow +dne +baj +dhO +bdd +beS +bgC +biB +bkd +bmb +bnR bqi -bsz -buK -bwr -byk -bAl -bBY -bDQ -bFx -bHh -bDM -bKJ -bMx -bOj -bPL -bRy -bBY -bOq -bVQ -bWT -bWT -bWT -bWT -bWT -bWT -cfn -bWT -bWT -cim -bWT -bWT -cnz -coY -cpc -coY -coY -coY -cpb -cvz -coW +bst +btX +bvO +bxL +bzx +bBk +bNh +bNK +bBg +dig +bJx +bLa +bMD +bOh +bzx +aqO +bSt +dux +dux +dux +dux +dux +dux +cbq +dux +dux +cek +dux +dux +cjq +ckP +ckS +ckP +ckP +ckP +cjt +crh +ckN aaa aaf aaf @@ -93946,18 +94364,18 @@ aaa aaf aaa aaa -cHb -cHb -cHb -cHb -cHb -cIX -cHb -cHb -cHb -cHb -cHb -cHb +cBR +cBR +cBR +cBR +cBR +cDE +cBR +cBR +cBR +cBR +cBR +cBR aaf aaf aaf @@ -94089,17 +94507,17 @@ aaa aaf aaa aaa -aai aal -aas +aao +aau aaa -aai aal -aas +aao +aau aaa -aai aal -aas +aao +aau aaf aaa aaf @@ -94119,107 +94537,107 @@ aaa aaa aaf aaa -aio -aok -asq -akt +aip +dnO +asd +dne aaf aaa aaf -ayo -azj -aAG -aCc -ayo +ayi +azk +aAC +aBT +ayi aaf aaf aaf aaf -aKw -aLM -aNz -aKw -aNz -aRN -aKw +aJB +aKN +aMs +aJB +aMs +aQg +aJB aaf aaf aaf aaf -akt -aso -ber -bfL -bhu -bja -blb -bmE -box +dne +asb +bbM +bde +beT +bgD +biC +bke +bmc +bnS bqj -bsA -buL -bws -byp -bAm -bBY -bBY -bBY -bBY -bBY -bBY -bBY -bBY -bBY -bBY -bBY -bwx -bVO -bWT -bYt -bZD +bsu +btY +bvU +bxM +bzx +bzx +bzx +bzx +bzx +bzx +bzx +bzx +bzx +bzx +bzx +alK +bSr +dux +bUT +bVW +bXA +diy +dux +cbr +bYE +cem +cfB cbp -ccA -bWT -cfo -ccz -cio -cjG -cfm -bWT -cnA -coZ -coY -cru -cpb -cug -coZ -cpb -coW +dux +diE +ckQ +ckP +cni +cjt +dbq +ckQ +cjt +ckN aaf aaf -cAT -acg +cwf +ack aaf aaf aaa aaa -cHb -cHY -cIT -cJZ -cKZ -cLV -cMX -cOh -cOZ -cQc -cQU -cHb +cBR +cCK +cDA +cEE +cFy +cGq +cHl +cIp +cJg +cKe +cKS +cBR aaf aaa aaf -aae -aad +aai +aag aaa aaa aaa @@ -94341,22 +94759,22 @@ aaa aaa aaa aaa -aac -aad -aac +aaj +aag +aaj aaa aaa -aai aal -aas +aao +aau aaa -aai aal -aas +aao +aau aaa -aai aal -aas +aao +aau aaf aaf aaf @@ -94369,114 +94787,114 @@ aaf aaf aaf aaf -ahn -aid -ahn -aho -ahn -ahn -ahn -ahn -aqR -asr -akt +ahp +aif +ahp +ahq +ahp +ahp +ahp +ahp +aqH +ase +dne aaf aaf aaf -ayp -ayp -aAH -aCd -ayp -ayo -ayo -ayp +ayj +ayj +aAD +aBU +ayj +ayi +ayi +ayj aaf -aJe -aLN -aNA -aJe -aQC -aRO -aJe +aIg +aKO +aMt +aIg +aPd +aQh +aIg aaf aaf -aWl -aWl -aWl -bcL -bes -bfM -bhv -bjb -bev -bmF -boy +aUe +aUe +aUe +bak +dmF +bdf +beU +bgE +bbP +bkf +bmd +bnT bqk -bsB -buM -bwt -byq -bAn -byr -bDR -bFy -byr -bJf -bKK -byr -bOk -bPM -bRz -bTe -bwx -bVM -bWT -bYu -bZE +bsv +btZ +bvV +bxN +bvW +dhZ +bCP +bvW +bGl +bHN +bvW +bLb +bME +bOi +bPJ +alK +cgH +dux +bUU +bVX +bXB +bYG +dux +dux +dux +cen +dux cbq -ccB -bWT -bWT -bWT -cip -bWT -cfn -bWT -cnB -cpa -cqs -crv -cpb -coY -cpb -cww -bWT -bWT -acg -cAU -acg -acg +dux +cjs +ckR +cmh +cnj +cjt +ckP +cjt +diJ +dux +dux +ack +cwg +ack +ack aaf aaa aaa -cHb -cHZ -cIU -cKa -cLa -cLW -cMY -cOi -cPa -cQd -cQV -cRU +cBR +cCL +cDB +cEF +cFz +cGr +cHm +cIq +cJh +cKf +cKT +dBV aaf aaa aaa aaa -aae +aai aaa aaa aaa @@ -94598,21 +95016,21 @@ aaa aaa aaa aaa -aad +aag aaa aaf aaa aaa aaf -aam +aap aaf aaf aaf -aam +aap aaf aaa aaf -aam +aap aaf aaa aaf @@ -94626,111 +95044,111 @@ aaa aaa aaf aaa -ahn -aie +ahp +aig ajc akf -aly -amP -anZ -ahn -akt -ass -akt -akt -akt -akt -ayp -azk -aAI -aAI -aDp -aER -aGr -ayp -aJe -aJe -aLM -aNz -aJe -aNz -aRN -aJe -aJe -aWl -aXS -aZs -bbg -bcM -bes -bfN -bhw -bjc -bes -bes -bes +alx +amO +anU +ahp +dne +asf +dne +dne +dne +dne +ayj +azl +aAE +aAE +aDh +aEv +aFF +ayj +aIg +aIg +aKN +dIs +aIg +dIs +aQg +aIg +aIg +aUe +aVG +aXe +aYJ +bal +dmF +bdg +byI +bgF +dmF +dmF +dmF +bnU bql -bsC -buN -bdf -byr -bAo -byr -bDS -bFz -bHi -bJg -bKL -byr -bOl -bPN -bRA -bPJ -bwx -bVR -bWT -bYv -bZF -cbr -ccC -bWT -cfp -cha -ciq -bWT -chb -bWT -cnC -cpb -cpb -cpb -coY -coY -cvz -cwx -cxI -bWT -bWT -cAV -bWT -bWT +bsw +baE +bvW +bxO +bvW +bBl +bCQ +bEt +bGm +bHO +bvW +bLc +aod +aGN +aqK +alK +dit +dux +bUV +duH +bXC +bYH +dux +cbs +cdb +ceo +dux +cdc +dux +diF +cjt +cjt +cjt +ckP +ckP +crh +dxv +ctn +dux +dux +cfA +dux +dux aaf aaf aaf -cHc -cIa -cIV -cKb -cLb -cLX -cMZ -cJZ -cJZ -cJZ -cJZ -cHb -cSD -cTE +dBN +dBO +cDC +cEG +cFA +dBS +cHn +cEE +cEE +cEE +cEE +cBR +cMt +cNr aaa aaa aaa @@ -94855,138 +95273,138 @@ aaa aaa aaa aaa -aae +aai aaa -aag aah -aah -aaj -aan -aan -aan -aau -aan -aan -aax -aan -aan -aan -abc -aah -aah -aah -aah -acP +aak +aak +aam +aaq +aaq +aaq +aaw +aaq +aaq +aaz +aaq +aaq +aaq +abf +aak +aak +aak +aak +acS aaa aaa aaf aaf aaf aaa -aho -aho -ahn -akg -ahn -amQ -aoa -apz -aqS -ast -atG -ana -akt -axa -ayp -azl -aAJ -aAG -aAG -aES -aGs -ayp -aJf -aKx -aLO -aNB -aOV -aNB -aRP -aTu -aTu -aWm -aTu -aTu -bbh -bcN -bet -bfO -bhw -bjd -blc -bmG -boz -bqm -bsD -buO -bwu -byr -bAp -bCb -bDT -bFA -byr -byr -byr -byr -bOm -bPO -bRB -bCe -bwx -bVS -bWT -bYw -bZG -cbs -ccD -cdK -cfq -chb -bWT -bWT -ckO -bWT -cnD -cpc -cqt -crw -coY -cqt -cfr -cwy -cxJ -bWT -czJ -cAW -cCd -bWT +ahq +ahq +ahp +blt +ahp +amP +anV +apr +aqI +asg +ats +dnu +dne +awP +ayj +azm +aAF +aAC +aAC +aEw +aFG +ayj +aIh +aJC +aKP +aMu +aNE +aMu +aQi +aRH +aRH +aUf +aRH +aRH +aYK +bam +dmH +bdh +byI +bgG +biD +bkg +bme +bnV +bBG +bsx +bua +bvW +bxP +bzA +bBm +bCR +bvW +bvW +bvW +bvW +bLd +aof +aob +alC +alK +bSu +dux +bUW +bVZ +bXD +bYI +bZO +cbt +cdc +dux +dux +csT +dux +cxQ +ckS +cmi +cnk +ckP +cmi +dvt +csf +cto +dux +cvj +cwh +cxb +dux aaa aaa aaa -cHb -cIb -cIW -cKc -cLc -cLY -cNa -cOj -cPa -cQe -cQV -cRU -cSE +cBR +cCM +cDD +cEH +cFB +cGt +cHo +cIr +cJh +cKg +cKT +dBV +cMu aaf aaa aaa @@ -95112,139 +95530,139 @@ aaa aaa aaa aaa -aad +aag aaa aaf aaa aaf aaf -aao +aar aaf aaa aaf -aao +aar aaf aaa aaf -aao +aar aaf aaa aaf aaa aaa aaa -acQ +acT aaf aaa aaf aaa aaf aaa -aho -aif +ahq +aih ajd akh -alz -amQ -aob -apA -aqT -asu -atH -auW -akt -akt -ayp -azm -aAK -aCe -aDq -aET -aGt -aIa -aJg -aKy -aLP -aLP -aLP -aLP -aLP -aLP -aUN -aLP -aLP -aLP -bbi -bcO -beu -bfP -bhx -bje -bld -bmH -bet +aly +amP +anW +aps +aqJ +ash +att +dqe +dne +dne +ayj +azn +aAG +aBV +aDi +aEx +aFH +aHc +aIi +aJD +aKQ +aKQ +aKQ +aKQ +aKQ +aKQ +aSQ +aKQ +aKQ +aKQ +aYL +ban +bbO +bdi +beV +bgH +biE +bkh +dmH +bnW bqn -bsE -buP -bwv -bys -bAq -bCc -bDU -bFB -bDU -bJh -bKM -byr -bOn -bPP -bFD -bRB -bwx -bVO -bWT -bYx -bZH -cbt -ccE -bWT -cfr -chc -bWT -cjH -chb -bWT -cnE -cpd -bWT -crx -csK -bWT -cvA -cwz -bWT -bWT -bWT -cAX -bWT -bWT -bWT +bsy +bub +bvX +bxQ +bzB +bBn +bCS +bBn +bQN +dih +bvW +bLe +bMF +apz +aob +alK +bSr +dux +bUX +bWa +bXE +bYJ +dux +dvt +cdd +dux +cfC +cdc +dux +cjv +diG +dux +cnl +cox +dux +diI +diK +dux +dux +dux +cwi +dux +dux +dux aaa aaa -cHb -cHY -cIT -cJZ -cLd -cLZ -cNb -cOk -cPb -cQf -cQU -cHb -cSF -cTF +cBR +cCK +cDA +cEE +cFC +cGu +cHp +dBT +cJi +cKh +cKS +cBR +cMv +cNs aaf aaa aaf @@ -95369,142 +95787,142 @@ aaa aaa aaa aaa -aae -aac -aac +aai +aaj +aaj aaa aaf -aai -aap +aal aas +aau aaa -aai -aap +aal aas +aau aaa -aai -aap +aal aas +aau aaa aaf aaa aaa aaa -acQ +acT aaa aaa aaa aaa aaf aaa -aho -aig -aje +ahq +aii +ajg aki -alA -amQ -aoc -apB -alD -asn -atI -aoh -apF -axb -ayq -azn -aAL -aCf -aDr -aEU -aGu -aIb -aJh -aKz -aLQ -aNC -aOW -aNC -aNC -aNC -aLQ -aNC -aXT -aZt -bbj -bcP -bet -bfO -bhy -bjf -ble -bmI -boA +alz +amP +anX +apt +dnk +doJ +atu +aRG +dnZ +awQ +ayk +azo +aAH +aBW +dCn +aEy +aFI +aHd +aIj +aJE +aKR +aMv +aNF +aMv +aMv +aMv +aKR +aMv +cVC +aXf +aYM +bao +dmH +bdh +beW +bgI +biF +bki +bmf +bnX bqo -bsF -buQ -bww -byr -bAr -byr -bDV -byr -bHj -byr -bKN -byr -bOo -bMs -bOg -bTf -bUA -bVT -bWT -bWT -bWT -bWT -bWT -bWT -bWT -chd -bWT -bWT -chb -bWT -bWT -bWT -bWT -cbu -cbu -bWT -bWT -cwA -bWT -cyI -czK -cAW -cbt -cdP -bWT +bsz +buc +bvW +dhS +bvW +bBo +bvW +bEu +bvW +bHP +bvW +bLf +bJs +aLd +bPK +bRf +bSv +dux +dux +dux +dux +dux +dux +dux +cde +dux +dux +cdc +dux +dux +dux +dux +bXF +bXF +dux +dux +csh +dux +cuf +cvk +cwh +bXE +dvq +dux aaa aaa -cHb -cHb -cIX -cJZ -cLe -cMa -cNc -cOl -cPc -cPc -cQW -cRV -cSG -cHb +cBR +cBR +cDE +cEE +cFD +cGv +cHq +cIs +cJj +cJj +cKU +cLN +cMw +cBR aaf aaa -aae +aai aaa aaa aaa @@ -95523,7 +95941,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -95631,137 +96049,137 @@ aaa aaa aaa aaa -aai -aap +aal aas +aau aaf -aai -aap +aal aas +aau aaa -aai -aap +aal aas +aau aaa aaf aaa aaa aaa -acQ +acT aaf aaf aaf aaf aaf aaa -aho -aih +ahq +aij ajf akj -alB -amR -aod -ahn -aqU -asn -atI -alD -alD -asn -ayp -azo -aAM -aCg -aDs -aEV -aGv -ayp -aJi -aKz -aLR -aNC -aOX -aNC -aRQ -aNC -aLR -aWn -aNC -aNC -bbj -bcQ -bes -bfP -bhz -bjg -blf -bmJ -boB -bqp -bsC -buR -bdf -byr -byr -byr -bDW -byr -bHk -byr -bKO -byr -bOp -bOo -bRC -bTg -bwx -bHm -bHl -bCe -bZI -bWT -ccF -cdL -cfs -che -cir -bWT -ckP -cmf -cmf -cmf -cqu -cmf -cmf -cuh -cmf -cwB -cmf -cmf -czL -cfu -ciw -bWT -bWT +alA +amQ +anY +ahp +dhu +doJ +atu +dnk +dnk +doJ +ayj +azp +aAI +aBX +aDj +aEz +aFJ +ayj +aIk +aJE +aKS +aMv +aNG +aMv +aQj +aMv +aKS +dCB +aMv +aMv +aYM +bap +dmF +bdi +beX +bgJ +biG +bkj +bmg +bnY +bql +bsA +baE +bvW +bvW +bvW +bBp +bvW +bEv +bvW +bHQ +bvW +bLg +bLf +amU +bPL +alK +bOf +bOv +alC +dbk +dux +bYK +bZP +cbv +cdf +cep +dux +cgI +chZ +chZ +chZ +cBr +chZ +chZ +cpS +chZ +csi +chZ +chZ +cvl +cbx +ceu +dux +dux aaf aaa aaa -cHb -cIY -cKd -cLf -cMb -cNd -cOm -cJZ -cQg -cQX -cRW -cSH -cHb +cBR +cDF +cEI +cFE +cGw +cHr +cIt +cEE +cKi +cKV +cLO +cMx +cBR aaf aaf -aad +aag aaa aaa aaa @@ -95886,139 +96304,139 @@ aaa aaa aaa aaa -aad +aag aaf -aai -aap +aal aas +aau aaa -aai -aap +aal aas +aau aaf -aai -aap +aal aas +aau aaf aaf aaf aaf aaf -acQ +acT aaa aaa aaa aaf aaf aaf -aho -aii -ajg +ahq +aik +anZ akk -alC -amS +alB +amR +aoO +ahp +aqL +asi +atu +auG +avN +doJ +ayj +ayj +aAJ +ayj +ayj +ayj +ayj +ayj +aIl +aJF +aKT +aMw +aNH +aMw +aQk +aMw +aSR +aMw +aVH +aXg +aYN +baq +dmF +bdj +dmF +bgK +dmT +bkk +dmF +bnZ +bql +bsB +alK aoe -ahn -aqV -asv -atI -auX -awb -asn -ayp -ayp -aAN -ayp -ayp -ayp -ayp -ayp -aJj -aKA -aLS -aND -aOY -aND -aRR -aND -aUO -aND -aXU -aZu -bbk -bcR -bes -bfQ -bes -bjh -blg -bmK -bes -bqq -bsC -buS -bwx -byt -bAs -byr -byr -byr -byr -byr -byr -byr -bwx -bwx -bwx -bwx -bwx -bCe -bVP -bCd -bZJ -bWT -ccG -cdM -cft -chf -cis -bWT -ckQ -cmg -cmg -cmg -cmg -cmg -cmg -cui -cmg -cmg -cmg -ciw -czM -cfr -cbt -chl -bWT +bxS +bvW +bvW +bvW +bvW +bvW +bvW +bvW +alK +alK +alK +alK +alK +alC +bSs +bzC +bWb +dux +bYL +bZQ +cbw +cdg +ceq +dux +dwb +cia +cia +cia +cia +cia +cia +cpT +cia +cia +cia +ceu +dyg +dvt +bXE +dvE +dux aaf aaf aaf -cHc -cIZ -cKe -cLg -cMc -cNe -cOn -cJZ -cQh -cQY -cRX -cSI -cHb +dBN +cDG +cEJ +cFF +cGx +cHs +cIu +cEE +cKj +cKW +cLP +cMy +cBR aaa aaa -aae +aai aaa aaa aaa @@ -96143,136 +96561,136 @@ aaa aaa aaa aaa -aae -aaf aai -aap +aaf +aal aas +aau aaf -aai -aap +aal aas +aau aaa -aai -aap +aal aas +aau aaa aaf aaa aaa aaa -acQ +acT aaa aaf aaf aaf -aec -agw -agw -agw -agw +aee +bbo +bbo +bbo +bbo akl -ahn -ahn -ahn -ahn -akt -asn -atJ -alD -alD -asn -ayr -azp -aAO -aCh -aDt -aEW -aGw -aIc -aJk -aKB -aLT -aNC -aOZ -aNC -aRS -aNC -aUP -aNC -aRS -aZv -aNC -bcS -bes -bfP -bes -bji -blh -bmL -bes -bqn -bsG -buT -bwy -byu -bAt -bCd -bCd -bFC -bHl -bCe -bKP -bCd -bCd -bCd -bCd -bTh -bCd -bCd -bKQ -bCe -bVO -bWT -ccH -cdL -cfu -chg -cbt -bWT -ckR -cmg -cnF -cpe -cqv -cry -csL -cuj -cvB -cwC -cmg -cyJ -czM -cAY -cbt -cCY -bWT +ahp +ahp +ahp +ahp +dne +doJ +atD +dnk +dnk +doJ +ayl +aEt +aAK +aBY +aDk +aEA +aFK +aHe +aIm +aJG +aKU +aMv +aNI +aMv +aQl +aMv +aSS +aMv +aQl +aXh +aMv +bar +dmF +bdi +dmF +bgL +biI +bkl +dmF +bnW +bqp +bsC +bud +bvY +bxT +bzC +bzC +dCW +bOv +alC +bSw +bzC +bzC +bzC +bzC +bPM +bzC +bzC +bSp +alC +bSr +dux +bYM +bZP +cbx +cdh +bXE +dux +dwc +cia +cjw +ckU +cmk +cnm +coy +cpU +crj +csj +cia +cug +dyg +dDw +bXE +cNg +dux aaa aaa aaa -cHb -cJa -cKf -cLh -cMd -cNf -cOo -cPd -cQi -cQZ -cRY -cSJ -cHb +cBR +cDH +cEK +cFG +cGy +cHt +cIv +cJk +cKk +cKX +cLQ +cMz +cBR aaa aaa aaf @@ -96400,139 +96818,139 @@ aaa aaa aaa aaa -aac +aaj aaa -aai -aaq -aas +aal +aat +aau aaa -aai -aaq -aas +aal +aat +aau aaa -aai -aaq -aas +aal +aat +aau aaa aaf aaa aaa aaa -acQ +acT aaa aaf -aec -aec -aec -agx -ahp -aij -agw +aee +aee +aee +agB +ahr +ail +bbo akm -alD -amT -aof -alD -aqW -asw -atK -auY -awc -axc -ayr -azq -aAP -aCi -aDu -aEX -aGx -aId -aJl -aKC -aLU -aKC -aPa -aKC -aRT -aKC -aUQ -aKC -aKC -aZw -bbl -bcT -bev -bfR -bes -bjj -bli -bmM -bes -bqr -bsH -buU -bwx -byv -bAu -bCe -bDX -bFD -bHm -bCd -bKQ -bAu -bOq -bPQ -bCe -bTi -bFD -bVU -bWU -bCe -bVO -bWT -bWT -bWT -cfv -cbt -cit -bWT -ckQ -cmh -cnG -cpf -cqw -crz -csM -csM -cvC -cwD -cmg -cyK -czN -cAZ -cCe -cCZ -bWT +dnk +amS +dnF +dnk +aqM +asj +atv +auH +avO +awR +ayl +dhy +aAL +aBZ +aDl +aEB +aFL +aHf +aIn +aJH +aKV +aJH +aNJ +aJH +aQm +aJH +aST +aJH +aJH +aXi +aYO +bas +bbP +bdk +dmF +bgM +biJ +bkm +dmF +boa +bqq +bsD +alK +dhR +aoa +alC +bBq +apz +bOf +bzC +bSp +aoa +aqO +bMG +alC +bPN +apz +bTt +bTv +alC +bSr +dux +dux +dux +cby +bXE +cer +dux +dwb +cib +cjx +ckV +cml +cnn +coz +coz +crk +csk +cia +cuh +cvm +cDK +cxc +cxR +dux aaa aaa aaa -cHc -cJb -cKg -cLi -cMe -cNg -cOp -cJZ -cQj -cRa -cRZ -cSK -cHb +dBN +cDI +cEL +cFH +cGz +cHu +cIw +cEE +cKl +cKY +cLR +cMA +cBR aaa aaa -aae +aai aaa aaa aaa @@ -96657,7 +97075,7 @@ aaa aaa aaa aaa -aac +aaj aaf aaa aaf @@ -96675,125 +97093,125 @@ aaf aaf aaf aaf -acR -aah -aah -aed -aeD -afB -agy -ahq -aik +acU +aak +aak +aef +aeG +afE +agC +ahs +aim ajh akn -alE -amU -aog -apC -aqX -asx -atL -auZ -awd -axd -ayr -azr -aAQ -aCj -aDv -aEY -ayr -aIe -aJm -aKD -aLV -aNE -aPb -aKD -aRU -aRU -aUR -aWo -aXV -aZx -bbm -bcU -bes -bes -bes -bjk -bes -bes -bes -bqs -bsI -buV -bwz -bwz -bwz -bwz -bwz -bwz -bwz -bJi -bwz -bwz -bwz -bwz -bwz -bwz -bwz -bwz -bwz -bwz -bVM -bWT -ccI -bWT -cfw -cbt -ciu -bWT -ckS -cmi -cnH -cpg -cqv -crA -csN -cuk -cvD -cwE -cmg -ciw -ciw -czM -bWT -bWT -bWT +alD +amT +dnG +apu +aqN +ask +dpG +auI +avP +awS +ayl +azs +aAM +aCa +aDm +dhC +ayl +aHg +aIo +aJI +aKW +aMx +aNK +aJI +aQn +aQn +aSU +aUg +aVJ +aXj +aYP +bat +dmF +dmF +dmF +bgN +dmF +dmF +dmF +bob +bqr +bsE +bue +bue +bue +bue +bue +bue +bue +bGq +bue +bue +bue +bue +bue +bue +bue +bue +bue +bue +cgH +dux +bYN +dux +cbz +bXE +ces +dux +dwe +cic +cjy +ckW +cmk +cno +coA +cUH +crl +csl +cia +ceu +ceu +dyg +dux +dux +dux aaa aaa aaa -cHb -cJc -cKh -cLj -cMf -cNh -cOq -cJZ -cQk -cRb -cSa -cSL -cHb +cBR +cDJ +cEM +cFI +cGA +cHv +cIx +cEE +cKm +cKZ +cLS +cMB +cBR aaf aaf -aae -aad -aad -aad -aad +aai +aag +aag +aag +aag aaa aaa aaa @@ -96916,14 +97334,14 @@ aaa aaa aaa aaf -aae -aad -aae -aad -aac -aad -aae -aac +aai +aag +aai +aag +aaj +aag +aai +aaj aaa aaa aaf @@ -96935,118 +97353,118 @@ aaa aaf aaa aaf -aec -aec -aec -agz -ahr -ail +aee +aee +aee +agD +aht +ain aji -ako -alF -amV -aoh -alF -aqY -akt -akt -ava -awe -akt -ayr -azs -aAR -aCk -aDw -aEZ -ayr -aIf -aJn -aKE -aLW -aNF -aPc -aQD -aKC -aTv -aUS -aWp -aXW -aZy -bbn -bcV -bew -bfS -bhA -bjl -blj -bmN -bcU -bqn -bsJ -buO -bwz -byw -bAv -bCf -bDY -bFE -bHn -bCg -bKR -bMy -bOr -bPR -bwz -bTj -bUB -bVV -bWV -bwz -bVO -cbu -ccJ -bWT -cbt -cfr -bWT -bWT -ckQ -cmi -cnI -cph -cqx -crB -csO -csO -cvE -cwF -cmg -cyL -czO -czM -bWT -cDa -bWT +dnd +alE +dnr +aRG +alE +dou +dne +dne +auJ +avQ +dne +ayl +azt +aAN +aCb +aDn +aED +ayl +aHh +aIp +aJJ +aKX +aMy +aNL +aPe +aJH +aRI +aSV +aUh +aVK +aXk +aYQ +bau +bbQ +bdl +beY +bgO +biK +bkn +bat +bnW +bqs +bsx +bue +bwa +bxU +bzD +bBr +bSx +bEw +bzE +bHR +bJy +bLh +bMH +bue +bPO +bRg +dDi +bTw +bue +bSr +bXF +bYO +dux +bXE +dvt +dux +dux +dwb +cic +cjz +ckX +cmm +cnp +coB +coB +crm +csm +cia +cui +cwj +dyg +dux +cxS +dux aaf aaf aaf -cHb -cHb -cHb -cLk -cMg -cHb -cHb -cHb -cHb -cRc -cHb -cHb -cHb +cBR +cBR +cBR +cFJ +cGB +cBR +cBR +cBR +cBR +dBU +cBR +cBR +cBR aaa aaa -aae +aai aaa aaa aaa @@ -97194,107 +97612,107 @@ aaa aaf aaf aaf -aec -agw -agw -aim -aim -ain -alG -ain -akt -apD -akt -akt -atM -avb -awf -axe -ays -azt -aAS -aCl -aDx -aFa -ayr -aIg -aJo -aKF -aLX -aNG -aPd -aQE -aRV -aTw -aUT -aWq -aXX -aZz +aee bbo -bcW -bex -bfT -bhB -bjm -blk -bmO -bhF -bqm -bsK -buW -bwz -byx -bAw -bCg -bDZ -bCg -bDZ -bCg -bKR -bMz -bOs -bPS -bwz -bTk -bUC -bVW -bWW -bwz -bVS -bWT -ccK -bWT -cfx -chh -bWT -chk -ckQ -cmi -cnJ -cpi -cqv -crC -csP -cul -cvF -cwG -cmg -chk -czP -cBa -bWT -cDb -bWT +bbo +agA +agA +aio +alF +aio +dne +apv +dne +dne +atx +auK +avR +awT +aym +azu +aAO +aCc +aDo +aEE +ayl +aHi +aIq +aJK +aKY +aMz +aNM +aPf +aQo +aRJ +aSW +aUi +aVL +aXl +aYR +bav +bbR +bdm +beZ +bgP +biL +bko +bbN +bnV +dCN +apA +bue +bwb +bxV +bzE +dmD +bzE +dmD +bzE +bHR +bJz +bLi +bMI +bue +bPP +bRh +bSy +bTx +bue +bSu +dux +bYP +dux +cbA +cdi +dux +cdl +dwb +cic +cjA +ckY +cmk +cnq +coC +cpW +crn +csn +cia +cdl +cMm +cMo +dux +cxT +dux aaa aaa aaa aaf aaa aaa -cLl -cMh -cNi -cOr +cFK +cGC +cBS +cIy aaf aaa aaa @@ -97454,103 +97872,103 @@ aaf aaf aaf aaf -ain +aio ajj akp -alH -amW -aoi -alH -aoi -akt -atN -avc -awg -axf -ayr -ayr -ayr -ayr -ayr -ayr -ayr -aIh -aJp -akt -aLY -akt -aPe -aQF -aRW -aRW -aUU -aUU -aXY -aZA -aUU -bcU -bey -bfU -bhC -bjn -bll -bmP -boC -bqm -bsC -buX -bwA -byy -byy -byy -byy -byy -bHo -byy -byy -byy -byy -bPT -bRD -bTl -bUD -bVX -bWX -bwz -bVO -bWT -bWT -bWT -bWT -bWT -bWT -cjI -ckQ -cmi -cmg -cpj -cmg -cmg -cmg -cum -cmg -cmg -cmg -ciw -czM -cBb -bWT -cDa -bWT +alG +dhq +aoc +alG +aoc +dne +aty +auL +avS +awU +ayl +ayl +ayl +ayl +ayl +ayl +ayl +aHj +aIr +dne +aKZ +dne +aNN +aPg +aQp +aQp +aSX +aSX +aVM +aXm +aSX +bat +bbS +bdn +bfa +bgQ +biH +bkp +bmh +bnV +bql +avH +bug +bCV +bCV +bCV +bCV +bCV +bEx +bCV +bCV +bCV +bCV +bMJ +bOk +bPQ +bRi +bSz +bTy +bue +bSr +dux +dux +dux +dux +dux +dux +cfD +dwb +cic +cia +ckZ +cia +cia +cia +cpX +cia +cia +cia +ceu +dyg +dyw +dux +cxS +dux aaa aaa aaa aaf aaa aaa -cLl -cMi -cNi +cFK +cGD +cBS aaa aaf aaf @@ -97560,13 +97978,13 @@ aaa aaa aaa aaa -cSS -cWd -cWd -cWd -cSS -cWd -cSS +cMI +cPA +cPA +cPA +cMI +cPA +cMI aaa aaa aaa @@ -97711,119 +98129,119 @@ aaa aaf aaa aaf -aio -ajk +aip +dho akq -alI -amX -aoh -apE -apH -akt -atO -avd -awh -axg -ayt -ayt -aAT -ayt -ayt -ayt -aGy -aIi -aJq -aKG -aLZ -akt -aPf -aQG -aRX -aTx -aUU -aWr -aXZ -aZB -aUU -bcX -bez -bfV -bhD -bjo -bhD -bmQ -boD +alH +amW +aRG +apw +dod +dne +atz +auM +avT +awV +ayn +ayn +dCl +ayn +ayn +ayn +aFM +aHk +aIs +aJL +aLa +dne +aNO +aPh +aQq +aRK +aSX +aUj +aVN +aXn +aSX +baw +bbT +bdo +bfb +bgR +bfb +bkq +bmi +boc bqt -bsL -buP -bwB -byz -byz -bCh -byz -byz -bHp -bJj -byz -byz -byz -bPU -bRE -bTm -bUD -bVY -bWY -bwz -bZK -cbv -ccL -cdN -cfy -chi -civ -chi -ckT -cmj -cnK -cpk -cqv -crD -csQ -cun -cvG -cwH -cmg -cjI -czQ -ciw -bWT -bWT -bWT -bWT -bWT -bWT -bWT -bWT +bsy +buh +bwd +bwd +bzF +bwd +bwd +bEy +bGr +bwd +bwd +bwd +bMK +bOl +bPR +bRi +bSA +bTz +bue +bWc +bXG +bYQ +bZR +cbB +cdj +cse +cdj +cgL +cid +cjB +cla +cmk +cnr +coD +cpY +cro +cso +cia +cfD +dyj +ceu +dux +dux +dux +dux +dux +dux +dux +dux aaa -cLl -cMj -cNi +cFK +cGE +cBS aaa aaf aaa -cRd -cRd -cRd -cRd -cRd -cRd -cSS -cWe -cWz -cWU -cSS -cXC -cWd +cLa +cLa +cLa +cLa +cLa +cLa +cMI +cPB +cPZ +cQT +cMI +cRE +cPA aaa aaa aaa @@ -97954,133 +98372,133 @@ aaf aaa aaa aaa -aaW -aaW -aaW -aaW -aaW -aaW -aaW -aaW -aaW -aaW -aaW -aaW +aaZ +aaZ +aaZ +aaZ +aaZ +aaZ +aaZ +aaZ +aaZ +aaZ +aaZ +aaZ aaa aaf -ain +aio ajl akr -alJ -amY -aoh -apF -aqZ -akt -atP -akt -akt -akt -akt -akt -akt -akt -akt -akt -akt -aIj -aJr -akt -aMa -akt -aPg -aQH -aRY -aTy -aUU -aWs -aYa -aZC -aUU -bcY -beA -bfW -bhE -bjp -blm -bmR -bcU -bqm -bsC -buY -bwz -byA -bAx -bCi -bEa -bFF -bHq -bJk -bKS -bCg -bOt -bCg -bwz -bTn -bTm -bVZ -bVZ -bwz -bZL -cbw -bWT -cdO -cfz -chj -ciw -cjJ -ckU -cmi -cnL -cpl -cqy -crE -csR -cuo -csO -cwI -cwK -bZF -czM -ciw -czP -cBc -cBc -cAZ -ciw -cHd -cjK -bWT -cKi -cLk -cMk -cHb -cOs -cye -cye -cRd -cSb -cSM -cTG -cUz -cVk -cSS -cWf -cWA -cWf -cSS -cXD -cSS +alI +amX +aRG +dnZ +aqP +dne +atA +dne +dne +dne +dne +dne +dne +dne +dne +dne +dne +aHl +aIt +dne +aLb +dne +aNP +aPi +aQr +aRL +aSX +aUk +aVO +aXo +aSX +bax +bbU +bdp +bfc +bgS +biM +bkr +bat +bnV +bql +awL +bue +aze +bwe +bGv +bHT +bwc +dCZ +bGs +bHS +bzE +bLk +bzE +bue +bPS +bPR +bBs +bBs +bue +bWd +bXH +dux +bZS +dvw +cdk +ceu +cfE +dwi +cic +cjC +clb +cmn +cns +coE +cpZ +coB +csp +csr +duH +dyg +ceu +cMm +cwm +cwm +cDK +ceu +cBT +cfF +dux +dzK +cFJ +cGF +cBR +clK +bTs +bTs +cLa +cLT +cMC +cNt +cTf +eFN +cMI +cPC +djX +cPC +cMI +cRF +cMI aaa aaa aaa @@ -98212,30 +98630,30 @@ aaf aaa aaa aaf -abd -abu -abS -aci -acw -acS -adj -adH -aee -aeE -aaW +abg +abx +abV +acm +acA +acV +adm +adJ +aeg +aeH +aaZ aaa aaf -ain -ain +aio +aio aks -alK -amZ -aoh -aoh -ara -akt -atQ -akt +alJ +amY +aRG +aRG +aqQ +dne +atB +dne aaa aaa aaf @@ -98244,100 +98662,100 @@ aaa aaf aaa aaa -aGz -aIk -aIh -akt -aMb -akt -aPh -aQI -aRZ -aTz -aUU -aWt -aYb -aZD -aUU -bcZ -beB -bfX -bhF -bjq -bcU -bcU -boE -bqu -bsC -buZ -bwz -bwz -bwz -bwz -bEb -bFF -bHr -bJl -bKS -bCg -bOt -bPV -bwz -bCg -bUE -bWa -bTm -bwz -bZM -cbx -bWT -bWT -cfA -bWT -bWT -cjK -ckV -cmi -cnM -cpm -cqv -crF -csS -cup -cvH -cwJ -cmg -bWT -czR -cBc -cCf -ciw -cdP -cFd -cGd -cBc -cBc -cAZ -cKi -cLm -cMl -cNj -cOs -cPe -cQl -cRe -cSc -cSN -cTH -cUA -cVl -cRd -cSS -cWB -cWk -cXo -cXE -cSS +aFN +aHm +nIb +dne +aLc +dne +aNQ +aPj +aQs +aRM +aSX +aUl +aVP +aXp +aSX +bay +bbV +bdq +bbN +bgT +bat +bat +bmj +bod +bql +bsG +bue +bue +bue +bue +bBu +bwc +bEz +bGt +bHS +bzE +bLk +bML +bue +bzE +bRj +bSB +bPR +bue +div +bXI +dux +dux +cbD +dux +dux +cfF +dwj +cic +cjD +clc +cmk +cnt +coF +cqa +crq +csq +cia +dux +diM +cwm +cNf +ceu +dvq +cNm +cNU +cwm +cwm +cDK +dzK +cFL +cGG +cHw +clK +cdm +cKn +cLb +cRT +cMD +cNu +cOb +cOF +cLa +cMI +cQa +cPH +cRj +cRG +cMI aaa aaa aaa @@ -98469,132 +98887,132 @@ aaf aaf aaf aaf -abd -abv -abT -acj -acx -acT -adk -adI -aef -aeF -aaW +abg +aby +abW +acn +acB +acW +adn +adK +aeh +aeI +aaZ aaf aaf aaf -ain -ain -ain -ain -aoj -apG -arb -akt +aio +aio +aio +aio +dnM +apy +aqR +dne akm -akt +dne aaf -axh -axh -axh -axh -axh -axh +awW +awW +awW +awW +awW +awW aaf -aGA -aIl -aJs -akt -aMc -akt -aPi -aQJ -aSa -aTA -aUU -aWu -aYc -aZE -bbp -bda -beC -bfY -bhG -bjr -bln -bmS -bgd -bqv -bsC -bva -bwz -byB -bAy -bCj -bCg -bFF -bHs -bJm -bEa -bMA -bOu -bPW -bwz -bTo -bUF -bWb -bWZ -bwz -bZL -bCe -bWT -cdP -cfB -chk -cix -cix -ckW -cmi -cmg -cmg -cmg -cmg -csT -cuq -cmg -cmg -cmg -cyM -cfu -cAY -cbt -cDc -cDc -cFe -cDc -cDc -cDc -cJd -cKi -cLn -cMm -cNk -cOs -cPf -cQm -cRd -cRd -cRd -cRd -cUB -cRd -cRd -cWg -cWC -cWV -cWC -cXF -cWd +aFO +aHn +aIu +dne +bOq +dne +aNR +aPk +aQt +aRN +aSX +aUm +aVQ +aXq +aYS +baz +bbW +bdr +bfd +bgU +biN +bks +bdw +boe +bql +bsH +bue +aAz +bxW +bzG +bzE +bwc +bEA +bGu +bHT +bJA +bLl +bMM +bue +bPU +bRk +bSC +bTA +bue +bWd +alC +dux +dvq +cbE +cdl +cev +cev +cgO +cic +cia +cia +cia +cia +coG +cqb +cia +cia +cia +cuj +cbx +dDw +bXE +cxU +cxU +czN +cxU +cxU +cxU +cDL +dzK +cFM +cGs +cHx +clK +bZT +cKo +cLa +cLa +cLa +cLa +cOc +cLa +cLa +cPD +cQb +cQx +cQb +cRH +cPA aaa aaa aaa @@ -98726,132 +99144,132 @@ aaa aaa aaa aaf -abd -abw -abU -ack -acy -acU -adl -adJ -aeg -aeG -aaW +abg +abz +abX +aco +acC +acX +ado +adL +aei +aeJ +aaZ aaa aaa aaf aaf aaf aaf -akt -akt -akt -akt -akt -atR -ave +dne +dne +dne +dne +dne +dhx +auN aaa -axh -ayu -azu -aAU -aCm -aDy +awW +ayo +azv +aAP +aCd +aDp aaa -aGB -aIm -aJt -akt -aMb -akt -akt -akt -akt -akt -akt -akt -akt -akt -akt -bdb -beD -bfZ -bhH -bjs -blo -bmT -boF -bqw -bsM -buQ -bwz -byC -bAz -bwz -bEc -bFF -bFF -bCg -bKT -bCg -bCg -bPX -bwz -bwz -bwz -bwz -bXa -bwz -bZL -bPJ -bWT -cdQ -cfC -chl -cix -cjL -ckX -cmk -cnN -cpn -cix -crG -csU -cur -cvI -cwK -bZF -cbt -czS -cBd -cCg -cDc -cEb -cFf -cGe -cHe -cDc -cJe -cKi -cLo -cMn -cNl -cOs -cPg -cQn -cRd -cSd -cSO -cTI -cUC -cVm -cRd -cWh -cWC -cWW -cWC -cXG -cWd +aFP +aHo +dhG +dne +aLc +dne +dne +dne +dne +dne +dne +dne +dne +dne +dne +baA +bbX +bds +dCI +bgV +biO +bkt +bmk +bof +bqu +bsz +bue +bwg +bxX +bue +bBv +bwc +bwc +bzE +bPT +bzE +bzE +bMN +bue +bue +bue +bue +bTB +bue +bWd +aqK +dux +bZU +cbF +dvE +cev +cfG +cgP +cie +cjE +cld +cev +cnu +coH +cqc +crr +csr +duH +bXE +cvn +cwn +cxd +cxU +cyN +czO +cAS +cBU +cxU +dDB +dzK +cFN +cGH +cHy +clK +cJl +cKp +cLa +cLV +cME +cNv +cOd +cOG +cLa +cPE +cQb +dDH +cQb +cRI +cPA aaa aaa aaa @@ -98976,139 +99394,139 @@ aaa aaa aaa aaa -aae +aai aaa aaf aaa aaa aaa -aav -aav -aav -aav -aav -aav -acV -adm -adK -aav -aav -aav -aav +aax +aax +aax +aax +aax +aax +acY +adp +adM +aax +aax +aax +aax aaa aaa aaf aaa -akt -akt -aok -alD -arc -akt -atS -avf +dne +dne +dnO +dnk +aqS +dne +atE +auO aaa -axh -ayv -azv -aAV -aCn -aDz -aFb -aGC -aIn -aJu -aKH -aMd -awh -aPj -aQK -awh -aTB -aUV -awh -awh -aZF -akt -bdc -beE -bga -beE -bjt -blp -bmU -boG -bqx -bsN -bvb -bwz -bwz -bwz -bwz -bEd -bFF -bFF -bJn -bKU -bMB -bCg -bPY -bwz -bTp -bUG -bwz -bXb -bYy -bZN -cby -bWT -cdR -cfD -chm -cix -cjM -ckY -cml -cnO -cpo -cqz -crH -csV -cus -cvJ -cwL -bWT -bWT -bWT -bWT -bWT -cDc -cEc -cFg -cGf -cHf -cDc -cJf -cKi -cHb -cMo -cHb -cOs -cPh -cQo -cRd -cSe -cSP -cTJ -cUD -cVn -cRd -cWi -cWC -cWX -cXp -cXH -cWd +awW +ayp +azw +aAQ +aCe +aDq +aEF +aFQ +aHp +aIw +aJM +aLe +avT +bfU +aPl +avT +dCx +aSY +avT +avT +aXr +dne +baB +bbY +bdt +bbY +bgW +biP +bku +bml +bog +bqv +bsI +bue +bue +bue +bue +cUT +bwc +bwc +bHU +bHV +bJB +bzE +bMO +bue +bPV +bRl +bue +bTC +atw +bWe +bXJ +dux +bZV +cbG +cdn +cev +cfH +cgQ +cif +cjF +cle +cmo +cnv +coI +cqd +crs +css +dux +dux +dux +dux +dux +cxU +cyO +czP +cAT +cBV +cxU +cDM +dzK +cBR +cGI +cBR +clK +diQ +cKq +cLa +cLW +cMF +cSY +cOe +cOH +cLa +cPF +cQb +djj +djr +cRq +cPA aaa aaa aaa @@ -99233,139 +99651,139 @@ aaa aaa aaa aaa -aac +aaj aaf aaf aaa aaa aaf -aaw -abe -abx -abV -acl -aav -acW -adn -adL -aeh -aeH -afC -aav -aav +aay +abh +abA +abY +acp +aax +acZ +adq +adN +aej +aeK +afF +aax +aax aaa aaf aaa -akt -ana -aol -apH -apF -akt -atT -avf +dne +dnu +dnP +dod +dnZ +dne +atP +auO aaa -axh -ayw -azw -aAW -aCo -aDA -aFc -aGD -aIo -aJv -aKI -aKI -aKI -aKI -aQL -aKI -aKI -aUW -aKI -aKI -aZG -bbq -bdd -beF -bgb -beF -bju -blq -bmV -bgd -bqy -bsO -buO -bwz -byD -bAy -bCk -bCg -bFG -bFF -bCg -bKV -bMC -bOv -bPZ -bRF -bTq -bUH -bwz -bDJ -bCe -bZO -bOq -bWT -cdS -cfE -chn -cix -cjN -ckZ -cmm -cnP -cpp -cqA -crI -csW -cut -cvK -cwL -cxK -cyN -czT -cBe -cCh -cDc -cEd -cFh -cGg -cHg -cDc -cJd -bWT -cLp -cMp -cNm -cye -cPi -cQp -cRf -cSf -cSQ -cTK -cUE -cVo -cVQ -cWj -cWD -cWY -cXq -cXI -cSS +awW +ayq +azx +aAR +aCf +aDr +aEG +aFR +aHq +aIx +aJN +aJN +aJN +aJN +aPm +aJN +aJN +aSZ +aJN +aJN +aXs +aYT +baC +bbZ +bdu +bbZ +bgX +biQ +bkv +bdw +boh +bqw +bsx +bue +bwf +bxW +bzH +bzE +dCX +bwc +bzE +cVb +cVe +cVf +cVi +bOm +bPW +bRm +bue +auF +alC +aXt +aqO +dux +bZW +cbH +cdo +cev +cfI +cgR +cig +cjG +clf +cmp +cnw +coJ +cqe +crt +css +ctr +cuk +cvo +cwo +cxe +cxU +cyP +czQ +cAU +diN +cxU +cDL +dux +cFO +cGJ +cHz +bTs +cJn +cKr +cLc +cLX +cMG +cNx +cOf +cOI +cPk +cPG +cQc +djk +cRl +cRJ +cMI aaa aaa aaa @@ -99490,139 +99908,139 @@ aaa aaa aaa aaa -aae +aai aaa aaf aaf aaf aaf -aav -abf -aby -abb -abb -aav -acX -ado -ado -aei -aeI -afD -agA -aav +aax +abi +abB +abe +abe +aax +ada +adr +adr +aek +aeL +afG +agE +aax aaa aaf aaf -aio -anb -aom -apI -ard -asy -atU -avf +aip +ana +aog +doe +aqT +asl +atG +auO aaa -axh -ayx -azx -aAX -aCp -aDB -aFd -aGE -aIm -aJw -aKJ -aMe -aNH -aPk -aQM -aSb -aTC -aUX -aWv -aKI -aZH -akt -bde -beG -bgc -bhI -bjv -blr -bmW -bgd -bqm -bsO -buO -bwz -byE -bAz -bwz -bEe -bFF -bFF -bJo -bwz -bwz -bwz -bwz -bwz -bTr -bUI -bwz -bwx -bwx -bZP -cbz -cbz -cdT -cfF -cbz -cix -cjO -cla -cmn -cnQ -cpq -cix -crJ -csX -cuu -cvL -cwL -cxL -cyO -czU -cBf -cCi -cDc -cEe -cFi -cGh -cHh -cDc -cJg -cKj -cLq -cMq -cNn -cOt -cPj -cQq -cRd -cSg -cSR -cTL -cUF -cVp -cVR -cWk -cWE -cWZ -cXr -cXJ -cYc +awW +ayr +azy +aAS +aCg +aDs +aEH +aFS +aHo +aIy +aJO +aLf +aMA +aNT +aPn +aQu +aRO +aTa +dhL +aJN +dtP +dne +baD +bca +bdv +bff +bgY +biR +bkw +bdw +bnV +bqw +bsx +bue +aFE +bxX +bue +bBw +bwc +bwc +bBx +bue +bue +bue +bue +bue +bPX +bRn +bue +alK +alK +bWf +bXK +bXK +bZX +cbI +bXK +cev +cfJ +cgS +cih +cjH +clg +cev +cnx +coK +cqf +cru +css +cts +cul +cvp +cwp +cxf +cxU +cyQ +czR +cAV +cBW +cxU +cDN +cEN +cFP +cGK +cHA +cIz +cJo +cKs +cLa +cLY +cMH +cNy +cOg +cOJ +cPl +cPH +cQd +cTo +cRm +cRK +cRP aaa aaa aaa @@ -99753,133 +100171,133 @@ aaa aaa aaf aaa -aav -abg -aaQ -abW -acm -acz -abb -adp -adM -aej -aeJ -afE -agB -afS +aax +abj +aaR +abZ +acq +acD +abe +ads +adO +ael +aeM +afH +agF +afW aaf aaf aaa -akt -ako -aon -akt -akt -akt -atV -avg +dne +dnd +aoh +dne +dne +dne +atH +auP aaa -axh -ayy -azy -aAY -aCq -axh +awW +ays +azz +aAT +aCh +awW aaa -aGF -aIp -aJx -aKK -aMf -aNI -aNI -aNI -aNI -aTD -aUY -aWw -aKI -aZI -akt -bdf -bdf -bgd -bhJ -bjw -bgd -bdf -boH -bqz -bsP -bvc -bwC -bwz -bwz -bwz -bEf -bFH -bFH -bEf -bwz -bMD -bOw -aYi -bwz -bwz -bwz -bwz -bXc -bYz -bZQ -cbz -ccM -cdU -cfG -cho -cix -cjP -clb -cmo -cnR -cpr -cix -crK -csY -cuv -cvM -cwL -cxM -cyP -czU -cBg -cCj -cDc -cEf -cFj -cGi -cHi -cDc -cJh -cDc -cDc -cMr -cDc -cDc -cPk -cQr -cRd -cSh -cRd -cRd -cRd -cVq -cRd -cWl -cWC -cWZ -cSS -cSS -cSS +aFT +aHr +aIz +aJP +aLg +aMB +aMB +aMB +aMB +aRP +aTb +aUo +aJN +aXu +dne +baE +baE +bdw +bfg +bgZ +bdw +baE +bmm +boi +bqx +bsJ +bui +bue +bue +bue +cUU +aZO +aZO +cUU +bue +buf +cVh +aVW +bue +bue +bue +bue +bTD +bUY +bWg +bXK +bYR +bZY +cbJ +cdp +cev +cfK +cgT +cii +cjI +clh +cev +cny +coL +cqg +crv +css +ctt +cum +cvp +cwq +cxg +cxU +cyR +czS +cAW +cBX +cxU +cDO +cxU +cxU +cGL +cxU +cxU +diR +cPW +cLa +cLZ +cLa +cLa +cLa +cOK +cLa +cPI +cQb +cTo +cMI +cMI +cMI aaa aaa aaa @@ -99894,7 +100312,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -100010,133 +100428,133 @@ aaf aaf aaf aaf -aaw -abh -abz -abz -acn -acA -acY -abB -abB -aek -aeK -afF -agC -aav +aay +abk +abC +abC +acr +acE +adb +abE +abE +aem +aeN +afI +agG +aax aaa aaf aaa -akt -akt -akt -akt -are -asz -atW -akt +dne +dne +dne +dne +aqU +asm +atI +dne aaf -axh -axh -axh -axh -axh -axh +awW +awW +awW +awW +awW +awW aaf -aGG -aIq -aJy -aKL -aMg -aNJ -aPl -aQN -aNI -aTD -aUY -aWx -aKJ -aZJ -bbr -bdg -beH -bge -bhK -bge -bhK -bmX -bbr -bqA -bsQ -bvd -bwD -byF -bAA -bCl -bwD -bFI -bwD -bwD -bKW -bwD -bwD -bwD -bAA -bwD -byF -bWc -bwD -bwD -bZR -cbz -ccN -cdV -cfH -chp -cix -cix -cix -cmp -cnS -cps -cix -crL -csZ -cuw -crL -cwL -cxN -cyQ -czU -cBh -cCk -cDc -cDc -cFk -cGj -cDc -cDc -cJi -cDc -cLr -cMp -cNo -cDc -cPl -cQq -cRd -cSi -cRd -cTM -cUG -cVr -cRd -cSS -cWF -cWZ -cSS -cXK -cSS +aFU +aHs +aIA +aJQ +aLh +aMC +aNU +dCt +aMB +aRP +aTb +aUp +aJO +aXv +aYU +baF +bcb +bdx +bfh +bdx +bfh +bkx +aYU +boj +bqy +bsK +buj +bwh +bxY +bzI +buj +bCW +buj +buj +cVd +buj +buj +buj +bxY +buj +bwh +bSD +buj +buj +bWh +bXK +bYS +bZZ +cbK +cdq +cev +cev +cev +cij +cjJ +cli +cev +cnz +coM +cqh +cnz +css +ctu +cun +cvp +cwr +cxh +cxU +cxU +czT +cAX +cxU +cxU +cDP +cxU +cFQ +cGJ +cHB +cxU +diS +cKs +cLa +cMa +cLa +cNz +cOh +cOL +cLa +cMI +cQf +cTo +cMI +dbF +cMI aaa aaa aaa @@ -100267,31 +100685,31 @@ aaa aaf aaa aaa -aav -abi -abA -abB -aaH -acB -abb -adq -adN -abb -aeL -afG -aav -aav +aax +abl +abD +abE +aaI +acF +abe +adt +adP +abe +aeO +afJ +aax +aax aaa aaf aaa aaa -akt -aoo -apJ -apK -akt -akt -akt +dne +aoi +apB +apC +dne +dne +dne aaa aaa aaa @@ -100300,100 +100718,100 @@ aaa aaa aaa aaa -aGz -aIr -aJz -aKJ -aMh -aNK -aPm -aQO -aSc -aTE -aUZ -aWy -aKJ -aZK -bbs -bdh -bdh -bgf -bdh -bdh -bdh -bgw -bdh -bqB -bsR -bve -bwE -beS -bgw -bdh -bdh -bFJ -bHt -bdh -bKX -bdh -beS -bdh -bgw -bdh -bdh -bdh -bXd -bYA -bZS -cbz -ccO -cdW -cfI -chq -ciy -cjQ -cbz -cmq -cnT -cpt -cqB -crM -cta -cux -cvN -cwM -cux -cyR -czV -cBi -cCl -cDd -cEg -cFl -cGk -cHj -cIc -cJj -cKk -cLs -cMs -cNp -cDc -cPm -cQq -cRd -cRd -cSS -cTN -cRd -cRd -cRd -cWm -cWG -cXa -cXs -cVy -cSS +aFN +aHt +aIB +aJO +aLi +aMD +aNV +aPo +aQv +aRQ +aTc +aUq +aJO +aXw +aYV +baG +baG +bdy +baG +baG +baG +bdP +baG +bok +bqz +bsL +buk +dCH +bdP +baG +baG +bCX +bEB +baG +bHW +baG +dCH +baG +bdP +baG +baG +baG +bTE +bUZ +bWi +bXK +bYT +caa +cbL +cdr +cew +cfL +bXK +cik +cjK +clj +cmr +cnA +coN +cqi +crw +cst +cqi +cuo +cvq +cws +cxi +cxV +cNh +czU +cAY +cBY +cCN +cDQ +cEO +cFR +cGM +cHC +cxU +cJq +cKs +cLa +cLa +cMI +cNA +cLa +cLa +cLa +cPJ +cQg +cTy +cRn +cOS +cMI aaa aaa aaa @@ -100520,33 +100938,33 @@ aaa aaa aaa aaa -aav -aav -aaE -aav -aav -abj -abB -aaQ -aaH -acC -acZ -acZ -adO -acZ -aeM -afH -agD -aav +aax +aax +aaF +aax +aax +abm +abE +aaR +aaI +acG +adc +adc +adQ +adc +aeP +afK +agH +aax aaa aaf -akt -akt -akt -aop -apK -arf -akt +dne +dne +dne +aoj +apC +doA +dne aaa aaa aaa @@ -100556,101 +100974,101 @@ aaa aaa aaa aaa -azA -azA -azA -aJA -aKI -aMi -aNL -aPn -aQP -aSd -aTF -aVa -aWz -aYd -aZL -bbt -bdi -beI -bgg -bhL -bhL -bhL -bmY -boI -bhL -bsS -bsS -bwF -bhL -bmY -bCm -bhL -bFK -bHu -bJp -bJp -bME -bJp -bQa -bRG -bTs -bUJ -bJp -bXe -bYB -bZT -cbz -ccP -cdV -cfJ -chr -chr -cjR -clc -cmr -cnU -cpu -cqC -ceh -ceh -cuy -ceh -cwN -cxO -cyS -czW -cBj -cCm -cDe -cEh -cFm -cGl -cHk -cId -cJk -cKl -cLt -cMt -cNq -cDc -cPn -cQs -cRg -cRd -cST -cTO -cUH -cVs -cVS -cWn -cWH -cXb -cWL -cXL -cSS +aDu +aDu +aDu +aIC +aJN +aLj +aME +aNW +aPp +aQw +aRR +aTd +aUr +aVR +aXx +aYW +baH +bcc +bdz +bfi +bfi +bfi +bky +bmn +bfi +bqA +bqA +bul +bfi +bky +bGw +bfi +bCY +bEC +bHX +bHX +bJC +bHX +bMR +bOn +bPY +bRo +bHX +bTF +bVa +bWj +bXK +bYU +bZZ +cbM +cds +cds +cfM +cgU +cil +cjL +clk +cms +cal +cal +cqj +cal +csu +ctv +cup +cvr +cwt +cxj +cxW +cyT +czV +cAZ +cBZ +cCO +cDR +cEP +cFS +cGN +cHD +cxU +cJr +cKu +cLd +cLa +cMJ +cNB +cOi +cOM +cPm +cPK +cQh +cQE +cQl +cRo +cMI aaa aaa aaa @@ -100777,33 +101195,33 @@ aaa aaa aaf aaa -aav -aay -aaF -aaO -aav -abk -abB -abA -aco -acD -abb -adr -adP -abb -aeN -afI -agE -afS +aax +aaA +aaG +aaP +aax +abn +abE +abD +acs +acH +abe +adu +adR +abe +aeQ +afL +agI +afW aaf aaf -akt +dne alL -anc -aoq -apL -arg -akt +anb +aok +aox +aqV +dne aaa aaa aaa @@ -100813,101 +101231,101 @@ aaa aaa aaa aaa -azz -aGH -aIs -aJB -aKI -aMj -aNL -aPn -aQN -aSe -aNI -aVb -aWA -aKM -aZM -bbu -bdj -beJ -beJ -beJ -beJ -beJ -bmZ -bmZ -bqC -bmZ -bmZ -bwG -bmZ -bmZ -bCn -bEg -bFL -bHv -bJq -bJr -bJr -bJr -bJr -bJr -bJr -bJr -bJr -bXf -bbu -bZU -cbz -ccQ -cdX -cfK -chs -ciz -cjS -cld -cms -cnV -cpv -cqD -crN -cei -chy -cvO -cwO -cxP -cyT -czX -cBk -cCn -cDf -cEi -cFn -cGm -cHl -cIe -cJl -cKm -cLu -cMu -cNr -cDc -cPo -cQt -cRh -cRd -cSU -cTP -cUI -cVt -cVT -cWo -cWG -cXc -cXt -cXM -cYd +azC +aFV +aHu +aID +aJN +dhI +aME +aNW +dCt +aQx +aMB +aTe +aUs +aJR +aXy +dCE +baI +bcd +bcd +bcd +bcd +bcd +bkz +bkz +bol +bkz +bkz +bum +bkz +bkz +bzJ +bBy +bCZ +bED +bGx +bGy +bGy +bGy +bGy +bGy +bGy +bGy +bGy +bTG +dCE +bWk +bXK +bYV +cab +cbN +cdt +cex +cfN +cgV +cim +cjM +cll +cmt +cnB +cam +cdz +crx +csv +ctw +cuq +cvs +cwu +cxk +cxX +cyU +czW +cBa +cCa +cCP +cDS +cEQ +cFT +cGO +cHE +cxU +cJs +cJX +cLe +cLa +cMK +cNC +cOj +cON +cPn +cPL +cQg +cQF +cQV +cRp +cRL aaa aaa aaa @@ -101034,33 +101452,33 @@ aaa aaa aaf aaf -aaw -aaz -aaG -aaP -aaX -abl -abC -abX -acp -acE -ada -ads -adQ -ael -aeO -afD -agD -aav +aay +aaB +aaH +aaQ +aba +abo +abF +aca +act +acI +add +adv +adS +aen +aeR +afG +agH +aax aaf aaf -akt +dne alL -and -aor -apM -arh -akt +anc +aol +apD +aqW +dne aaa aaa aaa @@ -101070,101 +101488,101 @@ aaa aaa aaa aaa -azz -aGI -aIt -aJC -aKI -aMk -aNL -aPo -aQQ -aQQ -aQQ -aVc -aWB -aYe -aZN -bbv -bdj -beJ -bgh -bhM -bjx -bls -bmZ -boJ -bqD -bsT -bvf -bwH -byG -bmZ -bCo -bEh -bFM -bHw -bJr -bKY -bMF -bOx -bQb -bRH -bMF -bMF -bJr -bXg -bby -bZV -cbz -ccR -cdY -cfL -cht -ciA -cjT -cle -cmt -cnW -cpw -cqE -cqE -cqF -cuz -cqE -cwP -cqE -cqE -czY -czY -cCo -cDg -czY -czY -czY -cDc -cIf -cJm -cDc -cye -cMv -cye -cye -cye -cye -cRi -cRd -cSV -cTQ -cUJ -cVu -cVU -cWp -cWI -cXc -cVv -cXM -cYd +azC +aFW +aHv +aIE +aJN +aLl +aME +aNX +aPq +aPq +aPq +aTf +aUt +aVS +aXz +aYY +baI +bcd +bdA +bfj +bha +biS +bkz +bmo +bom +bqB +bsM +bun +bwi +bkz +bzK +bBz +bDa +bEE +bGy +bHY +bJD +bLm +bMS +bOo +bJD +bJD +bGy +bTH +aYX +bWl +bXK +bYW +cac +cbO +cdu +cey +cfO +cgW +cin +cjN +clm +cmu +cmu +cmv +cqk +cmu +csw +cmu +cmu +cvt +cvt +cxl +cxY +cvt +cvt +cvt +cxU +cCQ +cDT +cxU +bTs +cGP +bTs +bTs +bTs +bTs +cLf +cLa +cML +cND +cOk +cOO +cPo +cPM +cQi +cQF +cOP +cRp +cRL aaa aaa aaa @@ -101291,33 +101709,33 @@ aaa aaa aaf aaa -aav -aaA -aaH -aaQ -aaY -aaH -abD -abY -acq -acF +aax +aaC +aaI +aaR abb -adt -adR -acZ -aeP -afJ -abb -aav -aip +aaI +abG +acb +acu +acJ +abe +adw +adT +adc +aeS +afM +abe +aax +aiq ajm ajm ajm ajm -aos +aom ajm -akt -akt +dne +dne aaa aaa aaa @@ -101327,101 +101745,101 @@ aaa aaa aaa aaa -azz -aGI -aIu -aJD -aKI -aMl -aNM -aPp -aQR -aSf -aTG -aVd -aWC -aYf -aZO -bbw -bdk -beK -bgi -bhN -bjy -blt -bmZ -boK -bqE -bsU -bvg -bwI -byH -bAB -bCp -bEi -bFN -bHx -bJs -bKZ -bMG -bOy -bQc -bRI -bQc -bUK -bWd -bXh -bby -bZW -cbA -cbA -cdZ -cfM -chu -ciB -cjU -cbz +azC +aFW +aHw +aIF +aJN +aLm +aMF +aNY +aPr +aQy +aRS +aTg +aUu +aVT +aXA +aYZ +baJ +bce +bdB +bfk +bhb +biT +bkz +bmp +bon +bqC +bsN +buo +bwj +bxZ +bzL +bBA +bDb +bEF +bGz +bHZ +bJE +bLn +bMT +bOp +bMT +bRp +bSE +bTI +aYX +bWm +bXL +bXL +cad +cbP +cdv +cez +cfP +bXK +cio +cjO +cln cmu -cnX -cpx -cqE -crO -ctb -cuA -cvP -cwQ -cxQ -cqE -czZ -cBl -cCp -cDh -cEj -cFo -czY -cHm -cIg -cJn -cKn -cye -cMw -cNs -cOu -cPp -cye -cRj -cSj -cSW -cTR -cUK -cVv -cVv -cVv -cWC -cXd -cXu -cXH -cYd +cnC +coO +cql +cry +csx +ctx +cmu +cvu +cwv +cxm +cxZ +cyV +czX +cvt +cCb +cCR +cDU +cER +bTs +cGQ +cHF +cIA +cJt +bTs +cLg +cMb +cMM +cNE +cOl +cOP +cOP +cOP +cQb +cQG +cQW +cRq +cRL aaa aaa aaa @@ -101548,137 +101966,137 @@ aaa aaa aaa aaa -aaw -aaB -aaI -aaR -aaZ -abm -abE -abZ -acr -acG -abb -abb -abb -abb -aeQ -afK -abb -ahs -aiq -ahv -aku -alM -ane -aot -ajm -ari +aay +aaD +aaJ +aaS +abc +abp +abH +acc +acv +acK +abe +abe +abe +abe +aeT +afN +abe +ahu +air +ahx akt +alM +and +aon +ajm +aqX +dne aaa aaa aaa aaa aaa aaa -aAZ +aAV aaa aaa -azA -aGJ -aIv -aJE -aKM -aMm -aKM -aKM -aKM -aKM -aKM -aVe -aKM -aKM -aZP -bbx -bdl -beJ -bgj -bhO -bjz -blu -bmZ -boL -bqF -bsV -bvh -bwJ -byI -bmZ -bCq -bEj -bFM -bHw -bJt -bLa -bMH -bOz -bQd -bRJ -bTt -bUL -bWd -bXh -bby -bZT -cbA -ccS -cea -cbA -chv -chv -chv -chv +aDu +aFX +aHx +aIG +aJR +aLn +aJR +aJR +aJR +aJR +aJR +aTh +aJR +aJR +aXB +aZa +baK +bcd +bdC +bfl +bhc +biU +bkz +bmq +boo +bqD +bsO +bup +bwk +bkz +bzM +bBB +bDa +bEE +bGA +bIa +bJF +bLo +bMU +dbm +bPZ +bRq +bSE +bTI +aYX +bWj +bXL +bYX +cae +bXL +cdw +cdw +cdw +cdw +cip +cjP +clo cmv -cnY -cpy -cqF -crP -ctc -cuB -cvQ -cwR -cxR -cqE -cAa -cBm -cCq -cDi -cEk -cFp -cGn -cHn -cIh -cJo -cKo -cye -cMx -cNt -cOv -cPq -cye -cRk -cRd -cSX -cTS -cUL -cVw -cVV -cVw -cWJ -cXc -cVv -cXM -cYd +cnD +coP +cqm +crz +csy +cty +cmu +cvv +cww +cxn +cya +cyW +czY +cBb +cCc +cCS +cDV +cES +bTs +cGR +cHG +cIB +cJu +bTs +cPY +cLa +cMN +cNF +cOm +cOQ +cPp +cOQ +cQj +cQF +cOP +cRp +cRL aaa aaa aaa @@ -101805,137 +102223,137 @@ aaa aaa aaf aaa -aav -aaC -aaJ -aaS -aav -abn -abF -abz -acs -acH -abb -adu -adS -aej -aeR -afL -abb -aht -air +aax +aaE +aaK +aaT +aax +abq +abI +abC +acw +acL +abe +adx +adU +ael +aeU +afO +abe ahv -akv +ais +ahx +aku alN -anf -aou +ane +aoo ajm ajm ajm ajo ajo -awi +avY ajo aaa -azz -aBa -azz -azA -azA -aGK -aIv +azC +aAW +azC +aDu +aDu +aFY +aHx aaa aaa -aMn +aLo aaa aaa aaa aaa aaf aaa -aWD -aYg -aZQ -bby -bdm -beL -bgk -bhP -bjA -blv -bmZ -bmZ -bmZ -bmZ -bvi -bwK -byJ -bmZ -bCr -bEj -bFM -bHy -bJu -bLb -bMI -bOA -bQe -bRK -bTu -bUM -bWe -bXh -bby -bZT -cbA -ccT -ceb -cfN -chv -ciC -cjV -clf +aUv +aVU +aXC +aYX +baL +bcf +bdD +bfm +bhd +biV +bkz +bkz +bkz +bkz +btH +buq +bAZ +bkz +bzN +bBB +bDa +bEG +bGB +bIb +bJG +bLp +bMV +bOr +bQa +bRr +bSF +bTI +aYX +bWj +bXL +bYY +caf +cbQ +cdw +ceA +cfQ +cgX +ciq +cjO +clo cmw -cnX -cpy -cqG -crQ -ctd -cuC -cvR -cwS -cxS -cqE -cAb -cBn -cCr -cDj -cEl -cFq -czY -cHo -cIi -cJp -cKp -cye -cMy -cNu -cOw -cPr -cye -cRi -cRd -cSY -cTT -cTP -cVx -cVW -cVx -cWI -cXc -cXt -cXM -cYd +cnE +coQ +dDt +crA +csz +ctz +cmu +cvw +cwx +cxo +cyb +cyX +czZ +cvt +cCd +cCT +cDW +cET +bTs +cGS +cHH +cIC +cJv +bTs +cLf +cLa +cMO +cNG +cNC +cOR +cPq +cOR +cQi +cQF +cQV +cRp +cRL aaa aaa aaa @@ -102062,137 +102480,137 @@ aaa aaa aaf aaf -aav -aav -aaK -aav -aav -abo -abG -abB -abB -abB -adb -abB -abB -aem -aeS -afM -abb -ahu -aiq -ahv -akw +aax +aax +aaL +aax +aax +abr +abJ +abE +abE +abE +ade +abE +abE +aeo +aeV +afP +abe +ahw +air +ahx +akv alO -ang -aov -ahv -arj -asA -atX +anf +aop +ahx +aqY +asn +atK ajo -avy +avk ajo aaa -azA -aBb -aCr -aDC -aFe -aGL -aIw +aDu +aAX +aCj +aDv +aEI +aFZ +aHy aaa aaa -aMo -aKN -aPq -aQS -aKN -aKN +aLp +aJS +aNZ +aPs +aJS +aJS aaa -aWE -aYh -aZR -bbz -bdn -beJ -beJ -bhQ -beJ -beJ -beM -boM -bmZ -bsW -bvj -bwJ -byK -bmZ -bCs -bEj -bFM -bHz -bJr -bLc -bMJ -bOB -bLd -bRL -bMF -bMF -bJr -bXi -bby -bZT -cbA -ccU -cec -cfO -chw -ciD -cjW -clg +aUw +aVV +aXD +aZb +baM +bcd +bcd +bfn +bcd +bcd +bcg +bmr +bkz +bqE +dCO +bup +bwm +bkz +bzO +bBB +bDa +bEH +bGy +bIc +bJH +bLq +bId +bOs +bJD +bJD +bGy +bTJ +aYX +bWj +bXL +bYZ +cag +cbR +cdx +ceB +cfR +cgY +cir +cjN +clo cmx -cnW -cpy -cqH -crR -cte -cuD -cvS -cwT -cxT -cxT -cxT -cxT -cCs -cDk -cxT -cxT -cxT -cHp -cHp -cJq -cHp -cHp -cHp -cye -cye -cPs -cye -cRl -cRd -cSZ -cTT -cTP -cVy -cVX -cVy -cWK -cXe -cXv -cXN -cSS +cnF +coR +cqo +crB +csA +ctA +ctA +ctA +ctA +cxp +cyc +ctA +ctA +ctA +cCe +cCe +cDX +cCe +cCe +cCe +bTs +bTs +cJw +bTs +cLi +cLa +cMP +cNG +cNC +cOS +cPr +cOS +cQk +cQH +cQX +cRr +cMI aaa aaa aaa @@ -102323,133 +102741,133 @@ aaa aaf aaa aaa -aaw -abp -abH -aca -act -acI -abb -adv -adR -acZ -aeT -afH -agF -ahv -ais -ahv -akx +aay +abs +abK +ace +acx +acM +abe +ady +adT +adc +aeW +afK +agJ +ahx +ait +ahx +akw alP -anh -aow -ahv -ark -asB -atY -ahv -awj -ahv -ahv +ang +aoq +ahx +aqZ +aso +atL +ahx +avZ +ahx +ahx ajm ajm ajm -azA -aFf -aGM -aIv +aDu +aEJ +aGa +aHx aaa -aKN -aMo -aNN -aPr -aQT -aSg -aKN +aJS +aLp +aMG +aOa +aPt +aQz +aJS aaa -aWD -aYi -aZQ -bbA -bdo -beM -bgl -bhR -bjB -blw -bna -boN -bmZ -bsX -bvk -bwL -byL -bAB -bCp -bEj -bFN -bHA -bJr -bLd -bLd -bLd -bLd -bLd -bLd -bLd -bJt -bXj -bbx -bZX -cbA -cbA -ced -cfP -chv -ciE -cjX -chv -cmy -cnX -cpz -cqE -crS -ctf -cuE -cvT -cwU -cxT -cyU -cAc -cBo -cCt -cDl -cEm -cFr -cxT -cHq -cIj -cJr -cKq -cHq -cHp -cNv -cOx -cPt -cOx -cRm -cRd -cSS -cTU -cUM -cSS -cSS -cWq -cWL -cXf -cXw -cXO -cSS +aUv +aVW +aXC +aZc +baN +bcg +bdE +bfo +bhe +biW +bkA +bms +bkz +btC +bsR +bur +bwn +bxZ +bzL +bBB +bDb +bEI +bGy +bId +bId +bId +bId +bId +bId +bId +bGA +bTK +aZa +bWn +bXL +bXL +cah +cbS +cdw +czE +cfS +cdw +cis +cjO +clp +cmu +cnG +coS +cqn +crC +csB +ctA +cur +cvx +cwy +cxq +cyd +cyY +cAa +ctA +cCf +cCU +cDY +cEU +cCf +cCe +cHI +cID +cJx +cID +cLj +cLa +cMI +cNH +cOn +cMI +cMI +cPN +cQl +cQI +cZc +cZd +cMI aaa aaa aaa @@ -102579,134 +102997,134 @@ aaf aaf aaf aaa -aaT -aav -aav -aav -aav -aav -abb -abb -abb -abb -abb -aeU -afN -agG -ahw -ait +urv +aax +aax +aax +aax +aax +abe +abe +abe +abe +abe +aeX +afR +agK +ahy +aiu ajn -aky +akx alQ -ani -aox -apN -arl -ani -ani -avh -awk -axi -ayz -azB -aBc -aCs -aDD -aDJ -aGN -aIv +anh +aor +apE +dCg +anh +anh +auU +awa +awZ +ayw +azD +aAY +aCk +aDw +aDC +aGb +aHx aaf -aKN -aMp -aNO -aNO -aQU -aSh -aKN -aKN -aWF -aWF -aZS -bbB -bdp -beN -bgm -bhS -bjC -blx -bnb -boO -bmZ -bsY -bvl -bwM -byM -bAC -bCt -bEk -bFO -bHB -bJv -bLe -bMK -bOC -bQf -bRM -bTv -bUN -bJv -bXk -bby -bZT -cbB -ccV -cee -cfQ -chx -ciF -cjY -clh -cmz -cnZ -cpA -cqE -cqE -cqE -cuF -cqE -cqE -cxT -cyV -cAd -cBp -cCu -cDm -cEn -cFs -cxT -cHr -cIk -cJs -cHs -cHs -cHp -cNw +aJS +aLq +aMH +aMH +aPu +aQA +aJS +aJS +aUx +aUx +aXE +aZd +baO +bch +bdF +bfp +bhf +biX +bkB +bmt +bkz +bsP +bsQ +bus +bwo +byb +bzP +bBC +bDd +bEJ +bGC +bIe +bJI +bLr +bMW +bOt +bQb +bRs +bGC +bTL +aYX +bWj +bXM +bZa +cai +cbT +cdy +ceD +cfT +cgZ +cit +cjQ +clq +cmu +cmu +cmu +cqp +cmu +cmu +ctA +cus +cvy +cwz +cxr cye -cye -cye -cRn -cPx -cTa -cTV -cUN -cTa -cSS -cSS -cSS -cSS -cSS -cSS -cSS +cyZ +cAb +ctA +cCg +cCV +cDZ +cCj +cCj +cCe +cgJ +bTs +bTs +bTs +cLk +cPb +cMR +cNI +cOo +cMR +cMI +cMI +cMI +cMI +cMI +cMI +cMI aaa aaa aaa @@ -102835,135 +103253,135 @@ aaa aaa aaf aaa -aaL -aaL -aaL -abq -abI -acb -acu -abI -adc -adw -acb -acu -aeV -afD -agH -ahx -aiu +aaV +aaV +aaV +abt +abL +acf +acy +abL +adf +adz +acf +hyP +aeY +afG +agL +ahz +aiv ajo -akz -alR -anj -aoy -apO -apO -apO -atZ -avi -awl -axj -ayA -azC -azC -aCt -aDE -aFg -aGO -aIv +aky +akg +ani +aos +apF +apF +apF +atM +auV +awb +axa +ayx +azE +azE +aCl +aDx +aEK +aGc +aHx aaa -aKN -aMq -aNO -aPs -aQV -aQU -aTH -aKN -aWG -aYj -aZT -bbw -bdq -beM -bgn -bhT -bgn -bgn -beM -boP -bmZ -bsZ -bvm -bwN -byN -bmZ -bCu -bCv -bFM -bHC -bJv -bLf -bML -bOD -bQg -bRN -bTw -bUO -bWf -bXh -bYC -bZY -cbC -ccW -cef -cfR -chy -ciG -cjZ -cli -cmA -coa -cpB -cqI -crT -ctg -cuG -cvU -cwV -cxT -cyW -cAe -cBq -cCv -cDn -cEn -cFt -cxT -cHs -cHs -cJr -cHs -cHs -cHp -cNx -cye -cPu -cQu -cRo -cSk -cTb -cTW -cUO -cTe -cTe -cWr -cWM -cXg -cXx -cXP -cXx +aJS +aLr +aMH +aOb +aPv +aPu +aRT +aJS +aUy +aVX +aXF +aYZ +baP +bcg +bdG +bfq +bdG +bdG +bcg +bmu +bkz +bqG +dbe +but +bwp +bkz +bzQ +bzR +bDa +dDa +bGC +bIf +bJJ +bLs +bMX +bOu +bQc +bRt +bSG +bTI +bVb +bWo +bXN +bZb +caj +cbU +cdz +ceE +cfU +cha +ciu +cjR +clr +cmy +ctq +cbu +cqq +crD +csC +ctA +cut +cvz +cwA +cxs +cyf +cyZ +cAc +ctA +cCj +cCj +cDY +cCj +cCj +cCe +cHJ +bTs +cJy +cKv +cLl +diV +cMS +cNJ +cOp +cMV +cMV +cPO +cQm +cQJ +cQY +cRs +kzn aaa aaa aaa @@ -103091,136 +103509,136 @@ aaa aaa aaa aaa -aaD +adG aaM -aaU -aba -abr -abJ -acc -aav -abb -abb -abb -abb -abb -aeW -afO -agI -ahy -aiv +adH +aPa +abu +abM +acg +aax +abe +abe +abe +abe +abe +aeZ +afS +agM +ahA +aiw ajp -akA +akz +ajQ +anj +aot +apG +apG +apG +atN alS -ank -aoz -apP -apP -apP -aua -avj -awm -axk -ayB -azD -aBd -aCu -aDD -aFh -aGP -aIv +awc +axb +ayy +azF +aAZ +aCm +aDw +aEL +aGd +aHx aaa -aKN -aMr -aNO -aPt -aQW -aSi -aTI -aVf -aWH -aYk -aZU -bbC -bdr -beO +aJS +aLs +aMH +aOc +aPw +aQB +aRU +aTi +aUz +aVY +aXG +aZe +baQ +bci aaf aaf aaf -bhY -bhY -boQ -bhY -bta -bta -bwO -bta -bmZ -bCv -bEl -bFP -bHD -bJw -bLg -bMM -bOE -bQh -bQh -bTx -bUP -bWg -bXh -bYD -baf -cbC -ccV -ceg -cfS -chz -ciH -cka -ckf -cmB -ckd -cpC -ckf -ckf -ckf -ckf -ckf -cwW -cxT -cyX -cAf -cBr -cCw -cDo -cEn -cFu -cxT -cHt -cIl -cJt -cIl -cLv -cHp -cNy -cye +bfv +bfv +bmv +bfv +bqH +bqH +buu +bqH +bkz +bzR +bBD +bDe +bEK +bGD +bIg +bJK +bLt +bMY +bMY +bQd +bRu +bSH +bTI +bVc +aXR +bXN +bZa +cak +cbV +cdA +ceF +cfV +cga +civ +cfY +cls +cga +cga +cga +cga +cga +csD +ctA +cuu +cvA +cwB +cxt +cyg +cyZ +cAd +ctA +dbr +tFJ +dDC +tFJ +cFU +cCe +ctK +bTs +cJz +cKw +cLm +cLm +cLm +cNK +cOq +cLm +cLm +cLm +cQn +cQK +cPv +cPv cPv -cQv -cRp -cRp -cRp -cTX -cUP -cRp -cRp -cRp -cWN -cXh -cWc -cWc -cWc aaa aaa aaa @@ -103349,135 +103767,135 @@ aaa aaf aaf aaa -aaL -aaL -aaL -abq -abK -acd -aav -acJ -add -adx -adT -acZ -aeX -afP -agJ -ahz -ahz -ahz -ahz -alT -ahz -ahA -aoB -ahA -aoB -aub -avk -awn -axl -ahv -ahv -ahv +aaV +aaV +aaV +abt +abN +ach +aax +acN +adg +adA +adV +adc +afa +afT +agN +ahB +ahB +ahB +ahB +alR +ahB +adY +apH +adY +apH +atO +auW +awd +axc +ahx +ahx +ahx ajm -aDF -aFi -aGQ -aIv +aDy +aEM +aGe +aHx aaa -aKN -aMs -aNO -aPu -aQV -aNO -aTJ -aKN -aWI -aYl -aZV -bby -bdr -beO +aJS +aLt +aMH +aOd +aPv +aMH +aRV +aJS +aUA +aVZ +aXH +aYX +baQ +bci aaf aaf aaf -bly -bnc -boR -bqG -bqP -bvn -bwP -byO -bAD -bwY -bEm -bFQ -bHE -bJx -bLh -bMN -bOF -bQi -bRO -bTy -bUQ -bJv -bXl -bYE -bZZ -cbD -ccX -ceh -cfT -chA -ciI -ckb -clj -cmC -cob -cpD -cqJ -crU -cth -cuH -ckf -cwX -cxT -cyY -cAg -cBs -cCx -cDp -cEo -cFv -cxT -cHq -cHq -cJu -cHq -cHq -cHp -cNz -cye -cPw -cQw -cRq -cSl -cSl -cTY -cUP -cVz -cRp -cWs -cWO -cXi -cXx -cXh -cXx +biY +bkC +bmw +bop +boy +bsS +buv +bwq +byc +buE +bBE +bDf +bEL +bGE +bIh +bJL +bLu +bMZ +bYq +bQe +bRv +bGC +bTM +bVd +bWp +bXO +bZc +cal +cbW +cdB +ceG +cfW +chb +ciw +cjS +clt +cmz +cnH +coT +cqr +cga +csE +ctA +cuv +cvB +cwC +cxu +cyh +cza +cAe +ctA +cCf +cCf +cEa +cCf +cCf +cCe +diC +bTs +cJA +cKx +cLn +cMd +cMd +cNL +cOq +cOT +cLm +cPP +cQo +cQL +cQY +cQK +kzn aaa aaa aaa @@ -103607,134 +104025,134 @@ aaa aaf aaa aaa -aaT -abb -abb -abb -ace -aav -acK -ade -ady -adU -aen -aeY -afQ -agK -ahz -aiw +urv +abe +abe +abe +aci +aax +acO +adh +adB +adW +aep +afb +afU +agO +ahB +aNA ajq -akB -alU -anl +aix +akA +ank ajx -apQ -arm -asC -ans -avk -awn -axm -ayz -azE -aBc -aCs -aDD -aFj -aGR -aIv +apI +ara +asp +anr +auW +awd +axd +ayw +azG +aAY +aCk +aDw +aEN +aGf +aHx aaf -aKN -aMt -aNO -aNO -aQU -aSj -aKN -aKN -aWF -aWF -aZW -bbu -bdr -beO +aJS +aLu +aMH +aMH +aPu +aQC +aJS +aJS +aUx +aUx +aXI +dCE +baQ +bci aaf -bhU -bjD -bhY -bnd -boS -bqH -btb -bvo -bwQ -byP -bAE -bCw -bEn -bFR -bHF -bJv -bJv -bMO -bJv -bJv -bRP -bRP -bRP -bJv -bXm -bbw -caa -cbE -ccY -cei -cfU -chB -ciJ -ckc -clk -cmD -coc -coc -cqK -crV -cti -cuI -cvV -cwY -cxT -cxT -cxT -cxT -cCy -cDq -cxT -cxT -cxT -cHu -cIm -cJv -cKr -cLw -cHp -cNA -cye -cPx -cQx -cRr -cRp -cRp -cRp -cUQ -cVA -cVY -cWt -cWN -cXh -cWc -cWc -cWc +bfr +bhg +bfv +bkD +bmx +boq +bqI +bsT +buw +bwr +byd +bzS +bBF +bDg +bEM +bGC +bGC +bJM +bGC +bGC +bOw +bOw +bOw +bGC +bTN +aYZ +bWq +bXP +bZd +cam +cbX +cdC +ceH +cfX +chc +cix +cjT +cjT +cmA +cnI +coU +cqs +crE +csF +ctA +ctA +ctA +ctA +cxv +cyi +ctA +ctA +ctA +cCi +cCW +cEb +cEV +cFV +cCe +cHK +bTs +cPb +cKy +cLo +cLm +cLm +cLm +cOr +cOU +dDG +cPQ +cQn +cQK +cPv +cPv +cPv aaa aaa aaa @@ -103867,129 +104285,129 @@ aaa aaa aaf aaa -abb -acf -aav -acL -adf -adz -adV -aej -aeZ -afR -agL -ahz -aix +abe +acj +aax +acR +adi +adC +adX +ael +afd +afV +agP +ahB +aiy +dBZ ajr -akC -alV -anm -aoA -apR -arn -asD -auc -avl -awo -axn -ayC -azF -azC -aCt -aDE -aFk -aGS -aIv +alT +anl +aou +apJ +arb +asq +ava +axR +awe +axe +ayz +dCj +azE +aCl +aDx +dCo +aGg +aHx aaa -aKN -aMu -aNP -aPv -aQX -aSk -aKN +aJS +aLv +aMI +aOe +aPx +aQD +aJS aaa -aWD -aYm -aZQ -bby -bdr -beO +aUv +aWa +aXC +aYX +baQ +bci aaf -bhV -bjE -blz -bne -boT -bqI -bqK -bvp -bwR -bvp -bAF -bwR -bhY -bFS -bHG -bJy +bfs +bhh +biZ +bkE +bmy +bor +bot +bsU +bux +bsU +bye +bux +bfv +bDh +bEN +bGF aaf aaf -bOG -bQj -bRQ -bTz -bUR -bWh -bXf -bby -baf -cbC -ccV -cej -cfV -chC -ciK -ckd -cll -cmE -cod -cpE -cqL -crW -ctj -cuJ -ckf -cwZ -cxU -cyZ -cAh -cBt -cCz -cDr -cEp -cFw -cGo -cHs -cIn -cJw -cKs -cLx -cMz -cNB -cye -cPy -cQy -cRs -cSm -cTc -cTc -cTc -cVB -cTc -cWu -cWN -cXh -cWc +bLv +bNa +bOx +bQf +bRw +bSI +bTG +aYX +aXR +bXN +bZa +can +cbY +dDo +ceI +cfY +chd +ciy +cjU +clu +cmB +cnJ +coV +cqt +cga +cKJ +ctB +cuw +cvC +cwD +cxw +cyj +czb +cAf +cBc +cCj +cCX +cEc +cEW +cFW +cGT +cHL +bTs +cJB +cKz +cLp +cMe +cMT +cMT +cMT +cOV +cMT +cPR +cQn +cQK +cPv aaa aaf aaa @@ -104124,129 +104542,129 @@ aaf aaf aaf aaf -abb -ace -aav -aav -aaK -aav -aav -aav -afa -afS -aav -ahA -aiy -ajs -akD -alU -ann +abe +wiZ +aax +aax +aaL +aax +aax +aax +afc +afW +aax +adY +aiz +ajt +akB +akA +anm ajx -apS -aro -asE -ans -avm -awm -axk -ayB -azD -aBe -aCu -aDD -aFl -aGT -aIv +apK +arc +asr +anr +auY +awc +axb +ayy +azF +aBa +aCm +aDw +aEO +aGh +aHx aaa aaa -aMu -aKN -aPq -aQY -aKN -aKN +aLv +aJS +aNZ +aPy +aJS +aJS aaa -aWE -aYn -aZX -bbD -bdr -beO +aUw +aWb +aXJ +aZf +baQ +bci aaf -bhW -bjF -blA -blC -boU +bft +bhi +bja +bjc +bmz +bos bqJ -btc -bvp -bwS -byQ -blC -bCx -bhY -bFT -bHH -bCv -bEh -bEh -bOH -bQk -bRR -bTA -bUS -bWi -bXf -bby -baf -cbF -ccW -cek -cfW -chD -ciL -cke -clm -cmF -coe -cpF -cqM -crX -ctk -cuK -ckf -cxa -cxV -cza -cAi -cBu -cCA -cDs -cEq -cFx -cxU -cHv -cIo -cJx -cKt -cLy -cHp -cNC -cye -cPz -cQz -cRt -cSn -cTd -cTZ -cUR -cVC -cTd -cWv -cWN -cXj -cWc +bsU +buy +bws +bjc +bzT +bfv +bDi +bEO +bzR +bBz +bBz +bLw +bNb +bOy +bQg +bRx +chw +bTG +aYX +aXR +bXQ +bZb +cao +cbZ +cdD +ceJ +cfZ +che +ciz +cjV +clv +cmC +cnK +coW +cqu +cga +csH +ctC +cux +cvD +cwE +cxx +cyk +czc +cAg +ctB +cCk +cCY +cEd +cEX +cFX +cCe +cxL +bTs +cJC +cKA +cLq +cMf +cMU +cNN +cOs +cOW +cMU +cPS +cQn +cQM +cPv aaa aaf aaa @@ -104382,7 +104800,7 @@ aaa aaf aaa aaa -acg +ack aaa aaa aaf @@ -104392,118 +104810,118 @@ aaf aaf aaf aaf -ahA -ahA -ahA -ahA -alW -ahA -ahA -apT -arp -asF -ahA -avk -awn -axo -ahv -ahv -ahv +adY +adY +adY +adY +alV +adY +adY +apL +dCh +ass +adY +auW +awd +axf +ahx +ahx +ahx ajm -aDG -aFm -aGU -aIw +aDz +aEP +aGi +aHy aaa aaa -aMv +aLw aaa aaa aaa aaa aaf aaa -aWD -aYo -aZY -bbE -bdr -beO +aUv +aWc +aXK +aZg +baQ +bci aaf -bhX -bjG -blB -blC -boV +bfu +bhj +bjb +bjc +bmA +bot bqK -btd -bvp -bwR -byR -btf -btf -bEo -bFU -bHG -bJz -bLi -bMP -bOG -bQl -bRS -bTB -bUT -bWj -bXn -bYF -cab -cbC -ccV -cel +bsU +bux +bwt +bqM +bqM +bLT +bDj +bEN +bGG +bIi +bJN +bLv +bNc +bOz +bQh +bRy +bSK +bTO +bVe +bWr +bXN +bZa +cap +cca +cdE +ceK cfX -chE -ciM -ckc -cln -cmG -cof -cpG -ckf -crY -ctl -crY -ckf -cxb -cxU -czb -cAj -cxU -cCB -cDt -cEr -cFx -cxU -cHp -cHp -cJy -cKu -cHp -cHp -cND -cye -cPA -cQA -cRu -cSo -cTe -cTe -cTe -cVD -cTe -cWw -cWN -cXh -cWc +chf +ciA +cjW +clw +cga +cnL +coX +cnL +cga +cbC +ctB +cuy +cvE +ctB +cxy +cyl +czd +cAg +ctB +cCe +cCe +cEe +cEY +cCe +cCe +cgN +bTs +cJD +cKB +cLr +cMg +cMV +cMV +cMV +cOX +cMV +cPT +cQn +cQK +cPv aaa aaf aaa @@ -104639,130 +105057,130 @@ aaa aaf aaf aaf -acg +ack aaf aaf aaf aaf aaf aaf -adW -adW -adW -adW -adW -ajt -akE -alX -ano -ahA -apU -arq -asG -ahA -avk -awn -axm -ayz -azG -aBc -aCs -aDD -aFl -aGS -aIv -aJF -aIv -aMw -aIv -aIv -aIv -aIv -aIv -aJF -aWJ -aYp -aZZ -bbF -bdr -beO +aeq +aeq +aeq +aeq +aeq +bgB +akC +alU +ann +adY +apM +ard +ast +adY +auW +awd +axd +ayw +azH +aAY +aCk +aDw +aEO +aGg +aHx +aIH +aHx +aLx +aHx +aHx +aHx +aHx +aHx +aIH +aUB +aWd +aXL +aZh +baQ +bci aaf -bhY -bjH -blC -bnf -boW +bfv +bhk +bjc +dCK +bmB +bou bqL -bte -bvq -bwR -byS -btf -bCy -bEp -bFV -bHI -bJA -bJA -bMQ -bOH -bQm -bRT -bTC -bUU -bOH -bXo -bYG -cac -cbG -ccZ -ccW -cfY -chF -ccV -ckf -ckc -ckf -ckc -ckf -ckf -crZ -ctm -ctm -ckf -cxc -cxW -czc -cAk -cxU -cxU -cDu -cEs -cxU -cGp -cHw -cIp -cJz -cKv -cLz -cye -cNE -cya -cPx -cQB -cRu -cRp -cRp -cRp -cRp -cUP -cRp -cWt -cWN -cXh -cWc -cWc -cWc +bsV +bux +bwu +bqM +bzU +bBH +bDk +bEP +bGH +bGH +bJO +bLw +bTZ +dDf +bQi +bRz +bLw +cMQ +bVf +bWs +bXR +bZe +bZb +ccb +cdF +bZa +cga +cfX +cga +cfX +cga +cga +cnM +coY +coY +cga +csI +ctD +cuz +cvF +ctB +ctB +cym +cze +ctB +cBd +cCl +cCZ +cEf +cEZ +cFY +bTs +cHM +ctH +cPb +cKC +cLr +cLm +cLm +cLm +cLm +cOq +cLm +cPQ +cQn +cQK +cPv +cPv +cPv aaa aaa aaa @@ -104902,125 +105320,125 @@ aaa aaf aaa aaf -adW -adW -afT -agM -ahB -aiz -aju -aju -alY -anp -aoB -apV -arr -asH -aud -avn -awp -axj -ayD -azC -azC -aCt -aDE -aFn -aGV -aIx -aJG -aKO -aMx -aNQ -aIx -aIx -aSl -aKO -aJG -aWK -aYq -baa -bbG -bds -beO +aeq +aeq +afZ +agR +ahE +aiA +akD +akD +dCa +ano +apH +apN +are +asu +atQ +auZ +awf +axa +ayA +azE +azE +aCl +aDx +aEQ +aGj +aHz +aII +aJT +aLy +aMJ +aHz +aHz +aQE +aJT +aII +aUC +aWe +aXM +aZi +baR +bci aaf -bhZ -bjI -blB -blC -boX -blC -btf -bvr -bwT -blC -bAG -bCz -bEq -bFV -bHI -bJB -bJA -bMR -bOH -bQn -bRU -bTD -bUV -bWh -bXp -bYH -cad -cbH -cda -cem -cem -chG -cem -ckg -clo -clo -clo -cpH -cqN -csa -ctn -ctn -cvW -cxd -cxX -czd -cAl -cBv -cCC -cDv -cEt -cFy -cGq -clo -clo -cJA -cKw -cLA -cMA -cNF -cOy -cPB -cQC -cRv -cSp -cTf -cSp -cSp -cVE -cVZ -cWx -cWP -cXk -cXx -cXh -cXx -cYr +bfw +bhl +bjb +bjc +bmC +bjc +bqM +bsW +buz +bjc +byf +bzV +bBI +bDk +bEP +bGI +bGH +bJP +bLw +bNe +bOB +bQj +bRA +bSI +bTP +bVg +bWt +bXS +bZf +caq +caq +cdG +caq +cgb +chg +chg +chg +clx +cmD +cnN +coZ +coZ +crF +csJ +ctE +dDv +cuA +cwF +cxz +cyn +czf +cAh +cBe +chg +chg +cEg +cFa +cFZ +cGU +cHN +cIE +cJE +cKD +cLs +cMh +cMW +cMh +cMh +cOY +cPs +cPU +cQp +cQN +cQY +cQK +kzn +cYJ aaa aaa aaa @@ -105158,125 +105576,125 @@ aaa aaa aaf aaa -adW -adW -afb -afU -afU -ahC -aiA +aeq +aeq +aff +afY +afY +ahD +ahP ajv -akF -alZ -anq -aoC -ant -ars -asI -aue -avo -awq -axp -ayB -azD -aBf -aCu -aDD -aFj -aGW -aIy -aJH -aKP -aGW -aNR -aIy -aQZ -aKP -aTK -aVg -aWL -aYr -bab -bbH -bdt -beO +akE +alW +anp +aow +ans +arf +asv +atR +azb +azq +axg +ayy +azF +aBb +aCm +aDw +aEN +aGk +aHA +aIJ +aJU +aGk +dCr +aHA +aPz +aJU +aRW +aTj +aUD +aWf +aXN +djB +baS +bci aaf -bhV -bjJ -blD -bng -boY -bqM -btg -bvs -bwU -bnf -bAH -bCA -bEr -bFW -bHJ -bJC -bLj -bMS -bOI -bQo -bRS -bTE -bUW -bWh -bXp -bYI -cae -aYr -cdb -cen -cen -chH -ciN -ciN -ciN -ciN -ciN -ciN -ciN -csb -ciN -ciN -cvX -cxe -cxY -cen -cen -cen -cCD -cen -cEu -cFz -cxY -cen -cen -cEu -cKx -cen -cen -cNG -cOz -cPC -cQD -cRw -cSq -cTg -cUa -cUS -cVF -cWa -cRp -cWN -cXl -cWc -cWc -cWc +bfs +bhm +bjd +bkF +bmD +bov +bqN +bsX +buA +dCK +byg +bzW +bBJ +bDl +bEQ +bGJ +bIj +bJQ +bLx +bNf +bOz +bQk +bRB +bSI +bTP +bVh +bWu +aWf +bZg +car +car +cdH +ceL +ceL +ceL +ceL +ceL +ceL +ceL +cnO +ceL +ceL +crG +csK +ctF +car +car +car +cxA +car +czg +cAi +ctF +car +car +czg +cFb +car +car +cHO +cIF +cJF +cKE +cLt +cMi +cMX +cNO +cOt +cOZ +cPt +cLm +cQn +cQO +cPv +cPv +cPv aaa aaa aaa @@ -105415,125 +105833,125 @@ aaa aaa aaf aaa -adW -aeo -afc -afV -agN -ahD -aiB +aeq +aes +afh +agb +agT +ahG +aiC ajw -akG -ama +akF +alZ +anq +aoA +aoy +arg +asw anr -aoD -apW -art -asJ -ans -avk -awr -axq -ahv -ahv -ahv +auW +awg +axh +ahx +ahx +ahx ajm -aDH -aFo -aGX -aIz -aJI -aKQ -aJI -aIz -aIz -aRa -aKQ -aIz -aIz -aWM -aYs -bac -bbI -bdu -beO +aDA +aER +aGl +aHB +aIK +aJV +aIK +aHB +aHB +aPA +aJV +aHB +aHB +aUE +aWg +aXO +aZk +baT +bci aaf -bhX -bjK -blB -blC -boW -bqN -btf -bvt -bwV -bwY -bAI -bCB -bEs -bFX -bHK -bJD -bJA -bMQ -bOH -bQp -bRV -bTF -bUX -bWh -bXq -bYJ -caf -cbI -cdc -ceo -ceo -chI -ceo -ckh -clp -clp -clp -cpI -cqO -csc -cto -cto -cvY -cxf -cxZ -ckh -cAm -clp -cCE -cDw -cEv -cFA -cxZ -cHx -cto -cJB -cKy -clp -clp -cAm -cOA -cPD -cQE -cRx -cSr -cTh -cTc -cUT -cVG -cWb -cWy -cWQ -cXm -cXx -cXQ -cXx +bfu +bhn +bjb +bjc +bmB +bow +bqM +bsY +buB +buE +byh +bzX +bBK +bDm +bER +bGK +bGH +bJO +bLw +bNg +bOC +bQl +bRC +bSI +bTQ +bVi +bWv +bXT +bZh +cas +cas +cdI +cas +cgc +chh +chh +chh +cly +cmE +cnP +cpa +cpa +crH +csL +ctG +cgc +cvG +chh +cxB +cyo +czh +cAj +ctG +cCm +cpa +cEh +cFc +chh +chh +cvG +cIG +cJG +cKF +cLu +cMj +cMY +cMT +cOu +cPa +cPu +cPV +cQq +cQP +cQY +cRt +kzn aaa aaa aaa @@ -105671,126 +106089,126 @@ aaa aaa aaa aaf -adA -adW -aep -afd -afW -agO -ahE -adW +adD +aeq +aer +afg +aga +agS +ahF +aeq ajx -akH -amb -ans -ahA -ahA -aru -ans -ahA -avp -aws -axr -ayE -azH -aBg -aCv -aDI -aFp -aGY -aIA -aIB -aKR -aIB -aIB -aIB -aIB -aSm -aTL -aVh -aWN -aYt -bad -bbJ -bdu -beO +akG +ama +anr +adY +adY +dhv +anr +adY +avb +awh +axi +ayB +azI +aBc +aCn +aDB +aES +aGm +aHC +aHD +aJW +aHD +aHD +aHD +aHD +aQF +aRX +aTk +aUF +aWh +aXP +aZl +baT +bci aaf -bhY -bjL -blC -blC -boW +bfv +bho +bjc +bjc +bmB +box bqO -bth -bvu -bvp -byT -bAJ -bCC -bEt -bFV -bHI -bJA -bJA -bMR -bOH -bQm -bRW -bTA -bUY -bOH -bXp -bYK -cag -cbJ -cdd -cdf -cfZ -cfZ -cde -cki -ckj -cki -ckj -cki -cki -csd -ctp -cuL -cki -cxg -cya -cye -cAn -cAn -cCF -cDx -cAn -cFB -cGr -cAn -cuL -cJC -cHB -cHB -cHB -cHB -cOB -cHB -cHB -cRy -cPx -cTi -cUb -cUU -cPx -cWc -cPx -cWc -cPx -cWc -cWc -cWc +bsZ +bsU +bwv +byi +bzY +bBL +bDk +bEP +bGH +bGH +bJP +bLw +bTZ +dDg +bQg +bRD +bLw +bTP +bVj +bWw +bXU +bZi +bZk +ccc +ccc +bZj +cgd +cge +cgd +cge +cgd +cgd +cnQ +cpb +cqv +cgd +csM +ctH +bTs +cvH +cvH +cxC +cyp +cvH +cAk +cBf +cvH +cqv +cEi +cCq +cCq +cCq +cCq +cIH +cCq +cCq +cLv +cPb +cMZ +cNP +cOv +cPb +cPv +cPb +cPv +cPb +cPv +cPv +cPv aaa aaa aaa @@ -105929,118 +106347,118 @@ aaa aaa aaf aaa -adW aeq -afd -afX -agP -ahF -adW +aex +afg +agd +agU +ahH +aeq ajy -akI -amc -ant -aoE -apX +akH +amb +ans +amf +dCf ajz ajz -auf -avk -awt -axs -aip -azI -aBh -aCw -aDJ -aFq -aGZ -aIB -aJJ -aKS -aMy -aNS -aPw -aRb -aSn -aTM -aVi -aIB -aYu -bae -bbK -bdu -beO +atS +auW +awi +axj +aiq +azJ +aBd +aCo +aDC +aET +aGn +aHD +aIL +aJX +aLz +aMK +aOf +aPB +aQG +aRY +aTl +aHD +aWi +aXQ +aZm +baT +bci aaf -bhZ -bjM -blB -bnf -boZ +bfw +bhp +bjb +dCK +bmE +boy bqP -bti -bvp -bvp -byU -bAK -btf -bEo -bFY -bHL -bJE -bLk -bMT -bOG -bQq -bRX -bTG -bUZ -bWk -bXr -bYL -cah -cbK -cde -cep -cga -cga -ciO -cki -clq -cmH -cog -cpJ -cki -cse -ctq -cuM -cki -cxh -cyb -cze -cAo -cBw -cCG -cDy -cEw -cFC -cGs -cHy -cIq -cJD -cHB -cLB -cMB -cNH -cOC -cPE -cHB -cRz -cPx -cTj -cUc -cUV -cPx +bsU +bsU +bww +byj +bqM +bLT +bDn +bES +bGL +bIk +bJR +bLv +bNi +bOD +bQm +bRE +bSM +bTR +bVk +bWx +bXV +bZj +cat +ccd +ccd +ceN +cgd +chi +ciB +cjX +clz +cgd +cnR +cpc +cqw +cgd +csN +cLD +cuB +cvI +cwG +cxD +cyq +czi +cAl +cBg +cCn +cDa +cEj +cCq +cGa +cGV +cHP +cII +cJH +cCq +cLw +cPb +cNa +cNQ +cOw +cPb aaf aaa aaa @@ -106170,7 +106588,7 @@ aaa aaa aaa aaa -aar +aav aaa aaa aaa @@ -106178,7 +106596,7 @@ aaa aaa aaa aaa -aar +aav aaa aaa aaa @@ -106186,118 +106604,118 @@ aaa aaa aaf aaa -adW -adW -afe -afY -agQ -afY -aiC +aeq +aeq +afX +agc +dBX +agc +ajs ajz -akJ -amd -anu -aoF -apY -arv -asK -aug -avq -awu -axt -ayF -azJ -aBi -aCx -aDK -aFr -aHa -aIB -aJK -aJP -aJP -aNT -aPx -aRb -aSo -aSo -aJR -aIB -aYv -baf -bby -bdu -beO +akI +amc +ant +ame +apO +ari +asx +aiB +avc +awj +axk +ayC +azK +aBe +aCp +aDD +aEU +aGo +aHD +aIM +aIR +aIR +aML +aOg +aPB +aQH +aQH +aIT +aHD +aWj +aXR +aYX +baT +bci aaf -bhW -bjN -blE -blC -boU -bqJ -btj -bvp -bwW -byV -bAL -bCD -bhY -bFZ -bHM -bCv -bLl -bLl -bOH -bQr -bRY -bTH -bVa -bWi -bXs -bby -baf -cbL -cdf -ceq -cgb -cga -ciP -cki -clr -cmI -coh -cpK -cqP -csf -ctr -cuN -cki -cxi -cyc -czf -cAn -cBx -cCH -cDz -cBx -cFD -cGs -cHz -cIr -cJE -cKz -cLC -cLC -cNI -cOD -cPF -cHB -cRA -cPx -cTk -cRp -cUW -cVH +bft +bhq +bje +bjc +bmz +bos +bqQ +bsU +buC +bwx +byk +bzZ +bfv +bDo +bET +bzR +bIl +bIl +bLw +bNj +bOE +bQn +bRF +chw +bTS +aYX +aXR +bXW +bZk +cau +cce +ccd +qBh +cgd +chj +ciC +cjY +clA +cmF +cnS +cpd +cqx +cgd +cLh +ctJ +cuC +cvH +cwH +cxE +cyr +cwH +cAm +cBg +cCo +cDb +cEk +cFd +cGb +cGb +cHQ +cIJ +cYc +cCq +cLx +cPb +cNb +cLm +cOx +cPc aaf aaf aaf @@ -106415,7 +106833,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -106444,117 +106862,117 @@ aaa aaf aaa aaf -adW -adW -afZ -agR -ahG -adW +aeq +aeq +agQ +ahC +ahI +aeq ajA -akK -amd -anv -aoG -apZ -arw -asL -ahz -avr -awv -axu -ahv -ahv -ahv +akJ +amc +anu +aoz +apQ +arj +asz +ahB +avd +awk +axl +ahx +ahx +ahx ajm -aDL -aFs -aHb -aIC -aJL -aKT -aMz -aNU -aPy -aRb -aSo -aSo -aVj -aIB -aYw -bag -bby -bdu -beO +aDE +aEV +aGp +aHE +aIN +aJY +aLA +aMM +aOh +aPB +aQH +aQH +aTm +aHD +aWk +aXS +aYX +baT +bci aaf -bhW -bjO -blF -bnh -bpa -bqQ -btk -bvp -bvp -bvp -bAM -bvp -bhY -bGa -bHN -bJy +bft +bhr +bjf +bkG +bmF +boz +bqR +bsU +bsU +bsU +byl +bsU +bfv +bDp +bEU +bGF aaf aaf -bOG -bQs -bRZ -bTI -bVb -bWh -bXs -bby -baf -cbK -cde -cer -cgc -chJ -ciQ -cki -cls -cmJ -coi -cpL -cqQ -csg -cts -cuO -cki -cxj -cyd -czg +bLv +bNk +bOF +dip +bRG +bSI +bTS +aYX +aXR +bXV +bZj +cav +ccf +dDp +ceO +cgd +chk +ciD +cjZ +clB +cmG +cnT +cpe +cqy +cgd +csO +diL +cuD +cvH +cwI +cxF +dDz +czj cAn -cBy -cCI -cDA -cEx -cFE -cGt -cHA -cIs -cJF -cKA -cLD -cKC -cNJ -cOE -cPG -cHB -cRB -cPx -cTl -cUd -cUX -cVI +cBh +cCp +cDc +cEl +cFe +cGc +cFg +cHR +cIK +cJJ +cCq +cgM +cPb +cNc +cNR +cOy +cPd aaa aaa aaf @@ -106702,116 +107120,116 @@ aaf aaf aaf aaf -adW -adW -adW -adW -adW -ahA -akL -ame -ahz -aoD -ahz -arx -asM -ahz -avs -aww -axv -aip -azK -aBj +aeq +aeq +aeq +aeq +aeq +adY +akK +alX +ahB +aoA +ahB +ark +asA +ahB +ave +awl +axm +aiq +azL +aBf ajm -aDM -aFt -aHc -aIC -aJM -aKU -aJP -aJP -aPz -aRb -aSo -aSo -aVk -aIB -aIB -bag -bby -bdu -beO +aDF +aEW +aGq +aHE +aIO +aJZ +aIR +aIR +aOi +aPB +aQH +aQH +aTn +aHD +aHD +aXS +aYX +baT +bci aaf -bia -bjP -bhY -bni -bpb -bqR -btl -bvv -bwX -byW -bAN -bCE -bEu -bGb -bHO -bJF -bJF -bMU -bJF -bQt -bQt -bQt -bQt -bJF -bXt -bby -cai -cbM -cdg -ces +bfx +bhs +bfv +bkH +bmG +boA +bqS +bta +buD +bwy +bym +bAa +bBM +bDq +bEV +bGM +bGM +bJS +bGM +bNl +bNl +bNl +bNl +bGM +bTT +aYX +bWy +bXX +bZl +caw +ccg +cdJ +ceQ +cge +chk +ciE +cka +clC +cmH +cnU +cpf +cqz cgd -chK -ciR -ckj -cls -cmK -coj -cpM -cqR -csh -ctt -cuP -cki -cxk -cye -czh -cAn -cBz -cCJ -cDB -cEy -cFF -cGu -cHy -cIt -cJG -cKB -cKC -cKD -cNJ -cOF -cPH -cHB -cRB -cPx -cTm -cUe -cUY -cPx +csP +bTs +cuE +cvH +cwJ +cxG +cys +czk +cAo +cBi +cCn +cDd +cEm +cFf +cFg +cFh +cHR +cIL +cJK +cCq +cgM +cPb +cNd +cNS +cOz +cPb aaa aaa aaa @@ -106965,110 +107383,110 @@ aaf aaf aiD ajB -akM -amf -anw -aoH -aqa -ary -asN +akL +amd +anv +aoB +apR +arl +asy ajD -avt -awn -axw -ayG -azL -aBk -aCy -aDN -aFu -aHd -aIC -aJN -aKV -aMA -aNV -aPA -aRc -aJR -aTN -aJR -aWO -aIB -bag -bby -bdu -beO +avf +awd +axn +ayD +azM +aBg +dBH +aDG +aEX +aGr +aHE +aIP +aKa +aLB +aMN +aOj +aPC +aIT +aRZ +aIT +aUG +aHD +aXS +aYX +baT +bci aaf aaf aaf -bly -bnj -bpc -bqS -btm -bvw -bwY -byX -bAO -bCF -bEm -bGc -bHP -bJG -bLm -bMV -bOJ -bQu -bSa -bTJ -bVc -bJF -bXu -bYM -caj -cbN -cdh -cet -cge -chL -ciS -ckk -clt -cmL -cok -cpN -cqS -csi -ctu -cuQ -cvZ -cxl -cyf -cyf -cyf -cyf -cyf -cyf -cyf -cyf -cyf -cHB -cIu -cJG -cKC -cKC -cMC -cNJ -cOG -cPI -cQF -cRC -cPx -cPx -cPx -cPx -cPx +biY +bkI +bmH +boB +bqT +btb +buE +bwz +byn +bAb +bBE +bDr +bEW +bGN +bIm +bJT +bLy +bNm +bOG +bQp +bRH +bGM +bTU +bVl +bWz +bXY +bZm +cax +cch +cdK +uRM +cgf +rzX +ciF +ckb +clD +cmI +cnV +cpg +cqA +crI +csQ +ctL +ctL +ctL +ctL +ctL +ctL +ctL +ctL +ctL +cCq +cDe +cEm +cFg +cFg +dDE +cHR +cIM +cJL +cKG +cLy +cPb +cPb +cPb +cPb +cPb aaa aaa aaa @@ -107215,119 +107633,119 @@ aaa aaf aaf aaf -adX -adX -aga -agS -adX -adX +adZ +adZ +age +agV +adZ +adZ ajC -akN -amg -anx -anx -aqb -arz -asO -auh -avm -awx -axx -ayH -azM -aBl -aCz -aDO -aFv -aHe -aIC -aJO -aKW -aMB -aJP -aPz -aRb -aSo -aSo -aVl -aWP -aVh -bah -bbL -bdu -beO +akM +alY +cZR +cZR +rQK +arm +asC +atT +auY +awm +axo +ayE +azN +aBh +aCq +aDH +aEY +aGs +aHE +aIQ +aKb +dCq +aIR +aOi +aPB +aQH +aQH +dCz +aUH +aTk +aXT +aZn +baT +bci aaf aaf aaf -bhY -bhY -bhY -bqT -btn -bhY -beP -beP -bAP -beP -bEv -bGd -bHQ -bJH -bLn -bMW -bOK -bOK -bOK -bTK -bVd -bJF -bXv -bYN -cak -cbK -cde -ceu -cgf -chM -ciT -ckl -clu -cmM -col -cpO -cqT -csj -ctv -cuR -cwa -cxm -cyf -czi +bfv +bfv +bfv +boC +bqU +bfv +bcj +bcj +byo +bcj +bBN +bDs +bEX +bGO +bIn +bJU +bLz +bLz +bLz +bQq +bRI +bGM +bTV +bVm +bWA +bXV +bZj +cay +cci +cdL +ceR +izu +chm +ciG +ckc +clE +cmJ +cnW +cph +cqB +cJm +csR +ctL +cuF +cvJ +cwK +cxH +cyt +czl cAp -cBA -cCK -cDC -cEz -cFG -cGv -cHB -cIv -cJG -cKD -cLE -cMD -cNK -cOH -cPJ -cHB -cRB -cSs -cTn -cUf -cUZ -cUf -acg -acg +cBj +cCq +cDf +cEm +cFh +cGd +cGW +cHS +cIN +cJM +cCq +cgM +gNe +cwc +cNe +cNT +pSX +ack +ack aaf aaf aaa @@ -107471,118 +107889,118 @@ aaa aaf aaf aaa -adX -adX -aff -agb -agT -ahH -adX +adZ +adZ +afi +agf +agW +ahJ +adZ ajD -akO -amh -any -aoI -aqc -arA -asP -aui -avu -awy -axy -ayI -azN -aBm +akN +amg +anw +aoC +apS +arn +asD +atU +avg +awn +axp +dBF +azO +aBi ajm ajm ajm ajm -aIC -aJP -aKX -aMC -aNW +aHE +aIR +aKc +aLC +aMO +aOk aPB -aRb -aSo -aSo -aVm -aWQ -aYx -bai -bbM -bdv -beP -beP -beP -beP -beP -bnk -beP -beP -beP -beP -bwZ -byY -bid -bCG -beP -bFU -bHR -bJI -bLo -bMX -bOL -bQv -bSb -bTL -bVe -bJF -bXw -bbu -cak -cbK -cdf -cev -cgf -chN -ciU -ckm -cki -cki -com -cki -cki -csk -ctw -csk -cki -cxn -cyg -czj +aQH +aQH +aTo +aUI +aWl +aXU +aZo +baU +bcj +bcj +bcj +bcj +bcj +bkJ +bcj +bcj +bcj +bcj +buF +bwA +bfA +bAc +bcj +bDj +bEY +bGP +bIo +bJV +bLA +bNn +bOH +bQr +bRJ +bGM +bTW +dCE +bWA +bXV +bZk +caz +cci +cdM +ceS +cgg +cgd +cgd +ckd +cgd +cgd +cnX +cIm +cnX +cgd +csS +ctM +cuG +cvK +cuG +cxH +cyu +czm cAq -czj -cCK -cDD -cEA -cFH -cGw -cHB -cIw -cJH -cKE -cLF -cME -cNL -cKD -cKD -cQG -cRD -cSt -cTo -cye -cye -cye +cBk +cCq +cDg +cEn +cFi +cGe +cGX +cHT +cFh +cFh +cKH +cLz +wFH +cMk +bTs +bTs +bTs aaa aaa aaa @@ -107728,116 +108146,116 @@ aaa aaa aaf aaa -adX -aer -afg -agc -agU -ahI +adZ +aet +afj +agg +agX +ahK aiE ajE -akP -ami -anz -aoJ -aqd -arB -asQ -auj -avv -awz -axz -ayJ -azO -aBn -aCA -avy -avy -avy -aIB -aJQ -aKY -aJP -aNX -aPC -aRd -aSp -aSp -aVn -aJR -aVh -bag -bbu -bdw -beP -bgo -bib -bjQ -blG -bnl -blG -bqU -bto -bvx -bxa -byZ -bAQ -bCH -bAP -bFU -bHS -bJF -bLp -bMY -bOM -bQw -bSc -bTM -bVf -bJF -bXx -bby -cal -cbO -cde -cew -cgg -chO -ciV -ckn -clv -cmN -con -cpP -cqU -csl -ctx -cuS -cku -cxo -cyf -czk -czj -cBB -cCL -cDD -cEB -cFI -cGx -cHB -cIx -cJI -cKF -cLG -cMF -cNM -cOI -cPK -cHB -cND -cSu -cTp -cye +akO +dCb +amh +aoD +apT +aro +asE +atV +avh +awo +axq +dBG +azP +aBj +aCr +avk +avk +avk +aHD +aIS +aKd +aIR +aMP +aOl +aPD +aSa +aSa +aTp +aIT +aTk +aXS +dCE +baV +bcj +bdH +bfy +bht +bjg +bkK +bjg +boD +bqV +btc +buG +bwB +byp +bAd +byo +bDj +bEZ +bGM +bIp +bJW +bLB +bNo +bOI +bQs +bRK +bGM +bTX +aYX +bWB +bXZ +bZj +caA +ccj +cdN +ceT +cgh +cAM +ciH +cke +clF +dbH +cnY +cpj +cqC +cgo +cLB +ctL +cuH +cuG +cwL +cxI +cyu +czn +cAr +cBl +cCq +cQD +cEo +cFj +cGf +cGY +cHU +cIO +cJN +cCq +cgN +cMl +wOE +bTs aaf aaf aaf @@ -107985,116 +108403,116 @@ aaa aaa aaf aaa -adY -aes -afh -agd -agV -ahJ +aea +aeu +afk +agh +agY +ahL aiF ajF -akQ -amj -anA +akP ami -aqe -arC -asR -auh -avk -awA -axA -ayK -ayK -ayK -ayK -ayO -ayO -aHf -aID -aJR -aKZ -aJP -aJP -aPD -aRb -aSq -aJR -aJR -aWR -aIB -bag -bby -bdx -beQ -bgp -bic -bjR -blG -bnm -blG -bqV -btp -bvy -bxb -bza -bAR -bid -beP -bGe -bHT -bJF -bJF -bMZ -bON -bJF -bSd -bTN -bON -bJF -bXy -bbx -cam -bWp -cdi -cex -cgg -chP -ciW -cko -clw -cmO -coo -cpQ -cqV -csm -cty -cuT -cku -cxp -cyf -cyf -cAr -cyf -cyf -cyf -cAr -cFJ -cGy -cHB -cIy -cIy -cIy -cIy -cMG -cNN -cOJ -cHB -cHB -cRE -cye -cye -cye +anx +dCb +apU +arp +asF +atT +auW +awp +axr +ayF +ayF +ayF +ayF +ayJ +ayJ +aGt +aHF +aIT +aKe +aIR +aIR +aOm +aPB +aQJ +aIT +aIT +aUJ +aHD +aXS +aYX +baW +bck +bdI +bfz +bhu +bjg +bkL +bjg +boE +bqW +btd +buH +bwC +byq +bfA +bcj +bDu +bFa +bGM +bGM +bJX +bLC +bGM +bOJ +bQt +bLC +bGM +bTY +aZa +bWC +bSS +bZn +caB +ccj +cdO +ceU +cgi +cDh +ciI +ckf +clG +dbI +cnZ +cpk +cqD +cgo +csU +ctL +ctL +cvL +ctL +ctL +ctL +cvL +cAs +cBm +cCq +cDi +cDi +cDi +cDi +cGZ +cHV +cIP +cCq +cCq +cLA +bTs +bTs +bTs aaf aaa aaa @@ -108225,7 +108643,7 @@ aaa aaa aaa aaa -aar +aav aaa aaa aaa @@ -108242,122 +108660,122 @@ aaa aaa aaf aaf -adZ -aet -afi -age -agW -ahK +aeb +aev +afl +agi +agZ +ahM aiG ajG -akR -amk -anB -aoK -aqf -arD -asS +akQ +amj +any +aoE +apV +arq +asG ajD -avk -awA -axB -ayK -azP -aBo -aCB -aDP -ayO -ayO -aIB -aIB -aIB -aIB -aNY -aIB -aIB -aIB -aTL -aVh -aIB -aIB -baj -bbx -bdy -beP -bgq -bid -bjS -blG -bnn -blG -bqW -btq -bvz -bxc -bzb -bAS -bCI -beP -bFU -bHU -bJJ -bJF -bNa -bOO -bQx -bSe -bTO -bVg -bWl -bXh -bby -cal -aYg -cdj -cdj -cgh -chQ -cdj -cdj -clx -cmP -cop -cpR -cdi -csn -ctz -cuU -cwb -cxq -cyh -czl -cAs -cBC -ces -cDE -cEC -cFK -cGz -cHC -cIz -ces -cKG -cLH -cMH -cNO -cOK -cPL -cQH -cRF -cSv -cTq -cUg -cUi -cUi -cUi -cUi -cUi -cUi +auW +awp +axs +ayF +azQ +aBk +aCs +aDI +ayJ +ayJ +aHD +aHD +aHD +aHD +aMQ +aHD +aHD +aHD +aRX +aTk +aHD +aHD +aXV +aZa +baX +bcj +bdJ +bfA +bhv +bjg +bkM +bjg +boF +bqX +bte +dCP +bwD +byr +bAe +bcj +bDj +bFb +bGQ +bGM +bJY +bLD +bNp +bOK +bQu +bRL +bSO +bTI +aYX +bWB +aVU +bZo +bZo +cck +cdP +bZo +bZo +chp +ciJ +ckg +clH +bZn +coa +cpl +cqE +crK +csV +ctN +cuI +cvM +cwM +caw +cyv +czo +cAt +cBn +cCr +cDj +caw +cFk +cGg +cHa +cHW +cIQ +cJO +cKI +cQr +cQR +cRa +cSd +cRe +cRe +cRe +cRe +cRe +cRe aaa aaa aaa @@ -108490,7 +108908,7 @@ aaa aaa aaa aaa -aar +aav aaa aaa aaa @@ -108499,122 +108917,122 @@ aaa aaa aaf aaa -aea -aeu -afj -agf -agX -ahL +aec +aew +afm +agj +aha +ahN aiH ajH -akS -aml -anC -aoL -aqg -arC -asT -auk -avk -awB -axz -ayL -azQ -aBp -aCC -aDQ -aFw -aHg -aIE -aJS -aLa -aMD -aNZ -aPE -aIE -aSr -aML -aVo -aML -aTR -bag -bbN -bdu -beP -bgr -bie -bjT -blH -bno -bpd -bqX -btr -bvA -bxd -bzc -bAT -bCJ -beP -bGf -bHV -bJK -bJF -bNb -bOP -bQy -bSf -bTP -bVg -bWl -bXh -bby -cal -aYi -cdj -cey -cgi -chR -ciX -ckp -cly -cmQ -coq -cpS -cdi -cso -ctA -cuV -cwc -cxr -cyi -czm -cAt -cBD -cCM -cDF -cED -cFL -cGA -cwc -cCM -cBD -cKH -cLI -cMI -cNP -cOL -cPM -cQI -cRG -cSw -cTr -cUh -cVa -cVJ -cVa -cVa -cWR -cUi +akR +amk +bnh +aoF +apW +arp +asH +atW +auW +awq +axq +ayG +azR +aBl +aCt +aDJ +aEZ +aGu +aHG +aIU +aKf +aLD +aMR +aOn +aHG +aQK +aLK +dCA +aLK +aSe +aXS +aZp +baT +bcj +bdK +bfB +bhw +bjh +bkN +bmI +boG +bqY +btf +buI +bwE +bys +bAf +bcj +bDv +bFc +bGR +bGM +bJZ +bLE +bNq +bOL +bQv +bRL +bSO +bTI +aYX +bWB +aVW +bZo +caC +ccl +cdQ +ceV +cgj +chq +ciK +ckh +clI +bZn +cob +cpm +cqF +crL +csW +ctO +cuJ +cvN +dDy +cwN +cyw +czp +cAu +cBo +crL +cwN +dDy +cFl +cGh +cHb +cHX +cIR +cJP +cPX +cQt +cQZ +cRc +cRf +cYT +cRg +cYT +cYT +djg +cRe aaa aaa aaa @@ -108756,122 +109174,122 @@ aaa aaf aaf aaa -adX -aev -afk -agg -agU -ahM +adZ +afe +afn +agk +agX +ahO aiI ajI -akT -amm -anD -aoM -aqh -arE -asU -aul -avm -awC -axC -ayM -azR -aBq -aCD -aDR -aFx -aHh -aIE -aJT -aLb -aME -aOa -aPF -aRe -aSs -aTO -aVp -aWS -aYy -bak -bbO -bdz -beP -bgs -bid -bjU -blI -bnp -blG -bqY -bts -bvB -bxe -bzd -bAU -bCK -beQ -bGg -bHW -bJL -bJF -bNc -bOQ -bQz -bSg -bTQ -bVh -bWl -bXh -bby -cal -aYi -cdj -cez -cgj -chS -ciY -ckq -clx -cku -cku -cku -cku -csp -ctB -cuW -cwd -cxs -cyj -czn -cAu -cBE -cCN -cDG -cEE -cFM -cGB -cHD -cyj -cJJ -cKI -cLJ -cMJ -cNQ -cOM -cPN -cku -cRH -cSx -cTs -cUi -cUi -cUi -cUi -cUi -cWS -cUi +akS +aml +anA +aoG +bni +arr +asI +atX +auY +awr +axt +ayH +azS +aBm +aCu +aDK +aFa +aGv +aHG +aIV +aKg +aLE +aMS +aOo +aPE +aQL +aSb +aTq +aUK +aWm +aXW +aZq +baY +bcj +bdL +bfA +bhx +bji +bkO +bjg +boH +bqZ +btg +buJ +bwF +byt +bAg +bck +bDw +bFd +bGS +bGM +bKa +bLF +bNr +bOM +bQw +bRM +bSO +bTI +aYX +bWB +aVW +bZo +caD +ccm +cdR +ceW +cgk +chp +cgo +cgo +cgo +cgo +coc +cpn +cqG +crM +csX +ctP +cuK +cvO +cwO +cxJ +cyx +czq +cAv +cBp +cCs +ctP +cEp +cFm +cGi +cHc +cHY +cIS +cJQ +cgo +cQs +cQS +cRb +cRe +cRe +cRe +cRe +cRe +cZa +cRe aaa aaa aaa @@ -109013,122 +109431,122 @@ aaa aaa aaf aaa -adX -adX -afl -agh -agY -ahN -adX +adZ +adZ +afo +agl +ahb +auX +adZ ajD -akU -amn -anE -aoN -aqi -arC -asV +akT +amm +anB +aoH +apY +arp +asJ ajD -avk -awD -axD -ayN -azS -aBr -aCE -aDS -ayO -ayO -aIE -aJU -aLc -aLc -aOb -aPG -aRf -aSt -aTP -aVq -aPO -aYz -bal -bby -bdv -beP -bgt -bif -bjV -blJ -bnp -blG -blG -beP -beP -beP -bze -beP -beP -beP -bFU -bHP -bJF -bJF -bJF -bJF -bJF -bJF -bTR -bJF -bJG -bXi -bby -can -cbP -cdj -ceA -cgk -chT -ciZ -ckr -cdj -cmR -cor -cpT -cqW -cga -ctC -cuX -cwe -cxt -cxt -czo -cAv -cwh -cwh -cDH -cEF -cFN -cGC -cDH -cDT -cDT -cHV -cDT -cMK -cNR -cON -cON -cNY -cRI -cky -cky +auW +aws +axu +ayI +azT +aBn +aCv +aDL +ayJ +ayJ +aHG +aIW +aKh +aKh +aMT +aOp +aPF +aQM +aSc +aTr +aOx +aWn +aXX +aYX +baU +bcj +bdM +bfC +bhy +bjj +bkO +bjg +bjg +bcj +bcj +bcj +bwG +bcj +bcj +bcj +bDj +bEW +bGM +bGM +bGM +bGM +bGM +bGM +bQx +bGM +bGN +bTJ +aYX +bWD +bYa +bZo +caE +ccn +cdS +ceX +cgl +bZo +dwv +cki +clJ +cmL +ccd +cpo +cqH +crN +csY +csY +cuL +cvP +crQ +crQ +cyy +czr +cAw +cBq +cyy +cyK +cyK +cAP +cyK +cHd +cHZ +cIT +cIT +cIg +dAw +dvY +dvY aaa aaf aaa aaa -cUi -cWS -cUi +cRe +cZa +cRe aaa aaa aaa @@ -109271,121 +109689,121 @@ aaa aaf aaa aaa -adX -adX -agi -agS -adX -adX +adZ +adZ +agm +agV +adZ +adZ ajJ -akV -amo -anF -anF -anF -arF -asW -aum -avw -awE -axE -ayK -azT -aBs -aCF -aDT -aFy -aHi -aIE -aJV -aLd -aMF -aOc -aPH -aRg -aSu -aTQ -aVr -aWT -aTR -bag -bby -bdu -beP -bgu -big -bjW -blK -bnq -blG -bqZ -beP -bvC -bxf -bzf -bAV -bCL -bEw -bGh -bHX -bJM -bLq -bNd -bOR -bQA -bSh -bTS -bVi -bWm -bXz -bYO -cao -bWp -cdj -cdj -cdj -cdj -cdj -cdj -cdj -cmS -cos -cpU -cku -csq -ctD -cuY -cwf -cxu -cyk -czp -cAw -cBF -cwh -cDI -cEG -cFO -cGD -cHE -cDT -cJK -cJK -cJK -cML -cNS -cOO -cPO -cNY -cRJ -cmR -cky +akU +amn +dap +dap +dap +ars +asK +atY +avi +awt +axv +ayF +azU +aBo +aCw +aDM +aFb +aGw +aHG +aIX +aKi +aLF +aMU +aOq +aPG +aQN +aSd +aTs +aUL +aSe +aXS +aYX +baT +bcj +bdN +bfD +bhz +bjk +bkP +bjg +boI +bcj +bth +buK +bwH +byu +bAh +bBO +bDx +bFe +bGT +bIq +bKb +bLG +bNs +bON +bQy +bRN +bSP +bUa +bVn +bWE +bSS +bZo +bZo +bZo +bZo +bZo +bZo +bZo +ciL +ckj +dwL +cgo +cod +cpp +cqI +crO +csZ +ctQ +cuM +cvQ +cwP +crQ +cyz +czs +cAx +cFr +cCt +cyK +cEq +cEq +cEq +cHe +cIa +cIU +cJR +cIg +dAx +dwv +dvY aaa aaf aaa aaa -cUi -cWS -cUi +cRe +cZa +cRe aaf aaa aaa @@ -109535,119 +109953,119 @@ aaf aaf aiD ajK -akW -amp -anG -aoO -aqj -arG -asX -aqk +akV +amo +anC +aoI +apZ +art +asL +aqa ajm -awF -axF -ayK -azU -aBt -aCG -aDU -ayO -aHj -aIF -aJW -aLe -aMG -aOd -aPI -aIE -aSv -aPL -aVs -aWU -aYA -bag -bby -bdu -beP -beP -beP -beP -beP -beP -beP -beP -beP -bvD -beM -beM -beM -beM -bEx -bGi -bHY -bJN -beM -beM -beM -beM -beM -beM -beM -beM -bXs -bby -cap -cbQ -cdk -ceB -cgl -chU -cja -cks -clz -cmT -cot -cpV -cqX -csr -ctE -cuZ -cwg -cxv -cyl -cxv -cAx -cBG -cwh -cDJ -cEH -cFP -cGE -cHE -cDT -cJL -cJL -cJL -cML -cNT -cOP -cPP -cNY -cyw -cSy -cky +awu +axw +ayF +azV +aBp +aCx +aDN +ayJ +aGx +aHH +aIY +aKj +aLG +aMV +aOr +aHG +aQO +aOu +aTt +aUM +aWo +aXS +aYX +baT +bcj +bcj +bcj +bcj +bcj +bcj +bcj +bcj +bcj +bti +bcg +bcg +bcg +bcg +bBP +bDy +bFf +bGU +bcg +bcg +bcg +bcg +bcg +bcg +bcg +bcg +bTS +aYX +bWF +bYb +cmZ +diA +crJ +dDq +ceY +cgm +chr +ciM +ckk +clL +cmM +coe +cpq +cqJ +crP +cuN +ctR +cuN +cvR +cwQ +crQ +cyA +czt +cAy +cBs +cCt +cyK +cEr +cEr +cEr +cHe +cIb +cIV +cJS +cIg +dxQ +dzc +dvY aaf aaf aaf aaa -cUi -cWS -cUi -cXy -cXz -cXz -cXz -cXz +cRe +cZa +cRe +cRu +cRi +cRi +cRi +cRi aaf aaa aaf @@ -109674,8 +110092,8 @@ aaf aaa aaf aaf -aae -aad +aai +aag aaa aaa aaa @@ -109785,144 +110203,144 @@ aaa aaa aaf aaa -aew -aew -aex -aew -aew +aey +aey +aez +aey +aey aiJ aiJ -akX -amq +akW +amp aiJ -aoP -aqk -arH -aqk -aqk -avx -awG -axG -ayO -ayO -ayO -ayO -ayO -ayO -aHk -aIE -aIE -aIE -aIE -aIE -aIE -aIE -aSw -aTR -aVt -aWU -aYB -bag -bby -bdA -beR -bgv -bih -bjX -blL -bnr -bpe +aoJ +aqa +aru +aqa +aqa +avj +awv +axx +ayJ +ayJ +ayJ +ayJ +ayJ +ayJ +dCp +aHG +aHG +aHG +aHG +aHG +aHG +aHG +aQP +aSe +aTu +aUM +aWp +aXS +aYX +baZ +bcl +bdO +bfE +bhA +bjl +bkQ +bmJ +boJ bra -btt -bvE -bxg -bgv -bAW -beR -bEy -bGj -bHZ -bJO -bJO -bNe -bOS -bQB -bSi -bTT -bVj -bWn -bXA -bYC -caq -bWp -bWp -bWp -bWp -bWp -cjb -ckt -cky -cmU -cou -cpW -cku -css -ctF -cgf -cwh -cxw -cym -czq -cAy -cBH -cwh -cDK -cEI -cFQ -cGF -cHF -cDT -cJM -cKJ -cKJ -cML -cNU -cOQ -cPQ -cNY -cRK -cSz -cua +btj +buL +bdO +byv +bcl +bBQ +bDz +bFg +bGV +bGV +bKc +bLH +bNt +bOO +bQz +bRO +bSQ +bUb +bVb +bWG +bSS +bSS +bSS +bSS +bSS +ceZ +cgn +dvY +dww +ckl +diH +cgo +cof +cpr +cci +crQ +ctb +ctS +cuO +cvS +cwR +crQ +cyB +czy +cAz +cBt +cCu +cyK +cEs +cFn +cFn +cHe +cIc +cIW +cJT +cIg +diT +cMp +dxk aaa aaa aaf aaf -cUi -cWS -cUi -cXz -cXR -cYe -cYs -cXz -cYM -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -dar -dar -dar -dar +cRe +cZa +cRe +cRi +dbX +dcg +dcs +cRi +dcE +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +dlV +dlV +dlV +dlV aaf aaa aaa @@ -109932,8 +110350,8 @@ aaa aaa aaf aaa -aad -aad +aag +aag aaa aaa aaa @@ -110033,7 +110451,7 @@ aaa aaa aaa aaa -aar +aav aaa aaa aaa @@ -110042,155 +110460,155 @@ aaa aaa aaf aaa -aew -afm -agj -agj -agj +aey +afp +agn +agn +agn aiK ajL -akY -amr +akX +amq aiJ -aoQ -aqk -arI -asY -aun -avy -awH -axH -ahv -azV -aBu -aCH -aDV -aCH -aHl -aCH -aJX -aLf -aMH -aOe -aPJ -aRh -aSu -aPL -aVs -aWU -aYC -bam -bbP -bdB -beS -bgw -bdh -bjY -blM -bns -aYr -aYr -btu -bvF -aYr -bzg -aYr -bCM -bEz -bGk -bIa -bJP -bLr -bzg -aYr -aYr -aYr -aYr -bCM -aYr -aYr -bYP -car -cbR -cdl -ceC -cgm -bWp -cjb -cku -cku -cku -cku -cku -cku -cga -ctF -cgf -cwh -cxx -cyn -czr -cAy -cBI -cwh -cDL -cEJ -cFR -cGG -cHG -cDT -cJN -cKJ -cLK -cML -cNV -cOR -cPR -cNY -cRL -cky -cky -cky -cky -cky -cky -cUi -cWT -cVa -cXA -cXS -cYf -cYt -cYD -cYN -cXz -cZc -cZm -cZv -cUg -cZc -cZM -cZv -cUg -cZc -dac -cZl -cXz -das -daD -daP -dar -dar -dar -dar -dar -dar -dar -dar -dar +aoK +aqa +arv +asM +atZ +avk +aww +axy +ahx +azW +aBq +aCy +aDO +aCy +aGy +aCy +aIZ +aKk +aLH +aMW +aOs +aPH +aQN +aOu +aTt +aUM +aWq +aXY +aZr +bba +dCH +bdP +baG +bhB +bjm +bkR +aWf +aWf +brb +btk +aWf +bwI +aWf +dCT +bBR +bDA +bFh +bGW +bIr +bwI +aWf +aWf +aWf +aWf +dCT +aWf +aWf +bVo +bWH +bYc +bZq +caG +ccp +bSS +ceZ +cgo +cgo +cgo +cgo +cgo +cgo +ccd +cpr +cci +crQ +ctc +ctT +cuP +cvS +cwS +crQ +cyC +czv +dDA +cBu +cCv +cyK +cEt +cFn +cGj +cHe +cId +cIX +cJU +cIg +cLF +dvY +dvY +dvY +dvY +dvY +dvY +cRe +djh +cYT +cRv +dbY +dch +dct +dcz +djs +cRi +cSh +cSp +cSy +cSd +cSh +dbo +cSy +cSd +cSh +dbs +cSn +cRi +dde +ddj +cTp +dlV +dlV +dlV +dlV +dlV +dlV +dlV +dlV +dlV aaa aaa -aae +aai aaa aaa aaa @@ -110283,7 +110701,7 @@ aaa aaa aaa aaa -aar +aav aaa aaa aaa @@ -110299,155 +110717,155 @@ aaa aaa aaf aaf -aex -afn -agk -agZ -agZ +aez +afq +ago +ahc +ahc aiL ajM -akZ -ams -anH -aoR +akY +amr +anD +aoL ajD -arI -asZ -aun -avy -awI -axI -ahv -azW -aBv -axL -axL -axL -axL -axL -axL -axL -aMI -aOf -aPK -aPK -aSx -aPK -aVu -aWU -aYD -ban -bbQ -bdC -beT -bgx -bii -bjZ -blN -bnt -bpf -brb -btv -btv -bxh -bzh -bAX -bAX -bAX -bGl -bIb -bJQ -bLs -bNf -bLs -bQC -bLs -bLs -bLs -bWo -bXB -bYQ -cas -cbS -cdm -ceD -cgn -bWp -cjb -cku -clA -cmV -cov -cpX -cdi -cst -ctF -cva -cwh -cxy -cyo -czs -cAz -cBJ -cwh -cDM -cEK -cFS -cGH -cHH -cDT -cJO -cKK -cJO -cML -cNW -cOS -cNW -cNY -cOc -cky -cTt -cvs -cVb -cVK -cky -cUi -cUi -cUi -cXz -cXT -cYg -cYu -cXz -cUi -cXz -cZd -cZl -cZl -cUg -cZd -cZl -cZl -cUg -cZd -cZl -cZl -cXz -dat -daE -daQ -daQ -daQ -daQ -daQ -daQ -daQ -dbu -dbD -dar +arv +asN +atZ +avk +awx +axz +ahx +azX +dsg +axC +axC +axC +axC +axC +axC +axC +aZU +aMX +aOt +aOt +aQQ +aOt +aTv +aUM +aWr +aXZ +aZs +bbb +bcm +bdQ +bfF +bhC +bjn +bkS +bmK +boK +brc +brc +buM +bwJ +byw +byw +byw +bDB +bFi +bGX +bIs +bKd +bIs +bNu +bIs +bIs +bIs +bSR +bUc +bVp +bWI +bYd +bZr +caH +ccq +bSS +ceZ +cgo +chs +ciN +ckm +clN +bZn +cog +cpr +cqK +crQ +ctd +ctU +cuQ +cvT +cwT +crQ +cyD +czw +cAA +cBv +cCw +cyK +cEu +cFo +cEu +cHe +cIe +cIY +cIe +cIg +cPe +dvY +cNi +cgs +cOB +cPf +dvY +cRe +cRe +cRe +cRi +dbZ +dci +dcu +cRi +cRe +cRi +cSg +cSn +cSn +cSd +cSg +cSn +cSn +cSd +cSg +cSn +cSn +cRi +cTA +cTn +cTC +cTC +cTC +cTC +cTC +cTC +cTC +daO +bIx +dlV aaf aaf -aad +aag aaa aaa aaa @@ -110556,156 +110974,156 @@ aaa aaa aaf aaa -aew -afo -agl -agl -agl +aey +afr +agp +agp +agp aiM ajN -ala -amt -aew -aoS +akZ +ams +aey +aoM ajD -arJ -asY -aun -avy -awJ -axJ -ahv -azX -aoZ -axL -aDW -axL -aHm -axL -aJY -axL -aMJ -aOg -aPL -aPM -aSy -aRk -aVv -aWU -aYE -als -bbR -bbR -bbR -bbR -bij -bka -blO -bnu -bpg -brc -bpj -bph -bpj -bpk -bAY -bpk -bEA -bGm -bIc -bJR -bpk -bNg -bNh -bQD -bSj -bSj -bNh -bWp -bXC -bYR -cat -cbR -cdn -ceE +arw +asM +atZ +avk +awy +axA +ahx +dhz +aoP +axC +aDP +axC +aGz +axC +aJa +axC +bbG +aMY +aOu +aOv +aQR +dCv +aTw +aUM +aWs +dnh +aZt +aZt +aZt +aZt +bfG +bhD +bjo +bkT +bmL +boL +bmO +bmM +bmO +bmP +dhT +bmP +bBS +bDC +bFj +bGY +bmP +dik +bKe +bNv +bOP +bOP +bKe +bSS +bUd +bVq +bWJ +bYc +bZs +caI +ccr +bSS +cfa cgo -bWp -cjc -cku -clB -cmW -cow -cpY -cqY -csu -ctG -cvb -cwh -cxz -cyp -czt -cAA -cBK -cwh -cDN -cEL -cFT -cGI -cHI -cIA -cJP -cKL -cLL -cMM -cNX -cOT -cPS -cNY -cRM -cky -cTu -cmS -cmS -cVL -cky +cht +ciO +ckn +clO +cmN +coh +cpt +cqL +crQ +cte +ctV +cuR +cvU +cwU +crQ +cyE +czx +cAB +cBw +cCx +cDk +cEv +cFp +cGk +cHf +cIf +cIZ +cJW +cIg +dDF +dvY +cNj +ciL +ciL +cPg +dvY aaa aaa aaa -cXB -cXz -cYh -cYv -cXz -cYO -cUg -cZd -cZl -cZl -cUg -cZd -cZl -cZl -cUg -cZd -cZl -cZl -cXz -cXz -daF -cXz -cXz -cXz -cXz -cXz -cXz -cXz -dbv -dbE -dar +cRw +cRi +dcj +cRx +cRi +cRD +cSd +cSg +cSn +cSn +cSd +cSg +cSn +cSn +cSd +cSg +cSn +cSn +cRi +cRi +cTq +cRi +cRi +cRi +cRi +cRi +cRi +cRi +daP +cLE +dlV aaa aaa aaf -aad +aag aaa aaa aaa @@ -110789,7 +111207,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -110813,156 +111231,156 @@ aaa aaa aaf aaa -aew -aew -aex -aew -aew -aew -aew -aew -aew -aew -aoT +aey +aey +aez +aey +aey +aey +aey +aey +aey +aey +aoN ajD -arK -ata +arx +asO ajD -avy -awK -axK -ahv +avk +awz +axB +ahx azY -aoZ -axL -aDX -axL -aHn -axL -aJZ -axL -aMK -aOg -aPM -aPN -aSy -aPL -aVw -aWU -aYF -aHD -bbR -bdD -beU -bgy -bbR -bkb -blP -bnv -bph +aoP +axC +aDQ +axC +aGA +axC +aJb +axC +bah +aMY +aOv +aOw +aQR +aOu +aTx +aUM +aWt +aYa +aZt +bbc +bcn +bdR +aZt +bhE +bjp +bkU +bmM +boM brd -btw -bvG -bpj -bzi -bAZ -bCN -bEB -bAZ -bId -bJS -bLt -bNh -bOT -bQE -bSk -bTU -bVk -bWq -bXD -bYS -cau -bWq -bXD -ceF -bXD -bWq -cjb -cku -clC -cmX -cox -cpZ -cqZ -csv -ctH -cvc -cwi -cwi -cwi -cwi -cwi -cwi -cwi -cDO -cEI -cFU -cGJ -cHJ -cIB -cJO -cKM -cJO -cML -cNY -cNY -cNY -cNY -cyw -cky -cTv -cmS -cmS -cVM -cky +btl +bmO +bwK +bwO +bAi +bBT +bwO +bFk +bGZ +bIt +bKe +bLI +bNw +bOQ +bQA +bRP +bST +bUe +bVr +bWK +bST +bUe +caJ +bUe +bST +ceZ +cgo +chu +ciP +cko +clP +cmO +coi +cpu +cqM +crR +crR +crR +crR +crR +crR +crR +cyF +czy +cAC +cBx +cCy +cDl +cEu +cFq +cEu +cHe +cIg +cIg +cIg +cIg +dxQ +dvY +cNk +ciL +ciL +cPh +dvY aaa aaa aaf -cXz -cXU -cYi -cYw -cYE -cYP -cUg -cZe -cZn -cZw -cUg -cZH -cZN -cZT -cUg -cZZ -dad -dai -cUg -dau -daG -daR -dba -cXz -cZl -dbk -dbp -cXz -dbw -cXz -cXz -cXz -cXz +cRi +cRh +dck +cRz +cRB +cRN +cSd +cRU +cSq +cRZ +cSd +dcP +cSN +cSD +cSd +dcU +cTc +dcX +cSd +ddf +ddk +cTj +cTD +cRi +cSn +daF +daJ +cRi +bvT +cRi +cRi +cRi +cRi aaa -aae +aai aaa aaa aaa @@ -111073,153 +111491,153 @@ aaa aaf aaa aaa -agm -ahO -agm +agq +ahQ +agq ajO -alb -amu -agm -aoU +ala +amt +agq +dhr ajD ajD ajD ajD -ahv -ahv -ahv -ahv -azZ -aBw -aCI -aDY -aFz -aHo -aIG -aFA -aLg -aML -aOg -aPN -aRi -aSz -aTS -aVx -aWU -aWU -bao -bbR -bdE -beV -bgz -bik -bkc -blQ -bnw -bpi +ahx +ahx +ahx +ahx +aGE +aBr +aCz +aDR +aFc +aGB +aHI +aFd +aKl +aLK +aMY +aOw +aPI +aQS +aSf +aTy +aUM +aUM +aYb +aZt +bbd +bco +bdS +bfH +bhF +bjq +bkV +bmN +boN bre -btx -bvH -bpj -bzj -bBa -bCO -bEB -bGn -bIe -bJT -bLu -bNh -bOU -bQF -bSl -bTV -bVl -bWq -bXE -bYT -cav -cbT -cdo -ceG +btm +bmO +bwL +byy +bAj +bBT +bDD +bFl +bHa +bIu +bKe +bLJ +bNx +bOR +bQB +bRQ +bST +bUf +bVs +bWL +bYe +bZt +caK +ccs +bST +cfb cgp -bWq -cjd -ckv -clD -cmY -coy -cqa -cdi -cga -ctI -cvd -cwj -cxA -cyq -czu -cAB -cBL -cwi -cDP -cEM -cFV -cGK -cHK -cIC -cJQ -cGD -cLM -cMN -cNZ -cOU -cPT -cLP -cyw -cky -cky -cUj -cVc -cky -cky +chv +ciQ +ckp +clQ +bZn +ccd +cpv +cqN +crS +ctf +ctW +cuS +cvV +cwV +crR +cyG +czz +cAD +cBy +cCz +cDm +cEw +cFr +cGl +cHg +cIh +dAh +dbl +dyc +dxQ +dvY +dvY +cNW +cOC +dvY +dvY aaa aaa aaa -cXz -cXV -cYj -cYx -cYF -cYQ -cTq -cZf -cZo -cZx -cZE -cZf -cZO -cZU -cZE -cZf -dae -daj -cUg -dav -daH -daS -dbb -dbg -cZl -cZl -cZl -cXz -dbx -cXz -dbH -dbH -cXz +cRi +dca +dcl +cRy +cRA +cRM +cRa +cSj +cSs +cSB +cSI +cSj +cSO +cSS +cSI +cSj +cTb +cST +cSd +cSL +cVa +cTr +cRY +daC +cSn +cSn +cSn +cRi +dmq +cRi +cZv +cZv +cRi aaf -aad +aag aaa aaa aaa @@ -111329,152 +111747,152 @@ aaf aaf aaf aaa -agm -agm -agm -agm -aiN -alc -aiN -agm -aoV -aql -aql -atb -auo -aql -aql -aql -aql -aAa -aBx -axL -aDZ -aFA -aHp -aIH -aIH -aLg -aMM -aOh -aPO -aRj -aSA -aPL -aVs -aWV -aWU -bap -aVB -bdF -beW -bgA -bil -bkb -blP -bnv -bph +agq +agq +agq +agq +aje +alb +aje +agq +aur +aqb +aqb +asP +aua +aqb +aqb +aqb +aqb +azZ +aBs +axC +aDS +aFd +aGC +aHJ +aHJ +aKl +aLL +aMZ +aOx +aPJ +aQT +aOu +aTt +aUN +aUM +aYc +aTC +bbe +bcp +bdT +bfI +bhE +bjp +bkU +bmM +boO brf -bty -bvI -bpj -bzk -bAZ -bCP -bEB -bAZ -bIf -bJS -bEB -bNi -bOV -bQG -bSm -bTV -bVm -bWq -bXF -bYU -caw -cbU -bYU -ceH -cgq -chV -cje -cku -clE -cmZ -coz -cqb -cdi -csw -ctJ -cve -cwk -cxB -cyr -czv -czv -cBM -cwi -cDQ -cEL -cFW -cGL -cHL -cID -cJR -cID -cLN -cMO -cOa -ckx -cPU -cQJ -cRN -cky -cTw -cUk -cVd -cVN -cky +btn +bmO +bwM +bwO +bAk +bBT +bwO +bFm +bGZ +bBT +bKf +bLK +bNy +bOS +bQB +bRR +bST +bUg +bVt +bWM +bYf +bVt +caL +cct +cdU +cfc +cgo +diD +ciR +ckq +clR +bZn +coj +cpw +cqO +crT +ctg +ctX +cuT +cuT +cwW +crR +cyH +czx +cAE +cBz +cCA +cDn +cEx +cDn +cGm +cHh +cIi +cJa +dAp +cKK +cxM +dvY +cNl +dAZ +cOD +cPi +dvY aaa aaa aaf -cUi -cXW -cYk -cYy -cYG -cYR -cYZ -cZg -cZp -cZy -cZF -cZI -cZp -cZy -cZX -cZI -cZp -dak -dap -daw -daI -daT -dbc -dbh -dbh -dbl -cZl -cXz -dby -dbF -dbI -dbH -cUi +cRe +cRS +dcm +dcv +cRC +dcG +cSe +cSi +cSr +cSA +cSG +cSK +cSr +cSA +cSW +cSK +cSr +dcY +ddc +cSk +ddl +cTk +cTm +daB +daB +daG +cSn +cRi +ddx +ddz +daR +cZv +cRe aaa aaa aaa @@ -111586,153 +112004,153 @@ aaf aaa aaf aaa -agm -aha -ahP -aiN -aiN -ald -aiN -agm -aoW -agm -agm -atc -agm -agm -agm -axL -axL -axL -axL -axL -aDZ -aFB -axL -axL -axL -axL -aMN -aOi -aPP -aPK -aSB -aTT -aVs -aWW -aWU -baq -bbR -bdG -beX -bgB -bim -bkd -blR -bnx -bpj -bpj -bpj -bpj -bpj -bzl -bBb -bCO -bEC -bAZ -bIg -bJU -bLv -bNj -bOW -bQH -bSn -bTW -bOV -bWr -bXG -bYT -cax -cbV -caB -ceI -cgr -bWq -cjf -ckw -ckw -ckw -ckw -ckw -cra -cra -ctK -cvf -cwi -cxC -cys -czw -cAC -cBN -cCO -cDR -cEN -cFX -cGM -cHM -cIE -cJS -cKN -cLO -cMP -cOb -cky -cky -cQK -cky -cky -cTx -cUl -cVe -cVO -cky +agq +ahd +ahR +aje +aje +alc +aje +agq +dCe +agq +agq +asQ +agq +agq +agq +axC +axC +axC +axC +axC +aDS +aFe +axC +axC +axC +axC +dhJ +aNa +aOy +aOt +aQU +aSg +aTt +aUO +aUM +boW +aZt +bbf +bcq +bdU +bfJ +bhG +bjr +bkW +bmO +bmO +bmO +bmO +bmO +bwN +byz +bAj +bBU +bwO +dDb +bHb +bMP +bKg +bLL +bNz +bOT +bQC +bLK +bSU +bUh +bVs +bWN +bWR +dDl +caM +ccu +bST +cfd +cgq +cgq +cgq +cgq +cgq +cmP +cmP +cpx +cqP +crR +cth +ctY +cuU +cvW +cwX +cxK +cyI +czA +cAF +cBA +cCB +cDo +cEy +cFs +cGn +cHi +cIj +dvY +dvY +cKL +dvY +dvY +diW +cNX +dBe +cPj +dvY aaa aaa aaf -cUi -cXW -cYl -cYz -cYH -cYS -cZa -cZh -cZq -cZz -cZq -cZq -cZP -cZV -cZq -cZq -cZq -dal -cZq -dax -daJ -daU -dbd -cZl -cZl -cZl -dbq -cXz -dbz -dbG -dbJ -dbL -dbN -dbO +cRe +cRS +dcn +dcw +cRk +dcH +cSf +cSl +cSJ +cSa +cSJ +cSJ +cUM +cUN +cSJ +cSJ +cSJ +cSV +cSJ +cSX +ddm +cTt +daA +cSn +cSn +cSn +daL +cRi +daQ +ddA +daS +dbv +cTT +ddC aaf aaa aaa @@ -111823,7 +112241,7 @@ aaa aaa aaa aaa -aar +aav aaa aaa aaa @@ -111843,152 +112261,152 @@ aaf aaa aaf aaf -agm -ahb -ahQ -aiN +agq +ahe +ahS +aje ajP -ale -amv -anI -aoX -agm -arL -atd -aiN -auq -awL -axL -ayP -aAb -aBy -aCJ -aEa -aFC -aHq -aII -aKa -axL -aMO -aOi -aPQ -aPL -aSC -aPM -aVs -aWX -aWU -bar -bbR -bdH -beY -bgC -bbR -bke -blP -bnv -bpk +ald +amu +anE +aoQ +agq +ary +asR +aje +auc +awA +axC +ayK +aAa +aBt +aCA +aDT +aFf +aGD +aHK +aJc +axC +aLN +aNa +aOz +aOu +aQV +aOv +aTt +aUP +aUM +dCD +aZt +bbg +bcr +bdV +aZt +bhH +bjp +bkU +bmP +boP brg -btz -bvJ -bxi -bzm -bAZ -bCQ -bEB -bAZ -bIh -bJV -bLw -bNk -bOX -bQI -bSo -bTX -bVn -bWs -bXH -bYV -cay -cbW -caD -ceJ -cgs -bWq -cjg -ckw -clF -clF -clF -ckw -crb -csx -ctL -cvg -ckw -cxD -cyt -czx -cAD -cBO -cwi -cDS -cEO -cFY -cGN -cHN -cIF -cDT -cDT -cDT -cDT -cOc -cky -cPV -cQL -cRO -cky -cTy -cUk -cVf -cVM -cky +bto +buN +dCS +bwO +bAl +bBT +bwO +bFn +bHc +bIw +bKh +bLM +bNA +bOU +bQD +bRS +oub +bUi +bVu +bWO +bYg +bWT +caN +ccv +bST +dDr +cgq +chx +chx +chx +cgq +cmQ +cok +cpy +cqQ +cgq +cti +ctZ +cuV +cvX +cwY +crR +cyJ +czB +cAG +cBB +cCC +cDp +cyK +cyK +cyK +cyK +cPe +dvY +cJY +cKM +cLH +dvY +cNn +dAZ +cOE +cPh +dvY aaa aaa aaf -cUi -cXW -cYm -cYA -cYI -cYT -cZb -cZi -cZr -cZA -cZG -cZJ -cZr -cZA -cZY -cZJ -cZr -dam -daq -day +cRe +cRS +dco +dcx +dcA +dcI +cRR +cRV +cRX +cSb +dcO +dcQ +cRX +cSb +dcT +dcQ +cRX +dcZ +ddd +cTa +ddn +cTs +ddu +daD +cSn +daH daK -daV -dbe -dbi -cZl -dbm -dbr -cXz -dbA -dbF -dbK -dbH -cUi +cRi +bIv +ddz +ddB +cZv +cRe aaa aaf aaa @@ -112088,7 +112506,7 @@ aaa aaa aaa aaa -aar +aav aaa aaa aaa @@ -112098,156 +112516,156 @@ aaa aaa aaf aaa -acM -acM -acM -acM -ahR +acP +acP +acP +acP +dhn aiO -aiN -alf -ahQ -agm -aoY -agm -arM -ate -aup -aiN -aha -axL -ayQ -aAc -aBz -aCK -aEb -aFD -aHr -axL -axL -axL -aMP -aOj -aPR -aPN -aSD -aPN -aVs -aWY -aYG -bas -bbR -bbR -bbR -bbR -bbR -bkf -blS -bny -bpk +aje +ale +ahS +agq +aoR +agq +arz +asS +aub +aje +ahd +axC +ayL +aAb +aBu +aCB +aDU +aFg +dhD +axC +axC +axC +aLO +aNb +aOA +aOw +aQW +aOw +aTt +aUQ +dtE +aYf +aZt +aZt +aZt +aZt +aZt +bhI +bjs +bkX +bmP +boQ brh -btA -bvK -bxj -bzn -bBc -bCR -bED -bGo -bIi -bAZ -bEB -bNl -bOY -bQJ -bSp -bTY -bVo -bWq -bXI -bYV -caz -cbX -caD -ceK -cgt -bWq -cjb -ckw -clF -cna -clF -cqc -crc -csy -ctM -cvh -ckw -cxE -cyu -czy -cAE -cAD -cwi -cDT -cDT -cFZ -cGO -cDT -cDT -cDT -cky -cLP -cyv -cOd -cky -cPW -cQM -cRP -cky -cky -cUm -cky -cky -cky +btp +buO +bwP +byA +bAm +bBV +bDF +bFo +bwO +bBT +bKi +bLN +dDe +bOV +bQE +bRT +bST +bUj +bVu +bWP +bYh +bWT +caO +ccw +bST +ceZ +cgq +chx +ciS +chx +clS +cmR +col +cpz +cqR +cgq +ctj +cua +cuW +cvY +cvX +crR +cyK +cyK +cAH +cBC +cyK +cyK +cyK +dvY +dyc +cub +diP +dvY +cJZ +cKN +diU +dvY +dvY +cNY +dvY +dvY +dvY aaa aaa aaa -cXz -cXX -cWS -cYB -cYJ -cYU -cTq -cZj -cZs -cZB -cZE -cZK -cZQ -cZB -cZE -daa -daf -dan -cUg -daz -daK -daW -dbf -dbg -cZl -cZl -dbs -cXz -dbB -cXz -dbH -dbM -cXz +cRi +dcb +cZa +dDI +dcB +dcJ +cRa +cSm +cSw +cSE +cSI +cSM +cSR +cSE +cSI +dcV +cTe +dda +cSd +cSZ +ddn +cTz +ddv +daC +cSn +cSn +daN +cRi +dmr +cRi +cZv +dbw +cRi aaa -aad +aag aaa aaa aaa @@ -112355,156 +112773,156 @@ aaf aaf aaf aaf -acN -afp -agn -acM -ahS +acQ +afs +agr +acP +ahU aiP -acM -acM -acM -acM -aoZ -agm -arN -aiN -auq -aiN -awM -axL -ayR -aAd -aBA -axL -aEc -aFE -aHs -aIJ -aKb -axL -aMQ -aOj -aPS -aPN -aSE -aPL -aVs -aWZ -aWU -bat -als -bdI -beZ -als -bin -bkb -blP -bnv -bpk +acP +acP +acP +acP +aoP +agq +arA +aje +auc +aje +awB +axC +ayM +aAc +aBv +axC +aDV +aFh +aGF +aHL +aJd +axC +aLP +aNb +aOB +aOw +aQX +aOu +aTt +aUR +aUM +aYe +dnh +bbh +duo +dnh +bfK +bhE +bjp +bkU +bmP +boR bri -btB -bvL -bpk -bzo -bAZ -bCS -bEB -bAZ -bId -bAZ -bEB -bNm -bOY -bOV -bSq -bTZ -bQH -bWt -bXJ -bYW -caA -caA -caA -ceH -cgs -bWq -cjh -ckw -clF -cnb -coA -cqd -crd -csz -ctN -cvi -ckw -cpU -cpU -cpU -cpU -cpU -cpU -cDU -cEP -cGa -cGP -cHO -cIG -cJT -cky -cLQ -cyw -cLP -cky -cPX -cQN -cRQ -csE -cdk -cUn -cua +btq +bmP +bwQ +bwO +bAn +bBT +bwO +bFk +bwO +bBT +bKj +bLN +bLK +ddE +bQF +bNz +bSV +bUk +bVv +bWQ +bWQ +bWQ +caL +ccv +bST +csg +cgq +chx +ciT +ckr +clT +cmS +com +cpA +cqS +cgq +dwL +dwL +dwL +dwL +dwL +dwL +xAp +vhG +cAI +cBD +cCD +uun +rSL +dvY +cEz +dxQ +dyc +dvY +cKa +cKO +cLJ +cor +cmZ +cNZ +dxk aaa aaa aaa aaa aaa -cXz -cXY -cYn -cYp -cYp -cYV -cUg -cZk -cZt -cZC -cUg -cZL -cZR -cZW -cUg -dab -dag -dao -cUg -daA -daL -daX -dba -cXz -dbj -dbn -dbt -cXz -dat -cXz -cXz -cXz -cXz +cRi +dcc +dcp +cSt +cSt +dcK +cSd +cRW +cSv +cSc +cSd +dcR +cSQ +dcS +cSd +dcW +cTg +ddb +cSd +ddg +ddo +dds +cTD +cRi +daE +daI +daM +cRi +cTA +cRi +cRi +cRi +cRi aaf -aad +aag aaa aaa aaa @@ -112607,161 +113025,161 @@ aaa aaa aaa aaa -aae +aai aaa aaa aaf aaa -acM -acM -ago -acM -acM -acM -acM -alg -amw -acM -apa -acM -arO -arO -arO -arO -arO -axL -axL -axL -axL -axL -aEd -aFF -axL -axL -axL -axL -aMR -aOk -aPT -aRk -aSF -aPN -aVs -aXa -aWU -bau -bbS -bdJ -bfa -als -bio -bkb -blP -bnv -bpk +acP +acP +ags +acP +acP +acP +acP +alf +amv +acP +aoS +acP +arB +arB +arB +arB +arB +axC +axC +axC +axC +axC +aDW +aFi +axC +axC +axC +axC +aLQ +aNc +aOC +dCv +aQY +aOw +aTt +aUS +aUM +aYg +aZv +bbi +bct +dnh +bfL +bhE +bjp +bkU +bmP +dbd brj -btC -bvM -bpk -bpk -bBd -bCT -bAY -bGp -bIj -bAY -bpk -bNh -bOZ -bQK -bQK -bUa -bVp -bWu -bXG -bYX -caB -cbV -cdp -ceI -cgu -bWq -cjb -ckw -clG -cnc -clF -cqe -cre -csA -ctO -cvj -cwl -cpU -cyv -ckx -ckx -ckx -cCP -cDV -cDV -cDV -cGQ -cHP -cIH -cIH -cKO -cLR -cMQ -cOe -cky -cky -cky -cky -cSA -cSA -cSA -cSA -cSA +btr +bmP +bmP +byB +bAo +dhT +bDG +bFp +dhT +bmP +bKe +bLO +bNB +bNB +bQG +bRU +bSW +bUh +bVw +dDl +bWR +bZu +caM +ccx +bST +ceZ +cgq +chy +ciU +chx +clU +cmT +con +cpB +cqT +crU +dwL +cub +cJa +cJa +cJa +gHh +wRy +wRy +wRy +cBE +cAJ +cCE +cCE +czC +dzI +cIl +dAd +dvY +dvY +dvY +dvY +cKP +cKP +cKP +cKP +cKP aaa aaa aaa aaa -cXz -cXZ -cYo -cYC -cYp -cYW -cUg -cZl -cZl -cZd -cUg -cZl -cZl -cZd -cUg -cZl -cZl -cZd -cXz -cXz -daM -cXz -cXz -cXz -cXz -cXz -cXz -cXz -dat -dar +cRi +dcd +dcq +dcy +cSt +dcL +cSd +cSn +cSn +cSg +cSd +cSn +cSn +cSg +cSd +cSn +cSn +cSg +cRi +cRi +ddp +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cTA +dlV aaf aaa aaa aaf -aad +aag aaa aaa aaa @@ -112864,160 +113282,160 @@ aaa aaa aaa aaa -aad +aag aaa aaa aaf aaa -acN -afq -agp -ahc -ahT +acQ +aft +agt +ahf +ahV aiQ -ajQ -alh -alh -anJ -apb -aqm -arO -atf -aur -arO -awN -auB -arO -aAe -aBB -aCL -aEe -aFG -aHt -aIK -aKc -aLh -aMS -aOl -aPU -aRl -aSC -aPM -aVy -aWU -aWU -bat -als -als -als -als -als -bkb -blP -bnz -bpk +dhp +alg +alg +anF +aoT +aqc +arB +asT +aud +arB +awC +aun +arB +aAd +aBw +aCC +aDX +aFj +aGG +aHM +aJe +aKm +aLR +aNd +aOD +aPK +aQV +aOv +aTt +pVo +aUM +aYe +dnh +dnh +dnh +dnh +dnh +bhE +bjp +dCM +bmP +boT brk -btD -bpk -bpk -bzp -bBe -bBe -bBe -bBe -bIk -bEE -bEE -bNn -bPa -bQL -bSr -bUb -bVq -bWq -bXG -bYY -caC -cbY -caD -ceJ -cgs -bWq -cjb -ckw -clF -cnd -clF -cqe -crf -csB -ctP -cvk -cwm -cpU -cyw -czz -cAF -cBP -cpU -cDW -cEQ -cGb -cGR -cHQ -cII -cJU -cky +bmP +bmP +bwR +byC +byC +byC +byC +bFq +bBX +bBX +bKk +bLP +bNC +bOW +bQH +bRV +bST +bUh +bVx +bWS +bYi +bWT +caN +ccv +bST +ceZ +cgq +chx +cLU +chx +clU cmU -cMR -cOf -ckx -cPY -cQO -cRR -cSB -cTz -cUo -cVg -cSA +coo +cpC +cqU +crV +dwL +dxQ +cuY +cwa +dzQ +dwL +gLC +qqg +cAK +cBF +cCF +uGW +dqU +dvY +dww +gEk +eZe +cJa +cPx +cJb +cKb +cKR +cLK +cMq +cNo +cKP aaa aaa aaa aaa -cXz -cYa -cYp -cYp -cYK -cYX -cUg -cZl -cZl -cZd -cUg -cZl -cZl -cZd -cUg -cZl -cZl -cZd -cXz -daB -daN -daY -daY -daY -daY -dbo -dat -dat -dbC -dar +cRi +dce +cSt +cSt +dcC +dcM +cSd +cSn +cSn +cSg +cSd +cSn +cSn +cSg +cSd +cSn +cSn +cSg +cRi +ddh +ddq +ddt +ddt +ddt +ddt +ddw +cTA +cTA +ddy +dlV aaf aaf aaa -aae +aai aaa aaa aaa @@ -113121,160 +113539,160 @@ aaa aaa aaa aaa -aad +aag aaa aaa aaf aaa -acN -afr -agq -ahd -ahd -ahd +acQ +afu +agu +ahg +ahg +ahg ajR -ahd -ahd -anK -apc -aqn -arO -atg -aus -arO -awO -axN -arO -aAf -aBC +ahg +ahg +anG +aoU +aqd +arB +asU +aue +arB +awD +axD +arB +aAe +aBx +aCD +aDY +aFk +aGH +aHN +aJf +aKn +aLS +aNe +aOE +aPL +aQZ +aSh +aTA +aUT +aUM +aYh aCM -aEf -aFH -aHu -aIL -aKd -aLi -aMT -aOm -aPV -aRm -aSG -aTU -aVz -aXb -aWU -bav -aCV -bdK -aCV -bgD -bip -bkg -blT -bnv -bpk +bbj +aCM +bdW +bfM +bhJ +bjt +bkU +bmP +boU brl -btE -bpk -bxk -bzq -bzv -bzv -bBe -bBe -bIl -bBe -bLx -bNh -bNh -bNh -bNh -bNh -bVr -bWq -bXK -bYV -caD -cbZ -caD -ceJ -cgv -bWq -cjb -ckw -clH -cne -coB -ckw -crg -csC -ctQ -cvl -cwn -cpU -cyw -czA -czA -czA -czA -czA -cER -czC -cGS -cHR -cIJ -cDH -cGS -cGS -cMS -cLP -cOV -cPZ -cQP -cRS -cSC -cTA -cUp -cVh -cSA +bmP +buP +bwS +bwX +bwX +byC +byC +bFr +byC +bIy +bKe +bKe +bKe +bKe +bKe +bRW +bST +bUm +bVu +bWT +bYj +bWT +caN +ccy +bST +ceZ +cgq +chA +ciV +cks +cgq +cmV +cop +cpD +cqV +crW +dwL +dxQ +cuZ +cuZ +cuZ +cuZ +cuZ +ioI +krD +czD +cAL +cBG +cyy +czD +czD +cFu +dyc +cOA +cIn +cJc +cKc +cKQ +cLL +cMr +cNp +cKP aaf aaa aaa aaa -cXz -cYb -cYq -cYq -cYL -cYY -cUg -cZl -cZu -cZD -cUg -cZv -cZS -cZD -cUg -cZl -dah -cZD -cXz -daC -daO -daZ -dar -dar -dar -dar -dar -dar -dar -dar +cRi +dcf +dcr +dcr +dcD +dcN +cSd +cSn +cSx +cSF +cSd +cSy +dbp +cSF +cSd +cSn +dbt +cSF +cRi +ddi +ddr +cTB +dlV +dlV +dlV +dlV +dlV +dlV +dlV +dlV aaf aaa aaa -aad +aag aaa aaa aaa @@ -113378,149 +113796,149 @@ aaa aaa aaa aaa -aad +aag aaa aaa aaf aaa -acN -afs -agq -ahe -ahe +acQ +afv +agu +ahh +ahh aiR ajS -ali -agv -agv -apd -aqo -arO -ath -aut -arO -awP -axO -arO -aAg -aBC -aCN -aEg -aFI -aHv -aIM -aKe -aLj -aMU -aOn -aPW -aRn -aSH -aTV -aVA -aXb -aWU -baw -als -als -alr -als -als -bkb -blP -bnv -bpl +alh +agz +agz +aoV +dhs +arB +asV +auf +arB +awE +axE +arB +dhA +aBx +aCE +aDZ +aFl +aGI +aHO +aJg +aKo +aLT +aNf +aOF +aPM +aRa +aSi +aTB +aUT +aUM +dhN +dnh +dnh +dni +dnh +dnh +bhE +bjp +bkU +alq +boV brm -btF -bpk -bxl -bzr -bBf -bCU -bEE -bGq -bIm -bJW -bBe -bNo -bNh -bQM -bSs -bUc -bVs -bWq -bXL -bYU -caA -cca -caA -ceH -cgw -bWq -cji -ckw -clF -cnf -coC -cqf -crh -csD -ctR -cvm -cwo -cpU -cyw -czA -cAG -cBQ -cCQ -cDX -cES -cGc -cGS -cHS -cIK -cJV +bmP +buQ +bwT +byD +bAp +bBX +bDH +bFs +bHd +byC +bKl +bKe +bND +bOX +bQI +bRX +bST +bUn +bVt +bWQ +bYk +bWQ +caL +dbE +bST +diB +cgq +chx +ciW +ckt +clV +cmW +coq +cpE +cqW +crX +dwL +dxQ +cuZ +cwb +lal +ygk +sdi +fDD +wKo +czD +cQC +cBH +cCG +cDq +czD +dvY +dvY +dvY +cGo +cJd +cPz +cKP +cLM +cMs +cNq cKP -cGS -cky -cky -cky -cQa -cQQ -cRT -cSA -cTB -cUq -cVi -cSA aaa -aab +aac aaa aaa -cXz -cUi -cUi -cUi -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -dar -dar -dar -dar +cRi +cRe +cRe +cRe +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +dlV +dlV +dlV +dlV aaa aaf aaf @@ -113530,8 +113948,8 @@ aaf aaa aaf aaf -aad -aad +aag +aag aaf aaa aaa @@ -113635,122 +114053,122 @@ aaa aaa aaa aaa -aae +aai aaa aaa aaf aaf -acM -acM -agr -ahe -ahU +acP +acP +agv +ahh +ahW aiS ajT aiS -amx -anL -apd -aqp -arO -ati -auu -arO -ati -axP -arO -arO -aBD -aCO -aEh -aFJ -aHw -avD -aKf -aKf -aKf -aOo -aPX -aRo -aKf -aKf -aKf -aWU -aWU -aXg -als -aaa -aaa -aaa +amw +dCc +aoV +aqf +arB +asW +aug +arB +asW +axF +arB +arB +aBy +aCF +aEa +aFm +aGJ +avo +aJh +aJh +aJh +aNg +aOG +aPN +aJh +aJh +aJh +aUM +aUM biq -bkh -blU -bnA -bpl +dnh +aaa +aaa +aaa +bfN +bhK +bju +bkZ +alq +bBj brn -btG -bpk -bpk -bzs -bBg -bCV -bEF -bBe -bzv -bJX -bEF -bNp -bNh -bQN -bSt -bSt -bVt -bWq -bXM -bYZ -caE -ccb -cdq -ceL -cgx -bWq -cjj -ckw -ckw -ckw -ckw -ckw -ckw -ckw -ctS -ckw -ckw -cpU -cyw -czA -cAH -cBR -cBR -cDY -cET -czC -cGT -cHT -cIL -cHV -cKQ -cGS +bmP +bmP +bwU +byE +bAq +dCU +byC +bwX +bHe +dCU +bKm +bKe +bNE +dbn +dbn +bRY +bST +bUo +bVy +bWU +bYl +bZv +caP +ccz +bST +cff +cgq +cgq +cgq +cgq +cgq +cgq +cgq +cpF +cgq +cgq +dwL +dxQ +cuZ +eqG +cwZ +cwZ +cyM +uYk +krD +cQv +cAN +cBI +cAP +cDr +czD aaf aaf -cky -cky -cQR -cky -cSA -cTC -cUr -cTC -cSA +dvY +dvY +dAn +dvY +cKP +dbN +dbP +dbN +cKP aaf aaf aaf @@ -113787,7 +114205,7 @@ aaa aaa aaa aaa -aae +aai aaa aaa aaa @@ -113892,128 +114310,128 @@ aaa aaa aaa aaa -aad +aag aaa aaa aaf aaa -acN -aft -agq -ahf -ahV +acQ +afw +agu +ahi +ahX aiT ajU -alj -amy -anM -ape -aqq -arP -atj -auv -avA -atj -axQ -ayS -aAh -aBE -aCP -aEi -aFJ -aHv -aIN -aKf -aLk -aMV -aOp -aPY -aRp -aSI -aTW -aKf -aXc -aCV -bax -bbT -bbT -bfb -bbT -bbT -bki -blV -bnB -bpm +ali +amx +anH +aoW +aqg +arC +asX +auh +avl +asX +axG +ayN +aAf +aBz +aCG +aEb +aFm +aGI +dhF +aJh +aKp +aLU +aNh +aOH +aPO +aRb +aSj +aJh +aUU +aCM +dtR +aZw +aZw +bcu +aZw +aZw +bhL +bjv +bla +bmQ +boX bro -btH -bvN -bxm -bzt -bBh -bzv -bBe -bGr -bIn -bJY -bBe -bNq -bNh -bQO -bSu -bUd -bVu -bNh -bNh -bNh -bWq -bWq -bWq -ceM -bWq -bWq -cjk -ckx -ckx -cng -ckx -cqg -cri -ckx -ctT -cvn -cwp -cxF -cyx -czA -cAI -cBR -cBR -cDY -cEU -czC -cGU -cHT -cIM -cHV -cKR -cGS +bts +buR +bwV +byF +bwX +byC +cTR +bFt +bHf +byC +bKn +bKe +bNF +bOZ +bQJ +bRZ +bKe +bKe +bKe +bST +bST +bST +caQ +bST +bST +cfg +cJa +cJa +ciX +cJa +clW +cIk +cJa +cpG +kVo +dDu +ctk +cuc +cuZ +dyp +cwZ +cwZ +cyM +xVP +krD +czF +cAN +cBJ +cAP +cDs +czD aaf aaa aaf -cky -cQS -cky +dvY +cJe +dvY aaa -cTC -cUs -cTC +dbN +dbQ +dbN aaa aaa aaa aaf aaa aaa -cyG +vLD aaa aaf aaa @@ -114149,121 +114567,121 @@ aaa aaa aaa aaa -aad +aag aaa aaa aaf aaa -acN -afu -ags -ahg -ahV +acQ +afx +agw +ahj +ahX aiT ajU aiT -amz -anN -apf -aqr -arQ -atk -auw -avB -atk -auw -ayT -aAi -aBF -aCQ -aEj -aFK -aHx -aIO -aKf -aLl -aMW -aOq -aPZ -aOq -aSJ -aTX -aKf -avS -apj -bay -bbT -bdL -bfc -bgE -bbT -bkj -blW -bnv -bpl -bpl -btI -bpk -bxn -bzu -bBi -bBe -bzv -bGs -bzv -bJX -bBe -bNr -bNh -bQN -bSv -bUe -bVv -bWv -bXN -bNh -caF -ccc -cdr -ceN -cgy -bWq -cjl -cky -cky -cky -cky -cqh -cky -cky -cky -cky -cky -cky -cyy -czA -cAJ -cBS -cBS -cDZ -cBT -czC -cGV -cHT -cIN -cGS -cKS -cGS +amy +anI +aoX +aqh +arD +asY +aui +avm +asY +aui +ayO +aAg +aBA +aCH +aEc +aFn +aGK +aUX +aJh +aKq +aLV +aNi +aOI +aNi +aRc +aSk +aJh +avD +dnR +dtS +aZw +bbk +bcv +bdX +aZw +bhM +bjw +bkU +alq +alq +brp +bmP +buS +bwW +byG +byC +bwX +bDI +bwX +bHe +byC +bKo +bKe +bNE +bPa +bQK +bSa +bSX +bUp +bKe +bWV +bYm +bZw +caR +ccA +bST +cfh +dvY +dvY +dvY +dvY +clX +dvY +dvY +dvY +dvY +dvY +dvY +qnJ +cuZ +upN +cxN +cxN +qJZ +cxO +krD +czG +cAN +cBK +czD +cDt +czD aaf aaa aaf -cky -cQR -cky +dvY +kDM +dvY aaa -cTC -cUr -cTC +dbN +xse +dbN aaf aaf aaf @@ -114406,120 +114824,120 @@ aaa aaa aaa aaf -aae +aai aaf aaf aaf aaa -acN -afv -agt -ahh -ahV +acQ +afy +agx +ahk +ahX aiU ajV -alk -amA -anO -apg -aqs -arR -atl -aux -avC -awR -aux -ayU -aAj -aBG -aCR -aux -aFL -aHy -aIP -aKf -aLm -aMW -aOq -aQa -aOq -aSK -aTY -aKf -avQ -apk -apk -bbT -bdM -bfd -bgF -bbT -bkk -blX -bnC -bpl -brp -btJ -bpk -bxo -bzv -bBj -bCW -bEG -bGt -bIo -bIl -bBe -bNs -bNh -bQP -bQP -bUf -bVw -bWw -bXO -bNh -caG -ccd -cds -ceO -cgz -bWq -cjm -bfw -clI -cky -coD -cqi -crj -cky -ctU -cvo -ctU -cky -cyz -czA -cAK -cBT -cBT -cEa -cEV -czC -cGW -cHU -cIO -cHV -cKT -cLS +alj +amz +anJ +aoY +aqi +arE +asZ +auj +avn +awF +auj +ayP +aAh +aBB +aCI +auj +aFo +aGL +aHR +aJh +aKr +aLV +aNi +aOJ +aNi +aRd +aSl +aJh +avB +dnS +dnS +aZw +bbl +bcw +bdY +aZw +bhN +bjx +blb +alq +boY +brq +bmP +buT +bwX +byH +bAr +bBY +bDJ +bFu +bFr +byC +bKp +bKe +bNG +bNG +bZx +cgF +bSY +bUq +bKe +diw +bYn +diz +caS +ccB +bST +cfi +aqr +chB +dvY +cku +clY +cmY +dvY +cpH +cqX +cpH +dvY +cud +cuZ +eXy +cxO +cxO +dGH +mzh +krD +cQB +cAO +cBL +cAP +cDu +cEA aaf aaa aaa -acg -cQT -acg +ack +cJf +ack aaa aaf -cUt +dbR aaa aaa aaa @@ -114527,7 +114945,7 @@ aaa aaf aaa aaa -aqL +aqB aaa aaa aaa @@ -114668,106 +115086,106 @@ aaa aaa aaf aaa -acM -acM -agu -ahi -ahW +acP +acP +agy +ahl +ahY aiV aiV aiV -amB -anP -aph -aqt -arO -arO -auy -avD -arO -axR -avD -aAk -arO -avD -aEk -arO -aHz -avD -aKf -aLn -aMW -aOq -aQb -aRq -aSL -aTZ -aVB -aXd -aYH -aYH -bbT -bbT -bfe -bbT -bbT -bkb -blP -bnD -bpl -brq -btK -bpk -bpk -bzw -bBk -bCX -bEH -bEH -bIp -bJZ -bLy -bzw -bNh -bNh -bNh -bNh -bNh -bWx -bXP -bNh -bWq -bWq -bWq -ceP -cgA -bWq -cjn -aYQ -bZf -cky -coE -cqj -cdk -csE -ctV -cvp -cwq -cky -cyA -czB -cAL -cBU -cCR -cBT -cEW -czC -cGX -cHV -cHV -cGS -anX -bnZ +amA +anK +aoZ +aqj +arB +arB +auk +avo +arB +axI +avo +aAi +arB +avo +aEd +arB +aGM +avo +aJh +aKs +aLV +aNi +aOK +aPP +aRe +aSm +aTC +aUV +aWv +aWv +aZw +aZw +bcx +aZw +aZw +bhE +bjp +bkY +alq +bcs +brr +bmP +bmP +byN +dhU +bAs +bBZ +bBZ +bFv +bHg +dii +byN +bKe +bKe +bKe +bKe +bKe +bSZ +bUr +bKe +bST +bST +bST +caT +ccC +bST +dDs +apc +apb +dvY +ckv +clZ +cmZ +cor +cpI +cqY +crY +dvY +lzk +gix +cwd +kfu +cxP +cxO +gnZ +krD +czI +cAP +cAP +czD +anS +blx aaa aaa aaa @@ -114776,7 +115194,7 @@ aaf aaa aaa aaf -cUt +dbR aaa aaf aaa @@ -114784,7 +115202,7 @@ aaa aaf aaa aaf -anY +anT aaa aaa aaa @@ -114921,127 +115339,127 @@ aaa aaa aaf aaa -acM -acM -acN -acM -acM -afw -agv -ahj -ahi +acP +acP +acQ +acP +acP +afz +agz +dBY +ahl aiW aja -all -amC -anP -aph -aqu -arO -atm -auz -avE -awS -axS -avE -aAl -arO -aCS -aEl -arO -aHA -aIQ -aKf -aLo -aMX -aOr -aQc -aOr -aSM -aUa -aKf -aXe -aYH -baz -bbU -bdN -bff -bgG -aYH -bkl -blP -bnE -bpn -brr -btL -bvO -bxp -bzw -bBl -bCY -bEI -bGu -bIq -bKa -bLz -bzw -bzw -bQQ -bSw -bUg -bzw -bWy -bXQ -bZa -caH -cce -bZa -ceQ -cgB -chW -cjo -aYQ -clJ -cky -cky -cky -cky -cky -ctW -cvq -cky -cky -cyB -czC -cAM -cBV -cCS -cBT -cEX -czC +alk +amB +anK +aoZ +aqk +arB +ata +aul +avp +awG +axJ +avp +aAj +arB +aCJ +aEe +arB +boS +aHS +aJh +aKt +aLW +aNj +aOL +aNj +aRf +aSn +aJh +dCC +aWv +aYi +aZx +bbm +bcy +bdZ +aWv +dCJ +bjp +blc +bmR +boZ +brs +btt +avs +byN +bGg +bAt +bCa +bDK +bFw +bHh +bIA +byN +byN +dil +bPb +diq +byN +bTa +bUs +bVz +bWX +bYo +bVz +caU +ccD +cdV +cfj +apc +chC +dvY +dvY +dvY +dvY +dvY +cpJ +cqZ +dvY +dvY +obb +krD +kOt +gRS +oUA +cxO +qRM +krD aaf aaf aaf -anX -anX -anX +anS +anS +anS aaa aaf -aqL -anY -anY -anY +aqB +anT +anT +anT aaf aaf -cUt -aqL -anY -aqL -anY -anY -anY +dbR +aqB +anT +aqB +anT +anT +anT aaf -anY +anT aaa aaa aaa @@ -115178,104 +115596,104 @@ aaa aaa aaf aaf -acN -adg -adB -aeb -aey -afx -agv -ahk -ahX +acQ +adj +adE +aed +aeA +afA +agz +ahm +ahZ aiX ajW aiX aiX -anQ -aph -aqv -arO -atn -auA -arO -atg -axT -arO -aAm -arO -aCT -aEm -arO -aHB -aIR -aKf -aLp -aMY -aOs -aQd -aRr -aSN -aLp -aKf -aXf -aYH -baA -bbV -bdO -bfg -bgH -aYH -bkm -blY -bnF -bpo -brs -btM -bvP -bxq -bzw -bBm -bCZ -bEJ -bGv -bIr -bKb -bLA -bNt -bPb -bQR -bSx -bUh -bzw -bWz -bXR -bZb -caI -ccf -cdt -ceR -cdx -chX -cjp -aYQ -clK -cky -coF -cqk -crk -csF -ctX -cqi -cwr -cky -cyC -czC -cAN -cBW -cCT -cEa -cBT -czC +anL +aoZ +aql +arB +atb +aum +arB +asU +axK +arB +aAk +arB +aCK +aEf +arB +aGO +aHT +aJh +aKu +aLX +aNk +aOM +aPQ +aRg +aKu +aJh +aUW +aWv +aYj +aZy +bbn +bcz +bea +aWv +bhO +bjy +bld +bmS +bpa +brt +btu +buU +byN +dhV +bAu +bCb +byJ +bFx +bHi +bIB +bKq +bLQ +bNI +bPc +dir +byN +bTb +bUt +bVA +nyo +bYp +bZy +tsx +bZB +cdW +cfk +apc +chD +dvY +ckw +cma +cna +cos +dxh +clY +crZ +dvY +tVY +krD +oLW +gGT +wPk +dGH +cxO +krD aaf aaa aaf @@ -115290,7 +115708,7 @@ aaa aaa aaa aaa -cUu +cSz aaa aaa aaf @@ -115298,7 +115716,7 @@ aaa aaa aaf aaa -anY +anT aaa aaa aaa @@ -115418,7 +115836,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -115435,104 +115853,104 @@ aaa aaa aaf aaa -acM -adh -adC -adh -acM -afy -agv -ahl -ahY +acP +adk +adF +adk +acP +afB +agz +ahn +aia aiY aiY -alm -amD -amD -api -aqw -arO -ato -auB -arO -awT -aur -arO -aAn -arO -ato -aEn -arO -aHC -aIS -aKf -aLq -aMZ -aOt -aQe -aRs -aSO -aMZ -aKf -avQ -aYH -baB -bbV -bdP -bfh -bgI -aYH -bkh -blZ -bnA -bpl -brt -btN -bpl -bpl -bzw -bBn -bDa -bEK -bEK -bIs -bKc -bLB -bzw -bPc -bQS -bSy -bUi -bzw -bWA -bXS -bZc -caJ -ccg -bZc -ceS -bpl -bpl -cjq -bpl -bpl -cky -coG -cmS -cql -csG -crn -cvr -cws -cky -cyD -czC -cAO -cBX -cCU -cBT -cEY -czC +all +amC +amC +apa +aqm +arB +atc +aun +arB +awH +aud +arB +aAl +arB +atc +aEg +arB +aGP +aHU +aJh +aKv +aLY +aNl +aON +aPR +aRh +aLY +aJh +avB +aWv +aYk +aZy +apx +bcA +beb +aWv +bhK +bjz +bkZ +alq +bpb +bru +alq +alq +byN +byL +bAv +bCc +bCc +bFy +bHj +bIC +byN +bLR +bNJ +bPd +cco +byN +bTc +bUu +xVl +kys +cow +xVl +dLK +alq +alq +cfl +alq +alq +dvY +ckx +ciL +dwQ +cot +cnb +cra +csa +dvY +lMz +krD +ocT +xkG +uTS +cxO +ykE +krD aaa aaa aaa @@ -115541,21 +115959,21 @@ aaf aaa aaf aaa -cOW -cOW -cOW -cOW -cOW +dbJ +dbJ +dbJ +dbJ +dbJ aaf -cUv +cRO aaa -cOW -cOW -cOW -cOW -cOW +dbJ +dbJ +dbJ +dbJ +dbJ aaa -aqL +aqB aaf aaa aaa @@ -115692,127 +116110,127 @@ aaa aaa aaf aaa -acM -adi -adD -adi -aez -afz -afz -afz -ahZ -acN -acN -aln -amE -amE -amE -aqx -arO -arO -arO -arO -arO -arO -arO -aAo -arO -arO -arO -arO -arO -arO -aKf -aKf -aKf -aKf -aKf -aKf -aKf -aKf -aKf -aXg -aYH -baC -bbW -bdQ -bfi -bgJ -bir -bkd -bma -bnx -bpl -bpl -btO -bpl -bxr -bzw -bBo -bDb -bEL -bGw -bIt -bKd -bLC -bzw -bPd -bQT -bSz -bUj -bzw -bxz -bXT -bZc -bZc -cch -bZc -ceS -bpl -chY -cjr -aYQ -clL +acP +adl +bih +adl +aeB +afC +afC +afC +aib +acQ +acQ +alm +amD +amD +amD +aqn +arB +arB +arB +arB +arB +arB +arB +aHQ +arB +arB +arB +arB +arB +arB +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +biq +aWv +aYl +aZz +bbp +bcB +bec +bfO +bhG +bjA +bkW +alq +alq +brv +alq +buV +byN +dhW +dhX +bCd +dib +bFz +dif +dij +byN +bLS +dim +bPe +dis +byN +bvd +bUv +xVl +xVl +mvj +xVl +dLK +alq +cdX +cfm +apc +chE +dvY cky -coH -cmS -crl -cmS -cmS -csH -cwt -cky -cyE -czC -cAP -cBY -cCV -cBT -cEZ -czC +ciL +dwX +ciL +ciL +cou +csb +dvY +mjJ +krD +eqq +llb +hfJ +cxO +tjH +krD aaa aaa aaa aaa aaf aaa -anY +anT aaa -cOX -cQb -cQb -cQb -cQb -cTD -cUv -cVj -cVP -cVP -cVP -cVP -cXn +dbK +dbM +dbM +dbM +dbM +dbO +cRO +cSC +dbV +dbV +dbV +dbV +dbW aaf -anY +anT aaf aaa aaa @@ -115949,127 +116367,127 @@ aaa aaa aaf aaa -acO -adi -adE -adi -aeA -afA -afA -afA -afA -afA -afA -afA -afA -afA -afA -aqy -arS -als -auC -avF -awU -axU -als -ayb -als -aCU -aEo -aFM -aHD -aIT -als -aLr -aNa -aOu -apj -aRt -aSP -aUb -als -avQ -aYH -baD -bbX -bdR -bfj -bgK -bis -bkg -blT -bnv -bpl -bru -btP -bvQ -bxs -bzw -bzw -bzw -bzw -bzw -bIu -bzw -bzw -bzw -bzw -bzw -bSA -bzw -bzw -bWB -bXU -bZd -bZg -cci -cdu -ceT -bpl -chZ -bSG +jwW +adl +aQf +adl +aeC +afD +afD +afD +afD +afD +afD +afD +afD +afD +afD +aqo +dhw +dnh +auo +avq +awI +axL +dnh +axO +dnh +dhB +aLk +aHW +aYa +aHV +dnh +aKw +aLZ +aNm +dnR +aPS +cXc +aSo +dnh +avB +aWv +aYm +aZA +bbq +bcC +bed +bfP +bhJ +bjt +bkU +alq +atj +brw +btv +dbj +byN +byN +byN +byN +byN +bFA +byN +byN +byN +byN +byN +bPf +byN +byN +cjr +bTe +bVB +bVC +nAG +pCV +caW +alq +cdY +bPl +avr +chF +dvY ckz -clM -cky -coI -cmS -crm -cmS -cmS -cvs -cwu -cky -cyF -czC -cAQ -cBZ -cCW -cBT -cFa -czC +ciL +dwY +ciL +ciL +cgs +csc +dvY +evy +krD +lsv +txj +eEe +cxO +ngl +krD aaa aaa aaa aaf aaf aaa -anY +anT aaf -cOY -cOY -cOY -cOY -cOY +dbL +dbL +dbL +dbL +dbL aaf -cUw +dbS aaf -cOY -cOY -cOY -cOY -cOY +dbL +dbL +dbL +dbL +dbL aaa -anY +anT aaa aaa aaa @@ -116204,113 +116622,113 @@ aaa aaa aaa aaa -aae +aai aaa aaa -adi -adF -adi -aeA -afA -afA -afA -afA -afA -afA -afA -afA -afA -afA -aqy -als -als -als -als -als -axV -ayV -aAp -aBH -aCV -avU -aFN -aHE -aFM -aKg -aCV -aCV -aOv -aCV -aRu -aSQ -aCV -aCV -avU -aYH -baE -bbY -bdS -bfk -bgL -aYH -bkn -bmb -bnG -bpp -brv -btQ -bvR -bxt -bzx -bBp -bvR -bEM -bzx -bIv -bKe -bLD -bKe -bPe -bKe -bSB -bKe -bVx -bWC -bXV -bZe -bZe -ccj -cdv -cdA -cdA -cdA -cdA -cdA -cdA -cdA -coJ -cql -crn -csH -ctY -cmS -cwu -cky -cyG -czC -cAR -cCa -cCX -cBT -cFb -czC +adl +adI +adl +aeC +afD +afD +afD +afD +afD +afD +afD +afD +afD +afD +aqo +dnh +dnh +dnh +dnh +dnh +axM +ayQ +aAn +aIv +aCM +avF +aLJ +aNS +aHW +dhH +aCM +aCM +dCs +aCM +aPT +aRi +aCM +aCM +avF +aWv +aYn +aZB +bbr +bcD +bee +aWv +bhP +bjB +ble +bmT +bpc +dhQ +btw +buX +bwY +bGp +btw +dCV +bwY +bFB +bHl +bIE +bHl +bTd +bHl +bPg +bHl +bSc +eoK +uHc +uJU +uJU +pvA +bZA +bZE +bZE +bZE +bZE +bZE +bZE +bZE +ckA +dwQ +cnb +cou +cpK +ciL +csc +dvY +vLD +krD +jyv +ohj +nnK +cxO +gfh +krD aaa aaa aaa aaa aaf aaa -anY +anT aaf aaf aaf @@ -116318,7 +116736,7 @@ aaf aaa aaa aaa -cUv +cRO aaa aaf aaa @@ -116326,7 +116744,7 @@ aaa aaf aaa aaa -anY +anT aaa aaa aaa @@ -116461,129 +116879,129 @@ aaa aaa aaa aaa -aad +aag aaa aaa aaa -adG +bii aaa -aeA -afA -afA -afA -afA -afA -afA -afA -afA -afA -afA -aqy -arT -atp -auD -apj -als -axW -apj -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -aYI -aYI -aYI -aYI -aYI -aYI -aYI -bko -blT -bnH -bpq -bpl -bpl -bpl -bxu -bpl -bpl -bpl -bpl -bpl -bpl -bpl -bpl -bNu -bNu -bNu -bNu -bNu -bpl -bpl -bpl -bZf -bZf -caM -cdw -cdA -cgC -cia -cjs -ckA -clN -cdA -coK -cqm -cro -csI -ctZ -cvt -cwv -cky -cyG -czC -czC -cCb -czC -cCb -czC -czC +aeC +afD +afD +afD +afD +afD +afD +afD +afD +afD +afD +aqo +arG +asB +aup +dnR +dnh +axN +dnR +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +aWw +aWw +aWw +aWw +aWw +aWw +aWw +bhQ +bjt +blf +bmU +alq +alq +alq +buY +alq +alq +alq +alq +alq +alq +alq +alq +bKr +bKr +bKr +bKr +bKr +alq +alq +alq +apb +apb +bXa +bZz +bZE +ccE +cdZ +cfn +cgt +chG +bZE +ckB +cmb +cnc +cov +cpL +crb +csd +dvY +vLD +krD +krD +noG +krD +noG +krD +krD aaa aaa aaa aaa aaf aaa -aqL +aqB aaa -cOW -cOW -cOW -cOW -cOW +dbJ +dbJ +dbJ +dbJ +dbJ aaf -cUv +cRO aaa -cOW -cOW -cOW -cOW -cOW +dbJ +dbJ +dbJ +dbJ +dbJ aaf -anY +anT aaa aaa aaa @@ -116718,98 +117136,98 @@ aaa aaa aaa aaa -aae +aai aaf aaf aaf -aae +aai aaf -aeA -afA -afA -afA -afA -afA -afA -afA -afA -afA -afA -aqy -arU -atq -auE -avG -als -axX -anR -awW -aBI -aCW -aEp -aFO -aHF -awW -aKh -aKi -aNb -aNb -awW -aRv -aSR -aUc -aVC -awW -aYJ -baF -bbZ -bdT -bfl -bgM -aYI -bkm -bmc -bnI -bpr -brw -bpr -bvS -bxv -bzy -bBq -bDc -bEN -bGx -bIw -bKf -bLE -bNv -bPf -bQU -bSC -bNu -bVy -bSH -bpl -bZg -caK -cck -cdw -cdA -cgD -cib -cib -ckB -clO -cdA -cky -cky -cky -cky -cua -cky -cky -cky +aeC +afD +afD +afD +afD +afD +afD +afD +afD +afD +afD +aqo +arH +dpk +auq +dqp +dnh +azr +dnz +axY +aBD +aCN +aEh +aFp +aGQ +axY +aJj +aJk +aMa +aMa +axY +aPU +aRj +aSp +aTD +axY +aWx +aYo +aZC +bbs +bcE +bef +aWw +bhO +bjC +blg +bmV +bpd +bmV +btx +buZ +bwZ +byP +bAx +bCe +bDM +bFC +bHm +bIF +bKs +bLU +bNL +bPh +bKr +bSd +bPm +alq +bVC +bWY +bYr +bZz +bZE +ccF +cea +cea +cgu +chH +bZE +dvY +dvY +dvY +dvY +dxk +dvY +dvY +dvY aaf aaf aaf @@ -116824,23 +117242,23 @@ aaa aaf aaf aaf -anY +anT aaa -cOX -cQb -cQb -cQb -cQb -cTD -cUv -cVj -cVP -cVP -cVP -cVP -cXn +dbK +dbM +dbM +dbM +dbM +dbO +cRO +cSC +dbV +dbV +dbV +dbV +dbW aaf -anY +anT aaa aaa aaa @@ -116979,94 +117397,94 @@ aaa aaa aaa aaa -aad +aag aaa -aeA -afA -afA -afA -afA -afA -afA -afA -afA -afA -afA -aqy -arV -atr -auF -ats -auI +aeC +afD +afD +afD +afD +afD +afD +afD +afD +afD +afD +aqo +arI +atd +bai +ate +dDL +axP +dnS axY -apk -awW -aBJ -aAs -aEq -aFP -aHG -awW -aKi -aKi -aNb -aOw -awW -aRw -aSS -aUd -aVD -awW -aYK -baG -bca -bdU -bfm -bgN -aYI -bkp -bmd -bnJ -bps -brx -btR -btR -bxw -bzz -btR -bDd -bDd -bGy -bIx -bKg -bLF -bNw -bPg -bQV -bSD -bNu -bVz -bWD -bpl -bZh -caL -ccl -cdx -cdA -cgE -cic -cjt +aBE +aCO +aEi +aFq +aGR +axY +aJk +aJk +aMa +aNn +axY +aPV +aRk +aSq +aTE +axY +aWy +aYp +aZD +bbt +bcF +beg +aWw +bhR +bjD +blh +bmW +bpe +bry +bry +bva +bxa +bry +bAy +bAy +bDN +bFD +bHn +bIG +bKt +bLV +bNM +bPi +bKr +bNO +bTf +alq +diu +bWZ +bYs +bZB +bZE +ccG +ceb +cfo +cgv +chI +ciY ckC -clP -cnh -coL -cqn -cqn -cqn -cub -cvu +cmc +cmc +cmc +cpM +crc aaf -cxG +ctl aaa aaf aaf @@ -117076,28 +117494,28 @@ aaf aaf aaf aaf -cHW -cHW +lMJ +lMJ aaf aaa aaf -anY +anT aaf -cOY -cOY -cOY -cOY -cOY +dbL +dbL +dbL +dbL +dbL aaf -cUv +cRO aaf -cOY -cOY -cOY -cOY -cOY +dbL +dbL +dbL +dbL +dbL aaa -anY +anT aaa aaa aaa @@ -117236,94 +117654,94 @@ aaa aaa aaa aaa -aae +aai aaa -aeB -afz -afz -ahm -aia -acN -acN -alo -amF -amF -amF -aqz -als -apj -auG -apk -als -axZ -apk -awW -aBK -aCX -aEr -aFQ -aHH -awW -aKj -aLs -aEL -aOx -awW -aRx -aST -aUe -aVD -awW -aYL -baG -bcb -bdV -bfn -bgO -aYI -bkq -bme -bnK -bpt -bry -btS -bvT -bxx -bzA -bBr -bDe -bEO -bvT -bIy -bKh -bLG -bNu -bPh -bQW -bSE -bNu -bfw -bWE -bpl -bZi -caM -ccm -cdy -ceU -cgF -cid -cju -cjv -clQ -ckG -ckG -ckG -ckG -ckG -cuc -cvv -acg -acg +aeE +afC +afC +aho +aic +acQ +acQ +aln +amE +amE +amE +aqp +dnh +dnR +aus +dnS +dnh +aAm +dnS +axY +aBF +aCP +aEj +aFr +aGS +axY +aJl +aKx +aJu +aNo +axY +aPW +aRl +aSr +aTE +axY +aWz +aYp +aZE +bbu +bcG +beh +aWw +bhS +bjE +bli +bmX +bpf +brz +bty +bvb +bxb +byQ +bAz +bCf +bty +bFE +bHo +bIH +bKr +bLW +bNN +bPj +bKr +aqr +bTg +alq +bVE +bXa +bYt +bZC +caX +ccH +cec +cfp +cfq +chJ +cgz +cgz +cgz +cgz +cgz +cpN +crd +ack +ack aaf aaf aaa @@ -117338,7 +117756,7 @@ aaa aaf aaf aaf -anY +anT aaa aaa aaf @@ -117346,7 +117764,7 @@ aaf aaf aaa aaa -cUv +cRO aaa aaa aaf @@ -117354,7 +117772,7 @@ aaf aaf aaf aaa -aqL +aqB aaf aaa aaa @@ -117498,89 +117916,89 @@ aaa aaa aaf aaa -acM -aib +acP +aid aiZ ajX -alp -acM -anR -apj -aqA -als -als -als -als -als -aya -ayW -awW -aBL -aAu -aEs -aFR -aHI -awW -aKk -aEL -aNc -aOy -awW -aRy -aSU -aUf -aRy -awW -aYI -baH -bcc -bdW -bfn -bgP -aYI -bkr -bkr -bnL -bpu -brz -bkr -bkr -bxy -bzB -bzB -bDf -bEP -bGz -bIz -bzJ -bzF -bzB -bNu -bNu -bNu -bNu -aYQ -aYQ -bpl -bpl -caN -ccn -cdz -ceV -cgG -cie -cjv +alo +acP +dnz +dnR +dht +dnh +dnh +dnh +dnh +dnh +axQ +ayR +axY +aBG +dCk +aEk +aFs +aGT +axY +aJm +aJu +aMb +fdr +axY +aPX +aRm +aSs +aPX +axY +aWw +aYq +aZF +bbv +bcG +bei +aWw +bhT +bhT +blj +bmY +dBI +bhT +bhT +bvc +bxc +bxc +bAA +bCg +dBK +bFF +bxk +bxg +bxc +bKr +bKr +bKr +bKr +apc +apc +alq +alq +bXb +bYu +bZD +caY +ccI +ced +cfq +cgw +cfs +ciZ ckD -cjx -cni -coM -cni -crp -ckG -ckG -cvw +ciZ +cnd +cgz +cgz +cre aaa -acg +ack aaa aaa aaa @@ -117595,23 +118013,23 @@ aaa aaa aaf aaa -aqL +aqB aaf -cOW -cOW -cOW -cOW -cOW +dbJ +dbJ +dbJ +dbJ +dbJ aaf -cUv +cRO aaa -cOW -cOW -cOW -cOW -cOW +dbJ +dbJ +dbJ +dbJ +dbJ aaf -anY +anT aaa aaa aaa @@ -117755,89 +118173,89 @@ aaf aaf aaf aaa -acM -aic +acP +aie aja ajY -alq -amG -anS -apk -aqB -apk -apk -auH -apk -apk -ayb -apk -awW -aBM -aCY -aEt -aFS -aHJ -awW -awW -aLt -aLt -awW -awW -aRz -aSV -aUg -aVE -aXh -aYM -baG -bcd -bdX -bfo -bgQ -bit -bks -bmf -bnM -bpv +alp +amF +anN +dnS +doh +dnS +dnS +dCi +dnS +dnS +axO +dnS +axY +aBH +aCQ +aEl +aFt +aGU +axY +axY +aKz +aKz +axY +axY +aPY +aRn +aSt +aTF +aUY +aWA +aYp +aZG +bbw +bcH +bej +bfQ +bhU +bjF +blk +bmZ +bpg brA -btT -bvU -bxz -bzC -bBs -bDg -bEQ -bGA -bIA -bKi -bLH -bNx -aYT -bQX -bSF -bUk -bVA -bWF -bXW -bZj -caO -aYQ -cdA -ceW -cgH -cif -cjw +bep +bvd +bxd +byR +bAB +bCh +bDO +bFG +bHp +bII +aaO +atm +bLX +bPk +bQQ +bSe +bTh +bUx +aut +bXc +apc +bZE +caZ +ccJ +cee +cfr +cgx +chL +cja ckE -clR -cnj -coN -cqo -crq -csJ -cud -cvx +cmd +cne +cNw +cOa +crf aaa -acg +ack aaa aaa aaa @@ -117852,21 +118270,21 @@ aaa aaa aaf aaa -anY +anT aaf -cOX -cQb -cQb -cQb -cQb -cTD -cUv -cVj -cVP -cVP -cVP -cVP -cXn +dbK +dbM +dbM +dbM +dbM +dbO +cRO +cSC +dbV +dbV +dbV +dbV +dbW aaa aaf aaa @@ -118012,89 +118430,89 @@ aaa aaa aaf aaa -acM -acN -acN -acN -acM -acM -als -als -als -als -als -als -als -als -ayc -awW -awW -aBN -aCZ -aEu -aFT -aBN -aBN -aKl -aAs -aFP -aOz -aBN -aRA -aSW -aUh -aVF -aXi -aYN -baI -bce -bdY -bfp -bgR -biu -bkt -bmg -bnN -bpw -brA -btU -bvU -bxA -bzC -bBt -bDh -bER -bGB -bIB -bKj -bLI -bNy -aYT -bQY -bSG -aYQ -bef -aYQ -bXX -bpl -caP -cco -cdA -ceX -cgI -cig -cjx +acP +acQ +acQ +acQ +acP +acP +dnh +dnh +dnh +dnh +dnh +dnh +dnh +dnh +aBC +axY +axY +aBI +aCR +aEm +aFu +aBI +aBI +aJn +aCO +aFq +aNq +aBI +aPZ +aRo +aSu +aTG +aUZ +aWB +aYr +aZH +bbx +bcI +bek +bfR +bhV +bjG +bll +bna +bpg +brB +bep +bve +bxd +byS +bAC +dBJ +dCY +bFH +bHq +bIJ +aiN +atm +bLY +bPl +apc +aqq +apc +bUy +alq +bXd +apf +bZE +cba +ccK +cef +cfs +czH +cLC +cjb ckF -clS -cnk -coO -cnk -crr -ckG -ckG -cvw +cjb +cnf +cgz +cgz +cre aaa -acg +ack aaa aaa aaa @@ -118109,21 +118527,21 @@ aaa aaa aaf aaa -anY +anT aaf -cOY -cOY -cOY -cOY -cOY +dbL +dbL +dbL +dbL +dbL aaf -cUx +dbT aaf -cOY -cOY -cOY -cOY -cOY +dbL +dbL +dbL +dbL +dbL aaa aaa aaa @@ -118273,85 +118691,85 @@ aaa aaa aaa aaf -alr +dni +amG amH -amI -anS -apk -arW -arV -als -avH -aqB -ayb -awW -aAq -aBO -aDa -aEv -aFU -aHK -aIU -aEq -aLu -aNd -aEq -aQf -aEq -aSX -aUi -aVG -aXj -aYI -aYI -aYI -aYI -aYI -aYI -aYI -bku -bmg -bnO -bpx -brA -btV -bvU -bxB -bzC -bBu -bDi -bES -bGC -bIC -bKk -bLJ -bNz -aYT -bQZ -bSH -aYQ -bVB -aYQ -bzB -bzB -caQ -bzB -bzB -bzB -cgJ -bzB -cjy -ckG -ckG -ckG -ckG -ckG -crs -ckG -cue -acg -acg -acg +anN +dnS +arJ +arI +dnh +dqu +doh +axO +axY +aAo +aBJ +ayT +aEn +aFv +aGV +aHX +aEi +aKA +aMc +aEi +aOO +aEi +aRp +aSv +aTH +aVa +aWw +aWw +aWw +aWw +aWw +aWw +aWw +bhW +bjG +blm +bnb +bpg +brC +bep +bCK +bxd +byT +bAD +bCj +bDP +bFI +bHr +bIK +bBt +atm +bLZ +bPm +apc +bSf +apc +bxc +bxc +bXe +bxc +bxc +bxc +ccL +bxc +cft +cgz +cgz +cgz +cgz +cgz +cng +cgz +cpP +ack +ack +ack aaa aaa aaa @@ -118366,7 +118784,7 @@ aaa aaa aaf aaa -anY +anT aaa aaa aaf @@ -118374,7 +118792,7 @@ aaf aaa aaa aaa -cUt +dbR aaa aaf aaa @@ -118530,73 +118948,73 @@ aaf aaf aaf aaf -als -amI -als -apl -apk -arX -apk -als -als -als -ayb -awW -aAr -aBP -aDb -aEw -aFV -aHL -aIV -aIV -aLv -aNe -aOA -aQg -aRB -aSY -aUj -aVH -aXk -aYO -baJ -bcf -bdZ -bfq -aBN -biv -bkv -bmh -bnP -bpy -brB -btW -bvU -bxC -bzC -bBv -bDj -bET -bER -bID -bKl -bLK -bNA -aYT -bRa -bSI -bUl -aYQ -bWG -bzB -bZk -caR -ccp -cdB -ceY -cgK -bzB +dnh +amH +dnh +apd +dnS +arK +dnS +dnh +dnh +dnh +axO +axY +aAp +aBK +aCS +aEo +aFw +aGW +aHY +aHY +aKB +aMd +aNr +aOP +dCw +aRq +aSw +aTI +aVb +aWC +aYs +aZI +bby +bcJ +aBI +byK +bhX +bjH +bln +bnc +bph +brD +bep +bvg +bxd +byU +bAE +bCk +dBJ +bFJ +bHs +bIL +cVD +atm +cTw +bPn +bQR +apc +anM +bxc +bVF +bXf +bYv +bZF +cbb +ccM +bxc aaf aaf aaf @@ -118623,22 +119041,22 @@ aaa aaa aaf aaa -anY -anY -anY -anY -anY +anT +anT +anT +anT +anT aaa aaf aaa -cUt +dbR aaa aaa aaa aaf aaf -anY -anY +anT +anT aaa aaa aaa @@ -118788,81 +119206,81 @@ aaf aaa aaf aaa -acg -als -apm -apk -arY -ats -auI -avI -awV -ayd -awW -aAs -aBQ -aDc -aEx -aFW -aHM -aFW -aFW -aFW -aNf -aFW -aQh -aFW -aSZ -aUk -aVI -aXl -aYP -baK -bcg -bea -bfr -bgS -biw -bkw -bmi -bml -bnQ -brC -btX -bvV -bxD -bzC -bBw -bDk -bEU -bGD -bIE -bzJ -bLL -bNB -bzB -bzB -bzB -bzB -bzB -bzB -bzB -bZl -caS -bDt -cdC -ceZ -cgL -cih -cjz -bDw -bDw -bDw -bDw -bDw +ack +dnh +ape +dnS +arL +ate +dDL +avt +awJ +axS +axY +aCO +ddW +aCT +aEp +aKC +aFx +aKC +aKC +aKC +aMe +aKC +aOQ +aKC +aRr +aSx +aTJ +dfX +aWD +aVc +aZJ +bbz +bcK +bel +bfT +bhY +bjI +bjL +blo +bpi +brE +btz +bvh +bxd +byV +bAF +bCl +bDQ +bFK +bxk +bIM +bKu +bxc +bxc +bxc +bxc +bxc +bxc +bxc +bVG +bXg +bAO +bZG +cbc +cUR +cVy +cVz +bAR +bAR +bAR +bAR +bAR aaf aaa -aae +aai aaf aaf aaa @@ -118880,18 +119298,18 @@ aaa aaf aaf aaa -anY +anT aaa aaa aaf aaa aaa -anY +anT aaf -cUy +dbU aaf -aqL -aab +aqB +aac aaa aaa aaa @@ -119045,83 +119463,83 @@ aaf aaf aaf aaf -acg -alr -apn -apk -apk -apk -als -avJ -awW -aye -awW -aAt -aBR -aDd -aEy -aFX -aHN -aIW -aKm -aFX -aNg -aFX -aQi -aRC -aHN -aFX -aVJ -aXm -aBN -baL -bch -beb -bfs -aBN -biv -bkx -bmg -bnQ -bpz -bnQ -btY -bvU -bxE -bzB -bzB -bzB -bEV -bGE -bBB -bzK -bLM -bzF -bPi -bPi -bSJ -bSJ -bzB -bWH -bXY -bZm -caT -bRf -bRf -cfa -cgM -cii -cjA -ckH -clT -cnl -cnl -bDw +ack +dni +bcO +dnS +dnS +dnS +dnh +avu +axY +axT +axY +aAr +ddX +aCU +aEq +aTO +aGX +aHZ +aJp +aTO +aSB +aTO +aOR +aQa +aGX +aTO +aTK +aVd +aBI +aYt +aZK +bbA +dgz +aBI +byK +bhZ +bjG +blo +bnd +blo +brF +bep +bvi +bxc +bxc +bxc +bCm +bDR +bza +bxl +bIN +bxg +bMa +bMa +bPo +bPo +bxc +bTi +bUz +bVH +bXh +bCi +bCi +cbd +ccN +ceg +cfu +cgA +chN +cjc +cjc +bAR aaf aaa -bBJ +bzi aaa -aae +aai aaa aaa aaa @@ -119137,17 +119555,17 @@ aaa aaa aaf aaa -anY +anT aaa aaa aaf aaf aaa -aqL +aqB aaa aaa aaa -anY +anT aaf aaf aaa @@ -119303,82 +119721,82 @@ aaa aaf aaa aaf -als -apo -aqC -arZ -att -att -avK -awW -ayf -ayX -aAu -aBS -aDe -aEz -aFY -aEI -aIX -awW -aEI -aNh -aEI -aQj -aIX -aEI -aFY -aEz -aXn -awW -baM -baM -baM -baM -baM -baM -bky -bmg -bnQ -bpA -bnQ -btZ -bvU -bvU -bzB -bBx -bDl -bEW -bGF -bIF -bKm -bLN -bNC -bPj -bRb -bSK -bSK -bVC -bWI -bWI -bZn -caU -ccq -ccq -cfb -cgN -bBB +dnh +apg +aqs +arM +dBu +dBu +avv +axY +axU +ayS +dCk +ddY +deb +deh +aFz +aCZ +deM +axY +aCZ +aMg +aCZ +dfh +deM +aCZ +aFz +deh +aVe +axY +aYu +aYu +aYu +aYu +aYu +aYu +bia +bjG +blo +bne +blo +brG +bep +bep +bxc +byW +bAG +bCn +dBM +bFL +bHt +bIO +bKv +bMb +bNP +bPp +bPp +bSg +bDS +bDS +bVI +bXi +bYw +bYw +cbe +ccO +bza aaf -bGQ -clU -cnm -coP -bDw +gJs +chO +cjd +ckG +bAR aaf aaa -bBJ +bzi aaa -bBK +bzj aaf aaf aaf @@ -119389,8 +119807,8 @@ aaa aaa aaf aaf -cHW -cHW +lMJ +lMJ aaf aaf aaa @@ -119400,11 +119818,11 @@ aaa aaa aaa aaa -anY -anY -anY -anY -anY +anT +anT +anT +anT +anT aaa aaa aaa @@ -119563,83 +119981,83 @@ ajb ajb ajb ajb -asa -atu -auJ -avL -atu -ayg -ayY -aAv -aBT -aDe -aEA -aFZ -aHO -aHO -aHO -aHO -aNi -aHO -aHO -aHO -aHO -aUl -aVK -aXn -aYQ -baM -bci -bec -bft -bgT -bix -bkz -bmj -bnR -bpB -brD -bua -bvW -bxF -bzC -bBy -bDm -bEX -bGG -bIG -bKn -bLO -bND -bPk -bRc -bSL -bSL -bKn -bWJ -bKn -bZo -caV -ccr -bPo -cfc -cgO -cij -cjB -ckH -clV -cnn -cnl -bDw +arN +atf +auu +avw +atf +axV +ddP +aAt +aBL +deb +dei +aFA +deB +deB +deB +deB +aMh +deB +deB +deB +deB +aSz +aTM +aVe +apc +aYu +aZL +bbB +bcL +bem +bfV +bib +bjJ +blp +bnf +bpj +brH +btA +bvj +bxd +byX +bAH +bCo +bDT +bFM +bHu +bIP +bKw +bMc +bNQ +bPq +bPq +bHu +bTj +bHu +bVJ +bXj +bYx +bMg +cbf +ccP +ceh +cfv +cgA +chP +cje +cjc +bAR aaf aaa -bBJ +bzi aaa -bBK +bzj aaa aaa aaa -aab +aac aaf aaf aaf @@ -119815,84 +120233,84 @@ aaa aaf ajb ajZ -alt -amJ -anT -app -aqD -asb -atv -auK -avM -awX -ayh -ayZ -aAw -aBU -aDf -aEB -aGa -aHP -aIY -aKn -aLw -aNj -aOB -aQk -aRD -aTa -aUm -aVL -aXo -aYQ -baM -bcj -bed -bfu -bgU -biy -bkA -bmk -bnS -bnS -brE -bub -bvX -bxG -bzD -bBz -bDn -bEY -bGH -bIH -bDt -bLP -bNE -bPl -bzC -bSM -bUm -bSM -bzC -bXZ -bZp -caW -ccs -cdD -cfd -cgP -bBB +als +amI +anO +aph +aqt +arO +atg +auv +avx +awK +axW +aAu +ddQ +aBM +aCV +aEr +aFB +aGY +daW +dBw +aKF +aMi +cpR +dfi +aQd +dBA +aSA +aTN +aVf +apc +aYu +aZM +bbC +bcM +ben +bfW +bic +bjK +blq +blq +bpk +brI +btB +bvk +bxe +byY +bAI +bCp +bDU +bFN +bAO +bIQ +bKx +bMd +bxd +bPr +bQS +bPr +bxd +bUA +bVK +bXk +bYy +bZH +cbg +ccQ +bza aaf -bDw -bDw -bDw -bDw -bDw +bAR +bAR +bAR +bAR +bAR aaf aaf -bBJ +bzi aaa -bBK +bzj aaf aaa aaa @@ -120055,101 +120473,101 @@ aaa aaa aaa aaa -aad -aae -aad -aad -aad -aac -aad -aad -aad -aae -aad -aad -aad -aae -aad +aag +aai +aag +aag +aag +aaj +aag +aag +aag +aai +aag +aag +aag +aai +aag ajb aka -alu -amK -anU -apq -aqE -asc +alt +amJ +anP +api +aqu +arP ajb -auL -avN +auw +avy ajb -ayi -aza -aAx -aBV -aDg -aEB -aGb -aHQ -aHQ -aIZ -aLx -aNk -aOC -aIZ -aRE -aTb -aUn -aVL -aXn -aYQ -baM -bck -bee -bfv -bgV -biz -bkB -bml -bnT -bpC -brF -buc -bvY -bxH -bzE -bBA -bDo -bEZ -bGI -bII -bKo -bLQ -bNF -bPm -bRd -bRd -bUn -bRd -bRd -bYa -bII -caX -bLR -cdE -cfe -cgQ -cii -cjA -ckH -clW -cno -cno -bDw +axX +ayV +aAv +aBN +aCW +aEr +aFC +aGZ +aGZ +dlI +aKG +aMj +dBy +dlI +aQe +aRv +dfD +aTN +aVe +apc +aYu +aZN +bbD +bcN +beo +bfX +bid +bjL +blr +bng +bpl +btD +bvn +bvl +bxf +byZ +bAJ +bCq +bDV +bFO +bHv +bIR +bKy +bMe +bNR +bNR +bQT +bNR +bNR +bUB +bFO +bXl +bIS +bZI +cbh +ccR +ceg +cfu +cgA +chQ +cjf +cjf +bAR aaf aaa -bBJ +bzi aaa -aae +aai aaa aaa aaa @@ -120312,7 +120730,7 @@ aaa aaa aaa aaa -aad +aag aaa aaa aaf @@ -120330,83 +120748,83 @@ aaf ajb akb ajZ -amL +amK ajZ -apr -aqF -asd +apj +aqv +arQ ajb ajb -avO -awW -awW -azb -azf -aBW -aDh -aEC -aGb -aHR -aHR -aIZ -aLy -aNl -aOD -aIZ -aRF -aRF -aUo -aVM -aXp -aYR -baM -bcl -bcl -bcl -bcl -bcl -bkC -bmm -bnU -bkr -brG -bkr -bkr -bxI -bzF -bBB -bBB -bBB -bBB -bIJ -bBB -bLR -bNG -bPn -bzC -bSN -bSN -bVD -bzC -bYb -bZp -caY -bLR -cdE -cff -cgR -bBB +avz +axY +axY +ayW +bTq +aBO +aCX +dej +aFC +deC +deC +dlI +aKH +aMk +aNu +dlI +dfp +dfp +dfE +dfP +dfY +dgc +aYu +cXA +cXA +cXA +cXA +cXA +bie +bjM +bls +bhT +bpm +bhT +bhT +bvm +bxg +bza +bza +bza +bza +bFP +bza +bIS +bKz +bMf +bxd +bPs +bPs +bSh +bxd +bUC +bVK +bXm +bIS +bZI +cbi +ccS +bza aaf -bGQ -clX -cnp -coQ -bDw +gJs +chR +cjg +ckH +bAR aaf aaa -bBJ +bzi aaa -bBK +bzj aaa aaa aaa @@ -120569,101 +120987,101 @@ aaa aaa aaa aaa -aad +aag aaa -abs -abL -ach +abv +abO +acl aaa -abs -abL -ach +abv +abO +acl aaa -abs -abL -ach +abv +abO +acl aaa aaf ajb akc -alu -amM -anV -aps -aqG -ase -atw +alt +amL +anQ +apk +aqw +arR +ath ajb -avP -awW -ayj -azc -aAy -azd -aDi -aED -aGc -aHS -aIZ -aKo -aLz -aNk -aOE -aQl -aIZ -aHS -aUp -aVL -aXn -aYS -baN -aYR -bef -bfw -bgW -biA -biA -biA -bkr -bkr -brH -bkr -bvZ -bxJ -bzG -bBC -bDp -bFa -bGJ -bIK -bKp -bLS -bNH -bPo -bRe -bSO -bUo -bVE -bWK -bGJ -bIK -caY -cct -cdF -cfg -cgO -cij -cjC -ckH -clY -cnq -cno -bDw +avA +axY +axZ +ayX +ddS +bUw +aCY +dek +der +deD +dlI +aJv +aKI +tDM +dfb +dfj +dlI +deD +dfF +aTN +aVe +aWH +dgi +dgc +aqq +aqr +aWu +bif +bif +bif +bhT +bhT +brK +bhT +bvo +bvr +bxh +bzb +bAK +bCr +bDW +bFQ +bHw +bIT +bKA +bMg +bNS +bPt +bQU +bSi +bTk +bDW +bFQ +bXm +bYz +bZJ +cbj +ccP +ceh +cfw +cgA +chS +cjh +cjf +bAR aaf aaa -aae +aai aaa -bBK +bzj aaf aaa aaa @@ -120826,101 +121244,101 @@ aaa aaa aaa aaa -aad +aag aaf -abs -abM -ach +abv +abP +acl aaa -abs -abM -ach +abv +abP +acl aaa -abs -abM -ach +abv +abP +acl aaa aaf ajb ajZ -alv -amN -anW -apt -aqH -asf -atx +alu +amM +anR +apl +aqx +arS +ati ajb -avQ -awW -ayk -azd -aAz -aBX -aDj -aEE -aGd -aHT -aJa -aKp -aLA -aNl -aOF -aQm -aRG -aHT -aUq -aVN -aXq -aYQ -aYQ -bcm -aYQ -bfx -aYT -biB -biA -bmn -bkr -bpD -brI -bud -bwa -bxK -bzH -bBD -bDq -bFb -bGK -bIL -bKq -bLT -bNI -bPp -bRf -bRf -bNK -bRf -bRf -bYc -bRf -caZ -bLR -cdG -cfh -cgO -cij -cjD -bDw -bDw -bDw -bDw -bDw +avB +axY +ddO +bUw +ddT +ddZ +ded +del +des +djt +daY +daZ +dbb +aMk +aNv +dfk +dfq +djt +dfG +dfQ +dfZ +apc +apc +dgo +apc +cXZ +atm +bfZ +bif +bfY +bhT +bqF +bpp +btF +bvp +bvv +bxi +bzc +bAL +ddF +bDX +bFR +bHx +bIU +bKB +bMh +bCi +bCi +bKD +bCi +bCi +bUD +bCi +dDm +bIS +bZK +cbk +ccP +ceh +cfx +bAR +bAR +bAR +bAR +bAR aaf aaf -bBJ +bzi aaa -bBK +bzj aaa aaa aaa @@ -121083,19 +121501,19 @@ aaa aaa aaa aaa -aad +aag aaf -abs -abM -ach +abv +abP +acl aaf -abs -abM -ach +abv +abP +acl aaf -abs -abM -ach +abv +abP +acl aaf aaf ajb @@ -121108,76 +121526,76 @@ ajb ajb ajb ajb -avR -awW -ayl -azd -aAA -aBY -aDk -aEB -aGd -aHT -aJa -aKp -aLA -aNm -aOF -aQm -aJa -aTc -aUq -aVO -aXn -aYT -baO -bcn -beg -bfy -aYT -biC -bkD -biC -bkr -bpE -brJ -bue -bkr -bxL -bzI -bBE -bDr -bFc -bGL -bIM -bKr -bLU -bNJ -bPq -bRg -bPo -bUp -bPo -bPo -bYd -bZq -cba -ccu -cdF -cfi -bNN -cik -cjE +avC +axY +aya +bUw +ddU +aBQ +dee +aEr +des +djt +daY +daZ +dbb +dfa +aNv +dfk +daY +djx +dfG +cXz +aVe +atm +alr +dgp +cXI +cYj +atm +bga +big +bga +bhT +bpv +brL +btE +bhT +bvs +bxj +bzd +bAM +bCt +bDY +bFS +bHy +bIV +bKC +bMi +bNU +bMg +bQV +bMg +bMg +bUE +bVL +bXn +bYA +bZJ +cbl +bKG +cei +cfy +cgB +chT +cji ckI -clZ -cnr -coR -bDw +bAR aaf aaa -bBK +bzj aaf -aae +aai aaf aaa aaa @@ -121334,25 +121752,25 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa aaa aaa -aad +aag aaf -abs -abM -ach +abv +abP +acl aaa -abs -abM -ach +abv +abP +acl aaa -abs -abM -ach +abv +abP +acl aaa aaf aaf @@ -121362,79 +121780,79 @@ aaf aaf aaf aaf +dni +dps +dpL +avD +axY +ddO +bUw +ddV +aBQ +dee +aEr +aKL +djt +daY +deS +dbb +aMk +aNv +dfm +daY +djt +dbg +dfR +dga +dgd +dgj +dgp alr -aty -auM -avS -awW -ayk -azd -aAB -aBY -aDk -aEB -aGe -aHT -aJa -aKq -aLA -aNl -aOF -aQn -aJa -aHT -aUr -aVP -aXr -aYU -baP -bcn -baO -aYT -aYT -biD -bkE -biD -bkr -bpF -brK -buf -bwb -bxM -bzJ -bBF -bDs -bFd -bGM -bIN -bKs -bLV -bNK -bPr -bRh -bSP -bSP -bSP -bWL -bYe -bNK -cbb -ccv -cdE -cfj -cgP -bBB +atm +atm +bgb +cTu +bgb +bhT +brJ +brN +btG +bvq +bxm +bxk +bze +bAN +bCu +bDZ +bFT +bHz +bIW +bKD +dhe +dhg +bPu +bPu +bPu +bTl +bUF +bKD +bXo +bMj +bZI +cVJ +ccQ +bza aaf -bGQ -cma -cns -coS -bDw +gJs +chU +cjj +ckJ +bAR aaf aaa -bBJ +bzi aaa -bBK +bzj aaa aaa aaa @@ -121594,104 +122012,104 @@ aaa aaa aaa aaa -aac -aae -aac -aad +aaj +aai +aaj +aag aaa -abs -abM -ach +abv +abP +acl aaa -abs -abM -ach +abv +abP +acl aaa -abs -abM -ach +abv +abP +acl aaa aaa aaf aaa aaa akd -alw -apu -apu -apu -apu -apj -avT -awW -aym -aze -aAC -azd -aDi -aEF -aGf -aHS -aIZ -aIZ -aLB -aNn -aOG -aIZ -aIZ -aHS -aUs -aVQ -aXs +alv +apm +apm +apm +apm +dnR +avE +axY +ayc +aza +aAw +bUw +aCY +dem +aFD +deD +dlI +dlI +deV +dlN +dfc +dlI +dlI +deD +dfI +dfS +aVh aaf -baQ -bco -beh -bfz -bgX -biD -bkF -biD -bnV -aOS -brL -aOS -bkr -bxN -bzK -bBG -bDt -bFe -bGN -bIO -bKr -bLW -bNL -bNL -bRi -bSQ -bNL -bNL -bNL -bYf -bNL -cbc -bNL -cdH -cfk -cgS -cik -cjE -ckJ -cmb -cnt -coR -bDw +aYx +dgr +dgw +dgA +dgI +bgb +cTi +bgb +sJW +aNC +brM +aNC +bhT +bwl +bxl +bzf +bAO +bCv +bEa +bFU +bHy +bIX +bKE +bKE +dhh +bPv +bKE +bKE +bKE +bUG +bKE +bXp +bKE +bZL +cbn +ccT +cei +cfy +cgC +chV +cjk +ckI +bAR aaf aaa -bMf +bJf aaf -bNR +bKK aaf aaa aaa @@ -121851,104 +122269,104 @@ aaa aaa aaa aaa -aad +aag aaa aaf aaa aaa aaf -abN +abQ aaf aaf aaf -abN +abQ aaf aaa aaf -abN +abQ aaf aaa aaa aaf akd -alw -alw -alw -apv -aqI -asg -apu -apk -avQ -awW -awW -azf -aAD -aBW -aDl -aEG -aGg -aHU -aJb -aHU -aLC -aNo -aOH -aJb -aRH -aTd -aUt -aVR -aXs +alv +alv +alv +apn +aqy +arT +apm +dnS +avB +axY +axY +bTq +aAx +aBO +aIe +aOS +deu +deI +deN +deI +deW +aMm +dfd +deN +dft +dBB +dbh +dfT +aVh aaa -baQ -aYW -baP -acg -bgY -biD -bkG -biD +aYx +dgf +dgj +ack +dgJ +bgb +bij +bgb aaa aaf -brM +bpw aaf aaf -acg -bzB -bBH -bDu -bFf -bGO -bIP -bKt -bLX -bNM -bPs -bRj -bSR -bUq -bVF -bWM -bYg -bZr -cbd -bWM -cdI -cfl -cgT -bzB +ack +bxc +bzg +bAP +bCw +bEb +bFV +bHA +bIY +bKF +bMk +dhi +bPw +bQW +bSj +bNV +bUH +bVM +bXq +bNV +bZM +cbo +ccU +bxc aaf -bDw -bDw -bDw -bDw -bDw +bAR +bAR +bAR +bAR +bAR aaf aaa aaf aaa -bBK +bzj aaa aaa aaa @@ -122108,93 +122526,93 @@ aaa aaa aaa aaa -aad +aag aaa aaN -aaV -aaV -abt -abO -abO -acv -abO -abO -abO -abO -aeC -abO -abO -abO -abO -abO +aaY +aaY +abw +abR +abR +acz +abR +abR +abR +abR +aeF +abR +abR +abR +abR +abR ake -alx -amO -alx -apw -aqJ -ash -atz -auN -avU -awY -awY +alw +amN +sGh +apo +aqz +arU +atk +aux +avF +dqT +dqT aaf -acg -aBZ -aDm -aEH -aGh -aHV -aJc -aKr -aLD -aNp -aOI -aQo -aRI -aTe -aUu -aVS -aXr -aYV -baR -baR -baR -bfA -bgZ +ack +dea +aIc +den +dev +deJ +deO +deU +deX +dBx +dfe +dBz +dfu +dfz +dfJ +dfU +dga +dge +azd +azd +azd +dgB +dgK aaa -bkH +cUL aaa aaf aaf -brM +bpw aaa aaf aaf -bzB -bBI -bDv -bFg -bGP -bIQ -bKu -bLY -bNN -bPt -bRk -bLY -bNN -bPt -bNN -bLY -bNN -bPt -ccw -bNN -bNN -cgU -bzB +bxc +bzh +bAQ +bCx +bEc +bFW +bHB +bIZ +bKG +bMl +dhj +bIZ +bKG +bMl +bKG +bIZ +bKG +bMl +bYB +bKG +bKG +ccV +bxc aaf aaf aaf @@ -122203,9 +122621,9 @@ aaf aaf aaf aaf -bBK -bBK -bBK +bzj +bzj +bzj aaf aaf aaf @@ -122216,8 +122634,8 @@ aaa aaf aaf aaf -cHW -cHW +lMJ +lMJ aaf aaf aaa @@ -122365,93 +122783,93 @@ aaa aaa aaa aaa -aad +aag aaa aaa aaa aaf aaf -abP +abS aaf aaa aaf -abP +abS aaf aaa aaf -abP +abS aaf aaa aaa aaf akd -alw -alw -alw -apx -aqK -asi -atA -auO -apk -awY -awY +alv +alv +alv +app +aqA +arV +atl +auy +dnS +dqT +dqT aaf -acg -acg -aDn -aEI -aGi -aEI -awW -awW -aEI -aEI -aEI -awW -awW -aEI -aGi -aEI -aXn -aYW -baS -bcp -baS -bcr -bgY -anY +ack +ack +def +aCZ +dew +aCZ +axY +axY +aCZ +aCZ +aCZ +axY +axY +aCZ +dew +aCZ +aVe +dgf +dgk +dgt +dgk +dgv +dgJ +anT aaf aaf aaf aaa -brM +bpw aaa aaa aaf -bzB -bzB -bzB -bFh -bBB -bIR -bBB -bLZ -bBB -bIR -bRl -bLZ -bBB -bIR -bBB -bLZ -bBB -bIR -bzB -bzB -bzB -cgV -bzB +bxc +bxc +bxc +bCy +bza +bFX +bza +bJa +bza +bFX +dhk +bJa +bza +bFX +bza +bJa +bza +bFX +bxc +bxc +bxc +ccW +bxc aaf aaa aaa @@ -122622,93 +123040,93 @@ aaa aaa aaa aaa -aac -aac -aae -aac +aaj +aaj +aai +aaj aaf -abs -abQ -ach +abv +abT +acl aaa -abs -abQ -ach +abv +abT +acl aaa -abs -abQ -ach +abv +abT +acl aaa aaa aaf aaa aaa akd -alw -apu -apu -apu -apu -als -apk -anR -awY +alv +apm +apm +apm +apm +dnh +dnS +dnz +dqT aaf aaf aaf -aDn -aBX -aGj -aEL -aBX -aBX -aBX -aNq -aOJ -aBX -aBX -aEL -aGj -aBX -aXn -aYX -baS -bcp -baS -bfA -bha -biE -bkI -bkI -beh -bkI -brN -bkI -bkI -beh -beh -beh -beh -bFi -beh -bIS -beh -bMa -beh -bIS -bRm -bSS +def +ddZ +dex +aJu +ddZ +ddZ +ddZ +aMo +dff +ddZ +ddZ +aJu +dex +ddZ +aVe +aWK +dgk +dgt +dgk +dgB +dgM +dgN +dgO +dgO +dgw +dgO +dgS +dgO +dgO +dgw +dgw +dgw +dgw +bCz +dgw +dha +dgw +dhc +dgw +dha +dhl +bJb aaf -bVG +bFY aaf -bSS +bJb aaf -bVG +bFY aaf aaf -bzB -cgW -bzB +bxc +ccX +bxc aaf aaf aaf @@ -122882,19 +123300,19 @@ aaa aaa aaa aaa -aad +aag aaa -abs -abQ -ach +abv +abT +acl aaa -abs -abQ -ach +abv +abT +acl aaa -abs -abQ -ach +abv +abT +acl aaf aaa aaf @@ -122905,67 +123323,67 @@ aaf aaa aaa aaa -als -auP -avG -awY -awY +dnh +auz +dqp +dqT +dqT aaa aaa aaa -azf -aEJ -aGk -aHW -aBX -aBX -aBX -aBX -aBX -aBX -aBX -aTf -aUv -aVT -aXt -aYY -baR -baR -baR -bcr +bTq +dep +dey +aHa +ddZ +ddZ +ddZ +ddZ +ddZ +ddZ +ddZ +dfA +dfM +dfV +dgb +dgg +azd +azd +azd +dgv aaf -anY +anT aaa aaa aaf aaf -brO +bpx aaf aaf aaf aaa aaf -bDw -bFj -bGQ -bIT -bDw -bMb -bGQ -bIT -bDw -bMb -bGQ -bIT -bDw -bMb -bGQ -bIT -bDw +bAR +dBC +gJs +bFZ +bAR +bCA +gJs +bFZ +bAR +bCA +gJs +bFZ +bAR +bCA +gJs +bFZ +bAR aaf -bzB -cgV -bzB +bxc +wxc +bxc aaf aaa aaf @@ -122975,7 +123393,7 @@ aaa aaf aaa aaa -aae +aai aaf aaa aaa @@ -123139,19 +123557,19 @@ aaa aaa aaa aaa -aad +aag aaf -abs -abQ -ach +abv +abT +acl aaf -abs -abQ -ach +abv +abT +acl aaf -abs -abQ -ach +abv +abT +acl aaa aaa aaf @@ -123162,77 +123580,77 @@ aaf aaf aaf aaf -alr -auQ -apk -awY +dni +auA +dnS +dqT aaa aaa aaa aaa -awW -aEK -aGk -aHX -aBX -aBX -aBX -aNq -aBX -aBX -aBX -aTg -aUv -aVU -awW -aYX -baS -bcp -baS -bfA +axY +deq +dey +deK +ddZ +ddZ +ddZ +aMo +ddZ +ddZ +ddZ +dfB +dfM +dfW +axY +aWK +dgk +dgt +dgk +dgB aaa -anY +anT aaa aaa aaf aaa -brM +bpw aaa aaa aaf aaa aaf -bDw -bFk -bGR -bIU -bDw -bMc -bNO -bPu -bDw -bST -bUr -bVH -bDw -bYh -bZs -cbe -bDw +bAR +bCB +bEd +bGa +bAR +bJc +bKH +bMm +bAR +bPx +bQX +bSk +bAR +bUI +bVN +bXr +bAR aaf -aNr -cgX -bDG +aMr +ccY +bBb aaf aaa aaf -bzB -cnx -coV -cqq -cqq +bxc +cjo +ckM +cmf +cmf aaa -bNR +bKK aaa aaa aaa @@ -123396,19 +123814,19 @@ aaa aaa aaa aaa -aad +aag aaf -abs -abQ -ach +abv +abT +acl aaa -abs -abQ -ach +abv +abT +acl aaa -abs -abQ -ach +abv +abT +acl aaa aaa aaf @@ -123419,77 +123837,77 @@ aaa aaa aaf aaa -als -auR -avV -awY +dnh +auB +avG +dqT aaa aaa aaa aaa -awW -aEL -aGl -aHY -aEL -aEL -aLE -awW -aOK -aEL -aEL -aTh -aUw -aBX -awW -aYZ -baS -baS -baS -bcr +axY +aJu +deA +deL +aJu +aJu +deY +axY +dfg +aJu +aJu +dfC +dfO +ddZ +axY +dgh +dgk +dgk +dgk +dgv aaf -anY +anT aaa aaa aaf aaa -brM +bpw aaa aaa aaf aaa aaf -bDw -bFl -bFl -bFl -bDw -bMd -bNP -bMd -bDw -bSU -bUs -bSU -bDw -bYi -bZt -bYi -bDw +bAR +bCC +bCC +bCC +bAR +bJd +bKI +bJd +bAR +bPy +bQY +bPy +bAR +bUJ +bVO +bUJ +bAR aaf -aKs -cgX -biR -aOL +aMq +ccY +bgo +aTQ +cgD +chW +cjl ckK -cmc -cnu -coT -bFl -bFl -coV +bCC +bCC +ckM aaf -bNR +bKK aaa aaa aaa @@ -123653,22 +124071,22 @@ aaa aaa aaa aaa -aac +aaj aaa -abs -abR -ach +abv +abU +acl aaa -abs -abR -ach +abv +abU +acl aaa -abs -abR -ach +abv +abU +acl aaf aaf -aad +aag aaa aaa aaa @@ -123676,77 +124094,77 @@ aaa aaa aaf aaa -als -als -atB -awY +dnh +dnh +jKK +dqT aaf aaa aaa aaa -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -aYX -baT -bcq -baT -bfA +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +aWK +dgm +dgu +dgm +dgB aaa -anY +anT aaa aaa aaf aaf -brO +bpx aaf aaf aaf aaf aaf -bDw -bFl -bGS -bIV -bDw -bMd -bNQ -bPv -bDw -bSV -bUt -bVI -bDw -bYi -bZu -cbf -bDw +bAR +bCC +bEe +bGb +bAR +bJd +bKJ +bMn +bAR +bPz +bQZ +bSl +bAR +bUJ +bVP +bXs +bAR aaf -aNr -cgX -cgX -cgX -cgX -cgX -cnv -bFl -cqp -bFl -cnx +aMr +ccY +ccY +ccY +ccY +ccY +cjm +bCC +cme +bCC +cjo aaa -bNR +bKK aaf aaa aaa @@ -123910,7 +124328,7 @@ aaa aaa aaa aaa -aac +aaj aaa aaf aaa @@ -123931,12 +124349,12 @@ aaa aaa aaa aaa -acg -acg -atB -auS -avV -awY +ack +ack +atn +bOY +avG +dqT aaf aaa aaa @@ -123955,55 +124373,55 @@ aaf aaa aaf aaf -acg -acg -baU -bcr -baU -bcr +ack +ack +aye +dgv +aye +dgv aaf -anY +anT aaf aaf aaf aaa -brM +bpw aaa aaf aaa aaa aaf -bDw -bDw -bDw -bDw -bDw -bDw -bDw -bDw -bDw -bDw -bDw -bDw -bDw -bDw -bDw -bDw -bDw +bAR +bAR +bAR +bAR +bAR +bAR +bAR +bAR +bAR +bAR +bAR +bAR +bAR +bAR +bAR +bAR +bAR aaf -aKs -cgX -aXu -aOS +aMq +ccY +aVk +aNC +cgE +chX +cjn ckL -cmd -cnw -coU -bFl -bFl -bzB +bCC +bCC +bxc aaf -aae +aai aaa aaa aaa @@ -124167,33 +124585,33 @@ aaa aaa aaa aaa -aac -aae -aad -aad -aad -aae -aad -aad -aad -aac -aad -aad -aae -aad -aae -aad -aae -aad +aaj +aai +aag +aag +aag +aai +aag +aag +aag +aaj +aag +aag +aai +aag +aai +aag +aai +aag aaf aaf aaf aaf aaf -als -als -atB -awY +dnh +dnh +lNZ +dqT aaf aaa aaa @@ -124224,7 +124642,7 @@ aaa aaa aaf aaa -brM +bpw aaa aaf aaf @@ -124248,17 +124666,17 @@ aaf aaf aaf aaf -aNr -cgY -bDG +aMr +ccZ +bBb aaf aaa aaf -cnx -coV -cqq -coV -cnx +cjo +ckM +cmf +ckM +cjo aaa aaf aaf @@ -124449,27 +124867,27 @@ aaf aaa aaa aaf -acg -awY +ack +dqT aaf -anY -anY -anY -anY +anT +anT +anT +anT aaf -anY -anY -anY -anY -anY -anY -aqL -anY -anY -anY -anY -anY -anY +anT +anT +anT +anT +anT +anT +aqB +anT +anT +anT +anT +anT +anT aaf aaa aaa @@ -124481,7 +124899,7 @@ aaa aaa aaf aaa -brM +bpw aaa aaf aaa @@ -124706,7 +125124,7 @@ aaf aaf aaf aaf -acg +ack aaf aaa aaa @@ -124714,16 +125132,16 @@ aaa aaf aaa aaa -aGm -aGm -aGm -aGm -aGm -aGm -aGm -aGm -aGm -aGm +bpu +bpu +bpu +bpu +bpu +bpu +bpu +bpu +bpu +bpu aaa aaa aaa @@ -124738,40 +125156,40 @@ aaa aaa aaf aaa -brM +bpw aaa aaf aaf aaf -aae -bBK -bBK -bBK -bBK -bBK -bMe -bBK -bBK -aae -bBK -bBK -bBK -bNR -bBK -bBK -bBK -bBK -bMe -bBK -aae -bBK +aai +bzj +bzj +bzj +bzj +bzj +bJe +bzj +bzj +aai +bzj +bzj +bzj +bKK +bzj +bzj +bzj +bzj +bJe +bzj +aai +bzj aaf aaf -aae -bBK -aae -bBK -bBK +aai +bzj +aai +bzj +bzj aaf aaf aaa @@ -124971,16 +125389,16 @@ aaa aaf aaf aaf -anY -anY -anY -anY -aqL -anY -anY -anY -anY -aqL +anT +anT +anT +anT +aqB +anT +anT +anT +anT +aqB aaf aaf aaf @@ -124995,7 +125413,7 @@ aaa aaa aaf aaa -brM +bpw aaa aaf aaa @@ -125032,7 +125450,7 @@ aaa aaa aaf aaa -aab +aac aaa aaa aaa @@ -125244,7 +125662,7 @@ aaa aaf aaa aaa -aae +aai aaa aaa aaa @@ -125252,30 +125670,30 @@ aaa aaa aaf aaa -brM +bpw aaa aaf aaf -aae -bBJ -bBJ -bBJ -bBJ -bBJ -bBJ -bMf -bBJ -bBJ -bBJ -bBJ -bBJ -bBJ -bMf -bBJ -bBJ -bBJ -bBJ -bMf +aai +bzi +bzi +bzi +bzi +bzi +bzi +bJf +bzi +bzi +bzi +bzi +bzi +bzi +bJf +bzi +bzi +bzi +bzi +bJf aaf aaf aaf @@ -125499,9 +125917,9 @@ aaa aaa aaa aaf -aae +aai aaa -aae +aai aaa aaa aaa @@ -125509,7 +125927,7 @@ aaa aaa aaf aaf -brO +bpx aaf aaf aaa @@ -125756,9 +126174,9 @@ aaa aaa aaa aaa -aad +aag aaa -bei +siF aaa aaa aaa @@ -125766,33 +126184,33 @@ aaa aaa aaf aaa -brM +bpw aaa aaf aaf -aae -bBK -bBK -aae -bBK -bei -bBK -bBK -bNR -bBK -bBK -bBK -bBK -bei -aae -bBK -bBK -bBK -bBK -bNR -bBK -bBK -anX +aai +bzj +bzj +aai +bzj +siF +bzj +bzj +bKK +bzj +bzj +bzj +bzj +siF +aai +bzj +bzj +bzj +bzj +bKK +bzj +bzj +anS aaa aaa aaa @@ -126013,26 +126431,26 @@ aaa aaa aaa aaa -aae +aai aaa -anY +anT aaa aaa -aab +aac aaa aaa aaf aaa -brM +bpw aaa aaf aaa aaa aaa aaa -aae +aai aaa -anY +anT aaa aaa aaa @@ -126272,7 +126690,7 @@ aaa aaa aaf aaf -anY +anT aaa aaa aaa @@ -126280,7 +126698,7 @@ aaa aaa aaf aaa -brM +bpw aaa aaf aaa @@ -126289,7 +126707,7 @@ aaa aaa aaf aaa -anY +anT aaa aaa aaa @@ -126527,9 +126945,9 @@ aaa aaa aaa aaa -aae +aai aaa -anY +anT aaa aaa aaa @@ -126537,22 +126955,22 @@ aaa aaa aaf aaa -brM +bpw aaa aaf aaa aaa aaa aaa -aae +aai aaf -anY +anT aaa aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -126784,9 +127202,9 @@ aaa aaa aaa aaa -aad +aag aaa -aae +aai aaa aaa aaa @@ -126794,16 +127212,16 @@ aaa aaa aaf aaa -brM +bpw aaa aaf aaa aaa aaa aaa -aad +aag aaa -anY +anT aaa aaa aaa @@ -127041,9 +127459,9 @@ aaa aaa aaa aaa -aad +aag aaa -anY +anT aaa aaa aaa @@ -127051,16 +127469,16 @@ aaa aaa aaf aaa -brM +bpw aaa aaf aaa aaa aaa aaa -aad +aag aaa -aae +aai aaa aaa aaa @@ -127298,9 +127716,9 @@ aaa aaa aaa aaa -aae +aai aaa -anY +anT aaa aaa aaa @@ -127308,16 +127726,16 @@ aaa aaa aaf aaf -brO +bpx aaf aaf aaa aaa aaa aaa -aae +aai aaa -bei +siF aaa aaa aaa @@ -127516,7 +127934,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -127540,7 +127958,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -127555,9 +127973,9 @@ aaa aaa aaa aaa -aae +aai aaa -anY +anT aaa aaa aaa @@ -127565,16 +127983,16 @@ aaa aaa aaf aaa -brP +bpy aaa aaf aaa aaa aaa aaa -aae +aai aaa -bei +siF aaa aaa aaa @@ -127812,9 +128230,9 @@ aaa aaa aaa aaa -aad +aag aaa -anY +anT aaa aaa aaa @@ -127822,16 +128240,16 @@ aaa aaa aaf aaa -brP +bpy aaa aaf aaa aaa aaa aaa -aad +aag aaa -anY +anT aaa aaa aaa @@ -128069,9 +128487,9 @@ aaa aaa aaa aaa -aad +aag aaf -aae +aai aaf aaf aaf @@ -128079,16 +128497,16 @@ aaa aaa aaf aaa -brQ +bpz aaa aaf aaa aaa aaa aaa -aad +aag aaa -anY +anT aaa aaa aaa @@ -128129,9 +128547,9 @@ aaa aaa aaf aaf -cGZ -cKU -cGZ +czK +cDv +czK aaf aaf aaa @@ -128326,26 +128744,26 @@ aaa aaa aaa aaa -aad +aag aaa -bei +siF aaa aaa aaf aaf aaf aaf -bpG -brR -bug +bno +bpA +brO aaf aaa aaa aaa aaa -aad +aag aaf -aae +aai aaa aaa aaa @@ -128385,11 +128803,11 @@ aaa aaa aaf aaf -cIP -cGZ -cKV -cGZ -cIP +cBM +czK +cDw +czK +cBM aaf aaf aaa @@ -128583,26 +129001,26 @@ aaa aaa aaa aaa -aae +aai aaa -anY +anT aaa aaa aaf aaa aaa -bnW +blu aaa -brR +bpA aaa -bwc +btI aaa aaa aaa aaa -aad +aag aaa -anY +anT aaa aaa aaa @@ -128641,13 +129059,13 @@ aaa aaa aaf aaf -cGZ -cGZ -cJW -cKU -cLT -cGZ -cGZ +czK +czK +cCH +cDv +cEB +czK +czK aaf aaf aaa @@ -128840,26 +129258,26 @@ aaa aaa aaa aaa -anY +anT aaa -anY +anT aaf aaf -acg -acg +ack +ack aaf -bnX +blv aaf -brR +bpA aaf -bnX +blv aaf aaf aaf aaf -aad +aag aaa -bei +siF aaa aaa aaa @@ -128897,15 +129315,15 @@ aaa aaa aaa aaf -cGY -cGY -cIQ -cJX -cJX -cJX -cMT -cGY -cGY +czJ +czJ +cBN +cCI +cCI +cCI +cFv +czJ +czJ aaf aaa aaa @@ -129097,26 +129515,26 @@ aaa aaa aaa aaa -anY +anT aaa -aqL +aqB aaa -aKs -biF -biF -aQr -bnY -aLF -brS -aLF -bwd +aMq +bgc +bgc +aOV +blw +aNw +bpB +aNw +btJ aaa aaa aaa aaa -aae +aai aaa -anY +anT aaa aaa aaa @@ -129154,15 +129572,15 @@ aaa aaf aaf aaf -cGZ -cHX -cIR -cJX -cKW -cJX -cMU -cOg -cGZ +czK +cAQ +cBO +cCI +cDx +cCI +cFw +cGp +czK aaf aaf aaf @@ -129354,26 +129772,26 @@ aaa aaa aaa aaa -anY +anT aaa -anY +anT aaa -aKs -biG -biG -aQr -aKs -bpH -brT -buh -bwe +aMq +bgd +bgd +aOV +aMq +bnp +bpC +brP +btK aaa aaa aaa aaa -aad +aag aaa -aae +aai aaa aaa aaa @@ -129411,15 +129829,15 @@ aaa aaa aaa aaf -cGY -cGY -cIS -cJX -cJX -cJX -cMV -cGY -cGY +czJ +czJ +cBP +cCI +cCI +cCI +cFx +czJ +czJ aaf aaa aaa @@ -129611,26 +130029,26 @@ aaa aaa aaa aaa -anY +anT aaa -anY -anY -bhb -biH -bkJ -bhb -bnZ -bpI -brU -bui -bnZ -anY -anY -anY -anY -aad +anT +anT +beq +bge +bik +beq +blx +bnq +bpD +brQ +blx +anT +anT +anT +anT +aag aaa -anY +anT aaa aaa aaa @@ -129669,13 +130087,13 @@ aaa aaa aaf aaf -cGZ -cGZ -cJY -cKX -cLU -cGZ -cGZ +czK +czK +cCJ +cDy +cEC +czK +czK aaf aaf aaa @@ -129863,31 +130281,31 @@ aaa aaa aaa aaa -anY -anY -anY -anY -anY -anY -anY -anY +anT +anT +anT +anT +anT +anT +anT +anT aaa -aNs -biI -biG -aQt -boa -bpJ -brV -buj -aQt -aLF -aLF -aOL +aSD +bgf +bgd +aOX +bly +bnr +bpE +brR +aOX +aNw +aNw +aTQ aaa -anY +anT aaa -aad +aag aaa aaa aaa @@ -129927,11 +130345,11 @@ aaa aaa aaf aaf -cIP -cGZ -cKY -cGZ -cIP +cBM +czK +cDz +czK +cBM aaf aaf aaa @@ -130115,48 +130533,48 @@ aaa aaa aaa aaa -anY -anY -anY -anY -anY -anY +anT +anT +anT +anT +anT +anT aaa -aOL -aLF -aLF -aLF -aLF -aLF -aNs -bhc -biJ -bkK -bmo -bmo -bpK -brW -buk -bmo -bmo -bmo -bBL -bDx -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY +aTQ +aNw +aNw +aNw +aNw +aNw +aSD +bes +bgg +bil +bjO +bjO +bns +bpF +brS +bjO +bjO +bjO +bzk +bAS +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT aaa aaa aaa @@ -130185,9 +130603,9 @@ aaa aaa aaf aaf -cGZ -cGY -cGZ +czK +czJ +czK aaf aaf aaa @@ -130372,48 +130790,48 @@ aaa aaa aaa aaa -anY +anT aaa -aOL -aLF -aLF -aLF -aNs -aVV -aQp -aQp -aQp -aQp -aQp -aQp -bhd -aXu -aLK -aLK -aUz -bpL -brX -bul -aQq -aLK -aNx -bBM -bDy -aLF -aLF -aLF -bKv -aLF -aLF -aLF -aLF -bKv -aLF -aLF -aLF -aOL +aTQ +aNw +aNw +aNw +aSD +aTR +aOT +aOT +aOT +aOT +aOT +aOT +bet +aVk +aOY +aOY +aSG +bnt +bpG +brT +aOU +aOY +bcQ +bzl +bAT +aNw +aNw +aNw +bJl +aNw +aNw +aNw +aNw +bJl +aNw +aNw +aNw +aTQ aaa -anY +anT aaa aaa aaa @@ -130629,48 +131047,48 @@ aaa aaa aaa aaa -anY -aKs -aOM -aQp -aQp -aQp -aQp -aVW -aXu -aLK -aLK -aLK -aLK -aLK -aVX +anT +aMq +aNx +aOT +aOT +aOT +aOT +aTS +aVk +aOY +aOY +aOY +aOY +aOY +aTT aaa aaa aaa -bob -bpM -brY -bum -aQr +blA +bnu +bpH +brU +aOV aaa -aKs -bBN -aQp -aQp -aQp -aQp -bKw -bKw -bNS -bKw -bKw -bKw -bKw -aQp -aQp -bYj -bDG -anY +aMq +bzm +aOT +aOT +aOT +aOT +bMt +bMt +bNW +bMt +bMt +bMt +bMt +aOT +aOT +bUK +bBb +anT aaa aaa aaa @@ -130886,48 +131304,48 @@ aaa aaa aaa aaa -anY -aKs -aON -aQq -aLK -aLK -aLK -aVX +anT +aMq +aNy +aOU +aOY +aOY +aOY +aTT aaa aaa aaa aaa aaa aaa -aVY +aTU aaa aaa -aTi -aTi -bpN -brZ -bun -aTi +aRy +aRy +bnv +bpI +brV +aRy aaa aaa -aVX -aLK -aLK -aLK -aLK -aLK -aLK -bNT -aLK -aLK -aLK -aLK -aLK -aNx -aON -biQ -anY +aTT +aOY +aOY +aOY +aOY +aOY +aOY +bKQ +aOY +aOY +aOY +aOY +aOY +bcQ +aNy +bgn +anT aaa aaa aaa @@ -131143,48 +131561,48 @@ aaa aaa aaa aaa -anY -aKs -aON -aQr +anT +aMq +aNy +aOV aaa aaa aaa -aVY +aTU aaa -aTi -aTi -aTi -aTi -aTi -aTi -aTi -aTi -aTi -boc -bpO -bsa -buo -aTi -bxO +aRy +aRy +aRy +aRy +aRy +aRy +aRy +aRy +aRy +blB +bnw +bpJ +brW +aRy +bvt aaa -aVY +aTU aaa aaa aaa aaa aaa aaa -aVY +aTU aaa aaa aaa aaa aaa -aKs -aON -biQ -anY +aMq +aNy +bgn +anT aaa aaa aaa @@ -131400,48 +131818,48 @@ aaa aaa aaa aaa -anY -aKs -aON -aQr +anT +aMq +aNy +aOV aaa aaa aaa -aTi -aTi -aTi -aVZ -aVZ -aVZ -aTi -aTi -aTi -aTi -bmp -bod -bpP -bsb -bup -aTi -aTi -aTi -aTi -aTi -aTi -aTi -aTi -aTi -aTi -aTi -bxO -bxO +aRy +aRy +aRy +aTV +aTV +aTV +aRy +aRy +aRy +aRy +bjP +blC +bnx +bpK +bsf +aRy +aRy +aRy +aRy +aRy +aRy +aRy +aRy +aRy +aRy +aRy +bvt +bvt aaa aaa aaa -aKs -aON -biQ -anY +aMq +aNy +bgn +anT aaa aaa aaa @@ -131655,52 +132073,52 @@ aaa aaa aaa aaa -anY -anY -anY -aNr -aON -aQr +anT +anT +anT +aMr +aNy +aOV aaa aaa -aTi -aTi -aVZ -aVZ -aVZ -bcs -aVZ -aVZ -aVZ -aVZ -aVZ -bmp -boe -bpQ -bsc -buq -bwf -bwf -bwf -bwf -bwf -bFm -bGT -bIW -bKx -bMg -aTi -aTi -aTi -aTi +aRy +aRy +aTV +aTV +aTV +aZQ +aTV +aTV +aTV +aTV +aTV +bjP +blD +bny +bpL +brY +btL +btL +btL +btL +btL +bCD +bEf +bGc +bHC +bJg +aRy +aRy +aRy +aRy aaa aaa -aKs -bhj -bDG -anY -anY -anY +aMq +bez +bBb +anT +anT +anT aaa aaa aaa @@ -131912,52 +132330,52 @@ aaa aaa aaa aaa -anY +anT aaa -aLF -aNs -aON -aQr +aNw +aSD +aNy +aOV aaa aaa -aTi -aVZ -aXv -aZa -baV -bct -bej -bfB -aXv -biK -bkL -bmq -bmq -bpR -bsd -bur -bwf -bxP -bzL -bBO -bDz -bFm -bGU -bIX -bIX -bMh -bNU -bPw -bRn -aTi +aRy +aTV +aVl +aWL +aYy +aZR +bbF +bcP +aVl +bgh +bim +bjQ +bjQ +bnz +bpM +brZ +btL +bvu +bGh +bzn +bAU +bCD +bEg +bGd +bGd +bJm +bNX +bMo +bOc +aRy aaa aaa -aKs -bhj -bDy -aLF +aMq +bez +bAT +aNw aaa -anY +anT aaa aaa aaa @@ -132169,52 +132587,52 @@ aaa aaa aaa aaa -anY -aKs -aLG -aNt -aOO -aQr +anT +aMq +bnl +bpn +bpr +aOV aaa -aTi -aTi -aVZ -aXw -aZb -aZb -bcu -aZb -aZb -aZb -biL -bkM -bmr -bof -bpS -bse -bus -bwf -bxQ -bzM -bBP -bDA -bFm -bGV -bIY -bIX -bMi -bNV -bIX -bRo -aTi -bxO +aRy +aRy +aTV +aVm +aWM +aWM +aZS +aWM +aWM +aWM +bgi +bin +bjR +brX +bnA +bpN +bsa +btL +bAW +bxn +bzo +bAV +bCD +bEh +bGe +bGd +bKL +bNY +bGd +ceC +aRy +bvt aaa -aKs -bYk -aNt -cbg -biQ -anY +aMq +chz +bpn +cpO +bgn +anT aaa aaa aaa @@ -132426,52 +132844,52 @@ aaa aaa aaa aaa -anY -aKs -aLH -aNu -aOO -aQr +anT +aMq +bnk +bnn +bpr +aOV aaa -aTi -aTi -aVZ -aXx -aZc -aVZ -bcv -aVZ -aVZ -bhe -aZc -bkN -bmr -bog -bpT -bsf -but -bwg -bxR -bzN -bBQ -bDB -bFn -bFn -bFn -bKy -bIX -bIX -bIX -bRp -aTi -bxO +aRy +aRy +aTV +aVn +aWN +aTV +bqm +aTV +aTV +beu +aWN +bio +bjR +blF +bnB +bpO +bsb +btM +bvw +bxo +bzp +bJh +bCE +bCE +bCE +bHD +bGd +bGd +bGd +bUL +aRy +bvt aaa -aKs -bYk -bZv -aOO -biQ -anY +aMq +chz +cmK +bpr +bgn +anT aaa aaa aaa @@ -132683,52 +133101,52 @@ aaa aaa aaa aaa -anY -aKs -aLI -aNv -aOP -aQs -aQs -aTj -aUx -aWa -aXy -aZd -baW -bcw -bek -aVZ -bhf -biM -bkO -bms -boh -bpU -bsg -buu -bwh -bxS -bzO -bBR -bDC -bFo -bGW -bFo -bKz -bMj -bNW -bPx -bRq -aTj -bUu -aQs -bWN -bYl -bZw -cbh -biQ -anY +anT +aMq +aYd +bfS +bps +aOW +aOW +aRz +aSE +aTW +bjS +aWO +aYz +brx +bvf +aTV +byx +bgj +bip +blI +blG +bnC +bpP +bsc +btN +bvx +bxp +bzq +bAX +bCF +bEi +lWY +bHE +bKM +bKO +bMp +bNZ +aRz +bRa +aOW +bTm +chM +ckT +cmX +bgn +anT aaa aaa aaa @@ -132940,52 +133358,52 @@ aaa aaa aaa aaa -anY -aKs -aLH -aNu -aOO -aQr +anT +aMq +bnk +bnn +bpr +aOV aaa -aTi -aUy -aWb -aXz -aZe -aVZ -bcx -aVZ -aVZ -bhg -biN -bkP -bmq -boi -bpV -bsh -buv -bwf -bxT -bzP -bBS -bDD -bFn -bFn -bFn -bKA -bMk -bMk -bPy -bRr -aTi -bxO +aRy +aSF +aTX +aVp +aWP +aTV +aZV +aTV +aTV +bew +bgk +blE +bjQ +blH +bnD +bpQ +bsd +btL +bvy +bxq +bzr +bAY +bCE +bCE +bCE +bHF +bJk +bJk +bMq +cgy +aRy +bvt aaa -aKs -bYk -bZv -aOO -biQ -anY +aMq +chz +cmK +bpr +bgn +anT aaa aaa aaa @@ -133197,52 +133615,52 @@ aaa aaa aaa aaa -anY -aKs -aLJ -aNw -aOO -aQr +anT +aMq +bnm +bpq +bpr +aOV aaa -aTi -aTi -aVZ -aXA -aZf -baX -bcy -baX -baX -bhh -biO -bkQ -bmq -boj -bpW -bsi -buw -bwf -bxU -bzQ -bBT -bDE -bFm -bGX -bIY -bIX -bMl -bNX -bPz -bRs -aTi -bxO +aRy +aRy +aTV +aVq +aWQ +aYA +aZW +aYA +aYA +bex +bgl +bir +bjQ +bse +bnE +bpR +byM +btL +bvz +bxr +bzs +bJi +bCD +bEj +bGe +bGd +bKP +bOb +bMr +cho +aRy +bvt aaa -aKs -bYk -aNw -bBW -biQ -anY +aMq +chz +bpq +bzv +bgn +anT aaa aaa aaa @@ -133454,52 +133872,52 @@ aaa aaa aaa aaa -anY +anT aaa -aLK -aNx -aOQ -aQr +aOY +bcQ +aNz +aOV aaa aaa -aTi -aVZ -aXB -aZg -baY -bcz -bel -aZg -aXB -biP -bkR -bmq -bmq -bpR -bsj -bur -bwf -bxV -bzR -bBU -bDF -bFm -bGU -bIX -bIX -bMm -bNY -bPA -bRt -aTi +aRy +aTV +aVr +aWR +aYB +aZX +bbH +aWR +aVr +bgm +bis +bjQ +bjQ +bnz +bpS +brZ +btL +bvA +bxs +bzt +bBa +bCD +bEg +bGd +bGd +bKN +bOa +bMs +chn +aRy aaa aaa -aKs -bhj -aXu -aLK +aMq +bez +aVk +aOY aaa -anY +anT aaa aaa aaa @@ -133711,52 +134129,52 @@ aaa aaa aaa aaa -anY -anY -anY -aNr -aOQ -aQr +anT +anT +anT +aMr +aNz +aOV aaa aaa -aTi -aTi -aVZ -aVZ -aVZ -bcA -aVZ -aVZ -aVZ -aVZ -aVZ -bmt -bok -bpX -bsk -bux -bwf -bwf -bwf -bwf -bwf -bFm -bGY -bIZ -bKB -bMn -aTi -aTi -aTi -aTi +aRy +aRy +aTV +aTV +aTV +aZY +aTV +aTV +aTV +aTV +aTV +bjT +blJ +bnF +bpT +byO +btL +btL +btL +btL +btL +bCD +bEk +bGf +bHG +bJn +aRy +aRy +aRy +aRy aaa aaa -aKs -bhj -bDG -anY -anY -anY +aMq +bez +bBb +anT +anT +anT aaa aaa aaa @@ -133970,48 +134388,48 @@ aaa aaa aaa aaa -anY -aKs -aOQ -aQr +anT +aMq +aNz +aOV aaa aaa aaa -aTi -aTi -aTi -aVZ -aVZ -aVZ -aTi -aTi -aTi -aTi -bmt -bol -bpY -bsl -buy -aTi -aTi -aTi -aTi -aTi -aTi -aTi -aTi -aTi -aTi -aTi -bxO -bxO +aRy +aRy +aRy +aTV +aTV +aTV +aRy +aRy +aRy +aRy +bjT +blK +bnG +bpU +bsg +aRy +aRy +aRy +aRy +aRy +aRy +aRy +aRy +aRy +aRy +aRy +bvt +bvt aaa aaa aaa -aKs -bhj -biQ -anY +aMq +bez +bgn +anT aaa aaa aaa @@ -134227,48 +134645,48 @@ aaa aaa aaa aaa -anY -aKs -aOQ -aQr +anT +aMq +aNz +aOV aaa aaa aaa -aVY +aTU aaa -aTi -aTi -aTi -aTi -aTi -aTi -aTi -aTi -aTi -bom -bpZ -bsm -buz -aTi -bxO +aRy +aRy +aRy +aRy +aRy +aRy +aRy +aRy +aRy +blL +bnH +bpV +bsh +aRy +bvt aaa -aVY +aTU aaa aaa aaa aaa aaa aaa -aVY +aTU aaa aaa aaa aaa aaa -aKs -bhj -biQ -anY +aMq +bez +bgn +anT aaa aaa aaa @@ -134484,48 +134902,48 @@ aaa aaa aaa aaa -anY -aKs -aOQ -aQt -aLF -aLF -aLF -aWc +anT +aMq +aNz +aOX +aNw +aNw +aNw +aTY aaa aaa aaa aaa aaa aaa -aVY +aTU aaa aaa -aTi -bon -bqa -bsn -buA -aTi +aRy +blM +bnI +bpW +bsi +aRy aaa aaa -aWc -aLF -aLF -aLF -aLF -aLF -aLF -aWc -aLF -aLF -aLF -aLF -aLF -boa -bhj -biQ -anY +aTY +aNw +aNw +aNw +aNw +aNw +aNw +aTY +aNw +aNw +aNw +aNw +aNw +bly +bez +bgn +anT aaa aaa aaa @@ -134741,48 +135159,48 @@ aaa aaa aaa aaa -anY -aKs -aOR -aQp -aQp -aQp -aQp -aWd -aQt -aLF -aLF -aLF -aLF -aLF -aWc +anT +aMq +aNB +aOT +aOT +aOT +aOT +aTZ +aOX +aNw +aNw +aNw +aNw +aNw +aTY aaa aaa -aTi -aTi -aTi -bso -aTi -aTi +aRy +aRy +aRy +bpX +aRy +aRy aaa -aKs -bBV -aQp -aQp -aQp -aQp -aQp -aQp -bNZ -bKw -bKw -bKw -bKw -bKw -bKw -bYm -bDG -anY +aMq +bzu +aOT +aOT +aOT +aOT +aOT +aOT +bKR +bMt +bMt +bMt +bMt +bMt +bMt +bUM +bBb +anT aaa aaa aaa @@ -134998,48 +135416,48 @@ aaa aaa aaa aaa -anY +anT aaa -aOS -aLK -aLK -aLK -aUz -aWe -aQp -aQp -aQp -aQp -aQp -aQp -bhi -biQ +aNC +aOY +aOY +aOY +aSG +aUa +aOT +aOT +aOT +aOT +aOT +aOT +bey +bgn aaa aaa aaa -aKs -bsp -biQ +aMq +bpY +bgn aaa aaa -aKs -bhj -aXu -aLK -aLK -aLK -aLK -aLK -aOS -aLK -aLK -aLK -aLK -aLK -aLK -aOS +aMq +bez +aVk +aOY +aOY +aOY +aOY +aOY +aNC +aOY +aOY +aOY +aOY +aOY +aOY +aNC aaa -anY +anT aaa aaa aaa @@ -135255,48 +135673,48 @@ aaa aaa aaa aaa -anY -anY -anY -anY -anY -anY +anT +anT +anT +anT +anT +anT aaa -aOS -aLK -aLK -aLK -aLK -aLK -aNx -bhj -biR -aLF -aLF -aLF -aNs -bsq -buB -aLF -aLF -boa -bhj -biQ -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY +aNC +aOY +aOY +aOY +aOY +aOY +bcQ +bez +bgo +aNw +aNw +aNw +aSD +bpZ +bsj +aNw +aNw +bly +bez +bgn +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT aaa aaa aaa @@ -135517,29 +135935,29 @@ aaa aaa aaa aaa -anY -anY -anY -anY -anY -anY -anY -anY -aKs -bhk -aQp -aQp -aQp -aQp -aQp -bsr -aQp -aQp -aQp -aQp -bBW -bDG -anY +anT +anT +anT +anT +anT +anT +anT +anT +aMq +beA +aOT +aOT +aOT +aOT +aOT +bqa +aOT +aOT +aOT +aOT +bzv +bBb +anT aaa aaa aaa @@ -135781,22 +136199,22 @@ aaa aaa aaa aaa -anY +anT aaa -aOS -aLK -aLK -aLK -aLK -aLK -aOS -aLK -aLK -aLK -aLK -aOS +aNC +aOY +aOY +aOY +aOY +aOY +aNC +aOY +aOY +aOY +aOY +aNC aaa -anY +anT aaa aaa aaa @@ -136038,22 +136456,22 @@ aaa aaa aaa aaa -anY -anY -aad -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY +anT +anT +aag +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT aaa aaa aaa diff --git a/_maps/cit_map_files/OmegaStation/OmegaStation.dmm b/_maps/cit_map_files/OmegaStation/OmegaStation.dmm index 1f23ab98ab..88e19bad50 100644 --- a/_maps/cit_map_files/OmegaStation/OmegaStation.dmm +++ b/_maps/cit_map_files/OmegaStation/OmegaStation.dmm @@ -623,7 +623,6 @@ "abk" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 0; name = "Bridge Access"; req_access_txt = "19" }, @@ -648,7 +647,6 @@ "abl" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 0; name = "Bridge Access"; req_access_txt = "19" }, @@ -692,7 +690,6 @@ "abq" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 0; name = "Bridge Access"; req_access_txt = "19" }, @@ -708,7 +705,6 @@ "abr" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 0; name = "Bridge Access"; req_access_txt = "19" }, @@ -1272,6 +1268,9 @@ /obj/structure/cable/white{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/maintenance/starboard) "acD" = ( @@ -3201,6 +3200,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/quartermaster/storage) "agC" = ( @@ -4237,7 +4239,6 @@ "aiy" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 0; name = "Bridge Access"; req_access_txt = "19" }, @@ -4259,8 +4260,8 @@ /area/ai_monitored/nuke_storage) "aiA" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/highsecurity{ - locked = 1; name = "AI Vault Chamber"; req_access_txt = "16" }, @@ -4293,7 +4294,6 @@ "aiC" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 0; name = "Bridge Access"; req_access_txt = "19" }, @@ -5637,6 +5637,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/security/brig) "akV" = ( @@ -7103,6 +7104,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/hallway/primary/central) "anS" = ( @@ -7116,6 +7118,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/hallway/primary/central) "anT" = ( @@ -7130,6 +7133,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/hallway/primary/central) "anU" = ( @@ -7422,6 +7426,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/security/brig) "aoy" = ( @@ -7462,6 +7469,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/security/brig) "aoB" = ( @@ -7898,6 +7908,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/quartermaster/miningdock) "apn" = ( @@ -7968,6 +7981,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/security/brig) "apy" = ( @@ -8039,6 +8055,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/security/brig) "apD" = ( @@ -8082,6 +8101,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/security/brig) "apG" = ( @@ -8804,6 +8826,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/crew_quarters/bar/atrium) "ard" = ( @@ -8831,6 +8856,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/crew_quarters/bar/atrium) "arf" = ( @@ -13680,6 +13708,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/hallway/secondary/exit) "aBo" = ( @@ -14407,6 +14438,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/engine/atmos) "aCJ" = ( @@ -14655,6 +14687,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/hallway/secondary/exit) "aDj" = ( @@ -14715,6 +14750,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/engine/atmos) "aDu" = ( @@ -15274,11 +15310,13 @@ }, /area/crew_quarters/dorms) "aEL" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, /obj/machinery/status_display{ pixel_y = -32 }, /obj/effect/turf_decal/bot, -/obj/machinery/vending/kink, /turf/open/floor/plasteel/vault{ dir = 5 }, @@ -16051,6 +16089,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/engine/engineering) "aGo" = ( @@ -16662,6 +16703,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/engine/engineering) "aHy" = ( @@ -17868,6 +17912,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/maintenance/port/central) "aJN" = ( @@ -18100,6 +18145,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/engine/gravity_generator) "aKt" = ( @@ -18169,6 +18217,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/engine/gravity_generator) "aKy" = ( @@ -18758,6 +18809,7 @@ name = "Supermatter Chamber"; req_access_txt = "24" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/engine, /area/engine/supermatter) "aLS" = ( @@ -20990,8 +21042,8 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/command{ - cyclelinkeddir = 2; name = "Telecomms Server Room"; req_access = null; req_access_txt = "61" @@ -21842,7 +21894,6 @@ /area/maintenance/starboard/aft) "aSM" = ( /obj/machinery/door/airlock/command{ - cyclelinkeddir = 2; name = "Telecomms Server Room"; req_access = null; req_access_txt = "61" @@ -21856,6 +21907,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/vault/telecomms{ dir = 5 }, @@ -27613,6 +27667,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/science/research) "beN" = ( @@ -27634,6 +27689,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/science/research) "beO" = ( @@ -27949,6 +28005,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/vault{ dir = 8 }, @@ -28121,6 +28178,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/science/xenobiology) "bfR" = ( @@ -28146,6 +28206,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/science/xenobiology) "bfS" = ( @@ -28848,6 +28911,9 @@ /obj/structure/cable/white{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/vault{ dir = 8 }, @@ -30212,6 +30278,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) "bkk" = ( @@ -31055,8 +31124,10 @@ /turf/open/space/basic, /area/space) "btk" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Docking Port" }, /obj/effect/turf_decal/stripes/line{ @@ -31068,8 +31139,10 @@ /turf/open/floor/plasteel, /area/hallway/secondary/entry) "btl" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Docking Port" }, /obj/effect/turf_decal/stripes/line{ @@ -31610,6 +31683,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/maintenance/starboard/fore) "byk" = ( @@ -31632,6 +31708,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/maintenance/starboard/fore) "bym" = ( @@ -31655,31 +31734,183 @@ /obj/structure/sign/nanotrasen, /turf/closed/wall, /area/security/checkpoint) -"hwc" = ( -/turf/closed/wall, +"cmp" = ( +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"csX" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/central) +"cRz" = ( +/obj/machinery/button/door{ + id = "supplybridge"; + name = "Shuttle Bay Space Bridge Control"; + pixel_y = 27; + req_access_txt = "0" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Bridge Hatch"; + req_access_txt = "12" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dfP" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dqM" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, /area/crew_quarters/cryopod) -"iCO" = ( -/obj/machinery/cryopod, -/turf/open/floor/plasteel/purple, -/area/crew_quarters/cryopod) -"puH" = ( +"eJF" = ( /obj/structure/cable/white{ icon_state = "0-8" }, /obj/machinery/power/apc{ areastring = "/area/medical/cryo"; - dir = 1; + dir = 2; name = "Cryogenics APC"; pixel_y = -24 }, /turf/open/floor/plasteel/purple, /area/crew_quarters/cryopod) -"rQZ" = ( +"fWz" = ( +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"gHi" = ( /obj/machinery/computer/cryopod{ pixel_x = 25 }, /turf/open/floor/plasteel/purple, /area/crew_quarters/cryopod) +"icS" = ( +/obj/machinery/cryopod, +/turf/open/floor/plasteel/purple, +/area/crew_quarters/cryopod) +"kKd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock"; + req_access = null; + req_access_txt = "48" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"lCg" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"nKi" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) "sws" = ( /obj/docking_port/stationary{ dheight = 1; @@ -31869,6 +32100,9 @@ /obj/structure/cable/white{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/maintenance/starboard) "sBW" = ( @@ -32516,6 +32750,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating, /area/maintenance/starboard) "sJe" = ( @@ -32550,6 +32787,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating, /area/maintenance/starboard) "sJk" = ( @@ -33281,8 +33521,8 @@ /area/ai_monitored/turret_protected/aisat_interior) "sML" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/highsecurity{ - locked = 1; name = "MiniSat Chamber"; req_access_txt = "16" }, @@ -33525,7 +33765,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "sNk" = ( /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "MiniSat External Access"; req_access = null; req_access_txt = "65" @@ -33586,6 +33825,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/vault, /area/ai_monitored/turret_protected/aisat_interior) "sNp" = ( @@ -33630,6 +33872,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel/vault, /area/ai_monitored/turret_protected/aisat_interior) "sNt" = ( @@ -33679,7 +33924,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "sNy" = ( /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "MiniSat External Access"; req_access = null; req_access_txt = "65" @@ -34019,6 +34263,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/maintenance/starboard) "sOM" = ( @@ -34120,10 +34367,47 @@ "sPY" = ( /turf/open/floor/plating, /area/maintenance/starboard/aft) -"sXe" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, +"usJ" = ( +/turf/closed/wall, /area/crew_quarters/cryopod) +"uxJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Atrium" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar/atrium) +"uxM" = ( +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"wUF" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Supermatter Chamber"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/supermatter) (1,1,1) = {" aaa @@ -65597,7 +65881,7 @@ aHo aIl aLR aMU -aLR +wUF aMU aOa aMU @@ -72024,7 +72308,7 @@ aJM aKU aMj aNo -aJM +csX aOY aQf abt @@ -73342,14 +73626,14 @@ bgP bgP bjX bgU -bkj +cmp bgU bkt bky bkB bkE bgU -bkj +cmp bgU bjY sLm @@ -75856,7 +76140,7 @@ anb anS aoP apV -ard +uxJ asg asg auc @@ -76880,8 +77164,8 @@ ajx akA alt amm -puH -hwc +eJF +usJ aoT apZ ara @@ -77138,7 +77422,7 @@ akB alk amm amm -sXe +dqM aoU aqa arg @@ -77393,9 +77677,9 @@ aiC ajz akC alk -iCO -rQZ -sXe +icS +gHi +dqM aoV aqb arh @@ -78469,7 +78753,7 @@ aZe bdp aZe beL -aYu +nKi bfP bgp bhb @@ -79240,7 +79524,7 @@ baa bds baa aZl -aYu +dfP bfP bgs bhb @@ -81787,7 +82071,7 @@ sIw axW aRz sJN -sJd +cRz abN aaa bte @@ -82524,9 +82808,9 @@ aaa aaa ado aeh -agB +lCg ado -agB +lCg ahq ado aaa @@ -83821,7 +84105,7 @@ aaa aaa amD amD -apm +kKd amD amD aaa @@ -85375,17 +85659,17 @@ aaa aaa aaa azb -aBh +fWz azb -aDi +uxM azb aaa aaa aaa azb -aDi +uxM azb -aDi +uxM azb aaa aaa diff --git a/_maps/cit_map_files/PubbyStation/PubbyStation.dmm b/_maps/cit_map_files/PubbyStation/PubbyStation.dmm index 4e866e4ec2..31fcdadf69 100644 --- a/_maps/cit_map_files/PubbyStation/PubbyStation.dmm +++ b/_maps/cit_map_files/PubbyStation/PubbyStation.dmm @@ -643,6 +643,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/ai_monitored/turret_protected/AIsatextAP) "adw" = ( @@ -697,6 +700,9 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating, /area/ai_monitored/turret_protected/AIsatextAS) "adC" = ( @@ -743,6 +749,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/ai_monitored/turret_protected/AIsatextAP) "adI" = ( @@ -779,6 +786,7 @@ /obj/structure/cable/yellow{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/aisat_interior) "adN" = ( @@ -808,6 +816,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/ai_monitored/turret_protected/AIsatextAS) "adR" = ( @@ -1141,6 +1150,9 @@ /obj/structure/cable/yellow{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/aisat_interior) "aeP" = ( @@ -1164,6 +1176,9 @@ name = "MiniSat Maintenance"; req_access_txt = "65" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plating, /area/ai_monitored/turret_protected/AIsatextAS) "aeT" = ( @@ -1740,8 +1755,8 @@ /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/aisat_interior) "agt" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "MiniSat External Access"; req_access = null; req_access_txt = "65" @@ -1789,6 +1804,7 @@ name = "Cell 2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/vault, /area/security/prison) "agA" = ( @@ -1807,6 +1823,7 @@ id_tag = "permabolt1"; name = "Cell 1" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/vault, /area/security/prison) "agC" = ( @@ -1961,8 +1978,10 @@ /turf/open/floor/plating, /area/security/main) "agR" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "MiniSat External Access"; req_access = null; req_access_txt = "65" @@ -2113,6 +2132,9 @@ req_access_txt = "2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) "ahn" = ( @@ -2136,6 +2158,9 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) "ahq" = ( @@ -3436,6 +3461,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) "akm" = ( @@ -3482,6 +3510,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) "akq" = ( @@ -5566,10 +5597,12 @@ /area/maintenance/fore) "apl" = ( /obj/machinery/door/airlock/external{ - cyclelinkeddir = 0; name = "Security External Airlock"; req_access_txt = "63" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/maintenance/fore) "apm" = ( @@ -5579,8 +5612,10 @@ /turf/open/floor/plating, /area/maintenance/fore) "apn" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Security External Airlock"; req_access_txt = "63" }, @@ -6285,6 +6320,9 @@ name = "Labor Camp Shuttle Airlock"; req_access_txt = "2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/security/brig) "arj" = ( @@ -6299,6 +6337,9 @@ pixel_y = -25; req_access_txt = "2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/security/brig) "ark" = ( @@ -6735,6 +6776,7 @@ /obj/machinery/door/airlock/external{ name = "Escape Pod" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/crew_quarters/dorms) "asj" = ( @@ -7312,8 +7354,8 @@ /turf/open/floor/plating, /area/security/brig) "atE" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 2; id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63" @@ -7337,8 +7379,8 @@ /turf/open/floor/plating, /area/security/brig) "atG" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 2; id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63" @@ -7376,6 +7418,7 @@ req_access = null; req_access_txt = "20" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/maintenance/fore) "atL" = ( @@ -7468,8 +7511,8 @@ /turf/closed/wall, /area/bridge) "atZ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Bridge External Access"; req_access = null; req_access_txt = "10;13" @@ -7869,9 +7912,8 @@ /turf/closed/wall/r_wall, /area/ai_monitored/nuke_storage) "auY" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/vault{ - icon_state = "door_locked"; - locked = 1; req_access_txt = "53" }, /obj/structure/cable{ @@ -8208,6 +8250,9 @@ req_access = null; req_access_txt = "20" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/maintenance/fore) "avN" = ( @@ -8242,6 +8287,9 @@ req_access_txt = "65" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel/vault{ dir = 5 }, @@ -8321,8 +8369,10 @@ /turf/open/floor/plasteel/darkyellow, /area/bridge) "awc" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Bridge External Access"; req_access = null; req_access_txt = "10;13" @@ -8642,8 +8692,10 @@ /area/security/brig) "awL" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 1; id_tag = "outerbrig"; name = "Brig"; req_access_txt = "63" @@ -8670,8 +8722,10 @@ /area/security/brig) "awN" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 1; id_tag = "outerbrig"; name = "Brig"; req_access_txt = "63" @@ -8757,6 +8811,9 @@ req_access = null; req_access_txt = "20" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plating, /area/maintenance/fore) "awU" = ( @@ -8957,6 +9014,9 @@ /obj/machinery/door/airlock/public/glass{ name = "Holodeck Door" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) "axz" = ( @@ -9864,8 +9924,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13" @@ -9882,8 +9944,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13" @@ -10427,8 +10491,8 @@ /area/crew_quarters/heads/captain) "aBq" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 2; name = "Bridge"; req_access_txt = "19" }, @@ -10441,8 +10505,8 @@ "aBr" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 2; name = "Bridge"; req_access_txt = "19" }, @@ -10504,8 +10568,8 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 2; name = "Bridge"; req_access_txt = "19" }, @@ -12192,8 +12256,10 @@ /turf/open/floor/plating, /area/maintenance/department/cargo) "aFh" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; req_access_txt = "13" }, /turf/open/floor/plating, @@ -12202,8 +12268,10 @@ /turf/open/floor/plating, /area/maintenance/department/cargo) "aFj" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; req_access_txt = "13" }, /turf/open/floor/plating, @@ -12902,8 +12970,10 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 1; name = "Bridge"; req_access_txt = "19" }, @@ -12916,8 +12986,10 @@ }, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 1; name = "Bridge"; req_access_txt = "19" }, @@ -12938,8 +13010,10 @@ /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 1; name = "Bridge"; req_access_txt = "19" }, @@ -14278,8 +14352,10 @@ /turf/open/floor/plating, /area/maintenance/department/cargo) "aKy" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Escape Airlock" }, /turf/open/floor/plating, @@ -14294,8 +14370,10 @@ /turf/open/floor/plating, /area/hallway/secondary/exit/departure_lounge) "aKB" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Escape Airlock" }, /turf/open/floor/plating, @@ -18286,6 +18364,9 @@ name = "Supply Dock Airlock"; req_access_txt = "31" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/quartermaster/storage) "aUz" = ( @@ -19763,7 +19844,6 @@ /area/crew_quarters/kitchen) "aYd" = ( /obj/machinery/door/airlock{ - cyclelinkeddir = 8; name = "Kitchen"; req_access_txt = "0"; req_one_access_txt = "25; 28" @@ -21303,8 +21383,8 @@ /turf/open/space, /area/solar/starboard) "bbQ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Port Docking Bay 1" }, /turf/open/floor/plating, @@ -21682,8 +21762,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13" @@ -21700,8 +21782,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13" @@ -22072,8 +22156,10 @@ /turf/open/space, /area/solar/starboard) "bdV" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Port Docking Bay 1" }, /turf/open/floor/plating, @@ -22181,8 +22267,10 @@ /area/hydroponics) "bek" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/public/glass{ - cyclelinkeddir = 4; name = "Hydroponics"; req_access_txt = "35" }, @@ -22228,8 +22316,10 @@ /area/hallway/primary/central) "beo" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/public/glass{ - cyclelinkeddir = 8; name = "Kitchen"; req_access_txt = "28" }, @@ -22794,6 +22884,9 @@ req_access = null; req_access_txt = "48" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/quartermaster/miningdock) "bfJ" = ( @@ -25889,6 +25982,7 @@ req_access_txt = "30" }, /obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/dark, /area/science/server) "bnV" = ( @@ -27836,6 +27930,7 @@ }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/maintenance/department/cargo) "bsl" = ( @@ -28234,6 +28329,9 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/dark, /area/science/server) "btg" = ( @@ -28467,8 +28565,10 @@ /turf/open/space/basic, /area/space) "btL" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; id_tag = null; name = "Port Docking Bay 2"; req_access_txt = "0" @@ -28476,8 +28576,10 @@ /turf/open/floor/plating, /area/hallway/secondary/entry) "btM" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; id_tag = null; name = "Port Docking Bay 2"; req_access_txt = "0" @@ -29010,6 +29112,9 @@ name = "Kill Room Access"; req_access_txt = "55" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/science/xenobiology) "buT" = ( @@ -29047,6 +29152,9 @@ name = "Kill Room"; req_access_txt = "55" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating, /area/science/xenobiology) "buW" = ( @@ -30164,8 +30272,10 @@ /turf/open/floor/plasteel/dark, /area/science/research/lobby) "bxq" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/research{ - cyclelinkeddir = 4; name = "Research Division Access"; req_access_txt = "47" }, @@ -30200,8 +30310,10 @@ /turf/open/floor/plasteel/dark, /area/science/research) "bxt" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/research{ - cyclelinkeddir = 8; name = "Research Division Access"; req_access_txt = "47" }, @@ -30302,12 +30414,11 @@ /area/science/research) "bxE" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/research{ autoclose = 0; frequency = 1449; - icon_state = "door_locked"; id_tag = "xeno_airlock_exterior"; - locked = 1; name = "Xenobiology Lab External Airlock"; req_access_txt = "55" }, @@ -30321,6 +30432,9 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/science/xenobiology) "bxF" = ( @@ -30341,12 +30455,11 @@ /area/science/xenobiology) "bxI" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/research{ autoclose = 0; frequency = 1449; - icon_state = "door_locked"; id_tag = "xeno_airlock_interior"; - locked = 1; name = "Xenobiology Lab Internal Airlock"; req_access_txt = "55" }, @@ -30360,6 +30473,9 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel/white, /area/science/xenobiology) "bxJ" = ( @@ -30550,6 +30666,9 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plating, /area/maintenance/department/cargo) "bxX" = ( @@ -31925,12 +32044,11 @@ /area/medical/virology) "bAX" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/virology{ autoclose = 0; frequency = 1449; - icon_state = "door_locked"; id_tag = "virology_airlock_exterior"; - locked = 1; name = "Virology Exterior Airlock"; req_access_txt = "39" }, @@ -31945,6 +32063,7 @@ req_access_txt = "39" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/white, /area/medical/virology) "bAY" = ( @@ -33143,6 +33262,9 @@ name = "Toxins Storage"; req_access_txt = "8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/science/storage) "bDR" = ( @@ -33190,6 +33312,9 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/science/mixing) "bDV" = ( @@ -34111,12 +34236,11 @@ /area/medical/virology) "bFM" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/virology{ autoclose = 0; frequency = 1449; - icon_state = "door_locked"; id_tag = "virology_airlock_interior"; - locked = 1; name = "Virology Interior Airlock"; req_access_txt = "39" }, @@ -34131,6 +34255,9 @@ req_access_txt = "39" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/white, /area/medical/virology) "bFN" = ( @@ -34479,6 +34606,7 @@ /obj/machinery/door/airlock/external{ name = "Pod Docking Bay" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/chapel/dock) "bGG" = ( @@ -35396,17 +35524,17 @@ /turf/closed/wall/r_wall, /area/science/mixing) "bIL" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/public/glass{ autoclose = 0; frequency = 1449; heat_proof = 1; - icon_state = "door_locked"; id_tag = "tox_airlock_interior"; - locked = 1; name = "Interior Airlock"; req_access_txt = "8"; req_one_access_txt = "0" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/engine, /area/science/mixing) "bIM" = ( @@ -35622,6 +35750,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/freezer, /area/medical/surgery) "bJr" = ( @@ -35645,6 +35776,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel/freezer, /area/medical/surgery) "bJu" = ( @@ -36383,23 +36517,25 @@ /turf/open/floor/engine/vacuum, /area/engine/atmos) "bLf" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/public/glass{ autoclose = 0; frequency = 1449; heat_proof = 1; - icon_state = "door_locked"; id_tag = "tox_airlock_exterior"; - locked = 1; name = "Exterior Airlock"; req_access_txt = "8"; req_one_access_txt = "0" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/engine, /area/science/mixing) "bLg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; req_access_txt = "8"; req_one_access_txt = "0" }, @@ -36726,7 +36862,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/atmos/glass{ - cyclelinkeddir = 0; name = "Atmospherics"; req_access_txt = "24" }, @@ -37680,8 +37815,10 @@ /area/science/mixing) "bOu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; req_access_txt = "8"; req_one_access_txt = "0" }, @@ -38979,6 +39116,9 @@ req_access_txt = "11" }, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/engine/gravity_generator) "bRI" = ( @@ -39004,6 +39144,9 @@ req_access_txt = "11" }, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/storage/tech) "bRL" = ( @@ -39463,7 +39606,6 @@ "bSQ" = ( /obj/machinery/door/firedoor/heavy, /obj/machinery/door/airlock/atmos/glass{ - cyclelinkeddir = 0; name = "Atmospherics Monitoring"; req_access_txt = "24" }, @@ -39805,8 +39947,8 @@ /turf/closed/wall, /area/engine/engineering) "bTF" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/engineering{ - cyclelinkeddir = 2; name = "Engineering"; req_one_access_txt = "10;24" }, @@ -40550,6 +40692,18 @@ }, /turf/open/space/basic, /area/space/nearstation) +"bVq" = ( +/obj/machinery/door/airlock/external{ + name = "Construction Zone"; + req_access = null; + req_access_txt = "0"; + req_one_access_txt = "0" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) "bVr" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/airless, @@ -41409,8 +41563,10 @@ /turf/open/floor/plasteel/dark, /area/engine/engine_smes) "bXp" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/engineering{ - cyclelinkeddir = 1; name = "Engine Room"; req_access_txt = "10" }, @@ -41552,9 +41708,10 @@ /turf/open/floor/plasteel/dark, /area/chapel/main/monastery) "bXL" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 4 +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 }, +/obj/machinery/door/airlock/external, /turf/open/floor/plating, /area/chapel/asteroid/monastery) "bXM" = ( @@ -41564,9 +41721,10 @@ /turf/open/floor/plating, /area/chapel/asteroid/monastery) "bXN" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 8 +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 }, +/obj/machinery/door/airlock/external, /turf/open/floor/plating, /area/chapel/asteroid/monastery) "bXS" = ( @@ -41799,12 +41957,14 @@ /area/chapel/main/monastery) "bYF" = ( /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Construction Zone"; req_access = null; req_access_txt = "0"; req_one_access_txt = "0" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/maintenance/department/engine) "bYG" = ( @@ -42793,13 +42953,12 @@ /obj/structure/cable/yellow{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/public/glass{ autoclose = 0; frequency = 1449; heat_proof = 1; - icon_state = "door_locked"; id_tag = "incinerator_airlock_interior"; - locked = 1; name = "Turbine Interior Airlock"; req_access_txt = "24"; req_one_access_txt = "0" @@ -42816,13 +42975,12 @@ /obj/structure/cable/yellow{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/public/glass{ autoclose = 0; frequency = 1449; heat_proof = 1; - icon_state = "door_locked"; id_tag = "incinerator_airlock_exterior"; - locked = 1; name = "Turbine Exterior Airlock"; req_access_txt = "24"; req_one_access_txt = "0" @@ -43568,8 +43726,10 @@ }, /area/maintenance/disposal/incinerator) "cdj" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Atmospherics External Access"; req_access = null; req_access_txt = "24" @@ -43586,8 +43746,10 @@ /turf/open/floor/plating, /area/maintenance/disposal/incinerator) "cdl" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Atmospherics External Access"; req_access = null; req_access_txt = "24" @@ -43872,6 +44034,9 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/chapel/main/monastery) "ceh" = ( @@ -43948,8 +44113,8 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Engineering External Access"; req_access = null; req_access_txt = "10;13" @@ -44008,8 +44173,8 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Engineering External Access"; req_access = null; req_access_txt = "10;13" @@ -44268,8 +44433,10 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Engineering External Access"; req_access = null; req_access_txt = "10;13" @@ -44315,8 +44482,10 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Engineering External Access"; req_access = null; req_access_txt = "10;13" @@ -44365,18 +44534,20 @@ }, /area/chapel/main/monastery) "cfH" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 4 +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 }, +/obj/machinery/door/airlock/external, /turf/open/floor/plating, /area/chapel/main/monastery) "cfI" = ( /turf/open/floor/plating, /area/chapel/main/monastery) "cfJ" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 8 +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 }, +/obj/machinery/door/airlock/external, /turf/open/floor/plating, /area/chapel/main/monastery) "cfK" = ( @@ -44564,8 +44735,8 @@ /turf/open/floor/plating, /area/engine/engineering) "cgs" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Engineering External Access"; req_access = null; req_access_txt = "61" @@ -44849,8 +45020,10 @@ /turf/open/floor/plasteel/showroomfloor, /area/chapel/main/monastery) "chv" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Engineering External Access"; req_access = null; req_access_txt = "61" @@ -45915,8 +46088,8 @@ /turf/open/space, /area/space/nearstation) "clz" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Telecommunications External Access"; req_access = null; req_access_txt = "61" @@ -45940,8 +46113,10 @@ /turf/open/floor/plating, /area/tcommsat/computer) "clD" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Telecommunications External Access"; req_access = null; req_access_txt = "61" @@ -46295,8 +46470,8 @@ }, /area/tcommsat/computer) "cmw" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/engineering/glass{ - cyclelinkeddir = 2; name = "Server Room"; req_access_txt = "61" }, @@ -46370,8 +46545,10 @@ /turf/open/floor/plating, /area/tcommsat/computer) "cmF" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/engineering/glass{ - cyclelinkeddir = 1; name = "Server Room"; req_access_txt = "61" }, @@ -46941,7 +47118,6 @@ /area/crew_quarters/bar) "cpe" = ( /obj/machinery/door/airlock{ - cyclelinkeddir = 4; name = "Bar Access"; req_access_txt = "25" }, @@ -47501,8 +47677,10 @@ /turf/open/space, /area/space/nearstation) "crz" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; req_access_txt = "13" }, /obj/structure/disposalpipe/segment{ @@ -47520,8 +47698,10 @@ /turf/open/floor/plating, /area/maintenance/department/engine) "crB" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; req_access_txt = "13" }, /obj/structure/disposalpipe/segment{ @@ -47820,6 +48000,9 @@ opacity = 1; req_access_txt = "22" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/chapel/office) "csM" = ( @@ -48945,6 +49128,7 @@ name = "Library" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/dark, /area/library) "cxB" = ( @@ -49788,13 +49972,59 @@ "cDa" = ( /turf/closed/wall, /area/quartermaster/warehouse) -"evx" = ( +"cDX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/darkpurple, +/area/crew_quarters/cryopod) +"gfg" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/plasteel/darkpurple, /area/crew_quarters/cryopod) -"iVL" = ( +"gHc" = ( +/turf/open/floor/plasteel/darkpurple, +/area/crew_quarters/cryopod) +"gOG" = ( +/obj/machinery/cryopod, +/turf/open/floor/plasteel/darkpurple, +/area/crew_quarters/cryopod) +"izB" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/crew_quarters/dorms) +"jgr" = ( +/obj/machinery/door/airlock/centcom{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"kjK" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"kls" = ( /obj/machinery/light{ dir = 8 }, @@ -49805,7 +50035,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/prison) -"jvQ" = ( +"kFZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49817,7 +50047,15 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"lcu" = ( +"lqy" = ( +/obj/machinery/door/airlock/centcom{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/dark, +/area/library) +"mTb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49826,29 +50064,34 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"mhM" = ( -/turf/open/floor/plating/airless, -/area/space/nearstation) -"nnS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" +"oig" = ( +/obj/machinery/cryopod, +/obj/machinery/light/small/built{ + dir = 4 }, /turf/open/floor/plasteel/darkpurple, /area/crew_quarters/cryopod) -"oZq" = ( -/obj/structure/cable{ - icon_state = "4-8" +"oPy" = ( +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock"; + req_access = null; + req_access_txt = "48" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 }, -/obj/structure/cable{ - icon_state = "1-8" +/turf/open/floor/plating, +/area/quartermaster/miningdock) +"pbm" = ( +/obj/machinery/door/airlock/external{ + name = "Pod Docking Bay" }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"pgi" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/chapel/dock) +"pCj" = ( /obj/machinery/power/apc{ areastring = "/area/medical/cryo"; dir = 1; @@ -49860,35 +50103,51 @@ }, /turf/open/floor/plasteel/darkpurple, /area/crew_quarters/cryopod) -"pPV" = ( +"sQt" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"tBM" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/plasteel/stairs, /area/crew_quarters/cryopod) -"pXL" = ( +"tWw" = ( /obj/machinery/computer/cryopod{ pixel_y = 24 }, /turf/open/floor/plasteel/darkpurple, /area/crew_quarters/cryopod) -"qSi" = ( +"vvr" = ( /turf/closed/wall, /area/crew_quarters/cryopod) -"tnH" = ( -/obj/machinery/cryopod, -/obj/machinery/light/small/built{ - dir = 4 +"vzz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" }, -/turf/open/floor/plasteel/darkpurple, -/area/crew_quarters/cryopod) -"tMS" = ( -/obj/machinery/cryopod, -/turf/open/floor/plasteel/darkpurple, -/area/crew_quarters/cryopod) -"tUf" = ( -/turf/open/floor/plasteel/darkpurple, -/area/crew_quarters/cryopod) +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"vOw" = ( +/obj/machinery/door/airlock/centcom{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/library) (1,1,1) = {" aaa @@ -66484,7 +66743,7 @@ aaa bFE bGF bHJ -bGF +pbm bKa cqH bLn @@ -67561,13 +67820,13 @@ cjQ cjQ cxn cjQ -ckT +lqy cxC cxK cxX cyl cyz -ckT +jgr cjQ cjQ cjQ @@ -67824,7 +68083,7 @@ cxL cxY cym cyA -cxz +vOw ckm ckm ckm @@ -69483,7 +69742,7 @@ aem aem aeT afn -iVL +kls afZ agn agy @@ -75240,7 +75499,7 @@ bPA bSw bSw bDi -bYF +bVq bZt cac cac @@ -80138,8 +80397,8 @@ cgv cgV bBW bBW +aaa cgV -mhM aaa bBW bBW @@ -80914,7 +81173,7 @@ cis ciG aaa aaa -cgV +aaa cfV bTE abI @@ -81163,7 +81422,7 @@ cfd cfw cfW cgw -mhM +cgV abI abI cij @@ -81171,7 +81430,7 @@ cit ciH abI abI -mhM +cgV cfV bTE abI @@ -81302,7 +81561,7 @@ aee aee aee aev -adv +kjK aeZ afu afL @@ -81420,7 +81679,7 @@ cfe cfx cfa cgv -cgV +aaa aaa aaa cik @@ -82195,8 +82454,8 @@ cgV bBW aaa aaa -mhM cgV +aaa bBW bBW cgV @@ -86478,12 +86737,12 @@ aaa aaa aaa aaa -qSi -pgi -evx -pPV -jvQ -oZq +vvr +pCj +gfg +tBM +kFZ +aIU aJI aLe aMe @@ -86735,11 +86994,11 @@ aaa aaa aaa aaa -qSi -pXL -tUf -nnS -lcu +vvr +tWw +gHc +cDX +mTb aIU aJH aLe @@ -86992,10 +87251,10 @@ apX aBL aBL apX -qSi -tnH -tMS -qSi +vvr +oig +gOG +vvr aHN aIU aJI @@ -89552,7 +89811,7 @@ aoF aqY asi atk -asi +izB avk awv axt @@ -91890,9 +92149,9 @@ aaa aaa aLg aTr -aUy +sQt aPd -aUy +sQt aXz aLg aaa @@ -91901,7 +92160,7 @@ aaa aaa aaa bdI -bfI +oPy bdI aaa aEj @@ -93410,10 +93669,10 @@ atn atn avm avm -axy +vzz avm avm -axy +vzz avm avm atn diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index 87757e7a98..11646eaa1a 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -647,6 +647,7 @@ id_tag = "permabolt3"; name = "Cell 3" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/floorgrime, /area/security/prison) "acf" = ( @@ -659,6 +660,7 @@ name = "Cell 2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/floorgrime, /area/security/prison) "acg" = ( @@ -674,6 +676,7 @@ name = "Cell 1" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/floorgrime, /area/security/prison) "ach" = ( @@ -700,6 +703,9 @@ /turf/open/floor/carpet, /area/crew_quarters/heads/hos) "ack" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -737,10 +743,6 @@ /obj/structure/closet/secure_closet/hos, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"aco" = ( -/obj/structure/closet/bombcloset/security, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) "acp" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/showroomfloor, @@ -1000,6 +1002,7 @@ name = "Security External Airlock"; req_access_txt = "63" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/security/main) "acV" = ( @@ -1341,6 +1344,9 @@ name = "Long-Term Cell 3"; req_access_txt = "2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) "adI" = ( @@ -1349,6 +1355,9 @@ req_access_txt = "2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) "adJ" = ( @@ -1360,6 +1369,9 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) "adK" = ( @@ -2134,6 +2146,9 @@ name = "Escape Pod Three"; req_access_txt = "0" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating, /area/security/main) "afp" = ( @@ -2344,8 +2359,8 @@ /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) "afP" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/command{ - cyclelinkeddir = 2; name = "Command Tool Storage"; req_access = null; req_access_txt = "19" @@ -3571,6 +3586,13 @@ dir = 5 }, /area/security/brig) +"aiH" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/brig) "aiI" = ( /obj/structure/cable{ icon_state = "4-8" @@ -3610,28 +3632,19 @@ /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "aiL" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/warden) -"aiM" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control"; - req_access_txt = "3" +/obj/machinery/computer/secure_data{ + dir = 1 }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"aiN" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, +"aiM" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/pen, +/obj/item/hand_labeler, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/light, +/turf/open/floor/plasteel/showroomfloor, /area/security/warden) "aiO" = ( /obj/structure/window/reinforced{ @@ -4078,6 +4091,7 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/maintenance/solars/port/fore) "ajZ" = ( @@ -4325,7 +4339,7 @@ /turf/open/floor/plasteel/red/side{ dir = 1 }, -/area/hallway/primary/fore) +/area/security/brig) "akA" = ( /obj/structure/chair{ dir = 8; @@ -4461,13 +4475,13 @@ /turf/open/floor/plasteel/dark, /area/security/brig) "akV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, /obj/structure/cable{ icon_state = "0-8" }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/brig) "akX" = ( @@ -4532,7 +4546,7 @@ /turf/open/floor/plasteel/red/side{ dir = 5 }, -/area/hallway/primary/fore) +/area/security/brig) "alg" = ( /obj/structure/cable{ icon_state = "0-2" @@ -4549,6 +4563,9 @@ req_access = null; req_access_txt = "10; 13" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) "ali" = ( @@ -4568,6 +4585,9 @@ req_access_txt = "2"; shuttledocked = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/security/processing) "alp" = ( @@ -4674,11 +4694,10 @@ /turf/open/floor/plasteel/dark, /area/security/brig) "alC" = ( -/obj/item/twohanded/required/kirbyplants/random, /turf/open/floor/plasteel/red/side{ dir = 9 }, -/area/hallway/primary/fore) +/area/security/brig) "alD" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -4689,7 +4708,7 @@ /turf/open/floor/plasteel/red/side{ dir = 5 }, -/area/hallway/primary/fore) +/area/security/brig) "alF" = ( /obj/machinery/atmospherics/components/unary/tank/air{ dir = 2 @@ -4744,6 +4763,17 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/maintenance/fore/secondary) +"alN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "seclobby"; + name = "security shutters" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/brig) "alO" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -4906,11 +4936,6 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"amo" = ( -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/hallway/primary/fore) "amp" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 4"; @@ -4927,7 +4952,7 @@ /turf/open/floor/plasteel/red/side{ dir = 4 }, -/area/hallway/primary/fore) +/area/security/brig) "amr" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -4954,8 +4979,8 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13" @@ -5040,6 +5065,15 @@ /obj/item/trash/plate, /turf/open/floor/plating, /area/maintenance/port/fore) +"amI" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Cryogenics APC"; + pixel_x = 24 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/crew_quarters/cryopod) "amL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/spawner/structure/window/reinforced, @@ -5302,11 +5336,6 @@ dir = 4 }, /area/hallway/primary/fore) -"anB" = ( -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/hallway/primary/fore) "anC" = ( /obj/effect/spawner/structure/window, /obj/machinery/door/poddoor/shutters/preopen{ @@ -5314,7 +5343,7 @@ name = "security shutters" }, /turf/open/floor/plating, -/area/security/courtroom) +/area/security/brig) "anD" = ( /obj/structure/cable{ icon_state = "1-2" @@ -5330,6 +5359,9 @@ cyclelinkeddir = 4; req_access_txt = "13" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/maintenance/fore/secondary) "anF" = ( @@ -5369,6 +5401,9 @@ name = "Labor Camp Shuttle Airlock"; shuttledocked = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/security/processing) "anO" = ( @@ -5417,7 +5452,7 @@ name = "security shutters" }, /turf/open/floor/plasteel, -/area/hallway/primary/fore) +/area/security/brig) "anU" = ( /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ @@ -5428,7 +5463,7 @@ name = "Courtroom" }, /turf/open/floor/plasteel/dark, -/area/security/courtroom) +/area/security/brig) "anV" = ( /obj/machinery/light/small, /turf/open/floor/plasteel/dark, @@ -5651,7 +5686,7 @@ /turf/open/floor/plasteel/red/side{ dir = 10 }, -/area/hallway/primary/fore) +/area/security/brig) "aoC" = ( /obj/structure/chair{ dir = 1 @@ -5661,7 +5696,7 @@ pixel_y = -29 }, /turf/open/floor/plasteel/red/side, -/area/hallway/primary/fore) +/area/security/brig) "aoD" = ( /obj/machinery/camera{ c_tag = "Fore Primary Hallway East"; @@ -5676,18 +5711,18 @@ dir = 1 }, /turf/open/floor/plasteel/red/side, -/area/hallway/primary/fore) +/area/security/brig) "aoE" = ( /obj/structure/table, /obj/machinery/chem_dispenser/drinks, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/bar, -/area/hallway/primary/fore) +/area/security/brig) "aoF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/plasteel/red/side, -/area/hallway/primary/fore) +/area/security/brig) "aoG" = ( /obj/structure/table, /obj/machinery/firealarm{ @@ -6365,6 +6400,9 @@ req_access = null; req_access_txt = "13" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plating, /area/maintenance/starboard/fore) "aqw" = ( @@ -6440,8 +6478,8 @@ /turf/open/floor/plating, /area/shuttle/auxillary_base) "aqJ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "External Access"; req_access = null; req_access_txt = "13" @@ -7385,7 +7423,6 @@ /area/crew_quarters/heads/hos) "atp" = ( /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Construction Zone"; req_access = null; req_access_txt = "0"; @@ -8017,8 +8054,10 @@ /turf/open/floor/plating, /area/maintenance/port/fore) "avd" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; req_access_txt = "13" }, /turf/open/floor/plating, @@ -9808,8 +9847,8 @@ /turf/open/floor/plating, /area/maintenance/department/electrical) "azy" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Port Docking Bay 1" }, /turf/open/floor/plating, @@ -11983,6 +12022,7 @@ name = "EVA Storage"; req_access_txt = "18" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) "aEY" = ( @@ -13059,9 +13099,8 @@ /turf/closed/wall/r_wall, /area/ai_monitored/nuke_storage) "aHG" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/vault{ - icon_state = "door_locked"; - locked = 1; req_access_txt = "53" }, /obj/structure/cable{ @@ -14562,7 +14601,6 @@ /area/maintenance/port/fore) "aLu" = ( /obj/machinery/door/airlock/engineering{ - cyclelinkeddir = 1; name = "Auxillary Base Construction"; req_access_txt = "0"; req_one_access_txt = "32;47;48" @@ -16416,8 +16454,10 @@ /turf/open/floor/plating, /area/hallway/secondary/exit) "aQF" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Security Escape Airlock"; req_access_txt = "2" }, @@ -17322,8 +17362,10 @@ /turf/open/floor/plasteel, /area/hallway/secondary/exit) "aTn" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Escape Airlock" }, /obj/structure/sign/warning/vacuum/external{ @@ -17332,8 +17374,10 @@ /turf/open/floor/plating, /area/hallway/secondary/exit) "aTo" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Escape Airlock" }, /turf/open/floor/plating, @@ -18605,8 +18649,10 @@ /obj/structure/cable{ icon_state = "0-4" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 4; name = "Bridge"; req_access_txt = "19" }, @@ -18623,8 +18669,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 8; name = "Bridge"; req_access_txt = "19" }, @@ -18820,8 +18868,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 4; name = "Bridge"; req_access_txt = "19" }, @@ -18853,8 +18903,10 @@ /obj/structure/cable{ icon_state = "0-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 8; name = "Bridge"; req_access_txt = "19" }, @@ -19057,8 +19109,10 @@ /turf/open/floor/plasteel, /area/hallway/secondary/exit) "aXI" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; id_tag = null; name = "Port Docking Bay 2"; req_access_txt = "0" @@ -21203,8 +21257,10 @@ /turf/open/floor/plasteel, /area/hallway/secondary/exit) "bdA" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Cargo Escape Airlock" }, /turf/open/floor/plating, @@ -21705,16 +21761,16 @@ }, /area/hallway/secondary/exit) "beK" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Port Docking Bay 4"; req_access_txt = "0" }, /turf/open/floor/plating, /area/hallway/secondary/entry) "beL" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Port Docking Bay 3"; req_access_txt = "0" }, @@ -22354,18 +22410,6 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, /turf/open/floor/plating, /area/maintenance/port) -"bgx" = ( -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/bar) "bgy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 @@ -22798,8 +22842,8 @@ /turf/closed/wall, /area/science/research) "bhB" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/research{ - cyclelinkeddir = 2; name = "Research Division Access"; req_access_txt = "47" }, @@ -24250,6 +24294,7 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/maintenance/central/secondary) "ble" = ( @@ -24583,8 +24628,10 @@ /turf/open/floor/plating, /area/maintenance/starboard) "blP" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; req_access_txt = "13" }, /turf/open/floor/plating, @@ -24636,8 +24683,10 @@ /turf/open/floor/plating, /area/quartermaster/storage) "blX" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/research{ - cyclelinkeddir = 1; name = "Research Division Access"; req_access_txt = "47" }, @@ -26646,6 +26695,9 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plating, /area/maintenance/central/secondary) "bqL" = ( @@ -27095,8 +27147,10 @@ /turf/open/floor/plating, /area/maintenance/starboard) "brJ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Supply Dock Airlock"; req_access_txt = "31" }, @@ -27929,6 +27983,7 @@ req_access_txt = "11" }, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/engine/gravity_generator) "btG" = ( @@ -33212,6 +33267,7 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/maintenance/starboard) "bFZ" = ( @@ -33445,6 +33501,9 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/white, /area/science/mixing) "bGD" = ( @@ -34103,16 +34162,16 @@ req_access_txt = "39" }, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/virology{ autoclose = 0; frequency = 1449; - icon_state = "door_locked"; id_tag = "virology_airlock_exterior"; - locked = 1; name = "Virology Exterior Airlock"; req_access_txt = "39" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/white, /area/medical/virology) "bIg" = ( @@ -34487,6 +34546,9 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/science/mixing) "bIT" = ( @@ -34549,8 +34611,10 @@ /turf/open/floor/plating/airless, /area/science/test_area) "bJb" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Mining Dock Airlock"; req_access = null; req_access_txt = "48"; @@ -34571,8 +34635,10 @@ /turf/open/space/basic, /area/space) "bJd" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/mining/glass{ - cyclelinkeddir = 8; name = "Mining Dock"; req_access_txt = "48" }, @@ -36417,26 +36483,24 @@ /turf/open/floor/engine/vacuum, /area/science/mixing) "bNu" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/research/glass{ autoclose = 0; frequency = 1449; heat_proof = 1; - icon_state = "door_locked"; id_tag = "tox_airlock_exterior"; - locked = 1; name = "Mixing Room Exterior Airlock"; req_access_txt = "8" }, /turf/open/floor/engine, /area/science/mixing) "bNv" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/research/glass{ autoclose = 0; frequency = 1449; heat_proof = 1; - icon_state = "door_locked"; id_tag = "tox_airlock_interior"; - locked = 1; name = "Mixing Room Interior Airlock"; req_access_txt = "8" }, @@ -38278,16 +38342,18 @@ icon_state = "1-2" }, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/virology{ autoclose = 0; frequency = 1449; - icon_state = "door_locked"; id_tag = "virology_airlock_interior"; - locked = 1; name = "Virology Interior Airlock"; req_access_txt = "39" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/white, /area/medical/virology) "bRQ" = ( @@ -39389,7 +39455,7 @@ icon_state = "4-8" }, /turf/open/floor/plating, -/area/maintenance/port/aft) +/area/maintenance/bar) "bUx" = ( /obj/structure/disposalpipe/junction/yjunction{ dir = 1 @@ -40580,8 +40646,10 @@ /turf/open/floor/plating, /area/maintenance/starboard/aft) "bXv" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Access"; req_access = null; req_access_txt = "13" @@ -41643,8 +41711,10 @@ }, /area/tcommsat/server) "cal" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/engineering/glass{ - cyclelinkeddir = 4; name = "Server Room"; req_access_txt = "61" }, @@ -41656,8 +41726,10 @@ }, /area/tcommsat/computer) "can" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/engineering/glass{ - cyclelinkeddir = 8; name = "Server Room"; req_access_txt = "61" }, @@ -43860,8 +43932,8 @@ /turf/open/floor/plasteel, /area/engine/engineering) "cfM" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/engineering{ - cyclelinkeddir = 2; name = "Engine Room"; req_access_txt = "10" }, @@ -44279,8 +44351,10 @@ /turf/open/floor/plating, /area/crew_quarters/heads/chief) "cgT" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/engineering{ - cyclelinkeddir = 8; name = "SMES Room"; req_access_txt = "32" }, @@ -44377,8 +44451,10 @@ }, /area/engine/atmos) "che" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Atmospherics External Airlock"; req_access_txt = "24" }, @@ -44683,8 +44759,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13" @@ -45468,8 +45546,8 @@ /turf/open/floor/plasteel, /area/engine/engineering) "cjR" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Engineering External Access"; req_access = null; req_access_txt = "10;13" @@ -45550,8 +45628,10 @@ id = "testlab"; name = "test chamber blast door" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/research/glass{ - cyclelinkeddir = 4; name = "Test Chamber"; req_access_txt = "47" }, @@ -45825,8 +45905,10 @@ /turf/open/floor/plasteel, /area/science/misc_lab) "ckN" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/research/glass{ - cyclelinkeddir = 8; name = "Test Chamber"; req_access_txt = "47" }, @@ -46283,19 +46365,19 @@ /turf/closed/wall/r_wall, /area/maintenance/disposal/incinerator) "cmf" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/public/glass{ autoclose = 0; frequency = 1449; heat_proof = 1; - icon_state = "door_locked"; id_tag = "incinerator_airlock_interior"; - locked = 1; name = "Turbine Interior Airlock"; req_access_txt = "32" }, /obj/structure/cable/yellow{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/engine, /area/maintenance/disposal/incinerator) "cmg" = ( @@ -46499,6 +46581,11 @@ dir = 1 }, /area/engine/engineering) +"cmR" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/wood, +/area/maintenance/bar) "cmU" = ( /obj/machinery/light/small, /turf/open/floor/engine/n2, @@ -46618,8 +46705,8 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13" @@ -46759,19 +46846,21 @@ /turf/closed/wall, /area/construction) "cnC" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/public/glass{ autoclose = 0; frequency = 1449; heat_proof = 1; - icon_state = "door_locked"; id_tag = "incinerator_airlock_exterior"; - locked = 1; name = "Turbine Exterior Airlock"; req_access_txt = "32" }, /obj/structure/cable/yellow{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/engine, /area/maintenance/disposal/incinerator) "cnD" = ( @@ -47002,13 +47091,6 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"col" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/wood, -/area/maintenance/bar) "cop" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 1; @@ -47126,8 +47208,10 @@ /turf/open/floor/plasteel, /area/engine/engine_smes) "coB" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/engineering{ - cyclelinkeddir = 4; name = "SMES Room"; req_access_txt = "32" }, @@ -47449,8 +47533,10 @@ /turf/open/floor/plasteel/white, /area/medical/sleeper) "cpI" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Escape Pod Four"; req_access = null; req_access_txt = "0" @@ -47821,8 +47907,8 @@ /turf/open/floor/plasteel, /area/engine/engineering) "cqA" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Engineering External Access"; req_access = null; req_access_txt = "10;13" @@ -47861,6 +47947,7 @@ name = "Supermatter Chamber"; req_access_txt = "10" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/engine, /area/engine/supermatter) "cqF" = ( @@ -48091,6 +48178,9 @@ name = "Supermatter Chamber"; req_access_txt = "10" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/engine, /area/engine/supermatter) "cru" = ( @@ -48319,8 +48409,10 @@ /turf/open/floor/plasteel/dark, /area/engine/engineering) "csg" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Engineering External Access"; req_access = null; req_access_txt = "10;13" @@ -48559,8 +48651,10 @@ /turf/open/space, /area/solar/starboard/aft) "cta" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "MiniSat External Access"; req_access = null; req_access_txt = "65;13" @@ -50246,6 +50340,9 @@ name = "Escape Pod Three"; req_access_txt = "0" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/security/main) "cxJ" = ( @@ -50254,14 +50351,19 @@ name = "Labor Camp Shuttle Airlock"; req_access_txt = "2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating, /area/security/processing) "cxN" = ( /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13" @@ -50273,11 +50375,25 @@ cyclelinkeddir = 8; name = "Labor Camp Shuttle Airlock" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating, /area/security/processing) +"cxR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/brig) "cxW" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "External Access"; req_access = null; req_access_txt = "13" @@ -50293,17 +50409,21 @@ /turf/open/floor/plating, /area/hallway/secondary/entry) "cya" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; req_access_txt = "13" }, /turf/open/floor/plating, /area/maintenance/fore) "cyb" = ( /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Escape Pod One" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/hallway/secondary/entry) "cyd" = ( @@ -50318,8 +50438,10 @@ /turf/open/space/basic, /area/space) "cyg" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/command{ - cyclelinkeddir = 1; name = "Command Tool Storage"; req_access = null; req_access_txt = "19" @@ -50327,16 +50449,20 @@ /turf/open/floor/plasteel/dark, /area/ai_monitored/storage/eva) "cyh" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Security Escape Airlock"; req_access_txt = "2" }, /turf/open/floor/plating, /area/hallway/secondary/exit) "cyl" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; id_tag = null; name = "Port Docking Bay 2"; req_access_txt = "0" @@ -50344,53 +50470,67 @@ /turf/open/floor/plating, /area/hallway/secondary/entry) "cyp" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Escape Airlock" }, /turf/open/floor/plating, /area/hallway/secondary/exit) "cyr" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Cargo Escape Airlock" }, /turf/open/floor/plating, /area/hallway/secondary/exit) "cyt" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Port Docking Bay 4"; req_access_txt = "0" }, /turf/open/floor/plating, /area/hallway/secondary/entry) "cyu" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Port Docking Bay 3"; req_access_txt = "0" }, /turf/open/floor/plating, /area/hallway/secondary/entry) "cyC" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; req_access_txt = "13" }, /turf/open/floor/plating, /area/maintenance/starboard) "cyD" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Supply Dock Airlock"; req_access_txt = "31" }, /turf/open/floor/plating, /area/quartermaster/storage) "cyE" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Access"; req_access = null; req_access_txt = "13" @@ -50398,8 +50538,10 @@ /turf/open/floor/plating, /area/maintenance/port/aft) "cyG" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Atmospherics External Airlock"; req_access_txt = "24" }, @@ -50409,8 +50551,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13" @@ -50427,8 +50571,10 @@ /turf/open/floor/plating, /area/maintenance/port/aft) "cyM" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/engineering{ - cyclelinkeddir = 1; name = "Engine Room"; req_access_txt = "10" }, @@ -50450,8 +50596,10 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13" @@ -50459,8 +50607,10 @@ /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) "czg" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Escape Pod Four"; req_access = null; req_access_txt = "0"; @@ -50469,8 +50619,10 @@ /turf/open/floor/plating, /area/engine/engineering) "czk" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "MiniSat External Access"; req_access = null; req_access_txt = "65;13" @@ -51989,6 +52141,10 @@ /obj/structure/lattice, /turf/open/space, /area/space/nearstation) +"cEm" = ( +/obj/machinery/vending/autodrobe, +/turf/open/floor/wood, +/area/maintenance/bar) "cEr" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ @@ -53022,12 +53178,45 @@ /turf/open/space/basic, /area/space) "cIh" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Port Docking Bay 1" }, /turf/open/floor/plating, /area/hallway/secondary/entry) +"cKh" = ( +/obj/structure/bed, +/obj/item/bedsheet/grey, +/obj/effect/decal/cleanable/semen{ + desc = "Blech."; + name = "dried semen" + }, +/obj/effect/spawner/lootdrop/costume, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/bar) +"cKI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + cyclelinkeddir = 1; + id_tag = "lobbyairlock"; + name = "Security Lobby"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/brig) +"cLr" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/brig) "cMm" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, @@ -53186,6 +53375,9 @@ }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plating, /area/maintenance/starboard/aft) "cNY" = ( @@ -53227,15 +53419,19 @@ /turf/open/floor/plating, /area/maintenance/starboard/aft) "cPH" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; req_access_txt = "13" }, /turf/open/floor/plating, /area/maintenance/starboard/aft) "cPI" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; req_access_txt = "13" }, /turf/open/floor/plating, @@ -53642,38 +53838,43 @@ "cVb" = ( /turf/closed/wall, /area/hallway/secondary/service) -"daP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ +"cVk" = ( +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/light/small{ - dir = 4 +/obj/machinery/camera/motion{ + c_tag = "Armory Motion Sensor"; + dir = 2; + name = "motion-sensitive security camera" }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"ddY" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/bar) -"deX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "2-4" + dir = 6 }, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) -"dfb" = ( +"cYR" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/brig) +"daq" = ( /obj/machinery/door/airlock/maintenance/abandoned{ - req_access_txt = "0" + name = "Incinerator Access"; + req_access_txt = "12" + }, +/obj/structure/barricade/wooden{ + name = "wooden barricade (CLOSED)" }, /turf/open/floor/plating, /area/maintenance/bar) +"ddq" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) "dfh" = ( /obj/machinery/power/apc{ areastring = "/area/science/circuit"; @@ -53688,63 +53889,44 @@ }, /turf/open/floor/plasteel, /area/science/circuit) -"diE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"dpO" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ +"dfW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/brig) +"dAS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/structure/disposalpipe/segment, /turf/closed/wall, /area/maintenance/fore/secondary) -"dza" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot{ - dir = 2 +"dLQ" = ( +/turf/open/floor/plasteel/red/corner{ + dir = 1 }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"dIm" = ( -/obj/structure/closet/l3closet/security, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"dLC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 1; - id_tag = "lobbyairlock"; - name = "Security Lobby"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel/red/side, -/area/hallway/primary/fore) -"dMt" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/decal/cleanable/blood/old, -/obj/item/device/assembly/signaler, -/turf/open/floor/plating, -/area/maintenance/bar) +/area/security/brig) "dMZ" = ( /obj/structure/sign/poster/official/random{ pixel_y = 32 }, /turf/open/floor/plasteel/white, /area/science/circuit) -"dUX" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 +"dRy" = ( +/obj/structure/table, +/obj/item/storage/box/firingpins, +/obj/item/storage/box/firingpins, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"dUn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 4 }, -/turf/open/floor/plasteel, /area/security/brig) -"dZd" = ( -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/hallway/primary/fore) "eaI" = ( /obj/structure/table/reinforced, /obj/item/device/radio/intercom{ @@ -53752,24 +53934,51 @@ }, /turf/open/floor/plasteel/white, /area/science/circuit) -"edf" = ( -/obj/machinery/light/small{ - dir = 8 +"eiQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" }, -/obj/machinery/cryopod{ - tag = "icon-cryopod-open (EAST)"; - icon_state = "cryopod-open"; +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/brig) +"ejX" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"elx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/warden) +"eoF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"eqj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/turf/open/floor/noslip, -/area/crew_quarters/cryopod) -"eug" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/brig) +"ese" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, /turf/open/floor/plasteel, -/area/ai_monitored/security/armory) +/area/security/brig) "eyM" = ( /obj/machinery/mineral/ore_redemption{ input_dir = 2; @@ -53778,32 +53987,16 @@ /obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/quartermaster/miningdock) -"eCq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 +"eBn" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 }, -/turf/open/floor/wood, -/area/maintenance/bar) -"eFo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"eJr" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/bar"; - dir = 2; - name = "Maintenance Bar APC"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/structure/cable, +/obj/effect/turf_decal/stripes/white/corner, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"eGa" = ( /turf/open/floor/wood{ - icon_state = "wood-broken7" + icon_state = "wood-broken5" }, /area/maintenance/bar) "eRz" = ( @@ -53821,23 +54014,29 @@ }, /turf/open/floor/plasteel, /area/quartermaster/miningdock) -"eXt" = ( -/obj/structure/table/wood/poker, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +"fgi" = ( +/turf/closed/wall, +/area/crew_quarters/cryopod) +"fiq" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/item/storage/pill_bottle/dice, -/turf/open/floor/wood, -/area/maintenance/bar) -"fbG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, -/area/hallway/primary/fore) +/area/security/armory) "flc" = ( /obj/machinery/bookbinder, /turf/open/floor/plasteel/white, /area/science/circuit) +"fmW" = ( +/obj/effect/turf_decal/loading_area/white, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) "fnC" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 @@ -53851,28 +54050,48 @@ }, /turf/open/floor/plasteel/hydrofloor, /area/hallway/secondary/service) +"fsC" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) "fsQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"fFO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"fJA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +"fIx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/obj/machinery/light, -/turf/open/floor/plasteel/red/side, -/area/security/brig) +/turf/closed/wall, +/area/maintenance/bar) "fKl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/science/circuit) +"fNa" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/bar"; + dir = 2; + name = "Maintenance Bar APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/bar) +"fXR" = ( +/obj/structure/table/wood/poker, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) "gbq" = ( /obj/structure/cable{ icon_state = "4-8" @@ -53888,51 +54107,77 @@ "gjl" = ( /turf/closed/wall, /area/quartermaster/warehouse) -"gsc" = ( -/obj/effect/spawner/lootdrop/keg, +"gnt" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/maintenance/bar) -"gus" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "4-8" +"gqJ" = ( +/obj/structure/window/reinforced, +/obj/vehicle/ridden/secway, +/obj/item/key/security, +/obj/machinery/door/window/eastleft{ + name = "Secway Docking Port" }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"gvr" = ( -/obj/structure/falsewall, -/turf/open/floor/plating, -/area/maintenance/bar) +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/showroomfloor, +/area/space) +"gtB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/red/side, +/area/security/brig) "gwd" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, /area/science/circuit) -"gxj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 +"gBe" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/maintenance/bar) +"gEu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood{ + icon_state = "wood-broken" }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"gyg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/warden) -"gLh" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ +/area/maintenance/bar) +"gHZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, -/turf/closed/wall, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, /area/maintenance/bar) +"gKd" = ( +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/brig) +"gLH" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access = null; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"gUO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/brig) "gWd" = ( /obj/structure/cable{ icon_state = "1-4" @@ -53950,6 +54195,17 @@ dir = 8 }, /area/medical/sleeper) +"hbX" = ( +/obj/machinery/flasher{ + id = "brigentry"; + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/red/side, +/area/security/brig) "hcE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, @@ -53967,87 +54223,34 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"hha" = ( -/turf/open/floor/wood, -/area/maintenance/bar) -"hsl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"hyy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/maintenance/fore/secondary) -"hGx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"hKM" = ( -/obj/structure/sign/poster/official/no_erp, -/turf/closed/wall, -/area/maintenance/bar) -"hMS" = ( -/obj/structure/bed, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"hUv" = ( -/obj/machinery/vending/clothing, -/turf/open/floor/wood, -/area/maintenance/bar) -"hWV" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/hallway/primary/fore) -"hYa" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"ifm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/abandoned{ - req_access_txt = "0" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/bar) +"hgP" = ( +/obj/structure/closet/bombcloset/security, +/turf/open/floor/plasteel/showroomfloor, +/area/space) +"hCi" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"hSW" = ( +/turf/open/floor/plasteel/red/side, +/area/security/brig) "ijc" = ( /obj/structure/table, /obj/item/stack/sheet/metal/fifty, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"imC" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +"ilg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/maintenance/bar) +"ilT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/armory) "ipA" = ( /obj/machinery/droneDispenser, /turf/open/floor/plating, @@ -54058,27 +54261,26 @@ /obj/item/pen, /turf/open/floor/plasteel/white, /area/science/circuit) -"iFh" = ( -/turf/open/floor/plasteel/red/side, -/area/hallway/primary/fore) -"iGk" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"iIs" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"iMh" = ( +"iun" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 + dir = 6 }, -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) +/turf/open/floor/wood, +/area/maintenance/bar) +"izg" = ( +/obj/structure/table/wood/poker, +/obj/item/coin/iron, +/turf/open/floor/wood, +/area/maintenance/bar) +"iEJ" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod One" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) "iNn" = ( /obj/machinery/camera{ c_tag = "Kitchen Cold Room" @@ -54087,19 +54289,25 @@ /obj/structure/reagent_dispensers/cooking_oil, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"iWe" = ( -/obj/structure/falsewall, -/obj/effect/turf_decal/delivery/white, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"iZT" = ( -/turf/closed/wall, -/area/crew_quarters/cryopod) -"jav" = ( -/obj/machinery/chem_dispenser/drinks/beer, -/obj/structure/table/wood, +"iNt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/brig) +"iZz" = ( +/obj/structure/table/wood/poker, /turf/open/floor/wood, /area/maintenance/bar) +"jaa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/maintenance/abandoned{ + req_access_txt = "0" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/maintenance/bar) "jbf" = ( /obj/structure/cable{ icon_state = "0-2" @@ -54126,42 +54334,10 @@ }, /turf/open/floor/plasteel, /area/science/circuit) -"jjw" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar) "jlm" = ( /obj/machinery/rnd/protolathe/department/cargo, /turf/open/floor/plasteel, /area/quartermaster/office) -"jnB" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/reagent_containers/spray/cleaner, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/bar) -"jor" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/bar) -"jpk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/bar) -"jrj" = ( -/obj/structure/table/wood/poker, -/obj/item/coin/iron, -/turf/open/floor/wood, -/area/maintenance/bar) "jrE" = ( /obj/machinery/rnd/protolathe/department/science, /obj/structure/sign/poster/official/random{ @@ -54169,48 +54345,33 @@ }, /turf/open/floor/plasteel/white, /area/science/circuit) -"jsM" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/item/pen/blue, -/turf/open/floor/plasteel/purple/side{ - tag = "icon-purple (NORTH)"; - icon_state = "purple"; - dir = 1 +"jvH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" }, -/area/crew_quarters/cryopod) -"jxK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/maintenance/bar) -"jyt" = ( +"jvX" = ( +/obj/machinery/door_timer{ + id = "Cell 2"; + name = "Cell 2"; + pixel_y = -32 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/red/corner, +/area/security/brig) +"jwO" = ( /obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks, /turf/open/floor/wood, /area/maintenance/bar) "jAD" = ( /obj/structure/grille, /turf/open/floor/plating/airless, /area/space/nearstation) -"jCi" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/closet/secure_closet/brig{ - id = "Secure Cell"; - name = "Secure Cell Locker" - }, -/obj/effect/turf_decal/stripes/white/end{ - dir = 4 - }, -/obj/effect/turf_decal/delivery/white, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) "jCq" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -54223,23 +54384,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"jDT" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/pen, -/obj/item/hand_labeler, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/light, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"jGf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/security/brig) "jHt" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment{ @@ -54253,28 +54397,14 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"jIa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 +"jKI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, -/obj/machinery/camera/motion{ - c_tag = "Armory Motion Sensor"; - dir = 2; - name = "motion-sensitive security camera" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"jME" = ( /obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 1; - id_tag = "outerbrig"; + cyclelinkeddir = 2; + id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63" }, @@ -54309,26 +54439,6 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"jVE" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/hallway/primary/fore) -"jXb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/hallway/primary/fore) -"jZW" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/bar) "khb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 @@ -54337,6 +54447,36 @@ /obj/item/kitchen/rollingpin, /turf/open/floor/plasteel/hydrofloor, /area/hallway/secondary/service) +"khB" = ( +/obj/machinery/door/airlock/external{ + cyclelinkeddir = 4; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"kkQ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"knx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator"; + req_access_txt = "11" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) "kob" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment, @@ -54345,19 +54485,40 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"kpR" = ( +"kyO" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/bar) +"kDA" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"kqC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/side{ +/area/security/armory) +"kEo" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, -/area/hallway/primary/fore) +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/bar) "kPd" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/cable{ @@ -54384,60 +54545,113 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/miningdock) -"kVC" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/bar) -"lgA" = ( -/obj/machinery/suit_storage_unit/security, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +"kTn" = ( +/obj/machinery/light{ dir = 4 }, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) +/obj/structure/table/wood, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/maintenance/bar) +"kXw" = ( +/obj/machinery/vending/games{ + name = "\improper Good 'Clean' Fun" + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"lik" = ( +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/brig) +"lxM" = ( +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"lza" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/item/pen/blue, +/turf/open/floor/plasteel/purple/side{ + tag = "icon-purple (NORTH)"; + icon_state = "purple"; + dir = 1 + }, +/area/crew_quarters/cryopod) +"lzJ" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/bar) "lAB" = ( /obj/structure/sign/nanotrasen, /turf/closed/wall, /area/science/circuit) -"lAE" = ( -/obj/structure/table, -/obj/item/grenade/barrier{ - pixel_x = 4 - }, -/obj/item/grenade/barrier, -/obj/item/grenade/barrier{ - pixel_x = -4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"lIg" = ( -/obj/machinery/suit_storage_unit/security, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) +"lBd" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/space) +"lFR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/maintenance/bar) "lMg" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 }, /turf/open/floor/plasteel, /area/science/circuit) -"lMP" = ( -/obj/machinery/computer/secure_data{ - dir = 1 +"lNK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/maintenance/bar) "lQG" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/science/circuit) -"myc" = ( +"lWm" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 3"; + name = "Cell 3" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red/side, +/area/security/brig) +"lWz" = ( +/turf/closed/wall, +/area/maintenance/bar) +"mhD" = ( +/obj/machinery/cryopod{ + tag = "icon-cryopod-open (EAST)"; + icon_state = "cryopod-open"; + dir = 4 + }, +/turf/open/floor/noslip, +/area/crew_quarters/cryopod) +"mnl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"mnG" = ( /obj/structure/rack, /obj/item/clothing/suit/armor/bulletproof{ pixel_x = -3; @@ -54463,6 +54677,35 @@ }, /obj/effect/turf_decal/bot_white, /turf/open/floor/plasteel/dark, +/area/security/armory) +"mnX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"muS" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/maintenance/bar) +"mxj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/abandoned{ + req_access_txt = "0" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/bar) +"myd" = ( +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, /area/ai_monitored/security/armory) "mBv" = ( /obj/structure/cable{ @@ -54475,90 +54718,56 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"mLe" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/rack, -/obj/item/clothing/mask/gas/sechailer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/clothing/mask/gas/sechailer{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) +"mHd" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/maintenance/bar) "mNi" = ( /obj/machinery/light_switch{ pixel_x = -20 }, /turf/open/floor/plasteel/white, /area/science/circuit) -"mOK" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/hallway/primary/fore) -"mQi" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/brig) "mRe" = ( /obj/machinery/light{ dir = 8 }, /turf/open/floor/plasteel/white, /area/science/circuit) -"mUr" = ( -/obj/structure/table/wood, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar) -"mYW" = ( -/obj/machinery/vending/autodrobe, -/turf/open/floor/wood, -/area/maintenance/bar) -"nab" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +"mSu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/security/brig) -"nbe" = ( -/obj/effect/turf_decal/loading_area/white, -/obj/effect/turf_decal/stripes/white/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/corner, -/turf/open/floor/plasteel/dark, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/fore/secondary) +"mXj" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/space) +"mXs" = ( +/turf/open/floor/plasteel, /area/security/execution/transfer) -"nkD" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/maintenance/bar) +"nnM" = ( +/turf/closed/wall/r_wall, +/area/security/armory) "noK" = ( /obj/structure/girder, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"nrf" = ( -/obj/machinery/flasher{ - id = "Cell 4"; - pixel_x = -28 +"nsq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 8 + }, +/area/security/brig) +"nwx" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/red/side{ + dir = 4 }, -/turf/open/floor/plasteel/floorgrime, /area/security/brig) "nxv" = ( /obj/machinery/power/apc{ @@ -54571,10 +54780,41 @@ }, /turf/open/floor/plating, /area/construction) +"nys" = ( +/obj/machinery/flasher{ + id = "Cell 4"; + pixel_x = -28 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) "nzh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/engine/engineering) +"nAv" = ( +/obj/structure/table, +/obj/item/grenade/barrier{ + pixel_x = 4 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = -4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"nGs" = ( +/obj/item/lighter/greyscale, +/obj/effect/decal/cleanable/semen{ + desc = "Blech."; + name = "dried semen" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/bar) "nGt" = ( /obj/structure/cable{ icon_state = "1-2" @@ -54586,69 +54826,156 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"nHr" = ( -/obj/machinery/firealarm{ - pixel_y = 24 +"nHg" = ( +/turf/open/floor/wood, +/area/maintenance/bar) +"nLS" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" }, /turf/open/floor/plasteel, /area/ai_monitored/security/armory) -"nOh" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/suit/armor/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/riot, -/obj/item/clothing/head/helmet/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/shield/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/shield/riot, -/obj/item/shield/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) "nRG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"nRX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +"nYI" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/crowbar, +/obj/item/device/electropack/shockcollar, +/turf/open/floor/plating, +/area/maintenance/bar) +"obC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, +/turf/closed/wall, +/area/maintenance/bar) +"ody" = ( +/obj/effect/spawner/lootdrop/keg, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/bar) +"ofN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"olb" = ( +/obj/structure/window/reinforced, +/obj/vehicle/ridden/secway, +/obj/item/key/security, +/obj/machinery/door/window/eastleft{ + name = "Secway Docking Port" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/showroomfloor, +/area/space/nearstation) +"onN" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"oru" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/bar) +"otR" = ( +/obj/machinery/suit_storage_unit/security, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"owf" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 2; - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" + cyclelinkeddir = 1; + id_tag = "lobbyairlock"; + name = "Security Lobby"; + req_access_txt = "0" }, +/turf/open/floor/plasteel/red/side, +/area/security/brig) +"oyS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/red/side{ - dir = 9 + dir = 10 }, /area/security/brig) -"nYB" = ( +"oDF" = ( +/obj/machinery/light, +/turf/open/floor/plating, +/area/engine/engineering) +"oHU" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"oQP" = ( +/obj/machinery/flasher{ + id = "Cell 3"; + pixel_x = -28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"oUh" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"oZl" = ( +/turf/open/floor/plasteel/purple/side{ + tag = "icon-purple (NORTH)"; + icon_state = "purple"; + dir = 1 + }, +/area/crew_quarters/cryopod) +"pdR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"plH" = ( /obj/machinery/door/window/brigdoor/security/cell{ dir = 4; id = "Secure Cell"; @@ -54670,172 +54997,24 @@ dir = 8 }, /area/security/execution/transfer) -"obc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/fore/secondary) -"ofR" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"ogc" = ( -/obj/machinery/door_timer{ - id = "Cell 2"; - name = "Cell 2"; - pixel_y = -32 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/red/corner, -/area/security/brig) -"ogm" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/window/eastleft{ - name = "Cyborg Docking Port" - }, -/obj/machinery/recharge_station, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"oln" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"ord" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"oDF" = ( -/obj/machinery/light, -/turf/open/floor/plating, -/area/engine/engineering) -"oFO" = ( -/obj/structure/window/reinforced, -/obj/vehicle/ridden/secway, -/obj/item/key/security, -/obj/machinery/door/window/eastleft{ - name = "Secway Docking Port" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"oHU" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"oJp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"oLz" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 3"; - name = "Cell 3" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side, -/area/security/brig) -"oPZ" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"oUa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, +"plY" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 2; - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"pzG" = ( +/obj/structure/sign/poster/random{ + pixel_x = -32 }, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/brig) -"oUh" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"oYL" = ( -/obj/effect/turf_decal/stripes/white/line, -/obj/effect/turf_decal/stripes/white/corner{ - dir = 1 - }, -/obj/machinery/door_timer{ - id = "Secure Cell"; - name = "Secure Cell"; - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"pcC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"pfG" = ( -/obj/effect/spawner/lootdrop/keg, -/turf/open/floor/wood, -/area/maintenance/bar) -"piD" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Incinerator Access"; - req_access_txt = "12" - }, -/obj/structure/barricade/wooden{ - name = "wooden barricade (CLOSED)" - }, -/turf/open/floor/plating, -/area/maintenance/bar) -"piS" = ( -/obj/structure/table, -/obj/item/storage/box/firingpins, -/obj/item/storage/box/firingpins, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"puH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ +/obj/machinery/light{ dir = 8 }, -/obj/structure/cable{ - icon_state = "1-2" +/turf/open/floor/wood{ + icon_state = "wood-broken7" }, -/turf/open/floor/wood, /area/maintenance/bar) -"pAp" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +"pAu" = ( +/obj/machinery/vending/kink, /turf/open/floor/wood, /area/maintenance/bar) "pHl" = ( @@ -54866,74 +55045,71 @@ }, /turf/open/floor/plasteel/white, /area/medical/sleeper) -"pMN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, +"pML" = ( +/obj/effect/spawner/lootdrop/keg, /turf/open/floor/wood, /area/maintenance/bar) "pNx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/floorgrime, /area/science/misc_lab) -"pNR" = ( -/turf/open/floor/plasteel/red/side{ - dir = 6 +"pND" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot{ + dir = 2 }, -/area/hallway/primary/fore) -"pOx" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"pRC" = ( -/obj/machinery/door/poddoor/shutters{ - id = "lowsecarmory"; - name = "Non-Lethal Armoury Shutter" +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"pNS" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + req_access_txt = "0" }, -/obj/machinery/button/door{ - id = "lowsecarmory"; - name = "Non-Lethal Armory Shutters"; - pixel_y = 26; - req_access_txt = "3" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"pUu" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/maintenance/bar) +"pRh" = ( +/obj/structure/sign/poster/random{ + pixel_y = -32 }, /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/maintenance/bar) -"pYG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ +"pXY" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/corner{ dir = 1 }, -/area/security/brig) -"pYQ" = ( -/obj/structure/table/wood, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/wood, -/area/maintenance/bar) +/obj/machinery/door_timer{ + id = "Secure Cell"; + name = "Secure Cell"; + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) "qeQ" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/science/circuit) +"qiH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/bar) +"qkd" = ( +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/brig) +"qli" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/space/nearstation) "qpv" = ( /obj/machinery/light{ dir = 4 @@ -54941,12 +55117,400 @@ /obj/machinery/autolathe, /turf/open/floor/plasteel/white, /area/science/circuit) +"qqN" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/cryopod{ + tag = "icon-cryopod-open (EAST)"; + icon_state = "cryopod-open"; + dir = 4 + }, +/turf/open/floor/noslip, +/area/crew_quarters/cryopod) +"quv" = ( +/obj/machinery/flasher{ + id = "Cell 2"; + pixel_x = -28 + }, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"quH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/security/armory) "quT" = ( /obj/structure/lattice, /obj/structure/grille/broken, /turf/open/space/basic, /area/space/nearstation) -"qwN" = ( +"qyA" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "briggate"; + name = "security shutters" + }, +/obj/machinery/door/window/eastright{ + name = "Brig Desk"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"qWq" = ( +/turf/closed/wall, +/area/space) +"rhJ" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/blood/old, +/obj/item/device/assembly/signaler, +/turf/open/floor/plating, +/area/maintenance/bar) +"rmX" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/beer, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ruZ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/armory) +"rvK" = ( +/obj/structure/table/wood, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/maintenance/bar) +"ryt" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"rDb" = ( +/obj/structure/table, +/obj/item/storage/toolbox/drone, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"rKP" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/construction) +"rMY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"rWu" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/maintenance/bar) +"saK" = ( +/obj/structure/closet/crate, +/obj/item/target/alien, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/item/target/clown, +/obj/item/target/syndicate, +/obj/item/target/syndicate, +/obj/item/gun/energy/laser/practice, +/obj/item/gun/energy/laser/practice, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"srd" = ( +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/security/brig) +"srs" = ( +/obj/structure/chair/stool, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"srA" = ( +/turf/open/floor/plasteel/purple/side, +/area/crew_quarters/cryopod) +"sxs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table, +/obj/item/shovel/spade, +/turf/open/floor/plasteel/hydrofloor, +/area/hallway/secondary/service) +"sGJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/maintenance/bar) +"sHa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + cyclelinkeddir = 2; + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/brig) +"sHr" = ( +/obj/structure/falsewall, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"sIY" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/maintenance/bar) +"sLv" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"sOs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/abandoned, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"sPi" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/security/glass{ + cyclelinkeddir = 1; + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/brig) +"sSW" = ( +/obj/structure/chair/office/light, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"sXy" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/security/main) +"tal" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/hallway/secondary/service) +"tdl" = ( +/obj/machinery/camera/motion{ + c_tag = "Non-Lethal Armory Motion Sensor"; + dir = 4 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/armory) +"tdt" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"thu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"tkF" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "briggate"; + name = "security shutters" + }, +/obj/machinery/door/window/southleft{ + base_state = "right"; + icon_state = "right"; + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"tBz" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/fore/secondary) +"tDP" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/space/nearstation) +"tMl" = ( +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"tPb" = ( +/obj/structure/window/reinforced, +/obj/machinery/door/window/eastleft{ + name = "Cyborg Docking Port" + }, +/obj/machinery/recharge_station, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"tQz" = ( +/obj/structure/sign/poster/official/no_erp, +/turf/closed/wall, +/area/maintenance/bar) +"tYV" = ( +/obj/structure/table/wood/poker, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/storage/pill_bottle/dice, +/turf/open/floor/wood, +/area/maintenance/bar) +"uaT" = ( +/obj/structure/table/wood, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/wood, +/area/maintenance/bar) +"udp" = ( +/obj/item/crowbar/large, +/obj/structure/rack, +/obj/item/device/flashlight, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"uhH" = ( +/obj/item/wrench, +/obj/item/weldingtool, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/structure/rack, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ujc" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/brig) +"ujp" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"umq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/maintenance/bar) +"umu" = ( +/obj/machinery/door_timer{ + id = "Cell 3"; + name = "Cell 3"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner, +/area/security/brig) +"uoB" = ( +/obj/structure/table/reinforced, +/obj/item/device/multitool, +/obj/item/screwdriver, +/obj/machinery/camera{ + c_tag = "Circuitry Lab North"; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"upn" = ( +/obj/machinery/chem_dispenser/drinks/beer, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/bar) +"utQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"uvc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/wood, +/area/maintenance/bar) +"uvy" = ( +/turf/closed/wall/r_wall, +/area/space) +"uMX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"uNu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"uTi" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/brigdoor{ dir = 1; @@ -54972,323 +55536,7 @@ icon_state = "1-4" }, /turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"qCU" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/hallway/primary/fore) -"qHL" = ( -/obj/structure/table, -/obj/item/storage/toolbox/drone, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"rdk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/hallway/primary/fore) -"rim" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"rjn" = ( -/obj/structure/table/wood/poker, -/turf/open/floor/wood, -/area/maintenance/bar) -"rlF" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -30 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/bar) -"rmX" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/beer, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"rnh" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briggate"; - name = "security shutters" - }, -/obj/machinery/door/window/eastright{ - name = "Brig Desk"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/dark, /area/security/brig) -"rIV" = ( -/obj/item/lighter/greyscale, -/obj/effect/decal/cleanable/semen{ - desc = "Blech."; - name = "dried semen" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/bar) -"rKP" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/construction) -"rWO" = ( -/obj/machinery/flasher{ - id = "brigentry"; - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/red/side, -/area/hallway/primary/fore) -"saK" = ( -/obj/structure/closet/crate, -/obj/item/target/alien, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/item/target/clown, -/obj/item/target/syndicate, -/obj/item/target/syndicate, -/obj/item/gun/energy/laser/practice, -/obj/item/gun/energy/laser/practice, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"spC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/maintenance/abandoned{ - req_access_txt = "0" - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/bar) -"srs" = ( -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/hallway/primary/fore) -"sxs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table, -/obj/item/shovel/spade, -/turf/open/floor/plasteel/hydrofloor, -/area/hallway/secondary/service) -"sAS" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"sIn" = ( -/obj/structure/bed, -/obj/item/bedsheet/grey, -/obj/effect/decal/cleanable/semen{ - desc = "Blech."; - name = "dried semen" - }, -/obj/effect/spawner/lootdrop/costume, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/bar) -"sLv" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"sOs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/abandoned, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"sSW" = ( -/obj/structure/chair/office/light, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"tal" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/hallway/secondary/service) -"tbp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"thm" = ( -/obj/item/restraints/handcuffs/fake, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears, -/turf/open/floor/plating, -/area/maintenance/bar) -"tiQ" = ( -/obj/structure/sign/poster/random{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"tje" = ( -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"tkh" = ( -/obj/machinery/flasher{ - id = "Cell 2"; - pixel_x = -28 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"tlu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"tsG" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/white/corner, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"twi" = ( -/obj/structure/chair/stool, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -35 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"txz" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briggate"; - name = "security shutters" - }, -/obj/machinery/door/window/southleft{ - base_state = "right"; - icon_state = "right"; - name = "Brig Desk"; - req_access_txt = "1" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"tzD" = ( -/obj/machinery/flasher{ - id = "Cell 3"; - pixel_x = -28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"tCT" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/maintenance/bar) -"tJn" = ( -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/bot{ - dir = 2 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"tMl" = ( -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"tPB" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/bar) -"udp" = ( -/obj/item/crowbar/large, -/obj/structure/rack, -/obj/item/device/flashlight, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"uhH" = ( -/obj/item/wrench, -/obj/item/weldingtool, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/structure/rack, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"ulx" = ( -/obj/machinery/vending/kink, -/turf/open/floor/wood, -/area/maintenance/bar) -"uoB" = ( -/obj/structure/table/reinforced, -/obj/item/device/multitool, -/obj/item/screwdriver, -/obj/machinery/camera{ - c_tag = "Circuitry Lab North"; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"uCK" = ( -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/maintenance/bar) -"uNu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/science/circuit) "uVS" = ( /obj/structure/cable{ icon_state = "4-8" @@ -55301,36 +55549,23 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"vge" = ( +"vaY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/bar) -"vgI" = ( -/obj/machinery/vending/games{ - name = "\improper Good 'Clean' Fun" - }, /turf/open/floor/wood, /area/maintenance/bar) -"vsn" = ( -/obj/structure/rack, -/obj/item/gun/energy/e_gun/dragnet, -/obj/item/gun/energy/e_gun/dragnet, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"vtB" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 +"vbD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "EVA Storage"; + req_access_txt = "18" }, -/obj/effect/turf_decal/stripes/white/corner{ +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) "vxh" = ( /obj/structure/table, /obj/effect/spawner/lootdrop/maintenance{ @@ -55347,13 +55582,11 @@ }, /turf/open/floor/plasteel/white, /area/science/circuit) -"vBu" = ( -/obj/item/shard, -/obj/item/wirecutters, -/obj/item/wallframe/camera, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +"vAM" = ( +/obj/item/restraints/handcuffs/fake, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears, +/turf/open/floor/plating, /area/maintenance/bar) "vCb" = ( /obj/machinery/rnd/protolathe/department/service, @@ -55363,24 +55596,17 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/white, /area/science/circuit) -"vDd" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ +"vNJ" = ( +/obj/machinery/vending/clothing, +/turf/open/floor/wood, +/area/maintenance/bar) +"vPg" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) "vPE" = ( /obj/machinery/light{ dir = 4 @@ -55388,66 +55614,60 @@ /obj/machinery/libraryscanner, /turf/open/floor/plasteel/white, /area/science/circuit) -"vQi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +"vRb" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -30 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/maintenance/bar) +"vXR" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, /turf/open/floor/wood, /area/maintenance/bar) -"vQk" = ( -/obj/machinery/light{ - dir = 1 +"whS" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/turf/open/floor/wood, +/area/maintenance/bar) +"wjf" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ dir = 4 }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"vWg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 }, -/obj/structure/cable{ - icon_state = "0-4" +/obj/structure/closet/secure_closet/brig{ + id = "Secure Cell"; + name = "Secure Cell Locker" }, -/turf/open/floor/plating, -/area/security/brig) -"vXH" = ( -/obj/machinery/cryopod{ - tag = "icon-cryopod-open (EAST)"; - icon_state = "cryopod-open"; +/obj/effect/turf_decal/stripes/white/end{ dir = 4 }, -/turf/open/floor/noslip, -/area/crew_quarters/cryopod) +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) "wkN" = ( /turf/closed/wall, /area/science/circuit) -"wno" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 1; - id_tag = "lobbyairlock"; - name = "Security Lobby"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/hallway/primary/fore) -"wqK" = ( -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/item/crowbar, -/obj/item/device/electropack/shockcollar, -/turf/open/floor/plating, -/area/maintenance/bar) +"wqO" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun/dragnet, +/obj/item/gun/energy/e_gun/dragnet, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/security/armory) "wrp" = ( /obj/machinery/light{ dir = 8 @@ -55457,12 +55677,20 @@ }, /turf/open/floor/plasteel/hydrofloor, /area/hallway/secondary/service) -"wsw" = ( -/obj/structure/cable{ - icon_state = "1-2" +"wrI" = ( +/obj/machinery/door/poddoor/shutters{ + id = "lowsecarmory"; + name = "Non-Lethal Armoury Shutter" }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) +/obj/machinery/button/door{ + id = "lowsecarmory"; + name = "Non-Lethal Armory Shutters"; + pixel_y = 26; + req_access_txt = "3" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/main) "wvX" = ( /obj/structure/table/reinforced, /obj/machinery/light, @@ -55471,72 +55699,70 @@ /obj/item/stack/sheet/metal/fifty, /turf/open/floor/plasteel/white, /area/science/circuit) -"wwN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"wyl" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/bar) -"wyo" = ( -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/hallway/primary/fore) -"wzL" = ( -/turf/open/floor/plasteel, -/area/security/execution/transfer) "wBd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/closed/wall, /area/hallway/secondary/service) -"wIt" = ( -/turf/open/floor/plasteel/purple/side{ - tag = "icon-purple (NORTH)"; - icon_state = "purple"; - dir = 1 +"wMS" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -3; + pixel_y = 3 }, -/area/crew_quarters/cryopod) -"wLW" = ( -/turf/closed/wall, -/area/maintenance/bar) -"wPM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/bar) +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/security/armory) "wUY" = ( /obj/structure/table, /obj/item/reagent_containers/glass/bucket, /turf/open/floor/plasteel/hydrofloor, /area/hallway/secondary/service) -"wVC" = ( -/obj/structure/table/wood/poker, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +"wXR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/armory) +"xdq" = ( +/obj/structure/closet/l3closet/security, +/turf/open/floor/plasteel/showroomfloor, +/area/space/nearstation) +"xgX" = ( +/obj/item/shard, +/obj/item/wirecutters, +/obj/item/wallframe/camera, +/turf/open/floor/plating{ + icon_state = "panelscorched" }, -/turf/open/floor/wood, /area/maintenance/bar) -"wXZ" = ( -/turf/open/floor/plasteel/purple/side, -/area/crew_quarters/cryopod) -"wZq" = ( -/obj/machinery/door_timer{ - id = "Cell 3"; - name = "Cell 3"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner, -/area/security/brig) "xhV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -55558,59 +55784,93 @@ }, /turf/open/floor/plating, /area/hallway/secondary/service) -"xmc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "seclobby"; - name = "security shutters" +"xkI" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood{ + icon_state = "wood-broken7" }, +/area/maintenance/bar) +"xug" = ( /obj/structure/cable{ - icon_state = "0-8" + icon_state = "1-2" }, -/turf/open/floor/plating, -/area/security/brig) +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/bar) +"xwc" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/bar) +"xwS" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) "xIa" = ( /obj/structure/table, /obj/effect/spawner/lootdrop/grille_or_trash, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"xKl" = ( -/obj/machinery/power/apc{ - name = "Cryogenics APC"; - pixel_x = 23 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"xKy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"xNI" = ( -/obj/machinery/camera/motion{ - c_tag = "Non-Lethal Armory Motion Sensor"; - dir = 4 - }, -/obj/effect/turf_decal/stripes/end{ +"xTa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"yap" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, +/turf/open/floor/wood, /area/maintenance/bar) +"xVd" = ( +/obj/structure/bed, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"xZZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/rack, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) "ycu" = ( /obj/structure/cable{ icon_state = "2-4" }, /turf/open/floor/plasteel, /area/science/circuit) +"yeT" = ( +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot{ + dir = 2 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"yfv" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ykh" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/security/armory) (1,1,1) = {" aaa @@ -64711,7 +64971,7 @@ arC aEp apJ avP -cyb +iEJ asE arB aaa @@ -64725,7 +64985,7 @@ aaa aaa arB asE -cyb +iEJ avP arB aaa @@ -68817,7 +69077,7 @@ aaa aag aqJ amC -aqJ +gLH ase avq aum @@ -77103,20 +77363,20 @@ bCq bPY cOw bCq -wLW -wLW -wLW -wLW -wLW -piD -wLW -wLW -wLW -wLW -wLW -wLW -wLW -wLW +lWz +lWz +lWz +lWz +lWz +daq +lWz +lWz +lWz +lWz +lWz +lWz +lWz +lWz bUs bLv aaa @@ -77360,20 +77620,20 @@ bCq bPX bRg bRg -wLW -hha +lWz +nHg bVG -hGx -rlF -hha -pfG -wLW -hha -tiQ +utQ +vRb +nHg +pML +lWz +nHg +pzG bVG -hha -gsc -wLW +nHg +ody +lWz bUs bLv aaa @@ -77617,20 +77877,20 @@ bLv bQa bHE bHE -wLW -pMN -wwN -jZW -vQi -yap -vQi -pAp -vQi -vQi -fFO -jjw -uCK -wLW +lWz +iun +ilg +gHZ +uvc +sGJ +uvc +pNS +uvc +uvc +rMY +eGa +lxM +lWz bUs bLv aaf @@ -77874,20 +78134,20 @@ bLv bPZ bHE bHE -dfb -oJp -col -tCT -imC -oln -jxK -spC -jxK -jpk -oPZ +sIY +vaY +whS +gBe +gnt +xwc +lFR +jaa +lFR +gEu +ujp cCa -hha -wLW +nHg +lWz bUs bLv aaa @@ -78131,20 +78391,20 @@ bLv bHE bHE bSs -wLW -vge -rim -mUr -ddY -rim -hha -hKM -tPB +lWz +umq +vXR +rvK +jwO +vXR +nHg +tQz +rWu cCa -wVC -rjn -kVC -wLW +fXR +iZz +muS +lWz bUs bLv aaa @@ -78388,20 +78648,20 @@ bCq bHE bRh bLu -wLW -eFo -pUu -nkD -hYa -puH -eJr -wLW -hha -wyl -wVC -rjn -twi -wLW +lWz +jvH +kEo +thu +xug +lNK +fNa +lWz +nHg +xkI +fXR +iZz +srs +lWz bUs bLv aaf @@ -78645,20 +78905,20 @@ bCq bOK bCq bCq -wLW -ifm -jor -jav -jyt -pYQ -wLW -wLW -hha +lWz +mxj +fIx +upn +cmR +uaT +lWz +lWz +nHg cCa -eXt -jrj +tYV +izg cCa -wLW +lWz bUs bLv aaa @@ -78822,13 +79082,13 @@ abc aea aeH aft -iWe -nbe -vtB -iIs +sHr +fmW +xwS +yfv abc -gXs -gXs +hCi +hCi aaa aiU aln @@ -78903,19 +79163,19 @@ bHE bLv aaa bLv -hsl -jor -wLW -wLW -wLW -wLW -hha -hha -hha -ord +qiH +fIx +lWz +lWz +lWz +lWz +nHg +nHg +nHg +lzJ cCa -tje -wLW +pRh +lWz bUs bLv aaa @@ -79081,8 +79341,8 @@ aeJ afw abc abc -tsG -oYL +eBn +pXY abc aaf aaf @@ -79160,19 +79420,19 @@ bHE bLv aaf bLv -hsl -jor -thm -wqK -rIV -gvr -hha -tPB -jjw -eCq -hha -hha -wLW +qiH +fIx +vAM +nYI +nGs +mHd +nHg +rWu +eGa +xTa +nHg +nHg +lWz bUs bLv aaf @@ -79338,8 +79598,8 @@ aeI afv agf abc -jCi -nYB +wjf +plH abc aiT aiT @@ -79417,19 +79677,19 @@ bLv bCq aaa bLv -hsl -jor -vBu -sIn -dMt -wLW -hUv -mYW -bgx -jnB -vgI -ulx -wLW +qiH +fIx +xgX +cKh +rhJ +lWz +vNJ +cEm +kyO +kTn +kXw +pAu +lWz bUs bCq aaa @@ -79595,9 +79855,9 @@ aeL afy agh abc -wzL -wzL -wzL +mXs +mXs +mXs aiV ajs akb @@ -79675,17 +79935,17 @@ aaa aaa bTB bUv -gLh -wPM -wPM -wPM -wPM -wPM -wPM -wPM -wPM -wPM -wPM +obC +oru +oru +oru +oru +oru +oru +oru +oru +oru +oru car bUs bCq @@ -79852,9 +80112,9 @@ aeK afx agg abc -wzL -hMS -wzL +mXs +xVd +mXs aiV ajr aka @@ -80109,9 +80369,9 @@ aeN afA afA afA -wzL -wzL -wzL +mXs +mXs +mXs aiV aju akd @@ -81682,7 +81942,7 @@ aEX aEZ aEZ aEZ -aEX +vbD aJs aJq bJx @@ -82173,7 +82433,7 @@ auj akl akO alx -pcC +mnX amg aiX anw @@ -82685,9 +82945,9 @@ aiF agj ajD akm -vWg +cxR aly -tkh +quv amQ aiX anw @@ -82944,7 +83204,7 @@ aja akl akP alx -pcC +mnX ami aiX anw @@ -83198,7 +83458,7 @@ agP agP aiz ajg -ogc +jvX akQ agj agj @@ -83436,7 +83696,7 @@ aaa aaa aaf aaf -iGk +ddq aaf aai abi @@ -83458,7 +83718,7 @@ ajb ajF akN alw -tzD +oQP amQ aiX anw @@ -83709,16 +83969,16 @@ agn agR agn agR -gyg -agn -dUX +elx +aiX +ese akv -oLz -daP +lWm +mnl aww amk aiX -qCU +ejX aov aph aqb @@ -83950,26 +84210,26 @@ aaa aaa aaa aaf -iGk +ddq aaf -aaZ -pOx -xNI -lIg +nnM +ykh +tdl +myd aaZ cpg acv adi -piS +dRy aaZ aeW -mLe +xZZ ahv ahQ aiI -agR +aiH ajI -wZq +umu akQ agj agj @@ -84207,29 +84467,29 @@ aaa aaa aaa aaf -iGk +ddq aaf -aaZ -pOx -eug -lIg +nnM +ykh +ruZ +myd aaZ acl cxA acL -qHL +rDb aaZ agp agT ahx ahS aiK -qwN -dUX +uTi +ese akm akT aly -nrf +nys amQ aiX anw @@ -84464,14 +84724,14 @@ aaa aaa aaa aaf -iGk +ddq aaf +nnM +ykh +fiq +ofN aaZ -pOx -sAS -iMh -aaZ -nHr +ack adk adK cqG @@ -84481,18 +84741,18 @@ agS agQ agt aiJ -aiL +akV ajI akl akS alx -pcC +mnX amp aiX anS aoy -fbG -tbp +plY +eoF anz anz anz @@ -84538,7 +84798,7 @@ bsc btF bph bsc -btF +knx bvW bAf bBp @@ -84721,14 +84981,14 @@ aaa aaa aaa aaf -iGk +ddq aaf +nnM +ykh +ruZ +otR aaZ -pOx -eug -lgA -aaZ -jIa +cVk acM adQ cwM @@ -84737,9 +84997,9 @@ agr agU ahy ahX -lMP -aiN -nab +aiL +cLr +dUn akq akQ agj @@ -84978,14 +85238,14 @@ aaa aaa aaa aaf -iGk +ddq aaf +nnM +nAv +quH +otR aaZ -lAE -xKy -lgA -aaZ -vQk +onN coS aet cxA @@ -84995,18 +85255,18 @@ agt ahz aie agt -aiM -mQi +ryt +cYR akp akU alz aml amT aiX -wno -dLC +cKI +owf apl -dpO +tBz aqc aqc aqc @@ -85235,14 +85495,14 @@ aaa aaa aaa aaf -iGk +ddq aaf -aaZ -vsn -gxj -deX +nnM +wqO +wXR +uMX abQ -vDd +nLS adj arc blT @@ -85251,17 +85511,17 @@ cml agV cxk aig -jDT -agn -pYG -jGf -akV +aiM +aiX +eqj +nsq +eiQ alB amn amV -txz -anB -pNR +tkF +aiG +qkd aod aqf ahT @@ -85271,11 +85531,11 @@ ahT ahT awn axF -wsw -wsw -wsw -wsw -xKl +tdt +tdt +tdt +tdt +amI anF anF aoa @@ -85492,14 +85752,14 @@ aaa aaa aaa aaf -iGk +ddq aaf -aaZ -myc -ack -gus +nnM +mnG +ilT +fsC abN -tlu +pdR acF acF aes @@ -85509,14 +85769,14 @@ agt ahB aHp agn -agn -nRX -oUa +aiX +jKI +sHa amS alA -rnh +qyA amm -xmc +alN anT anT aod @@ -85530,10 +85790,10 @@ arf arf arf arf -iZT -iZT -iZT -iZT +fgi +fgi +fgi +fgi anF ahn aJn @@ -85749,12 +86009,12 @@ aaa aaa aaa aaf -iGk +ddq aaf -aaZ -nOh -kpR -ofR +nnM +wMS +kDA +kkQ aci acm cpA @@ -85770,11 +86030,11 @@ aje ajJ akr akX -alC -srs -srs -srs -srs +aje +gKd +gKd +gKd +gKd aoB aod aqe @@ -85787,10 +86047,10 @@ atf arf aqa atf -iZT -edf -vXH -iZT +fgi +qqN +mhD +fgi anF ahn aaa @@ -86006,11 +86266,11 @@ aaa aaa aaf aaf -aaZ -aaZ -aaZ -aaZ -pRC +ctv +ctv +uvy +adR +wrI avB aaZ aaZ @@ -86027,14 +86287,14 @@ ajd ajb ahY akX -dZd -amo -srs -srs -jXb -rWO -obc -diE +ajc +alC +gKd +gKd +oyS +hbX +mSu +vPg arf apY ate @@ -86044,10 +86304,10 @@ ath arf apY ath -iZT -wIt -wXZ -iZT +fgi +oZl +srA +fgi anF ahn aaa @@ -86263,10 +86523,10 @@ aaa aaa aaa aaa -abp -oFO -oFO -ogm +atS +olb +gqJ +tPb abO abO acO @@ -86281,14 +86541,14 @@ ahA ahZ adR aiQ -dUX +ese akt -jME -anw -dZd -pNR -anB -iFh +sPi +dLQ +ajc +qkd +aiG +hSW aoD aod aqe @@ -86301,10 +86561,10 @@ ath arf ayV ath -iZT +fgi aCd -wXZ -iZT +srA +fgi anF ahn aJw @@ -86520,9 +86780,9 @@ aaa aaa aaa aaa -abo -abO -abO +lBd +qli +mXj abO abO abO @@ -86541,11 +86801,11 @@ ajf ajK aks akY -anA -dZd -wyo -amo -iFh +srd +ajc +lik +alC +hSW aoC aod aqe @@ -86558,10 +86818,10 @@ awo arf asd aAb -iZT -jsM -wXZ -iZT +fgi +lza +srA +fgi aoa ahn aJv @@ -86777,14 +87037,14 @@ aaa aaa aaa aaa -abp -abO -abO -tJn -tJn -tJn -tJn -tJn +qWq +qli +mXj +yeT +yeT +yeT +yeT +yeT abO aew afe @@ -86796,13 +87056,13 @@ aia aiP aiR ajB -fJA +gtB aiX akz alf -kqC -kqC -rdk +iNt +iNt +dfW aoF apo aqh @@ -87034,9 +87294,9 @@ aaa aaa aaa aaf -abo -abO -abO +tDP +qli +qli abO abO acp @@ -87057,11 +87317,11 @@ aku aiX alE amq -mOK -hWV -jVE +ujc +nwx +gUO aoE -hyy +dAS aqg aun asf @@ -87291,14 +87551,14 @@ aaa aaa aaa aaa -abp -aco -dIm -dza +qWq +hgP +xdq +pND abR -dza -dza -dza +pND +pND +pND abl abp abp @@ -87548,9 +87808,9 @@ aaa aaa aaf aaf -abp -abp -abp +atS +atS +atS abq abq abq @@ -90126,7 +90386,7 @@ aaf aag acU afn -acU +sXy aeC afn agc @@ -91170,7 +91430,7 @@ aaa aaa aaa ahn -anE +khB ahn ahn ahn diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm index 6ca1e95cb9..f4821e135d 100644 --- a/_maps/map_files/Deltastation/DeltaStation2.dmm +++ b/_maps/map_files/Deltastation/DeltaStation2.dmm @@ -357,8 +357,8 @@ /turf/open/floor/plating, /area/hallway/secondary/entry) "abH" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "External Airlock"; req_access_txt = "13" }, @@ -453,8 +453,10 @@ /turf/open/floor/plasteel, /area/hallway/secondary/entry) "acd" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "External Airlock"; req_access_txt = "13" }, @@ -641,8 +643,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Solar Access"; req_access_txt = "10; 13" }, @@ -666,8 +670,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Solar Access"; req_access_txt = "10; 13" }, @@ -924,8 +930,10 @@ /area/construction/mining/aux_base) "aea" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Docking Port" }, /obj/effect/turf_decal/stripes/line{ @@ -942,8 +950,10 @@ /turf/open/floor/plasteel, /area/hallway/secondary/entry) "aec" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Docking Port" }, /obj/effect/turf_decal/stripes/line{ @@ -955,8 +965,10 @@ /turf/open/floor/plasteel, /area/hallway/secondary/entry) "aee" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Docking Port" }, /obj/effect/turf_decal/stripes/line{ @@ -969,8 +981,10 @@ /area/hallway/secondary/entry) "aej" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Docking Port" }, /obj/effect/turf_decal/stripes/line{ @@ -1915,8 +1929,8 @@ /turf/open/floor/plasteel, /area/hallway/secondary/entry) "aiA" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "External Docking Port" }, /obj/effect/turf_decal/stripes/line{ @@ -2113,8 +2127,10 @@ /turf/open/floor/plasteel, /area/hallway/secondary/entry) "ajf" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "External Docking Port" }, /obj/effect/turf_decal/stripes/line{ @@ -3375,7 +3391,6 @@ "amm" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 0; name = "Customs Desk"; req_access_txt = "19" }, @@ -9751,6 +9766,9 @@ name = "Emergency Access"; req_access_txt = "24;10" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/engine/atmospherics_engine) "aAa" = ( @@ -10117,6 +10135,7 @@ req_access_txt = "0"; req_one_access_txt = "24;10" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/engine, /area/engine/supermatter) "aAX" = ( @@ -11145,8 +11164,10 @@ /area/quartermaster/storage) "aDf" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Supply Dock Airlock"; req_access_txt = "31" }, @@ -11173,8 +11194,10 @@ icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Supply Dock Airlock"; req_access_txt = "31" }, @@ -12087,8 +12110,10 @@ /turf/open/floor/plasteel, /area/quartermaster/storage) "aFk" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Supply Dock Airlock"; req_access_txt = "31" }, @@ -13599,8 +13624,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Solar Access"; req_access_txt = "0"; req_one_access = null; @@ -13627,8 +13654,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Solar Access"; req_access_txt = "0"; req_one_access = null; @@ -13838,6 +13867,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/engine/atmospherics_engine) "aIA" = ( @@ -13862,6 +13892,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/engine/atmospherics_engine) "aIC" = ( @@ -15504,6 +15535,11 @@ icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, +/obj/machinery/cryopod{ + tag = "icon-cryopod-open (WEST)"; + icon_state = "cryopod-open"; + dir = 8 + }, /turf/open/floor/plasteel/red/corner{ dir = 1 }, @@ -15721,6 +15757,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/engine/atmos) "aMI" = ( @@ -15744,6 +15783,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/engine/atmos) "aMK" = ( @@ -16236,13 +16278,12 @@ /turf/open/floor/engine/vacuum, /area/maintenance/disposal/incinerator) "aNS" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/public/glass{ autoclose = 0; frequency = 1449; heat_proof = 1; - icon_state = "door_locked"; id_tag = "incinerator_airlock_exterior"; - locked = 1; name = "Incinerator Exterior Airlock"; req_access_txt = "12" }, @@ -16250,6 +16291,9 @@ icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/engine, /area/maintenance/disposal/incinerator) "aNT" = ( @@ -16263,13 +16307,12 @@ /turf/open/floor/engine, /area/maintenance/disposal/incinerator) "aNU" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/public/glass{ autoclose = 0; frequency = 1449; heat_proof = 1; - icon_state = "door_locked"; id_tag = "incinerator_airlock_interior"; - locked = 1; name = "Incinerator Interior Airlock"; req_access_txt = "12" }, @@ -16277,6 +16320,9 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/engine, /area/maintenance/disposal/incinerator) "aNV" = ( @@ -18553,6 +18599,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/security/prison) "aSG" = ( @@ -18573,6 +18620,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/security/prison) "aSH" = ( @@ -18591,6 +18639,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/security/prison) "aSI" = ( @@ -19706,8 +19755,8 @@ }, /area/security/execution/education) "aUK" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Security External Airlock"; req_access_txt = "63" }, @@ -21231,6 +21280,9 @@ req_access_txt = "2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) "aXO" = ( @@ -21245,6 +21297,9 @@ /obj/structure/cable/white{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) "aXQ" = ( @@ -21253,6 +21308,9 @@ req_access_txt = "2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) "aXR" = ( @@ -21274,8 +21332,10 @@ /turf/closed/wall/r_wall, /area/security/prison) "aXT" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Security External Airlock"; req_access_txt = "63" }, @@ -22235,6 +22295,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/security/prison) "aZG" = ( @@ -23647,6 +23710,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/security/prison) "bcM" = ( @@ -23667,6 +23731,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/security/prison) "bcO" = ( @@ -25426,8 +25491,10 @@ "bgQ" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Mining Dock Airlock"; req_access = null; req_access_txt = "48" @@ -25464,8 +25531,10 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/old, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Mining Dock Airlock"; req_access = null; req_access_txt = "48" @@ -25509,6 +25578,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/security/brig) "bhb" = ( @@ -25536,6 +25608,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/security/brig) "bhd" = ( @@ -29433,6 +29508,9 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/vault{ dir = 8 }, @@ -29522,6 +29600,9 @@ req_access = null; req_access_txt = "58" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel/vault{ dir = 8 }, @@ -32042,8 +32123,10 @@ /turf/closed/wall/r_wall, /area/security/nuke_storage) "buz" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Gulag Shuttle Airlock"; req_access_txt = "63" }, @@ -32066,8 +32149,10 @@ /turf/open/floor/plasteel, /area/security/execution/transfer) "buB" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Gulag Shuttle Airlock"; req_access_txt = "63" }, @@ -33007,6 +33092,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/engine/atmos) "bwB" = ( @@ -33575,8 +33661,8 @@ /area/engine/gravity_generator) "bxD" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "External Airlock"; req_access_txt = "13" }, @@ -33932,9 +34018,11 @@ /obj/structure/cable/white{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/vault{ - cyclelinkeddir = 4; - locked = 1; name = "Vault Door"; req_access_txt = "53" }, @@ -33957,9 +34045,11 @@ }, /area/security/nuke_storage) "byv" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/vault{ - cyclelinkeddir = 8; - locked = 1; name = "Vault Door"; req_access_txt = "53" }, @@ -34407,6 +34497,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/engine/break_room) "bzs" = ( @@ -34791,8 +34884,10 @@ /turf/open/space/basic, /area/space) "bAd" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Gulag Shuttle Airlock"; req_access_txt = "0" }, @@ -34805,8 +34900,10 @@ /turf/open/floor/plasteel, /area/security/execution/transfer) "bAf" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Gulag Shuttle Airlock"; req_access_txt = "0" }, @@ -35184,8 +35281,10 @@ /area/engine/gravity_generator) "bAP" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "External Airlock"; req_access_txt = "13" }, @@ -36095,7 +36194,6 @@ "bCL" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 0; name = "Power Tools Storage"; req_access_txt = "19" }, @@ -36133,7 +36231,6 @@ "bCN" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 0; name = "Power Tools Storage"; req_access_txt = "19" }, @@ -36585,8 +36682,10 @@ /obj/structure/cable/white{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 4; name = "Bridge Access"; req_access_txt = "19" }, @@ -36646,8 +36745,10 @@ /obj/structure/cable/white{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 8; name = "Bridge Access"; req_access_txt = "19" }, @@ -36850,8 +36951,10 @@ /obj/structure/cable/white{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 4; name = "Bridge Access"; req_access_txt = "19" }, @@ -36885,8 +36988,10 @@ /obj/structure/cable/white{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 8; name = "Bridge Access"; req_access_txt = "19" }, @@ -37328,6 +37433,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/engine/break_room) "bEz" = ( @@ -37425,6 +37533,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/engine/break_room) "bEF" = ( @@ -37697,8 +37808,10 @@ /obj/structure/cable/white{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 4; name = "Bridge Access"; req_access_txt = "19" }, @@ -37739,8 +37852,10 @@ /obj/structure/cable/white{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 8; name = "Bridge Access"; req_access_txt = "19" }, @@ -37927,8 +38042,10 @@ /obj/structure/cable/white{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 8; name = "Bridge Access"; req_access_txt = "19" }, @@ -38898,6 +39015,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/red/side{ dir = 4 }, @@ -38967,6 +39087,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/security/warden) "bHJ" = ( @@ -39213,6 +39336,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/engine/break_room) "bIi" = ( @@ -39253,6 +39379,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/engine/break_room) "bIm" = ( @@ -42004,8 +42133,10 @@ /obj/structure/cable/white{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/hatch{ - cyclelinkeddir = 4; name = "MiniSat Exterior Access"; req_one_access_txt = "32;19" }, @@ -42031,8 +42162,10 @@ /obj/structure/cable/white{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/hatch{ - cyclelinkeddir = 8; name = "MiniSat Exterior Access"; req_one_access_txt = "32;19" }, @@ -42861,8 +42994,8 @@ /area/ai_monitored/turret_protected/aisat_interior) "bPF" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/highsecurity{ - locked = 1; name = "MiniSat Chamber"; req_access_txt = "16" }, @@ -43069,6 +43202,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/engine/break_room) "bQa" = ( @@ -45508,8 +45642,8 @@ icon_state = "1-2" }, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/command{ - cyclelinkeddir = 2; name = "Telecomms Server Room"; req_access = null; req_access_txt = "61" @@ -45943,6 +46077,9 @@ name = "MiniSat Maintenance"; req_access_txt = "16" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/vault{ dir = 8 }, @@ -46023,6 +46160,9 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel/vault{ dir = 8 }, @@ -46098,6 +46238,9 @@ name = "MiniSat Antechamber"; req_one_access_txt = "32;19" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/vault{ dir = 8 }, @@ -46142,6 +46285,9 @@ name = "MiniSat Access"; req_one_access_txt = "32;19" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel/vault{ dir = 8 }, @@ -46998,8 +47144,10 @@ /obj/structure/cable/white{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 4; name = "Brig"; req_access_txt = "63" }, @@ -47060,8 +47208,10 @@ /obj/structure/cable/white{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 8; name = "Brig"; req_access_txt = "63" }, @@ -47923,8 +48073,10 @@ /obj/structure/cable/white{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/command{ - cyclelinkeddir = 1; name = "Telecomms Server Room"; req_access = null; req_access_txt = "61" @@ -48617,6 +48769,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/engine/engineering) "cay" = ( @@ -49012,8 +49167,10 @@ /area/hallway/primary/starboard) "cbw" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 4; name = "Brig"; req_access_txt = "63" }, @@ -49054,8 +49211,10 @@ /area/security/brig) "cbz" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 8; name = "Brig"; req_access_txt = "63" }, @@ -50124,8 +50283,10 @@ /turf/open/floor/plating/airless, /area/engine/engineering) "cdH" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Containment Access"; req_access_txt = "10; 13" }, @@ -50153,8 +50314,10 @@ /turf/open/floor/plasteel, /area/engine/engineering) "cdJ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Containment Access"; req_access_txt = "10; 13" }, @@ -53130,8 +53293,8 @@ /obj/structure/cable/white{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/command{ - cyclelinkeddir = 2; name = "Telecomms Server Room"; req_access = null; req_access_txt = "61" @@ -54462,8 +54625,10 @@ icon_state = "1-2" }, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/command{ - cyclelinkeddir = 1; name = "Telecomms Server Room"; req_access = null; req_access_txt = "61" @@ -56566,7 +56731,6 @@ }, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ - cyclelinkeddir = 0; name = "Telecomms Foyer"; req_access = null; req_access_txt = "61" @@ -60893,6 +61057,7 @@ req_access_txt = "19" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/wood, /area/bridge/showroom/corporate) "cAb" = ( @@ -60903,6 +61068,7 @@ req_access_txt = "19" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/wood, /area/bridge/showroom/corporate) "cAc" = ( @@ -63719,8 +63885,10 @@ /turf/open/floor/plating/airless, /area/engine/engineering) "cFM" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Containment Access"; req_access_txt = "10; 13" }, @@ -63746,8 +63914,10 @@ /turf/open/floor/plasteel, /area/engine/engineering) "cFO" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Containment Access"; req_access_txt = "10; 13" }, @@ -64703,6 +64873,9 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/wood, /area/bridge/showroom/corporate) "cHP" = ( @@ -65584,6 +65757,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) "cJB" = ( @@ -65610,6 +65786,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) "cJD" = ( @@ -65625,6 +65804,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) "cJE" = ( @@ -65664,8 +65846,10 @@ }, /area/crew_quarters/fitness/recreation) "cJI" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Airlock"; req_access_txt = "13" }, @@ -65679,8 +65863,10 @@ /turf/open/floor/plasteel, /area/maintenance/port) "cJJ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Airlock"; req_access_txt = "13" }, @@ -67828,6 +68014,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) "cOc" = ( @@ -67853,6 +68042,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) "cOe" = ( @@ -67868,6 +68060,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) "cOf" = ( @@ -73060,8 +73255,8 @@ /area/security/checkpoint/science/research) "cZh" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/research{ - cyclelinkeddir = 2; name = "Research Division Access"; req_access_txt = "47" }, @@ -73081,8 +73276,8 @@ /area/science/research) "cZj" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/research{ - cyclelinkeddir = 2; name = "Research Division Access"; req_access_txt = "47" }, @@ -75928,8 +76123,10 @@ /area/science/research) "dfn" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/research{ - cyclelinkeddir = 1; name = "Research Division Access"; req_access_txt = "47" }, @@ -75945,8 +76142,10 @@ /area/science/research) "dfo" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/research{ - cyclelinkeddir = 1; name = "Research Division Access"; req_access_txt = "47" }, @@ -81220,6 +81419,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/crew_quarters/heads/hor) "dqC" = ( @@ -81311,6 +81513,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/crew_quarters/heads/hor) "dqI" = ( @@ -83447,6 +83652,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/medical/surgery) "dvA" = ( @@ -83499,6 +83707,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/medical/surgery) "dvE" = ( @@ -84250,6 +84461,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/crew_quarters/heads/cmo) "dwZ" = ( @@ -84325,6 +84539,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/crew_quarters/heads/cmo) "dxf" = ( @@ -86632,8 +86849,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Solar Access"; req_access_txt = "10; 13" }, @@ -86657,8 +86876,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Solar Access"; req_access_txt = "10; 13" }, @@ -88448,6 +88669,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/maintenance/port) "dFH" = ( @@ -89741,6 +89963,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/science/mixing) "dIq" = ( @@ -89800,6 +90025,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/science/mixing) "dIu" = ( @@ -90783,6 +91011,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/medical/medbay/central) "dKp" = ( @@ -91994,6 +92223,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/maintenance/aft) "dMP" = ( @@ -92063,6 +92295,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/maintenance/starboard/aft) "dMT" = ( @@ -92442,7 +92677,6 @@ icon_state = "1-2" }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 0; name = "Customs Desk"; req_access_txt = "19" }, @@ -92560,8 +92794,10 @@ /turf/open/floor/plating/airless, /area/science/test_area) "dOa" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Airlock"; req_access_txt = "13" }, @@ -92579,8 +92815,10 @@ /turf/open/floor/plasteel, /area/maintenance/port/aft) "dOc" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Airlock"; req_access_txt = "13" }, @@ -93134,12 +93372,11 @@ /obj/effect/turf_decal/stripes/line{ dir = 2 }, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/virology{ autoclose = 0; frequency = 1449; - icon_state = "door_locked"; id_tag = "virology_airlock_exterior"; - locked = 1; name = "Virology Exterior Airlock"; req_access_txt = "39" }, @@ -93155,6 +93392,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/medical/medbay/central) "dPp" = ( @@ -93857,12 +94097,11 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/virology{ autoclose = 0; frequency = 1449; - icon_state = "door_locked"; id_tag = "virology_airlock_interior"; - locked = 1; name = "Virology Interior Airlock"; req_access_txt = "39" }, @@ -93876,6 +94115,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/medical/virology) "dQY" = ( @@ -93951,6 +94193,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/medical/virology) "dRc" = ( @@ -97016,8 +97261,10 @@ /turf/closed/wall, /area/hallway/secondary/exit/departure_lounge) "dYI" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Docking Port" }, /obj/effect/turf_decal/stripes/line{ @@ -97029,8 +97276,10 @@ /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) "dYJ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Docking Port" }, /obj/effect/turf_decal/stripes/line{ @@ -98239,8 +98488,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Solar Access"; req_access_txt = "10; 13" }, @@ -98264,8 +98515,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Solar Access"; req_access_txt = "10; 13" }, @@ -99808,8 +100061,10 @@ }, /area/security/checkpoint/escape) "eeS" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Docking Port"; req_access_txt = "63" }, @@ -99832,8 +100087,10 @@ /turf/open/floor/plasteel, /area/security/checkpoint/escape) "eeU" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Docking Port"; req_access_txt = "63" }, @@ -99975,8 +100232,8 @@ /area/chapel/office) "eft" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "External Airlock"; req_access_txt = "13" }, @@ -100441,8 +100698,10 @@ /turf/open/floor/plating, /area/chapel/office) "egD" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "External Airlock"; req_access_txt = "13" }, @@ -100695,12 +100954,50 @@ dir = 10 }, /area/science/circuit) -"hKW" = ( -/obj/machinery/vending/kink, -/turf/open/floor/plasteel/vault{ - dir = 5 +"hrP" = ( +/obj/structure/cable/white{ + icon_state = "1-2" }, -/area/crew_quarters/locker) +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"hGT" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "1" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) "hNZ" = ( /obj/structure/chair/office/light{ dir = 8 @@ -100746,6 +101043,23 @@ /obj/item/device/integrated_circuit_printer, /turf/open/floor/plasteel/white/side, /area/science/circuit) +"jqM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/highsecurity{ + name = "Emergency Access"; + req_access_txt = "24;10" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmospherics_engine) "jBE" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/neutral, @@ -100769,6 +101083,12 @@ dir = 10 }, /area/science/circuit) +"lel" = ( +/obj/machinery/vending/kink, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/locker) "loI" = ( /obj/machinery/autolathe, /obj/machinery/door/window/southleft{ @@ -100839,6 +101159,19 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/circuit/green, /area/science/research/abandoned) +"oZC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Corporate Lounge"; + req_access = null; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bridge/showroom/corporate) "pmQ" = ( /obj/structure/table/reinforced, /obj/machinery/newscaster{ @@ -100865,11 +101198,6 @@ }, /turf/open/floor/plating, /area/science/research/abandoned) -"pGS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/kink, -/turf/open/floor/plating, -/area/maintenance/port) "pQm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/white{ @@ -100921,12 +101249,42 @@ dir = 10 }, /area/science/misc_lab) +"upk" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) "upw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light, /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/plasteel/whitepurple/side, /area/science/misc_lab) +"uYS" = ( +/obj/machinery/door/airlock/atmos/glass{ + heat_proof = 1; + name = "Supermatter Chamber"; + req_access_txt = "0"; + req_one_access_txt = "24;10" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/supermatter) "vqd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bodycontainer/morgue{ @@ -100954,6 +101312,24 @@ }, /turf/open/floor/plasteel/whitepurple/corner, /area/science/misc_lab) +"xaf" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Access" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) "xwK" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -126783,7 +127159,7 @@ ayK axz aAW axz -aAW +uYS aEr aFB aHd @@ -129607,7 +129983,7 @@ aqV aqV alT ayR -azZ +jqM aBf alT alf @@ -129914,7 +130290,7 @@ bWC bYL caE caE -pGS +ceb cea caE cjp @@ -131512,7 +131888,7 @@ dFG dHf dIr dJR -dKD +hrP dLQ dNu dOi @@ -140727,7 +141103,7 @@ cBv cDc cBv cBv -cAb +oZC cIP cKC cMa @@ -149454,7 +149830,7 @@ clt cnc coE cqd -hKW +lel csT cuy cvU @@ -157637,7 +158013,7 @@ aSO aUJ aWr aFm -aZF +hGT bbo aFm aKV @@ -159232,10 +159608,10 @@ cuM cuM cuM cuM -cJA +xaf cuM cuM -cOb +upk cuM cuM cuM diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm index 53bf730451..96021ab0f9 100644 --- a/_maps/map_files/MetaStation/MetaStation.dmm +++ b/_maps/map_files/MetaStation/MetaStation.dmm @@ -2,43 +2,43 @@ "aaa" = ( /turf/open/space/basic, /area/space) -"aab" = ( +"aac" = ( /obj/effect/landmark/carpspawn, /turf/open/space, /area/space) -"aac" = ( -/obj/structure/grille, -/turf/open/space, -/area/space/nearstation) -"aad" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aae" = ( -/obj/structure/grille/broken, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) "aaf" = ( /obj/structure/lattice, /turf/open/space, /area/space/nearstation) "aag" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"aah" = ( /obj/structure/cable{ icon_state = "0-2" }, /obj/machinery/power/tracker, /turf/open/floor/plating/airless, /area/solar/port/fore) -"aah" = ( +"aai" = ( +/obj/structure/grille/broken, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"aaj" = ( +/obj/structure/grille, +/turf/open/space, +/area/space/nearstation) +"aak" = ( /obj/structure/cable{ icon_state = "1-2" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"aai" = ( +"aal" = ( /obj/structure/cable{ icon_state = "0-2" }, @@ -48,12 +48,12 @@ }, /turf/open/floor/plasteel/airless/solarpanel, /area/solar/port/fore) -"aaj" = ( +"aam" = ( /obj/structure/cable, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"aak" = ( +"aan" = ( /obj/structure/cable{ icon_state = "1-4" }, @@ -63,7 +63,7 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"aal" = ( +"aao" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -76,25 +76,25 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"aam" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/fore) -"aan" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/fore) -"aao" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/fore) "aap" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/fore) +"aaq" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/fore) +"aar" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/fore) +"aas" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -107,7 +107,7 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"aaq" = ( +"aat" = ( /obj/structure/cable{ icon_state = "2-8" }, @@ -117,10 +117,7 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"aar" = ( -/turf/open/space, -/area/space) -"aas" = ( +"aau" = ( /obj/structure/cable, /obj/machinery/power/solar{ id = "foreport"; @@ -128,47 +125,37 @@ }, /turf/open/floor/plasteel/airless/solarpanel, /area/solar/port/fore) -"aat" = ( -/obj/docking_port/stationary{ - dheight = 1; - dir = 8; - dwidth = 12; - height = 17; - id = "syndicate_nw"; - name = "northwest of station"; - turf_type = /turf/open/space; - width = 23 - }, -/turf/open/space/basic, -/area/space/nearstation) -"aau" = ( +"aav" = ( +/turf/open/space, +/area/space) +"aaw" = ( /obj/item/stack/cable_coil, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"aav" = ( +"aax" = ( /turf/closed/wall/r_wall, /area/security/prison) -"aaw" = ( +"aay" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" }, /turf/open/floor/plating, /area/security/prison) -"aax" = ( +"aaz" = ( /obj/effect/landmark/xeno_spawn, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"aay" = ( +"aaA" = ( /obj/machinery/seed_extractor, /obj/machinery/light/small{ dir = 8 }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaz" = ( +"aaB" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -177,7 +164,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaA" = ( +"aaC" = ( /obj/structure/sink/kitchen{ desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; @@ -187,14 +174,14 @@ icon_state = "platingdmg3" }, /area/security/prison) -"aaB" = ( +"aaD" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/item/twohanded/required/kirbyplants, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaC" = ( +"aaE" = ( /obj/machinery/biogenerator, /obj/machinery/light/small{ dir = 4 @@ -205,21 +192,14 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaD" = ( -/obj/docking_port/stationary/random{ - id = "pod_lavaland2"; - name = "lavaland" - }, -/turf/open/space, -/area/space/nearstation) -"aaE" = ( +"aaF" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" }, /turf/open/floor/plating, /area/security/prison) -"aaF" = ( +"aaG" = ( /obj/machinery/hydroponics/constructable, /obj/item/seeds/ambrosia, /obj/structure/cable/yellow{ @@ -227,7 +207,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaG" = ( +"aaH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -240,13 +220,13 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaH" = ( +"aaI" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaI" = ( +"aaJ" = ( /obj/item/reagent_containers/glass/bucket, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -257,7 +237,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaJ" = ( +"aaK" = ( /obj/machinery/hydroponics/constructable, /obj/item/seeds/glowshroom, /obj/structure/cable/yellow{ @@ -265,16 +245,13 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaK" = ( +"aaL" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/open/floor/plating, /area/security/prison) -"aaL" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/pod_2) "aaM" = ( /obj/effect/spawner/structure/window/shuttle, /turf/open/floor/plating, @@ -287,12 +264,17 @@ /turf/open/floor/plating/airless, /area/solar/starboard/fore) "aaO" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"aaP" = ( /obj/machinery/hydroponics/constructable, /obj/item/cultivator, /obj/item/seeds/carrot, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaP" = ( +"aaQ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -300,14 +282,14 @@ /obj/item/reagent_containers/glass/bucket, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaQ" = ( +"aaR" = ( /turf/open/floor/plasteel, /area/security/prison) -"aaR" = ( +"aaS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaS" = ( +"aaT" = ( /obj/machinery/hydroponics/constructable, /obj/item/device/plant_analyzer, /obj/machinery/airalarm{ @@ -316,34 +298,20 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaT" = ( -/turf/closed/wall/mineral/plastitanium, -/area/security/prison) -"aaU" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_x = -32; - possible_destinations = "pod_lavaland2"; - shuttleId = "pod2" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_2) "aaV" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/pod_2) +"aaY" = ( /obj/structure/cable{ icon_state = "1-2" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"aaW" = ( +"aaZ" = ( /turf/closed/wall/r_wall, /area/security/execution/education) -"aaX" = ( +"aba" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ @@ -352,14 +320,14 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/security/prison) -"aaY" = ( +"abb" = ( /obj/machinery/door/airlock/public/glass{ id_tag = "permahydro"; name = "Hydroponics Module" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aaZ" = ( +"abc" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -367,32 +335,17 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/security/prison) -"aba" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - pixel_x = 25 - }, -/obj/item/storage/pod{ - pixel_x = -26 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_2) -"abb" = ( +"abe" = ( /turf/closed/wall, /area/security/prison) -"abc" = ( +"abf" = ( /obj/structure/cable{ icon_state = "0-2" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"abd" = ( +"abg" = ( /obj/machinery/door/poddoor{ density = 1; icon_state = "closed"; @@ -405,7 +358,7 @@ }, /turf/open/floor/plating, /area/security/execution/education) -"abe" = ( +"abh" = ( /obj/item/soap/nanotrasen, /obj/item/bikehorn/rubberducky, /obj/machinery/shower{ @@ -416,7 +369,7 @@ }, /turf/open/floor/plasteel/freezer, /area/security/prison) -"abf" = ( +"abi" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -430,7 +383,7 @@ }, /turf/open/floor/plasteel/freezer, /area/security/prison) -"abg" = ( +"abj" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -439,7 +392,7 @@ /obj/item/canvas/twentythreeXtwentythree, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abh" = ( +"abk" = ( /obj/structure/table, /obj/item/folder, /obj/item/paper/guides/jobs/hydroponics, @@ -453,25 +406,25 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abi" = ( +"abl" = ( /obj/structure/table, /obj/machinery/computer/libraryconsole/bookmanagement, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abj" = ( +"abm" = ( /obj/machinery/computer/arcade, /obj/machinery/computer/security/telescreen/entertainment{ pixel_y = 32 }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abk" = ( +"abn" = ( /obj/machinery/newscaster{ pixel_y = 32 }, /turf/open/floor/plasteel, /area/security/prison) -"abl" = ( +"abo" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -481,14 +434,14 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abm" = ( +"abp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-8" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abn" = ( +"abq" = ( /obj/structure/holohoop{ pixel_y = 29 }, @@ -497,7 +450,7 @@ icon_state = "platingdmg1" }, /area/security/prison) -"abo" = ( +"abr" = ( /obj/machinery/status_display{ pixel_y = 32 }, @@ -505,7 +458,7 @@ dir = 8 }, /area/security/prison) -"abp" = ( +"abs" = ( /obj/machinery/washing_machine, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -514,11 +467,11 @@ dir = 8 }, /area/security/prison) -"abq" = ( +"abt" = ( /obj/structure/shuttle/engine/propulsion/burst, /turf/closed/wall/mineral/titanium, /area/shuttle/pod_2) -"abr" = ( +"abu" = ( /obj/machinery/door/airlock/titanium{ name = "Escape Pod Airlock" }, @@ -530,7 +483,7 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/pod_2) -"abs" = ( +"abv" = ( /obj/structure/cable{ icon_state = "0-2" }, @@ -540,19 +493,19 @@ }, /turf/open/floor/plasteel/airless/solarpanel, /area/solar/starboard/fore) -"abt" = ( +"abw" = ( /obj/structure/cable, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"abu" = ( +"abx" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/turf_decal/stripes/line{ dir = 9 }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"abv" = ( +"aby" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -561,7 +514,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"abw" = ( +"abz" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -570,13 +523,13 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"abx" = ( +"abA" = ( /obj/machinery/shower{ dir = 4 }, /turf/open/floor/plasteel/freezer, /area/security/prison) -"aby" = ( +"abB" = ( /obj/machinery/door/window/westleft{ base_state = "right"; dir = 4; @@ -587,20 +540,20 @@ /obj/machinery/light/small, /turf/open/floor/plasteel/freezer, /area/security/prison) -"abz" = ( +"abC" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abA" = ( +"abD" = ( /obj/structure/chair/stool, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abB" = ( +"abE" = ( /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abC" = ( +"abF" = ( /obj/structure/table, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -615,24 +568,24 @@ }, /turf/open/floor/plasteel, /area/security/prison) -"abD" = ( +"abG" = ( /obj/structure/table, /obj/item/toy/cards/deck, /obj/item/toy/cards/deck, /turf/open/floor/plasteel, /area/security/prison) -"abE" = ( +"abH" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abF" = ( +"abI" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abG" = ( +"abJ" = ( /obj/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -641,7 +594,7 @@ dir = 8 }, /area/security/prison) -"abH" = ( +"abK" = ( /obj/structure/table, /obj/structure/bedsheetbin, /obj/structure/window/reinforced, @@ -652,21 +605,21 @@ dir = 8 }, /area/security/prison) -"abI" = ( +"abL" = ( /turf/open/floor/plating, /area/security/prison) -"abJ" = ( +"abM" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plating, /area/security/prison) -"abK" = ( +"abN" = ( /turf/open/floor/plating{ icon_state = "platingdmg3" }, /area/security/prison) -"abL" = ( +"abO" = ( /obj/structure/cable{ icon_state = "1-4" }, @@ -676,7 +629,7 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"abM" = ( +"abP" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -689,25 +642,25 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"abN" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/fore) -"abO" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/fore) -"abP" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/fore) "abQ" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/fore) +"abR" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/fore) +"abS" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/fore) +"abT" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -720,7 +673,7 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"abR" = ( +"abU" = ( /obj/structure/cable{ icon_state = "1-8" }, @@ -730,7 +683,7 @@ /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"abS" = ( +"abV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light/small{ dir = 8 @@ -745,7 +698,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"abT" = ( +"abW" = ( /obj/structure/bed, /obj/item/clothing/suit/straight_jacket, /obj/item/clothing/glasses/sunglasses/blindfold, @@ -754,7 +707,7 @@ /obj/item/device/electropack, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"abU" = ( +"abX" = ( /obj/machinery/flasher{ id = "justiceflash"; name = "mounted justice flash"; @@ -765,14 +718,14 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"abV" = ( +"abY" = ( /obj/machinery/door/airlock{ name = "Unisex Restroom"; req_access_txt = "0" }, /turf/open/floor/plasteel/freezer, /area/security/prison) -"abW" = ( +"abZ" = ( /obj/structure/table, /obj/item/book/manual/chef_recipes{ pixel_x = 2; @@ -781,7 +734,7 @@ /obj/item/clothing/head/chefhat, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"abX" = ( +"aca" = ( /obj/structure/table, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -791,17 +744,17 @@ /obj/item/toy/cards/deck, /turf/open/floor/plasteel, /area/security/prison) -"abY" = ( +"acb" = ( /obj/structure/table, /obj/item/storage/pill_bottle/dice, /turf/open/floor/plasteel, /area/security/prison) -"abZ" = ( +"acc" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/security/prison) -"aca" = ( +"ace" = ( /obj/machinery/vending/sustenance{ desc = "A vending machine normally reserved for work camps."; name = "\improper sustenance vendor"; @@ -809,30 +762,33 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acb" = ( +"acf" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/security/prison) -"acc" = ( +"acg" = ( /obj/machinery/light/small, /turf/open/floor/plating{ icon_state = "panelscorched" }, /area/security/prison) -"acd" = ( +"ach" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plating, /area/security/prison) -"ace" = ( +"aci" = ( /obj/machinery/door/airlock/external{ name = "Security External Airlock"; req_access_txt = "1" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/security/prison) -"acf" = ( +"acj" = ( /obj/machinery/light/small{ dir = 1 }, @@ -844,11 +800,11 @@ }, /turf/open/floor/plating, /area/security/prison) -"acg" = ( +"ack" = ( /obj/structure/lattice/catwalk, /turf/open/space, /area/space/nearstation) -"ach" = ( +"acl" = ( /obj/structure/cable, /obj/machinery/power/solar{ id = "forestarboard"; @@ -856,7 +812,7 @@ }, /turf/open/floor/plasteel/airless/solarpanel, /area/solar/starboard/fore) -"aci" = ( +"acm" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -866,7 +822,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"acj" = ( +"acn" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, @@ -875,7 +831,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"ack" = ( +"aco" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 2; name = "justice injector" @@ -885,7 +841,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"acl" = ( +"acp" = ( /obj/machinery/light/small{ dir = 4 }, @@ -894,7 +850,7 @@ }, /turf/open/floor/plasteel/freezer, /area/security/prison) -"acm" = ( +"acq" = ( /obj/structure/table, /obj/item/storage/box/donkpockets{ pixel_x = 2; @@ -908,13 +864,13 @@ icon_state = "panelscorched" }, /area/security/prison) -"acn" = ( +"acr" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aco" = ( +"acs" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -923,7 +879,7 @@ }, /turf/open/floor/plasteel, /area/security/prison) -"acp" = ( +"act" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -938,27 +894,27 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acq" = ( +"acu" = ( /obj/machinery/holopad, /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acr" = ( +"acv" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acs" = ( +"acw" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"act" = ( +"acx" = ( /obj/machinery/airalarm{ dir = 8; pixel_x = 24 @@ -966,18 +922,19 @@ /obj/machinery/cryopod, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acu" = ( +"acy" = ( /obj/machinery/door/airlock/external{ name = "Escape Pod Two" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/security/prison) -"acv" = ( +"acz" = ( /obj/item/stack/cable_coil, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"acw" = ( +"acA" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/poddoor/preopen{ @@ -989,7 +946,7 @@ dir = 4 }, /area/security/execution/education) -"acx" = ( +"acB" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "executionfireblast"; @@ -1003,7 +960,7 @@ dir = 4 }, /area/security/execution/education) -"acy" = ( +"acC" = ( /obj/machinery/door/window/brigdoor{ dir = 2; name = "Justice Chamber"; @@ -1033,7 +990,7 @@ dir = 4 }, /area/security/execution/education) -"acz" = ( +"acD" = ( /obj/structure/table, /obj/machinery/microwave{ pixel_x = -3; @@ -1043,19 +1000,19 @@ icon_state = "platingdmg1" }, /area/security/prison) -"acA" = ( +"acE" = ( /turf/open/floor/plating{ icon_state = "panelscorched" }, /area/security/prison) -"acB" = ( +"acF" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /obj/machinery/light, /turf/open/floor/plasteel, /area/security/prison) -"acC" = ( +"acG" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -1064,7 +1021,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acD" = ( +"acH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -1082,7 +1039,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acE" = ( +"acI" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -1091,26 +1048,26 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acF" = ( +"acJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/security/prison) -"acG" = ( +"acK" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acH" = ( +"acL" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /obj/machinery/light, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acI" = ( +"acM" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -1119,7 +1076,7 @@ /obj/item/pen, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acJ" = ( +"acN" = ( /obj/structure/table/glass, /obj/item/reagent_containers/syringe, /obj/item/reagent_containers/glass/bottle/morphine{ @@ -1129,7 +1086,7 @@ dir = 1 }, /area/security/prison) -"acK" = ( +"acO" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -1147,7 +1104,14 @@ dir = 1 }, /area/security/prison) -"acL" = ( +"acP" = ( +/turf/closed/wall, +/area/crew_quarters/fitness/recreation) +"acQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/fitness/recreation) +"acR" = ( /obj/structure/table/glass, /obj/item/reagent_containers/syringe, /obj/item/reagent_containers/glass/bottle/morphine{ @@ -1162,38 +1126,28 @@ dir = 1 }, /area/security/prison) -"acM" = ( -/turf/closed/wall, -/area/crew_quarters/fitness/recreation) -"acN" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/fitness/recreation) -"acO" = ( -/turf/closed/wall/mineral/plastitanium, -/area/crew_quarters/fitness/recreation) -"acP" = ( +"acS" = ( /obj/structure/cable{ icon_state = "1-4" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"acQ" = ( +"acT" = ( /obj/structure/cable{ icon_state = "4-8" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"acR" = ( +"acU" = ( /obj/structure/cable{ icon_state = "2-8" }, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/fore) -"acS" = ( +"acV" = ( /obj/structure/table, /obj/item/reagent_containers/glass/bottle/morphine{ pixel_x = -4; @@ -1264,7 +1218,7 @@ dir = 1 }, /area/security/execution/education) -"acT" = ( +"acW" = ( /obj/structure/table, /obj/item/folder/red{ pixel_x = 3 @@ -1283,7 +1237,7 @@ dir = 1 }, /area/security/execution/education) -"acU" = ( +"acX" = ( /obj/machinery/atmospherics/pipe/simple/general/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -1292,7 +1246,7 @@ dir = 1 }, /area/security/execution/education) -"acV" = ( +"acY" = ( /obj/structure/sink/kitchen{ desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; @@ -1305,7 +1259,7 @@ dir = 1 }, /area/security/execution/education) -"acW" = ( +"acZ" = ( /obj/machinery/power/apc{ dir = 1; name = "Prisoner Education Chamber APC"; @@ -1326,13 +1280,13 @@ dir = 1 }, /area/security/execution/education) -"acX" = ( +"ada" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/closed/wall/r_wall, /area/security/prison) -"acY" = ( +"adb" = ( /obj/machinery/door/poddoor/preopen{ id = "permacell3"; name = "Cell Shutters" @@ -1341,13 +1295,14 @@ id_tag = "permabolt3"; name = "Cell 3" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"acZ" = ( +"adc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/security/prison) -"ada" = ( +"add" = ( /obj/machinery/door/poddoor/preopen{ id = "permacell2"; name = "Cell Shutters" @@ -1360,9 +1315,10 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adb" = ( +"ade" = ( /obj/machinery/door/poddoor/preopen{ id = "permacell1"; name = "Cell Shutters" @@ -1371,28 +1327,29 @@ id_tag = "permabolt1"; name = "Cell 1" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adc" = ( +"adf" = ( /obj/machinery/light/small{ dir = 4 }, /turf/open/floor/plating, /area/security/prison) -"add" = ( +"adg" = ( /obj/structure/bed, /obj/item/clothing/suit/straight_jacket, /obj/item/clothing/glasses/sunglasses/blindfold, /obj/item/clothing/mask/muzzle, /turf/open/floor/plasteel/white, /area/security/prison) -"ade" = ( +"adh" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, /turf/open/floor/plasteel/white, /area/security/prison) -"adf" = ( +"adi" = ( /obj/structure/bed, /obj/item/clothing/suit/straight_jacket, /obj/item/clothing/glasses/sunglasses/blindfold, @@ -1402,23 +1359,23 @@ }, /turf/open/floor/plasteel/white, /area/security/prison) -"adg" = ( +"adj" = ( /obj/structure/closet/emcloset, /obj/machinery/light/small{ dir = 8 }, /turf/open/floor/plating, /area/crew_quarters/fitness/recreation) -"adh" = ( +"adk" = ( /obj/structure/shuttle/engine/propulsion/burst{ dir = 8 }, /turf/closed/wall/mineral/titanium, /area/shuttle/pod_3) -"adi" = ( +"adl" = ( /turf/closed/wall/mineral/titanium, /area/shuttle/pod_3) -"adj" = ( +"adm" = ( /obj/structure/table, /obj/item/device/flashlight/lamp, /obj/structure/reagent_dispensers/peppertank{ @@ -1429,7 +1386,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"adk" = ( +"adn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/chair/office/dark{ dir = 1 @@ -1439,15 +1396,15 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"adl" = ( +"ado" = ( /obj/machinery/atmospherics/pipe/simple/general/hidden, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"adm" = ( +"adp" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"adn" = ( +"adq" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -1460,11 +1417,11 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"ado" = ( +"adr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/security/execution/education) -"adp" = ( +"ads" = ( /obj/structure/bed, /obj/machinery/camera{ c_tag = "Prison Cell 3"; @@ -1472,7 +1429,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adq" = ( +"adt" = ( /obj/structure/chair/stool, /obj/machinery/light/small{ dir = 1 @@ -1487,7 +1444,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adr" = ( +"adu" = ( /obj/structure/bed, /obj/machinery/camera{ c_tag = "Prison Cell 2"; @@ -1495,14 +1452,14 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"ads" = ( +"adv" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adt" = ( +"adw" = ( /obj/structure/chair/stool, /obj/machinery/light/small{ dir = 1 @@ -1519,7 +1476,7 @@ icon_state = "platingdmg2" }, /area/security/prison) -"adu" = ( +"adx" = ( /obj/structure/bed, /obj/machinery/camera{ c_tag = "Prison Cell 1"; @@ -1527,7 +1484,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adv" = ( +"ady" = ( /obj/structure/chair/stool, /obj/machinery/light/small{ dir = 1 @@ -1542,12 +1499,12 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adw" = ( +"adz" = ( /turf/open/floor/plating{ icon_state = "platingdmg1" }, /area/security/prison) -"adx" = ( +"adA" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/machinery/light{ dir = 8 @@ -1558,13 +1515,13 @@ }, /turf/open/floor/plasteel/white, /area/security/prison) -"ady" = ( +"adB" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/white, /area/security/prison) -"adz" = ( +"adC" = ( /obj/machinery/flasher{ id = "insaneflash"; pixel_x = 26 @@ -1572,7 +1529,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/white, /area/security/prison) -"adA" = ( +"adD" = ( /obj/structure/lattice, /obj/machinery/camera/motion{ c_tag = "Armory - External"; @@ -1581,10 +1538,10 @@ }, /turf/open/space, /area/space/nearstation) -"adB" = ( +"adE" = ( /turf/open/floor/plating, /area/crew_quarters/fitness/recreation) -"adC" = ( +"adF" = ( /obj/machinery/door/airlock/titanium{ name = "Escape Pod Airlock" }, @@ -1598,47 +1555,32 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/pod_3) -"adD" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/item/storage/pod{ - pixel_x = 6; - pixel_y = -32 - }, -/obj/machinery/light/small, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_3) -"adE" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_y = -32; - possible_destinations = "pod_lavaland3"; - shuttleId = "pod3" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_3) -"adF" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/pod_3) "adG" = ( /obj/docking_port/stationary/random{ - dir = 4; - id = "pod_lavaland3"; + id = "pod_lavaland2"; name = "lavaland" }, /turf/open/space, /area/space/nearstation) "adH" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_x = -32; + possible_destinations = "pod_lavaland2"; + shuttleId = "pod2" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/pod_2) +"adI" = ( +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/pod_3) +"adJ" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -1657,7 +1599,7 @@ dir = 2 }, /area/security/execution/education) -"adI" = ( +"adK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -1665,7 +1607,7 @@ dir = 2 }, /area/security/execution/education) -"adJ" = ( +"adL" = ( /obj/machinery/atmospherics/pipe/simple/general/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -1674,7 +1616,7 @@ dir = 2 }, /area/security/execution/education) -"adK" = ( +"adM" = ( /obj/machinery/button/door{ id = "prisonereducation"; name = "Door Bolt Control"; @@ -1690,7 +1632,7 @@ dir = 2 }, /area/security/execution/education) -"adL" = ( +"adN" = ( /obj/machinery/light_switch{ pixel_x = 26 }, @@ -1704,7 +1646,7 @@ dir = 2 }, /area/security/execution/education) -"adM" = ( +"adO" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/machinery/flasher{ id = "PCell 3"; @@ -1714,7 +1656,7 @@ icon_state = "platingdmg3" }, /area/security/prison) -"adN" = ( +"adP" = ( /obj/structure/table, /obj/item/paper, /obj/item/pen, @@ -1723,13 +1665,13 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adO" = ( +"adQ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /turf/closed/wall, /area/security/prison) -"adP" = ( +"adR" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -1739,7 +1681,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adQ" = ( +"adS" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -1748,14 +1690,14 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adR" = ( +"adT" = ( /obj/structure/table, /obj/item/paper, /obj/item/pen, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adS" = ( +"adU" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/machinery/flasher{ id = "PCell 1"; @@ -1763,7 +1705,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"adT" = ( +"adV" = ( /obj/item/folder/red, /obj/item/pen, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -1772,7 +1714,7 @@ dir = 2 }, /area/security/prison) -"adU" = ( +"adW" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -1780,7 +1722,7 @@ dir = 2 }, /area/security/prison) -"adV" = ( +"adX" = ( /obj/structure/bed/roller, /obj/structure/bed/roller, /obj/machinery/iv_drip, @@ -1790,13 +1732,13 @@ dir = 2 }, /area/security/prison) -"adW" = ( +"adY" = ( /turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"adX" = ( +/area/security/warden) +"adZ" = ( /turf/closed/wall/r_wall, /area/crew_quarters/heads/hos) -"adY" = ( +"aea" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" @@ -1807,7 +1749,7 @@ }, /turf/open/floor/plating, /area/crew_quarters/heads/hos) -"adZ" = ( +"aeb" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -1821,7 +1763,7 @@ }, /turf/open/floor/plating, /area/crew_quarters/heads/hos) -"aea" = ( +"aec" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -1835,17 +1777,17 @@ }, /turf/open/floor/plating, /area/crew_quarters/heads/hos) -"aeb" = ( +"aed" = ( /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plating, /area/crew_quarters/fitness/recreation) -"aec" = ( +"aee" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"aed" = ( +"aef" = ( /obj/machinery/door/airlock/external{ name = "Solar Maintenance"; req_access = null; @@ -1854,9 +1796,10 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"aee" = ( +"aeg" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -1866,7 +1809,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"aef" = ( +"aeh" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 10 }, @@ -1880,7 +1823,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"aeg" = ( +"aei" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1; name = "justice gas pump" @@ -1894,7 +1837,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/execution/education) -"aeh" = ( +"aej" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ aiControlDisabled = 1; @@ -1911,22 +1854,25 @@ dir = 1 }, /area/security/execution/education) -"aei" = ( +"aek" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/security/prison) -"aej" = ( +"ael" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, /area/security/prison) -"aek" = ( +"aem" = ( /obj/machinery/door/airlock/security/glass{ name = "Long-Term Cell 3"; req_access_txt = "2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"ael" = ( +"aen" = ( /obj/machinery/door/airlock/security/glass{ name = "Long-Term Cell 2"; req_access_txt = "2" @@ -1935,16 +1881,22 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aem" = ( +"aeo" = ( /obj/machinery/door/airlock/security/glass{ name = "Long-Term Cell 1"; req_access_txt = "2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) -"aen" = ( +"aep" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Prison Sanitarium"; @@ -1957,7 +1909,24 @@ dir = 1 }, /area/security/prison) -"aeo" = ( +"aeq" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"aer" = ( +/obj/structure/rack, +/obj/item/gun/energy/ionrifle{ + pin = /obj/item/device/firing_pin + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/gun/energy/temperature/security, +/obj/item/clothing/suit/armor/laserproof, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/ai_monitored/security/armory) +"aes" = ( /obj/structure/closet/secure_closet{ name = "contraband locker"; req_access_txt = "3" @@ -1973,27 +1942,7 @@ dir = 4 }, /area/ai_monitored/security/armory) -"aep" = ( -/obj/structure/rack, -/obj/item/gun/energy/ionrifle{ - pin = /obj/item/device/firing_pin - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/gun/energy/temperature/security, -/obj/item/clothing/suit/armor/laserproof, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/ai_monitored/security/armory) -"aeq" = ( -/obj/structure/closet/secure_closet/lethalshots, -/turf/open/floor/plasteel/vault{ - dir = 1 - }, -/area/ai_monitored/security/armory) -"aer" = ( +"aet" = ( /obj/structure/table/wood, /obj/machinery/newscaster/security_unit{ pixel_y = 32 @@ -2012,81 +1961,66 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"aes" = ( +"aeu" = ( /obj/machinery/computer/prisoner, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"aet" = ( +"aev" = ( /obj/machinery/computer/security, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"aeu" = ( +"aew" = ( /obj/machinery/computer/secure_data, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"aev" = ( -/obj/structure/table/wood, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Security's Desk"; - departmentType = 5; - name = "Head of Security RC"; - pixel_y = 30 +"aex" = ( +/obj/structure/closet/secure_closet/lethalshots, +/turf/open/floor/plasteel/vault{ + dir = 1 }, -/obj/machinery/computer/med_data/laptop, -/obj/item/storage/secure/safe/HoS{ - pixel_x = 36; - pixel_y = 28 - }, -/obj/machinery/camera{ - c_tag = "Head of Security's Office"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"aew" = ( +/area/ai_monitored/security/armory) +"aey" = ( /turf/closed/wall, /area/security/range) -"aex" = ( +"aez" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/range) -"aey" = ( +"aeA" = ( /obj/machinery/door/airlock/external{ name = "Escape Pod Three" }, /turf/open/floor/plating, /area/crew_quarters/fitness/recreation) -"aez" = ( +"aeB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/closed/wall, /area/crew_quarters/fitness/recreation) -"aeA" = ( +"aeC" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plating, /area/crew_quarters/fitness/recreation) -"aeB" = ( +"aeE" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/open/floor/plating, /area/crew_quarters/fitness/recreation) -"aeC" = ( +"aeF" = ( /obj/effect/landmark/xeno_spawn, /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/starboard/fore) -"aeD" = ( +"aeG" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -2095,14 +2029,14 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"aeE" = ( +"aeH" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /turf/open/floor/plasteel/vault, /area/security/execution/education) -"aeF" = ( +"aeI" = ( /obj/item/tank/internals/oxygen/red{ pixel_x = -4; pixel_y = -1 @@ -2124,14 +2058,14 @@ /obj/item/wrench, /turf/open/floor/plasteel/vault, /area/security/execution/education) -"aeG" = ( +"aeJ" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 9 }, /obj/machinery/space_heater, /turf/open/floor/plasteel/vault, /area/security/execution/education) -"aeH" = ( +"aeK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-4" @@ -2140,7 +2074,7 @@ dir = 2 }, /area/security/prison) -"aeI" = ( +"aeL" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -2156,7 +2090,7 @@ dir = 2 }, /area/security/prison) -"aeJ" = ( +"aeM" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -2168,7 +2102,7 @@ dir = 2 }, /area/security/prison) -"aeK" = ( +"aeN" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -2179,7 +2113,7 @@ dir = 2 }, /area/security/prison) -"aeL" = ( +"aeO" = ( /obj/machinery/button/door{ id = "permacell3"; name = "Cell 3 Lockdown"; @@ -2202,7 +2136,7 @@ dir = 2 }, /area/security/prison) -"aeM" = ( +"aeP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -2224,7 +2158,7 @@ dir = 2 }, /area/security/prison) -"aeN" = ( +"aeQ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -2238,7 +2172,7 @@ dir = 2 }, /area/security/prison) -"aeO" = ( +"aeR" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -2250,7 +2184,7 @@ dir = 2 }, /area/security/prison) -"aeP" = ( +"aeS" = ( /obj/machinery/button/door{ id = "permacell2"; name = "Cell 2 Lockdown"; @@ -2274,7 +2208,7 @@ dir = 2 }, /area/security/prison) -"aeQ" = ( +"aeT" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -2291,7 +2225,7 @@ dir = 2 }, /area/security/prison) -"aeR" = ( +"aeU" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -2303,7 +2237,7 @@ dir = 2 }, /area/security/prison) -"aeS" = ( +"aeV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -2314,7 +2248,7 @@ dir = 2 }, /area/security/prison) -"aeT" = ( +"aeW" = ( /obj/machinery/button/door{ id = "permacell1"; name = "Cell 1 Lockdown"; @@ -2338,7 +2272,7 @@ dir = 2 }, /area/security/prison) -"aeU" = ( +"aeX" = ( /obj/machinery/power/apc/highcap/five_k{ dir = 1; name = "Prison Wing APC"; @@ -2367,7 +2301,7 @@ dir = 2 }, /area/security/prison) -"aeV" = ( +"aeY" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -2378,7 +2312,7 @@ dir = 2 }, /area/security/prison) -"aeW" = ( +"aeZ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -2392,7 +2326,7 @@ dir = 2 }, /area/security/prison) -"aeX" = ( +"afa" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -2408,7 +2342,7 @@ dir = 2 }, /area/security/prison) -"aeY" = ( +"afb" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -2422,7 +2356,17 @@ dir = 2 }, /area/security/prison) -"aeZ" = ( +"afc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/security/prison) +"afd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -2439,17 +2383,28 @@ }, /turf/open/floor/plasteel, /area/security/prison) -"afa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" +"afe" = ( +/obj/structure/table/wood, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security RC"; + pixel_y = 30 }, -/obj/structure/cable/yellow{ - icon_state = "2-8" +/obj/machinery/computer/med_data/laptop, +/obj/item/storage/secure/safe/HoS{ + pixel_x = 36; + pixel_y = 28 }, -/turf/open/floor/plating, -/area/security/prison) -"afb" = ( +/obj/machinery/camera{ + c_tag = "Head of Security's Office"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"aff" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/item/storage/secure/safe{ name = "armory safe A"; @@ -2458,33 +2413,19 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/security/armory) -"afc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"afd" = ( +"afg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/ai_monitored/security/armory) -"afe" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/storage/secure/safe{ - name = "armory safe B"; - pixel_x = 6; - pixel_y = 28 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 +"afh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 }, /turf/open/floor/plasteel/dark, /area/ai_monitored/security/armory) -"aff" = ( +"afi" = ( /obj/structure/closet/secure_closet/hos, /obj/machinery/light{ dir = 8 @@ -2502,7 +2443,7 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"afg" = ( +"afj" = ( /obj/machinery/status_display{ pixel_x = -32; pixel_y = 32 @@ -2512,17 +2453,17 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"afh" = ( +"afk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"afi" = ( +"afl" = ( /obj/structure/chair/comfy/black, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"afj" = ( +"afm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -2531,7 +2472,7 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"afk" = ( +"afn" = ( /obj/machinery/status_display{ pixel_x = 32; pixel_y = 32 @@ -2544,7 +2485,7 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"afl" = ( +"afo" = ( /obj/machinery/light{ dir = 4 }, @@ -2558,7 +2499,7 @@ /obj/machinery/suit_storage_unit/hos, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"afm" = ( +"afp" = ( /obj/machinery/light/small{ dir = 1 }, @@ -2567,13 +2508,13 @@ }, /turf/open/floor/plasteel, /area/security/range) -"afn" = ( +"afq" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, /area/security/range) -"afo" = ( +"afr" = ( /obj/machinery/light/small{ dir = 1 }, @@ -2582,7 +2523,7 @@ }, /turf/open/floor/plasteel, /area/security/range) -"afp" = ( +"afs" = ( /obj/machinery/shower{ dir = 4 }, @@ -2594,11 +2535,11 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/fitness/recreation) -"afq" = ( +"aft" = ( /obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"afr" = ( +"afu" = ( /obj/structure/table, /obj/item/reagent_containers/food/drinks/sillycup{ pixel_x = -5; @@ -2619,47 +2560,47 @@ }, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"afs" = ( +"afv" = ( /obj/structure/easel, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"aft" = ( +"afw" = ( /obj/structure/closet/masks, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"afu" = ( +"afx" = ( /obj/structure/closet/athletic_mixed, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"afv" = ( +"afy" = ( /obj/structure/closet/boxinggloves, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"afw" = ( +"afz" = ( /obj/structure/closet/emcloset, /obj/structure/sign/warning/pods{ pixel_y = 30 }, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"afx" = ( +"afA" = ( /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"afy" = ( +"afB" = ( /obj/machinery/computer/arcade, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"afz" = ( +"afC" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/crew_quarters/fitness/recreation) -"afA" = ( +"afD" = ( /turf/open/floor/engine{ name = "Holodeck Projector Floor" }, /area/holodeck/rec_center) -"afB" = ( +"afE" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -2668,9 +2609,12 @@ req_access = null; req_access_txt = "10; 13" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"afC" = ( +"afF" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "applebush" }, @@ -2679,7 +2623,7 @@ }, /turf/open/floor/plasteel, /area/security/prison) -"afD" = ( +"afG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -2687,7 +2631,7 @@ dir = 1 }, /area/security/prison) -"afE" = ( +"afH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -2699,7 +2643,7 @@ dir = 1 }, /area/security/prison) -"afF" = ( +"afI" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -2710,7 +2654,7 @@ dir = 1 }, /area/security/prison) -"afG" = ( +"afJ" = ( /obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -2722,7 +2666,7 @@ dir = 1 }, /area/security/prison) -"afH" = ( +"afK" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -2730,7 +2674,7 @@ dir = 1 }, /area/security/prison) -"afI" = ( +"afL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -2741,7 +2685,7 @@ dir = 1 }, /area/security/prison) -"afJ" = ( +"afM" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -2753,7 +2697,7 @@ dir = 1 }, /area/security/prison) -"afK" = ( +"afN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -2765,7 +2709,7 @@ dir = 1 }, /area/security/prison) -"afL" = ( +"afO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -2779,7 +2723,7 @@ dir = 1 }, /area/security/prison) -"afM" = ( +"afP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -2791,7 +2735,7 @@ dir = 1 }, /area/security/prison) -"afN" = ( +"afR" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -2802,7 +2746,7 @@ dir = 1 }, /area/security/prison) -"afO" = ( +"afS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -2811,7 +2755,7 @@ dir = 1 }, /area/security/prison) -"afP" = ( +"afT" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -2820,7 +2764,7 @@ dir = 1 }, /area/security/prison) -"afQ" = ( +"afU" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -2828,17 +2772,35 @@ dir = 1 }, /area/security/prison) -"afR" = ( +"afV" = ( /turf/open/floor/plasteel/red/corner{ dir = 1 }, /area/security/prison) -"afS" = ( +"afW" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /turf/open/floor/plating, /area/security/prison) -"afT" = ( +"afX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/storage/secure/safe{ + name = "armory safe B"; + pixel_x = 6; + pixel_y = 28 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"afY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"afZ" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -2863,11 +2825,21 @@ dir = 1 }, /area/ai_monitored/security/armory) -"afU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, +"aga" = ( +/mob/living/simple_animal/bot/secbot{ + arrest_type = 1; + health = 45; + icon_state = "secbot1"; + idcheck = 1; + name = "Sergeant-at-Armsky"; + on = 1; + weaponscheck = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, /area/ai_monitored/security/armory) -"afV" = ( +"agb" = ( /obj/structure/rack, /obj/item/gun/energy/e_gun/advtaser{ pixel_x = -3; @@ -2883,21 +2855,10 @@ dir = 1 }, /area/ai_monitored/security/armory) -"afW" = ( -/mob/living/simple_animal/bot/secbot{ - arrest_type = 1; - health = 45; - icon_state = "secbot1"; - idcheck = 1; - name = "Sergeant-at-Armsky"; - on = 1; - weaponscheck = 1 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, +"agc" = ( +/turf/open/floor/plasteel/dark, /area/ai_monitored/security/armory) -"afX" = ( +"agd" = ( /obj/structure/rack, /obj/item/gun/energy/laser{ pixel_x = -3; @@ -2912,22 +2873,7 @@ dir = 4 }, /area/ai_monitored/security/armory) -"afY" = ( -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"afZ" = ( -/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, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/ai_monitored/security/armory) -"aga" = ( +"age" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" @@ -2941,7 +2887,7 @@ }, /turf/open/floor/plating, /area/crew_quarters/heads/hos) -"agb" = ( +"agf" = ( /obj/structure/table/wood, /obj/item/storage/secure/briefcase{ pixel_x = -2 @@ -2953,24 +2899,24 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"agc" = ( +"agg" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"agd" = ( +"agh" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"age" = ( +"agi" = ( /obj/structure/table/wood, /obj/item/stamp/hos, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"agf" = ( +"agj" = ( /obj/item/phone{ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; pixel_x = -3; @@ -2984,7 +2930,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"agg" = ( +"agk" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -2993,7 +2939,7 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"agh" = ( +"agl" = ( /obj/structure/table/wood, /obj/item/paper_bin{ pixel_x = -3; @@ -3004,7 +2950,7 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"agi" = ( +"agm" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -3018,27 +2964,27 @@ }, /turf/open/floor/plating, /area/crew_quarters/heads/hos) -"agj" = ( +"agn" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/security/range) -"agk" = ( +"ago" = ( /obj/structure/target_stake, /obj/item/target/syndicate, /turf/open/floor/plasteel, /area/security/range) -"agl" = ( +"agp" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plasteel, /area/security/range) -"agm" = ( +"agq" = ( /turf/closed/wall, /area/maintenance/fore) -"agn" = ( +"agr" = ( /obj/structure/sink{ dir = 8; pixel_x = -12; @@ -3058,14 +3004,14 @@ /obj/machinery/light/small, /turf/open/floor/plasteel/freezer, /area/crew_quarters/fitness/recreation) -"ago" = ( +"ags" = ( /obj/machinery/door/airlock{ id_tag = "FitnessShower"; name = "Fitness Room Shower" }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/fitness/recreation) -"agp" = ( +"agt" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -3073,7 +3019,7 @@ dir = 1 }, /area/crew_quarters/fitness/recreation) -"agq" = ( +"agu" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -3081,7 +3027,7 @@ dir = 1 }, /area/crew_quarters/fitness/recreation) -"agr" = ( +"agv" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -3096,13 +3042,13 @@ dir = 1 }, /area/crew_quarters/fitness/recreation) -"ags" = ( +"agw" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"agt" = ( +"agx" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -3110,7 +3056,7 @@ dir = 4 }, /area/crew_quarters/fitness/recreation) -"agu" = ( +"agy" = ( /obj/machinery/light{ dir = 1 }, @@ -3127,15 +3073,15 @@ dir = 4 }, /area/crew_quarters/fitness/recreation) -"agv" = ( +"agz" = ( /turf/open/floor/plasteel/neutral/corner{ dir = 4 }, /area/crew_quarters/fitness/recreation) -"agw" = ( -/turf/closed/wall, +"agA" = ( +/turf/closed/wall/r_wall, /area/maintenance/solars/port/fore) -"agx" = ( +"agB" = ( /obj/machinery/power/solar_control{ id = "foreport"; name = "Port Bow Solar Control"; @@ -3146,7 +3092,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"agy" = ( +"agC" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -3158,7 +3104,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"agz" = ( +"agD" = ( /obj/structure/sign/warning/vacuum/external{ pixel_x = 32 }, @@ -3166,7 +3112,7 @@ icon_state = "platingdmg2" }, /area/maintenance/solars/port/fore) -"agA" = ( +"agE" = ( /obj/structure/table, /obj/item/folder/red{ pixel_x = 3 @@ -3177,7 +3123,7 @@ }, /turf/open/floor/plasteel/vault, /area/security/prison) -"agB" = ( +"agF" = ( /obj/structure/rack, /obj/item/restraints/handcuffs, /obj/item/device/assembly/flash/handheld, @@ -3186,7 +3132,7 @@ }, /turf/open/floor/plasteel/vault, /area/security/prison) -"agC" = ( +"agG" = ( /obj/structure/table, /obj/item/storage/box/bodybags{ pixel_x = 4; @@ -3196,22 +3142,22 @@ /obj/item/storage/box/prisoner, /turf/open/floor/plasteel/vault, /area/security/prison) -"agD" = ( +"agH" = ( /obj/structure/closet/secure_closet/brig, /turf/open/floor/plasteel/vault, /area/security/prison) -"agE" = ( +"agI" = ( /obj/structure/closet/secure_closet/brig, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/vault, /area/security/prison) -"agF" = ( +"agJ" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall, /area/security/prison) -"agG" = ( +"agK" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ @@ -3221,29 +3167,31 @@ name = "Prison Wing"; req_access_txt = "1" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/security/prison) -"agH" = ( +"agL" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/prison) -"agI" = ( +"agM" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/security/glass{ name = "Prison Wing"; req_access_txt = "1" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/security/prison) -"agJ" = ( +"agN" = ( /obj/structure/sign/warning/securearea{ desc = "A warning sign which reads 'WARNING: Dangerous Inmates'."; name = "\improper WARNING: Dangerous Inmates" }, /turf/closed/wall, /area/security/prison) -"agK" = ( +"agO" = ( /obj/structure/table, /obj/machinery/recharger{ pixel_y = 4 @@ -3253,7 +3201,7 @@ }, /turf/open/floor/plasteel/vault, /area/security/prison) -"agL" = ( +"agP" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -3261,7 +3209,19 @@ }, /turf/open/floor/plasteel/vault, /area/security/prison) -"agM" = ( +"agQ" = ( +/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, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/ai_monitored/security/armory) +"agR" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -22 @@ -3274,7 +3234,13 @@ dir = 1 }, /area/ai_monitored/security/armory) -"agN" = ( +"agS" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"agT" = ( /obj/structure/rack, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/item/storage/box/rubbershot, @@ -3293,13 +3259,7 @@ dir = 1 }, /area/ai_monitored/security/armory) -"agO" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) -"agP" = ( +"agU" = ( /obj/structure/rack, /obj/item/gun/energy/e_gun{ pixel_x = -3; @@ -3314,27 +3274,7 @@ dir = 4 }, /area/ai_monitored/security/armory) -"agQ" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"agR" = ( -/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, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 28 - }, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/ai_monitored/security/armory) -"agS" = ( +"agV" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/machinery/door/poddoor/preopen{ @@ -3343,22 +3283,22 @@ }, /turf/open/floor/plating, /area/crew_quarters/heads/hos) -"agT" = ( +"agW" = ( /obj/structure/table/wood, /obj/machinery/recharger, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"agU" = ( +"agX" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"agV" = ( +"agY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"agW" = ( +"agZ" = ( /obj/machinery/holopad, /obj/structure/chair{ dir = 1 @@ -3366,7 +3306,7 @@ /obj/effect/landmark/start/head_of_security, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"agX" = ( +"aha" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /mob/living/simple_animal/hostile/retaliate/bat{ desc = "A fierce companion for any person of power, this spider has been carefully trained by Nanotrasen specialists. Its beady, staring eyes send shivers down your spine."; @@ -3392,7 +3332,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"agY" = ( +"ahb" = ( /obj/structure/table/wood, /obj/item/device/taperecorder{ pixel_x = -4 @@ -3402,18 +3342,18 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/hos) -"agZ" = ( +"ahc" = ( /turf/open/floor/plasteel, /area/security/range) -"aha" = ( +"ahd" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/maintenance/fore) -"ahb" = ( +"ahe" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/maintenance/fore) -"ahc" = ( +"ahf" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -3421,47 +3361,41 @@ dir = 1 }, /area/crew_quarters/fitness/recreation) -"ahd" = ( +"ahg" = ( /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"ahe" = ( +"ahh" = ( /turf/open/floor/plasteel/neutral/corner{ dir = 2 }, /area/crew_quarters/fitness/recreation) -"ahf" = ( +"ahi" = ( /obj/structure/chair, /turf/open/floor/plasteel/neutral/corner{ dir = 2 }, /area/crew_quarters/fitness/recreation) -"ahg" = ( +"ahj" = ( /obj/structure/chair, /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"ahh" = ( +"ahk" = ( /obj/structure/chair, /turf/open/floor/plasteel/neutral/corner{ dir = 8 }, /area/crew_quarters/fitness/recreation) -"ahi" = ( +"ahl" = ( /turf/open/floor/plasteel/neutral/corner{ dir = 8 }, /area/crew_quarters/fitness/recreation) -"ahj" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/crew_quarters/fitness/recreation) -"ahk" = ( +"ahm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"ahl" = ( +"ahn" = ( /obj/structure/chair{ dir = 4 }, @@ -3469,20 +3403,20 @@ dir = 4 }, /area/crew_quarters/fitness/recreation) -"ahm" = ( +"aho" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ req_access_txt = "0" }, /turf/closed/wall, /area/crew_quarters/fitness/recreation) -"ahn" = ( +"ahp" = ( /turf/closed/wall, /area/maintenance/disposal) -"aho" = ( +"ahq" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/disposal) -"ahp" = ( +"ahr" = ( /obj/structure/chair/stool{ pixel_y = 8 }, @@ -3492,7 +3426,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"ahq" = ( +"ahs" = ( /obj/structure/cable{ icon_state = "1-4" }, @@ -3500,7 +3434,7 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"ahr" = ( +"aht" = ( /obj/structure/cable{ icon_state = "0-8" }, @@ -3516,19 +3450,19 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"ahs" = ( +"ahu" = ( /obj/machinery/suit_storage_unit/security, /turf/open/floor/plasteel/vault{ dir = 1 }, /area/security/brig) -"aht" = ( +"ahv" = ( /obj/structure/tank_dispenser/oxygen, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/security/brig) -"ahu" = ( +"ahw" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -3537,10 +3471,10 @@ dir = 4 }, /area/security/brig) -"ahv" = ( +"ahx" = ( /turf/closed/wall, /area/security/brig) -"ahw" = ( +"ahy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -3552,7 +3486,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/security/brig) -"ahx" = ( +"ahz" = ( /obj/machinery/door/poddoor/preopen{ id = "Prison Gate"; name = "Security Blast Door" @@ -3560,7 +3494,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/security/brig) -"ahy" = ( +"ahA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/poddoor/preopen{ id = "Prison Gate"; @@ -3569,13 +3503,36 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/security/brig) -"ahz" = ( +"ahB" = ( /turf/closed/wall, /area/security/warden) -"ahA" = ( -/turf/closed/wall/r_wall, -/area/security/warden) -"ahB" = ( +"ahC" = ( +/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, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 28 + }, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/ai_monitored/security/armory) +"ahD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"ahE" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -3591,29 +3548,7 @@ dir = 1 }, /area/ai_monitored/security/armory) -"ahC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"ahD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/vault{ - dir = 6 - }, -/area/ai_monitored/security/armory) -"ahE" = ( +"ahF" = ( /obj/machinery/power/apc/highcap/five_k{ dir = 2; name = "Armory APC"; @@ -3632,12 +3567,24 @@ }, /turf/open/floor/plasteel/vault, /area/ai_monitored/security/armory) -"ahF" = ( +"ahG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/vault{ + dir = 6 + }, +/area/ai_monitored/security/armory) +"ahH" = ( /turf/open/floor/plasteel/vault{ dir = 10 }, /area/ai_monitored/security/armory) -"ahG" = ( +"ahI" = ( /obj/structure/rack, /obj/item/shield/riot{ pixel_x = -3; @@ -3658,7 +3605,7 @@ dir = 4 }, /area/ai_monitored/security/armory) -"ahH" = ( +"ahJ" = ( /obj/machinery/disposal/bin, /obj/machinery/firealarm{ dir = 8; @@ -3680,7 +3627,7 @@ }, /turf/open/floor/plasteel/vault, /area/crew_quarters/heads/hos) -"ahI" = ( +"ahK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -3689,7 +3636,7 @@ }, /turf/open/floor/plasteel/vault, /area/crew_quarters/heads/hos) -"ahJ" = ( +"ahL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment{ dir = 4 @@ -3699,7 +3646,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"ahK" = ( +"ahM" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -3711,14 +3658,14 @@ }, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"ahL" = ( +"ahN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/carpet, /area/crew_quarters/heads/hos) -"ahM" = ( +"ahO" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -3727,56 +3674,44 @@ }, /turf/open/floor/plasteel/vault, /area/crew_quarters/heads/hos) -"ahN" = ( -/obj/machinery/photocopier, -/obj/machinery/power/apc{ - dir = 4; - name = "Head of Security's Office APC"; - areastring = "/area/crew_quarters/heads/hos"; - pixel_x = 24 +"ahP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Armory"; + req_access = null; + req_access_txt = "3" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - icon_state = "0-8" + icon_state = "1-2" }, -/obj/machinery/button/door{ - id = "hosprivacy"; - name = "Privacy Shutters Control"; - pixel_x = 26; - pixel_y = -26 +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/vault{ + dir = 8 }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault, -/area/crew_quarters/heads/hos) -"ahO" = ( +/area/ai_monitored/security/armory) +"ahQ" = ( /obj/item/clothing/head/festive, /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plating, /area/maintenance/fore) -"ahP" = ( +"ahR" = ( /obj/item/cigbutt, /turf/open/floor/plating, /area/maintenance/fore) -"ahQ" = ( +"ahS" = ( /turf/open/floor/plating{ icon_state = "platingdmg1" }, /area/maintenance/fore) -"ahR" = ( -/obj/structure/table, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fore) -"ahS" = ( +"ahU" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/table, /obj/item/stock_parts/manipulator, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/fore) -"ahT" = ( +"ahV" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -3788,7 +3723,7 @@ dir = 1 }, /area/crew_quarters/fitness/recreation) -"ahU" = ( +"ahW" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -3800,13 +3735,13 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"ahV" = ( +"ahX" = ( /obj/structure/window/reinforced{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"ahW" = ( +"ahY" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -3815,13 +3750,13 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"ahX" = ( +"ahZ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"ahY" = ( +"aia" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -3829,7 +3764,7 @@ dir = 4 }, /area/crew_quarters/fitness/recreation) -"ahZ" = ( +"aib" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -3837,9 +3772,12 @@ /obj/machinery/door/airlock/public/glass{ name = "Holodeck Door" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"aia" = ( +"aic" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -3847,9 +3785,12 @@ /obj/machinery/door/airlock/public/glass{ name = "Holodeck Door" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"aib" = ( +"aid" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -3861,7 +3802,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"aic" = ( +"aie" = ( /obj/machinery/airalarm{ pixel_y = 24 }, @@ -3870,7 +3811,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"aid" = ( +"aif" = ( /obj/machinery/door/poddoor{ id = "trash"; name = "disposal bay door" @@ -3878,7 +3819,7 @@ /obj/structure/fans/tiny, /turf/open/floor/plating, /area/maintenance/disposal) -"aie" = ( +"aig" = ( /obj/machinery/mass_driver{ dir = 8; id = "trash" @@ -3891,7 +3832,7 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"aif" = ( +"aih" = ( /obj/machinery/conveyor_switch/oneway{ convdir = -1; id = "garbage"; @@ -3899,17 +3840,17 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"aig" = ( +"aii" = ( /obj/structure/easel, /turf/open/floor/plating, /area/maintenance/disposal) -"aih" = ( +"aij" = ( /obj/item/vending_refill/coffee, /turf/open/floor/plating{ icon_state = "platingdmg2" }, /area/maintenance/disposal) -"aii" = ( +"aik" = ( /obj/structure/closet, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 3; @@ -3917,7 +3858,7 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"aij" = ( +"ail" = ( /obj/machinery/power/apc{ dir = 8; name = "Port Bow Solar APC"; @@ -3932,7 +3873,7 @@ icon_state = "panelscorched" }, /area/maintenance/solars/port/fore) -"aik" = ( +"aim" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -3945,7 +3886,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"ail" = ( +"ain" = ( /obj/structure/cable{ icon_state = "0-8" }, @@ -3955,24 +3896,21 @@ /obj/machinery/power/smes, /turf/open/floor/plating, /area/maintenance/solars/port/fore) -"aim" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/port/fore) -"ain" = ( +"aio" = ( /turf/closed/wall/r_wall, /area/maintenance/port/fore) -"aio" = ( +"aip" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/port/fore) -"aip" = ( +"aiq" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" }, /turf/open/floor/plating, /area/security/brig) -"aiq" = ( +"air" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -3980,7 +3918,7 @@ dir = 8 }, /area/security/brig) -"air" = ( +"ais" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -3994,7 +3932,7 @@ dir = 8 }, /area/security/brig) -"ais" = ( +"ait" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Security E.V.A. Storage"; @@ -4005,7 +3943,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"ait" = ( +"aiu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -4017,12 +3955,12 @@ dir = 1 }, /area/security/brig) -"aiu" = ( +"aiv" = ( /turf/open/floor/plasteel/red/side{ dir = 1 }, /area/security/brig) -"aiv" = ( +"aiw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light/small{ dir = 4 @@ -4037,15 +3975,15 @@ dir = 1 }, /area/security/brig) -"aiw" = ( +"aix" = ( /obj/structure/closet{ - name = "Evidence Closet 3" + name = "Evidence Closet 1" }, /turf/open/floor/plasteel/vault{ - dir = 4 + dir = 1 }, /area/security/warden) -"aix" = ( +"aiy" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/machinery/light/small{ dir = 1 @@ -4065,46 +4003,28 @@ dir = 8 }, /area/security/warden) -"aiy" = ( +"aiz" = ( /obj/structure/closet/secure_closet/evidence, /turf/open/floor/plasteel/vault{ dir = 4 }, /area/security/warden) -"aiz" = ( +"aiA" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /turf/open/floor/plating, /area/ai_monitored/security/armory) -"aiA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Armory"; - req_access = null; - req_access_txt = "3" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/security/armory) "aiB" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, -/area/ai_monitored/security/armory) +/area/security/warden) "aiC" = ( -/obj/machinery/door/poddoor/shutters{ - id = "armory"; - name = "armory shutters" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, /area/ai_monitored/security/armory) "aiD" = ( /obj/effect/spawner/structure/window/reinforced, @@ -4213,8 +4133,10 @@ /turf/open/floor/plasteel, /area/security/range) "aiN" = ( -/turf/open/floor/plating, -/area/maintenance/fore) +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) "aiO" = ( /obj/structure/chair/stool{ pixel_y = 8 @@ -4336,23 +4258,16 @@ /turf/open/floor/plating, /area/maintenance/disposal) "aje" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/disposal) +/turf/open/floor/plating, +/area/maintenance/fore) "ajf" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plating, /area/maintenance/disposal) "ajg" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/light_switch{ - pixel_x = 25 +/turf/open/floor/plating{ + icon_state = "platingdmg2" }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, /area/maintenance/disposal) "ajh" = ( /obj/structure/cable/yellow{ @@ -4387,23 +4302,6 @@ /obj/item/restraints/handcuffs/cable/pink, /turf/open/floor/plating, /area/maintenance/port/fore) -"ajk" = ( -/obj/item/stack/sheet/cardboard, -/obj/structure/light_construct/small{ - dir = 1 - }, -/obj/structure/closet/crate, -/obj/item/coin/silver, -/obj/item/grenade/chem_grenade, -/obj/item/storage/box/lights/mixed, -/obj/item/watertank, -/obj/item/storage/box/donkpockets, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) "ajl" = ( /obj/item/soap/deluxe, /obj/item/storage/secure/safe{ @@ -4432,6 +4330,9 @@ /obj/structure/cable/yellow{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/red/side, /area/security/brig) "ajo" = ( @@ -4445,6 +4346,9 @@ name = "Prison Wing"; req_access_txt = "1" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/red/side, /area/security/brig) "ajq" = ( @@ -4461,12 +4365,20 @@ /area/security/warden) "ajr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/security/warden) "ajs" = ( +/obj/machinery/door/poddoor/shutters{ + id = "armory"; + name = "armory shutters" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"ajt" = ( /obj/structure/closet{ name = "Evidence Closet 5" }, @@ -4478,50 +4390,6 @@ dir = 4 }, /area/security/warden) -"ajt" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 28 - }, -/obj/structure/closet/crate/secure/weapon{ - desc = "A secure clothing crate."; - name = "formal uniform crate"; - req_access_txt = "3" - }, -/obj/item/clothing/under/rank/security/navyblue, -/obj/item/clothing/under/rank/security/navyblue, -/obj/item/clothing/under/rank/security/navyblue, -/obj/item/clothing/under/rank/security/navyblue, -/obj/item/clothing/under/rank/security/navyblue, -/obj/item/clothing/under/rank/security/navyblue, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/under/rank/warden/navyblue, -/obj/item/clothing/suit/security/warden, -/obj/item/clothing/under/rank/head_of_security/navyblue, -/obj/item/clothing/suit/security/hos, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navywarden, -/obj/item/clothing/head/beret/sec/navyhos, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/warden) -"aju" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/warden) "ajv" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 @@ -4686,20 +4554,16 @@ /turf/open/floor/plating, /area/maintenance/fore) "ajQ" = ( -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /obj/structure/cable/yellow{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 +/turf/open/floor/plasteel/red/corner{ + dir = 4 }, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) +/area/security/brig) "ajR" = ( /obj/structure/chair/stool{ pixel_y = 8 @@ -4804,9 +4668,17 @@ /turf/open/floor/plating, /area/maintenance/disposal) "akg" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/maintenance/disposal) +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) "akh" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -4904,7 +4776,7 @@ "ako" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating, -/area/maintenance/port/fore) +/area/maintenance/port) "akp" = ( /obj/structure/rack, /obj/item/clothing/gloves/color/yellow, @@ -4944,9 +4816,6 @@ /turf/open/floor/plating, /area/maintenance/port/fore) "akt" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"aku" = ( /obj/structure/table, /obj/item/clothing/gloves/color/latex, /obj/item/clothing/mask/surgical, @@ -4955,7 +4824,7 @@ dir = 9 }, /area/security/brig) -"akv" = ( +"aku" = ( /obj/structure/table, /obj/item/device/radio/intercom{ freerange = 0; @@ -4978,7 +4847,7 @@ dir = 1 }, /area/security/brig) -"akw" = ( +"akv" = ( /obj/structure/table, /obj/machinery/airalarm{ pixel_y = 28 @@ -4988,7 +4857,7 @@ dir = 1 }, /area/security/brig) -"akx" = ( +"akw" = ( /obj/structure/table, /obj/structure/window/reinforced{ dir = 4 @@ -5002,7 +4871,7 @@ dir = 5 }, /area/security/brig) -"aky" = ( +"akx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-4" @@ -5011,7 +4880,7 @@ dir = 9 }, /area/security/brig) -"akz" = ( +"aky" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -5019,7 +4888,7 @@ dir = 1 }, /area/security/brig) -"akA" = ( +"akz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/sign/warning/pods{ pixel_x = 32 @@ -5028,21 +4897,18 @@ dir = 5 }, /area/security/brig) -"akB" = ( -/obj/structure/closet{ - name = "Evidence Closet 1" +"akA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/turf/open/floor/plasteel/vault{ - dir = 1 +/obj/structure/cable/yellow{ + icon_state = "4-8" }, -/area/security/warden) -"akC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/security/warden) -"akD" = ( +"akB" = ( /obj/structure/closet{ name = "Evidence Closet 4" }, @@ -5050,7 +4916,7 @@ dir = 4 }, /area/security/warden) -"akE" = ( +"akC" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, @@ -5063,20 +4929,25 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/security/warden) -"akF" = ( +"akD" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/warden) +"akE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/security/warden) -"akG" = ( +"akF" = ( /obj/structure/closet/l3closet/security, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/security/warden) -"akH" = ( +"akG" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -5084,19 +4955,19 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/security/warden) -"akI" = ( +"akH" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/closet/secure_closet/security/sec, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"akJ" = ( +"akI" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"akK" = ( +"akJ" = ( /obj/structure/closet/secure_closet/security/sec, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -5104,7 +4975,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"akL" = ( +"akK" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -5114,7 +4985,7 @@ }, /turf/open/floor/plating, /area/security/warden) -"akM" = ( +"akL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -5125,7 +4996,7 @@ dir = 9 }, /area/security/main) -"akN" = ( +"akM" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -5139,7 +5010,7 @@ dir = 1 }, /area/security/main) -"akO" = ( +"akN" = ( /obj/machinery/light{ dir = 1 }, @@ -5159,7 +5030,7 @@ dir = 1 }, /area/security/main) -"akP" = ( +"akO" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -5168,7 +5039,7 @@ dir = 1 }, /area/security/main) -"akQ" = ( +"akP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -5179,7 +5050,7 @@ dir = 1 }, /area/security/main) -"akR" = ( +"akQ" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -5193,7 +5064,7 @@ dir = 1 }, /area/security/main) -"akS" = ( +"akR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -5207,7 +5078,7 @@ dir = 1 }, /area/security/main) -"akT" = ( +"akS" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, @@ -5221,7 +5092,7 @@ dir = 1 }, /area/security/main) -"akU" = ( +"akT" = ( /obj/machinery/light{ dir = 1 }, @@ -5238,7 +5109,7 @@ dir = 1 }, /area/security/main) -"akV" = ( +"akU" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -5252,7 +5123,7 @@ dir = 1 }, /area/security/main) -"akW" = ( +"akV" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -5270,7 +5141,7 @@ dir = 5 }, /area/security/main) -"akX" = ( +"akW" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -5280,7 +5151,7 @@ }, /turf/open/floor/plating, /area/security/range) -"akY" = ( +"akX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -5289,13 +5160,13 @@ dir = 8 }, /area/security/range) -"akZ" = ( +"akY" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/security/range) -"ala" = ( +"akZ" = ( /obj/structure/rack, /obj/item/gun/energy/laser/practice{ pixel_x = 2; @@ -5319,39 +5190,39 @@ }, /turf/open/floor/plasteel, /area/security/range) -"alb" = ( +"ala" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating, /area/maintenance/fore) -"alc" = ( +"alb" = ( /turf/open/floor/plating{ icon_state = "panelscorched" }, /area/maintenance/fore) -"ald" = ( +"alc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/fore) -"ale" = ( +"ald" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/fore) -"alf" = ( +"ale" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 }, /turf/open/floor/plating, /area/maintenance/fore) -"alg" = ( +"alf" = ( /obj/structure/closet/firecloset, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"alh" = ( +"alg" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -5360,7 +5231,7 @@ dir = 8 }, /area/crew_quarters/fitness/recreation) -"ali" = ( +"alh" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -5371,19 +5242,19 @@ dir = 4 }, /area/crew_quarters/fitness/recreation) -"alj" = ( +"ali" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/vault{ dir = 5 }, /area/crew_quarters/fitness/recreation) -"alk" = ( +"alj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/vault{ dir = 5 }, /area/crew_quarters/fitness/recreation) -"all" = ( +"alk" = ( /obj/structure/chair{ dir = 8 }, @@ -5391,7 +5262,7 @@ dir = 1 }, /area/crew_quarters/fitness/recreation) -"alm" = ( +"all" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -5399,7 +5270,7 @@ dir = 2 }, /area/crew_quarters/fitness/recreation) -"aln" = ( +"alm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -5407,9 +5278,12 @@ /obj/machinery/door/airlock/public/glass{ name = "Holodeck Door" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"alo" = ( +"aln" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -5417,9 +5291,12 @@ /obj/machinery/door/airlock/public/glass{ name = "Holodeck Door" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"alp" = ( +"alo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -5436,42 +5313,42 @@ /obj/machinery/light/small, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"alq" = ( +"alp" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) +"alq" = ( +/turf/closed/wall, +/area/maintenance/starboard) "alr" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/maintenance/starboard/fore) +/area/maintenance/starboard) "als" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"alt" = ( /obj/machinery/light{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) -"alu" = ( +"alt" = ( /obj/effect/turf_decal/bot_white, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/engine/gravity_generator) -"alv" = ( +"alu" = ( /obj/machinery/light{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) -"alw" = ( +"alv" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"alx" = ( +"alw" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -5480,9 +5357,10 @@ req_access = null; req_access_txt = "10; 13" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"aly" = ( +"alx" = ( /obj/machinery/conveyor{ dir = 2; id = "garbage" @@ -5492,7 +5370,7 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"alz" = ( +"aly" = ( /obj/machinery/disposal/deliveryChute{ dir = 4 }, @@ -5517,7 +5395,7 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"alA" = ( +"alz" = ( /obj/machinery/conveyor{ dir = 4; id = "garbage" @@ -5531,7 +5409,7 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"alB" = ( +"alA" = ( /obj/machinery/mineral/stacking_machine{ input_dir = 2 }, @@ -5543,7 +5421,7 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"alC" = ( +"alB" = ( /obj/machinery/mineral/stacking_unit_console{ dir = 2; machinedir = 8; @@ -5557,11 +5435,11 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"alD" = ( +"alC" = ( /obj/structure/grille, /turf/open/floor/plating, -/area/maintenance/port/fore) -"alE" = ( +/area/maintenance/port) +"alD" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -5571,7 +5449,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"alF" = ( +"alE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -5580,7 +5458,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"alG" = ( +"alF" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Secure Storage Room"; req_access_txt = "65" @@ -5590,7 +5468,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"alH" = ( +"alG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -5599,19 +5477,19 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"alI" = ( +"alH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /obj/item/bot_assembly/cleanbot, /turf/open/floor/plating, /area/maintenance/port/fore) -"alJ" = ( +"alI" = ( /obj/item/grown/log, /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/port/fore) -"alK" = ( +"alJ" = ( /obj/structure/light_construct/small{ dir = 4 }, @@ -5623,6 +5501,9 @@ /obj/item/grenade/smokebomb, /turf/open/floor/plating, /area/maintenance/port/fore) +"alK" = ( +/turf/closed/wall, +/area/maintenance/port) "alL" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /turf/open/floor/plasteel/dark, @@ -5679,29 +5560,6 @@ }, /area/security/brig) "alR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alS" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/security/brig) -"alT" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ name = "Evidence Storage"; @@ -5712,6 +5570,26 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/warden) +"alS" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/security/brig) +"alT" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -5726,20 +5604,9 @@ /obj/structure/cable/yellow{ icon_state = "4-8" }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, +/turf/open/floor/plasteel, /area/security/warden) "alV" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/security/warden) -"alW" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -5753,30 +5620,14 @@ /obj/structure/cable/yellow{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/security/warden) -"alX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/warden) -"alY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/warden) -"alZ" = ( +"alW" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -5791,7 +5642,41 @@ }, /turf/open/floor/plasteel, /area/security/warden) -"ama" = ( +"alX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/door/airlock/security/glass{ + name = "Gear Room"; + req_access_txt = "0"; + req_one_access_txt = "1;4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"alY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/main) +"alZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -5800,7 +5685,7 @@ }, /turf/open/floor/plasteel, /area/security/warden) -"amb" = ( +"ama" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Secure Gear Storage"; @@ -5819,9 +5704,12 @@ icon_state = "4-8" }, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/security/warden) -"amc" = ( +"amb" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -5833,7 +5721,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"amd" = ( +"amc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -5842,26 +5730,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"ame" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/door/airlock/security/glass{ - name = "Gear Room"; - req_access_txt = "0"; - req_one_access_txt = "1;4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/warden) -"amf" = ( +"amd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -5872,45 +5741,58 @@ dir = 8 }, /area/security/main) -"amg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +"ame" = ( /obj/structure/cable/yellow{ - icon_state = "1-2" + icon_state = "4-8" }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/cable/yellow{ icon_state = "2-8" }, -/turf/open/floor/plasteel/red/side{ - dir = 9 +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"amf" = ( +/obj/machinery/light{ + dir = 8 }, -/area/security/main) -"amh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/power/apc/highcap/five_k{ + dir = 8; + name = "Brig Control APC"; + areastring = "/area/security/warden"; + pixel_x = -26 + }, +/obj/structure/cable/yellow, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"amg" = ( /turf/open/floor/plasteel/red/side{ dir = 1 }, /area/security/main) -"ami" = ( -/obj/effect/landmark/event_spawn, +"amh" = ( /turf/open/floor/plasteel/red, /area/security/main) -"amj" = ( +"ami" = ( /obj/machinery/photocopier{ pixel_y = 3 }, /turf/open/floor/plasteel, /area/security/main) -"amk" = ( +"amj" = ( /obj/structure/chair/comfy/black, /obj/effect/landmark/start/head_of_security, /turf/open/floor/plasteel, /area/security/main) -"aml" = ( +"amk" = ( /obj/machinery/computer/card/minor/hos{ dir = 8 }, /turf/open/floor/plasteel, /area/security/main) -"amm" = ( +"aml" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -5919,7 +5801,7 @@ }, /turf/open/floor/plasteel/red, /area/security/main) -"amn" = ( +"amm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -5930,7 +5812,7 @@ dir = 1 }, /area/security/main) -"amo" = ( +"amn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -5943,7 +5825,7 @@ dir = 5 }, /area/security/main) -"amp" = ( +"amo" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -5961,7 +5843,7 @@ dir = 4 }, /area/security/main) -"amq" = ( +"amp" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Firing Range"; @@ -5979,7 +5861,7 @@ }, /turf/open/floor/plasteel, /area/security/range) -"amr" = ( +"amq" = ( /obj/machinery/firealarm{ dir = 1; pixel_y = -24 @@ -5997,7 +5879,7 @@ dir = 10 }, /area/security/range) -"ams" = ( +"amr" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -6012,7 +5894,7 @@ dir = 8 }, /area/security/range) -"amt" = ( +"ams" = ( /obj/item/target, /obj/item/target, /obj/item/target/alien, @@ -6040,24 +5922,24 @@ }, /turf/open/floor/plasteel, /area/security/range) -"amu" = ( +"amt" = ( /obj/structure/rack, /obj/item/storage/box/lights/mixed, /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/fore) -"amv" = ( +"amu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plating, /area/maintenance/fore) -"amw" = ( +"amv" = ( /obj/structure/closet/emcloset, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"amx" = ( +"amw" = ( /obj/structure/window/reinforced, /obj/machinery/door/window/eastright{ base_state = "left"; @@ -6067,33 +5949,33 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"amy" = ( +"amx" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"amz" = ( +"amy" = ( /obj/structure/window/reinforced, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"amA" = ( +"amz" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"amB" = ( +"amA" = ( /obj/structure/window/reinforced{ dir = 4 }, /obj/structure/window/reinforced, /turf/open/floor/plasteel/dark, /area/crew_quarters/fitness/recreation) -"amC" = ( +"amB" = ( /turf/open/floor/plasteel/neutral/corner{ dir = 1 }, /area/crew_quarters/fitness/recreation) -"amD" = ( +"amC" = ( /obj/structure/chair{ dir = 4 }, @@ -6102,23 +5984,23 @@ dir = 2 }, /area/crew_quarters/fitness/recreation) -"amE" = ( +"amD" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/crew_quarters/fitness/recreation) -"amF" = ( +"amE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/crew_quarters/fitness/recreation) -"amG" = ( +"amF" = ( /obj/machinery/door/airlock/maintenance{ name = "maintenance access"; req_access_txt = "12" }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"amH" = ( +"amG" = ( /obj/machinery/light/small{ dir = 8 }, @@ -6127,20 +6009,20 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"amI" = ( +"amH" = ( /obj/machinery/door/airlock/external{ req_access_txt = "0"; req_one_access_txt = "13,8" }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"amJ" = ( +"amI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) -"amK" = ( +"amJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -6149,14 +6031,14 @@ dir = 4 }, /area/engine/gravity_generator) -"amL" = ( +"amK" = ( /obj/machinery/gravity_generator/main/station, /obj/effect/turf_decal/bot_white, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/engine/gravity_generator) -"amM" = ( +"amL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -6165,7 +6047,7 @@ dir = 1 }, /area/engine/gravity_generator) -"amN" = ( +"amM" = ( /obj/machinery/camera{ c_tag = "Gravity Generator Room"; dir = 8; @@ -6176,7 +6058,7 @@ }, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) -"amO" = ( +"amN" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -6185,7 +6067,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"amP" = ( +"amO" = ( /obj/machinery/light/small{ dir = 8 }, @@ -6196,14 +6078,14 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"amQ" = ( +"amP" = ( /obj/machinery/conveyor{ dir = 4; id = "garbage" }, /turf/open/floor/plating, /area/maintenance/disposal) -"amR" = ( +"amQ" = ( /obj/machinery/conveyor{ dir = 6; id = "garbage" @@ -6217,7 +6099,7 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"amS" = ( +"amR" = ( /obj/machinery/light/small{ dir = 4 }, @@ -6229,13 +6111,13 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"amT" = ( +"amS" = ( /obj/effect/landmark/xeno_spawn, /obj/item/storage/box/lights/mixed, /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating, /area/maintenance/port/fore) -"amU" = ( +"amT" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -6246,36 +6128,13 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"amV" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Port Bow Maintenance APC"; - areastring = "/area/maintenance/port/fore"; - pixel_x = 26 - }, +"amU" = ( /turf/open/floor/plating{ icon_state = "platingdmg2" }, -/area/maintenance/port/fore) +/area/maintenance/port) "amW" = ( /obj/structure/table/reinforced, -/obj/structure/light_construct/small{ - dir = 8 - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/structure/window/reinforced, -/obj/item/poster/random_official, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"amX" = ( -/obj/structure/table/reinforced, /obj/item/folder, /obj/item/folder, /obj/machinery/door/window/westleft{ @@ -6290,25 +6149,25 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/fore) -"amY" = ( +"amX" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced, /obj/item/stock_parts/cell/crap, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/fore) -"amZ" = ( +"amY" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced, /obj/item/electronics/firealarm, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/fore) -"ana" = ( +"amZ" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, -/area/maintenance/port/fore) -"anb" = ( +/area/maintenance/port) +"ana" = ( /obj/structure/rack, /obj/item/clothing/under/rank/mailman, /obj/item/clothing/under/rank/vice{ @@ -6318,39 +6177,39 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/fore) -"anc" = ( +"anb" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" }, /turf/open/floor/plating, /area/maintenance/port/fore) -"and" = ( +"anc" = ( /obj/machinery/door/airlock/security/glass{ name = "N2O Storage"; req_access_txt = "3" }, /turf/open/floor/plasteel/dark, /area/maintenance/port/fore) -"ane" = ( +"and" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/bodycontainer/morgue, /turf/open/floor/plasteel/dark, /area/security/brig) -"anf" = ( +"ane" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/whitered/side{ dir = 8 }, /area/security/brig) -"ang" = ( +"anf" = ( /obj/structure/bed/roller, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white, /area/security/brig) -"anh" = ( +"ang" = ( /obj/machinery/door/window/westleft{ base_state = "right"; dir = 4; @@ -6362,13 +6221,13 @@ dir = 4 }, /area/security/brig) -"ani" = ( +"anh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/red/corner{ dir = 1 }, /area/security/brig) -"anj" = ( +"ani" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -6377,7 +6236,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"ank" = ( +"anj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light{ dir = 4 @@ -6392,7 +6251,7 @@ dir = 4 }, /area/security/brig) -"anl" = ( +"ank" = ( /obj/structure/table, /obj/item/storage/box/evidence, /obj/item/storage/box/evidence, @@ -6402,11 +6261,11 @@ dir = 6 }, /area/security/warden) -"anm" = ( +"anl" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/vault, /area/security/warden) -"ann" = ( +"anm" = ( /obj/structure/filingcabinet/security{ pixel_x = 4 }, @@ -6414,7 +6273,7 @@ dir = 10 }, /area/security/warden) -"ano" = ( +"ann" = ( /obj/structure/rack, /obj/item/storage/box/chemimp{ pixel_x = 4; @@ -6431,7 +6290,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/security/warden) -"anp" = ( +"ano" = ( /obj/structure/rack, /obj/item/storage/box/handcuffs, /obj/item/storage/box/flashbangs{ @@ -6441,7 +6300,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/security/warden) -"anq" = ( +"anp" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -6450,7 +6309,7 @@ }, /turf/open/floor/plasteel, /area/security/warden) -"anr" = ( +"anq" = ( /obj/structure/rack, /obj/item/storage/box/firingpins{ pixel_x = 3; @@ -6460,25 +6319,25 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/security/warden) -"ans" = ( +"anr" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /turf/open/floor/plating, /area/security/warden) -"ant" = ( +"ans" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"anu" = ( +"ant" = ( /obj/structure/table, /obj/machinery/recharger{ pixel_y = 4 }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"anv" = ( +"anu" = ( /obj/machinery/vending/security, /obj/machinery/firealarm{ dir = 4; @@ -6486,7 +6345,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"anw" = ( +"anv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/camera{ c_tag = "Security - Office - Port"; @@ -6497,30 +6356,14 @@ dir = 8 }, /area/security/main) -"anx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/main) -"any" = ( +"anw" = ( /obj/structure/table, /obj/machinery/recharger{ pixel_y = 4 }, /turf/open/floor/plasteel, /area/security/main) -"anz" = ( -/turf/open/floor/plasteel/red, -/area/security/main) -"anA" = ( +"anx" = ( /obj/structure/table/reinforced, /obj/item/folder/red{ pixel_x = 3 @@ -6531,28 +6374,17 @@ }, /turf/open/floor/plasteel, /area/security/main) -"anB" = ( +"any" = ( /obj/structure/table/reinforced, /obj/item/paper, /turf/open/floor/plasteel, /area/security/main) -"anC" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/device/taperecorder{ - pixel_x = -4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"anD" = ( +"anA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/red, /area/security/main) -"anE" = ( +"anB" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -6560,17 +6392,7 @@ }, /turf/open/floor/plasteel, /area/security/main) -"anF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/main) -"anG" = ( +"anC" = ( /obj/machinery/power/apc/highcap/five_k{ dir = 4; name = "Security Office APC"; @@ -6582,7 +6404,7 @@ dir = 4 }, /area/security/main) -"anH" = ( +"anD" = ( /obj/machinery/door/airlock/maintenance{ name = "Security Maintenance"; req_access_txt = "0"; @@ -6595,7 +6417,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/fore) -"anI" = ( +"anE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; @@ -6603,7 +6425,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"anJ" = ( +"anF" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -6615,17 +6437,11 @@ dir = 8 }, /area/crew_quarters/fitness/recreation) -"anK" = ( +"anG" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"anL" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/fitness/recreation) -"anM" = ( +"anH" = ( /obj/structure/chair{ dir = 1 }, @@ -6634,13 +6450,13 @@ dir = 4 }, /area/crew_quarters/fitness/recreation) -"anN" = ( +"anI" = ( /obj/structure/chair{ dir = 1 }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"anO" = ( +"anJ" = ( /obj/structure/chair{ dir = 1 }, @@ -6651,7 +6467,7 @@ dir = 1 }, /area/crew_quarters/fitness/recreation) -"anP" = ( +"anK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -6659,51 +6475,51 @@ dir = 1 }, /area/crew_quarters/fitness/recreation) -"anQ" = ( +"anL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"anR" = ( +"anM" = ( /obj/machinery/space_heater, /turf/open/floor/plating, -/area/maintenance/starboard/fore) -"anS" = ( +/area/maintenance/starboard) +"anN" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"anT" = ( +"anO" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) -"anU" = ( +"anP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) -"anV" = ( +"anQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) -"anW" = ( +"anR" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) -"anX" = ( +"anS" = ( /turf/open/floor/plating/airless, /area/space/nearstation) -"anY" = ( +"anT" = ( /obj/structure/lattice, /obj/structure/grille, /turf/open/space, /area/space/nearstation) -"anZ" = ( +"anU" = ( /obj/structure/disposalpipe/trunk{ dir = 4 }, @@ -6719,7 +6535,7 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"aoa" = ( +"anV" = ( /obj/machinery/conveyor{ dir = 8; id = "garbage" @@ -6729,7 +6545,7 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"aob" = ( +"anW" = ( /obj/machinery/conveyor{ dir = 8; id = "garbage" @@ -6737,7 +6553,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plating, /area/maintenance/disposal) -"aoc" = ( +"anX" = ( /obj/machinery/conveyor{ dir = 8; id = "garbage" @@ -6745,7 +6561,7 @@ /obj/machinery/recycler, /turf/open/floor/plating, /area/maintenance/disposal) -"aod" = ( +"anY" = ( /obj/machinery/door/window/eastright{ dir = 4; name = "Danger: Conveyor Access"; @@ -6757,60 +6573,49 @@ }, /turf/open/floor/plating, /area/maintenance/disposal) -"aoe" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "Disposal APC"; - areastring = "/area/maintenance/disposal"; - pixel_y = -24 +"anZ" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/light_switch{ + pixel_x = 25 }, -/obj/structure/cable/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 8 +/obj/machinery/light/small{ + dir = 4 }, /turf/open/floor/plating, /area/maintenance/disposal) -"aof" = ( +"aoa" = ( /turf/open/floor/plating{ icon_state = "panelscorched" }, -/area/maintenance/port/fore) -"aog" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, +/area/maintenance/port) +"aob" = ( /turf/open/floor/plating, -/area/maintenance/port/fore) -"aoh" = ( -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aoi" = ( +/area/maintenance/port) +"aoc" = ( /obj/structure/chair{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aoj" = ( +"aod" = ( /obj/structure/chair{ dir = 8 }, /turf/open/floor/plating, -/area/maintenance/port/fore) -"aok" = ( +/area/maintenance/port) +"aoe" = ( /obj/machinery/space_heater, /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating, -/area/maintenance/port/fore) -"aol" = ( +/area/maintenance/port) +"aof" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, -/area/maintenance/port/fore) -"aom" = ( +/area/maintenance/port) +"aog" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -6818,13 +6623,13 @@ icon_state = "panelscorched" }, /area/maintenance/port/fore) -"aon" = ( +"aoh" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aoo" = ( +"aoi" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -6832,7 +6637,7 @@ /obj/item/tank/internals/air, /turf/open/floor/plating, /area/maintenance/port/fore) -"aop" = ( +"aoj" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -6844,7 +6649,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aoq" = ( +"aok" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -6859,7 +6664,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aor" = ( +"aol" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -6874,7 +6679,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aos" = ( +"aom" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -6891,7 +6696,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aot" = ( +"aon" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -6903,7 +6708,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aou" = ( +"aoo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -6918,7 +6723,7 @@ dir = 10 }, /area/security/brig) -"aov" = ( +"aop" = ( /obj/structure/bed, /obj/item/bedsheet, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -6933,7 +6738,7 @@ /obj/machinery/iv_drip, /turf/open/floor/plasteel/whitered/side, /area/security/brig) -"aow" = ( +"aoq" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -6963,7 +6768,7 @@ dir = 6 }, /area/security/brig) -"aox" = ( +"aor" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, @@ -6977,7 +6782,7 @@ dir = 1 }, /area/security/brig) -"aoy" = ( +"aos" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -6989,7 +6794,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"aoz" = ( +"aot" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/firealarm{ dir = 4; @@ -6999,7 +6804,7 @@ dir = 4 }, /area/security/brig) -"aoA" = ( +"aou" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/airlock/security{ @@ -7011,14 +6816,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/security/warden) -"aoB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/warden) -"aoC" = ( +"aow" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -7034,42 +6832,27 @@ /obj/structure/cable/yellow{ icon_state = "1-4" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/security/warden) -"aoD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" +"aox" = ( +/obj/structure/grille, +/turf/open/floor/plating{ + icon_state = "platingdmg1" }, -/turf/open/floor/plating, -/area/security/warden) -"aoE" = ( -/obj/machinery/light{ - dir = 8 +/area/maintenance/port/fore) +"aoy" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 28 }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/power/apc/highcap/five_k{ - dir = 8; - name = "Brig Control APC"; - areastring = "/area/security/warden"; - pixel_x = -26 - }, -/obj/structure/cable/yellow, +/obj/structure/closet/secure_closet/warden, +/obj/item/gun/energy/laser, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"aoF" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aoG" = ( +"aoz" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -7077,43 +6860,50 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"aoH" = ( +"aoA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/warden) +"aoB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/red/side{ dir = 8 }, /area/security/main) -"aoI" = ( +"aoC" = ( /obj/structure/table, /obj/item/restraints/handcuffs, /obj/item/device/radio/off, /turf/open/floor/plasteel, /area/security/main) -"aoJ" = ( +"aoD" = ( /obj/effect/landmark/start/security_officer, /turf/open/floor/plasteel/red, /area/security/main) -"aoK" = ( +"aoE" = ( /obj/machinery/holopad, /obj/structure/disposalpipe/segment{ dir = 6 }, /turf/open/floor/plasteel/red, /area/security/main) -"aoL" = ( +"aoF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plasteel/red, /area/security/main) -"aoM" = ( +"aoG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment{ dir = 9 }, /turf/open/floor/plasteel/red, /area/security/main) -"aoN" = ( +"aoH" = ( /obj/structure/table, /obj/item/folder/red, /obj/item/book/manual/wiki/security_space_law{ @@ -7123,12 +6913,12 @@ /obj/item/clothing/mask/gas/sechailer, /turf/open/floor/plasteel, /area/security/main) -"aoO" = ( +"aoI" = ( /turf/open/floor/plasteel/red/side{ dir = 4 }, /area/security/main) -"aoP" = ( +"aoJ" = ( /obj/machinery/door/window/eastright{ base_state = "left"; dir = 8; @@ -7139,7 +6929,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/security/main) -"aoQ" = ( +"aoK" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; dir = 8; @@ -7152,7 +6942,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/security/main) -"aoR" = ( +"aoL" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -7167,7 +6957,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aoS" = ( +"aoM" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -7179,7 +6969,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aoT" = ( +"aoN" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -7193,47 +6983,29 @@ icon_state = "platingdmg2" }, /area/maintenance/fore) -"aoU" = ( +"aoO" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "Disposal APC"; + areastring = "/area/maintenance/disposal"; + pixel_y = -24 + }, +/obj/structure/cable/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aoP" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, /turf/open/floor/plating, /area/maintenance/fore) -"aoV" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aoW" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/fore) -"aoX" = ( +"aoQ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -7245,7 +7017,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aoY" = ( +"aoR" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -7256,16 +7028,7 @@ icon_state = "platingdmg2" }, /area/maintenance/fore) -"aoZ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"apa" = ( +"aoS" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "0"; req_one_access_txt = "1;4;38;12" @@ -7278,7 +7041,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"apb" = ( +"aoT" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -7292,7 +7055,7 @@ dir = 8 }, /area/crew_quarters/fitness/recreation) -"apc" = ( +"aoU" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -7303,7 +7066,7 @@ dir = 8 }, /area/crew_quarters/fitness/recreation) -"apd" = ( +"aoV" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -7314,7 +7077,7 @@ dir = 8 }, /area/crew_quarters/fitness/recreation) -"ape" = ( +"aoW" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -7325,7 +7088,7 @@ dir = 8 }, /area/crew_quarters/fitness/recreation) -"apf" = ( +"aoX" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -7338,7 +7101,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"apg" = ( +"aoY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -7347,7 +7110,7 @@ dir = 2 }, /area/crew_quarters/fitness/recreation) -"aph" = ( +"aoZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -7355,7 +7118,7 @@ dir = 2 }, /area/crew_quarters/fitness/recreation) -"api" = ( +"apa" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -7363,14 +7126,14 @@ dir = 2 }, /area/crew_quarters/fitness/recreation) -"apj" = ( +"apb" = ( /obj/structure/grille, /turf/open/floor/plating, -/area/maintenance/starboard/fore) -"apk" = ( +/area/maintenance/starboard) +"apc" = ( /turf/open/floor/plating, -/area/maintenance/starboard/fore) -"apl" = ( +/area/maintenance/starboard) +"apd" = ( /obj/structure/table, /obj/item/tank/internals/emergency_oxygen{ pixel_x = -8 @@ -7390,7 +7153,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"apm" = ( +"ape" = ( /obj/structure/rack, /obj/item/storage/belt{ desc = "Can hold quite a lot of stuff."; @@ -7405,13 +7168,12 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"apn" = ( -/obj/structure/easel, +"apf" = ( /turf/open/floor/plating{ icon_state = "platingdmg3" }, -/area/maintenance/starboard/fore) -"apo" = ( +/area/maintenance/starboard) +"apg" = ( /obj/structure/closet, /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/item/reagent_containers/food/drinks/beer{ @@ -7421,14 +7183,14 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"app" = ( +"aph" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ icon_state = "0-4" }, /turf/open/floor/plating, /area/engine/gravity_generator) -"apq" = ( +"api" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ @@ -7439,14 +7201,14 @@ }, /turf/open/floor/plating, /area/engine/gravity_generator) -"apr" = ( +"apj" = ( /obj/machinery/door/airlock/command/glass{ name = "Gravity Generator Area"; req_access_txt = "19; 61" }, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) -"aps" = ( +"apk" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ @@ -7454,7 +7216,7 @@ }, /turf/open/floor/plating, /area/engine/gravity_generator) -"apt" = ( +"apl" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ icon_state = "0-2" @@ -7464,10 +7226,10 @@ }, /turf/open/floor/plating, /area/engine/gravity_generator) -"apu" = ( +"apm" = ( /turf/closed/wall, /area/maintenance/solars/starboard/fore) -"apv" = ( +"apn" = ( /obj/machinery/power/solar_control{ id = "forestarboard"; name = "Starboard Bow Solar Control"; @@ -7478,7 +7240,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"apw" = ( +"apo" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -7490,18 +7252,18 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"apx" = ( +"app" = ( /obj/structure/sign/warning/vacuum/external{ pixel_x = 32 }, /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"apy" = ( +"apq" = ( /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating/airless, /area/space/nearstation) -"apz" = ( +"apr" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=1"; freq = 1400; @@ -7522,7 +7284,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/disposal) -"apA" = ( +"aps" = ( /obj/machinery/door/airlock/maintenance{ name = "Disposal Conveyor Access"; req_access_txt = "12" @@ -7530,13 +7292,13 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/disposal) -"apB" = ( +"apt" = ( /obj/structure/sign/warning/securearea{ name = "\improper STAY CLEAR HEAVY MACHINERY" }, /turf/closed/wall, /area/maintenance/disposal) -"apC" = ( +"apu" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, @@ -7546,7 +7308,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/port/fore) -"apD" = ( +"apv" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; req_access_txt = "12" @@ -7556,19 +7318,26 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"apE" = ( +"apw" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/port/fore) -"apF" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" +"apx" = ( +/obj/structure/rack, +/obj/item/circuitboard/computer/secure_data{ + pixel_x = -2; + pixel_y = 2 }, -/area/maintenance/port/fore) -"apG" = ( +/obj/item/circuitboard/computer/security{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"apy" = ( /obj/structure/light_construct/small{ dir = 4 }, @@ -7577,15 +7346,22 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"apH" = ( +"apz" = ( /obj/item/cigbutt, /turf/open/floor/plating, -/area/maintenance/port/fore) -"apI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"apJ" = ( +/area/maintenance/port) +"apA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/plaques/kiddie/library{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"apB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -7597,7 +7373,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"apK" = ( +"apC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -7609,13 +7385,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"apL" = ( -/obj/structure/grille, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"apM" = ( +"apD" = ( /obj/item/storage/box/lights/mixed, /obj/item/device/flashlight{ pixel_x = 1; @@ -7626,7 +7396,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"apN" = ( +"apE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/extinguisher_cabinet{ pixel_x = -27 @@ -7635,20 +7405,27 @@ dir = 1 }, /area/security/brig) -"apO" = ( +"apF" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/security/brig) -"apP" = ( +"apG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/corner{ dir = 4 }, /area/security/brig) -"apQ" = ( +"apH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/warden) +"apI" = ( /obj/machinery/computer/prisoner{ dir = 4 }, @@ -7660,14 +7437,14 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"apR" = ( +"apJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "2-8" }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"apS" = ( +"apK" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -7676,7 +7453,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"apT" = ( +"apL" = ( /obj/machinery/requests_console{ department = "Security"; departmentType = 5; @@ -7704,7 +7481,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"apU" = ( +"apM" = ( /obj/structure/table, /obj/machinery/recharger, /obj/machinery/airalarm{ @@ -7712,32 +7489,19 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"apV" = ( +"apN" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"apW" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 28 - }, -/obj/structure/closet/secure_closet/warden, -/obj/item/gun/energy/laser, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"apX" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"apY" = ( +"apO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"apZ" = ( +"apQ" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = 32 }, @@ -7749,7 +7513,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"aqa" = ( +"apR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/reagent_dispensers/peppertank{ pixel_x = -32 @@ -7761,64 +7525,43 @@ dir = 8 }, /area/security/main) -"aqb" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/main) -"aqc" = ( +"apS" = ( /obj/structure/table, /obj/item/folder/red, /obj/item/storage/fancy/cigarettes, /obj/item/clothing/mask/gas/sechailer, /turf/open/floor/plasteel, /area/security/main) -"aqd" = ( +"apT" = ( /obj/structure/table, /obj/item/folder/red, /obj/item/restraints/handcuffs, /turf/open/floor/plasteel, /area/security/main) -"aqe" = ( +"apU" = ( /obj/structure/table, /obj/item/folder/red, /obj/item/storage/secure/briefcase, /turf/open/floor/plasteel, /area/security/main) -"aqf" = ( +"apV" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/red, /area/security/main) -"aqg" = ( +"apW" = ( /obj/structure/table, /obj/item/folder/red, /obj/item/device/assembly/flash/handheld, /turf/open/floor/plasteel, /area/security/main) -"aqh" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/syndicatebomb/training, -/turf/open/floor/plasteel, -/area/security/main) -"aqi" = ( +"apY" = ( /obj/structure/table, /obj/item/folder/red, /obj/item/pen, /obj/item/storage/box/donkpockets, /turf/open/floor/plasteel, /area/security/main) -"aqj" = ( +"apZ" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -7832,10 +7575,10 @@ dir = 4 }, /area/security/main) -"aqk" = ( +"aqa" = ( /turf/closed/wall/r_wall, /area/security/main) -"aql" = ( +"aqb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -7843,11 +7586,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/fore) -"aqm" = ( +"aqc" = ( /obj/structure/closet/lasertag/red, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"aqn" = ( +"aqd" = ( /obj/structure/rack, /obj/item/clothing/under/color/red, /obj/item/clothing/ears/earmuffs, @@ -7855,22 +7598,11 @@ /obj/item/clothing/head/soft/red, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"aqo" = ( -/obj/structure/rack, -/obj/item/clothing/under/color/blue, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/neck/tie/blue, -/obj/item/clothing/head/soft/blue, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/vault, -/area/crew_quarters/fitness/recreation) -"aqp" = ( +"aqf" = ( /obj/structure/closet/lasertag/blue, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"aqq" = ( +"aqg" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -7878,7 +7610,7 @@ dir = 8 }, /area/crew_quarters/fitness/recreation) -"aqr" = ( +"aqh" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -7888,7 +7620,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"aqs" = ( +"aqi" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment{ dir = 4 @@ -7897,7 +7629,7 @@ dir = 2 }, /area/crew_quarters/fitness/recreation) -"aqt" = ( +"aqj" = ( /obj/machinery/disposal/bin, /obj/machinery/light_switch{ pixel_y = -26 @@ -7911,7 +7643,7 @@ }, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"aqu" = ( +"aqk" = ( /obj/machinery/vending/coffee, /obj/item/device/radio/intercom{ freerange = 0; @@ -7921,49 +7653,46 @@ }, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"aqv" = ( +"aql" = ( /obj/machinery/light, /obj/machinery/vending/cola/random, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"aqw" = ( +"aqm" = ( /obj/machinery/vending/cigarette, /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, /turf/open/floor/plasteel/vault, /area/crew_quarters/fitness/recreation) -"aqx" = ( +"aqn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/closed/wall, /area/crew_quarters/fitness/recreation) -"aqy" = ( +"aqo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall, /area/crew_quarters/fitness/recreation) -"aqz" = ( +"aqp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, /turf/closed/wall, /area/crew_quarters/fitness/recreation) -"aqA" = ( +"aqq" = ( /obj/item/cigbutt, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, /turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aqB" = ( +/area/maintenance/starboard) +"aqr" = ( /turf/open/floor/plating{ icon_state = "platingdmg2" }, -/area/maintenance/starboard/fore) -"aqC" = ( +/area/maintenance/starboard) +"aqs" = ( /obj/item/device/mmi{ name = "man-machine interface" }, @@ -7971,7 +7700,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aqD" = ( +"aqt" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -7990,7 +7719,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"aqE" = ( +"aqu" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -8005,7 +7734,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"aqF" = ( +"aqv" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -8017,7 +7746,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"aqG" = ( +"aqw" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -8029,7 +7758,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"aqH" = ( +"aqx" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -8042,7 +7771,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"aqI" = ( +"aqy" = ( /obj/structure/chair/stool{ pixel_y = 8 }, @@ -8052,7 +7781,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"aqJ" = ( +"aqz" = ( /obj/structure/cable{ icon_state = "1-4" }, @@ -8060,7 +7789,7 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"aqK" = ( +"aqA" = ( /obj/structure/cable{ icon_state = "0-8" }, @@ -8076,25 +7805,25 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"aqL" = ( +"aqB" = ( /obj/structure/lattice, /obj/structure/grille/broken, /turf/open/space, /area/space/nearstation) -"aqM" = ( +"aqC" = ( /obj/machinery/space_heater, /obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqN" = ( +"aqD" = ( /obj/machinery/space_heater, /turf/open/floor/plating{ icon_state = "platingdmg2" }, /area/maintenance/port/fore) -"aqO" = ( +"aqE" = ( /obj/machinery/door/poddoor/shutters{ id = "supplybridge" }, @@ -8103,7 +7832,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqP" = ( +"aqF" = ( /obj/machinery/door/poddoor/shutters{ id = "supplybridge" }, @@ -8112,7 +7841,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqQ" = ( +"aqG" = ( /obj/machinery/door/poddoor/shutters{ id = "supplybridge" }, @@ -8121,7 +7850,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqR" = ( +"aqH" = ( /obj/machinery/space_heater, /obj/structure/sign/warning/vacuum/external{ pixel_y = 32 @@ -8130,7 +7859,7 @@ icon_state = "platingdmg1" }, /area/maintenance/port/fore) -"aqS" = ( +"aqI" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light/small{ dir = 8 @@ -8140,34 +7869,31 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqT" = ( +"aqJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqU" = ( +"aqK" = ( /obj/structure/reagent_dispensers/fueltank, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, /turf/open/floor/plating, -/area/maintenance/port/fore) -"aqV" = ( +/area/maintenance/port) +"aqL" = ( /obj/structure/rack, /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/item/storage/toolbox/emergency, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqW" = ( +"aqM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqX" = ( +"aqN" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -8177,22 +7903,22 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/port/fore) -"aqY" = ( +"aqO" = ( /obj/machinery/space_heater, /turf/open/floor/plating, -/area/maintenance/port/fore) -"aqZ" = ( +/area/maintenance/port) +"aqP" = ( /obj/structure/light_construct/small, /obj/item/bot_assembly/floorbot{ build_step = 1 }, /turf/open/floor/plating, /area/maintenance/port/fore) -"ara" = ( +"aqQ" = ( /obj/item/vending_refill/cigarette, /turf/open/floor/plating, /area/maintenance/port/fore) -"arb" = ( +"aqR" = ( /obj/structure/chair{ dir = 8 }, @@ -8200,17 +7926,17 @@ icon_state = "panelscorched" }, /area/maintenance/port/fore) -"arc" = ( +"aqS" = ( /obj/structure/closet/crate, /obj/item/clothing/gloves/color/fyellow, /turf/open/floor/plating, /area/maintenance/port/fore) -"ard" = ( +"aqT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/port/fore) -"are" = ( +"aqU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -8223,16 +7949,12 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/port/fore) -"arf" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"arg" = ( +"aqV" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/extinguisher, /turf/open/floor/plating, /area/maintenance/port/fore) -"arh" = ( +"aqW" = ( /obj/structure/closet/crate, /obj/item/restraints/handcuffs, /obj/item/bodybag, @@ -8243,7 +7965,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"ari" = ( +"aqX" = ( /obj/structure/chair, /obj/item/restraints/handcuffs, /obj/effect/decal/remains/human, @@ -8251,25 +7973,18 @@ /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plating, /area/maintenance/port/fore) -"arj" = ( +"aqY" = ( /obj/machinery/computer/security{ name = "Labor Camp Monitoring"; network = list("Labor") }, /turf/open/floor/plasteel/dark, /area/security/brig) -"ark" = ( +"aqZ" = ( /obj/machinery/computer/shuttle/labor, /turf/open/floor/plasteel/dark, /area/security/brig) -"arl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/red/corner{ - dir = 1 - }, -/area/security/brig) -"arm" = ( +"ara" = ( /obj/machinery/computer/secure_data{ dir = 4 }, @@ -8282,7 +7997,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"arn" = ( +"arb" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -8294,7 +8009,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"aro" = ( +"arc" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -8306,27 +8021,20 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"arp" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"arq" = ( +"ard" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"arr" = ( +"are" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"ars" = ( +"arf" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -8339,7 +8047,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"art" = ( +"arg" = ( /obj/structure/chair/office/dark{ dir = 4 }, @@ -8349,29 +8057,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"aru" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Outer Window"; - req_access_txt = "0" - }, -/obj/machinery/door/window/brigdoor{ - dir = 8; - name = "Brig Control Desk"; - req_access_txt = "3" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/item/poster/random_official, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"arv" = ( +"ari" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ @@ -8379,16 +8065,16 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"arw" = ( +"arj" = ( /obj/structure/closet/secure_closet/security/sec, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"arx" = ( +"ark" = ( /obj/machinery/newscaster/security_unit, /turf/closed/wall, /area/security/warden) -"ary" = ( +"arl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -8397,7 +8083,7 @@ dir = 8 }, /area/security/main) -"arz" = ( +"arm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -8409,7 +8095,7 @@ dir = 10 }, /area/security/main) -"arA" = ( +"arn" = ( /obj/structure/chair{ dir = 1 }, @@ -8422,7 +8108,7 @@ /obj/effect/landmark/start/security_officer, /turf/open/floor/plasteel/red/side, /area/security/main) -"arB" = ( +"aro" = ( /obj/structure/chair{ dir = 1 }, @@ -8435,7 +8121,7 @@ /obj/effect/landmark/start/security_officer, /turf/open/floor/plasteel/red/side, /area/security/main) -"arC" = ( +"arp" = ( /obj/structure/chair{ dir = 1 }, @@ -8445,14 +8131,14 @@ /obj/effect/landmark/start/security_officer, /turf/open/floor/plasteel/red/side, /area/security/main) -"arD" = ( +"arq" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/red, /area/security/main) -"arE" = ( +"arr" = ( /obj/structure/chair{ dir = 1 }, @@ -8462,7 +8148,7 @@ /obj/effect/landmark/start/security_officer, /turf/open/floor/plasteel/red/side, /area/security/main) -"arF" = ( +"ars" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -8471,7 +8157,7 @@ dir = 6 }, /area/security/main) -"arG" = ( +"art" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -8479,7 +8165,7 @@ dir = 4 }, /area/security/main) -"arH" = ( +"aru" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ name = "Interrogation Monitoring"; @@ -8489,16 +8175,16 @@ }, /turf/open/floor/plasteel/grimy, /area/security/main) -"arI" = ( +"arv" = ( /turf/open/floor/plasteel/grimy, /area/security/main) -"arJ" = ( +"arw" = ( /obj/machinery/light/small{ dir = 1 }, /turf/open/floor/plasteel/grimy, /area/security/main) -"arK" = ( +"arx" = ( /obj/item/phone{ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; pixel_x = -3; @@ -8515,25 +8201,25 @@ }, /turf/open/floor/plasteel/grimy, /area/security/main) -"arL" = ( +"ary" = ( /obj/structure/rack, /obj/item/clothing/suit/hazardvest, /turf/open/floor/plating, /area/maintenance/fore) -"arM" = ( +"arz" = ( /obj/machinery/space_heater, /turf/open/floor/plating{ icon_state = "platingdmg1" }, /area/maintenance/fore) -"arN" = ( +"arA" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/maintenance/fore) -"arO" = ( +"arB" = ( /turf/closed/wall, /area/crew_quarters/dorms) -"arP" = ( +"arC" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Recreation Area"; @@ -8544,7 +8230,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"arQ" = ( +"arD" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -8552,7 +8238,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/crew_quarters/dorms) -"arR" = ( +"arE" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Recreation Area"; @@ -8563,20 +8249,7 @@ dir = 4 }, /area/crew_quarters/dorms) -"arS" = ( -/obj/structure/closet, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arT" = ( +"arG" = ( /obj/structure/closet, /obj/item/storage/box/lights/mixed, /obj/effect/spawner/lootdrop/maintenance{ @@ -8587,37 +8260,37 @@ icon_state = "platingdmg3" }, /area/maintenance/starboard/fore) -"arU" = ( +"arH" = ( /obj/structure/rack, /obj/item/extinguisher, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"arV" = ( +"arI" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/costume, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"arW" = ( +"arJ" = ( /obj/structure/rack, /obj/item/clothing/suit/poncho, /obj/item/clothing/head/sombrero, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"arX" = ( +"arK" = ( /obj/effect/landmark/blobstart, /turf/open/floor/plating{ icon_state = "panelscorched" }, /area/maintenance/starboard/fore) -"arY" = ( +"arL" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"arZ" = ( +"arM" = ( /obj/structure/rack, /obj/item/book/manual/wiki/engineering_guide{ pixel_x = 3; @@ -8627,13 +8300,13 @@ /obj/item/storage/box/lights/mixed, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"asa" = ( +"arN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"asb" = ( +"arO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -8643,7 +8316,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"asc" = ( +"arP" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -8655,7 +8328,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"asd" = ( +"arQ" = ( /obj/machinery/airalarm{ dir = 1; pixel_y = -22 @@ -8669,7 +8342,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"ase" = ( +"arR" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -8679,7 +8352,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"asf" = ( +"arS" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 28 @@ -8693,7 +8366,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"asg" = ( +"arT" = ( /obj/machinery/power/apc{ dir = 8; name = "Starboard Bow Solar APC"; @@ -8708,7 +8381,7 @@ icon_state = "platingdmg1" }, /area/maintenance/solars/starboard/fore) -"ash" = ( +"arU" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -8721,14 +8394,14 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"asi" = ( +"arV" = ( /obj/structure/cable/yellow{ icon_state = "0-8" }, /obj/machinery/power/smes, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"asj" = ( +"arW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -8741,7 +8414,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"ask" = ( +"arX" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -8754,7 +8427,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"asl" = ( +"arY" = ( /obj/machinery/door/airlock/public/glass{ name = "space-bridge access" }, @@ -8772,7 +8445,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"asm" = ( +"arZ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -8781,13 +8454,13 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"asn" = ( +"asa" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plating, -/area/maintenance/port/fore) -"aso" = ( +/area/maintenance/port) +"asb" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -8796,7 +8469,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"asp" = ( +"asc" = ( /obj/machinery/door/airlock/public/glass{ name = "space-bridge access" }, @@ -8814,7 +8487,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"asq" = ( +"asd" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -8828,7 +8501,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"asr" = ( +"ase" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -8840,7 +8513,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"ass" = ( +"asf" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Cargo Bay Bridge Access"; req_access_txt = "0"; @@ -8854,7 +8527,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"ast" = ( +"asg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -8867,7 +8540,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"asu" = ( +"ash" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -8876,21 +8549,21 @@ icon_state = "platingdmg3" }, /area/maintenance/port/fore) -"asv" = ( +"asi" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/fore) -"asw" = ( +"asj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plating, /area/maintenance/port/fore) -"asx" = ( +"ask" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -8901,7 +8574,7 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plating, /area/maintenance/port/fore) -"asy" = ( +"asl" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; req_access_txt = "12" @@ -8909,7 +8582,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port/fore) -"asz" = ( +"asm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/maintenance{ name = "Brig Maintenance"; @@ -8922,7 +8595,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"asA" = ( +"asn" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -8942,13 +8615,13 @@ /obj/item/pen, /turf/open/floor/plasteel/dark, /area/security/brig) -"asB" = ( +"aso" = ( /obj/structure/chair/office/dark{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/security/brig) -"asC" = ( +"asp" = ( /obj/machinery/computer/security{ dir = 4 }, @@ -8960,7 +8633,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asD" = ( +"asq" = ( /obj/effect/landmark/start/warden, /obj/structure/chair/office/dark, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -8975,7 +8648,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asE" = ( +"asr" = ( /obj/machinery/computer/crew{ dir = 8 }, @@ -8984,7 +8657,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asF" = ( +"ass" = ( /obj/machinery/newscaster/security_unit{ pixel_y = -30 }, @@ -8997,7 +8670,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asG" = ( +"ast" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -9009,7 +8682,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asH" = ( +"asu" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "2-4" @@ -9019,7 +8692,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asI" = ( +"asv" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -9034,7 +8707,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asJ" = ( +"asw" = ( /obj/structure/table, /obj/machinery/button/door{ id = "Prison Gate"; @@ -9069,7 +8742,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asK" = ( +"asx" = ( /obj/structure/table, /obj/machinery/recharger{ pixel_y = 4 @@ -9083,7 +8756,14 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asL" = ( +"asy" = ( +/obj/vehicle/ridden/secway, +/obj/item/key/security, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/main) +"asz" = ( /obj/structure/table, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -9112,7 +8792,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"asM" = ( +"asA" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -9122,14 +8802,13 @@ }, /turf/open/floor/plating, /area/security/warden) -"asN" = ( -/obj/vehicle/ridden/secway, -/obj/item/key/security, -/turf/open/floor/plasteel/red/side{ - dir = 10 +"asB" = ( +/obj/machinery/light/small{ + dir = 8 }, -/area/security/main) -"asO" = ( +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"asC" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -9138,7 +8817,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/main) -"asP" = ( +"asD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -9150,7 +8829,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/main) -"asQ" = ( +"asE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -9166,7 +8845,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/main) -"asR" = ( +"asF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -9178,7 +8857,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/main) -"asS" = ( +"asG" = ( /obj/machinery/light, /obj/machinery/computer/security/telescreen/entertainment{ pixel_y = -32 @@ -9191,7 +8870,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/main) -"asT" = ( +"asH" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -9200,13 +8879,13 @@ }, /turf/open/floor/plasteel/red/side, /area/security/main) -"asU" = ( +"asI" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/red/side, /area/security/main) -"asV" = ( +"asJ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -9216,24 +8895,24 @@ }, /turf/open/floor/plasteel/red/side, /area/security/main) -"asW" = ( +"asK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "2-8" }, /turf/open/floor/plasteel/red/side, /area/security/main) -"asX" = ( +"asL" = ( /obj/machinery/rnd/protolathe/department/security, /turf/open/floor/plasteel/red/side{ dir = 6 }, /area/security/main) -"asY" = ( +"asM" = ( /obj/structure/chair, /turf/open/floor/plasteel/grimy, /area/security/main) -"asZ" = ( +"asN" = ( /obj/structure/chair, /obj/machinery/computer/security/telescreen{ desc = "Used for watching proceedings in the interrogation room."; @@ -9245,7 +8924,7 @@ }, /turf/open/floor/plasteel/grimy, /area/security/main) -"ata" = ( +"asO" = ( /obj/item/paper_bin{ pixel_x = -3; pixel_y = 7 @@ -9262,7 +8941,7 @@ }, /turf/open/floor/plasteel/grimy, /area/security/main) -"atb" = ( +"asP" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, @@ -9275,7 +8954,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"atc" = ( +"asQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -9285,7 +8964,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"atd" = ( +"asR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -9294,13 +8973,13 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"ate" = ( +"asS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/open/floor/plating, /area/maintenance/fore) -"atf" = ( +"asT" = ( /obj/machinery/light/small{ dir = 1 }, @@ -9311,7 +8990,7 @@ /obj/item/lighter, /turf/open/floor/wood, /area/crew_quarters/dorms) -"atg" = ( +"asU" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/airalarm{ pixel_y = 23 @@ -9319,7 +8998,7 @@ /obj/item/clothing/under/assistantformal, /turf/open/floor/wood, /area/crew_quarters/dorms) -"ath" = ( +"asV" = ( /obj/structure/bed, /obj/item/bedsheet, /obj/machinery/button/door{ @@ -9336,13 +9015,13 @@ }, /turf/open/floor/wood, /area/crew_quarters/dorms) -"ati" = ( +"asW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/closed/wall, /area/crew_quarters/dorms) -"atj" = ( +"asX" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -9351,7 +9030,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"atk" = ( +"asY" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -9361,7 +9040,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"atl" = ( +"asZ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -9372,7 +9051,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"atm" = ( +"ata" = ( /obj/machinery/light/small{ dir = 1 }, @@ -9390,7 +9069,7 @@ /obj/item/bedsheet, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"atn" = ( +"atb" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/airalarm{ pixel_y = 23 @@ -9398,52 +9077,40 @@ /obj/item/clothing/under/suit_jacket/burgundy, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"ato" = ( +"atc" = ( /obj/structure/dresser, /obj/machinery/newscaster{ pixel_y = 32 }, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"atp" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"atq" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"atr" = ( +"atd" = ( /turf/open/floor/plating{ icon_state = "panelscorched" }, /area/maintenance/starboard/fore) -"ats" = ( +"ate" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"att" = ( -/turf/closed/wall, -/area/engine/gravity_generator) -"atu" = ( +"atf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/r_wall, /area/engine/gravity_generator) -"atv" = ( +"atg" = ( /obj/machinery/door/airlock/highsecurity{ name = "Gravity Generator Room"; req_access_txt = "19;23" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"atw" = ( +"ath" = ( /obj/machinery/power/smes{ charge = 5e+006 }, @@ -9453,7 +9120,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"atx" = ( +"ati" = ( /obj/structure/cable{ icon_state = "1-8" }, @@ -9465,13 +9132,13 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"aty" = ( +"atj" = ( /obj/machinery/space_heater, /turf/open/floor/plating{ icon_state = "panelscorched" }, -/area/maintenance/starboard/fore) -"atz" = ( +/area/maintenance/starboard) +"atk" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -9482,17 +9149,20 @@ }, /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) -"atA" = ( +"atl" = ( /obj/structure/sign/warning/electricshock, /turf/closed/wall, /area/maintenance/solars/starboard/fore) -"atB" = ( +"atm" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboard) +"atn" = ( /obj/machinery/door/airlock/external{ req_access_txt = "13" }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"atC" = ( +"ato" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/maintenance_hatch{ name = "Cargo Bay Bridge Access"; @@ -9504,7 +9174,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atD" = ( +"atp" = ( /obj/machinery/door/poddoor/shutters{ id = "supplybridge" }, @@ -9513,7 +9183,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atE" = ( +"atq" = ( /obj/machinery/door/poddoor/shutters{ id = "supplybridge" }, @@ -9522,7 +9192,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atF" = ( +"atr" = ( /obj/machinery/door/poddoor/shutters{ id = "supplybridge" }, @@ -9531,7 +9201,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atG" = ( +"ats" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -9540,7 +9210,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atH" = ( +"att" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -9549,7 +9219,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atI" = ( +"atu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -9558,17 +9228,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atK" = ( +"atv" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -9577,14 +9237,14 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atL" = ( +"atw" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, -/area/maintenance/port/fore) -"atM" = ( +/area/maintenance/port) +"atx" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -9596,7 +9256,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atN" = ( +"aty" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -9609,7 +9269,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atO" = ( +"atz" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -9624,7 +9284,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atP" = ( +"atA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -9639,7 +9299,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atQ" = ( +"atB" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -9655,25 +9315,17 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atR" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" +"atD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, +/obj/structure/grille, /turf/open/floor/plating, /area/maintenance/port/fore) -"atS" = ( +"atE" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -9685,20 +9337,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atT" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atU" = ( +"atG" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -9711,7 +9350,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atV" = ( +"atH" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -9726,7 +9365,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atW" = ( +"atI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -9741,17 +9380,17 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"atX" = ( +"atK" = ( /obj/machinery/computer/gulag_teleporter_computer{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/security/brig) -"atY" = ( +"atL" = ( /obj/machinery/gulag_teleporter, /turf/open/floor/plasteel/dark, /area/security/brig) -"atZ" = ( +"atM" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -9761,7 +9400,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/security/brig) -"aua" = ( +"atN" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -9769,11 +9408,515 @@ dir = 4 }, /area/security/brig) -"aub" = ( +"atO" = ( /obj/structure/sign/warning/pods, /turf/closed/wall/r_wall, /area/security/warden) +"atP" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"atQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/security/warden) +"atR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + req_access_txt = "0" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/warden) +"atS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Gear Room"; + req_access_txt = "0"; + req_one_access_txt = "1;4" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/warden) +"atT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/main) +"atU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_access_txt = "0"; + req_one_access_txt = "1;4" + }, +/turf/open/floor/plasteel, +/area/security/main) +"atV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_access_txt = "0"; + req_one_access_txt = "1;4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/main) +"atW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/main) +"atX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/main) +"atY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/security/main) +"atZ" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/security/main) +"aua" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/fore) +"aub" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore) "auc" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/fore) +"aud" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"aue" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"auf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"aug" = ( +/obj/machinery/door/airlock{ + id_tag = "Cabin3"; + name = "Cabin 6" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"auh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/dorms) +"aui" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"auj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/crew_quarters/dorms) +"auk" = ( +/obj/machinery/door/airlock{ + id_tag = "Cabin4"; + name = "Cabin 5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"aul" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"aum" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"aun" = ( +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"auo" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard/fore) +"aup" = ( +/obj/structure/closet/crate/hydroponics, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aur" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aus" = ( +/obj/structure/closet, +/obj/item/stock_parts/matter_bin, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aut" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Storage Room"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"auu" = ( +/obj/structure/closet/radiation, +/obj/structure/sign/warning/radiation/rad_area{ + dir = 1; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"auv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"auw" = ( +/obj/machinery/camera{ + c_tag = "Gravity Generator Foyer" + }, +/obj/structure/closet/radiation, +/obj/structure/sign/warning/radiation/rad_area{ + dir = 1; + pixel_y = 32 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"aux" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auy" = ( +/obj/item/stack/sheet/cardboard, +/obj/item/device/flashlight, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auz" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/sunglasses, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auA" = ( +/obj/structure/closet/crate/medical, +/obj/item/stack/cable_coil, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auB" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auC" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"auD" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auF" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port) +"auG" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"auH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auI" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auJ" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted/fulltile, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auK" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auL" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"auN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auU" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 8 + }, +/area/security/brig) +"auV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/plasteel, +/area/security/brig) +"auW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/security/brig) +"auX" = ( +/obj/machinery/photocopier, +/obj/machinery/power/apc{ + dir = 4; + name = "Head of Security's Office APC"; + areastring = "/area/crew_quarters/heads/hos"; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/button/door{ + id = "hosprivacy"; + name = "Privacy Shutters Control"; + pixel_x = 26; + pixel_y = -26 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault, +/area/crew_quarters/heads/hos) +"auY" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/security/brig) +"auZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/security/brig) +"ava" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/westleft{ base_state = "right"; @@ -9795,523 +9938,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) -"aud" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/security/warden) -"aue" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control"; - req_access_txt = "3" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - req_access_txt = "0" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/warden) -"auf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Gear Room"; - req_access_txt = "0"; - req_one_access_txt = "1;4" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/warden) -"aug" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/security/warden) -"auh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/security/main) -"aui" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office"; - req_access_txt = "0"; - req_one_access_txt = "1;4" - }, -/turf/open/floor/plasteel, -/area/security/main) -"auj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office"; - req_access_txt = "0"; - req_one_access_txt = "1;4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/main) -"auk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/main) -"aul" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/main) -"aum" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/security/main) -"aun" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/security/main) -"auo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"aup" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"auq" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/fore) -"aur" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"aus" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"aut" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"auu" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin3"; - name = "Cabin 6" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"auv" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/dorms) -"auw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"aux" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/crew_quarters/dorms) -"auy" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin4"; - name = "Cabin 5" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"auz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"auA" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"auB" = ( -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"auC" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/fore) -"auD" = ( -/obj/structure/closet/crate/hydroponics, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auG" = ( -/obj/structure/closet, -/obj/item/stock_parts/matter_bin, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auH" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"auI" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auJ" = ( -/obj/structure/closet/radiation, -/obj/structure/sign/warning/radiation/rad_area{ - dir = 1; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"auK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"auL" = ( -/obj/machinery/camera{ - c_tag = "Gravity Generator Foyer" - }, -/obj/structure/closet/radiation, -/obj/structure/sign/warning/radiation/rad_area{ - dir = 1; - pixel_y = 32 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"auM" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"auN" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auO" = ( -/obj/item/stack/sheet/cardboard, -/obj/item/device/flashlight, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auP" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/glasses/sunglasses, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auQ" = ( -/obj/structure/closet/crate/medical, -/obj/item/stack/cable_coil, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auR" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auS" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auT" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"auU" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auW" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auX" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"auY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ava" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted/fulltile, -/turf/open/floor/plating, -/area/maintenance/port/fore) "avb" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avc" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"ave" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avh" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 8 - }, -/area/security/brig) -"avi" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction, -/turf/open/floor/plasteel, -/area/security/brig) -"avj" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/security/brig) -"avk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/security/brig) -"avl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/holopad, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/security/brig) -"avm" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/security/brig) -"avn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/security/brig) -"avo" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/red/corner{ - dir = 4 - }, -/area/security/brig) -"avp" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -10327,7 +9954,7 @@ dir = 4 }, /area/security/brig) -"avq" = ( +"avc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -10336,7 +9963,7 @@ dir = 4 }, /area/security/brig) -"avr" = ( +"avd" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -10350,7 +9977,7 @@ dir = 4 }, /area/security/brig) -"avs" = ( +"ave" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -10361,7 +9988,7 @@ dir = 4 }, /area/security/brig) -"avt" = ( +"avf" = ( /obj/machinery/firealarm{ pixel_y = 28 }, @@ -10372,14 +9999,14 @@ dir = 4 }, /area/security/brig) -"avu" = ( +"avg" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/red/corner{ dir = 4 }, /area/security/brig) -"avv" = ( +"avh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -10391,7 +10018,7 @@ dir = 4 }, /area/security/brig) -"avw" = ( +"avi" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -10399,14 +10026,14 @@ dir = 5 }, /area/security/brig) -"avx" = ( +"avj" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/dark, /area/security/brig) -"avy" = ( +"avk" = ( /turf/open/floor/plasteel/dark, /area/security/brig) -"avA" = ( +"avl" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light/small{ dir = 8 @@ -10422,7 +10049,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"avB" = ( +"avm" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -10434,7 +10061,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"avC" = ( +"avn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -10446,35 +10073,35 @@ dir = 2 }, /area/crew_quarters/dorms) -"avD" = ( +"avo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall, /area/crew_quarters/dorms) -"avE" = ( +"avp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, /turf/closed/wall, /area/crew_quarters/dorms) -"avF" = ( +"avq" = ( /obj/item/cigbutt, /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"avG" = ( +"avr" = ( /turf/open/floor/plating{ icon_state = "platingdmg1" }, -/area/maintenance/starboard/fore) -"avH" = ( +/area/maintenance/starboard) +"avs" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, -/area/maintenance/starboard/fore) -"avI" = ( +/area/maintenance/starboard) +"avt" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -10489,7 +10116,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"avJ" = ( +"avu" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -10508,7 +10135,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"avK" = ( +"avv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -10521,9 +10148,12 @@ /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"avL" = ( +"avw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -10540,7 +10170,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"avM" = ( +"avx" = ( /obj/structure/disposalpipe/segment{ dir = 10 }, @@ -10558,7 +10188,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"avN" = ( +"avy" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10570,7 +10200,7 @@ }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"avO" = ( +"avz" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10580,9 +10210,12 @@ /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"avP" = ( +"avA" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10598,7 +10231,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"avQ" = ( +"avB" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10607,7 +10240,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"avR" = ( +"avC" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10618,7 +10251,7 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/fore) -"avS" = ( +"avD" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10629,7 +10262,7 @@ icon_state = "platingdmg2" }, /area/maintenance/starboard/fore) -"avT" = ( +"avE" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10640,7 +10273,7 @@ icon_state = "panelscorched" }, /area/maintenance/starboard/fore) -"avU" = ( +"avF" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -10649,13 +10282,21 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"avV" = ( +"avG" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"avW" = ( +"avH" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"avI" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/metal/fifty{ pixel_x = 2; @@ -10671,11 +10312,14 @@ }, /turf/open/floor/plating/airless, /area/space/nearstation) -"avX" = ( +"avJ" = ( /obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/maintenance/port/fore) -"avY" = ( +"avK" = ( /obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, @@ -10684,13 +10328,13 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"avZ" = ( +"avL" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plating, /area/maintenance/port/fore) -"awa" = ( +"avM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -10699,11 +10343,11 @@ icon_state = "panelscorched" }, /area/maintenance/port/fore) -"awb" = ( +"avN" = ( /obj/item/hand_labeler_refill, /turf/open/floor/plating, /area/maintenance/port/fore) -"awc" = ( +"avO" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, @@ -10715,7 +10359,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"awd" = ( +"avP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -10733,7 +10377,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"awe" = ( +"avQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -10749,7 +10393,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"awf" = ( +"avR" = ( /obj/structure/disposalpipe/sorting/mail/flip{ dir = 1; sortType = 1 @@ -10768,27 +10412,30 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"awg" = ( +"avS" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating{ icon_state = "platingdmg2" }, /area/maintenance/port/fore) -"awh" = ( +"avT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plating, /area/maintenance/port/fore) -"awi" = ( +"avY" = ( /obj/machinery/door/airlock/external{ name = "Labor Camp Shuttle Airlock"; req_access_txt = "2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/security/brig) -"awj" = ( +"avZ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Labor Camp Shuttle Airlock"; @@ -10800,16 +10447,19 @@ pixel_y = -25; req_access_txt = "2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/security/brig) -"awk" = ( +"awa" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/red/corner{ dir = 8 }, /area/security/brig) -"awl" = ( +"awb" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -10821,7 +10471,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awm" = ( +"awc" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10833,7 +10483,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awn" = ( +"awd" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10842,7 +10492,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awo" = ( +"awe" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10858,7 +10508,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awp" = ( +"awf" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10870,22 +10520,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - req_access_txt = "0" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awr" = ( +"awg" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10895,7 +10530,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"aws" = ( +"awh" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10905,7 +10540,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awt" = ( +"awi" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10920,7 +10555,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awu" = ( +"awj" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -10933,7 +10568,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/security/brig) -"awv" = ( +"awk" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10945,7 +10580,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"aww" = ( +"awl" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -10957,7 +10592,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awx" = ( +"awm" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10970,7 +10605,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awy" = ( +"awn" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -10979,7 +10614,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awz" = ( +"awo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-8" @@ -10989,30 +10624,30 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"awA" = ( +"awp" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/security/brig) -"awB" = ( +"awq" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/security/brig) -"awC" = ( +"awr" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/security/brig) -"awD" = ( +"aws" = ( /turf/open/floor/plasteel, /area/security/brig) -"awE" = ( +"awt" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -11020,7 +10655,7 @@ dir = 4 }, /area/security/brig) -"awF" = ( +"awu" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ name = "Interrogation"; @@ -11033,30 +10668,30 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"awG" = ( +"awv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /turf/open/floor/plasteel/dark, /area/security/brig) -"awH" = ( +"aww" = ( /obj/structure/chair{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/security/brig) -"awI" = ( +"awx" = ( /obj/structure/table, /obj/item/device/flashlight/lamp, /turf/open/floor/plasteel/dark, /area/security/brig) -"awJ" = ( +"awy" = ( /obj/structure/chair{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/security/brig) -"awK" = ( +"awz" = ( /obj/machinery/camera{ c_tag = "Interrogation"; dir = 8; @@ -11064,19 +10699,19 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"awL" = ( +"awA" = ( /obj/structure/closet/crate{ icon_state = "crateopen" }, /obj/item/storage/box/donkpockets, /turf/open/floor/plating, /area/maintenance/fore) -"awM" = ( +"awB" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/storage/box/lights/mixed, /turf/open/floor/plating, /area/maintenance/fore) -"awN" = ( +"awC" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -11089,7 +10724,7 @@ /obj/structure/dresser, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"awO" = ( +"awD" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/airalarm{ pixel_y = 23 @@ -11097,7 +10732,7 @@ /obj/item/clothing/under/suit_jacket/tan, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"awP" = ( +"awE" = ( /obj/structure/bed, /obj/item/bedsheet, /obj/machinery/button/door{ @@ -11113,7 +10748,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"awR" = ( +"awF" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -11125,7 +10760,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"awS" = ( +"awG" = ( /obj/structure/bed, /obj/item/bedsheet, /obj/machinery/button/door{ @@ -11139,7 +10774,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/wood, /area/crew_quarters/dorms) -"awT" = ( +"awH" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -11147,14 +10782,14 @@ /obj/item/paper, /turf/open/floor/wood, /area/crew_quarters/dorms) -"awU" = ( +"awI" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; req_access_txt = "12" }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"awV" = ( +"awJ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -11164,10 +10799,7 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/fore) -"awW" = ( -/turf/closed/wall/r_wall, -/area/engine/engineering) -"awX" = ( +"awK" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -11178,24 +10810,36 @@ req_access_txt = "10" }, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/engine/gravity_generator) -"awY" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"awZ" = ( +"awL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"awM" = ( /obj/structure/closet, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/fore) -"axa" = ( +"awP" = ( /obj/item/clothing/gloves/color/rainbow, /obj/item/clothing/shoes/sneakers/rainbow, /obj/item/clothing/under/color/rainbow, /obj/item/clothing/head/soft/rainbow, /turf/open/floor/plating, /area/maintenance/port/fore) -"axb" = ( +"awQ" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -11204,18 +10848,18 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"axc" = ( +"awR" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, /turf/open/floor/plating, /area/maintenance/port/fore) -"axd" = ( +"awS" = ( /obj/structure/closet/crate, /obj/item/coin/silver, /turf/open/floor/plating, /area/maintenance/port/fore) -"axe" = ( +"awT" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -11225,13 +10869,13 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"axf" = ( +"awU" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, /turf/open/floor/plating, /area/maintenance/port/fore) -"axg" = ( +"awV" = ( /obj/structure/disposalpipe/segment{ dir = 10 }, @@ -11241,10 +10885,10 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"axh" = ( +"awW" = ( /turf/closed/wall/r_wall, /area/security/nuke_storage) -"axi" = ( +"awZ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -11256,7 +10900,7 @@ dir = 8 }, /area/security/brig) -"axj" = ( +"axa" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -11265,7 +10909,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"axk" = ( +"axb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11276,7 +10920,7 @@ dir = 2 }, /area/security/brig) -"axl" = ( +"axc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11293,7 +10937,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/brig) -"axm" = ( +"axd" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -11301,7 +10945,7 @@ dir = 8 }, /area/security/brig) -"axn" = ( +"axe" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -11310,7 +10954,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"axo" = ( +"axf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11322,7 +10966,7 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/red/side, /area/security/brig) -"axp" = ( +"axg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11331,7 +10975,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/brig) -"axq" = ( +"axh" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -11344,7 +10988,7 @@ dir = 2 }, /area/security/brig) -"axr" = ( +"axi" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11353,7 +10997,7 @@ dir = 9 }, /area/security/brig) -"axs" = ( +"axj" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11361,7 +11005,7 @@ dir = 1 }, /area/security/brig) -"axt" = ( +"axk" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -11370,7 +11014,7 @@ dir = 5 }, /area/security/brig) -"axu" = ( +"axl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11391,7 +11035,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/brig) -"axv" = ( +"axm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11399,13 +11043,13 @@ dir = 8 }, /area/security/brig) -"axw" = ( +"axn" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, /turf/open/floor/plasteel, /area/security/brig) -"axx" = ( +"axo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11415,7 +11059,7 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"axy" = ( +"axp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11423,7 +11067,7 @@ dir = 2 }, /area/security/brig) -"axz" = ( +"axq" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -11431,7 +11075,7 @@ dir = 2 }, /area/security/brig) -"axA" = ( +"axr" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11445,7 +11089,7 @@ dir = 2 }, /area/security/brig) -"axB" = ( +"axs" = ( /obj/machinery/airalarm{ dir = 1; pixel_y = -22 @@ -11463,7 +11107,7 @@ dir = 2 }, /area/security/brig) -"axC" = ( +"axt" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -11475,7 +11119,7 @@ dir = 2 }, /area/security/brig) -"axD" = ( +"axu" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -11483,7 +11127,7 @@ dir = 2 }, /area/security/brig) -"axE" = ( +"axv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -11494,19 +11138,19 @@ dir = 6 }, /area/security/brig) -"axF" = ( +"axw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/security/brig) -"axG" = ( +"axx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/security/brig) -"axH" = ( +"axy" = ( /obj/structure/chair{ dir = 4 }, @@ -11515,7 +11159,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"axI" = ( +"axz" = ( /obj/structure/table, /obj/item/folder/red, /obj/item/device/taperecorder, @@ -11533,7 +11177,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"axJ" = ( +"axA" = ( /obj/structure/chair{ dir = 8 }, @@ -11542,29 +11186,29 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"axK" = ( +"axB" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/security/brig) -"axL" = ( +"axC" = ( /turf/closed/wall, /area/crew_quarters/toilet/restrooms) -"axN" = ( +"axD" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"axO" = ( +"axE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/effect/landmark/xeno_spawn, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"axP" = ( +"axF" = ( /obj/machinery/door/airlock{ id_tag = "Cabin2"; name = "Cabin 4" @@ -11574,7 +11218,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/dorms) -"axQ" = ( +"axG" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -11583,7 +11227,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"axR" = ( +"axI" = ( /obj/machinery/door/airlock{ id_tag = "Cabin5"; name = "Cabin 3" @@ -11593,14 +11237,14 @@ }, /turf/open/floor/wood, /area/crew_quarters/dorms) -"axS" = ( +"axJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/crew_quarters/dorms) -"axT" = ( +"axK" = ( /obj/effect/landmark/xeno_spawn, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 @@ -11608,14 +11252,14 @@ /obj/machinery/light/small, /turf/open/floor/wood, /area/crew_quarters/dorms) -"axU" = ( +"axL" = ( /obj/item/caution, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"axV" = ( +"axM" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -11627,7 +11271,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"axW" = ( +"axN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -11641,7 +11285,7 @@ icon_state = "panelscorched" }, /area/maintenance/starboard/fore) -"axX" = ( +"axO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -11651,10 +11295,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/item/cigbutt, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"axY" = ( +"axP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -11669,20 +11312,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"axZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aya" = ( +"axQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -11696,32 +11326,20 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/fore) -"ayb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, +"axR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ayc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/obj/machinery/holopad, /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/turf/open/floor/plasteel/red/corner{ dir = 4 }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ayd" = ( +/area/security/brig) +"axS" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -11733,7 +11351,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aye" = ( +"axT" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=4"; dir = 4; @@ -11746,7 +11364,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/engineering) -"ayf" = ( +"axU" = ( /obj/machinery/door/window/southright{ dir = 4; name = "Engineering Deliveries"; @@ -11756,7 +11374,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/engineering) -"ayg" = ( +"axV" = ( /obj/structure/sign/warning/securearea{ pixel_y = 32 }, @@ -11766,7 +11384,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"ayh" = ( +"axW" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -11779,7 +11397,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"ayi" = ( +"axX" = ( /obj/machinery/light_switch{ pixel_x = 23 }, @@ -11798,22 +11416,21 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"ayj" = ( +"axY" = ( +/turf/closed/wall/r_wall, +/area/engine/engineering) +"axZ" = ( /obj/structure/closet/firecloset, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"ayk" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"ayl" = ( +"aya" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/machinery/light{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aym" = ( +"ayc" = ( /obj/structure/table/reinforced, /obj/item/tank/internals/emergency_oxygen/engi, /obj/item/tank/internals/emergency_oxygen/engi, @@ -11822,7 +11439,14 @@ }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"ayn" = ( +"aye" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"ayf" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/glass{ amount = 10 @@ -11830,14 +11454,14 @@ /obj/item/stack/rods, /turf/open/floor/plating/airless, /area/space/nearstation) -"ayo" = ( +"ayi" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/quartermaster/miningoffice) -"ayp" = ( +"ayj" = ( /turf/closed/wall, /area/quartermaster/miningoffice) -"ayq" = ( +"ayk" = ( /obj/machinery/door/airlock/maintenance{ name = "Mining Dock Maintenance"; req_access_txt = "48" @@ -11847,10 +11471,10 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"ayr" = ( +"ayl" = ( /turf/closed/wall, /area/quartermaster/warehouse) -"ays" = ( +"aym" = ( /obj/machinery/door/airlock/maintenance{ name = "Cargo Bay Warehouse Maintenance"; req_access_txt = "0"; @@ -11862,7 +11486,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/port/fore) -"ayt" = ( +"ayn" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ @@ -11870,14 +11494,14 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"ayu" = ( +"ayo" = ( /obj/machinery/computer/bank_machine, /obj/effect/turf_decal/bot_white, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/security/nuke_storage) -"ayv" = ( +"ayp" = ( /obj/machinery/light_switch{ pixel_y = 28 }, @@ -11885,7 +11509,7 @@ luminosity = 2 }, /area/security/nuke_storage) -"ayw" = ( +"ayq" = ( /obj/machinery/airalarm{ pixel_y = 23 }, @@ -11896,7 +11520,7 @@ luminosity = 2 }, /area/security/nuke_storage) -"ayx" = ( +"ayr" = ( /obj/machinery/power/apc{ dir = 1; name = "Vault APC"; @@ -11910,7 +11534,7 @@ luminosity = 2 }, /area/security/nuke_storage) -"ayy" = ( +"ays" = ( /obj/structure/filingcabinet, /obj/item/folder/documents, /obj/effect/turf_decal/bot_white, @@ -11918,7 +11542,7 @@ dir = 8 }, /area/security/nuke_storage) -"ayz" = ( +"ayw" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" @@ -11926,7 +11550,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/security/brig) -"ayA" = ( +"ayx" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -11942,7 +11566,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/brig) -"ayB" = ( +"ayy" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -11952,7 +11576,7 @@ }, /turf/open/floor/plating, /area/security/brig) -"ayC" = ( +"ayz" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -11968,7 +11592,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/brig) -"ayD" = ( +"ayA" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -11984,18 +11608,18 @@ }, /turf/open/floor/plasteel/red/side, /area/security/brig) -"ayE" = ( +"ayB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 2; id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63" }, /turf/open/floor/plasteel/red/side, /area/security/brig) -"ayF" = ( +"ayC" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -12004,15 +11628,15 @@ }, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 2; id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63" }, /turf/open/floor/plasteel/red/side, /area/security/brig) -"ayG" = ( +"ayD" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ @@ -12023,7 +11647,7 @@ }, /turf/open/floor/plating, /area/security/brig) -"ayH" = ( +"ayE" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -12040,27 +11664,10 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/side, /area/security/brig) -"ayI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/brig) -"ayJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/brig) -"ayK" = ( +"ayF" = ( /turf/closed/wall/r_wall, /area/security/detectives_office) -"ayL" = ( +"ayG" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "detective_shutters"; @@ -12071,7 +11678,7 @@ }, /turf/open/floor/plating, /area/security/detectives_office) -"ayM" = ( +"ayH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -12084,7 +11691,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/security/detectives_office) -"ayN" = ( +"ayI" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "detective_shutters"; @@ -12096,10 +11703,10 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/security/detectives_office) -"ayO" = ( +"ayJ" = ( /turf/closed/wall, /area/security/detectives_office) -"ayP" = ( +"ayK" = ( /obj/machinery/shower{ dir = 4 }, @@ -12108,7 +11715,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"ayQ" = ( +"ayL" = ( /obj/machinery/light/small{ dir = 1 }, @@ -12120,14 +11727,14 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"ayR" = ( +"ayM" = ( /obj/machinery/shower{ dir = 8 }, /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"ayS" = ( +"ayN" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, @@ -12135,7 +11742,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"ayT" = ( +"ayO" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -12147,7 +11754,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"ayU" = ( +"ayP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -12159,7 +11766,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"ayV" = ( +"ayQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -12167,11 +11774,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"ayW" = ( +"ayR" = ( /obj/item/wrench, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"ayX" = ( +"ayS" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -12183,27 +11790,14 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"ayY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"ayT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/engineering) -"ayZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sorting/mail{ - sortType = 4 - }, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engine/engineering) -"aza" = ( +"ayV" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -12212,7 +11806,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"azb" = ( +"ayW" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -12223,45 +11817,54 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"azc" = ( +"ayX" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"azd" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aze" = ( +"aza" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"azf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 +"azb" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" }, -/turf/closed/wall/r_wall, -/area/engine/engineering) +/turf/open/floor/plasteel/red/corner{ + dir = 4 + }, +/area/security/brig) +"azd" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"aze" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/wood, +/area/library) "azg" = ( /obj/item/stack/cable_coil, /turf/open/floor/plating/airless, /area/space/nearstation) -"azh" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port/fore) -"azi" = ( +"azj" = ( /obj/item/stack/ore/iron, /obj/effect/turf_decal/stripes/line{ dir = 9 }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"azj" = ( +"azk" = ( /obj/structure/closet/crate, /obj/machinery/light/small{ dir = 4 @@ -12276,7 +11879,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"azk" = ( +"azl" = ( /obj/structure/closet/emcloset, /obj/machinery/status_display{ pixel_y = 32; @@ -12286,7 +11889,7 @@ dir = 9 }, /area/quartermaster/miningoffice) -"azl" = ( +"azm" = ( /obj/structure/closet/crate, /obj/item/device/flashlight{ pixel_x = 1; @@ -12308,7 +11911,7 @@ dir = 1 }, /area/quartermaster/miningoffice) -"azm" = ( +"azn" = ( /obj/machinery/power/apc{ dir = 1; name = "Mining APC"; @@ -12326,7 +11929,7 @@ dir = 1 }, /area/quartermaster/miningoffice) -"azn" = ( +"azo" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -12337,7 +11940,7 @@ dir = 1 }, /area/quartermaster/miningoffice) -"azo" = ( +"azp" = ( /obj/structure/rack, /obj/item/storage/toolbox/emergency{ pixel_x = 2; @@ -12348,31 +11951,35 @@ dir = 5 }, /area/quartermaster/miningoffice) -"azp" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/floorgrime, -/area/quartermaster/warehouse) "azq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/closet/cardboard, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + req_access_txt = "0" }, -/turf/open/floor/plasteel/floorgrime, -/area/quartermaster/warehouse) +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) "azr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"azs" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -12383,7 +11990,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"azs" = ( +"azt" = ( /obj/machinery/airalarm{ pixel_y = 28 }, @@ -12395,7 +12002,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"azt" = ( +"azu" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -12404,7 +12011,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"azu" = ( +"azv" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -12413,7 +12020,7 @@ dir = 1 }, /area/security/nuke_storage) -"azv" = ( +"azw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -12421,13 +12028,13 @@ luminosity = 2 }, /area/security/nuke_storage) -"azw" = ( +"azx" = ( /obj/machinery/nuclearbomb/selfdestruct, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/security/nuke_storage) -"azx" = ( +"azy" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -12438,7 +12045,7 @@ luminosity = 2 }, /area/security/nuke_storage) -"azy" = ( +"azz" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -12447,14 +12054,11 @@ dir = 1 }, /area/security/nuke_storage) -"azz" = ( +"azC" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/hallway/primary/fore) -"azA" = ( -/turf/closed/wall, -/area/hallway/primary/fore) -"azB" = ( +"azD" = ( /obj/machinery/flasher{ id = "Cell 1"; pixel_x = -28 @@ -12464,13 +12068,13 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azC" = ( +"azE" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azD" = ( +"azF" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -12479,7 +12083,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azE" = ( +"azG" = ( /obj/machinery/flasher{ id = "Cell 2"; pixel_x = -28 @@ -12489,14 +12093,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azF" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/floorgrime, -/area/security/brig) -"azG" = ( +"azH" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -12506,7 +12103,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azH" = ( +"azI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light/small{ dir = 8 @@ -12515,13 +12112,13 @@ dir = 9 }, /area/security/brig) -"azI" = ( +"azJ" = ( /obj/machinery/holopad, /turf/open/floor/plasteel/red/side{ dir = 1 }, /area/security/brig) -"azJ" = ( +"azK" = ( /obj/machinery/light/small{ dir = 4 }, @@ -12533,7 +12130,7 @@ dir = 5 }, /area/security/brig) -"azK" = ( +"azL" = ( /obj/structure/chair, /obj/machinery/flasher{ id = "holdingflash"; @@ -12541,24 +12138,24 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azL" = ( +"azM" = ( /obj/structure/chair, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azM" = ( +"azN" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azN" = ( +"azO" = ( /obj/structure/chair, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azO" = ( +"azP" = ( /obj/structure/rack, /obj/machinery/flasher{ id = "holdingflash"; @@ -12581,7 +12178,7 @@ /obj/item/restraints/handcuffs, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"azP" = ( +"azQ" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -12595,13 +12192,13 @@ }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"azQ" = ( +"azR" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"azR" = ( +"azS" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -12614,7 +12211,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/security/detectives_office) -"azS" = ( +"azT" = ( /obj/structure/table/wood, /obj/item/storage/fancy/cigarettes, /obj/item/clothing/glasses/sunglasses, @@ -12626,7 +12223,7 @@ }, /turf/open/floor/carpet, /area/security/detectives_office) -"azT" = ( +"azU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -12644,7 +12241,7 @@ /obj/item/restraints/handcuffs, /turf/open/floor/carpet, /area/security/detectives_office) -"azU" = ( +"azV" = ( /obj/structure/table/wood, /obj/item/storage/secure/safe{ pixel_x = 32 @@ -12661,14 +12258,14 @@ }, /turf/open/floor/carpet, /area/security/detectives_office) -"azV" = ( +"azW" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating, /area/maintenance/fore) -"azW" = ( +"azX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -12683,15 +12280,6 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"azX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/fore) "azY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -12701,13 +12289,6 @@ }, /area/maintenance/fore) "azZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/fore) -"aAa" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -12717,7 +12298,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aAb" = ( +"aAa" = ( /obj/structure/mirror{ pixel_x = -28 }, @@ -12727,12 +12308,12 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aAc" = ( +"aAb" = ( /obj/effect/landmark/xeno_spawn, /obj/item/bikehorn/rubberducky, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aAd" = ( +"aAc" = ( /obj/structure/mirror{ pixel_x = 28 }, @@ -12741,11 +12322,11 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aAe" = ( +"aAd" = ( /obj/machinery/washing_machine, /turf/open/floor/plasteel/barber, /area/crew_quarters/dorms) -"aAf" = ( +"aAe" = ( /obj/structure/table, /obj/item/clothing/under/suit_jacket/female{ pixel_x = 3; @@ -12770,14 +12351,7 @@ /obj/item/clothing/under/lawyer/blacksuit, /turf/open/floor/plasteel/barber, /area/crew_quarters/dorms) -"aAg" = ( -/obj/machinery/washing_machine, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/barber, -/area/crew_quarters/dorms) -"aAh" = ( +"aAf" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -12785,7 +12359,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"aAi" = ( +"aAg" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -12798,7 +12372,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aAj" = ( +"aAh" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -12812,7 +12386,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"aAk" = ( +"aAi" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, @@ -12827,7 +12401,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aAl" = ( +"aAj" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -12842,7 +12416,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aAm" = ( +"aAk" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -12856,32 +12430,32 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/fore) +"aAl" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aAm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) "aAn" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aAo" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aAp" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -12896,24 +12470,18 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aAq" = ( +"aAo" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/engineering) -"aAr" = ( +"aAp" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/item/clothing/suit/hooded/wintercoat/engineering, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/engineering) -"aAs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"aAt" = ( +"aAr" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -12930,14 +12498,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aAu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/engineering) -"aAv" = ( +"aAt" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 }, @@ -12946,17 +12507,17 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aAw" = ( +"aAu" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/obj/structure/disposalpipe/sorting/mail{ + sortType = 4 }, +/obj/effect/landmark/start/station_engineer, /turf/open/floor/plasteel, /area/engine/engineering) -"aAx" = ( +"aAv" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -12966,45 +12527,31 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aAy" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Fore"; - dir = 4; - network = list("SS13","Engine") - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aAz" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aAA" = ( -/obj/machinery/atmospherics/pipe/manifold4w/general/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aAB" = ( -/obj/machinery/atmospherics/pipe/manifold4w/general/visible, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aAC" = ( +"aAw" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 10 }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aAD" = ( +"aAx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/r_wall, /area/engine/engineering) -"aAE" = ( +"aAz" = ( +/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 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/cult{ + dir = 2 + }, +/area/library) +"aAA" = ( /obj/docking_port/stationary{ dir = 8; dwidth = 3; @@ -13013,53 +12560,58 @@ name = "mining shuttle bay"; width = 7; roundstart_template = /datum/map_template/shuttle/mining/box; - }, /turf/open/space/basic, /area/space) -"aAF" = ( +"aAB" = ( /obj/machinery/door/airlock/external{ name = "Mining Dock Airlock"; req_access = null; req_access_txt = "0" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/quartermaster/miningoffice) -"aAG" = ( +"aAC" = ( /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aAH" = ( +"aAD" = ( /obj/machinery/door/airlock/mining/glass{ name = "Mining Dock"; req_access_txt = "48" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aAI" = ( +"aAE" = ( /turf/open/floor/plasteel/brown{ dir = 8 }, /area/quartermaster/miningoffice) -"aAJ" = ( +"aAF" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aAK" = ( +"aAG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aAL" = ( +"aAH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/effect/landmark/start/shaft_miner, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aAM" = ( +"aAI" = ( /obj/machinery/button/door{ id = "qm_mine_warehouse"; name = "Warehouse Door Control"; @@ -13071,7 +12623,7 @@ dir = 4 }, /area/quartermaster/miningoffice) -"aAN" = ( +"aAJ" = ( /obj/machinery/door/poddoor/shutters{ id = "qm_mine_warehouse"; name = "Warehouse Shutters" @@ -13079,7 +12631,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aAO" = ( +"aAK" = ( /obj/structure/disposalpipe/segment, /obj/machinery/button/door{ id = "qm_mine_warehouse"; @@ -13093,10 +12645,10 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aAP" = ( +"aAL" = ( /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aAQ" = ( +"aAM" = ( /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 3; @@ -13104,13 +12656,13 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aAR" = ( +"aAN" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aAS" = ( +"aAO" = ( /obj/structure/closet/crate, /obj/structure/extinguisher_cabinet{ pixel_x = 27 @@ -13121,16 +12673,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aAT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aAU" = ( +"aAP" = ( /obj/structure/closet/crate{ name = "Gold Crate" }, @@ -13154,7 +12697,7 @@ dir = 1 }, /area/security/nuke_storage) -"aAV" = ( +"aAQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -13163,7 +12706,7 @@ luminosity = 2 }, /area/security/nuke_storage) -"aAW" = ( +"aAR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -13171,7 +12714,7 @@ luminosity = 2 }, /area/security/nuke_storage) -"aAX" = ( +"aAS" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -13182,7 +12725,7 @@ luminosity = 2 }, /area/security/nuke_storage) -"aAY" = ( +"aAT" = ( /obj/item/coin/silver{ pixel_x = 7; pixel_y = 12 @@ -13211,7 +12754,7 @@ dir = 1 }, /area/security/nuke_storage) -"aAZ" = ( +"aAV" = ( /obj/docking_port/stationary{ dir = 8; dwidth = 2; @@ -13220,17 +12763,16 @@ name = "fore bay 1"; width = 9; roundstart_template = /datum/map_template/shuttle/labour/box; - }, /turf/open/space/basic, /area/space) -"aBa" = ( +"aAW" = ( /obj/machinery/door/airlock/external{ name = "Labor Camp Shuttle Airlock" }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aBb" = ( +"aAX" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 28 @@ -13253,33 +12795,33 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aBc" = ( +"aAY" = ( /obj/structure/bed, /obj/item/bedsheet, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"aBd" = ( +"aAZ" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 1"; name = "Cell 1 Locker" }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"aBe" = ( +"aBa" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 2"; name = "Cell 2 Locker" }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"aBf" = ( +"aBb" = ( /obj/structure/closet/secure_closet/brig{ id = "Cell 3"; name = "Cell 3 Locker" }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"aBg" = ( +"aBc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/firealarm{ dir = 8; @@ -13289,10 +12831,10 @@ dir = 10 }, /area/security/brig) -"aBh" = ( +"aBd" = ( /turf/open/floor/plasteel/red/side, /area/security/brig) -"aBi" = ( +"aBe" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -13304,7 +12846,7 @@ dir = 6 }, /area/security/brig) -"aBj" = ( +"aBf" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -13313,13 +12855,13 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"aBk" = ( +"aBg" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"aBl" = ( +"aBh" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -13328,7 +12870,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"aBm" = ( +"aBi" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -13338,7 +12880,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"aBn" = ( +"aBj" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -13347,7 +12889,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/security/brig) -"aBo" = ( +"aBk" = ( /obj/structure/closet/secure_closet/detective, /obj/effect/landmark/blobstart, /obj/machinery/camera{ @@ -13357,24 +12899,24 @@ }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aBp" = ( +"aBl" = ( /obj/machinery/holopad, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aBq" = ( +"aBm" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/security/detectives_office) -"aBr" = ( +"aBn" = ( /obj/structure/table/wood, /obj/item/folder/red, /obj/item/hand_labeler, /turf/open/floor/carpet, /area/security/detectives_office) -"aBs" = ( +"aBo" = ( /obj/effect/landmark/start/detective, /obj/structure/chair/office/dark{ dir = 8 @@ -13382,7 +12924,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/carpet, /area/security/detectives_office) -"aBt" = ( +"aBp" = ( /obj/machinery/airalarm{ dir = 8; pixel_x = 24 @@ -13392,7 +12934,7 @@ }, /turf/open/floor/carpet, /area/security/detectives_office) -"aBu" = ( +"aBq" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -13402,19 +12944,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/fore) -"aBv" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aBw" = ( +"aBr" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -13429,7 +12959,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aBx" = ( +"aBs" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -13439,25 +12969,25 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aBy" = ( +"aBt" = ( /obj/machinery/shower{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aBz" = ( +"aBu" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aBA" = ( +"aBv" = ( /obj/machinery/shower{ dir = 8 }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aBB" = ( +"aBw" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -13471,7 +13001,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"aBC" = ( +"aBx" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -13482,7 +13012,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"aBD" = ( +"aBy" = ( /obj/structure/cable/yellow{ icon_state = "0-8" }, @@ -13505,7 +13035,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"aBE" = ( +"aBz" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -13517,7 +13047,7 @@ dir = 1 }, /area/crew_quarters/dorms) -"aBF" = ( +"aBA" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -13526,7 +13056,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aBG" = ( +"aBB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/sign/warning/pods{ pixel_x = 30 @@ -13535,16 +13065,20 @@ dir = 2 }, /area/crew_quarters/dorms) -"aBH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +"aBC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /obj/structure/cable/yellow{ - icon_state = "1-2" + icon_state = "4-8" }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, /area/maintenance/starboard/fore) -"aBI" = ( +"aBD" = ( /obj/effect/decal/cleanable/cobweb, /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-20"; @@ -13557,7 +13091,7 @@ dir = 1 }, /area/engine/engineering) -"aBJ" = ( +"aBE" = ( /obj/machinery/suit_storage_unit/engine, /obj/effect/turf_decal/bot{ dir = 1 @@ -13566,7 +13100,7 @@ dir = 1 }, /area/engine/engineering) -"aBK" = ( +"aBF" = ( /obj/structure/tank_dispenser, /obj/machinery/light{ dir = 1 @@ -13578,7 +13112,7 @@ dir = 1 }, /area/engine/engineering) -"aBL" = ( +"aBG" = ( /obj/machinery/camera{ c_tag = "Engineering - Storage"; dir = 2; @@ -13592,7 +13126,7 @@ dir = 1 }, /area/engine/engineering) -"aBM" = ( +"aBH" = ( /obj/item/stack/sheet/plasteel{ amount = 10; pixel_x = -2; @@ -13611,10 +13145,10 @@ dir = 1 }, /area/engine/engineering) -"aBN" = ( +"aBI" = ( /turf/closed/wall, /area/engine/engineering) -"aBO" = ( +"aBJ" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -22 @@ -13627,7 +13161,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aBP" = ( +"aBK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -13636,39 +13170,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aBQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"aBR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/engine/engineering) -"aBS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"aBT" = ( +"aBL" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -13682,7 +13184,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aBU" = ( +"aBM" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-8" @@ -13694,7 +13196,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aBV" = ( +"aBN" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/computer/rdconsole/production{ dir = 1 @@ -13705,35 +13207,18 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aBW" = ( +"aBO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, /area/engine/engineering) -"aBX" = ( -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aBY" = ( +"aBQ" = ( /obj/machinery/atmospherics/components/unary/thermomachine/freezer{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aBZ" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - volume_rate = 200 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"aCa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aCb" = ( +"aBS" = ( /obj/item/stack/ore/silver, /obj/item/stack/ore/silver, /obj/effect/turf_decal/stripes/line{ @@ -13741,7 +13226,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aCc" = ( +"aBT" = ( /obj/structure/reagent_dispensers/fueltank, /obj/machinery/camera{ c_tag = "Mining Dock"; @@ -13751,22 +13236,22 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aCd" = ( +"aBU" = ( /obj/structure/sign/warning/vacuum/external, /turf/closed/wall, /area/quartermaster/miningoffice) -"aCe" = ( +"aBV" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/holopad, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aCf" = ( +"aBW" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aCg" = ( +"aBX" = ( /obj/item/device/radio/intercom{ dir = 4; name = "Station Intercom (General)"; @@ -13782,7 +13267,7 @@ dir = 4 }, /area/quartermaster/miningoffice) -"aCh" = ( +"aBY" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 @@ -13790,13 +13275,13 @@ /obj/item/storage/box/donkpockets, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aCi" = ( +"aBZ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aCj" = ( +"aCa" = ( /obj/structure/closet/crate/freezer, /obj/effect/spawner/lootdrop/maintenance{ lootcount = 3; @@ -13804,7 +13289,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aCk" = ( +"aCb" = ( /obj/structure/closet/crate, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -13812,7 +13297,7 @@ /obj/item/stack/ore/glass, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aCl" = ( +"aCc" = ( /obj/structure/rack, /obj/item/electronics/apc, /obj/item/stock_parts/cell{ @@ -13825,21 +13310,21 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aCm" = ( +"aCd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/bot_white/right, /turf/open/floor/plasteel/vault{ dir = 1 }, /area/security/nuke_storage) -"aCn" = ( +"aCe" = ( /obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/open/floor/plasteel/vault/corner, /area/security/nuke_storage) -"aCo" = ( +"aCf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -13848,7 +13333,7 @@ }, /turf/open/floor/plasteel/vault/side, /area/security/nuke_storage) -"aCp" = ( +"aCg" = ( /obj/machinery/camera/motion{ c_tag = "Vault"; dir = 1; @@ -13862,7 +13347,7 @@ dir = 8 }, /area/security/nuke_storage) -"aCq" = ( +"aCh" = ( /obj/structure/safe, /obj/item/storage/secure/briefcase{ contents = newlist(/obj/item/clothing/suit/armor/vest,/obj/item/gun/ballistic/automatic/pistol,/obj/item/suppressor,/obj/item/melee/classic_baton/telescopic,/obj/item/clothing/mask/balaclava,/obj/item/bodybag,/obj/item/soap/nanotrasen) @@ -13884,7 +13369,7 @@ dir = 1 }, /area/security/nuke_storage) -"aCr" = ( +"aCj" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Labor Camp Shuttle Airlock"; @@ -13892,7 +13377,7 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aCs" = ( +"aCk" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" @@ -13903,7 +13388,7 @@ }, /turf/open/floor/plating, /area/security/brig) -"aCt" = ( +"aCl" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/structure/cable/yellow{ @@ -13918,7 +13403,7 @@ }, /turf/open/floor/plating, /area/security/brig) -"aCu" = ( +"aCm" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -13929,11 +13414,13 @@ }, /turf/open/floor/plating, /area/security/brig) -"aCv" = ( +"aCn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 1; id_tag = "outerbrig"; name = "Brig"; req_access_txt = "63" @@ -13942,7 +13429,7 @@ dir = 1 }, /area/security/brig) -"aCw" = ( +"aCo" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "Secure Gate"; @@ -13953,7 +13440,7 @@ }, /turf/open/floor/plating, /area/security/brig) -"aCx" = ( +"aCp" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -13966,8 +13453,10 @@ id = "secentranceflasher"; pixel_x = 25 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 1; id_tag = "outerbrig"; name = "Brig"; req_access_txt = "63" @@ -13976,15 +13465,7 @@ dir = 1 }, /area/security/brig) -"aCy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/brig) -"aCz" = ( +"aCq" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Security Desk"; @@ -13999,7 +13480,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aCA" = ( +"aCr" = ( /obj/machinery/door/airlock/security{ name = "Court Cell"; req_access = null; @@ -14007,7 +13488,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aCB" = ( +"aCs" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 @@ -14028,7 +13509,7 @@ /obj/item/device/flashlight/seclite, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aCC" = ( +"aCt" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -14037,7 +13518,7 @@ }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aCD" = ( +"aCu" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -14049,7 +13530,7 @@ }, /turf/open/floor/carpet, /area/security/detectives_office) -"aCE" = ( +"aCv" = ( /obj/structure/table/wood, /obj/item/paper_bin{ pixel_x = -3; @@ -14058,11 +13539,11 @@ /obj/item/pen, /turf/open/floor/carpet, /area/security/detectives_office) -"aCF" = ( +"aCw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/carpet, /area/security/detectives_office) -"aCG" = ( +"aCx" = ( /obj/machinery/computer/med_data{ dir = 8 }, @@ -14071,7 +13552,7 @@ }, /turf/open/floor/carpet, /area/security/detectives_office) -"aCH" = ( +"aCy" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -14079,7 +13560,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/fore) -"aCI" = ( +"aCz" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, @@ -14088,11 +13569,11 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aCJ" = ( +"aCA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/crew_quarters/toilet/restrooms) -"aCK" = ( +"aCB" = ( /obj/machinery/door/airlock{ name = "Unisex Showers"; req_access_txt = "0" @@ -14100,7 +13581,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aCL" = ( +"aCC" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -14109,13 +13590,13 @@ dir = 1 }, /area/crew_quarters/dorms) -"aCM" = ( +"aCD" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aCN" = ( +"aCE" = ( /obj/structure/chair/stool{ pixel_y = 8 }, @@ -14124,14 +13605,14 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aCO" = ( +"aCF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/holopad, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aCP" = ( +"aCG" = ( /obj/structure/chair/stool{ pixel_y = 8 }, @@ -14140,13 +13621,13 @@ }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/dorms) -"aCQ" = ( +"aCH" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aCR" = ( +"aCI" = ( /obj/machinery/light/small{ dir = 4 }, @@ -14158,7 +13639,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"aCS" = ( +"aCJ" = ( /obj/structure/bed, /obj/item/bedsheet, /obj/machinery/button/door{ @@ -14175,7 +13656,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"aCT" = ( +"aCK" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/airalarm{ pixel_y = 23 @@ -14183,24 +13664,14 @@ /obj/item/clothing/under/suit_jacket/navy, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"aCU" = ( -/obj/item/clothing/glasses/meson, -/obj/structure/closet/crate, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aCV" = ( +"aCM" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aCW" = ( +"aCN" = ( /obj/structure/reagent_dispensers/fueltank, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -14213,13 +13684,19 @@ dir = 1 }, /area/engine/engineering) -"aCX" = ( +"aCO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"aCP" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aCY" = ( +"aCQ" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -14228,25 +13705,18 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aCZ" = ( +"aCR" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/open/floor/plating, /area/engine/engineering) -"aDa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"aDb" = ( +"aCS" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel, /area/engine/engineering) -"aDc" = ( +"aCT" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -14255,7 +13725,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aDd" = ( +"aCU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -14267,16 +13737,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aDe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"aDf" = ( +"aCV" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -14286,20 +13747,20 @@ /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, /area/engine/engineering) -"aDg" = ( +"aCW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, /area/engine/engineering) -"aDh" = ( +"aCX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/closed/wall/r_wall, /area/engine/engineering) -"aDi" = ( +"aCY" = ( /obj/machinery/atmospherics/pipe/simple/general/visible, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -14311,42 +13772,27 @@ }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aDj" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, +"aCZ" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, /area/engine/engineering) -"aDk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +"aDa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 }, -/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/ore_box, /turf/open/floor/plating, -/area/engine/engineering) -"aDl" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"aDm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plating, -/area/engine/engineering) -"aDn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"aDo" = ( +/area/shuttle/auxillary_base) +"aDb" = ( /turf/closed/wall, /area/construction/mining/aux_base) -"aDp" = ( +"aDc" = ( +/obj/structure/closet/crate, +/obj/item/coin/silver, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aDh" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -14363,19 +13809,12 @@ dir = 9 }, /area/quartermaster/miningoffice) -"aDq" = ( +"aDi" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/landmark/start/shaft_miner, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aDr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"aDs" = ( +"aDj" = ( /obj/structure/closet/secure_closet/miner, /obj/machinery/airalarm{ dir = 8; @@ -14385,12 +13824,12 @@ dir = 4 }, /area/quartermaster/miningoffice) -"aDt" = ( +"aDk" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aDu" = ( +"aDl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -14401,14 +13840,14 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aDv" = ( +"aDm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/effect/landmark/start/cargo_technician, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aDw" = ( +"aDn" = ( /obj/item/stack/sheet/cardboard, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -14418,7 +13857,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aDx" = ( +"aDo" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -14427,38 +13866,41 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aDy" = ( +"aDp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /turf/closed/wall/r_wall, /area/security/nuke_storage) -"aDz" = ( +"aDq" = ( /obj/structure/sign/warning/securearea, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/closed/wall/r_wall, /area/security/nuke_storage) -"aDA" = ( +"aDr" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/vault{ - icon_state = "door_locked"; - locked = 1; req_access_txt = "53" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/vault{ dir = 5 }, /area/security/nuke_storage) -"aDB" = ( +"aDs" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/security/nuke_storage) -"aDC" = ( +"aDu" = ( +/turf/closed/wall, +/area/hallway/primary/fore) +"aDv" = ( /obj/machinery/door/poddoor/preopen{ id = "prison release"; name = "prisoner processing blast door" @@ -14472,18 +13914,18 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aDD" = ( +"aDw" = ( /turf/open/floor/plasteel/red/corner{ dir = 1 }, /area/hallway/primary/fore) -"aDE" = ( +"aDx" = ( /obj/structure/chair/stool, /turf/open/floor/plasteel/red/corner{ dir = 1 }, /area/hallway/primary/fore) -"aDF" = ( +"aDy" = ( /obj/structure/sign/warning/electricshock{ pixel_y = 32 }, @@ -14491,7 +13933,7 @@ dir = 1 }, /area/hallway/primary/fore) -"aDG" = ( +"aDz" = ( /obj/structure/sign/warning/electricshock{ pixel_y = 32 }, @@ -14504,7 +13946,7 @@ dir = 1 }, /area/hallway/primary/fore) -"aDH" = ( +"aDA" = ( /obj/machinery/light{ dir = 1 }, @@ -14515,16 +13957,16 @@ dir = 1 }, /area/hallway/primary/fore) -"aDI" = ( +"aDB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/corner{ dir = 1 }, /area/hallway/primary/fore) -"aDJ" = ( +"aDC" = ( /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aDK" = ( +"aDD" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -14533,7 +13975,7 @@ dir = 4 }, /area/hallway/primary/fore) -"aDL" = ( +"aDE" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -14544,7 +13986,7 @@ }, /turf/open/floor/plating, /area/security/brig) -"aDM" = ( +"aDF" = ( /obj/machinery/computer/secure_data, /obj/machinery/button/flasher{ id = "secentranceflasher"; @@ -14592,14 +14034,14 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aDN" = ( +"aDG" = ( /obj/structure/filingcabinet/chestdrawer{ pixel_y = 3 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/dark, /area/security/brig) -"aDO" = ( +"aDH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -14627,7 +14069,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aDP" = ( +"aDI" = ( /obj/machinery/requests_console{ department = "Detective's office"; pixel_x = -30 @@ -14640,13 +14082,13 @@ /obj/item/device/camera/detective, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aDQ" = ( +"aDJ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aDR" = ( +"aDK" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -14655,7 +14097,7 @@ }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aDS" = ( +"aDL" = ( /obj/machinery/light/small, /obj/item/device/radio/intercom{ freerange = 0; @@ -14671,7 +14113,7 @@ }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aDT" = ( +"aDM" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -14683,7 +14125,7 @@ }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aDU" = ( +"aDN" = ( /obj/structure/rack, /obj/item/storage/briefcase{ pixel_x = -3; @@ -14695,7 +14137,7 @@ }, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) -"aDV" = ( +"aDO" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -14705,7 +14147,7 @@ icon_state = "platingdmg1" }, /area/maintenance/fore) -"aDW" = ( +"aDP" = ( /obj/structure/toilet{ pixel_y = 8 }, @@ -14726,14 +14168,14 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aDX" = ( +"aDQ" = ( /obj/machinery/door/airlock{ id_tag = "Toilet3"; name = "Unit 3" }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aDY" = ( +"aDR" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -14742,7 +14184,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aDZ" = ( +"aDS" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -14754,7 +14196,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aEa" = ( +"aDT" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -14766,14 +14208,14 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aEb" = ( +"aDU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aEc" = ( +"aDV" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -14786,13 +14228,13 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aEd" = ( +"aDW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall, /area/crew_quarters/toilet/restrooms) -"aEe" = ( +"aDX" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -14806,36 +14248,36 @@ dir = 1 }, /area/crew_quarters/dorms) -"aEf" = ( +"aDY" = ( /obj/structure/chair/stool{ pixel_y = 8 }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aEg" = ( +"aDZ" = ( /obj/structure/table, /obj/item/storage/pill_bottle/dice, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aEh" = ( +"aEa" = ( /obj/structure/table, /obj/item/storage/crayons, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aEi" = ( +"aEb" = ( /obj/structure/table, /obj/item/toy/cards/deck, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aEj" = ( +"aEc" = ( /obj/structure/chair/stool{ pixel_y = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aEk" = ( +"aEd" = ( /obj/machinery/door/airlock{ id_tag = "Cabin6"; name = "Cabin 2" @@ -14845,34 +14287,24 @@ }, /turf/open/floor/wood, /area/crew_quarters/dorms) -"aEl" = ( +"aEe" = ( /obj/effect/landmark/xeno_spawn, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"aEm" = ( +"aEf" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"aEn" = ( +"aEg" = ( /obj/machinery/light/small, /turf/open/floor/carpet, /area/crew_quarters/dorms) -"aEo" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aEp" = ( +"aEh" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/machinery/airalarm{ dir = 4; @@ -14885,27 +14317,27 @@ dir = 1 }, /area/engine/engineering) -"aEq" = ( +"aEi" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aEr" = ( +"aEj" = ( /obj/effect/landmark/start/station_engineer, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aEs" = ( +"aEk" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aEt" = ( +"aEl" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -14920,7 +14352,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aEu" = ( +"aEm" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ name = "Engineering Storage"; @@ -14939,7 +14371,7 @@ dir = 1 }, /area/engine/engineering) -"aEv" = ( +"aEn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -14952,7 +14384,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aEw" = ( +"aEo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -14962,7 +14394,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aEx" = ( +"aEp" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -14978,7 +14410,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aEy" = ( +"aEq" = ( /obj/structure/cable/white{ icon_state = "4-8" }, @@ -14990,23 +14422,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aEz" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) -"aEA" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aEB" = ( +"aEr" = ( /obj/structure/cable/white{ icon_state = "4-8" }, @@ -15015,154 +14431,42 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aEC" = ( -/obj/structure/cable/white{ - icon_state = "4-8" +"aEt" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 6 }, -/obj/machinery/light{ - dir = 1 +/obj/machinery/light_switch{ + pixel_y = 28 }, -/turf/open/floor/engine, -/area/engine/engineering) -"aED" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 2; - name = "Mix to Gas" - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aEE" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aEF" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Gas to Mix" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aEG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aEH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"aEI" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) -"aEJ" = ( -/obj/machinery/firealarm{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aEK" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aEL" = ( -/turf/open/floor/plating, -/area/engine/engineering) -"aEM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/ore_box, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aEN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aEO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aEP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aEQ" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aER" = ( +/turf/open/floor/plasteel/floorgrime, +/area/quartermaster/warehouse) +"aEv" = ( /obj/machinery/computer/security/mining{ dir = 4; network = list("MINE","AuxBase") }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aES" = ( +"aEw" = ( /obj/structure/chair/office/dark{ dir = 8 }, /obj/effect/landmark/start/shaft_miner, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aET" = ( +"aEx" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aEU" = ( +"aEy" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -15171,7 +14475,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aEV" = ( +"aEz" = ( /obj/structure/closet/secure_closet/miner, /obj/structure/extinguisher_cabinet{ pixel_x = 27 @@ -15181,7 +14485,7 @@ dir = 4 }, /area/quartermaster/miningoffice) -"aEW" = ( +"aEA" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "2-4" @@ -15192,7 +14496,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aEX" = ( +"aEB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -15205,21 +14509,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aEY" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/rack, -/obj/item/stack/sheet/cardboard, -/obj/item/stack/rods/fifty, -/obj/item/paper, -/obj/item/storage/box/lights/mixed, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/floorgrime, -/area/quartermaster/warehouse) -"aEZ" = ( +"aED" = ( /obj/structure/closet/crate/internals, /obj/structure/cable/yellow{ icon_state = "1-4" @@ -15233,7 +14523,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aFa" = ( +"aEE" = ( /obj/machinery/power/apc{ dir = 4; name = "Warehouse APC"; @@ -15246,7 +14536,7 @@ /obj/effect/landmark/blobstart, /turf/open/floor/plasteel/floorgrime, /area/quartermaster/warehouse) -"aFb" = ( +"aEF" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -15254,7 +14544,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/construction/storage/wing) -"aFc" = ( +"aEG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -15263,21 +14553,21 @@ dir = 5 }, /area/construction/storage/wing) -"aFd" = ( +"aEH" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" }, /turf/open/floor/plating, /area/construction/storage/wing) -"aFe" = ( +"aEI" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -22 }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aFf" = ( +"aEJ" = ( /obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, @@ -15286,20 +14576,20 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aFg" = ( +"aEK" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=1.5-Fore-Central"; location = "1-BrigCells" }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aFh" = ( +"aEL" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aFi" = ( +"aEM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -15308,7 +14598,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aFj" = ( +"aEN" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -15320,17 +14610,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aFk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aFl" = ( +"aEO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -15339,7 +14619,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aFm" = ( +"aEP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -15351,7 +14631,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aFn" = ( +"aEQ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -15360,7 +14640,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aFo" = ( +"aER" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -15369,7 +14649,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aFp" = ( +"aES" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -15379,7 +14659,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aFq" = ( +"aET" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -15393,7 +14673,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aFr" = ( +"aEU" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -15402,7 +14682,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aFs" = ( +"aEV" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/westleft{ base_state = "right"; @@ -15429,7 +14709,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aFt" = ( +"aEW" = ( /obj/structure/chair/office/dark{ dir = 8 }, @@ -15438,7 +14718,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aFu" = ( +"aEX" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -15447,7 +14727,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aFv" = ( +"aEY" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -15460,7 +14740,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aFw" = ( +"aEZ" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -15470,7 +14750,7 @@ /obj/item/clothing/mask/surgical, /turf/open/floor/plasteel/dark, /area/security/detectives_office) -"aFx" = ( +"aFa" = ( /obj/machinery/door/window{ dir = 1; name = "glass door"; @@ -15478,7 +14758,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/detectives_office) -"aFy" = ( +"aFb" = ( /obj/machinery/door/airlock/maintenance{ name = "Detective Maintenance"; req_access_txt = "4" @@ -15489,7 +14769,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/fore) -"aFz" = ( +"aFc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/firealarm{ dir = 8; @@ -15502,10 +14782,10 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aFA" = ( +"aFd" = ( /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aFB" = ( +"aFe" = ( /obj/machinery/light/small, /obj/machinery/power/apc{ dir = 2; @@ -15518,7 +14798,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aFC" = ( +"aFf" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -15527,7 +14807,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aFD" = ( +"aFg" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -15537,7 +14817,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aFE" = ( +"aFh" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -15546,7 +14826,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aFF" = ( +"aFi" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Unisex Restrooms"; @@ -15560,7 +14840,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aFG" = ( +"aFj" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -15574,25 +14854,25 @@ dir = 1 }, /area/crew_quarters/dorms) -"aFH" = ( +"aFk" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/dorms) -"aFI" = ( +"aFl" = ( /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aFJ" = ( +"aFm" = ( /obj/structure/chair/stool{ pixel_y = 8 }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aFK" = ( +"aFn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aFL" = ( +"aFo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/firealarm{ dir = 4; @@ -15602,23 +14882,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"aFM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"aFN" = ( -/obj/structure/rack, -/obj/item/stock_parts/matter_bin, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/fore) -"aFO" = ( +"aFp" = ( /obj/structure/reagent_dispensers/watertank, /obj/machinery/firealarm{ dir = 8; @@ -15634,19 +14898,19 @@ dir = 1 }, /area/engine/engineering) -"aFP" = ( +"aFq" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aFQ" = ( +"aFr" = ( /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aFR" = ( +"aFs" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -15655,7 +14919,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aFS" = ( +"aFt" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -15690,7 +14954,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aFT" = ( +"aFu" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -15700,7 +14964,7 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"aFU" = ( +"aFv" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -15709,27 +14973,23 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aFV" = ( +"aFw" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aFW" = ( +"aFx" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/engineering) -"aFX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aFY" = ( +"aFz" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering/glass{ name = "Supermatter Engine"; @@ -15737,7 +14997,7 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"aFZ" = ( +"aFA" = ( /obj/structure/cable{ icon_state = "2-4" }, @@ -15746,7 +15006,7 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aGa" = ( +"aFB" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -15756,7 +15016,7 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aGb" = ( +"aFC" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -15766,41 +15026,7 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aGc" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"aGd" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aGe" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Mix Bypass"; - on = 0 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aGf" = ( +"aFD" = ( /obj/structure/cable/white{ icon_state = "1-4" }, @@ -15810,85 +15036,19 @@ /obj/machinery/atmospherics/pipe/manifold/cyan/visible, /turf/open/floor/engine, /area/engine/engineering) -"aGg" = ( -/obj/structure/cable/white{ - icon_state = "4-8" +"aFE" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_y = 32 }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 +/obj/item/folder, +/obj/item/folder, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/cult{ + dir = 2 }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aGh" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"aGi" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Laser Room"; - req_access_txt = "10" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aGj" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aGk" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aGl" = ( -/obj/structure/cable/white{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aGm" = ( -/turf/closed/wall/r_wall, -/area/space/nearstation) -"aGn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aGo" = ( -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aGp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aGq" = ( -/obj/structure/closet/crate, -/obj/item/coin/silver, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aGr" = ( +/area/library) +"aFF" = ( /obj/structure/table, /obj/item/folder/yellow, /obj/item/pen, @@ -15901,7 +15061,7 @@ dir = 10 }, /area/quartermaster/miningoffice) -"aGs" = ( +"aFG" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -15911,7 +15071,7 @@ dir = 2 }, /area/quartermaster/miningoffice) -"aGt" = ( +"aFH" = ( /obj/structure/rack, /obj/item/pickaxe{ pixel_x = 5 @@ -15924,7 +15084,7 @@ dir = 2 }, /area/quartermaster/miningoffice) -"aGu" = ( +"aFI" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -15933,13 +15093,13 @@ dir = 2 }, /area/quartermaster/miningoffice) -"aGv" = ( +"aFJ" = ( /obj/structure/closet/secure_closet/miner, /turf/open/floor/plasteel/brown{ dir = 6 }, /area/quartermaster/miningoffice) -"aGw" = ( +"aFK" = ( /obj/machinery/door/poddoor/shutters{ id = "qm_warehouse"; name = "Warehouse Shutters" @@ -15952,11 +15112,11 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/warehouse) -"aGx" = ( +"aFL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/quartermaster/warehouse) -"aGy" = ( +"aFM" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "0"; req_one_access_txt = "12;63;48;50" @@ -15966,12 +15126,13 @@ /obj/structure/cable/yellow{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/maintenance/port/fore) -"aGz" = ( +"aFN" = ( /turf/closed/wall, /area/construction/storage/wing) -"aGA" = ( +"aFO" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -15981,7 +15142,7 @@ }, /turf/open/floor/plating, /area/construction/storage/wing) -"aGB" = ( +"aFP" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -15991,7 +15152,7 @@ }, /turf/open/floor/plating, /area/construction/storage/wing) -"aGC" = ( +"aFQ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -16000,7 +15161,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/construction/storage/wing) -"aGD" = ( +"aFR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -16009,11 +15170,14 @@ /obj/machinery/door/airlock/public/glass{ name = "Vault Storage" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/vault{ dir = 5 }, /area/construction/storage/wing) -"aGE" = ( +"aFS" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" @@ -16021,7 +15185,7 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/construction/storage/wing) -"aGF" = ( +"aFT" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -16034,14 +15198,14 @@ }, /turf/open/floor/plating, /area/construction/storage/wing) -"aGG" = ( +"aFU" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/open/floor/plating, /area/construction/storage/wing) -"aGH" = ( +"aFV" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -16059,13 +15223,13 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aGI" = ( +"aFW" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aGJ" = ( +"aFX" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -16074,7 +15238,7 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aGK" = ( +"aFY" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -16089,7 +15253,7 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aGL" = ( +"aFZ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -16103,7 +15267,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGM" = ( +"aGa" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -16114,7 +15278,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGN" = ( +"aGb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16128,7 +15292,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGO" = ( +"aGc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16139,7 +15303,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGP" = ( +"aGd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16154,7 +15318,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGQ" = ( +"aGe" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16165,7 +15329,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGR" = ( +"aGf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16181,7 +15345,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGS" = ( +"aGg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16189,7 +15353,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGT" = ( +"aGh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16203,7 +15367,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGU" = ( +"aGi" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16214,7 +15378,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGV" = ( +"aGj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16223,7 +15387,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aGW" = ( +"aGk" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -16232,7 +15396,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aGX" = ( +"aGl" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -16240,7 +15404,7 @@ dir = 2 }, /area/hallway/primary/fore) -"aGY" = ( +"aGm" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -16248,7 +15412,7 @@ dir = 2 }, /area/hallway/primary/fore) -"aGZ" = ( +"aGn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -16256,13 +15420,13 @@ dir = 2 }, /area/hallway/primary/fore) -"aHa" = ( +"aGo" = ( /obj/item/device/radio/beacon, /turf/open/floor/plasteel/red/corner{ dir = 2 }, /area/hallway/primary/fore) -"aHb" = ( +"aGp" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/machinery/door/poddoor/preopen{ @@ -16271,7 +15435,7 @@ }, /turf/open/floor/plating, /area/security/brig) -"aHc" = ( +"aGq" = ( /obj/machinery/computer/security{ dir = 1 }, @@ -16280,7 +15444,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aHd" = ( +"aGr" = ( /obj/structure/table, /obj/item/folder/red{ pixel_x = 3 @@ -16299,7 +15463,7 @@ /obj/item/restraints/handcuffs, /turf/open/floor/plasteel/dark, /area/security/brig) -"aHe" = ( +"aGs" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -16315,21 +15479,21 @@ }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aHf" = ( +"aGt" = ( /obj/machinery/light/small{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/security/brig) -"aHg" = ( +"aGu" = ( /obj/structure/bodycontainer/morgue, /turf/open/floor/plasteel/dark, /area/security/detectives_office) -"aHh" = ( +"aGv" = ( /obj/machinery/light/small, /turf/open/floor/plasteel/dark, /area/security/detectives_office) -"aHi" = ( +"aGw" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -16341,7 +15505,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aHj" = ( +"aGx" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -16354,19 +15518,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/fore) -"aHk" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/fore) -"aHl" = ( +"aGy" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -16379,7 +15531,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aHm" = ( +"aGz" = ( /obj/structure/toilet{ pixel_y = 8 }, @@ -16400,40 +15552,38 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aHn" = ( +"aGA" = ( /obj/machinery/door/airlock{ id_tag = "Toilet2"; name = "Unit 2" }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aHo" = ( +"aGB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aHp" = ( +"aGC" = ( /obj/machinery/light/small{ dir = 4 }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aHq" = ( +"aGD" = ( /obj/machinery/light/small{ dir = 8 }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aHr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 +"aGE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aHs" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/fore) +"aGF" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -16442,7 +15592,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aHt" = ( +"aGG" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -16457,14 +15607,14 @@ dir = 1 }, /area/crew_quarters/dorms) -"aHu" = ( +"aGH" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aHv" = ( +"aGI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16472,7 +15622,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"aHw" = ( +"aGJ" = ( /obj/machinery/light/small, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -16485,7 +15635,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"aHx" = ( +"aGK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -16494,7 +15644,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"aHy" = ( +"aGL" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -16502,7 +15652,7 @@ dir = 2 }, /area/crew_quarters/dorms) -"aHz" = ( +"aGM" = ( /obj/machinery/door/airlock{ id_tag = "Cabin7"; name = "Cabin 1" @@ -16512,13 +15662,12 @@ }, /turf/open/floor/wood, /area/crew_quarters/dorms) -"aHA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +"aGN" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"aHB" = ( +/area/maintenance/port) +"aGO" = ( /obj/effect/landmark/xeno_spawn, /obj/machinery/airalarm{ pixel_y = 23 @@ -16531,33 +15680,12 @@ }, /turf/open/floor/wood, /area/crew_quarters/dorms) -"aHC" = ( +"aGP" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/item/clothing/under/assistantformal, /turf/open/floor/wood, /area/crew_quarters/dorms) -"aHD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aHE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"aHF" = ( +"aGQ" = ( /obj/structure/table, /obj/item/stack/rods/fifty, /obj/item/wrench, @@ -16569,7 +15697,7 @@ dir = 1 }, /area/engine/engineering) -"aHG" = ( +"aGR" = ( /obj/structure/table, /obj/item/stack/sheet/metal/fifty, /obj/item/stack/sheet/metal/fifty, @@ -16587,7 +15715,7 @@ dir = 1 }, /area/engine/engineering) -"aHH" = ( +"aGS" = ( /obj/structure/table, /obj/item/stack/cable_coil{ pixel_x = 3; @@ -16613,7 +15741,7 @@ dir = 1 }, /area/engine/engineering) -"aHI" = ( +"aGT" = ( /obj/structure/closet/crate{ name = "solar pack crate" }, @@ -16640,7 +15768,7 @@ dir = 1 }, /area/engine/engineering) -"aHJ" = ( +"aGU" = ( /obj/machinery/power/port_gen/pacman, /obj/structure/cable/yellow, /obj/effect/turf_decal/bot{ @@ -16650,7 +15778,7 @@ dir = 1 }, /area/engine/engineering) -"aHK" = ( +"aGV" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, @@ -16659,22 +15787,12 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aHL" = ( +"aGW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/landmark/start/station_engineer, /turf/open/floor/plasteel, /area/engine/engineering) -"aHM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"aHN" = ( +"aGX" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -16683,16 +15801,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aHO" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aHP" = ( +"aGY" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -16701,7 +15810,7 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aHQ" = ( +"aGZ" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/components/binary/pump{ dir = 8; @@ -16709,77 +15818,24 @@ }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aHR" = ( -/obj/effect/turf_decal/bot{ +"aHa" = ( +/obj/structure/cable/white, +/turf/open/floor/plating, +/area/engine/engineering) +"aHb" = ( +/obj/machinery/camera{ + c_tag = "Auxillary Mining Base"; dir = 1 }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aHS" = ( -/obj/machinery/status_display, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"aHT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, +/obj/structure/mining_shuttle_beacon, /turf/open/floor/plating, -/area/engine/supermatter) -"aHU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aHV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, -/turf/open/floor/engine, -/area/engine/engineering) -"aHW" = ( -/obj/structure/cable/white, -/turf/open/floor/plating, -/area/engine/engineering) -"aHX" = ( -/obj/structure/cable/white, -/obj/machinery/power/emitter/anchored{ - dir = 2; - state = 2 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aHY" = ( -/obj/structure/cable/white, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aHZ" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aIa" = ( +/area/shuttle/auxillary_base) +"aHc" = ( /obj/effect/spawner/structure/window, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/quartermaster/miningoffice) -"aIb" = ( +"aHd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -16792,7 +15848,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/miningoffice) -"aIc" = ( +"aHe" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -16803,7 +15859,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aId" = ( +"aHf" = ( /obj/machinery/button/door{ id = "qm_warehouse"; name = "Warehouse Door Control"; @@ -16818,7 +15874,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aIe" = ( +"aHg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -16827,7 +15883,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aIf" = ( +"aHh" = ( /obj/machinery/firealarm{ pixel_y = 27 }, @@ -16836,7 +15892,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aIg" = ( +"aHi" = ( /obj/machinery/light_switch{ pixel_y = 28 }, @@ -16845,7 +15901,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aIh" = ( +"aHj" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining{ name = "Cargo Bay"; @@ -16853,9 +15909,12 @@ req_one_access_txt = "48;50" }, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aIi" = ( +"aHk" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, @@ -16868,7 +15927,7 @@ }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aIj" = ( +"aHl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16883,7 +15942,7 @@ }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aIk" = ( +"aHm" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/mining{ name = "Cargo Bay"; @@ -16894,9 +15953,12 @@ dir = 4 }, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aIl" = ( +"aHn" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -16905,7 +15967,7 @@ }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aIm" = ( +"aHo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16913,7 +15975,7 @@ dir = 8 }, /area/construction/storage/wing) -"aIn" = ( +"aHp" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -16921,7 +15983,7 @@ dir = 8 }, /area/construction/storage/wing) -"aIo" = ( +"aHq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16933,7 +15995,7 @@ dir = 8 }, /area/construction/storage/wing) -"aIp" = ( +"aHr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -16944,7 +16006,7 @@ dir = 8 }, /area/construction/storage/wing) -"aIq" = ( +"aHs" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -16952,7 +16014,7 @@ dir = 8 }, /area/construction/storage/wing) -"aIr" = ( +"aHt" = ( /obj/machinery/vending/cigarette, /obj/machinery/newscaster{ pixel_y = 32 @@ -16963,49 +16025,49 @@ }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aIs" = ( +"aHu" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aIt" = ( +"aHv" = ( /obj/structure/chair/office/dark, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aIu" = ( +"aHw" = ( /obj/structure/table, /obj/machinery/recharger, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aIv" = ( +"aHx" = ( /turf/closed/wall/r_wall, /area/hallway/primary/fore) -"aIw" = ( +"aHy" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /turf/open/floor/plating, /area/hallway/primary/fore) -"aIx" = ( +"aHz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/red/corner{ dir = 8 }, /area/hallway/primary/fore) -"aIy" = ( +"aHA" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aIz" = ( +"aHB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/corner{ dir = 2 }, /area/hallway/primary/fore) -"aIA" = ( +"aHC" = ( /obj/structure/sign/directions/security{ desc = "A direction sign, pointing out which way the security department is."; dir = 1; @@ -17014,13 +16076,13 @@ }, /turf/closed/wall, /area/security/courtroom) -"aIB" = ( +"aHD" = ( /turf/closed/wall, /area/security/courtroom) -"aIC" = ( +"aHE" = ( /turf/closed/wall/r_wall, /area/security/courtroom) -"aID" = ( +"aHF" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security{ name = "Court Cell"; @@ -17029,10 +16091,10 @@ }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aIE" = ( +"aHG" = ( /turf/closed/wall, /area/lawoffice) -"aIF" = ( +"aHH" = ( /obj/machinery/door/airlock/maintenance{ name = "Law Office Maintenance"; req_access_txt = "38" @@ -17042,7 +16104,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aIG" = ( +"aHI" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -17051,7 +16113,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aIH" = ( +"aHJ" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 @@ -17061,20 +16123,20 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aII" = ( +"aHK" = ( /obj/machinery/door/airlock{ id_tag = "Toilet4"; name = "Unit 4" }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aIJ" = ( +"aHL" = ( /obj/machinery/door/airlock{ name = "Unit B" }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aIK" = ( +"aHM" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -17090,14 +16152,14 @@ dir = 1 }, /area/crew_quarters/dorms) -"aIL" = ( +"aHN" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aIM" = ( +"aHO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -17105,34 +16167,27 @@ dir = 2 }, /area/crew_quarters/dorms) -"aIN" = ( -/obj/structure/closet/wardrobe/pjs, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ +"aHQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/turf/open/floor/plasteel/vault, -/area/crew_quarters/dorms) -"aIO" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/assistantformal, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/turf/open/floor/plasteel/vault, -/area/crew_quarters/dorms) -"aIP" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aHR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/structure/closet/wardrobe/pjs, /turf/open/floor/plasteel/vault, /area/crew_quarters/dorms) -"aIQ" = ( +"aHS" = ( /obj/machinery/button/door{ id = "Cabin7"; name = "Door Bolt Control"; @@ -17148,13 +16203,13 @@ }, /turf/open/floor/wood, /area/crew_quarters/dorms) -"aIR" = ( +"aHT" = ( /obj/structure/chair/wood/normal{ dir = 4 }, /turf/open/floor/wood, /area/crew_quarters/dorms) -"aIS" = ( +"aHU" = ( /obj/structure/table/wood, /obj/machinery/newscaster{ pixel_x = 29; @@ -17163,7 +16218,7 @@ /obj/item/paper, /turf/open/floor/wood, /area/crew_quarters/dorms) -"aIT" = ( +"aHV" = ( /obj/structure/closet, /obj/item/storage/box/donkpockets, /obj/effect/spawner/lootdrop/maintenance{ @@ -17172,7 +16227,16 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aIU" = ( +"aHW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"aHX" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -17182,11 +16246,11 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aIV" = ( +"aHY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/engineering) -"aIW" = ( +"aHZ" = ( /obj/item/clothing/gloves/color/yellow, /obj/item/clothing/gloves/color/yellow, /obj/item/clothing/gloves/color/yellow, @@ -17201,56 +16265,37 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aIX" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"aIY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aIZ" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"aJa" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"aJb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"aJc" = ( -/obj/effect/turf_decal/stripes/line{ +"aIc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/effect/spawner/structure/window/plasma/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/engine, +/turf/open/floor/plating, /area/engine/engineering) -"aJd" = ( +"aIe" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"aIf" = ( /obj/machinery/camera{ - c_tag = "Auxillary Mining Base"; + c_tag = "Auxillary Base Construction"; dir = 1 }, -/obj/structure/mining_shuttle_beacon, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aJe" = ( +/obj/machinery/button/door{ + id = "aux_base_shutters"; + name = "Public Shutters Control"; + pixel_y = -24; + req_access_txt = "0"; + req_one_access_txt = "32;47;48" + }, +/turf/open/floor/plasteel/yellow/side, +/area/construction/mining/aux_base) +"aIg" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/quartermaster/storage) -"aJf" = ( +"aIh" = ( /obj/item/device/radio/intercom{ dir = 4; name = "Station Intercom (General)"; @@ -17268,14 +16313,14 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aJg" = ( +"aIi" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/loading_area{ dir = 4 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aJh" = ( +"aIj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -17284,7 +16329,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aJi" = ( +"aIk" = ( /obj/structure/sign/map/left{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; @@ -17298,7 +16343,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aJj" = ( +"aIl" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -17320,7 +16365,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aJk" = ( +"aIm" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -17338,7 +16383,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aJl" = ( +"aIn" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -17350,7 +16395,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aJm" = ( +"aIo" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -17366,7 +16411,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aJn" = ( +"aIp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -17381,7 +16426,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aJo" = ( +"aIq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -17396,7 +16441,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aJp" = ( +"aIr" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -17410,9 +16455,12 @@ req_one_access_txt = "48;50" }, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aJq" = ( +"aIs" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -17427,7 +16475,7 @@ }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aJr" = ( +"aIt" = ( /obj/machinery/camera{ c_tag = "Cargo Bay - Storage Wing Entrance"; dir = 1; @@ -17438,7 +16486,7 @@ }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aJs" = ( +"aIu" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -17458,21 +16506,16 @@ dir = 4 }, /area/construction/storage/wing) -"aJt" = ( +"aIv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 +/turf/open/floor/plating{ + icon_state = "platingdmg3" }, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/brown/corner{ - dir = 4 - }, -/area/construction/storage/wing) -"aJu" = ( +/area/maintenance/starboard/fore) +"aIw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -17486,7 +16529,7 @@ dir = 4 }, /area/construction/storage/wing) -"aJv" = ( +"aIx" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -17513,7 +16556,7 @@ dir = 4 }, /area/construction/storage/wing) -"aJw" = ( +"aIy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -17524,7 +16567,7 @@ dir = 4 }, /area/construction/storage/wing) -"aJx" = ( +"aIz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -17542,7 +16585,7 @@ dir = 4 }, /area/construction/storage/wing) -"aJy" = ( +"aIA" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -17551,7 +16594,7 @@ }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aJz" = ( +"aIB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -17560,7 +16603,7 @@ }, /turf/open/floor/plasteel, /area/construction/storage/wing) -"aJA" = ( +"aIC" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -17575,7 +16618,7 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aJB" = ( +"aID" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -17587,7 +16630,7 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aJC" = ( +"aIE" = ( /obj/structure/table, /obj/item/folder/red, /obj/item/restraints/handcuffs, @@ -17599,7 +16642,7 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aJD" = ( +"aIF" = ( /obj/machinery/light/small, /obj/structure/table, /obj/item/paper_bin{ @@ -17615,21 +16658,21 @@ }, /turf/open/floor/plasteel/dark, /area/hallway/primary/fore) -"aJE" = ( +"aIG" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/open/floor/plating, /area/hallway/primary/fore) -"aJF" = ( +"aIH" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" }, /turf/open/floor/plating, /area/hallway/primary/fore) -"aJG" = ( +"aII" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -17638,7 +16681,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aJH" = ( +"aIJ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -17650,7 +16693,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aJI" = ( +"aIK" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -17658,7 +16701,7 @@ dir = 2 }, /area/hallway/primary/fore) -"aJJ" = ( +"aIL" = ( /obj/structure/closet/secure_closet/courtroom, /obj/machinery/light_switch{ pixel_y = 28 @@ -17667,13 +16710,13 @@ /obj/item/gavelhammer, /turf/open/floor/plasteel, /area/security/courtroom) -"aJK" = ( +"aIM" = ( /obj/structure/chair{ name = "Bailiff" }, /turf/open/floor/plasteel, /area/security/courtroom) -"aJL" = ( +"aIN" = ( /obj/item/device/radio/intercom{ broadcasting = 0; listening = 1; @@ -17682,7 +16725,7 @@ }, /turf/open/floor/plasteel, /area/security/courtroom) -"aJM" = ( +"aIO" = ( /obj/structure/chair{ name = "Judge" }, @@ -17690,7 +16733,7 @@ dir = 9 }, /area/security/courtroom) -"aJN" = ( +"aIP" = ( /obj/structure/chair{ name = "Judge" }, @@ -17709,7 +16752,7 @@ dir = 1 }, /area/security/courtroom) -"aJO" = ( +"aIQ" = ( /obj/structure/chair{ name = "Judge" }, @@ -17717,19 +16760,19 @@ dir = 5 }, /area/security/courtroom) -"aJP" = ( +"aIR" = ( /turf/open/floor/plasteel, /area/security/courtroom) -"aJQ" = ( +"aIS" = ( /obj/structure/window/reinforced{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aJR" = ( +"aIT" = ( /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aJS" = ( +"aIU" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ pixel_x = 1; @@ -17744,7 +16787,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aJT" = ( +"aIV" = ( /obj/structure/table/wood, /obj/item/book/manual/wiki/security_space_law, /obj/item/book/manual/wiki/security_space_law, @@ -17757,7 +16800,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aJU" = ( +"aIW" = ( /obj/structure/rack, /obj/item/storage/briefcase{ pixel_x = -3; @@ -17770,7 +16813,7 @@ /obj/item/clothing/glasses/sunglasses, /turf/open/floor/wood, /area/lawoffice) -"aJV" = ( +"aIX" = ( /obj/structure/cable/yellow{ icon_state = "0-2" }, @@ -17785,13 +16828,13 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aJW" = ( +"aIY" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/wood, /area/lawoffice) -"aJX" = ( +"aIZ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -17802,7 +16845,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aJY" = ( +"aJa" = ( /obj/structure/toilet{ pixel_y = 8 }, @@ -17823,14 +16866,14 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aJZ" = ( +"aJb" = ( /obj/machinery/door/airlock{ id_tag = "Toilet1"; name = "Unit 1" }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aKa" = ( +"aJc" = ( /obj/structure/toilet{ dir = 4 }, @@ -17851,12 +16894,12 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aKb" = ( +"aJd" = ( /obj/machinery/light/small, /obj/machinery/recharge_station, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aKc" = ( +"aJe" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -17865,40 +16908,37 @@ dir = 1 }, /area/crew_quarters/dorms) -"aKd" = ( +"aJf" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/crew_quarters/dorms) -"aKe" = ( +"aJg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/neutral/corner{ dir = 2 }, /area/crew_quarters/dorms) -"aKf" = ( +"aJh" = ( /turf/closed/wall, /area/hydroponics/garden) -"aKg" = ( +"aJi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, /obj/structure/cable/yellow{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, /turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aKh" = ( +/area/maintenance/port/fore) +"aJj" = ( /obj/effect/decal/cleanable/cobweb, /obj/machinery/field/generator, /turf/open/floor/plating, /area/engine/engineering) -"aKi" = ( +"aJk" = ( /obj/machinery/field/generator, /turf/open/floor/plating, /area/engine/engineering) -"aKj" = ( +"aJl" = ( /obj/machinery/shieldgen, /obj/machinery/light/small{ dir = 1 @@ -17910,17 +16950,17 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"aKk" = ( +"aJm" = ( /obj/machinery/shieldgen, /turf/open/floor/plating, /area/engine/engineering) -"aKl" = ( +"aJn" = ( /obj/structure/table, /obj/item/airlock_painter, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/engineering) -"aKm" = ( +"aJp" = ( /obj/structure/table, /obj/effect/turf_decal/delivery, /obj/item/clothing/glasses/meson/engine, @@ -17937,82 +16977,21 @@ /obj/item/pipe_dispenser, /turf/open/floor/plasteel, /area/engine/engineering) -"aKn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/engine, +"aJu" = ( +/turf/open/floor/plating, /area/engine/engineering) -"aKo" = ( +"aJv" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 6 }, /turf/closed/wall/r_wall, /area/engine/supermatter) -"aKp" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable, -/obj/structure/window/plasma/reinforced, -/turf/open/floor/engine, -/area/engine/supermatter) -"aKq" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable, -/obj/structure/window/plasma/reinforced, -/turf/open/floor/engine, -/area/engine/supermatter) -"aKr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, -/turf/open/floor/engine, -/area/engine/engineering) -"aKs" = ( -/obj/structure/window/reinforced, -/turf/open/space, -/area/space/nearstation) -"aKt" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aKu" = ( -/obj/docking_port/mobile/auxillary_base{ - dheight = 4; - dir = 2; - dwidth = 4; - height = 9; - width = 9; - timid = 0 - }, -/obj/machinery/bluespace_beacon, -/obj/machinery/computer/auxillary_base, -/turf/closed/wall, -/area/shuttle/auxillary_base) -"aKv" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aKw" = ( +"aJB" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/sign/warning/vacuum/external, /turf/open/floor/plating, /area/quartermaster/storage) -"aKx" = ( +"aJC" = ( /obj/machinery/light{ dir = 8 }, @@ -18023,7 +17002,7 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aKy" = ( +"aJD" = ( /obj/machinery/conveyor_switch/oneway{ convdir = 1; id = "QMLoad2"; @@ -18037,31 +17016,31 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aKz" = ( +"aJE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aKA" = ( +"aJF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aKB" = ( +"aJG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aKC" = ( +"aJH" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aKD" = ( +"aJI" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -18071,7 +17050,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aKE" = ( +"aJJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -18084,7 +17063,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aKF" = ( +"aJK" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; dir = 8; @@ -18106,7 +17085,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aKG" = ( +"aJL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -18115,9 +17094,12 @@ req_access_txt = "0"; req_one_access_txt = "12;63;48;50" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aKH" = ( +"aJM" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -18127,14 +17109,14 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aKI" = ( +"aJN" = ( /turf/closed/wall, /area/storage/primary) -"aKJ" = ( +"aJO" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/storage/primary) -"aKK" = ( +"aJP" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Primary Tool Storage" @@ -18143,7 +17125,7 @@ dir = 2 }, /area/storage/primary) -"aKL" = ( +"aJQ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Primary Tool Storage" @@ -18153,13 +17135,13 @@ dir = 2 }, /area/storage/primary) -"aKM" = ( +"aJR" = ( /turf/closed/wall/r_wall, /area/storage/primary) -"aKN" = ( +"aJS" = ( /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai_upload) -"aKO" = ( +"aJT" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -18167,7 +17149,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aKP" = ( +"aJU" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -18176,7 +17158,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aKQ" = ( +"aJV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -18185,7 +17167,7 @@ dir = 2 }, /area/hallway/primary/fore) -"aKR" = ( +"aJW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -18197,18 +17179,18 @@ }, /turf/open/floor/plasteel, /area/security/courtroom) -"aKS" = ( +"aJX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/plasteel, /area/security/courtroom) -"aKT" = ( +"aJY" = ( /turf/open/floor/plasteel/neutral/side{ dir = 9 }, /area/security/courtroom) -"aKU" = ( +"aJZ" = ( /obj/structure/table/wood, /obj/item/device/radio/intercom{ broadcasting = 1; @@ -18220,7 +17202,7 @@ dir = 1 }, /area/security/courtroom) -"aKV" = ( +"aKa" = ( /obj/structure/table/wood, /obj/item/gavelblock, /obj/item/gavelhammer, @@ -18228,19 +17210,19 @@ dir = 1 }, /area/security/courtroom) -"aKW" = ( +"aKb" = ( /obj/structure/table/wood, /obj/item/book/manual/wiki/security_space_law, /turf/open/floor/plasteel/neutral/side{ dir = 1 }, /area/security/courtroom) -"aKX" = ( +"aKc" = ( /turf/open/floor/plasteel/neutral/side{ dir = 5 }, /area/security/courtroom) -"aKY" = ( +"aKd" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 @@ -18252,14 +17234,14 @@ dir = 8 }, /area/security/courtroom) -"aKZ" = ( +"aKe" = ( /obj/machinery/door/window/southleft{ name = "Court Cell"; req_access_txt = "2" }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aLa" = ( +"aKf" = ( /obj/effect/landmark/start/lawyer, /obj/structure/chair/office/dark{ dir = 4 @@ -18271,7 +17253,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aLb" = ( +"aKg" = ( /obj/structure/table/wood, /obj/item/folder/blue, /obj/item/folder/blue, @@ -18280,13 +17262,13 @@ /obj/item/stamp/law, /turf/open/floor/wood, /area/lawoffice) -"aLc" = ( +"aKh" = ( /obj/structure/chair{ dir = 8 }, /turf/open/floor/wood, /area/lawoffice) -"aLd" = ( +"aKi" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -18295,7 +17277,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aLe" = ( +"aKj" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -18305,7 +17287,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aLf" = ( +"aKk" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -18317,7 +17299,7 @@ }, /turf/open/floor/plating, /area/maintenance/fore) -"aLg" = ( +"aKl" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Unisex Restrooms"; @@ -18325,7 +17307,7 @@ }, /turf/open/floor/plasteel/freezer, /area/crew_quarters/toilet/restrooms) -"aLh" = ( +"aKm" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -18339,12 +17321,12 @@ dir = 1 }, /area/crew_quarters/dorms) -"aLi" = ( +"aKn" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/crew_quarters/dorms) -"aLj" = ( +"aKo" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/airlock{ @@ -18355,7 +17337,7 @@ dir = 4 }, /area/crew_quarters/dorms) -"aLk" = ( +"aKp" = ( /obj/item/reagent_containers/spray/plantbgone, /obj/item/reagent_containers/spray/pestspray{ pixel_x = 3; @@ -18373,7 +17355,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aLl" = ( +"aKq" = ( /obj/machinery/biogenerator, /obj/machinery/firealarm{ pixel_y = 27 @@ -18381,7 +17363,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aLm" = ( +"aKr" = ( /obj/structure/table, /obj/item/cultivator, /obj/item/hatchet, @@ -18394,7 +17376,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aLn" = ( +"aKs" = ( /obj/machinery/seed_extractor, /obj/machinery/airalarm{ pixel_y = 23 @@ -18402,7 +17384,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aLo" = ( +"aKt" = ( /obj/item/seeds/apple, /obj/item/seeds/banana, /obj/item/seeds/cocoapod, @@ -18416,20 +17398,20 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aLp" = ( +"aKu" = ( /obj/structure/window/reinforced{ dir = 8 }, /turf/open/floor/grass, /area/hydroponics/garden) -"aLq" = ( +"aKv" = ( /mob/living/simple_animal/chicken{ name = "Featherbottom"; real_name = "Featherbottom" }, /turf/open/floor/grass, /area/hydroponics/garden) -"aLr" = ( +"aKw" = ( /obj/effect/decal/cleanable/cobweb, /obj/structure/closet/crate{ icon_state = "crateopen" @@ -18439,29 +17421,37 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aLs" = ( +"aKx" = ( /obj/machinery/portable_atmospherics/canister/toxins, /turf/open/floor/plating, /area/engine/engineering) -"aLt" = ( +"aKz" = ( /obj/machinery/door/poddoor{ id = "Secure Storage"; name = "Secure Storage" }, /turf/open/floor/plating, /area/engine/engineering) -"aLu" = ( +"aKA" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aLv" = ( +"aKB" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/engineering) -"aLw" = ( +"aKC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/engineering) +"aKF" = ( /obj/machinery/button/door{ id = "engsm"; name = "Radiation Shutters Control"; @@ -18476,13 +17466,13 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aLx" = ( +"aKG" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /turf/closed/wall/r_wall, /area/engine/supermatter) -"aLy" = ( +"aKH" = ( /obj/machinery/atmospherics/components/binary/pump/on{ dir = 4; name = "Gas to Chamber"; @@ -18490,100 +17480,26 @@ }, /turf/open/floor/engine, /area/engine/supermatter) -"aLz" = ( +"aKI" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 9 }, /obj/machinery/meter, /turf/closed/wall/r_wall, /area/engine/supermatter) -"aLA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 +"aKL" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Mix Bypass"; + on = 0 }, /turf/open/floor/engine, -/area/engine/supermatter) -"aLB" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"aLC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Starboard"; - dir = 4; - network = list("SS13","Engine") - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/engine, /area/engine/engineering) -"aLD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"aLE" = ( -/obj/structure/reflector/single/anchored{ - dir = 9 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aLF" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"aLG" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aLH" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aLI" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aLJ" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aLK" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"aLL" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aLM" = ( +"aKN" = ( /obj/machinery/door/poddoor{ density = 1; icon_state = "closed"; @@ -18598,7 +17514,7 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aLN" = ( +"aKO" = ( /obj/structure/plasticflaps, /obj/machinery/conveyor{ dir = 4; @@ -18607,7 +17523,7 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aLO" = ( +"aKP" = ( /obj/machinery/conveyor{ dir = 1; id = "QMLoad2"; @@ -18615,26 +17531,26 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aLP" = ( +"aKQ" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aLQ" = ( +"aKR" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aLR" = ( +"aKS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aLS" = ( +"aKT" = ( /obj/structure/closet/crate, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -18644,7 +17560,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aLT" = ( +"aKU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -18652,7 +17568,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aLU" = ( +"aKV" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -18661,21 +17577,21 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aLV" = ( +"aKW" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aLW" = ( +"aKX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/loading_area{ dir = 8 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aLX" = ( +"aKY" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; dir = 8; @@ -18688,7 +17604,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aLY" = ( +"aKZ" = ( /obj/machinery/door/window/northleft{ dir = 8; name = "MuleBot Supply Access"; @@ -18699,7 +17615,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aLZ" = ( +"aLa" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -18711,7 +17627,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aMa" = ( +"aLb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -18721,7 +17637,7 @@ /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/port/fore) -"aMb" = ( +"aLc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -18730,18 +17646,11 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aMc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"aMd" = ( +"aLd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"aLe" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -18753,7 +17662,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aMe" = ( +"aLf" = ( /obj/structure/table, /obj/item/clothing/gloves/color/fyellow, /obj/item/device/gps{ @@ -18763,18 +17672,18 @@ dir = 9 }, /area/storage/primary) -"aMf" = ( +"aLg" = ( /turf/open/floor/plasteel/brown{ dir = 1 }, /area/storage/primary) -"aMg" = ( +"aLh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/brown{ dir = 1 }, /area/storage/primary) -"aMh" = ( +"aLi" = ( /obj/structure/table, /obj/item/stack/cable_coil{ pixel_x = 2; @@ -18795,7 +17704,7 @@ dir = 1 }, /area/storage/primary) -"aMi" = ( +"aLj" = ( /obj/structure/table, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high{ @@ -18809,25 +17718,23 @@ dir = 1 }, /area/storage/primary) -"aMj" = ( -/obj/machinery/vending/assist, -/obj/machinery/light/small{ - dir = 1 +"aLk" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 }, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/storage/primary) -"aMk" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aLl" = ( /obj/machinery/vending/tool, /turf/open/floor/plasteel/brown{ dir = 1 }, /area/storage/primary) -"aMl" = ( +"aLm" = ( /obj/structure/table, /obj/item/device/assembly/signaler, /obj/item/device/assembly/signaler, @@ -18842,33 +17749,33 @@ dir = 5 }, /area/storage/primary) -"aMm" = ( +"aLn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/storage/primary) -"aMn" = ( +"aLo" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/space, /area/space/nearstation) -"aMo" = ( +"aLp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai_upload) -"aMp" = ( +"aLq" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/machinery/porta_turret/ai, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aMq" = ( +"aLr" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -18878,7 +17785,7 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aMr" = ( +"aLs" = ( /obj/structure/sign/plaques/kiddie{ pixel_y = 32 }, @@ -18892,7 +17799,7 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aMs" = ( +"aLt" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -18901,33 +17808,33 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aMt" = ( +"aLu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/porta_turret/ai, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aMu" = ( +"aLv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai_upload) -"aMv" = ( +"aLw" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/space, /area/space/nearstation) -"aMw" = ( +"aLx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/hallway/primary/fore) -"aMx" = ( +"aLy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/airalarm{ dir = 4; @@ -18940,36 +17847,32 @@ dir = 8 }, /area/hallway/primary/fore) -"aMy" = ( +"aLz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/security/courtroom) -"aMz" = ( +"aLA" = ( /turf/open/floor/plasteel/neutral/side{ dir = 8 }, /area/security/courtroom) -"aMA" = ( +"aLB" = ( /obj/effect/landmark/start/lawyer, /turf/open/floor/plasteel, /area/security/courtroom) -"aMB" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aMC" = ( +"aLC" = ( /turf/open/floor/plasteel/neutral/side{ dir = 4 }, /area/security/courtroom) -"aMD" = ( +"aLD" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/machinery/light{ dir = 8 }, /turf/open/floor/wood, /area/lawoffice) -"aME" = ( +"aLE" = ( /obj/structure/table/wood, /obj/item/folder/red, /obj/item/folder/red, @@ -18977,14 +17880,14 @@ /obj/item/clothing/glasses/sunglasses/big, /turf/open/floor/wood, /area/lawoffice) -"aMF" = ( +"aLF" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/wood, /area/lawoffice) -"aMG" = ( +"aLG" = ( /obj/machinery/photocopier, /obj/machinery/camera{ c_tag = "Law Office"; @@ -18993,7 +17896,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aMH" = ( +"aLH" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ @@ -19001,60 +17904,24 @@ }, /turf/open/floor/plasteel/vault, /area/crew_quarters/locker) -"aMI" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/assistantformal, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/turf/open/floor/plasteel/vault, -/area/crew_quarters/locker) -"aMJ" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light/small{ - dir = 1 +"aLJ" = ( +/obj/structure/rack, +/obj/item/stock_parts/matter_bin, +/turf/open/floor/plating{ + icon_state = "platingdmg2" }, -/obj/item/clothing/under/assistantformal, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/turf/open/floor/plasteel/vault, -/area/crew_quarters/locker) -"aMK" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/assistantformal, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/turf/open/floor/plasteel/vault, -/area/crew_quarters/locker) -"aML" = ( +/area/maintenance/starboard/fore) +"aLK" = ( /turf/open/floor/plasteel/neutral/corner{ dir = 1 }, /area/crew_quarters/locker) -"aMM" = ( +"aLL" = ( /turf/open/floor/plasteel/neutral/corner{ dir = 4 }, /area/crew_quarters/locker) -"aMN" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/delivery, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"aMO" = ( +"aLN" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/machinery/portable_atmospherics/pump, /obj/machinery/light/small{ @@ -19066,7 +17933,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aMP" = ( +"aLO" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/machinery/portable_atmospherics/scrubber, /obj/machinery/status_display{ @@ -19075,7 +17942,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aMQ" = ( +"aLP" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/machinery/portable_atmospherics/scrubber, /obj/item/device/radio/intercom{ @@ -19090,7 +17957,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aMR" = ( +"aLQ" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /obj/machinery/camera{ @@ -19104,7 +17971,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aMS" = ( +"aLR" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -19113,11 +17980,11 @@ dir = 1 }, /area/crew_quarters/locker) -"aMT" = ( +"aLS" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/locker) -"aMU" = ( +"aLT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/light/small{ dir = 4 @@ -19126,7 +17993,7 @@ dir = 4 }, /area/crew_quarters/locker) -"aMV" = ( +"aLU" = ( /obj/structure/sink{ dir = 8; pixel_x = -12; @@ -19142,7 +18009,7 @@ dir = 9 }, /area/hydroponics/garden) -"aMW" = ( +"aLV" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -19150,7 +18017,7 @@ dir = 1 }, /area/hydroponics/garden) -"aMX" = ( +"aLW" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -19158,7 +18025,7 @@ dir = 5 }, /area/hydroponics/garden) -"aMY" = ( +"aLX" = ( /obj/machinery/door/firedoor/border_only/closed{ dir = 8; name = "Animal Pen A"; @@ -19166,30 +18033,30 @@ }, /turf/open/floor/grass, /area/hydroponics/garden) -"aMZ" = ( +"aLY" = ( /turf/open/floor/grass, /area/hydroponics/garden) -"aNa" = ( +"aLZ" = ( /obj/effect/landmark/blobstart, /turf/open/floor/plating{ icon_state = "platingdmg1" }, /area/maintenance/starboard/fore) -"aNb" = ( +"aMa" = ( /obj/machinery/power/emitter, /turf/open/floor/plating, /area/engine/engineering) -"aNc" = ( +"aMb" = ( /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/engine/engineering) -"aNd" = ( +"aMc" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 }, /turf/open/floor/plasteel, /area/engine/engineering) -"aNe" = ( +"aMd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "2-4" @@ -19197,7 +18064,7 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/engine/engineering) -"aNf" = ( +"aMe" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -19208,16 +18075,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/engine/engineering) -"aNg" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"aNh" = ( +"aMg" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ icon_state = "4-8" @@ -19228,7 +18086,7 @@ }, /turf/open/floor/plating, /area/engine/engineering) -"aNi" = ( +"aMh" = ( /obj/structure/cable{ icon_state = "2-8" }, @@ -19240,7 +18098,7 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aNj" = ( +"aMi" = ( /obj/machinery/atmospherics/components/binary/pump/on{ name = "Gas to Filter" }, @@ -19249,118 +18107,72 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aNk" = ( +"aMj" = ( /obj/machinery/door/airlock/engineering/glass{ heat_proof = 1; name = "Supermatter Chamber"; req_access_txt = "10" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/engine, /area/engine/supermatter) -"aNl" = ( +"aMk" = ( /turf/open/floor/engine, /area/engine/supermatter) -"aNm" = ( -/obj/machinery/power/supermatter_shard/crystal/engine, -/turf/open/floor/engine, -/area/engine/supermatter) -"aNn" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/supermatter) -"aNo" = ( +"aMm" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aNp" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aNq" = ( +"aMo" = ( /obj/structure/reflector/box/anchored{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aNr" = ( +"aMq" = ( +/obj/structure/window/reinforced, +/turf/open/space, +/area/space/nearstation) +"aMr" = ( /obj/structure/window/reinforced, /obj/structure/lattice, /turf/open/space, /area/space/nearstation) -"aNs" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"aNt" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aNu" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aNv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aNw" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aNx" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"aNy" = ( -/obj/docking_port/stationary/random{ - id = "pod_lavaland1"; - name = "lavaland" - }, -/turf/open/space, -/area/space/nearstation) -"aNz" = ( +"aMs" = ( /obj/machinery/door/airlock/external{ name = "Supply Dock Airlock"; req_access_txt = "31" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/quartermaster/storage) -"aNA" = ( +"aMt" = ( /obj/machinery/light/small, /turf/open/floor/plating, /area/quartermaster/storage) -"aNB" = ( +"aMu" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aNC" = ( +"aMv" = ( /turf/open/floor/plasteel, /area/quartermaster/storage) -"aND" = ( +"aMw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aNE" = ( +"aMx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/landmark/start/cargo_technician, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aNF" = ( +"aMy" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -19369,7 +18181,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aNG" = ( +"aMz" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; dir = 8; @@ -19386,7 +18198,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aNH" = ( +"aMA" = ( /obj/machinery/camera/autoname{ dir = 4; network = list("SS13") @@ -19400,28 +18212,28 @@ dir = 8 }, /area/storage/primary) -"aNI" = ( +"aMB" = ( /turf/open/floor/plasteel, /area/storage/primary) -"aNJ" = ( +"aMC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/open/floor/plasteel, /area/storage/primary) -"aNK" = ( +"aMD" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, /turf/open/floor/plasteel, /area/storage/primary) -"aNL" = ( +"aME" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/storage/primary) -"aNM" = ( +"aMF" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -19433,7 +18245,7 @@ dir = 4 }, /area/storage/primary) -"aNN" = ( +"aMG" = ( /obj/structure/table, /obj/item/aiModule/core/full/asimov, /obj/effect/spawner/lootdrop/aimodule_harmless, @@ -19454,10 +18266,10 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aNO" = ( +"aMH" = ( /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) -"aNP" = ( +"aMI" = ( /obj/structure/table, /obj/machinery/door/window{ base_state = "left"; @@ -19478,7 +18290,7 @@ /obj/item/aiModule/reset/purge, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aNQ" = ( +"aMJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/item/device/radio/intercom{ freerange = 0; @@ -19490,14 +18302,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aNR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aNS" = ( +"aMK" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -19505,7 +18310,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/security/courtroom) -"aNT" = ( +"aML" = ( /obj/structure/chair{ dir = 4; name = "Prosecution" @@ -19514,26 +18319,26 @@ dir = 9 }, /area/security/courtroom) -"aNU" = ( +"aMM" = ( /obj/structure/table/wood, /obj/item/folder/red, /turf/open/floor/plasteel/neutral/side{ dir = 8 }, /area/security/courtroom) -"aNV" = ( +"aMN" = ( /obj/machinery/holopad, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/security/courtroom) -"aNW" = ( +"aMO" = ( /obj/structure/table/wood, /obj/item/folder/blue, /turf/open/floor/plasteel/neutral/side{ dir = 4 }, /area/security/courtroom) -"aNX" = ( +"aMP" = ( /obj/structure/chair{ dir = 8; name = "Defense" @@ -19542,7 +18347,7 @@ dir = 5 }, /area/security/courtroom) -"aNY" = ( +"aMQ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Law Office"; @@ -19550,20 +18355,20 @@ }, /turf/open/floor/wood, /area/security/courtroom) -"aNZ" = ( +"aMR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/open/floor/wood, /area/lawoffice) -"aOa" = ( +"aMS" = ( /obj/effect/landmark/start/lawyer, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/wood, /area/lawoffice) -"aOb" = ( +"aMT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -19572,7 +18377,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aOc" = ( +"aMU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -19581,7 +18386,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aOd" = ( +"aMV" = ( /obj/structure/filingcabinet/employment, /obj/machinery/airalarm{ dir = 8; @@ -19589,7 +18394,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aOe" = ( +"aMW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -19603,7 +18408,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aOf" = ( +"aMX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -19617,7 +18422,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aOg" = ( +"aMY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -19628,7 +18433,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aOh" = ( +"aMZ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -19639,7 +18444,7 @@ dir = 4 }, /area/crew_quarters/locker) -"aOi" = ( +"aNa" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -19650,7 +18455,7 @@ dir = 4 }, /area/crew_quarters/locker) -"aOj" = ( +"aNb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -19662,7 +18467,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aOk" = ( +"aNc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -19673,7 +18478,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aOl" = ( +"aNd" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -19687,14 +18492,14 @@ dir = 1 }, /area/crew_quarters/locker) -"aOm" = ( +"aNe" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/disposalpipe/segment{ dir = 9 }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aOn" = ( +"aNf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=14.5-Recreation"; @@ -19704,27 +18509,27 @@ dir = 4 }, /area/crew_quarters/locker) -"aOo" = ( +"aNg" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, /area/hydroponics/garden) -"aOp" = ( +"aNh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/neutral/side{ dir = 8 }, /area/hydroponics/garden) -"aOq" = ( +"aNi" = ( /obj/machinery/hydroponics/constructable, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aOr" = ( +"aNj" = ( /turf/open/floor/plasteel/neutral/side{ dir = 4 }, /area/hydroponics/garden) -"aOs" = ( +"aNk" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -19735,29 +18540,21 @@ }, /turf/open/floor/grass, /area/hydroponics/garden) -"aOt" = ( +"aNl" = ( /obj/structure/window/reinforced, /turf/open/floor/grass, /area/hydroponics/garden) -"aOu" = ( +"aNm" = ( /obj/structure/rack, /obj/item/clothing/suit/hazardvest, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aOv" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aOw" = ( +"aNn" = ( /obj/machinery/power/emitter, /obj/machinery/light/small, /turf/open/floor/plating, /area/engine/engineering) -"aOx" = ( +"aNo" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/metal/fifty, /obj/item/stack/rods/fifty, @@ -19774,11 +18571,7 @@ /obj/item/device/gps, /turf/open/floor/plating, /area/engine/engineering) -"aOy" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/engine/engineering) -"aOz" = ( +"aNq" = ( /obj/structure/table, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high{ @@ -19788,38 +18581,14 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/engineering) -"aOA" = ( +"aNr" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/engine/engineering) -"aOB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Port"; - dir = 8; - network = list("SS13","Engine") - }, -/obj/machinery/airalarm/engine{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"aOC" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"aOD" = ( +"aNu" = ( /obj/machinery/atmospherics/components/binary/pump/on{ dir = 8; name = "Gas to Filter"; @@ -19827,57 +18596,17 @@ }, /turf/open/floor/engine, /area/engine/supermatter) -"aOE" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"aOF" = ( +"aNv" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/engine, /area/engine/supermatter) -"aOG" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"aOH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aOI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, -/turf/open/floor/engine, -/area/engine/engineering) -"aOJ" = ( -/obj/structure/reflector/double/anchored{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aOK" = ( -/obj/structure/reflector/single/anchored{ - dir = 10 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aOL" = ( +"aNw" = ( /obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/lattice, /turf/open/space, /area/space/nearstation) -"aOM" = ( +"aNx" = ( /obj/structure/window/reinforced{ dir = 1; layer = 2.9 @@ -19887,7 +18616,7 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"aON" = ( +"aNy" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1; @@ -19895,22 +18624,7 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"aOO" = ( -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aOP" = ( -/obj/structure/window/reinforced, -/obj/machinery/light/small, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Fore"; - dir = 1; - network = list("MiniSat") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aOQ" = ( +"aNz" = ( /obj/structure/window/reinforced{ dir = 1; pixel_y = 1 @@ -19918,7 +18632,15 @@ /obj/structure/window/reinforced, /turf/open/floor/plasteel/dark, /area/aisat) -"aOR" = ( +"aNA" = ( +/obj/structure/closet{ + name = "Evidence Closet 3" + }, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/security/warden) +"aNB" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -19928,21 +18650,18 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"aOS" = ( +"aNC" = ( /obj/structure/window/reinforced{ dir = 8 }, /obj/structure/lattice, /turf/open/space, /area/space/nearstation) -"aOT" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/pod_1) -"aOU" = ( +"aND" = ( /obj/effect/spawner/structure/window/shuttle, /turf/open/floor/plating, /area/shuttle/pod_1) -"aOV" = ( +"aNE" = ( /obj/machinery/button/door{ id = "QMLoaddoor"; layer = 4; @@ -19964,23 +18683,23 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aOW" = ( +"aNF" = ( /obj/effect/landmark/start/cargo_technician, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aOX" = ( +"aNG" = ( /obj/effect/spawner/lootdrop/maintenance, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aOY" = ( +"aNH" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aOZ" = ( +"aNI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -19988,7 +18707,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aPa" = ( +"aNJ" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -19996,7 +18715,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aPb" = ( +"aNK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -20007,7 +18726,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aPc" = ( +"aNL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -20017,7 +18736,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aPd" = ( +"aNM" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; dir = 8; @@ -20034,14 +18753,14 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aPe" = ( +"aNN" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plating, /area/quartermaster/qm) -"aPf" = ( +"aNO" = ( /obj/structure/closet/secure_closet/quartermaster, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -20051,7 +18770,7 @@ dir = 9 }, /area/quartermaster/qm) -"aPg" = ( +"aNP" = ( /obj/machinery/camera/autoname{ dir = 2; network = list("SS13") @@ -20073,7 +18792,7 @@ dir = 1 }, /area/quartermaster/qm) -"aPh" = ( +"aNQ" = ( /obj/structure/filingcabinet/chestdrawer, /obj/machinery/airalarm{ pixel_y = 23 @@ -20085,22 +18804,25 @@ dir = 1 }, /area/quartermaster/qm) -"aPi" = ( +"aNR" = ( /obj/structure/table, /obj/machinery/computer/stockexchange, /turf/open/floor/plasteel/brown{ dir = 1 }, /area/quartermaster/qm) -"aPj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" +"aNS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aPk" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"aNT" = ( /obj/structure/window/reinforced{ dir = 1; pixel_y = 1 @@ -20109,32 +18831,32 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/storage/primary) -"aPl" = ( +"aNU" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /turf/open/floor/plasteel, /area/storage/primary) -"aPm" = ( +"aNV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/storage/primary) -"aPn" = ( +"aNW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/storage/primary) -"aPo" = ( +"aNX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/open/floor/plasteel, /area/storage/primary) -"aPp" = ( +"aNY" = ( /obj/structure/table, /obj/item/device/assembly/igniter{ pixel_x = -4; @@ -20148,20 +18870,20 @@ dir = 4 }, /area/storage/primary) -"aPq" = ( +"aNZ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" }, /turf/open/floor/plating, /area/ai_monitored/turret_protected/ai_upload) -"aPr" = ( +"aOa" = ( /obj/machinery/porta_turret/ai{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aPs" = ( +"aOb" = ( /obj/machinery/computer/upload/borg, /obj/structure/window/reinforced{ dir = 1 @@ -20182,11 +18904,11 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aPt" = ( +"aOc" = ( /obj/machinery/holopad, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aPu" = ( +"aOd" = ( /obj/machinery/computer/upload/ai, /obj/structure/window/reinforced{ dir = 1 @@ -20207,19 +18929,19 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aPv" = ( +"aOe" = ( /obj/machinery/porta_turret/ai{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aPw" = ( +"aOf" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, /turf/open/floor/plasteel, /area/security/courtroom) -"aPx" = ( +"aOg" = ( /obj/structure/chair{ dir = 4; name = "Prosecution" @@ -20228,27 +18950,27 @@ dir = 10 }, /area/security/courtroom) -"aPy" = ( +"aOh" = ( /obj/structure/table/wood, /obj/item/paper, /turf/open/floor/plasteel/neutral/side{ dir = 10 }, /area/security/courtroom) -"aPz" = ( +"aOi" = ( /turf/open/floor/plasteel/neutral/side, /area/security/courtroom) -"aPA" = ( +"aOj" = ( /obj/item/device/radio/beacon, /turf/open/floor/plasteel/neutral/side, /area/security/courtroom) -"aPB" = ( +"aOk" = ( /obj/structure/table/wood, /turf/open/floor/plasteel/neutral/side{ dir = 6 }, /area/security/courtroom) -"aPC" = ( +"aOl" = ( /obj/structure/chair{ dir = 8; name = "Defense" @@ -20260,7 +18982,7 @@ dir = 6 }, /area/security/courtroom) -"aPD" = ( +"aOm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -20269,7 +18991,7 @@ }, /turf/open/floor/plasteel, /area/security/courtroom) -"aPE" = ( +"aOn" = ( /obj/item/device/taperecorder, /obj/item/cartridge/lawyer, /obj/structure/table/wood, @@ -20281,7 +19003,7 @@ }, /turf/open/floor/wood, /area/lawoffice) -"aPF" = ( +"aOo" = ( /obj/item/paper_bin{ pixel_x = -3; pixel_y = 7 @@ -20291,7 +19013,7 @@ /obj/structure/table/wood, /turf/open/floor/wood, /area/lawoffice) -"aPG" = ( +"aOp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -20299,18 +19021,18 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/wood, /area/lawoffice) -"aPH" = ( +"aOq" = ( /obj/machinery/holopad, /turf/open/floor/wood, /area/lawoffice) -"aPI" = ( +"aOr" = ( /obj/structure/closet/lawcloset, /obj/machinery/light_switch{ pixel_y = -28 }, /turf/open/floor/wood, /area/lawoffice) -"aPJ" = ( +"aOs" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -20322,41 +19044,41 @@ dir = 1 }, /area/crew_quarters/locker) -"aPK" = ( +"aOt" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aPL" = ( +"aOu" = ( /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aPM" = ( +"aOv" = ( /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/locker) -"aPN" = ( +"aOw" = ( /obj/structure/chair/stool{ pixel_y = 8 }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aPO" = ( +"aOx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aPP" = ( +"aOy" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aPQ" = ( +"aOz" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/locker) -"aPR" = ( +"aOA" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -20365,7 +19087,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aPS" = ( +"aOB" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -20374,7 +19096,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aPT" = ( +"aOC" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -20383,7 +19105,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aPU" = ( +"aOD" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -20398,7 +19120,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aPV" = ( +"aOE" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -20410,7 +19132,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aPW" = ( +"aOF" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -20424,7 +19146,7 @@ dir = 4 }, /area/crew_quarters/locker) -"aPX" = ( +"aOG" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -20441,7 +19163,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aPY" = ( +"aOH" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -20455,7 +19177,7 @@ dir = 8 }, /area/hydroponics/garden) -"aPZ" = ( +"aOI" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -20464,7 +19186,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/hydroponics/garden) -"aQa" = ( +"aOJ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -20474,7 +19196,7 @@ /obj/machinery/holopad, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aQb" = ( +"aOK" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -20486,7 +19208,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aQc" = ( +"aOL" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -20497,7 +19219,7 @@ dir = 4 }, /area/hydroponics/garden) -"aQd" = ( +"aOM" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -20509,7 +19231,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aQe" = ( +"aON" = ( /obj/machinery/power/apc{ dir = 4; name = "Garden APC"; @@ -20533,7 +19255,7 @@ dir = 4 }, /area/hydroponics/garden) -"aQf" = ( +"aOO" = ( /obj/machinery/power/apc/highcap/ten_k{ dir = 8; name = "Engine Room APC"; @@ -20548,7 +19270,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aQg" = ( +"aOP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable{ icon_state = "1-2" @@ -20558,7 +19280,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aQh" = ( +"aOQ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -20569,7 +19291,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aQi" = ( +"aOR" = ( /obj/effect/turf_decal/delivery, /obj/structure/closet/firecloset, /obj/effect/turf_decal/stripes/line{ @@ -20577,61 +19299,19 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aQj" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"aQk" = ( +"aOS" = ( /obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"aQl" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"aQm" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/window/plasma/reinforced{ dir = 1 }, -/turf/open/floor/engine, -/area/engine/supermatter) -"aQn" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = 21 }, -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/window/plasma/reinforced{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"aQo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /turf/open/floor/engine, /area/engine/engineering) -"aQp" = ( +"aOT" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -20640,7 +19320,7 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"aQq" = ( +"aOU" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -20650,19 +19330,19 @@ }, /turf/open/space, /area/space/nearstation) -"aQr" = ( +"aOV" = ( /obj/structure/window/reinforced{ dir = 1; pixel_y = 1 }, /turf/open/space, /area/space/nearstation) -"aQs" = ( +"aOW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/lattice/catwalk, /turf/open/space, /area/aisat) -"aQt" = ( +"aOX" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -20672,70 +19352,44 @@ }, /turf/open/space, /area/space/nearstation) -"aQu" = ( -/turf/closed/wall/mineral/plastitanium, -/area/hallway/secondary/entry) -"aQv" = ( +"aOY" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"aOZ" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/pod_1) +"aPa" = ( /obj/structure/chair{ dir = 1 }, -/obj/machinery/status_display{ - pixel_x = 32 +/obj/item/device/radio/intercom{ + pixel_x = 25 }, -/obj/machinery/computer/shuttle/pod{ - pixel_x = -32; - possible_destinations = "pod_lavaland1"; - shuttleId = "pod1" +/obj/item/storage/pod{ + pixel_x = -26 + }, +/obj/machinery/light/small{ + dir = 8 }, /turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_1) -"aQw" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aQx" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aQy" = ( -/obj/effect/turf_decal/stripes/line, -/obj/docking_port/stationary/public_mining_dock, -/turf/open/floor/plating, -/area/shuttle/auxillary_base) -"aQz" = ( +/area/shuttle/pod_2) +"aPb" = ( /obj/structure/closet/secure_closet/miner/unlocked, /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/plating, /area/shuttle/auxillary_base) -"aQA" = ( -/obj/structure/closet, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aQB" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 5; - height = 7; - id = "supply_home"; - name = "Cargo Bay"; - width = 12 - }, -/turf/open/space/basic, -/area/space) -"aQC" = ( +"aPd" = ( /obj/machinery/light/small{ dir = 1 }, /turf/open/floor/plating, /area/quartermaster/storage) -"aQD" = ( +"aPe" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -20747,7 +19401,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aQE" = ( +"aPf" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -20765,7 +19419,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aQF" = ( +"aPg" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -20782,7 +19436,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/qm) -"aQG" = ( +"aPh" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -20796,7 +19450,7 @@ dir = 8 }, /area/quartermaster/qm) -"aQH" = ( +"aPi" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -20806,7 +19460,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/qm) -"aQI" = ( +"aPj" = ( /obj/effect/landmark/start/quartermaster, /obj/structure/disposalpipe/segment{ dir = 10 @@ -20816,7 +19470,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/qm) -"aQJ" = ( +"aPk" = ( /obj/structure/table, /obj/item/folder/yellow, /obj/item/pen{ @@ -20831,7 +19485,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/qm) -"aQK" = ( +"aPl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -20841,7 +19495,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aQL" = ( +"aPm" = ( /obj/structure/plasticflaps{ opacity = 1 }, @@ -20854,15 +19508,11 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/storage/primary) -"aQM" = ( +"aPn" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/storage/primary) -"aQN" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/storage/primary) -"aQO" = ( +"aPo" = ( /obj/structure/table, /obj/item/weldingtool, /obj/item/crowbar, @@ -20875,7 +19525,7 @@ dir = 2 }, /area/storage/primary) -"aQP" = ( +"aPp" = ( /obj/structure/table, /obj/item/storage/toolbox/mechanical{ pixel_x = -2; @@ -20885,11 +19535,11 @@ dir = 8 }, /area/storage/primary) -"aQQ" = ( +"aPq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/storage/primary) -"aQR" = ( +"aPr" = ( /obj/structure/table, /obj/item/wirecutters, /obj/item/device/flashlight{ @@ -20913,7 +19563,7 @@ dir = 4 }, /area/storage/primary) -"aQS" = ( +"aPs" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" @@ -20921,7 +19571,7 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/ai_monitored/turret_protected/ai_upload) -"aQT" = ( +"aPt" = ( /obj/structure/table, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -20929,19 +19579,19 @@ /obj/item/aiModule/supplied/quarantine, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aQU" = ( +"aPu" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) -"aQV" = ( +"aPv" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aQW" = ( +"aPw" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -20953,7 +19603,7 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aQX" = ( +"aPx" = ( /obj/structure/table, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -20961,7 +19611,7 @@ /obj/item/aiModule/supplied/freeform, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aQY" = ( +"aPy" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -20969,7 +19619,7 @@ /obj/structure/cable/yellow, /turf/open/floor/plating, /area/ai_monitored/turret_protected/ai_upload) -"aQZ" = ( +"aPz" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -20979,7 +19629,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aRa" = ( +"aPA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/firealarm{ dir = 4; @@ -20994,11 +19644,11 @@ dir = 2 }, /area/hallway/primary/fore) -"aRb" = ( +"aPB" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/courtroom) -"aRc" = ( +"aPC" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Courtroom"; @@ -21006,12 +19656,12 @@ }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aRd" = ( +"aPD" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/security/courtroom) -"aRe" = ( +"aPE" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/poddoor/shutters/preopen{ @@ -21020,7 +19670,7 @@ }, /turf/open/floor/plating, /area/lawoffice) -"aRf" = ( +"aPF" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Law Office"; @@ -21032,7 +19682,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/lawoffice) -"aRg" = ( +"aPG" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "lawyer_shutters"; @@ -21040,7 +19690,7 @@ }, /turf/open/floor/plating, /area/lawoffice) -"aRh" = ( +"aPH" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -21057,35 +19707,31 @@ dir = 1 }, /area/crew_quarters/locker) -"aRi" = ( +"aPI" = ( /obj/structure/table, /obj/item/storage/pill_bottle/dice, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aRj" = ( +"aPJ" = ( /obj/structure/chair/stool{ pixel_y = 8 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aRk" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/floorgrime, -/area/crew_quarters/locker) -"aRl" = ( +"aPK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/locker) -"aRm" = ( +"aPL" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aRn" = ( +"aPM" = ( /obj/structure/rack, /obj/item/storage/toolbox/mechanical{ pixel_x = -2; @@ -21102,14 +19748,14 @@ dir = 2 }, /area/crew_quarters/locker) -"aRo" = ( +"aPN" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plating, /area/hydroponics/garden) -"aRp" = ( +"aPO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -21117,7 +19763,7 @@ dir = 8 }, /area/hydroponics/garden) -"aRq" = ( +"aPP" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -21125,7 +19771,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aRr" = ( +"aPQ" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -21134,7 +19780,7 @@ }, /turf/open/floor/grass, /area/hydroponics/garden) -"aRs" = ( +"aPR" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -21146,13 +19792,13 @@ }, /turf/open/floor/grass, /area/hydroponics/garden) -"aRt" = ( +"aPS" = ( /obj/structure/rack, /obj/item/clothing/gloves/color/fyellow, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aRu" = ( +"aPT" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -21161,7 +19807,7 @@ icon_state = "panelscorched" }, /area/maintenance/starboard/fore) -"aRv" = ( +"aPU" = ( /obj/machinery/computer/atmos_alert, /obj/structure/sign/map/left{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; @@ -21174,7 +19820,7 @@ }, /turf/open/floor/plasteel/vault, /area/engine/engineering) -"aRw" = ( +"aPV" = ( /obj/machinery/computer/station_alert, /obj/structure/sign/map/right{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; @@ -21183,7 +19829,7 @@ }, /turf/open/floor/plasteel/vault, /area/engine/engineering) -"aRx" = ( +"aPW" = ( /obj/structure/cable/yellow{ icon_state = "0-4" }, @@ -21198,14 +19844,14 @@ /obj/machinery/modular_computer/console/preset/engineering, /turf/open/floor/plasteel/vault, /area/engine/engineering) -"aRy" = ( +"aPX" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plating, /area/engine/engineering) -"aRz" = ( +"aPY" = ( /obj/machinery/vending/engivend, /obj/structure/cable/yellow{ icon_state = "2-8" @@ -21213,20 +19859,12 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/engineering) -"aRA" = ( +"aPZ" = ( /obj/machinery/vending/tool, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/engineering) -"aRB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/engineering) -"aRC" = ( +"aQa" = ( /obj/structure/table, /obj/effect/turf_decal/delivery, /obj/item/clothing/glasses/meson, @@ -21239,7 +19877,7 @@ /obj/item/storage/belt/utility, /turf/open/floor/plasteel, /area/engine/engineering) -"aRD" = ( +"aQd" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -21248,85 +19886,28 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aRE" = ( +"aQe" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aRF" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aRG" = ( -/obj/machinery/camera{ - c_tag = "Supermatter Chamber"; - dir = 4; - network = list("Engine") - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"aRH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aRI" = ( -/obj/effect/turf_decal/stripes/line{ +"aQf" = ( +/obj/structure/chair{ dir = 4 }, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - filter_type = "n2" +/obj/machinery/status_display{ + pixel_y = 32 }, -/turf/open/floor/engine, -/area/engine/engineering) -"aRJ" = ( -/turf/closed/wall, -/area/hallway/secondary/entry) -"aRK" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - pixel_x = 25 - }, -/obj/item/storage/pod{ - pixel_x = -26 - }, -/obj/machinery/light/small{ - dir = 8 +/obj/machinery/computer/shuttle/pod{ + pixel_y = -32; + possible_destinations = "pod_lavaland3"; + shuttleId = "pod3" }, /turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_1) -"aRL" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"aRM" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; - name = "Construction Zone"; - req_access = null; - req_access_txt = "0"; - req_one_access_txt = "0" - }, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"aRN" = ( +/area/shuttle/pod_3) +"aQg" = ( /obj/machinery/door/poddoor{ density = 1; icon_state = "closed"; @@ -21340,7 +19921,7 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aRO" = ( +"aQh" = ( /obj/structure/plasticflaps, /obj/machinery/conveyor{ dir = 8; @@ -21348,19 +19929,19 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aRP" = ( +"aQi" = ( /obj/machinery/conveyor{ dir = 8; id = "QMLoad" }, /turf/open/floor/plating, /area/quartermaster/storage) -"aRQ" = ( +"aQj" = ( /obj/effect/landmark/start/cargo_technician, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aRR" = ( +"aQk" = ( /obj/structure/closet/crate{ icon_state = "crateopen" }, @@ -21372,22 +19953,22 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aRS" = ( +"aQl" = ( /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aRT" = ( +"aQm" = ( /obj/structure/disposalpipe/segment, /obj/effect/spawner/lootdrop/maintenance, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aRU" = ( +"aQn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aRV" = ( +"aQo" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -21410,10 +19991,10 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aRW" = ( +"aQp" = ( /turf/closed/wall, /area/quartermaster/qm) -"aRX" = ( +"aQq" = ( /obj/machinery/computer/security/mining{ dir = 4; network = list("MINE","AuxBase") @@ -21425,15 +20006,15 @@ dir = 8 }, /area/quartermaster/qm) -"aRY" = ( +"aQr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/quartermaster/qm) -"aRZ" = ( +"aQs" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/quartermaster/qm) -"aSa" = ( +"aQt" = ( /obj/structure/table, /obj/item/clipboard, /obj/item/stamp/qm, @@ -21455,7 +20036,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/qm) -"aSb" = ( +"aQu" = ( /obj/structure/closet/crate{ icon_state = "crateopen" }, @@ -21465,7 +20046,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/storage/primary) -"aSc" = ( +"aQv" = ( /obj/structure/table, /obj/item/storage/toolbox/mechanical{ pixel_x = -2; @@ -21476,7 +20057,7 @@ dir = 4 }, /area/storage/primary) -"aSd" = ( +"aQw" = ( /obj/structure/table, /obj/item/folder/yellow, /obj/item/folder/yellow, @@ -21485,11 +20066,11 @@ dir = 1 }, /area/storage/primary) -"aSe" = ( +"aQx" = ( /obj/machinery/holopad, /turf/open/floor/plasteel, /area/storage/primary) -"aSf" = ( +"aQy" = ( /obj/structure/table, /obj/item/device/radio/intercom{ dir = 4; @@ -21502,7 +20083,7 @@ dir = 4 }, /area/storage/primary) -"aSg" = ( +"aQz" = ( /obj/structure/table, /obj/item/aiModule/reset, /obj/machinery/light{ @@ -21517,7 +20098,7 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aSh" = ( +"aQA" = ( /obj/machinery/power/apc/highcap/five_k{ dir = 2; name = "Upload APC"; @@ -21534,7 +20115,7 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) -"aSi" = ( +"aQB" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -21543,7 +20124,7 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aSj" = ( +"aQC" = ( /obj/item/device/radio/intercom{ broadcasting = 1; frequency = 1447; @@ -21557,7 +20138,7 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) -"aSk" = ( +"aQD" = ( /obj/structure/table, /obj/machinery/light{ dir = 4 @@ -21571,7 +20152,7 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aSl" = ( +"aQE" = ( /obj/machinery/light{ dir = 8 }, @@ -21585,7 +20166,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aSm" = ( +"aQF" = ( /obj/structure/grille, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -21593,31 +20174,24 @@ /obj/structure/window/reinforced/tinted/fulltile, /turf/open/floor/plating, /area/security/courtroom) -"aSn" = ( +"aQG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /obj/machinery/vending/cigarette, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aSo" = ( +"aQH" = ( /obj/structure/chair{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aSp" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aSq" = ( +"aQJ" = ( /obj/machinery/vending/coffee, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aSr" = ( +"aQK" = ( /obj/machinery/light{ dir = 8 }, @@ -21631,7 +20205,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aSs" = ( +"aQL" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -21640,7 +20214,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aSt" = ( +"aQM" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, @@ -21654,7 +20228,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aSu" = ( +"aQN" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -21665,7 +20239,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aSv" = ( +"aQO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -21681,7 +20255,7 @@ dir = 1 }, /area/crew_quarters/locker) -"aSw" = ( +"aQP" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -21695,7 +20269,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/locker) -"aSx" = ( +"aQQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -21710,7 +20284,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aSy" = ( +"aQR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -21719,7 +20293,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aSz" = ( +"aQS" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -21731,7 +20305,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aSA" = ( +"aQT" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -21740,7 +20314,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/locker) -"aSB" = ( +"aQU" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -21749,7 +20323,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aSC" = ( +"aQV" = ( /obj/structure/chair/stool{ pixel_y = 8 }, @@ -21758,7 +20332,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aSD" = ( +"aQW" = ( /obj/structure/table, /obj/item/clothing/head/soft/grey{ pixel_x = -2; @@ -21769,7 +20343,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aSE" = ( +"aQX" = ( /obj/structure/table, /obj/item/razor{ pixel_y = 5 @@ -21779,7 +20353,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aSF" = ( +"aQY" = ( /obj/structure/table, /obj/item/device/paicard, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -21787,14 +20361,14 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aSG" = ( +"aQZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aSH" = ( +"aRa" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/costume, /obj/effect/spawner/lootdrop/costume, @@ -21813,7 +20387,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aSI" = ( +"aRb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -21826,28 +20400,28 @@ dir = 10 }, /area/hydroponics/garden) -"aSJ" = ( +"aRc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/plasteel/neutral/side, /area/hydroponics/garden) -"aSK" = ( +"aRd" = ( /turf/open/floor/plasteel/neutral/side, /area/hydroponics/garden) -"aSL" = ( +"aRe" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/neutral/side, /area/hydroponics/garden) -"aSM" = ( +"aRf" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/neutral/side{ dir = 6 }, /area/hydroponics/garden) -"aSN" = ( +"aRg" = ( /obj/machinery/door/firedoor/border_only/closed{ dir = 8; name = "Animal Pen B"; @@ -21855,21 +20429,14 @@ }, /turf/open/floor/grass, /area/hydroponics/garden) -"aSO" = ( +"aRh" = ( /mob/living/simple_animal/cow{ name = "Betsy"; real_name = "Betsy" }, /turf/open/floor/grass, /area/hydroponics/garden) -"aSP" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/easel, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aSQ" = ( +"aRi" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -21877,7 +20444,7 @@ /obj/item/cigbutt, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aSR" = ( +"aRj" = ( /obj/effect/landmark/start/station_engineer, /obj/machinery/light{ dir = 8 @@ -21893,7 +20460,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aSS" = ( +"aRk" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -21905,7 +20472,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aST" = ( +"aRl" = ( /obj/structure/cable{ icon_state = "2-4" }, @@ -21917,14 +20484,14 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aSU" = ( +"aRm" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/plating, /area/engine/engineering) -"aSV" = ( +"aRn" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -21936,7 +20503,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aSW" = ( +"aRo" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -21945,7 +20512,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aSX" = ( +"aRp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -21960,7 +20527,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aSY" = ( +"aRq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -21974,7 +20541,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aSZ" = ( +"aRr" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -21984,86 +20551,28 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plasteel, /area/engine/engineering) -"aTa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"aTb" = ( +"aRv" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 5 }, /turf/open/floor/plasteel/dark, /area/engine/engineering) -"aTc" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/item/crowbar, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"aTd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aTe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/floor/engine, -/area/engine/engineering) -"aTf" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aTg" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/power/emitter/anchored{ - dir = 1; - state = 2 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aTh" = ( -/obj/structure/cable/white{ - icon_state = "0-2" - }, -/obj/machinery/power/emitter/anchored{ - dir = 1; - state = 2 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aTi" = ( +"aRy" = ( /turf/closed/wall/r_wall, /area/aisat) -"aTj" = ( +"aRz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/aisat) -"aTk" = ( +"aRA" = ( +/turf/closed/wall, +/area/hallway/secondary/entry) +"aRB" = ( /obj/structure/shuttle/engine/propulsion/burst, /turf/closed/wall/mineral/titanium, /area/shuttle/pod_1) -"aTl" = ( +"aRC" = ( /obj/machinery/door/airlock/titanium{ name = "Escape Pod Airlock" }, @@ -22075,7 +20584,7 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/pod_1) -"aTm" = ( +"aRD" = ( /obj/machinery/light{ dir = 8 }, @@ -22084,57 +20593,12 @@ dir = 9 }, /area/construction/mining/aux_base) -"aTn" = ( +"aRE" = ( /turf/open/floor/plasteel/yellow/side{ dir = 1 }, /area/construction/mining/aux_base) -"aTo" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/construction/mining/aux_base) -"aTp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/construction/mining/aux_base) -"aTq" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/construction/mining/aux_base) -"aTr" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/construction/mining/aux_base) -"aTs" = ( -/obj/structure/rack, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/device/assault_pod/mining, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/construction/mining/aux_base) -"aTt" = ( +"aRF" = ( /obj/structure/table, /obj/item/stack/sheet/metal/fifty, /obj/item/stack/sheet/metal/fifty, @@ -22147,7 +20611,10 @@ dir = 5 }, /area/construction/mining/aux_base) -"aTu" = ( +"aRG" = ( +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aRH" = ( /obj/machinery/conveyor{ dir = 1; id = "QMLoad"; @@ -22155,14 +20622,14 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aTv" = ( +"aRI" = ( /obj/structure/disposalpipe/segment, /obj/structure/chair/office/dark{ dir = 4 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aTw" = ( +"aRJ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -22181,7 +20648,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aTx" = ( +"aRK" = ( /obj/machinery/computer/cargo{ dir = 4 }, @@ -22189,7 +20656,7 @@ dir = 10 }, /area/quartermaster/qm) -"aTy" = ( +"aRL" = ( /obj/structure/chair/office/dark{ dir = 8 }, @@ -22206,7 +20673,7 @@ dir = 2 }, /area/quartermaster/qm) -"aTz" = ( +"aRM" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -22215,7 +20682,7 @@ dir = 2 }, /area/quartermaster/qm) -"aTA" = ( +"aRN" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -22225,17 +20692,7 @@ dir = 2 }, /area/quartermaster/qm) -"aTB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"aTC" = ( +"aRO" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 1; @@ -22260,32 +20717,32 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/storage/primary) -"aTD" = ( +"aRP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plasteel, /area/storage/primary) -"aTE" = ( +"aRQ" = ( /obj/structure/disposalpipe/junction{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/storage/primary) -"aTF" = ( +"aRR" = ( /obj/structure/disposalpipe/segment{ dir = 10 }, /turf/open/floor/plasteel, /area/storage/primary) -"aTG" = ( +"aRS" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/brown{ dir = 4 }, /area/storage/primary) -"aTH" = ( +"aRT" = ( /obj/machinery/flasher{ id = "AI"; pixel_y = -24 @@ -22295,19 +20752,19 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aTI" = ( +"aRU" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aTJ" = ( +"aRV" = ( /obj/machinery/porta_turret/ai{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aTK" = ( +"aRW" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -22316,7 +20773,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aTL" = ( +"aRX" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/centcom{ name = "Courtroom"; @@ -22324,18 +20781,25 @@ }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aTM" = ( +"aRY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aTN" = ( +"aRZ" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=16-Fore"; location = "15-Court" }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aTO" = ( +"aSa" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aSb" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -22344,38 +20808,38 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aTP" = ( +"aSc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/locker) -"aTQ" = ( +"aSd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aTR" = ( +"aSe" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/crew_quarters/locker) -"aTS" = ( +"aSf" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aTT" = ( +"aSg" = ( /obj/machinery/holopad, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aTU" = ( +"aSh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/locker) -"aTV" = ( +"aSi" = ( /obj/structure/rack, /obj/item/storage/briefcase, /obj/item/storage/briefcase{ @@ -22386,7 +20850,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aTW" = ( +"aSj" = ( /obj/structure/table, /obj/item/cultivator, /obj/item/hatchet, @@ -22400,7 +20864,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aTX" = ( +"aSk" = ( /obj/structure/table, /obj/item/hatchet, /obj/item/cultivator, @@ -22412,7 +20876,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aTY" = ( +"aSl" = ( /obj/structure/table, /obj/item/reagent_containers/food/snacks/grown/wheat, /obj/item/reagent_containers/food/snacks/grown/watermelon, @@ -22429,7 +20893,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aTZ" = ( +"aSm" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -22438,7 +20902,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aUa" = ( +"aSn" = ( /obj/item/storage/bag/plants/portaseeder, /obj/structure/table, /obj/machinery/light, @@ -22448,7 +20912,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics/garden) -"aUb" = ( +"aSo" = ( /obj/item/book/manual/wiki/engineering_hacking{ pixel_x = 4; pixel_y = 5 @@ -22460,7 +20924,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aUc" = ( +"aSp" = ( /obj/machinery/power/terminal, /obj/structure/cable, /obj/structure/extinguisher_cabinet{ @@ -22471,7 +20935,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aUd" = ( +"aSq" = ( /obj/machinery/power/terminal, /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ @@ -22479,7 +20943,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aUe" = ( +"aSr" = ( /obj/machinery/power/terminal, /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ @@ -22487,7 +20951,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aUf" = ( +"aSs" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ icon_state = "1-2" @@ -22503,7 +20967,7 @@ dir = 1 }, /area/engine/engineering) -"aUg" = ( +"aSt" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -22515,7 +20979,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aUh" = ( +"aSu" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -22527,7 +20991,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aUi" = ( +"aSv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -22538,7 +21002,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aUj" = ( +"aSw" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -22547,7 +21011,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aUk" = ( +"aSx" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -22557,7 +21021,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aUl" = ( +"aSz" = ( /obj/structure/cable{ icon_state = "1-4" }, @@ -22566,7 +21030,7 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aUm" = ( +"aSA" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -22578,148 +21042,42 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aUn" = ( +"aSB" = ( /obj/structure/cable{ icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 }, -/turf/open/floor/engine, +/turf/open/floor/plasteel, /area/engine/engineering) -"aUo" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aUp" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/meter, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ +"aSD" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/engine, -/area/engine/engineering) -"aUq" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aUr" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aUs" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Cooling Loop Bypass" - }, -/obj/structure/cable/white{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aUt" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aUu" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aUv" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aUw" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aUx" = ( +/turf/open/space, +/area/space/nearstation) +"aSE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /turf/closed/wall/r_wall, /area/aisat) -"aUy" = ( +"aSF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/closed/wall/r_wall, /area/aisat) -"aUz" = ( +"aSG" = ( /obj/structure/window/reinforced{ dir = 8 }, /obj/structure/window/reinforced, /turf/open/space, /area/space/nearstation) -"aUA" = ( +"aSH" = ( /obj/structure/chair{ dir = 4 }, @@ -22730,61 +21088,20 @@ icon_state = "platingdmg1" }, /area/hallway/secondary/entry) -"aUB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aUC" = ( +"aSI" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/hallway/secondary/entry) -"aUD" = ( +"aSJ" = ( /obj/machinery/computer/shuttle/mining, /turf/open/floor/plasteel/yellow/side{ dir = 10 }, /area/construction/mining/aux_base) -"aUE" = ( +"aSK" = ( /turf/open/floor/plasteel/yellow/side, /area/construction/mining/aux_base) -"aUF" = ( -/obj/machinery/camera{ - c_tag = "Auxillary Base Construction"; - dir = 1 - }, -/obj/machinery/button/door{ - id = "aux_base_shutters"; - name = "Public Shutters Control"; - pixel_y = -24; - req_access_txt = "0"; - req_one_access_txt = "32;47;48" - }, -/turf/open/floor/plasteel/yellow/side, -/area/construction/mining/aux_base) -"aUG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/yellow/side, -/area/construction/mining/aux_base) -"aUH" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for the Auxillary Mining Base."; - dir = 1; - name = "Auxillary Base Monitor"; - network = list("AuxBase"); - pixel_y = -28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/yellow/side, -/area/construction/mining/aux_base) -"aUI" = ( +"aSL" = ( /obj/structure/cable/yellow{ icon_state = "0-8" }, @@ -22796,14 +21113,14 @@ }, /turf/open/floor/plasteel/yellow/side, /area/construction/mining/aux_base) -"aUJ" = ( +"aSM" = ( /obj/machinery/airalarm{ dir = 1; pixel_y = -22 }, /turf/open/floor/plasteel/yellow/side, /area/construction/mining/aux_base) -"aUK" = ( +"aSN" = ( /obj/structure/table, /obj/item/stack/sheet/plasteel{ amount = 10 @@ -22814,7 +21131,7 @@ dir = 6 }, /area/construction/mining/aux_base) -"aUL" = ( +"aSO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -22823,14 +21140,14 @@ dir = 2 }, /turf/open/floor/plating, -/area/maintenance/port/fore) -"aUM" = ( +/area/maintenance/port) +"aSP" = ( /obj/structure/closet/crate{ icon_state = "crateopen" }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aUN" = ( +"aSQ" = ( /obj/machinery/conveyor_switch/oneway{ convdir = 1; id = "QMLoad"; @@ -22841,7 +21158,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aUO" = ( +"aSR" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -22849,12 +21166,12 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aUP" = ( +"aSS" = ( /obj/effect/spawner/lootdrop/maintenance, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aUQ" = ( +"aST" = ( /obj/structure/closet/crate, /obj/structure/disposalpipe/segment, /obj/effect/spawner/lootdrop/maintenance{ @@ -22864,21 +21181,21 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aUR" = ( +"aSU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment{ dir = 5 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aUS" = ( +"aSV" = ( /obj/structure/disposalpipe/segment, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aUT" = ( +"aSW" = ( /obj/machinery/light{ dir = 4 }, @@ -22898,10 +21215,10 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aUU" = ( +"aSX" = ( /turf/closed/wall, /area/security/checkpoint/supply) -"aUV" = ( +"aSY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "2-4" @@ -22914,7 +21231,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aUW" = ( +"aSZ" = ( /obj/machinery/door/airlock/maintenance{ name = "Tool Storage Maintenance"; req_access_txt = "12" @@ -22924,7 +21241,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"aUX" = ( +"aTa" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -22935,13 +21252,13 @@ dir = 8 }, /area/storage/primary) -"aUY" = ( +"aTb" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/storage/primary) -"aUZ" = ( +"aTc" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 @@ -22951,7 +21268,7 @@ }, /turf/open/floor/plasteel, /area/storage/primary) -"aVa" = ( +"aTd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -22961,7 +21278,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/storage/primary) -"aVb" = ( +"aTe" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -22970,7 +21287,7 @@ }, /turf/open/floor/plasteel, /area/storage/primary) -"aVc" = ( +"aTf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -22983,7 +21300,7 @@ }, /turf/open/floor/plasteel, /area/storage/primary) -"aVd" = ( +"aTg" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, @@ -22994,14 +21311,14 @@ dir = 4 }, /area/storage/primary) -"aVe" = ( +"aTh" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/open/floor/plating, /area/storage/primary) -"aVf" = ( +"aTi" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/highsecurity{ locked = 0; @@ -23011,9 +21328,10 @@ /obj/structure/cable/yellow{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"aVg" = ( +"aTj" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -23022,17 +21340,17 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aVh" = ( +"aTk" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plating, /area/security/courtroom) -"aVi" = ( +"aTl" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aVj" = ( +"aTm" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -23041,7 +21359,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aVk" = ( +"aTn" = ( /obj/machinery/newscaster{ pixel_y = -32 }, @@ -23053,29 +21371,19 @@ }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aVl" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aVm" = ( +"aTo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aVn" = ( +"aTp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aVo" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/locker) -"aVp" = ( +"aTq" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -23085,13 +21393,13 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aVq" = ( +"aTr" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aVr" = ( +"aTs" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -23103,7 +21411,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aVs" = ( +"aTt" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -23111,7 +21419,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aVt" = ( +"aTu" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -23122,7 +21430,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/locker) -"aVu" = ( +"aTv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -23138,7 +21446,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aVv" = ( +"aTw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -23157,7 +21465,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aVw" = ( +"aTx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -23166,7 +21474,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aVx" = ( +"aTy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -23178,19 +21486,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aVy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/crew_quarters/locker) -"aVz" = ( +"aTA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -23198,7 +21494,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aVA" = ( +"aTB" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -23206,7 +21502,7 @@ dir = 2 }, /area/crew_quarters/locker) -"aVB" = ( +"aTC" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, @@ -23215,7 +21511,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aVC" = ( +"aTD" = ( /obj/structure/cable/yellow{ icon_state = "0-4" }, @@ -23225,7 +21521,7 @@ /obj/machinery/power/smes/engineering, /turf/open/floor/plasteel/vault, /area/engine/engineering) -"aVD" = ( +"aTE" = ( /obj/structure/cable/yellow{ icon_state = "0-8" }, @@ -23235,7 +21531,7 @@ /obj/machinery/power/smes/engineering, /turf/open/floor/plasteel/vault, /area/engine/engineering) -"aVE" = ( +"aTF" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -23244,7 +21540,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aVF" = ( +"aTG" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -23259,7 +21555,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aVG" = ( +"aTH" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -23269,7 +21565,7 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plasteel, /area/engine/engineering) -"aVH" = ( +"aTI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ dir = 2 @@ -23279,7 +21575,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aVI" = ( +"aTJ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -23295,7 +21591,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aVJ" = ( +"aTK" = ( /obj/structure/cable/white{ icon_state = "4-8" }, @@ -23304,7 +21600,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"aVK" = ( +"aTM" = ( /obj/structure/cable/white{ icon_state = "4-8" }, @@ -23313,94 +21609,27 @@ }, /turf/open/floor/engine, /area/engine/engineering) -"aVL" = ( +"aTN" = ( /obj/structure/cable/white{ icon_state = "4-8" }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/engine, /area/engine/engineering) -"aVM" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Atmos to Loop" - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aVN" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/engine, -/area/engine/engineering) -"aVO" = ( -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Aft"; - dir = 1; - network = list("SS13","Engine") - }, -/turf/open/floor/engine, -/area/engine/engineering) -"aVP" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Gas to Cold Loop"; - on = 1 - }, -/obj/structure/cable/white{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/engineering) -"aVQ" = ( -/obj/structure/cable/white{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/engineering) -"aVR" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/engineering) -"aVS" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Cold Loop to Gas"; - on = 1 - }, +"aTO" = ( /obj/effect/turf_decal/stripes/line{ - dir = 6 + dir = 4 }, -/turf/open/floor/engine, +/turf/open/floor/plasteel, /area/engine/engineering) -"aVT" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 +"aTQ" = ( +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aVU" = ( -/obj/item/wrench, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"aVV" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"aTR" = ( /obj/structure/window/reinforced{ dir = 1; layer = 2.9 @@ -23415,7 +21644,7 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"aVW" = ( +"aTS" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 @@ -23430,21 +21659,21 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"aVX" = ( +"aTT" = ( /obj/structure/window/reinforced{ dir = 8 }, /obj/structure/lattice, /turf/open/space, /area/aisat) -"aVY" = ( +"aTU" = ( /obj/structure/lattice, /turf/open/space, /area/aisat) -"aVZ" = ( +"aTV" = ( /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai) -"aWa" = ( +"aTW" = ( /obj/machinery/power/smes{ charge = 5e+006 }, @@ -23453,21 +21682,21 @@ }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai) -"aWb" = ( +"aTX" = ( /obj/structure/cable{ icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai) -"aWc" = ( +"aTY" = ( /obj/structure/lattice, /obj/structure/window/reinforced{ dir = 4 }, /turf/open/space, /area/aisat) -"aWd" = ( +"aTZ" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 @@ -23482,7 +21711,7 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"aWe" = ( +"aUa" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -23499,42 +21728,17 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"aWf" = ( +"aUb" = ( /obj/structure/sign/warning/pods, /turf/closed/wall, /area/hallway/secondary/entry) -"aWg" = ( +"aUc" = ( /obj/machinery/door/airlock/external{ name = "Escape Pod One" }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"aWh" = ( -/obj/machinery/door/poddoor/shutters{ - id = "aux_base_shutters"; - name = "Auxillary Base Shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aWi" = ( -/obj/machinery/door/airlock/engineering{ - cyclelinkeddir = 1; - name = "Auxillary Base Construction"; - req_access_txt = "0"; - req_one_access_txt = "32;47;48" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aWj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/construction/mining/aux_base) -"aWk" = ( +"aUd" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, @@ -23544,10 +21748,10 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aWl" = ( +"aUe" = ( /turf/closed/wall, /area/quartermaster/storage) -"aWm" = ( +"aUf" = ( /obj/machinery/light{ dir = 8 }, @@ -23563,24 +21767,20 @@ }, /turf/open/floor/plating, /area/quartermaster/storage) -"aWn" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aWo" = ( +"aUg" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aWp" = ( +"aUh" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aWq" = ( +"aUi" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -23594,7 +21794,7 @@ /obj/machinery/rnd/protolathe/department/cargo, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aWr" = ( +"aUj" = ( /obj/structure/closet/secure_closet/security/cargo, /obj/machinery/light_switch{ pixel_x = -25 @@ -23606,7 +21806,7 @@ dir = 9 }, /area/security/checkpoint/supply) -"aWs" = ( +"aUk" = ( /obj/machinery/power/apc{ dir = 1; name = "Security Post - Cargo Bay APC"; @@ -23621,7 +21821,7 @@ dir = 1 }, /area/security/checkpoint/supply) -"aWt" = ( +"aUl" = ( /obj/item/screwdriver{ pixel_y = 10 }, @@ -23638,7 +21838,7 @@ dir = 1 }, /area/security/checkpoint/supply) -"aWu" = ( +"aUm" = ( /obj/structure/filingcabinet, /obj/structure/reagent_dispensers/peppertank{ pixel_x = 30 @@ -23647,25 +21847,7 @@ dir = 5 }, /area/security/checkpoint/supply) -"aWv" = ( -/obj/structure/table, -/obj/item/device/analyzer, -/obj/machinery/power/apc{ - dir = 2; - name = "Tool Storage APC"; - areastring = "/area/storage/primary"; - pixel_y = -27 - }, -/obj/structure/cable/yellow, -/obj/item/wrench, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/brown{ - dir = 10 - }, -/area/storage/primary) -"aWw" = ( +"aUo" = ( /obj/structure/table, /obj/item/storage/belt/utility, /obj/machinery/airalarm{ @@ -23677,13 +21859,13 @@ dir = 2 }, /area/storage/primary) -"aWx" = ( +"aUp" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plasteel/brown{ dir = 2 }, /area/storage/primary) -"aWy" = ( +"aUq" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -23692,14 +21874,14 @@ dir = 2 }, /area/storage/primary) -"aWz" = ( +"aUr" = ( /obj/structure/reagent_dispensers/fueltank, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/brown{ dir = 2 }, /area/storage/primary) -"aWA" = ( +"aUs" = ( /obj/structure/table, /obj/item/crowbar, /obj/item/device/assembly/prox_sensor{ @@ -23712,7 +21894,7 @@ dir = 2 }, /area/storage/primary) -"aWB" = ( +"aUt" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -23721,7 +21903,7 @@ dir = 2 }, /area/storage/primary) -"aWC" = ( +"aUu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/light_switch{ pixel_x = 28 @@ -23730,20 +21912,20 @@ dir = 6 }, /area/storage/primary) -"aWD" = ( +"aUv" = ( /turf/closed/wall/r_wall, /area/hallway/primary/central) -"aWE" = ( +"aUw" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" }, /turf/open/floor/plating, /area/hallway/primary/central) -"aWF" = ( +"aUx" = ( /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai_upload_foyer) -"aWG" = ( +"aUy" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/machinery/turretid{ control_area = "/area/ai_monitored/turret_protected/ai_upload"; @@ -23782,7 +21964,7 @@ dir = 6 }, /area/ai_monitored/turret_protected/ai_upload_foyer) -"aWH" = ( +"aUz" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -23791,7 +21973,7 @@ }, /turf/open/floor/plasteel/vault, /area/ai_monitored/turret_protected/ai_upload_foyer) -"aWI" = ( +"aUA" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/landmark/start/cyborg, /obj/machinery/light/small{ @@ -23815,7 +21997,7 @@ dir = 10 }, /area/ai_monitored/turret_protected/ai_upload_foyer) -"aWJ" = ( +"aUB" = ( /obj/structure/sign/directions/security{ desc = "A direction sign, pointing out which way the security department is."; dir = 1; @@ -23836,7 +22018,7 @@ }, /turf/closed/wall/r_wall, /area/hallway/primary/fore) -"aWK" = ( +"aUC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -23846,7 +22028,7 @@ dir = 8 }, /area/hallway/primary/fore) -"aWL" = ( +"aUD" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -23856,7 +22038,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/fore) -"aWM" = ( +"aUE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -23866,7 +22048,7 @@ dir = 2 }, /area/hallway/primary/fore) -"aWN" = ( +"aUF" = ( /obj/structure/sign/directions/engineering{ desc = "A direction sign, pointing out which way the escape arm is."; icon_state = "direction_evac"; @@ -23886,7 +22068,7 @@ }, /turf/closed/wall, /area/security/courtroom) -"aWO" = ( +"aUG" = ( /obj/machinery/power/apc{ dir = 2; name = "Courtroom APC"; @@ -23901,7 +22083,7 @@ /obj/item/storage/fancy/donut_box, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aWP" = ( +"aUH" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -23910,7 +22092,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aWQ" = ( +"aUI" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -23919,7 +22101,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aWR" = ( +"aUJ" = ( /obj/structure/table, /obj/item/book/manual/wiki/security_space_law{ pixel_x = -3; @@ -23943,14 +22125,14 @@ }, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aWS" = ( +"aUK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aWT" = ( +"aUL" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -23959,10 +22141,10 @@ dir = 2 }, /area/crew_quarters/locker) -"aWU" = ( +"aUM" = ( /turf/closed/wall, /area/crew_quarters/locker) -"aWV" = ( +"aUN" = ( /obj/machinery/cryopod{ tag = "icon-cryopod-open (EAST)"; icon_state = "cryopod-open"; @@ -23970,32 +22152,32 @@ }, /turf/open/floor/plasteel/vault, /area/crew_quarters/locker) -"aWW" = ( +"aUO" = ( /obj/machinery/computer/cryopod{ pixel_y = -24 }, /turf/open/floor/plasteel/vault, /area/crew_quarters/locker) -"aWX" = ( +"aUP" = ( /obj/machinery/cryopod, /turf/open/floor/plasteel/vault, /area/crew_quarters/locker) -"aWY" = ( +"aUQ" = ( /turf/open/floor/plasteel/vault, /area/crew_quarters/locker) -"aWZ" = ( +"aUR" = ( /obj/structure/closet/wardrobe/green, /turf/open/floor/plasteel/vault, /area/crew_quarters/locker) -"aXa" = ( +"aUS" = ( /obj/machinery/vending/clothing, /turf/open/floor/plasteel/vault, /area/crew_quarters/locker) -"aXb" = ( +"aUT" = ( /obj/structure/closet/wardrobe/mixed, /turf/open/floor/plasteel/vault, /area/crew_quarters/locker) -"aXc" = ( +"aUU" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -24004,7 +22186,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aXd" = ( +"aUV" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -24019,17 +22201,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aXe" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aXf" = ( +"aUW" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -24040,22 +22212,22 @@ icon_state = "platingdmg3" }, /area/maintenance/starboard/fore) -"aXg" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" +"aUX" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/under/assistantformal, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aXh" = ( +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/turf/open/floor/plasteel/vault, +/area/crew_quarters/dorms) +"aUY" = ( /obj/effect/turf_decal/delivery, /obj/structure/closet/wardrobe/engineering_yellow, /turf/open/floor/plasteel, /area/engine/engineering) -"aXi" = ( +"aUZ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -24068,7 +22240,7 @@ dir = 1 }, /area/engine/engineering) -"aXj" = ( +"aVa" = ( /obj/machinery/requests_console{ announcementConsole = 0; department = "Engineering"; @@ -24077,28 +22249,26 @@ }, /turf/closed/wall, /area/engine/engineering) -"aXk" = ( +"aVb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/delivery, /obj/structure/closet/secure_closet/engineering_welding, /turf/open/floor/plasteel, /area/engine/engineering) -"aXl" = ( +"aVc" = ( /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/effect/turf_decal/bot{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, /turf/open/floor/plasteel{ dir = 1 }, /area/engine/engineering) -"aXm" = ( +"aVd" = ( /obj/effect/turf_decal/delivery, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -24106,13 +22276,13 @@ /obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor/plasteel, /area/engine/engineering) -"aXn" = ( +"aVe" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/engine/engineering) -"aXo" = ( +"aVf" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -24123,38 +22293,14 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"aXp" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"aXq" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"aXr" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"aXs" = ( +"aVh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/effect/spawner/structure/window/plasma/reinforced, /turf/open/floor/plating, /area/engine/engineering) -"aXt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"aXu" = ( +"aVk" = ( /obj/structure/window/reinforced{ dir = 1; layer = 2.9 @@ -24164,38 +22310,27 @@ }, /turf/open/space, /area/space/nearstation) -"aXv" = ( +"aVl" = ( /obj/machinery/porta_turret/ai{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai) -"aXw" = ( +"aVm" = ( /obj/machinery/status_display{ pixel_y = 32 }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai) -"aXx" = ( +"aVn" = ( /obj/structure/showcase/cyborg/old{ dir = 2; pixel_y = 20 }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai) -"aXy" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = -24; - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"aXz" = ( +"aVp" = ( /obj/machinery/camera{ c_tag = "AI Chamber - Fore"; dir = 2; @@ -24211,24 +22346,24 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai) -"aXA" = ( +"aVq" = ( /obj/machinery/status_display{ pixel_y = 32 }, /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai) -"aXB" = ( +"aVr" = ( /obj/machinery/porta_turret/ai{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai) -"aXC" = ( +"aVs" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/hallway/secondary/entry) -"aXD" = ( +"aVt" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-13" }, @@ -24237,13 +22372,13 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aXE" = ( +"aVu" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aXF" = ( +"aVv" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -24256,17 +22391,14 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aXG" = ( +"aVw" = ( /obj/structure/chair, -/obj/machinery/light{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aXH" = ( +"aVx" = ( /obj/structure/chair, /obj/machinery/camera{ c_tag = "Arrivals - Fore Arm - Far"; @@ -24278,7 +22410,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aXI" = ( +"aVy" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -24290,7 +22422,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aXJ" = ( +"aVz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -24299,15 +22431,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aXK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 4 - }, -/area/hallway/secondary/entry) -"aXL" = ( +"aVA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -24319,7 +22443,7 @@ dir = 1 }, /area/hallway/secondary/entry) -"aXM" = ( +"aVB" = ( /obj/machinery/light{ dir = 1 }, @@ -24333,19 +22457,7 @@ dir = 1 }, /area/hallway/secondary/entry) -"aXN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aXO" = ( +"aVC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -24362,7 +22474,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aXP" = ( +"aVD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -24378,7 +22490,7 @@ dir = 4 }, /area/hallway/secondary/entry) -"aXQ" = ( +"aVE" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -24392,51 +22504,33 @@ dir = 1 }, /area/hallway/secondary/entry) -"aXR" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/arrival{ - dir = 5 - }, -/area/hallway/secondary/entry) -"aXS" = ( +"aVG" = ( /obj/machinery/status_display{ supply_display = 1 }, /turf/closed/wall, /area/quartermaster/storage) -"aXT" = ( -/mob/living/simple_animal/sloth/citrus, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aXU" = ( +"aVH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/item/storage/firstaid/regular, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aXV" = ( +"aVJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /obj/effect/landmark/start/cargo_technician, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aXW" = ( +"aVK" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aXX" = ( +"aVL" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -24451,7 +22545,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aXY" = ( +"aVM" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -24462,7 +22556,7 @@ }, /turf/open/floor/plasteel, /area/security/checkpoint/supply) -"aXZ" = ( +"aVN" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -24470,19 +22564,19 @@ dir = 8 }, /area/security/checkpoint/supply) -"aYa" = ( +"aVO" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, /turf/open/floor/plasteel, /area/security/checkpoint/supply) -"aYb" = ( +"aVP" = ( /obj/structure/chair/office/dark, /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/landmark/start/depsec/supply, /turf/open/floor/plasteel, /area/security/checkpoint/supply) -"aYc" = ( +"aVQ" = ( /obj/item/device/radio/intercom{ dir = 4; name = "Station Intercom (General)"; @@ -24496,12 +22590,12 @@ dir = 4 }, /area/security/checkpoint/supply) -"aYd" = ( +"aVR" = ( /obj/effect/spawner/structure/window, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/storage/primary) -"aYe" = ( +"aVS" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Primary Tool Storage" @@ -24514,7 +22608,7 @@ dir = 1 }, /area/storage/primary) -"aYf" = ( +"aVT" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Primary Tool Storage" @@ -24524,26 +22618,26 @@ dir = 1 }, /area/storage/primary) -"aYg" = ( +"aVU" = ( /obj/structure/closet/firecloset, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"aYh" = ( +"aVV" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/structure/closet/emcloset, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"aYi" = ( +"aVW" = ( /obj/structure/closet/emcloset, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"aYj" = ( +"aVX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai_upload_foyer) -"aYk" = ( +"aVY" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/highsecurity{ name = "Secure Network Access"; @@ -24552,13 +22646,16 @@ /obj/structure/cable/yellow{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/vault, /area/ai_monitored/turret_protected/ai_upload_foyer) -"aYl" = ( +"aVZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai_upload_foyer) -"aYm" = ( +"aWa" = ( /obj/machinery/airalarm{ pixel_y = 23 }, @@ -24569,7 +22666,7 @@ dir = 9 }, /area/hallway/primary/central) -"aYn" = ( +"aWb" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -24577,7 +22674,7 @@ dir = 1 }, /area/hallway/primary/central) -"aYo" = ( +"aWc" = ( /obj/machinery/light{ dir = 1 }, @@ -24588,7 +22685,7 @@ dir = 1 }, /area/hallway/primary/central) -"aYp" = ( +"aWd" = ( /obj/machinery/camera{ c_tag = "Central Primary Hallway - Fore"; dir = 2; @@ -24598,30 +22695,30 @@ dir = 1 }, /area/hallway/primary/central) -"aYq" = ( +"aWe" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/red/corner{ dir = 1 }, /area/hallway/primary/central) -"aYr" = ( +"aWf" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aYs" = ( +"aWg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/red/corner{ dir = 4 }, /area/hallway/primary/central) -"aYt" = ( +"aWh" = ( /turf/open/floor/plasteel/red/corner{ dir = 4 }, /area/hallway/primary/central) -"aYu" = ( +"aWi" = ( /obj/structure/sign/map/left{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; @@ -24631,7 +22728,7 @@ dir = 1 }, /area/hallway/primary/central) -"aYv" = ( +"aWj" = ( /obj/machinery/light{ dir = 1 }, @@ -24644,7 +22741,7 @@ dir = 1 }, /area/hallway/primary/central) -"aYw" = ( +"aWk" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -24661,7 +22758,7 @@ dir = 5 }, /area/hallway/primary/central) -"aYx" = ( +"aWl" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -24674,7 +22771,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/security/courtroom) -"aYy" = ( +"aWm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -24685,7 +22782,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aYz" = ( +"aWn" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Crew Quarters Access" @@ -24693,15 +22790,15 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/crew_quarters/locker) -"aYA" = ( +"aWo" = ( /obj/structure/sign/warning/pods, /turf/closed/wall, /area/crew_quarters/locker) -"aYB" = ( +"aWp" = ( /obj/machinery/vending/snack/random, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"aYC" = ( +"aWq" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -24709,7 +22806,7 @@ /obj/structure/disposalpipe/trunk, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"aYD" = ( +"aWr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -24718,7 +22815,7 @@ }, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"aYE" = ( +"aWs" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, @@ -24730,7 +22827,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aYF" = ( +"aWt" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -24742,19 +22839,19 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"aYG" = ( +"aWu" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "12" }, /turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aYH" = ( +/area/maintenance/starboard) +"aWv" = ( /turf/closed/wall, /area/storage/tech) -"aYI" = ( +"aWw" = ( /turf/closed/wall/r_wall, /area/crew_quarters/heads/chief) -"aYJ" = ( +"aWx" = ( /obj/machinery/keycard_auth{ pixel_x = -25; pixel_y = 25 @@ -24768,7 +22865,7 @@ /obj/machinery/computer/apc_control, /turf/open/floor/plasteel/vault, /area/crew_quarters/heads/chief) -"aYK" = ( +"aWy" = ( /obj/machinery/requests_console{ announcementConsole = 1; department = "Chief Engineer's Desk"; @@ -24779,18 +22876,18 @@ /obj/machinery/computer/card/minor/ce, /turf/open/floor/plasteel/vault, /area/crew_quarters/heads/chief) -"aYL" = ( +"aWz" = ( /obj/machinery/ai_status_display{ pixel_y = 32 }, /obj/machinery/computer/station_alert, /turf/open/floor/plasteel/vault, /area/crew_quarters/heads/chief) -"aYM" = ( +"aWA" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/crew_quarters/heads/chief) -"aYN" = ( +"aWB" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ @@ -24809,11 +22906,11 @@ dir = 1 }, /area/crew_quarters/heads/chief) -"aYO" = ( +"aWC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/engine/engineering) -"aYP" = ( +"aWD" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/engineering{ @@ -24827,64 +22924,24 @@ /obj/effect/turf_decal/bot{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel{ dir = 1 }, /area/engine/engineering) -"aYQ" = ( -/turf/open/floor/plating, -/area/maintenance/starboard) -"aYR" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"aYS" = ( +"aWH" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible{ dir = 10 }, /turf/open/floor/plating, /area/maintenance/starboard) -"aYT" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard) -"aYU" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space, -/area/space/nearstation) -"aYV" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"aYW" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/space, -/area/space/nearstation) -"aYX" = ( +"aWK" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 10 }, /turf/open/space, /area/space/nearstation) -"aYY" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"aYZ" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aZa" = ( +"aWL" = ( /obj/machinery/ai_status_display{ pixel_x = -32 }, @@ -24893,20 +22950,20 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"aZb" = ( +"aWM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"aZc" = ( +"aWN" = ( /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"aZd" = ( +"aWO" = ( /obj/machinery/ai_slipper{ uses = 10 }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"aZe" = ( +"aWP" = ( /obj/structure/cable{ icon_state = "1-4" }, @@ -24915,7 +22972,7 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"aZf" = ( +"aWQ" = ( /obj/structure/cable{ icon_state = "2-8" }, @@ -24924,7 +22981,7 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"aZg" = ( +"aWR" = ( /obj/machinery/light{ dir = 4 }, @@ -24933,33 +22990,36 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"aZh" = ( +"aWT" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aZi" = ( +"aWU" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aZj" = ( +"aWV" = ( /obj/structure/sign/warning/vacuum/external{ pixel_y = -32 }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aZk" = ( +"aWW" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aZl" = ( +"aWX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aZm" = ( +"aWY" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -24968,14 +23028,14 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aZn" = ( +"aWZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aZo" = ( +"aXa" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -24984,20 +23044,20 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aZp" = ( +"aXb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aZq" = ( +"aXc" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"aZr" = ( +"aXd" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -25013,18 +23073,18 @@ dir = 4 }, /area/hallway/secondary/entry) -"aZs" = ( +"aXe" = ( /obj/machinery/conveyor{ dir = 4; id = "QMLoad" }, /turf/open/floor/plating, /area/quartermaster/storage) -"aZt" = ( +"aXf" = ( /obj/machinery/holopad, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aZu" = ( +"aXg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -25035,7 +23095,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aZv" = ( +"aXh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25045,7 +23105,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aZw" = ( +"aXi" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -25055,7 +23115,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aZx" = ( +"aXj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25064,7 +23124,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aZy" = ( +"aXk" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -25074,7 +23134,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aZz" = ( +"aXl" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -25093,13 +23153,13 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"aZA" = ( +"aXm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/closed/wall, /area/security/checkpoint/supply) -"aZB" = ( +"aXn" = ( /obj/machinery/recharger{ pixel_y = 4 }, @@ -25111,7 +23171,7 @@ dir = 10 }, /area/security/checkpoint/supply) -"aZC" = ( +"aXo" = ( /obj/item/paper_bin{ pixel_x = 1; pixel_y = 9 @@ -25128,7 +23188,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/checkpoint/supply) -"aZD" = ( +"aXp" = ( /obj/item/book/manual/wiki/security_space_law, /obj/machinery/newscaster{ pixel_y = -32 @@ -25139,7 +23199,7 @@ /obj/structure/table/reinforced, /turf/open/floor/plasteel/red/side, /area/security/checkpoint/supply) -"aZE" = ( +"aXq" = ( /obj/machinery/computer/secure_data{ dir = 8 }, @@ -25147,7 +23207,7 @@ dir = 6 }, /area/security/checkpoint/supply) -"aZF" = ( +"aXr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -25159,7 +23219,7 @@ icon_state = "panelscorched" }, /area/maintenance/port/fore) -"aZG" = ( +"aXs" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -25172,7 +23232,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aZH" = ( +"aXt" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -25186,8 +23246,8 @@ dir = 4 }, /turf/open/floor/plating, -/area/maintenance/port/fore) -"aZI" = ( +/area/maintenance/port) +"aXu" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -25203,7 +23263,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"aZJ" = ( +"aXv" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -25217,7 +23277,7 @@ dir = 1 }, /area/hallway/primary/central) -"aZK" = ( +"aXw" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -25231,7 +23291,7 @@ dir = 1 }, /area/hallway/primary/central) -"aZL" = ( +"aXx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25240,7 +23300,7 @@ dir = 1 }, /area/hallway/primary/central) -"aZM" = ( +"aXy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25251,7 +23311,7 @@ dir = 1 }, /area/hallway/primary/central) -"aZN" = ( +"aXz" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -25262,7 +23322,7 @@ dir = 1 }, /area/hallway/primary/central) -"aZO" = ( +"aXA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25271,7 +23331,7 @@ dir = 1 }, /area/hallway/primary/central) -"aZP" = ( +"aXB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25280,7 +23340,7 @@ dir = 1 }, /area/hallway/primary/central) -"aZQ" = ( +"aXC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25288,7 +23348,7 @@ dir = 1 }, /area/hallway/primary/central) -"aZR" = ( +"aXD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25299,7 +23359,7 @@ dir = 1 }, /area/hallway/primary/central) -"aZS" = ( +"aXE" = ( /obj/machinery/light/small{ dir = 1 }, @@ -25321,7 +23381,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZT" = ( +"aXF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25337,7 +23397,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZU" = ( +"aXG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25349,7 +23409,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZV" = ( +"aXH" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -25361,7 +23421,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZW" = ( +"aXI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25376,7 +23436,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZX" = ( +"aXJ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -25385,7 +23445,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZY" = ( +"aXK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25394,7 +23454,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"aZZ" = ( +"aXL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25403,7 +23463,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"baa" = ( +"aXM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25413,7 +23473,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bab" = ( +"aXN" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25425,7 +23485,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bac" = ( +"aXO" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -25434,7 +23494,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bad" = ( +"aXP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25443,7 +23503,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bae" = ( +"aXQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25452,13 +23512,13 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"baf" = ( +"aXR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bag" = ( +"aXS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25466,7 +23526,7 @@ dir = 4 }, /area/hallway/primary/central) -"bah" = ( +"aXT" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -25474,7 +23534,7 @@ dir = 4 }, /area/hallway/primary/central) -"bai" = ( +"aXU" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -25485,7 +23545,7 @@ dir = 4 }, /area/hallway/primary/central) -"baj" = ( +"aXV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25494,7 +23554,7 @@ dir = 4 }, /area/hallway/primary/central) -"bak" = ( +"aXW" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25506,7 +23566,7 @@ dir = 4 }, /area/hallway/primary/central) -"bal" = ( +"aXX" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -25514,7 +23574,7 @@ dir = 4 }, /area/hallway/primary/central) -"bam" = ( +"aXY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25523,7 +23583,7 @@ dir = 4 }, /area/hallway/primary/central) -"ban" = ( +"aXZ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -25534,7 +23594,17 @@ dir = 4 }, /area/hallway/primary/central) -"bao" = ( +"aYa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aYb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25545,7 +23615,7 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/fore) -"bap" = ( +"aYc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25558,27 +23628,24 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"baq" = ( +"aYd" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/aisat) +"aYe" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"bar" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bas" = ( +"aYf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -25590,16 +23657,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"bat" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bau" = ( +"aYg" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -25609,7 +23667,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"bav" = ( +"aYh" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -25621,46 +23679,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"baw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"bax" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bay" = ( -/obj/item/cigbutt, -/obj/machinery/power/apc{ - dir = 2; - name = "Starboard Bow Maintenance APC"; - areastring = "/area/maintenance/starboard/fore"; - pixel_y = -28 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"baz" = ( +"aYi" = ( /obj/structure/rack, /obj/item/storage/toolbox/electrical{ pixel_x = 1; @@ -25671,7 +23690,7 @@ /obj/item/device/multitool, /turf/open/floor/plasteel/dark, /area/storage/tech) -"baA" = ( +"aYj" = ( /obj/structure/rack, /obj/item/circuitboard/computer/pandemic{ pixel_x = -3; @@ -25689,7 +23708,7 @@ /obj/item/circuitboard/machine/mechfab, /turf/open/floor/plasteel/dark, /area/storage/tech) -"baB" = ( +"aYk" = ( /obj/structure/rack, /obj/item/circuitboard/computer/mining, /obj/item/circuitboard/machine/autolathe{ @@ -25702,7 +23721,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tech) -"baC" = ( +"aYl" = ( /obj/structure/rack, /obj/item/circuitboard/machine/telecomms/processor, /obj/item/circuitboard/machine/telecomms/receiver, @@ -25714,7 +23733,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tech) -"baD" = ( +"aYm" = ( /obj/structure/table, /obj/item/device/flashlight{ pixel_x = 1; @@ -25737,13 +23756,13 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tech) -"baE" = ( +"aYn" = ( /obj/structure/table, /obj/item/device/aicard, /obj/item/aiModule/reset, /turf/open/floor/plasteel/dark, /area/storage/tech) -"baF" = ( +"aYo" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -25754,12 +23773,12 @@ dir = 5 }, /area/crew_quarters/heads/chief) -"baG" = ( +"aYp" = ( /turf/open/floor/plasteel/vault{ dir = 5 }, /area/crew_quarters/heads/chief) -"baH" = ( +"aYq" = ( /obj/item/storage/secure/safe{ pixel_x = 6; pixel_y = 30 @@ -25773,7 +23792,7 @@ dir = 5 }, /area/crew_quarters/heads/chief) -"baI" = ( +"aYr" = ( /obj/structure/disposalpipe/segment, /obj/machinery/power/apc{ dir = 4; @@ -25796,7 +23815,7 @@ dir = 5 }, /area/crew_quarters/heads/chief) -"baJ" = ( +"aYs" = ( /obj/structure/sign/warning/securearea{ pixel_y = 32 }, @@ -25806,20 +23825,7 @@ /obj/item/clothing/glasses/meson/engine, /turf/open/floor/plasteel, /area/engine/engineering) -"baK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engine/engineering) -"baL" = ( +"aYt" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -25831,63 +23837,17 @@ /obj/item/clothing/glasses/meson/engine, /turf/open/floor/plasteel, /area/engine/engineering) -"baM" = ( +"aYu" = ( /turf/closed/wall, /area/security/checkpoint/engineering) -"baN" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/floor/plating, -/area/maintenance/starboard) -"baO" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard) -"baP" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"baQ" = ( +"aYx" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 4 }, /obj/structure/lattice, /turf/open/space, /area/space/nearstation) -"baR" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"baS" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"baT" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"baU" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"baV" = ( +"aYy" = ( /obj/machinery/camera{ c_tag = "AI Chamber - Port"; dir = 4; @@ -25902,7 +23862,7 @@ dir = 1 }, /area/ai_monitored/turret_protected/ai) -"baW" = ( +"aYz" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "AI Core shutters"; @@ -25910,14 +23870,14 @@ }, /turf/open/floor/plating, /area/ai_monitored/turret_protected/ai) -"baX" = ( +"aYA" = ( /obj/structure/cable{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"baY" = ( +"aYB" = ( /obj/structure/showcase/cyborg/old{ dir = 8; pixel_x = 9; @@ -25927,18 +23887,11 @@ dir = 4 }, /area/ai_monitored/turret_protected/ai) -"baZ" = ( +"aYC" = ( /obj/structure/sign/warning/docking, /turf/closed/wall, /area/hallway/secondary/entry) -"bba" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; - name = "Arrival Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bbb" = ( +"aYE" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -25947,7 +23900,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bbc" = ( +"aYF" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-05" }, @@ -25956,7 +23909,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bbd" = ( +"aYG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -25966,7 +23919,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bbe" = ( +"aYH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -25979,7 +23932,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bbf" = ( +"aYI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -25991,7 +23944,7 @@ dir = 4 }, /area/hallway/secondary/entry) -"bbg" = ( +"aYJ" = ( /obj/machinery/light_switch{ pixel_x = -38 }, @@ -26004,13 +23957,13 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bbh" = ( +"aYK" = ( /obj/effect/turf_decal/loading_area{ dir = 1 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bbi" = ( +"aYL" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -26019,13 +23972,13 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bbj" = ( +"aYM" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bbk" = ( +"aYN" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -26034,14 +23987,14 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bbl" = ( +"aYO" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/stripes/corner{ dir = 2 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bbm" = ( +"aYP" = ( /obj/machinery/camera{ c_tag = "Cargo Bay - Aft"; dir = 1; @@ -26052,7 +24005,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bbn" = ( +"aYQ" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line{ @@ -26060,7 +24013,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bbo" = ( +"aYR" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -26073,11 +24026,11 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bbp" = ( +"aYS" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/checkpoint/supply) -"bbq" = ( +"aYT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance{ @@ -26086,13 +24039,13 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"bbr" = ( +"aYU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/neutral/corner{ dir = 1 }, /area/hallway/primary/central) -"bbs" = ( +"aYV" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -26107,7 +24060,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbt" = ( +"aYW" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26116,14 +24069,13 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbu" = ( +"aYX" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, -/obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbv" = ( +"aYY" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26136,27 +24088,21 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbw" = ( +"aYZ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbx" = ( +"aZa" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bby" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bbz" = ( +"aZb" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26165,14 +24111,14 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbA" = ( +"aZc" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbB" = ( +"aZd" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26182,7 +24128,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbC" = ( +"aZe" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26192,7 +24138,7 @@ /obj/machinery/holopad, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbD" = ( +"aZf" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -26201,7 +24147,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbE" = ( +"aZg" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26210,7 +24156,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbF" = ( +"aZh" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26219,7 +24165,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbG" = ( +"aZi" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26233,20 +24179,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbH" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/landmark/observer_start, -/obj/effect/turf_decal/plaque{ - icon_state = "L8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bbI" = ( +"aZk" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26255,7 +24188,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbJ" = ( +"aZl" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26264,7 +24197,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbK" = ( +"aZm" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26273,7 +24206,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbL" = ( +"aZn" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26282,7 +24215,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbM" = ( +"aZo" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26291,7 +24224,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbN" = ( +"aZp" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26301,7 +24234,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbO" = ( +"aZq" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26311,7 +24244,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbP" = ( +"aZr" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -26322,7 +24255,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bbQ" = ( +"aZs" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light{ dir = 4 @@ -26334,10 +24267,10 @@ dir = 4 }, /area/hallway/primary/central) -"bbR" = ( +"aZt" = ( /turf/closed/wall, /area/storage/tools) -"bbS" = ( +"aZv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; @@ -26345,10 +24278,10 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"bbT" = ( +"aZw" = ( /turf/closed/wall/r_wall, /area/storage/tech) -"bbU" = ( +"aZx" = ( /obj/machinery/power/apc{ dir = 8; name = "Tech Storage APC"; @@ -26362,7 +24295,7 @@ dir = 8 }, /area/storage/tech) -"bbV" = ( +"aZy" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26370,7 +24303,7 @@ dir = 8 }, /area/storage/tech) -"bbW" = ( +"aZz" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -26379,7 +24312,7 @@ dir = 8 }, /area/storage/tech) -"bbX" = ( +"aZA" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -26387,7 +24320,7 @@ dir = 8 }, /area/storage/tech) -"bbY" = ( +"aZB" = ( /obj/structure/table, /obj/item/stack/cable_coil{ pixel_x = -3; @@ -26406,7 +24339,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tech) -"bbZ" = ( +"aZC" = ( /obj/machinery/button/door{ desc = "A remote control-switch for the engineering security doors."; id = "Engineering"; @@ -26429,27 +24362,27 @@ dir = 5 }, /area/crew_quarters/heads/chief) -"bca" = ( +"aZD" = ( /obj/structure/table/reinforced, /obj/item/device/flashlight/lamp, /turf/open/floor/plasteel/neutral/corner{ dir = 2 }, /area/crew_quarters/heads/chief) -"bcb" = ( +"aZE" = ( /obj/structure/table/reinforced, /obj/item/folder/yellow, /obj/item/stamp/ce, /obj/item/reagent_containers/pill/patch/silver_sulf, /turf/open/floor/plasteel/neutral/side, /area/crew_quarters/heads/chief) -"bcc" = ( +"aZF" = ( /obj/structure/table/reinforced, /obj/item/clipboard, /obj/item/paper/monitorkey, /turf/open/floor/plasteel/neutral/side, /area/crew_quarters/heads/chief) -"bcd" = ( +"aZG" = ( /obj/structure/table/reinforced, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high{ @@ -26461,7 +24394,7 @@ dir = 8 }, /area/crew_quarters/heads/chief) -"bce" = ( +"aZH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -26470,7 +24403,7 @@ dir = 5 }, /area/crew_quarters/heads/chief) -"bcf" = ( +"aZI" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -26486,7 +24419,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"bcg" = ( +"aZJ" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -26499,7 +24432,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"bch" = ( +"aZK" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/machinery/shower{ dir = 8 @@ -26509,7 +24442,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"bci" = ( +"aZL" = ( /obj/structure/filingcabinet, /obj/structure/reagent_dispensers/peppertank{ pixel_y = 30 @@ -26522,7 +24455,7 @@ dir = 9 }, /area/security/checkpoint/engineering) -"bcj" = ( +"aZM" = ( /obj/structure/table, /obj/item/device/radio/intercom{ dir = 4; @@ -26536,7 +24469,7 @@ dir = 1 }, /area/security/checkpoint/engineering) -"bck" = ( +"aZN" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -1; @@ -26550,51 +24483,14 @@ dir = 5 }, /area/security/checkpoint/engineering) -"bcl" = ( -/turf/closed/wall/r_wall, -/area/security/checkpoint/engineering) -"bcm" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 +"aZO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Library" }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bcn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bco" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 10 - }, -/turf/open/space, -/area/space/nearstation) -"bcp" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bcq" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space, -/area/space/nearstation) -"bcr" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"bcs" = ( +/turf/open/floor/wood, +/area/library) +"aZQ" = ( /obj/effect/landmark/start/ai/secondary, /obj/item/device/radio/intercom{ anyai = 1; @@ -26632,7 +24528,7 @@ }, /turf/open/floor/circuit/green, /area/ai_monitored/turret_protected/ai) -"bct" = ( +"aZR" = ( /obj/machinery/holopad, /obj/machinery/flasher{ id = "AI"; @@ -26643,54 +24539,21 @@ dir = 1 }, /area/ai_monitored/turret_protected/ai) -"bcu" = ( +"aZS" = ( /obj/machinery/ai_slipper{ uses = 10 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"bcv" = ( -/obj/machinery/turretid{ - icon_state = "control_stun"; - name = "AI Chamber turret control"; - pixel_x = 3; - pixel_y = -23 - }, -/obj/machinery/door/window{ - base_state = "leftsecure"; - dir = 8; - obj_integrity = 300; - icon_state = "leftsecure"; - name = "Primary AI Core Access"; - req_access_txt = "16" - }, -/obj/machinery/newscaster/security_unit{ - pixel_x = 4; - pixel_y = 33 - }, -/turf/open/floor/plasteel/vault{ - dir = 6 - }, -/area/ai_monitored/turret_protected/ai) -"bcw" = ( -/obj/machinery/requests_console{ - department = "AI"; - departmentType = 5; - pixel_x = 30; - pixel_y = 30 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = 23; - pixel_y = -23 - }, +"aZU" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/under/assistantformal, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, /turf/open/floor/plasteel/vault, -/area/ai_monitored/turret_protected/ai) -"bcx" = ( +/area/crew_quarters/locker) +"aZV" = ( /obj/machinery/door/window{ base_state = "rightsecure"; dir = 4; @@ -26708,7 +24571,7 @@ dir = 10 }, /area/ai_monitored/turret_protected/ai) -"bcy" = ( +"aZW" = ( /obj/machinery/ai_slipper{ uses = 10 }, @@ -26718,7 +24581,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai) -"bcz" = ( +"aZX" = ( /obj/machinery/holopad, /obj/machinery/flasher{ id = "AI"; @@ -26729,7 +24592,7 @@ dir = 4 }, /area/ai_monitored/turret_protected/ai) -"bcA" = ( +"aZY" = ( /obj/effect/landmark/start/ai/secondary, /obj/item/device/radio/intercom{ anyai = 1; @@ -26767,28 +24630,28 @@ }, /turf/open/floor/circuit/green, /area/ai_monitored/turret_protected/ai) -"bcB" = ( +"aZZ" = ( /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"bcC" = ( +"baa" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bcD" = ( +"bab" = ( /obj/machinery/vending/cigarette, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bcE" = ( +"bac" = ( /obj/machinery/vending/coffee, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bcF" = ( +"bad" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -26798,7 +24661,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bcG" = ( +"bae" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26810,7 +24673,7 @@ dir = 4 }, /area/hallway/secondary/entry) -"bcH" = ( +"baf" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26820,7 +24683,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"bcI" = ( +"bag" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -26828,15 +24691,25 @@ icon_state = "panelscorched" }, /area/maintenance/port/fore) -"bcJ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" +"bah" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/under/assistantformal, +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = 32 }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/turf/open/floor/plasteel/vault, +/area/crew_quarters/locker) +"bai" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 }, -/area/maintenance/port/fore) -"bcK" = ( +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"baj" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -26845,7 +24718,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"bcL" = ( +"bak" = ( /obj/machinery/door/airlock/maintenance{ name = "Cargo Bay Maintenance"; req_access_txt = "0"; @@ -26856,7 +24729,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/fore) -"bcM" = ( +"bal" = ( /obj/item/device/radio/intercom{ broadcasting = 0; listening = 1; @@ -26869,14 +24742,14 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bcN" = ( +"bam" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bcO" = ( +"ban" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -26885,7 +24758,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bcP" = ( +"bao" = ( /obj/machinery/conveyor_switch/oneway{ id = "packageSort2"; pixel_x = -8; @@ -26896,7 +24769,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bcQ" = ( +"bap" = ( /obj/structure/rack, /obj/item/stack/packageWrap{ pixel_x = 2; @@ -26929,7 +24802,7 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bcR" = ( +"baq" = ( /obj/structure/rack, /obj/machinery/power/apc{ dir = 2; @@ -26950,14 +24823,14 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bcS" = ( +"bar" = ( /obj/structure/closet/wardrobe/cargotech, /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bcT" = ( +"bas" = ( /obj/structure/closet/wardrobe/cargotech, /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/stripes/line{ @@ -26965,10 +24838,10 @@ }, /turf/open/floor/plasteel, /area/quartermaster/storage) -"bcU" = ( +"bat" = ( /turf/closed/wall, /area/quartermaster/office) -"bcV" = ( +"bau" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, @@ -26980,7 +24853,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/office) -"bcW" = ( +"bav" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -26994,7 +24867,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/quartermaster/office) -"bcX" = ( +"baw" = ( /obj/item/stamp{ pixel_x = -3; pixel_y = 3 @@ -27020,14 +24893,14 @@ dir = 9 }, /area/quartermaster/office) -"bcY" = ( +"bax" = ( /obj/structure/table/reinforced, /obj/machinery/computer/stockexchange, /turf/open/floor/plasteel/brown{ dir = 5 }, /area/quartermaster/office) -"bcZ" = ( +"bay" = ( /obj/structure/sign/directions/engineering{ desc = "A direction sign, pointing out which way the Cargo department is."; icon_state = "direction_supply"; @@ -27036,12 +24909,12 @@ }, /turf/closed/wall, /area/quartermaster/office) -"bda" = ( +"baz" = ( /obj/machinery/computer/cargo/request, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/primary/port) -"bdb" = ( +"baA" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/machinery/status_display{ pixel_y = 32; @@ -27053,7 +24926,7 @@ dir = 1 }, /area/hallway/primary/port) -"bdc" = ( +"baB" = ( /obj/machinery/firealarm{ dir = 2; pixel_y = 24 @@ -27062,14 +24935,14 @@ dir = 1 }, /area/hallway/primary/port) -"bdd" = ( +"baC" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/brown{ dir = 1 }, /area/hallway/primary/port) -"bde" = ( +"baD" = ( /obj/machinery/airalarm{ pixel_y = 23 }, @@ -27082,10 +24955,10 @@ dir = 5 }, /area/hallway/primary/port) -"bdf" = ( +"baE" = ( /turf/closed/wall, /area/hallway/primary/port) -"bdg" = ( +"baF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/extinguisher_cabinet{ pixel_x = -27 @@ -27102,14 +24975,14 @@ dir = 1 }, /area/hallway/primary/central) -"bdh" = ( +"baG" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bdi" = ( +"baH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -27120,7 +24993,7 @@ dir = 2 }, /area/hallway/primary/central) -"bdj" = ( +"baI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -27131,7 +25004,7 @@ dir = 2 }, /area/hallway/primary/central) -"bdk" = ( +"baJ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -27148,7 +25021,7 @@ dir = 2 }, /area/hallway/primary/central) -"bdl" = ( +"baK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -27160,7 +25033,7 @@ dir = 2 }, /area/hallway/primary/central) -"bdm" = ( +"baL" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -27175,7 +25048,7 @@ dir = 2 }, /area/hallway/primary/central) -"bdn" = ( +"baM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -27190,7 +25063,7 @@ dir = 2 }, /area/hallway/primary/central) -"bdo" = ( +"baN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -27201,7 +25074,7 @@ dir = 2 }, /area/hallway/primary/central) -"bdp" = ( +"baO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -27216,7 +25089,7 @@ dir = 2 }, /area/hallway/primary/central) -"bdq" = ( +"baP" = ( /obj/machinery/firealarm{ dir = 1; pixel_y = -24 @@ -27228,7 +25101,7 @@ dir = 2 }, /area/hallway/primary/central) -"bdr" = ( +"baQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -27236,7 +25109,7 @@ dir = 2 }, /area/hallway/primary/central) -"bds" = ( +"baR" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -27244,14 +25117,14 @@ dir = 2 }, /area/hallway/primary/central) -"bdt" = ( +"baS" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/machinery/holopad, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bdu" = ( +"baT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -27259,7 +25132,7 @@ dir = 8 }, /area/hallway/primary/central) -"bdv" = ( +"baU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -27271,7 +25144,7 @@ dir = 8 }, /area/hallway/primary/central) -"bdw" = ( +"baV" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -27284,7 +25157,7 @@ dir = 8 }, /area/hallway/primary/central) -"bdx" = ( +"baW" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -27293,7 +25166,7 @@ dir = 8 }, /area/hallway/primary/central) -"bdy" = ( +"baX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -27306,7 +25179,7 @@ dir = 8 }, /area/hallway/primary/central) -"bdz" = ( +"baY" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -27317,7 +25190,7 @@ dir = 8 }, /area/hallway/primary/central) -"bdA" = ( +"baZ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -27332,7 +25205,7 @@ dir = 8 }, /area/hallway/primary/central) -"bdB" = ( +"bba" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -27342,7 +25215,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bdC" = ( +"bbb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/camera{ c_tag = "Central Primary Hallway - Fore - Starboard Corner"; @@ -27353,13 +25226,13 @@ dir = 4 }, /area/hallway/primary/central) -"bdD" = ( +"bbc" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plasteel/yellow/side{ dir = 9 }, /area/storage/tools) -"bdE" = ( +"bbd" = ( /obj/machinery/power/apc{ dir = 1; name = "Auxiliary Tool Storage APC"; @@ -27376,7 +25249,7 @@ dir = 1 }, /area/storage/tools) -"bdF" = ( +"bbe" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -27384,7 +25257,7 @@ dir = 1 }, /area/storage/tools) -"bdG" = ( +"bbf" = ( /obj/structure/closet/toolcloset, /obj/item/device/radio/intercom{ freerange = 0; @@ -27396,20 +25269,20 @@ dir = 1 }, /area/storage/tools) -"bdH" = ( +"bbg" = ( /obj/structure/closet/toolcloset, /turf/open/floor/plasteel/yellow/side{ dir = 5 }, /area/storage/tools) -"bdI" = ( +"bbh" = ( /obj/effect/decal/cleanable/cobweb, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"bdJ" = ( +"bbi" = ( /obj/effect/landmark/xeno_spawn, /obj/item/cigbutt, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -27420,7 +25293,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/fore) -"bdK" = ( +"bbj" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -27429,7 +25302,7 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/fore) -"bdL" = ( +"bbk" = ( /obj/structure/rack, /obj/item/circuitboard/computer/borgupload{ pixel_x = -1; @@ -27441,7 +25314,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tech) -"bdM" = ( +"bbl" = ( /obj/machinery/camera{ c_tag = "Secure Tech Storage"; dir = 8 @@ -27459,7 +25332,7 @@ dir = 8 }, /area/storage/tech) -"bdN" = ( +"bbm" = ( /obj/machinery/light{ dir = 8 }, @@ -27467,7 +25340,7 @@ dir = 8 }, /area/storage/tech) -"bdO" = ( +"bbn" = ( /obj/structure/rack, /obj/item/circuitboard/computer/cloning, /obj/item/circuitboard/computer/med_data{ @@ -27480,19 +25353,10 @@ /obj/item/circuitboard/machine/smoke_machine, /turf/open/floor/plasteel/dark, /area/storage/tech) -"bdP" = ( -/obj/structure/rack, -/obj/item/circuitboard/computer/secure_data{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/circuitboard/computer/security{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bdQ" = ( +"bbo" = ( +/turf/closed/wall, +/area/maintenance/solars/port/fore) +"bbp" = ( /obj/structure/rack, /obj/item/circuitboard/computer/powermonitor{ pixel_x = -2; @@ -27509,7 +25373,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/dark, /area/storage/tech) -"bdR" = ( +"bbq" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -27517,13 +25381,13 @@ dir = 8 }, /area/storage/tech) -"bdS" = ( +"bbr" = ( /obj/structure/table, /obj/item/electronics/apc, /obj/item/electronics/airlock, /turf/open/floor/plasteel/dark, /area/storage/tech) -"bdT" = ( +"bbs" = ( /obj/machinery/button/door{ id = "transittube"; name = "Transit Tube Lockdown"; @@ -27543,7 +25407,7 @@ dir = 5 }, /area/crew_quarters/heads/chief) -"bdU" = ( +"bbt" = ( /obj/item/cartridge/engineering{ pixel_x = 4; pixel_y = 5 @@ -27561,7 +25425,7 @@ dir = 4 }, /area/crew_quarters/heads/chief) -"bdV" = ( +"bbu" = ( /obj/effect/landmark/start/chief_engineer, /obj/structure/chair/office/light{ dir = 1; @@ -27571,13 +25435,13 @@ dir = 8 }, /area/crew_quarters/heads/chief) -"bdW" = ( +"bbv" = ( /obj/machinery/holopad, /turf/open/floor/plasteel/neutral{ dir = 8 }, /area/crew_quarters/heads/chief) -"bdX" = ( +"bbw" = ( /obj/structure/table/reinforced, /obj/item/paper_bin{ pixel_x = -3; @@ -27588,7 +25452,7 @@ dir = 8 }, /area/crew_quarters/heads/chief) -"bdY" = ( +"bbx" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -27607,7 +25471,7 @@ dir = 5 }, /area/crew_quarters/heads/chief) -"bdZ" = ( +"bby" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -27619,7 +25483,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"bea" = ( +"bbz" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -27630,7 +25494,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/engine/engineering) -"beb" = ( +"bbA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -27647,7 +25511,7 @@ }, /turf/open/floor/plasteel, /area/engine/engineering) -"bec" = ( +"bbB" = ( /obj/item/screwdriver{ pixel_y = 10 }, @@ -27662,14 +25526,14 @@ dir = 8 }, /area/security/checkpoint/engineering) -"bed" = ( +"bbC" = ( /obj/structure/chair/office/dark{ dir = 4 }, /obj/effect/landmark/start/depsec/engineering, /turf/open/floor/plasteel, /area/security/checkpoint/engineering) -"bee" = ( +"bbD" = ( /obj/structure/table, /obj/item/book/manual/wiki/security_space_law, /obj/machinery/light{ @@ -27684,24 +25548,7 @@ dir = 4 }, /area/security/checkpoint/engineering) -"bef" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/starboard) -"beg" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"beh" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"bei" = ( -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bej" = ( +"bbF" = ( /obj/structure/showcase/cyborg/old{ dir = 4; pixel_x = -9; @@ -27711,7 +25558,9501 @@ dir = 1 }, /area/ai_monitored/turret_protected/ai) +"bbG" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/clothing/under/assistantformal, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/turf/open/floor/plasteel/vault, +/area/crew_quarters/locker) +"bbH" = ( +/obj/machinery/camera{ + c_tag = "AI Chamber - Starboard"; + dir = 8; + network = list("RD") + }, +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/ai_monitored/turret_protected/ai) +"bbI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bbJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/secondary/entry) +"bbK" = ( +/turf/closed/wall, +/area/security/checkpoint/customs) +"bbL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bbM" = ( +/obj/item/stack/sheet/cardboard, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bbN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/office) +"bbO" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/conveyor{ + backwards = 1; + dir = 2; + forwards = 2; + id = "packageSort2" + }, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bbP" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/quartermaster/sorting) +"bbQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/power/apc{ + dir = 8; + name = "Cargo Office APC"; + areastring = "/area/quartermaster/office"; + pixel_x = -24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/brown{ + dir = 9 + }, +/area/quartermaster/office) +"bbR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/office) +"bbS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/status_display{ + pixel_y = 32; + supply_display = 1 + }, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/quartermaster/office) +"bbT" = ( +/turf/open/floor/plasteel/brown/corner{ + dir = 1 + }, +/area/quartermaster/office) +"bbU" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/office) +"bbV" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + dir = 8; + name = "Cargo Desk"; + req_access_txt = "50" + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bbW" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbY" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bbZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bca" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Cargo - Foyer"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/hallway/primary/port) +"bcb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -29 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bcc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"bcd" = ( +/turf/closed/wall, +/area/janitor) +"bce" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_access_txt = "26" + }, +/turf/open/floor/plasteel, +/area/janitor) +"bcf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/janitor) +"bcg" = ( +/turf/closed/wall, +/area/maintenance/central) +"bch" = ( +/obj/machinery/door/airlock{ + name = "Central Emergency Storage"; + req_access_txt = "0" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bci" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/central) +"bcj" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain/private) +"bck" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain/private) +"bcl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bcm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bcn" = ( +/obj/structure/rack, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/clothing/suit/hazardvest, +/obj/item/device/multitool, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/storage/tools) +"bco" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/storage/tools) +"bcp" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/storage/tools) +"bcq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/storage/tools) +"bcr" = ( +/obj/machinery/camera{ + c_tag = "Auxiliary Tool Storage"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 4 + }, +/area/storage/tools) +"bcs" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bct" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bcu" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/storage/tech) +"bcv" = ( +/obj/structure/rack, +/obj/item/circuitboard/computer/crew{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/circuitboard/computer/card{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/circuitboard/computer/communications{ + pixel_x = 5; + pixel_y = -5 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bcw" = ( +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bcx" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage"; + req_access_txt = "19;23" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bcy" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bcz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bcA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bcB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bcC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bcD" = ( +/obj/structure/table, +/obj/item/screwdriver{ + pixel_y = 16 + }, +/obj/item/wirecutters, +/obj/item/device/multitool, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bcE" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bcF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/crew_quarters/heads/chief) +"bcG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/crew_quarters/heads/chief) +"bcH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/heads/chief) +"bcI" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bcJ" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bcK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engine/engineering) +"bcL" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Engineering Security APC"; + areastring = "/area/security/checkpoint/engineering"; + pixel_x = -24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/checkpoint/engineering) +"bcM" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bcN" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for monitoring the engine."; + dir = 8; + name = "Engine Monitor"; + network = list("Engine"); + pixel_x = 32 + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/checkpoint/engineering) +"bcO" = ( +/obj/structure/easel, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"bcP" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"bcQ" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"bcV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/secondary/entry) +"bcW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/checkpoint/customs) +"bcX" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plasteel/red/side{ + dir = 9 + }, +/area/security/checkpoint/customs) +"bcY" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Customs APC"; + areastring = "/area/security/checkpoint/customs"; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/customs) +"bcZ" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/machinery/computer/security, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/customs) +"bda" = ( +/obj/machinery/computer/card, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/obj/machinery/camera{ + c_tag = "Customs Checkpoint"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/customs) +"bdb" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/newscaster/security_unit{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/red/side{ + dir = 1 + }, +/area/security/checkpoint/customs) +"bdc" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 + }, +/obj/structure/closet/secure_closet/security, +/turf/open/floor/plasteel/red/side{ + dir = 5 + }, +/area/security/checkpoint/customs) +"bdd" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"bde" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bdf" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/closed/wall, +/area/quartermaster/sorting) +"bdg" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bdh" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bdi" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bdj" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/structure/plasticflaps{ + opacity = 0 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bdk" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bdl" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/office) +"bdm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bdn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bdo" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bdp" = ( +/obj/machinery/computer/cargo{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/office) +"bdq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"bdr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bds" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bdv" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/hallway/primary/port) +"bdw" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/hallway/primary/port) +"bdx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/brown/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bdy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + sortType = 22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"bdA" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light_switch{ + pixel_x = 8; + pixel_y = 30 + }, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bdB" = ( +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bdC" = ( +/obj/structure/closet/l3closet/janitor, +/obj/machinery/airalarm{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bdD" = ( +/obj/structure/closet/jcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bdE" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/central) +"bdF" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bdG" = ( +/turf/closed/wall/r_wall, +/area/maintenance/central) +"bdH" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bdI" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/wood, +/obj/item/pinpointer/nuke, +/obj/item/disk/nuclear, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bdJ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/security/wooden_tv, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bdK" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bdL" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bdM" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/filingcabinet{ + pixel_x = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bdN" = ( +/obj/machinery/light_switch{ + pixel_x = 28 + }, +/obj/structure/dresser, +/obj/item/storage/secure/safe{ + pixel_x = 6; + pixel_y = 28 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bdO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bdP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bdR" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/obj/machinery/light_switch{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 10 + }, +/area/storage/tools) +"bdS" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/storage/box/lights/mixed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/yellow/side{ + dir = 2 + }, +/area/storage/tools) +"bdT" = ( +/turf/open/floor/plasteel/yellow/side{ + dir = 2 + }, +/area/storage/tools) +"bdU" = ( +/obj/structure/rack, +/obj/item/electronics/apc, +/obj/item/electronics/airlock, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/yellow/side{ + dir = 2 + }, +/area/storage/tools) +"bdV" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/rods/fifty, +/turf/open/floor/plasteel/yellow/side{ + dir = 6 + }, +/area/storage/tools) +"bdW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bdX" = ( +/obj/structure/rack, +/obj/item/circuitboard/computer/robotics{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/circuitboard/computer/mecha_control{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bdY" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bdZ" = ( +/obj/machinery/vending/assist, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bea" = ( +/obj/structure/table, +/obj/item/device/plant_analyzer, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"beb" = ( +/obj/structure/table, +/obj/item/device/analyzer, +/obj/item/device/healthanalyzer, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bec" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/device/multitool, +/obj/item/clothing/glasses/meson, +/obj/machinery/light_switch{ + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bed" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bee" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bef" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"beg" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -29 + }, +/obj/machinery/suit_storage_unit/ce, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"beh" = ( +/obj/structure/rack, +/obj/item/storage/secure/briefcase, +/obj/item/clothing/mask/cigarette/cigar, +/obj/machinery/computer/security/telescreen{ + dir = 1; + name = "MiniSat Monitor"; + network = list("MiniSat","tcomm"); + pixel_y = -30 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bei" = ( +/obj/structure/rack, +/obj/item/lighter, +/obj/item/clothing/glasses/meson, +/obj/machinery/button/door{ + id = "ceprivacy"; + name = "Privacy Shutters Control"; + pixel_y = -26 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bej" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/simple_animal/parrot/Poly, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) "bek" = ( +/obj/structure/closet/secure_closet/engineering_chief{ + req_access_txt = "0" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/vault{ + dir = 5 + }, +/area/crew_quarters/heads/chief) +"bel" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engine/engineering) +"bem" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/camera/autoname{ + dir = 4; + network = list("SS13") + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for the engineering security doors."; + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_x = -24; + pixel_y = -6; + req_access_txt = "1" + }, +/obj/machinery/button/door{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_x = -24; + pixel_y = 5; + req_access_txt = "1" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/checkpoint/engineering) +"ben" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/engineering) +"beo" = ( +/obj/structure/closet/secure_closet/security/engine, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/checkpoint/engineering) +"bep" = ( +/turf/closed/wall, +/area/engine/break_room) +"beq" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall/r_wall, +/area/space/nearstation) +"bes" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bet" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Port Fore"; + dir = 8; + network = list("MiniSat") + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"beu" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"bew" = ( +/obj/machinery/power/apc{ + aidisabled = 0; + dir = 1; + name = "AI Chamber APC"; + areastring = "/area/ai_monitored/turret_protected/ai"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"bex" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"bey" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Starboard Fore"; + dir = 4; + network = list("MiniSat") + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bez" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/aisat) +"beA" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"beK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/checkpoint/customs) +"beL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/checkpoint/customs) +"beM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"beN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"beO" = ( +/obj/structure/chair/office/dark, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"beP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"beQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/checkpoint/customs) +"beR" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"beS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"beT" = ( +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"beU" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mailroom Maintenance"; + req_access_txt = "50" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"beV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"beW" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"beX" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort2"; + pixel_x = -2; + pixel_y = 12 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"beY" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Cargo - Office"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/office) +"beZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bfa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bfb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bfc" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/office) +"bfd" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bff" = ( +/turf/open/floor/plasteel/brown/corner{ + dir = 4 + }, +/area/hallway/primary/port) +"bfg" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/hallway/primary/port) +"bfh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/brown/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bfi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"bfj" = ( +/obj/item/restraints/legcuffs/beartrap, +/obj/item/restraints/legcuffs/beartrap, +/obj/structure/table, +/obj/machinery/requests_console{ + department = "Janitorial"; + departmentType = 1; + pixel_x = -29 + }, +/obj/item/reagent_containers/spray/cleaner, +/obj/machinery/camera{ + c_tag = "Custodial Closet"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bfk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plating, +/area/janitor) +"bfl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bfm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bfn" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Custodial Maintenance"; + req_access_txt = "26" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bfo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bfp" = ( +/obj/item/device/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bfq" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/central) +"bfr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/bridge) +"bfs" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/bridge) +"bft" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bfu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bfv" = ( +/turf/closed/wall/r_wall, +/area/bridge) +"bfw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bfx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/bridge) +"bfy" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster/security_unit{ + pixel_x = -30; + pixel_y = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bfz" = ( +/obj/effect/landmark/start/captain, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bfA" = ( +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bfB" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bfC" = ( +/obj/machinery/door/window/westright, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bfD" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/effect/landmark/start/captain, +/obj/machinery/camera{ + c_tag = "Captain's Quarters"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bfE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bfF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/yellow/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bfG" = ( +/obj/structure/sign/directions/security{ + desc = "A direction sign, pointing out which way the security department is."; + dir = 1; + icon_state = "direction_sec"; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the engineering department is."; + dir = 4; + icon_state = "direction_eng" + }, +/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 = -8 + }, +/turf/closed/wall/r_wall, +/area/storage/tools) +"bfH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/storage/tools) +"bfI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Auxiliary Tool Storage"; + req_access_txt = "12" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/storage/tools) +"bfJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/storage/tools) +"bfK" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/map/left{ + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault, +/area/hallway/primary/starboard) +"bfL" = ( +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/vault, +/area/hallway/primary/starboard) +"bfM" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bfN" = ( +/turf/closed/wall, +/area/hallway/primary/starboard) +"bfO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/storage/tech) +"bfP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage"; + req_access_txt = "0"; + req_one_access_txt = "23;30" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/storage/tech) +"bfQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/chief) +"bfR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/chief) +"bfS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bfT" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "Engineering Security Doors" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bfU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bfV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"bfW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Engineering Security Post"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bfX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"bfY" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/engine/break_room) +"bfZ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/break_room) +"bga" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 8 + }, +/turf/closed/wall/mineral/titanium, +/area/shuttle/pod_4) +"bgb" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/pod_4) +"bgc" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Space Access Airlock"; + req_one_access_txt = "32;19" + }, +/turf/open/floor/plating, +/area/aisat) +"bgd" = ( +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/aisat) +"bge" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/aisat) +"bgf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/aisat) +"bgg" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "MiniSat Airlock Access"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bgh" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bgi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bgj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"bgk" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"bgl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bgm" = ( +/obj/structure/table/reinforced, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bgn" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/space, +/area/space/nearstation) +"bgo" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/space, +/area/space/nearstation) +"bgv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/secondary/entry) +"bgw" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/closet, +/obj/item/crowbar, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/radio, +/turf/open/floor/plasteel/red/side{ + dir = 10 + }, +/area/security/checkpoint/customs) +"bgx" = ( +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/customs) +"bgy" = ( +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/structure/table/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/customs) +"bgz" = ( +/obj/item/paper, +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 2; + name = "Arrivals Security Checkpoint"; + pixel_y = -8; + req_access_txt = "1" + }, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/customs) +"bgA" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/red/side, +/area/security/checkpoint/customs) +"bgB" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 28 + }, +/obj/structure/closet/crate/secure/weapon{ + desc = "A secure clothing crate."; + name = "formal uniform crate"; + req_access_txt = "3" + }, +/obj/item/clothing/under/rank/security/navyblue, +/obj/item/clothing/under/rank/security/navyblue, +/obj/item/clothing/under/rank/security/navyblue, +/obj/item/clothing/under/rank/security/navyblue, +/obj/item/clothing/under/rank/security/navyblue, +/obj/item/clothing/under/rank/security/navyblue, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/under/rank/warden/navyblue, +/obj/item/clothing/suit/security/warden, +/obj/item/clothing/under/rank/head_of_security/navyblue, +/obj/item/clothing/suit/security/hos, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navywarden, +/obj/item/clothing/head/beret/sec/navyhos, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/warden) +"bgC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bgD" = ( +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bgE" = ( +/obj/structure/disposalpipe/sorting/wrap{ + dir = 1 + }, +/turf/closed/wall, +/area/quartermaster/sorting) +"bgF" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bgG" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/eastleft{ + name = "Mail"; + req_access_txt = "50" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bgH" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bgI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bgJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bgK" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bgL" = ( +/obj/machinery/status_display{ + pixel_y = 32; + supply_display = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bgM" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bgN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Mailroom"; + req_access_txt = "0"; + req_one_access_txt = "48;50" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bgO" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/office) +"bgP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bgQ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bgR" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/cargo_technician, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bgS" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/office) +"bgT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Office"; + req_access_txt = "0"; + req_one_access_txt = "48;50" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bgU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/hallway/primary/port) +"bgV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgX" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bgY" = ( +/turf/open/floor/plasteel/brown/corner{ + dir = 2 + }, +/area/hallway/primary/port) +"bgZ" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/brown{ + dir = 2 + }, +/area/hallway/primary/port) +"bha" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Custodial Closet APC"; + areastring = "/area/janitor"; + pixel_x = -24 + }, +/obj/structure/table, +/obj/item/clothing/gloves/color/orange, +/obj/item/storage/box/mousetraps, +/obj/item/storage/box/mousetraps, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bhb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/portable_atmospherics/canister/water_vapor, +/mob/living/simple_animal/hostile/lizard{ + name = "Wags-His-Tail"; + real_name = "Wags-His-Tail" + }, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bhc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/landmark/start/janitor, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bhd" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"bhe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/central) +"bhf" = ( +/obj/effect/landmark/blobstart, +/obj/machinery/power/apc{ + dir = 4; + name = "Central Maintenance APC"; + areastring = "/area/maintenance/central"; + pixel_x = 26 + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/maintenance/central) +"bhg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/bridge) +"bhh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/computer/card, +/turf/open/floor/plasteel/darkgreen/side{ + dir = 9 + }, +/area/bridge) +"bhi" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel/darkgreen/side{ + dir = 1 + }, +/area/bridge) +"bhj" = ( +/obj/machinery/computer/crew, +/turf/open/floor/plasteel/darkgreen/side{ + dir = 1 + }, +/area/bridge) +"bhk" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/item/folder/yellow{ + pixel_y = 4 + }, +/obj/machinery/camera{ + c_tag = "Bridge - Central"; + dir = 2; + network = list("SS13") + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/darkbrown/side{ + dir = 1 + }, +/area/bridge) +"bhl" = ( +/obj/machinery/computer/station_alert, +/turf/open/floor/plasteel/darkbrown/side{ + dir = 1 + }, +/area/bridge) +"bhm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/computer/monitor{ + name = "Bridge Power Monitoring Console" + }, +/turf/open/floor/plasteel/darkbrown/side{ + dir = 1 + }, +/area/bridge) +"bhn" = ( +/obj/machinery/computer/atmos_alert, +/turf/open/floor/plasteel/darkbrown/side{ + dir = 1 + }, +/area/bridge) +"bho" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/darkbrown/side{ + dir = 1 + }, +/area/bridge) +"bhp" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel/darkred/side{ + dir = 1 + }, +/area/bridge) +"bhq" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/darkred/side{ + dir = 1 + }, +/area/bridge) +"bhr" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/computer/prisoner, +/turf/open/floor/plasteel/darkred/side{ + dir = 5 + }, +/area/bridge) +"bhs" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/bridge) +"bht" = ( +/obj/structure/table/wood, +/obj/item/storage/photo_album{ + pixel_y = -4 + }, +/obj/item/device/camera{ + pixel_y = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Captain)"; + pixel_x = -28 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bhu" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/item/razor{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/clothing/mask/cigarette/cigar, +/obj/item/reagent_containers/food/drinks/flask/gold, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bhv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bhw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bhx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bhy" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bhz" = ( +/obj/structure/table/wood, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bhA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bhB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=14.2-Central-CrewQuarters"; + location = "14-Starboard-Central" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhC" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bhD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Primary Hallway" + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhF" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhH" = ( +/obj/machinery/firealarm{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhI" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway - Tech Storage"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhJ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhL" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhO" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhP" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Starboard Hallway APC"; + areastring = "/area/hallway/primary/starboard"; + pixel_y = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bhR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bhS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=14-Starboard-Central"; + location = "13.3-Engineering-Central" + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bhT" = ( +/turf/closed/wall/r_wall, +/area/engine/break_room) +"bhU" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/table/glass, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bhV" = ( +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_guide{ + pixel_x = -4 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bhW" = ( +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/structure/table/glass, +/obj/item/storage/firstaid/fire{ + pixel_y = 8 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bhX" = ( +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bhY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bhZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bia" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bib" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bic" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bid" = ( +/obj/machinery/disposal/bin{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/engine/break_room) +"bie" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/break_room) +"bif" = ( +/turf/open/floor/plating, +/area/engine/break_room) +"big" = ( +/obj/machinery/door/airlock/titanium{ + name = "Escape Pod Airlock" + }, +/obj/docking_port/mobile/pod{ + dir = 4; + id = "pod4"; + name = "escape pod 4"; + port_direction = 2; + preferred_direction = 4; + timid = 0 + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/pod_4) +"bih" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/item/storage/pod{ + pixel_x = 6; + pixel_y = -32 + }, +/obj/machinery/light/small, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/pod_3) +"bii" = ( +/obj/docking_port/stationary/random{ + dir = 4; + id = "pod_lavaland3"; + name = "lavaland" + }, +/turf/open/space, +/area/space/nearstation) +"bij" = ( +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, +/area/shuttle/pod_4) +"bik" = ( +/obj/machinery/light/small, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Space Access"; + dir = 1; + network = list("MiniSat") + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/aisat) +"bil" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window{ + dir = 8; + name = "MiniSat Airlock Access"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bim" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue{ + pixel_y = 2 + }, +/obj/item/pen, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bin" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bio" = ( +/obj/machinery/camera{ + c_tag = "AI Chamber - Aft"; + dir = 1; + network = list("RD") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bip" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"biq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bir" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bis" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue{ + pixel_y = 2 + }, +/obj/item/pen, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"biu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biv" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/secondary/entry) +"biw" = ( +/obj/structure/sign/warning/pods, +/turf/closed/wall, +/area/security/checkpoint/customs) +"bix" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/security/checkpoint/customs) +"biy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/security{ + name = "Customs Desk"; + req_access = null; + req_access_txt = "1" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"biz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/security/checkpoint/customs) +"biA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"biB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;48;50;1" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"biC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/port/fore) +"biD" = ( +/obj/machinery/door/window/eastleft{ + base_state = "right"; + icon_state = "right"; + name = "Deliveries"; + req_access_txt = "50" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"biE" = ( +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "packageExternal"; + pixel_y = 18 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"biF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"biG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"biH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"biI" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"biJ" = ( +/obj/structure/table, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/quartermaster/sorting) +"biK" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/obj/item/device/multitool, +/obj/item/pen/red, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/quartermaster/office) +"biL" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"biM" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/quartermaster/office) +"biN" = ( +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/hallway/primary/port) +"biO" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"biP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"biQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"biR" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/hallway/primary/port) +"biS" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"biT" = ( +/obj/structure/janitorialcart, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"biU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/vehicle/ridden/janicart, +/obj/item/key/janitor, +/turf/open/floor/plating, +/area/janitor) +"biV" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel/floorgrime, +/area/janitor) +"biW" = ( +/obj/item/storage/box/lights/mixed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/central) +"biX" = ( +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/maintenance/central) +"biY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"biZ" = ( +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/darkgreen/side{ + dir = 8 + }, +/area/bridge) +"bja" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bjb" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bjc" = ( +/turf/open/floor/plasteel/dark, +/area/bridge) +"bjd" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bje" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bjf" = ( +/obj/item/folder/red{ + pixel_y = 3 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/folder/red{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/darkred/side{ + dir = 4 + }, +/area/bridge) +"bjg" = ( +/turf/closed/wall, +/area/crew_quarters/heads/captain/private) +"bjh" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/bikehorn/rubberducky, +/obj/machinery/light_switch{ + pixel_x = -28 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bji" = ( +/obj/machinery/door/window{ + dir = 1; + name = "Captain's Bedroom"; + req_access_txt = "20" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bjj" = ( +/obj/structure/closet/secure_closet/captains, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bjk" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/machinery/suit_storage_unit/captain, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bjl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bjm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjo" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Primary Hallway" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjs" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjt" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bju" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjB" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjD" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjE" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/caution/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bjF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/light_switch{ + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bjG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bjH" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bjI" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bjJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bjK" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bjL" = ( +/turf/open/floor/plasteel, +/area/engine/break_room) +"bjM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Escape Pod Four"; + req_access = null; + req_access_txt = "32" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bjO" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bjP" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat/foyer) +"bjQ" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bjR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bjS" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -24; + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bjT" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/satellite) +"bjV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bjW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/hallway/secondary/entry) +"bjX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/arrival{ + dir = 5 + }, +/area/hallway/secondary/entry) +"bjY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bjZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 9 + }, +/area/hallway/primary/port) +"bka" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bkb" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bkc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 5 + }, +/area/hallway/primary/port) +"bkd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/side{ + dir = 9 + }, +/area/hallway/primary/port) +"bke" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/hallway/primary/port) +"bkf" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 30 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 5 + }, +/area/hallway/primary/port) +"bkg" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageExternal" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bkh" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/computer/stockexchange, +/turf/open/floor/plasteel/arrival{ + dir = 2 + }, +/area/quartermaster/sorting) +"bki" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/plasteel/arrival{ + dir = 2 + }, +/area/quartermaster/sorting) +"bkj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/arrival{ + dir = 2 + }, +/area/quartermaster/sorting) +"bkk" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/machinery/camera{ + c_tag = "Cargo - Mailroom"; + dir = 1; + network = list("SS13") + }, +/turf/open/floor/plasteel/arrival{ + dir = 2 + }, +/area/quartermaster/sorting) +"bkl" = ( +/obj/structure/table, +/obj/item/stack/wrapping_paper, +/obj/item/stack/wrapping_paper, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_y = -30 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/storage/box/lights/mixed, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/arrival{ + dir = 2 + }, +/area/quartermaster/sorting) +"bkm" = ( +/obj/item/storage/box, +/obj/structure/table, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/item/hand_labeler, +/obj/machinery/power/apc{ + dir = 4; + name = "Delivery Office APC"; + areastring = "/area/quartermaster/sorting"; + pixel_x = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/arrival{ + dir = 6 + }, +/area/quartermaster/sorting) +"bkn" = ( +/obj/structure/table, +/obj/machinery/computer/stockexchange, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/turf/open/floor/plasteel/brown{ + dir = 10 + }, +/area/quartermaster/office) +"bko" = ( +/obj/machinery/photocopier, +/turf/open/floor/plasteel/brown{ + dir = 2 + }, +/area/quartermaster/office) +"bkp" = ( +/turf/open/floor/plasteel/brown{ + dir = 2 + }, +/area/quartermaster/office) +"bkq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/holopad, +/turf/open/floor/plasteel/brown{ + dir = 2 + }, +/area/quartermaster/office) +"bkr" = ( +/obj/machinery/autolathe, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/turf/open/floor/plasteel/brown{ + dir = 6 + }, +/area/quartermaster/office) +"bks" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/brown{ + dir = 10 + }, +/area/hallway/primary/port) +"bkt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/holopad, +/turf/open/floor/plasteel/brown/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bku" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/brown/corner{ + dir = 2 + }, +/area/hallway/primary/port) +"bkv" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/rack, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/packageWrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/brown{ + dir = 2 + }, +/area/hallway/primary/port) +"bkw" = ( +/obj/structure/table, +/obj/item/device/toner, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 30 + }, +/turf/open/floor/plasteel/brown{ + dir = 6 + }, +/area/hallway/primary/port) +"bkx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bky" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"bkz" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hop) +"bkA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/tank/internals/air, +/turf/open/floor/plating, +/area/maintenance/central) +"bkB" = ( +/obj/item/extinguisher, +/turf/open/floor/plating, +/area/maintenance/central) +"bkC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/modular_computer/console/preset/command, +/turf/open/floor/plasteel/darkblue/side{ + dir = 9 + }, +/area/bridge) +"bkD" = ( +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_y = 29 + }, +/obj/machinery/modular_computer/console/preset/engineering, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bkE" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/darkgreen/corner{ + dir = 1 + }, +/area/bridge) +"bkF" = ( +/obj/item/device/radio/beacon, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bkG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/recharger{ + pixel_y = 3 + }, +/obj/item/restraints/handcuffs{ + pixel_y = 3 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/darkred/corner{ + dir = 4 + }, +/area/bridge) +"bkH" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/computer/security/mining{ + network = list("MINE","AuxBase") + }, +/obj/machinery/keycard_auth{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bkI" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_x = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/computer/cargo/request, +/turf/open/floor/plasteel/darkblue/side{ + dir = 5 + }, +/area/bridge) +"bkJ" = ( +/obj/effect/landmark/xeno_spawn, +/obj/item/soap/deluxe, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/shower{ + pixel_y = 12 + }, +/obj/structure/curtain, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/captain/private) +"bkK" = ( +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/structure/sink{ + pixel_y = 17 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/captain/private) +"bkL" = ( +/obj/structure/toilet{ + pixel_y = 13 + }, +/obj/machinery/light{ + dir = 2 + }, +/obj/effect/landmark/start/captain, +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/captain/private) +"bkM" = ( +/obj/machinery/door/airlock/silver{ + name = "Bathroom" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/captain/private) +"bkN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bkO" = ( +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bkP" = ( +/obj/effect/landmark/start/captain, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bkQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bkR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=13.1-Engineering-Enter"; + location = "12-Central-Starboard" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bkS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/yellow/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"bkT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Primary Hallway" + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bkU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bkV" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bkW" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bkX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bkY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bkZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bla" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"blb" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway - Auxiliary Tool Storage"; + dir = 1; + network = list("SS13") + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"blc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bld" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"ble" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"blf" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway - Engineering"; + dir = 1; + network = list("SS13") + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"blg" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=13.2-Tcommstore"; + location = "13.1-Engineering-Enter" + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"blh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bli" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/caution/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"blj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/engine/break_room) +"blk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bll" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/engine/break_room) +"blm" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bln" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"blo" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"blp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/break_room) +"blq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"blr" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bls" = ( +/obj/structure/sign/warning/pods, +/turf/closed/wall/r_wall, +/area/engine/break_room) +"blt" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/maintenance/disposal) +"blu" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/curved/flipped{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"blv" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/crossing/horizontal, +/turf/open/space, +/area/space/nearstation) +"blw" = ( +/obj/structure/transit_tube/curved{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"blx" = ( +/turf/closed/wall, +/area/space/nearstation) +"bly" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/space, +/area/space/nearstation) +"blA" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/obj/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/aisat) +"blB" = ( +/obj/machinery/computer/teleporter, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat/foyer) +"blC" = ( +/obj/machinery/teleport/station, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat/foyer) +"blD" = ( +/obj/machinery/teleport/hub, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat/foyer) +"blE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"blF" = ( +/obj/structure/showcase/cyborg/old{ + dir = 2; + pixel_y = 20 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"blG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"blH" = ( +/obj/structure/showcase/cyborg/old{ + dir = 2; + pixel_y = 20 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 4 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"blI" = ( +/obj/machinery/door/airlock/highsecurity{ + locked = 0; + name = "AI Chamber"; + req_access_txt = "16" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Chamber entrance shutters"; + name = "AI Chamber entrance shutters" + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -26; + pixel_y = 3 + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_x = 28 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"blJ" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/storage/satellite) +"blK" = ( +/obj/machinery/recharge_station, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/storage/satellite) +"blL" = ( +/obj/machinery/airalarm{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 2; + name = "Auxiliary MiniSat Distribution Port" + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/storage/satellite) +"blM" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/storage/satellite) +"blT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"blU" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/secondary/entry) +"blV" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"blW" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 10 + }, +/area/hallway/primary/port) +"blX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral/side, +/area/hallway/primary/port) +"blY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=5-Customs"; + location = "4-Customs" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/neutral/side, +/area/hallway/primary/port) +"blZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/side, +/area/hallway/primary/port) +"bma" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 6 + }, +/area/hallway/primary/port) +"bmb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 10 + }, +/area/hallway/primary/port) +"bmc" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bmd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/hallway/primary/port) +"bme" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageExternal" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bmf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/window/westleft{ + dir = 1; + name = "Delivery Desk"; + req_access_txt = "50" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bmg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bmh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/mineral/ore_redemption, +/turf/open/floor/plasteel/dark, +/area/quartermaster/office) +"bmi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/quartermaster/office) +"bmj" = ( +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the Supply department is."; + dir = 1; + icon_state = "direction_supply"; + name = "cargo department"; + pixel_y = 8 + }, +/turf/closed/wall, +/area/quartermaster/office) +"bmk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/brown{ + dir = 8 + }, +/area/hallway/primary/port) +"bml" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/brown{ + dir = 4 + }, +/area/hallway/primary/port) +"bmm" = ( +/obj/structure/sign/directions/security{ + desc = "A direction sign, pointing out which way the security department is."; + dir = 1; + icon_state = "direction_sec"; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the engineering department is."; + dir = 4; + icon_state = "direction_eng" + }, +/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 = -8 + }, +/turf/closed/wall/r_wall, +/area/hallway/primary/port) +"bmn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"bmo" = ( +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/button/door{ + id = "hop"; + name = "Privacy Shutters Control"; + pixel_y = 25; + req_access_txt = "28" + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bmp" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/storage/secure/briefcase, +/obj/structure/table/wood, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching Prison Wing holding areas."; + name = "Prison Monitor"; + network = list("Prison"); + pixel_y = 30 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bmq" = ( +/obj/machinery/recharger, +/obj/item/storage/secure/safe{ + pixel_x = 34 + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bmr" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/central) +"bms" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/central) +"bmt" = ( +/obj/item/device/radio/off, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bmu" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "Bridge" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/central) +"bmv" = ( +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Bridge Deliveries"; + req_access_txt = "19" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/bridge) +"bmw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 8 + }, +/area/bridge) +"bmx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bmy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bmz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bmA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/darkblue/corner, +/area/bridge) +"bmB" = ( +/obj/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 2 + }, +/area/bridge) +"bmC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/window/brigdoor{ + dir = 2; + name = "Command Desk"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 2 + }, +/area/bridge) +"bmD" = ( +/obj/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 2 + }, +/area/bridge) +"bmE" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/bridge) +"bmF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bmG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bmH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/camera{ + c_tag = "Bridge - Starboard"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 4 + }, +/area/bridge) +"bmI" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access = null; + req_access_txt = "20" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"bmJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bmK" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/yellow/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"bmL" = ( +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the escape arm is."; + icon_state = "direction_evac"; + name = "escape arm" + }, +/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 = 8 + }, +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the research department is."; + icon_state = "direction_sci"; + name = "research department"; + pixel_y = -8 + }, +/turf/closed/wall, +/area/storage/art) +"bmM" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/storage/art) +"bmN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Art Storage" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/storage/art) +"bmO" = ( +/turf/closed/wall, +/area/storage/art) +"bmP" = ( +/turf/closed/wall, +/area/crew_quarters/bar) +"bmQ" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;25;46" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bmR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/starboard) +"bmS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock{ + name = "Starboard Emergency Storage"; + req_access_txt = "0" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bmT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;25;46" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bmU" = ( +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the engineering department is."; + dir = 4; + icon_state = "direction_eng"; + pixel_y = 8 + }, +/turf/closed/wall, +/area/maintenance/starboard) +"bmV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bmW" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bmX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/caution/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bmY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Foyer"; + req_access_txt = "0"; + req_one_access_txt = "32;19" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bmZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bna" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bnb" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bnc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bnd" = ( +/obj/structure/table/glass, +/obj/item/device/lightreplacer{ + pixel_y = 7 + }, +/obj/item/storage/belt/utility, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bne" = ( +/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko{ + pixel_y = 4 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bnf" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bng" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Foyer - Starboard"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bnh" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/device/taperecorder{ + pixel_x = -4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"bni" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/syndicatebomb/training, +/turf/open/floor/plasteel, +/area/security/main) +"bnk" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bnl" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bnm" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bnn" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bno" = ( +/obj/structure/transit_tube/diagonal, +/turf/open/space, +/area/space/nearstation) +"bnp" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/transit_tube/curved/flipped, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/aisat) +"bnq" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/aisat) +"bnr" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/aisat) +"bns" = ( +/obj/machinery/door/window{ + dir = 1; + name = "MiniSat Walkway Access"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/aisat) +"bnt" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/aisat) +"bnu" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/aisat) +"bnv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/aisat) +"bnw" = ( +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/ai_monitored/turret_protected/aisat/foyer) +"bnx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/ai_monitored/turret_protected/aisat/foyer) +"bny" = ( +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/aisat_interior"; + enabled = 1; + icon_state = "control_standby"; + name = "Antechamber Turret Control"; + pixel_x = 30; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/ai_monitored/turret_protected/aisat/foyer) +"bnz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bnA" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "MiniSat - Antechamber"; + dir = 4; + network = list("MiniSat") + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bnB" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 1 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bnC" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/start/cyborg, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bnD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 4 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bnE" = ( +/obj/machinery/power/apc{ + aidisabled = 0; + dir = 4; + name = "MiniSat Antechamber APC"; + areastring = "/area/ai_monitored/turret_protected/aisat_interior"; + pixel_x = 29 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 4 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bnF" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bnG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bnH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bnI" = ( +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bnK" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Arrivals - Station Entrance"; + dir = 4; + network = list("SS13") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bnL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bnM" = ( +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/secondary/entry) +"bnN" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bnO" = ( +/obj/structure/chair/comfy/beige, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bnP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bnQ" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/chips, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bnR" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"bnS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/hallway/primary/port) +"bnT" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/port) +"bnU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bnV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bnW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bnX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bnY" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bnZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Port Primary Hallway - Middle"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"boa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bob" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Port Hallway APC"; + areastring = "/area/hallway/primary/port"; + pixel_x = -1; + pixel_y = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"boc" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bod" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"boe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/brown/corner{ + dir = 4 + }, +/area/hallway/primary/port) +"bof" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/brown/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bog" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/brown/corner{ + dir = 4 + }, +/area/hallway/primary/port) +"boh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/brown/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"boi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Port Primary Hallway" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"boj" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bok" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=4-Customs"; + location = "3-Central-Port" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bol" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "hop"; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hop) +"bom" = ( +/obj/item/folder/blue, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/table/wood, +/obj/item/device/assembly/flash/handheld, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bon" = ( +/obj/effect/landmark/start/head_of_personnel, +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"boo" = ( +/obj/machinery/newscaster/security_unit{ + pixel_x = 32 + }, +/obj/machinery/computer/security/mining{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bop" = ( +/obj/machinery/power/apc/highcap/ten_k{ + dir = 8; + name = "Bridge APC"; + areastring = "/area/bridge"; + pixel_x = -27 + }, +/obj/structure/cable/yellow, +/obj/machinery/camera{ + c_tag = "Bridge - Port"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 8 + }, +/area/bridge) +"boq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bor" = ( +/turf/open/floor/plasteel/darkblue/corner, +/area/bridge) +"bos" = ( +/turf/open/floor/plasteel/darkblue/side{ + dir = 2 + }, +/area/bridge) +"bot" = ( +/turf/open/floor/plasteel/darkblue/side{ + dir = 6 + }, +/area/bridge) +"bou" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/recharger, +/obj/item/restraints/handcuffs, +/obj/structure/table/glass, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bov" = ( +/obj/machinery/computer/communications, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bow" = ( +/obj/machinery/computer/security/wooden_tv{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/dark, +/area/bridge) +"box" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/folder/blue{ + pixel_y = 2 + }, +/obj/item/folder/blue{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"boy" = ( +/turf/open/floor/plasteel/darkblue/side{ + dir = 10 + }, +/area/bridge) +"boz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/bridge) +"boA" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"boB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/darkblue/side{ + dir = 4 + }, +/area/bridge) +"boC" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/item/storage/fancy/donut_box, +/obj/structure/table/glass, +/turf/open/floor/plasteel/dark, +/area/bridge) +"boD" = ( +/obj/structure/displaycase/captain{ + pixel_y = 5 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"boE" = ( +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"boF" = ( +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"boG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"boH" = ( +/obj/machinery/computer/communications{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Captain)"; + pixel_x = 28 + }, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/machinery/keycard_auth{ + pixel_x = 24; + pixel_y = 24 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"boI" = ( +/obj/structure/rack, +/obj/item/cane, +/obj/item/reagent_containers/food/snacks/grown/mushroom/glowshroom, +/turf/open/floor/plating, +/area/crew_quarters/heads/captain/private) +"boJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway - Starboard - Art Storage"; + dir = 4; + network = list("SS13") + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"boK" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"boL" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/art) +"boM" = ( +/obj/structure/table, +/obj/item/hand_labeler, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"boN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/storage/art) +"boO" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/easel, +/obj/item/canvas/twentythreeXtwentythree, +/obj/item/canvas/twentythreeXtwentythree, +/turf/open/floor/plasteel, +/area/storage/art) +"boP" = ( +/obj/structure/closet/secure_closet/bar{ + req_access_txt = "25" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"boQ" = ( +/obj/machinery/reagentgrinder, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"boR" = ( +/obj/structure/table/wood, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/gun/ballistic/revolver/doublebarrel, +/obj/machinery/camera{ + c_tag = "Bar - Backroom"; + dir = 2; + network = list("SS13") + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"boS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"boT" = ( +/obj/machinery/door/window/southleft{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Bar Delivery"; + req_access_txt = "25" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"boU" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 8; + freq = 1400; + location = "Bar" + }, +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/crew_quarters/bar) +"boV" = ( +/obj/item/storage/box/lights/mixed, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"boW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"boX" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"boY" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/starboard) +"boZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bpa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bpb" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"bpc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bpd" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bpe" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bpf" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/caution/corner{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bpg" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bph" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bpi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bpj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bpk" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bpl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bpm" = ( +/obj/machinery/door/poddoor/preopen{ + id = "transittube"; + name = "Transit Tube Blast Door" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bpn" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bpp" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"bpq" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bpr" = ( +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bps" = ( +/obj/structure/window/reinforced, +/obj/machinery/light/small, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Fore"; + dir = 1; + network = list("MiniSat") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bpt" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/closet/wardrobe/red, +/turf/open/floor/plasteel/red/side{ + dir = 6 + }, +/area/security/checkpoint/customs) +"bpu" = ( +/turf/closed/wall/r_wall, +/area/space/nearstation) +"bpv" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/structure/transit_tube/station/reverse/flipped{ + dir = 1 + }, +/obj/structure/transit_tube_pod{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 4 + }, +/area/engine/break_room) +"bpw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/transit_tube/horizontal, +/turf/open/space, +/area/space/nearstation) +"bpx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/transit_tube/crossing/horizontal, +/turf/open/space, +/area/space/nearstation) +"bpy" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/transit_tube/horizontal, +/turf/open/space, +/area/space/nearstation) +"bpz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/transit_tube/junction/flipped{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"bpA" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space, +/area/space/nearstation) +"bpB" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space, +/area/space/nearstation) +"bpC" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/transit_tube/station{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bpD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bpE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bpF" = ( +/obj/machinery/holopad, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bpG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bpH" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bpI" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Foyer"; + req_one_access_txt = "32;19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"bpJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"bpK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/holopad, +/obj/item/device/radio/beacon, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"bpL" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"bpM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Antechamber"; + req_one_access_txt = "32;19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bpN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bpO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bpP" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/mob/living/simple_animal/bot/secbot/pingsky, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bpQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bpR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bpS" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "32" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bpT" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bpU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bpV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bpW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bpX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bpY" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bpZ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bqa" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bqb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bqc" = ( +/obj/machinery/holopad, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bqd" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Arrivals APC"; + areastring = "/area/hallway/secondary/entry"; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/secondary/entry) +"bqe" = ( +/obj/structure/chair/comfy/beige{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arrivals - Lounge"; + dir = 4; + network = list("SS13") + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bqf" = ( +/turf/open/floor/carpet, +/area/hallway/primary/port) +"bqg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/holopad{ + pixel_y = -16 + }, +/turf/open/floor/carpet, +/area/hallway/primary/port) +"bqh" = ( +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bqi" = ( +/obj/machinery/vending/cola/random, +/obj/machinery/newscaster{ + pixel_x = -28; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"bqj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/hallway/primary/port) +"bqk" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bql" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqm" = ( +/obj/machinery/turretid{ + icon_state = "control_stun"; + name = "AI Chamber turret control"; + pixel_x = 3; + pixel_y = -23 + }, +/obj/machinery/door/window{ + base_state = "leftsecure"; + dir = 8; + obj_integrity = 300; + icon_state = "leftsecure"; + name = "Primary AI Core Access"; + req_access_txt = "16" + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = 4; + pixel_y = 33 + }, +/turf/open/floor/plasteel/vault{ + dir = 6 + }, +/area/ai_monitored/turret_protected/ai) +"bqn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqo" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqs" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqt" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 3 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Port Primary Hallway" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bqz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bqA" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"bqB" = ( +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/pen, +/obj/structure/window/reinforced, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bqC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/window{ + dir = 2; + name = "HoP's Desk"; + req_access_txt = "57" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bqD" = ( +/obj/structure/window/reinforced, +/obj/machinery/computer/cargo/request{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bqE" = ( +/obj/machinery/vending/cart{ + req_access_txt = "57" + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bqF" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 4 + }, +/area/engine/break_room) +"bqG" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bqH" = ( +/turf/closed/wall, +/area/crew_quarters/heads/hop) +"bqI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/darkblue/side{ + dir = 2 + }, +/area/bridge) +"bqJ" = ( +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/rack, +/obj/item/storage/secure/briefcase, +/obj/item/clothing/mask/cigarette/cigar, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bqK" = ( +/obj/structure/rack, +/obj/item/device/aicard, +/obj/item/device/radio/off, +/obj/machinery/computer/security/telescreen{ + dir = 1; + name = "MiniSat Monitor"; + network = list("MiniSat","tcomm"); + pixel_y = -29 + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bqL" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/cell_charger{ + pixel_y = 4 + }, +/obj/structure/table/glass, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bqM" = ( +/turf/open/floor/carpet, +/area/bridge) +"bqN" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/bridge) +"bqO" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bqP" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/structure/rack, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/timer, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bqQ" = ( +/obj/machinery/light, +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/item/storage/toolbox/emergency{ + pixel_x = -2; + pixel_y = -3 + }, +/obj/item/wrench, +/obj/item/device/multitool, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bqR" = ( +/obj/machinery/light_switch{ + pixel_x = 8; + pixel_y = -26 + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 10 + }, +/area/bridge) +"bqS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/darkblue/side{ + dir = 2 + }, +/area/bridge) +"bqT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/darkblue/side{ + dir = 6 + }, +/area/bridge) +"bqU" = ( +/obj/structure/fireaxecabinet{ + pixel_y = -32 + }, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/machinery/light_switch{ + pixel_x = 28 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bqV" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/power/apc{ + dir = 8; + name = "Captain's Quarters APC"; + areastring = "/area/crew_quarters/heads/captain/private"; + pixel_x = -24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/paper/fluff/gateway, +/obj/item/coin/plasma, +/obj/item/melee/chainofcommand, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bqW" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bqX" = ( +/obj/structure/table/wood, +/obj/item/stamp/captain, +/obj/machinery/computer/security/wooden_tv, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bqY" = ( +/obj/effect/landmark/start/captain, +/obj/structure/chair/comfy/brown, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bqZ" = ( +/obj/machinery/computer/card{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Captain's Desk"; + departmentType = 5; + name = "Captain RC"; + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bra" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"brb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"brc" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"brd" = ( +/obj/structure/table, +/obj/machinery/power/apc{ + dir = 8; + name = "Art Storage APC"; + areastring = "/area/storage/art"; + pixel_x = -25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/item/paper_bin, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/turf/open/floor/plasteel, +/area/storage/art) +"bre" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/storage/art) +"brf" = ( +/obj/structure/table, +/obj/item/paper_bin/construction, +/obj/item/airlock_painter, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"brg" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/vending_refill/cigarette, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brh" = ( +/obj/effect/landmark/start/bartender, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bri" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brk" = ( +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = -30 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"brl" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Bar Maintenance"; + req_access_txt = "25" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bro" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 2; + sortType = 19 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;25;46" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"brs" = ( +/obj/item/device/assembly/prox_sensor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/item/storage/box/lights/mixed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bru" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;25;46" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"brx" = ( +/obj/machinery/requests_console{ + department = "AI"; + departmentType = 5; + pixel_x = 30; + pixel_y = 30 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = 23; + pixel_y = -23 + }, +/turf/open/floor/plasteel/vault, +/area/ai_monitored/turret_protected/ai) +"bry" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"brz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 2 + }, +/area/hallway/primary/starboard) +"brA" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/engine/break_room) +"brB" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -30 + }, +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/engine/break_room) +"brC" = ( +/obj/machinery/microwave{ + pixel_y = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Foyer - Port"; + dir = 1; + network = list("SS13") + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/engine/break_room) +"brD" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/item/storage/box/donkpockets, +/obj/structure/table/glass, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/engine/break_room) +"brE" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"brF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Engineering Foyer APC"; + areastring = "/area/engine/break_room"; + pixel_x = -1; + pixel_y = -26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/engine/break_room) +"brG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"brH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"brI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"brJ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/structure/transit_tube/curved{ + dir = 8 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 4 + }, +/area/engine/break_room) +"brK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Access"; + req_one_access_txt = "32;19" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"brL" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"brM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/transit_tube/curved{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"brN" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/table/glass, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"brO" = ( +/obj/structure/transit_tube/diagonal/topleft, +/turf/open/space, +/area/space/nearstation) +"brP" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/transit_tube/curved{ + dir = 1 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/aisat) +"brQ" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/light/small, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior Access"; + dir = 1; + network = list("MiniSat") + }, +/obj/machinery/power/apc{ + aidisabled = 0; + dir = 2; + name = "MiniSat Exterior APC"; + areastring = "/area/aisat"; + pixel_y = -24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/aisat) +"brR" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/aisat) +"brS" = ( +/obj/machinery/door/window{ + dir = 2; + name = "MiniSat Walkway Access"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/aisat) +"brT" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/aisat) +"brU" = ( +/obj/structure/window/reinforced, +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/aisat) +"brV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/aisat) +"brW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat/foyer) +"brX" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/machinery/porta_turret/ai{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the RD's goons from the safety of his office."; + dir = 4; + name = "Research Monitor"; + network = list("RD"); + pixel_x = -28 + }, +/turf/open/floor/plasteel/vault{ + dir = 1 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"brY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc/highcap/five_k{ + aidisabled = 0; + dir = 2; + name = "MiniSat Foyer APC"; + areastring = "/area/ai_monitored/turret_protected/aisat/foyer"; + pixel_y = -29 + }, +/obj/structure/cable/yellow, +/obj/machinery/camera/motion{ + c_tag = "MiniSat Foyer"; + dir = 8; + network = list("MiniSat") + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat/foyer) +"brZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bsa" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/mob/living/simple_animal/bot/floorbot, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bsb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bsc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bsd" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/darkblue/corner, +/area/ai_monitored/turret_protected/aisat_interior) +"bse" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/porta_turret/ai{ + dir = 2 + }, +/obj/machinery/computer/security/telescreen{ + dir = 8; + name = "MiniSat Monitor"; + network = list("MiniSat","tcomm"); + pixel_x = 28 + }, +/turf/open/floor/plasteel/vault{ + dir = 4 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"bsf" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/corner{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat/foyer) +"bsg" = ( +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/computer/security/telescreen{ + dir = 1; + name = "MiniSat Monitor"; + network = list("MiniSat","tcomm"); + pixel_y = -29 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bsh" = ( +/obj/structure/table, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/computer/monitor{ + dir = 1 + }, +/obj/structure/cable/yellow, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bsi" = ( +/obj/machinery/camera/motion{ + c_tag = "MiniSat Maintenance"; + dir = 8; + network = list("MiniSat") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/multitool, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"bsj" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bsk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bsl" = ( +/obj/machinery/vending/cola/random, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bsm" = ( +/obj/item/device/radio/beacon, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bsn" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bso" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bsp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/newscaster{ + pixel_x = 28; + pixel_y = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/secondary/entry) +"bsq" = ( +/obj/structure/chair/comfy/beige{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bsr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/hallway/primary/port) +"bss" = ( +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"bst" = ( +/obj/machinery/vending/snack/random, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"bsu" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/hallway/primary/port) +"bsv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/port) +"bsw" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bsx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bsy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bsz" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bsA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bsB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bsC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bsD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bsE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bsG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bsH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Port Primary Hallway - Starboard"; + dir = 1; + network = list("SS13") + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bsI" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bsJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Port Primary Hallway" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bsK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bsL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=7-Command-Starboard"; + location = "6-Port-Central" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bsM" = ( +/obj/machinery/button/door{ + id = "hop"; + name = "Privacy Shutters Control"; + pixel_x = -24; + pixel_y = -6; + req_access_txt = "28" + }, +/obj/machinery/light_switch{ + pixel_x = -25; + pixel_y = 5 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bsN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bsO" = ( +/mob/living/simple_animal/pet/dog/corgi/Ian, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bsP" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/bed/dogbed/ian, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bsQ" = ( +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bsR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bsS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bsT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"bsU" = ( +/turf/closed/wall, +/area/bridge) +"bsV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/machinery/vending/cola/random, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bsW" = ( +/obj/machinery/button/door{ + id = "bridge blast"; + name = "Bridge Access Blast Door Control"; + pixel_x = -1; + pixel_y = -24; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/button/door{ + id = "council blast"; + name = "Council Chamber Blast Door Control"; + pixel_x = -1; + pixel_y = -34; + req_access_txt = "19" + }, +/obj/machinery/camera{ + c_tag = "Bridge - Command Chair"; + dir = 1; + network = list("SS13") + }, +/turf/open/floor/carpet, +/area/bridge) +"bsX" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet, +/area/bridge) +"bsY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/button/door{ + id = "evashutter"; + name = "E.V.A. Storage Shutter Control"; + pixel_y = -24; + req_access_txt = "19" + }, +/obj/machinery/button/door{ + id = "gateshutter"; + name = "Gateway Shutter Control"; + pixel_y = -34; + req_access_txt = "19" + }, +/turf/open/floor/carpet, +/area/bridge) +"bsZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/vending/snack/random, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bta" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"btb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/darkblue/side{ + dir = 1 + }, +/area/bridge) +"btc" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced, +/obj/machinery/light_switch{ + pixel_x = -28 + }, +/obj/item/storage/secure/briefcase{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/storage/lockbox/medal, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"btd" = ( +/obj/machinery/door/window{ + name = "Captain's Desk"; + req_access_txt = "20" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bte" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"btf" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/machinery/door/window{ + base_state = "right"; + icon_state = "right"; + name = "Captain's Desk"; + req_access_txt = "20" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/item/stamp/captain, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"btg" = ( +/obj/structure/table/wood, +/obj/item/hand_tele, +/obj/structure/window/reinforced, +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"bth" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bti" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "20;12" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"btj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"btk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"btl" = ( +/obj/structure/table, +/obj/item/canvas/twentythreeXtwentythree, +/obj/item/canvas/twentythreeXtwentythree, +/obj/item/canvas/twentythreeXnineteen, +/obj/item/canvas/twentythreeXnineteen, +/obj/item/canvas/nineteenXnineteen, +/obj/item/canvas/nineteenXnineteen, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/turf/open/floor/plasteel, +/area/storage/art) +"btm" = ( +/obj/structure/table, +/obj/item/device/camera, +/turf/open/floor/plasteel, +/area/storage/art) +"btn" = ( +/obj/structure/table, +/obj/item/device/camera_film, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 28 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"bto" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"btp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/xeno_spawn, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"btq" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/closet/gmcloset, +/obj/item/wrench, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/item/stack/sheet/metal{ + amount = 30 + }, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"btr" = ( +/obj/machinery/chem_master/condimaster{ + desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments."; + name = "HoochMaster Deluxe"; + pixel_x = -4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"bts" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"btt" = ( +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard) +"btu" = ( +/obj/item/storage/toolbox/emergency, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"btv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/starboard) +"btw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"btx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/caution{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bty" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/caution{ + dir = 4 + }, +/area/hallway/primary/starboard) +"btz" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Foyer Maintenance"; + req_access_txt = "0"; + req_one_access_txt = "32;19" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"btA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/caution{ + dir = 2 + }, +/area/engine/break_room) +"btB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/caution{ + dir = 2 + }, +/area/engine/break_room) +"btC" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Personnel's Desk"; + departmentType = 5; + name = "Head of Personnel RC"; + pixel_y = 30 + }, +/obj/machinery/pdapainter{ + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"btD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"btE" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/darkblue/corner, +/area/engine/break_room) +"btF" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"btG" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/folder/blue{ + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/pen, +/obj/machinery/computer/security/telescreen{ + dir = 1; + name = "MiniSat Monitor"; + network = list("MiniSat","tcomm"); + pixel_y = -28 + }, +/turf/open/floor/plasteel/darkblue/corner, +/area/engine/break_room) +"btH" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Head of Personnel APC"; + areastring = "/area/crew_quarters/heads/hop"; + pixel_y = 24 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"btI" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/curved{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"btJ" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/curved/flipped{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"btK" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"btL" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"btM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"btN" = ( +/obj/machinery/door/airlock/hatch{ + name = "Telecomms Control Room"; + req_one_access_txt = "19; 61" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/tcommsat/computer) +"btO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"btP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"btQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"btR" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-18" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"btS" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"btT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"btU" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-08" + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"btV" = ( +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"btW" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-03" + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port) +"btX" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Port Primary Hallway - Port"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"btY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 8 + }, +/area/hallway/primary/port) +"btZ" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 4 + }, +/area/hallway/primary/port) +"bua" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/vault, +/area/hallway/primary/port) +"bub" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/vault, +/area/hallway/primary/port) +"buc" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/vault, +/area/hallway/primary/port) +"bud" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;27;37" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port) +"bue" = ( +/turf/closed/wall, +/area/library) +"buf" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"bug" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/turf/open/floor/wood, +/area/library) +"buh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/turf/open/floor/wood, +/area/library) +"bui" = ( +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the escape arm is."; + icon_state = "direction_evac"; + name = "escape arm" + }, +/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 = 8 + }, +/obj/structure/sign/directions/engineering{ + desc = "A direction sign, pointing out which way the research department is."; + icon_state = "direction_sci"; + name = "research department"; + pixel_y = -8 + }, +/turf/closed/wall, +/area/library) +"buj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"buk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + sortType = 15 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bul" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/central) +"bum" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access = null; + req_access_txt = "57" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bun" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"buo" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bup" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"buq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/holopad, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bur" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"bus" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"but" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"buu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access = null; + req_access_txt = "57" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"buv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/darkblue/corner, +/area/bridge) +"buw" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bux" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/bridge) +"buy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/bookcase, +/turf/open/floor/wood, +/area/bridge) +"buz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/bridge) +"buA" = ( +/obj/machinery/door/airlock/command{ + name = "Command Desk"; + req_access = null; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/vault, +/area/bridge) +"buB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/bridge) +"buC" = ( +/obj/structure/bookcase, +/turf/open/floor/wood, +/area/bridge) +"buD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = -26 + }, +/turf/open/floor/plasteel/darkblue/corner, +/area/bridge) +"buE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/bridge) +"buF" = ( +/obj/machinery/vending/boozeomat, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/captain/private) +"buG" = ( +/obj/machinery/holopad{ + pixel_x = 9; + pixel_y = -9 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"buH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"buI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"buJ" = ( +/obj/machinery/camera{ + c_tag = "Captain's Office"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"buK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Captain's Office - Emergency Escape"; + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/central) +"buL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"buM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"buN" = ( +/obj/machinery/vending/boozeomat, +/turf/closed/wall, +/area/crew_quarters/bar) +"buO" = ( +/obj/machinery/door/airlock{ + name = "Bar Storage"; + req_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + icon_state = "wood" + }, +/area/crew_quarters/bar) +"buP" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/obj/structure/sign/barsign{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/crew_quarters/bar) +"buQ" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/turf/open/floor/carpet, +/area/crew_quarters/bar) +"buR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"buS" = ( +/obj/machinery/disposal/bin{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"buT" = ( +/obj/machinery/computer/arcade, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"buU" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/starboard) +"buV" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard) +"buX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"buY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;25;46" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"buZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/caution{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bva" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bvb" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/caution{ + dir = 4 + }, +/area/hallway/primary/starboard) +"bvc" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bvd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bve" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard) +"bvf" = ( /obj/item/device/radio/intercom{ broadcasting = 0; freerange = 1; @@ -27753,8988 +35094,72 @@ }, /turf/open/floor/circuit/green, /area/ai_monitored/turret_protected/ai) -"bel" = ( -/obj/machinery/camera{ - c_tag = "AI Chamber - Starboard"; - dir = 8; - network = list("RD") - }, -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/ai_monitored/turret_protected/ai) -"bem" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; - name = "Arrival Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"ben" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"beo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/secondary/entry) -"bep" = ( -/turf/closed/wall, -/area/security/checkpoint/customs) -"beq" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ber" = ( -/obj/item/stack/sheet/cardboard, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bes" = ( -/turf/closed/wall, -/area/quartermaster/sorting) -"bet" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"beu" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/conveyor{ - backwards = 1; - dir = 2; - forwards = 2; - id = "packageSort2" - }, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bev" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/quartermaster/sorting) -"bew" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/power/apc{ - dir = 8; - name = "Cargo Office APC"; - areastring = "/area/quartermaster/office"; - pixel_x = -24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/brown{ - dir = 9 - }, -/area/quartermaster/office) -"bex" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/office) -"bey" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/status_display{ - pixel_y = 32; - supply_display = 1 - }, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/quartermaster/office) -"bez" = ( -/turf/open/floor/plasteel/brown/corner{ - dir = 1 - }, -/area/quartermaster/office) -"beA" = ( -/obj/effect/landmark/start/cargo_technician, -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/office) -"beB" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westleft{ - dir = 8; - name = "Cargo Desk"; - req_access_txt = "50" - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"beC" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beE" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beF" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"beG" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Foyer"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/hallway/primary/port) -"beH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -29 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"beI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"beJ" = ( -/turf/closed/wall, -/area/janitor) -"beK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_access_txt = "26" - }, -/turf/open/floor/plasteel, -/area/janitor) -"beL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/janitor) -"beM" = ( -/turf/closed/wall, -/area/maintenance/central) -"beN" = ( -/obj/machinery/door/airlock{ - name = "Central Emergency Storage"; - req_access_txt = "0" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/central) -"beO" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/central) -"beP" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain/private) -"beQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain/private) -"beR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"beS" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"beT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"beU" = ( -/obj/structure/rack, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/clothing/suit/hazardvest, -/obj/item/device/multitool, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/storage/tools) -"beV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/storage/tools) -"beW" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/storage/tools) -"beX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/storage/tools) -"beY" = ( -/obj/machinery/camera{ - c_tag = "Auxiliary Tool Storage"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 4 - }, -/area/storage/tools) -"beZ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bfa" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bfb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/storage/tech) -"bfc" = ( -/obj/structure/rack, -/obj/item/circuitboard/computer/crew{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/circuitboard/computer/card{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/circuitboard/computer/communications{ - pixel_x = 5; - pixel_y = -5 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bfd" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bfe" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage"; - req_access_txt = "19;23" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bff" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bfg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bfh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bfi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bfj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bfk" = ( -/obj/structure/table, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/item/wirecutters, -/obj/item/device/multitool, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bfl" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bfm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/crew_quarters/heads/chief) -"bfn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/crew_quarters/heads/chief) -"bfo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/crew_quarters/heads/chief) -"bfp" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bfq" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bfr" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engine/engineering) -"bfs" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/delivery, -/obj/item/clothing/glasses/meson/engine, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bft" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Engineering Security APC"; - areastring = "/area/security/checkpoint/engineering"; - pixel_x = -24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/checkpoint/engineering) -"bfu" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bfv" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring the engine."; - dir = 8; - name = "Engine Monitor"; - network = list("Engine"); - pixel_x = 32 - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/checkpoint/engineering) -"bfw" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard) -"bfx" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bfy" = ( -/obj/structure/closet/firecloset, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bfz" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"bfA" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"bfB" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/ai_status_display{ - pixel_x = -32 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"bfC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/secondary/entry) -"bfD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/checkpoint/customs) -"bfE" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/plasteel/red/side{ - dir = 9 - }, -/area/security/checkpoint/customs) -"bfF" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Customs APC"; - areastring = "/area/security/checkpoint/customs"; - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/customs) -"bfG" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/obj/machinery/computer/security, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/customs) -"bfH" = ( -/obj/machinery/computer/card, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/obj/machinery/camera{ - c_tag = "Customs Checkpoint"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/customs) -"bfI" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/newscaster/security_unit{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/red/side{ - dir = 1 - }, -/area/security/checkpoint/customs) -"bfJ" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 30 - }, -/obj/structure/closet/secure_closet/security, -/turf/open/floor/plasteel/red/side{ - dir = 5 - }, -/area/security/checkpoint/customs) -"bfK" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"bfL" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bfM" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/closed/wall, -/area/quartermaster/sorting) -"bfN" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bfO" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bfP" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bfQ" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/structure/plasticflaps{ - opacity = 0 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bfR" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bfS" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/office) -"bfT" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bfU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bfV" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bfW" = ( -/obj/machinery/computer/cargo{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/office) -"bfX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"bfY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bfZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bga" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bgc" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/hallway/primary/port) -"bgd" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/hallway/primary/port) -"bge" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/brown/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bgf" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - sortType = 22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"bgh" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/light_switch{ - pixel_x = 8; - pixel_y = 30 - }, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bgi" = ( -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bgj" = ( -/obj/structure/closet/l3closet/janitor, -/obj/machinery/airalarm{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bgk" = ( -/obj/structure/closet/jcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bgl" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/central) -"bgm" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bgn" = ( -/turf/closed/wall/r_wall, -/area/maintenance/central) -"bgo" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bgp" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/wood, -/obj/item/pinpointer/nuke, -/obj/item/disk/nuclear, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bgq" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/computer/security/wooden_tv, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bgr" = ( -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bgs" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bgt" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/filingcabinet{ - pixel_x = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bgu" = ( -/obj/machinery/light_switch{ - pixel_x = 28 - }, -/obj/structure/dresser, -/obj/item/storage/secure/safe{ - pixel_x = 6; - pixel_y = 28 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bgv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bgw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"bgy" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 10 - }, -/area/storage/tools) -"bgz" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/yellow/side{ - dir = 2 - }, -/area/storage/tools) -"bgA" = ( -/turf/open/floor/plasteel/yellow/side{ - dir = 2 - }, -/area/storage/tools) -"bgB" = ( -/obj/structure/rack, -/obj/item/electronics/apc, -/obj/item/electronics/airlock, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/yellow/side{ - dir = 2 - }, -/area/storage/tools) -"bgC" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/rods/fifty, -/turf/open/floor/plasteel/yellow/side{ - dir = 6 - }, -/area/storage/tools) -"bgD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bgE" = ( -/obj/structure/rack, -/obj/item/circuitboard/computer/robotics{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/circuitboard/computer/mecha_control{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bgF" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bgG" = ( -/obj/machinery/vending/assist, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bgH" = ( -/obj/structure/table, -/obj/item/device/plant_analyzer, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bgI" = ( -/obj/structure/table, -/obj/item/device/analyzer, -/obj/item/device/healthanalyzer, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bgJ" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/device/multitool, -/obj/item/clothing/glasses/meson, -/obj/machinery/light_switch{ - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bgK" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bgL" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bgM" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bgN" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -29 - }, -/obj/machinery/suit_storage_unit/ce, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bgO" = ( -/obj/structure/rack, -/obj/item/storage/secure/briefcase, -/obj/item/clothing/mask/cigarette/cigar, -/obj/machinery/computer/security/telescreen{ - dir = 1; - name = "MiniSat Monitor"; - network = list("MiniSat","tcomm"); - pixel_y = -30 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bgP" = ( -/obj/structure/rack, -/obj/item/lighter, -/obj/item/clothing/glasses/meson, -/obj/machinery/button/door{ - id = "ceprivacy"; - name = "Privacy Shutters Control"; - pixel_y = -26 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bgQ" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/simple_animal/parrot/Poly, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bgR" = ( -/obj/structure/closet/secure_closet/engineering_chief{ - req_access_txt = "0" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/vault{ - dir = 5 - }, -/area/crew_quarters/heads/chief) -"bgS" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_access_txt = "10" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engine/engineering) -"bgT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/camera/autoname{ - dir = 4; - network = list("SS13") - }, -/obj/machinery/button/door{ - desc = "A remote control-switch for the engineering security doors."; - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_x = -24; - pixel_y = -6; - req_access_txt = "1" - }, -/obj/machinery/button/door{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_x = -24; - pixel_y = 5; - req_access_txt = "1" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/checkpoint/engineering) -"bgU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/engineering) -"bgV" = ( -/obj/structure/closet/secure_closet/security/engine, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/checkpoint/engineering) -"bgW" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bgX" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 5 - }, -/turf/open/space, -/area/space/nearstation) -"bgY" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bgZ" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bha" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 10 - }, -/turf/open/space, -/area/space/nearstation) -"bhb" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"bhc" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bhd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Port Fore"; - dir = 8; - network = list("MiniSat") - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bhe" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"bhf" = ( -/obj/machinery/porta_turret/ai{ - dir = 2 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_y = 24 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/ai) -"bhg" = ( -/obj/machinery/power/apc{ - aidisabled = 0; - dir = 1; - name = "AI Chamber APC"; - areastring = "/area/ai_monitored/turret_protected/ai"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"bhh" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"bhi" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Starboard Fore"; - dir = 4; - network = list("MiniSat") - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bhj" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bhk" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bhl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/checkpoint/customs) -"bhm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 8 - }, -/area/security/checkpoint/customs) -"bhn" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bho" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bhp" = ( -/obj/structure/chair/office/dark, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bhq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bhr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/red/side{ - dir = 4 - }, -/area/security/checkpoint/customs) -"bhs" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bht" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bhu" = ( -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bhv" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mailroom Maintenance"; - req_access_txt = "50" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bhw" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bhx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bhy" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bhz" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort2"; - pixel_x = -2; - pixel_y = 12 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bhA" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Office"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/office) -"bhB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bhC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bhD" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bhE" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/office) -"bhF" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/office) -"bhG" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bhH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bhI" = ( -/turf/open/floor/plasteel/brown/corner{ - dir = 4 - }, -/area/hallway/primary/port) -"bhJ" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/brown{ - dir = 1 - }, -/area/hallway/primary/port) -"bhK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/brown/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"bhL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"bhM" = ( -/obj/item/restraints/legcuffs/beartrap, -/obj/item/restraints/legcuffs/beartrap, -/obj/structure/table, -/obj/machinery/requests_console{ - department = "Janitorial"; - departmentType = 1; - pixel_x = -29 - }, -/obj/item/reagent_containers/spray/cleaner, -/obj/machinery/camera{ - c_tag = "Custodial Closet"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bhN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plating, -/area/janitor) -"bhO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bhP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bhQ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Custodial Maintenance"; - req_access_txt = "26" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bhR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bhS" = ( -/obj/item/device/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bhT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/central) -"bhU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/bridge) -"bhV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/bridge) -"bhW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bhX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bhY" = ( -/turf/closed/wall/r_wall, -/area/bridge) -"bhZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bia" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/bridge) -"bib" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster/security_unit{ - pixel_x = -30; - pixel_y = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bic" = ( -/obj/effect/landmark/start/captain, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bid" = ( -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bie" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bif" = ( -/obj/machinery/door/window/westright, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"big" = ( -/obj/structure/bed, -/obj/item/bedsheet/captain, -/obj/effect/landmark/start/captain, -/obj/machinery/camera{ - c_tag = "Captain's Quarters"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bih" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bii" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/yellow/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"bij" = ( -/obj/structure/sign/directions/security{ - desc = "A direction sign, pointing out which way the security department is."; - dir = 1; - icon_state = "direction_sec"; - pixel_y = 8 - }, -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the engineering department is."; - dir = 4; - icon_state = "direction_eng" - }, -/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 = -8 - }, -/turf/closed/wall/r_wall, -/area/storage/tools) -"bik" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/storage/tools) -"bil" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Auxiliary Tool Storage"; - req_access_txt = "12" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/storage/tools) -"bim" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/storage/tools) -"bin" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/map/left{ - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault, -/area/hallway/primary/starboard) -"bio" = ( -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/vault, -/area/hallway/primary/starboard) -"bip" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"biq" = ( -/turf/closed/wall, -/area/hallway/primary/starboard) -"bir" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/storage/tech) -"bis" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage"; - req_access_txt = "0"; - req_one_access_txt = "23;30" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/storage/tech) -"bit" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "ceprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/chief) -"biu" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "ceprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/chief) -"biv" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Security Doors" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"biw" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Security Doors" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bix" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"biy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Engineering Security Post"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"biz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"biA" = ( -/turf/open/floor/plating, -/area/engine/break_room) -"biB" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/break_room) -"biC" = ( -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 8 - }, -/turf/closed/wall/mineral/titanium, -/area/shuttle/pod_4) -"biD" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle/pod_4) -"biE" = ( -/obj/structure/lattice, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"biF" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Space Access Airlock"; - req_one_access_txt = "32;19" - }, -/turf/open/floor/plating, -/area/aisat) -"biG" = ( -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/aisat) -"biH" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/aisat) -"biI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/aisat) -"biJ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "MiniSat Airlock Access"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"biK" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"biL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"biM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"biN" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"biO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"biP" = ( -/obj/structure/table/reinforced, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_x = 28 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"biQ" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/space, -/area/space/nearstation) -"biR" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/space, -/area/space/nearstation) -"biS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/secondary/entry) -"biT" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/closet, -/obj/item/crowbar, -/obj/item/device/assembly/flash/handheld, -/obj/item/device/radio, -/turf/open/floor/plasteel/red/side{ - dir = 10 - }, -/area/security/checkpoint/customs) -"biU" = ( -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/customs) -"biV" = ( -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/structure/table/reinforced, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/customs) -"biW" = ( -/obj/item/paper, -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor{ - dir = 2; - name = "Arrivals Security Checkpoint"; - pixel_y = -8; - req_access_txt = "1" - }, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/customs) -"biX" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table/reinforced, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/red/side, -/area/security/checkpoint/customs) -"biY" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/closet/wardrobe/red, -/turf/open/floor/plasteel/red/side{ - dir = 6 - }, -/area/security/checkpoint/customs) -"biZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bja" = ( -/obj/machinery/space_heater, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bjb" = ( -/obj/structure/disposalpipe/sorting/wrap{ - dir = 1 - }, -/turf/closed/wall, -/area/quartermaster/sorting) -"bjc" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bjd" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/eastleft{ - name = "Mail"; - req_access_txt = "50" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bje" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bjf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bjg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bjh" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bji" = ( -/obj/machinery/status_display{ - pixel_y = 32; - supply_display = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bjj" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bjk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Mailroom"; - req_access_txt = "0"; - req_one_access_txt = "48;50" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bjl" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/office) -"bjm" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bjn" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bjo" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/cargo_technician, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bjp" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/office) -"bjq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Office"; - req_access_txt = "0"; - req_one_access_txt = "48;50" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bjr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/hallway/primary/port) -"bjs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bjt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bju" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bjv" = ( -/turf/open/floor/plasteel/brown/corner{ - dir = 2 - }, -/area/hallway/primary/port) -"bjw" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/brown{ - dir = 2 - }, -/area/hallway/primary/port) -"bjx" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Custodial Closet APC"; - areastring = "/area/janitor"; - pixel_x = -24 - }, -/obj/structure/table, -/obj/item/clothing/gloves/color/orange, -/obj/item/storage/box/mousetraps, -/obj/item/storage/box/mousetraps, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bjy" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/portable_atmospherics/canister/water_vapor, -/mob/living/simple_animal/hostile/lizard{ - name = "Wags-His-Tail"; - real_name = "Wags-His-Tail" - }, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bjz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/landmark/start/janitor, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bjA" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"bjB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/central) -"bjC" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/power/apc{ - dir = 4; - name = "Central Maintenance APC"; - areastring = "/area/maintenance/central"; - pixel_x = 26 - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/maintenance/central) -"bjD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/bridge) -"bjE" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/computer/card, -/turf/open/floor/plasteel/darkgreen/side{ - dir = 9 - }, -/area/bridge) -"bjF" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/plasteel/darkgreen/side{ - dir = 1 - }, -/area/bridge) -"bjG" = ( -/obj/machinery/computer/crew, -/turf/open/floor/plasteel/darkgreen/side{ - dir = 1 - }, -/area/bridge) -"bjH" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/item/folder/yellow{ - pixel_y = 4 - }, -/obj/machinery/camera{ - c_tag = "Bridge - Central"; - dir = 2; - network = list("SS13") - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/darkbrown/side{ - dir = 1 - }, -/area/bridge) -"bjI" = ( -/obj/machinery/computer/station_alert, -/turf/open/floor/plasteel/darkbrown/side{ - dir = 1 - }, -/area/bridge) -"bjJ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/computer/monitor{ - name = "Bridge Power Monitoring Console" - }, -/turf/open/floor/plasteel/darkbrown/side{ - dir = 1 - }, -/area/bridge) -"bjK" = ( -/obj/machinery/computer/atmos_alert, -/turf/open/floor/plasteel/darkbrown/side{ - dir = 1 - }, -/area/bridge) -"bjL" = ( -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/darkbrown/side{ - dir = 1 - }, -/area/bridge) -"bjM" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel/darkred/side{ - dir = 1 - }, -/area/bridge) -"bjN" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel/darkred/side{ - dir = 1 - }, -/area/bridge) -"bjO" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/computer/prisoner, -/turf/open/floor/plasteel/darkred/side{ - dir = 5 - }, -/area/bridge) -"bjP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/bridge) -"bjQ" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album{ - pixel_y = -4 - }, -/obj/item/device/camera{ - pixel_y = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Captain)"; - pixel_x = -28 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bjR" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/item/razor{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/clothing/mask/cigarette/cigar, -/obj/item/reagent_containers/food/drinks/flask/gold, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bjS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bjT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bjU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bjV" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/holopad, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bjW" = ( -/obj/structure/table/wood, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bjX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bjY" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=14.2-Central-CrewQuarters"; - location = "14-Starboard-Central" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjZ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"bka" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Primary Hallway" - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bkb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bkc" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bkd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bke" = ( -/obj/machinery/firealarm{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bkf" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway - Tech Storage"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bkg" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bkh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bki" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bkj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bkk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bkl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bkm" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bkn" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bko" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Starboard Hallway APC"; - areastring = "/area/hallway/primary/starboard"; - pixel_y = 26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bkp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bkq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=14-Starboard-Central"; - location = "13.3-Engineering-Central" - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bkr" = ( -/turf/closed/wall/r_wall, -/area/engine/break_room) -"bks" = ( -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/table/glass, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bkt" = ( -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/book/manual/wiki/engineering_construction{ - pixel_y = 3 - }, -/obj/item/book/manual/wiki/engineering_guide{ - pixel_x = -4 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bku" = ( -/obj/item/folder/yellow, -/obj/item/folder/yellow, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/structure/table/glass, -/obj/item/storage/firstaid/fire{ - pixel_y = 8 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bkv" = ( -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bkw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bkx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bky" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bkz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bkA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bkB" = ( -/obj/machinery/disposal/bin{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 1 - }, -/area/engine/break_room) -"bkC" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/break_room) -"bkD" = ( -/obj/machinery/door/airlock/titanium{ - name = "Escape Pod Airlock" - }, -/obj/docking_port/mobile/pod{ - dir = 4; - id = "pod4"; - name = "escape pod 4"; - port_direction = 2; - preferred_direction = 4; - timid = 0 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_4) -"bkE" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/item/storage/pod{ - pixel_x = 6; - pixel_y = -32 - }, -/obj/machinery/light/small, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_4) -"bkF" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/computer/shuttle/pod{ - pixel_y = -32; - possible_destinations = "pod_lavaland4"; - shuttleId = "pod4" - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_4) -"bkG" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle/pod_4) -"bkH" = ( -/obj/docking_port/stationary/random{ - dir = 4; - id = "pod_lavaland4"; - name = "lavaland" - }, -/turf/open/space, -/area/space/nearstation) -"bkI" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"bkJ" = ( -/obj/machinery/light/small, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Space Access"; - dir = 1; - network = list("MiniSat") - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/aisat) -"bkK" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window{ - dir = 8; - name = "MiniSat Airlock Access"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bkL" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue{ - pixel_y = 2 - }, -/obj/item/pen, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bkM" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bkN" = ( -/obj/machinery/camera{ - c_tag = "AI Chamber - Aft"; - dir = 1; - network = list("RD") - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bkO" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bkP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bkQ" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bkR" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue{ - pixel_y = 2 - }, -/obj/item/pen, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bkS" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 15; - id = "arrivals_stationary"; - name = "arrivals"; - width = 7; - roundstart_template = /datum/map_template/shuttle/arrival/box; - - }, -/turf/open/space/basic, -/area/space) -"bkT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bkU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/secondary/entry) -"bkV" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall, -/area/security/checkpoint/customs) -"bkW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/security/checkpoint/customs) -"bkX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/security{ - name = "Customs Desk"; - req_access = null; - req_access_txt = "1" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bkY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/security/checkpoint/customs) -"bkZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bla" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;48;50;1" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"blb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/port/fore) -"blc" = ( -/obj/machinery/door/window/eastleft{ - base_state = "right"; - icon_state = "right"; - name = "Deliveries"; - req_access_txt = "50" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bld" = ( -/obj/machinery/conveyor_switch/oneway{ - convdir = -1; - id = "packageExternal"; - pixel_y = 18 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"ble" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"blf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"blg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"blh" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bli" = ( -/obj/structure/table, -/obj/item/device/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/quartermaster/sorting) -"blj" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/folder/yellow, -/obj/item/device/multitool, -/obj/item/pen/red, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/quartermaster/office) -"blk" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bll" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"blm" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/quartermaster/office) -"bln" = ( -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/hallway/primary/port) -"blo" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"blp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"blq" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"blr" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/hallway/primary/port) -"bls" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/box/lights/mixed, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"blt" = ( -/obj/structure/janitorialcart, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"blu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light/small, -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/vehicle/ridden/janicart, -/obj/item/key/janitor, -/turf/open/floor/plating, -/area/janitor) -"blv" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel/floorgrime, -/area/janitor) -"blw" = ( -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/central) -"blx" = ( -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/maintenance/central) -"bly" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"blz" = ( -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/darkgreen/side{ - dir = 8 - }, -/area/bridge) -"blA" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"blB" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"blC" = ( -/turf/open/floor/plasteel/dark, -/area/bridge) -"blD" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"blE" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"blF" = ( -/obj/item/folder/red{ - pixel_y = 3 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/folder/red{ - pixel_y = 3 - }, -/turf/open/floor/plasteel/darkred/side{ - dir = 4 - }, -/area/bridge) -"blG" = ( -/turf/closed/wall, -/area/crew_quarters/heads/captain/private) -"blH" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/bikehorn/rubberducky, -/obj/machinery/light_switch{ - pixel_x = -28 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"blI" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Captain's Bedroom"; - req_access_txt = "20" - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"blJ" = ( -/obj/structure/closet/secure_closet/captains, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"blK" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/machinery/suit_storage_unit/captain, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"blL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"blM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"blN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"blO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Primary Hallway" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blP" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blR" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blS" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blT" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blU" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blV" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blW" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blX" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blY" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blZ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bma" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bmb" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bmc" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bmd" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bme" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 28 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/caution/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bmf" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/light_switch{ - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bmg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bmh" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bmi" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bmj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bmk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bml" = ( -/turf/open/floor/plasteel, -/area/engine/break_room) -"bmm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - name = "Escape Pod Four"; - req_access = null; - req_access_txt = "32" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bmn" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/engine/break_room) -"bmo" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bmp" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat/foyer) -"bmq" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bmr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bms" = ( -/obj/machinery/door/airlock/highsecurity{ - locked = 0; - name = "AI Chamber"; - req_access_txt = "16" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "AI Chamber entrance shutters"; - name = "AI Chamber entrance shutters" - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = -26; - pixel_y = 3 - }, -/obj/item/device/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_x = 28 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bmt" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/satellite) -"bmu" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bmv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white/corner{ - dir = 4 - }, -/area/hallway/secondary/entry) -"bmw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/arrival{ - dir = 5 - }, -/area/hallway/secondary/entry) -"bmx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bmy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 9 - }, -/area/hallway/primary/port) -"bmz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bmA" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bmB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 5 - }, -/area/hallway/primary/port) -"bmC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bmD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/side{ - dir = 9 - }, -/area/hallway/primary/port) -"bmE" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/hallway/primary/port) -"bmF" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 30 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 5 - }, -/area/hallway/primary/port) -"bmG" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageExternal" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bmH" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/machinery/computer/stockexchange, -/turf/open/floor/plasteel/arrival{ - dir = 2 - }, -/area/quartermaster/sorting) -"bmI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair/office/dark, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel/arrival{ - dir = 2 - }, -/area/quartermaster/sorting) -"bmJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/arrival{ - dir = 2 - }, -/area/quartermaster/sorting) -"bmK" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Mailroom"; - dir = 1; - network = list("SS13") - }, -/turf/open/floor/plasteel/arrival{ - dir = 2 - }, -/area/quartermaster/sorting) -"bmL" = ( -/obj/structure/table, -/obj/item/stack/wrapping_paper, -/obj/item/stack/wrapping_paper, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_y = -30 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/storage/box/lights/mixed, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/arrival{ - dir = 2 - }, -/area/quartermaster/sorting) -"bmM" = ( -/obj/item/storage/box, -/obj/structure/table, -/obj/item/storage/box, -/obj/item/storage/box, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/item/hand_labeler, -/obj/machinery/power/apc{ - dir = 4; - name = "Delivery Office APC"; - areastring = "/area/quartermaster/sorting"; - pixel_x = 26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/arrival{ - dir = 6 - }, -/area/quartermaster/sorting) -"bmN" = ( -/obj/structure/table, -/obj/machinery/computer/stockexchange, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/turf/open/floor/plasteel/brown{ - dir = 10 - }, -/area/quartermaster/office) -"bmO" = ( -/obj/machinery/photocopier, -/turf/open/floor/plasteel/brown{ - dir = 2 - }, -/area/quartermaster/office) -"bmP" = ( -/turf/open/floor/plasteel/brown{ - dir = 2 - }, -/area/quartermaster/office) -"bmQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/holopad, -/turf/open/floor/plasteel/brown{ - dir = 2 - }, -/area/quartermaster/office) -"bmR" = ( -/obj/machinery/autolathe, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/turf/open/floor/plasteel/brown{ - dir = 6 - }, -/area/quartermaster/office) -"bmS" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/brown{ - dir = 10 - }, -/area/hallway/primary/port) -"bmT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/holopad, -/turf/open/floor/plasteel/brown/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bmU" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/brown/corner{ - dir = 2 - }, -/area/hallway/primary/port) -"bmV" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/rack, -/obj/item/storage/box, -/obj/item/storage/box, -/obj/item/storage/box, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/packageWrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/hand_labeler, -/turf/open/floor/plasteel/brown{ - dir = 2 - }, -/area/hallway/primary/port) -"bmW" = ( -/obj/structure/table, -/obj/item/device/toner, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 30 - }, -/turf/open/floor/plasteel/brown{ - dir = 6 - }, -/area/hallway/primary/port) -"bmX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"bmY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"bmZ" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hop) -"bna" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/tank/internals/air, -/turf/open/floor/plating, -/area/maintenance/central) -"bnb" = ( -/obj/item/extinguisher, -/turf/open/floor/plating, -/area/maintenance/central) -"bnc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/modular_computer/console/preset/command, -/turf/open/floor/plasteel/darkblue/side{ - dir = 9 - }, -/area/bridge) -"bnd" = ( -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_y = 29 - }, -/obj/machinery/modular_computer/console/preset/engineering, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bne" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/darkgreen/corner{ - dir = 1 - }, -/area/bridge) -"bnf" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bng" = ( -/obj/item/device/radio/beacon, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bnh" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/recharger{ - pixel_y = 3 - }, -/obj/item/restraints/handcuffs{ - pixel_y = 3 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/darkred/corner{ - dir = 4 - }, -/area/bridge) -"bni" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/computer/security/mining{ - network = list("MINE","AuxBase") - }, -/obj/machinery/keycard_auth{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bnj" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_x = 32 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/computer/cargo/request, -/turf/open/floor/plasteel/darkblue/side{ - dir = 5 - }, -/area/bridge) -"bnk" = ( -/obj/effect/landmark/xeno_spawn, -/obj/item/soap/deluxe, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/shower{ - pixel_y = 12 - }, -/obj/structure/curtain, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/captain/private) -"bnl" = ( -/obj/structure/mirror{ - pixel_y = 28 - }, -/obj/structure/sink{ - pixel_y = 17 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/captain/private) -"bnm" = ( -/obj/structure/toilet{ - pixel_y = 13 - }, -/obj/machinery/light{ - dir = 2 - }, -/obj/effect/landmark/start/captain, -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/captain/private) -"bnn" = ( -/obj/machinery/door/airlock/silver{ - name = "Bathroom" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/captain/private) -"bno" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bnp" = ( -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bnq" = ( -/obj/effect/landmark/start/captain, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bnr" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bns" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=13.1-Engineering-Enter"; - location = "12-Central-Starboard" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bnt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/yellow/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"bnu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Primary Hallway" - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnw" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnx" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bny" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway - Auxiliary Tool Storage"; - dir = 1; - network = list("SS13") - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnE" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnH" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway - Engineering"; - dir = 1; - network = list("SS13") - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnI" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=13.2-Tcommstore"; - location = "13.1-Engineering-Enter" - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bnJ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bnK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/caution/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bnL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/engine/break_room) -"bnM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bnN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bnO" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bnP" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bnQ" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bnR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bnS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bnT" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bnU" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall/r_wall, -/area/engine/break_room) -"bnV" = ( -/turf/closed/wall/mineral/plastitanium, -/area/engine/break_room) -"bnW" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved/flipped{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bnX" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/crossing/horizontal, -/turf/open/space, -/area/space/nearstation) -"bnY" = ( -/obj/structure/transit_tube/curved{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"bnZ" = ( -/turf/closed/wall, -/area/space/nearstation) -"boa" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/space, -/area/space/nearstation) -"bob" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/obj/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/aisat) -"boc" = ( -/obj/machinery/computer/teleporter, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat/foyer) -"bod" = ( -/obj/machinery/teleport/station, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat/foyer) -"boe" = ( -/obj/machinery/teleport/hub, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat/foyer) -"bof" = ( -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/machinery/porta_turret/ai{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the RD's goons from the safety of his office."; - dir = 4; - name = "Research Monitor"; - network = list("RD"); - pixel_x = -28 - }, -/turf/open/floor/plasteel/vault{ - dir = 1 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bog" = ( -/obj/structure/showcase/cyborg/old{ - dir = 2; - pixel_y = 20 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"boh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"boi" = ( -/obj/structure/showcase/cyborg/old{ - dir = 2; - pixel_y = 20 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 4 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"boj" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/porta_turret/ai{ - dir = 2 - }, -/obj/machinery/computer/security/telescreen{ - dir = 8; - name = "MiniSat Monitor"; - network = list("MiniSat","tcomm"); - pixel_x = 28 - }, -/turf/open/floor/plasteel/vault{ - dir = 4 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bok" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/storage/satellite) -"bol" = ( -/obj/machinery/recharge_station, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/storage/satellite) -"bom" = ( -/obj/machinery/airalarm{ - pixel_y = 26 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 2; - name = "Auxiliary MiniSat Distribution Port" - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/storage/satellite) -"bon" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/ai_monitored/storage/satellite) -"boo" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bop" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/secondary/entry) -"boq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bor" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 10 - }, -/area/hallway/primary/port) -"bos" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral/side, -/area/hallway/primary/port) -"bot" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=5-Customs"; - location = "4-Customs" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/neutral/side, -/area/hallway/primary/port) -"bou" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/side, -/area/hallway/primary/port) -"bov" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 6 - }, -/area/hallway/primary/port) -"bow" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 10 - }, -/area/hallway/primary/port) -"box" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"boy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/hallway/primary/port) -"boz" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageExternal" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"boA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/machinery/door/window/westleft{ - dir = 1; - name = "Delivery Desk"; - req_access_txt = "50" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"boB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"boC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/mineral/ore_redemption, -/turf/open/floor/plasteel/dark, -/area/quartermaster/office) -"boD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/quartermaster/office) -"boE" = ( -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the Supply department is."; - dir = 1; - icon_state = "direction_supply"; - name = "cargo department"; - pixel_y = 8 - }, -/turf/closed/wall, -/area/quartermaster/office) -"boF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/brown{ - dir = 8 - }, -/area/hallway/primary/port) -"boG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/brown{ - dir = 4 - }, -/area/hallway/primary/port) -"boH" = ( -/obj/structure/sign/directions/security{ - desc = "A direction sign, pointing out which way the security department is."; - dir = 1; - icon_state = "direction_sec"; - pixel_y = 8 - }, -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the engineering department is."; - dir = 4; - icon_state = "direction_eng" - }, -/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 = -8 - }, -/turf/closed/wall/r_wall, -/area/hallway/primary/port) -"boI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"boJ" = ( -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/button/door{ - id = "hop"; - name = "Privacy Shutters Control"; - pixel_y = 25; - req_access_txt = "28" - }, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"boK" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/storage/secure/briefcase, -/obj/structure/table/wood, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching Prison Wing holding areas."; - name = "Prison Monitor"; - network = list("Prison"); - pixel_y = 30 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"boL" = ( -/obj/machinery/recharger, -/obj/item/storage/secure/safe{ - pixel_x = 34 - }, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"boM" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/central) -"boN" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/central) -"boO" = ( -/obj/item/device/radio/off, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"boP" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Bridge" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/central) -"boQ" = ( -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Bridge Deliveries"; - req_access_txt = "19" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/bridge) -"boR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 8 - }, -/area/bridge) -"boS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"boT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"boU" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"boV" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/darkblue/corner, -/area/bridge) -"boW" = ( -/obj/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 2 - }, -/area/bridge) -"boX" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/window/brigdoor{ - dir = 2; - name = "Command Desk"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 2 - }, -/area/bridge) -"boY" = ( -/obj/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 2 - }, -/area/bridge) -"boZ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/bridge) -"bpa" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bpb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bpc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/camera{ - c_tag = "Bridge - Starboard"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 4 - }, -/area/bridge) -"bpd" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters"; - req_access = null; - req_access_txt = "20" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bpe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bpf" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/yellow/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"bpg" = ( -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the escape arm is."; - icon_state = "direction_evac"; - name = "escape arm" - }, -/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 = 8 - }, -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the research department is."; - icon_state = "direction_sci"; - name = "research department"; - pixel_y = -8 - }, -/turf/closed/wall, -/area/storage/art) -"bph" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/storage/art) -"bpi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Art Storage" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/storage/art) -"bpj" = ( -/turf/closed/wall, -/area/storage/art) -"bpk" = ( -/turf/closed/wall, -/area/crew_quarters/bar) -"bpl" = ( -/turf/closed/wall, -/area/maintenance/starboard) -"bpm" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;25;46" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bpn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/starboard) -"bpo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock{ - name = "Starboard Emergency Storage"; - req_access_txt = "0" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bpp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;25;46" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bpq" = ( -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the engineering department is."; - dir = 4; - icon_state = "direction_eng"; - pixel_y = 8 - }, -/turf/closed/wall, -/area/maintenance/starboard) -"bpr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bps" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bpt" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/caution/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bpu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Foyer"; - req_access_txt = "0"; - req_one_access_txt = "32;19" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bpv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bpw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bpx" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bpy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bpz" = ( -/obj/structure/table/glass, -/obj/item/device/lightreplacer{ - pixel_y = 7 - }, -/obj/item/storage/belt/utility, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bpA" = ( -/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko{ - pixel_y = 4 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bpB" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bpC" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Foyer - Starboard"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bpD" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 4 - }, -/area/engine/break_room) -"bpE" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/structure/transit_tube/station/reverse/flipped{ - dir = 1 - }, -/obj/structure/transit_tube_pod{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 4 - }, -/area/engine/break_room) -"bpF" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/structure/transit_tube/curved{ - dir = 8 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 4 - }, -/area/engine/break_room) -"bpG" = ( -/obj/structure/transit_tube/diagonal, -/turf/open/space, -/area/space/nearstation) -"bpH" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/transit_tube/curved/flipped, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/aisat) -"bpI" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/aisat) -"bpJ" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/aisat) -"bpK" = ( -/obj/machinery/door/window{ - dir = 1; - name = "MiniSat Walkway Access"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/aisat) -"bpL" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/aisat) -"bpM" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/aisat) -"bpN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/aisat) -"bpO" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/ai_monitored/turret_protected/aisat/foyer) -"bpP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/ai_monitored/turret_protected/aisat/foyer) -"bpQ" = ( -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/aisat_interior"; - enabled = 1; - icon_state = "control_standby"; - name = "Antechamber Turret Control"; - pixel_x = 30; - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/ai_monitored/turret_protected/aisat/foyer) -"bpR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bpS" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "MiniSat - Antechamber"; - dir = 4; - network = list("MiniSat") - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bpT" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 1 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bpU" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/start/cyborg, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bpV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 4 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bpW" = ( -/obj/machinery/power/apc{ - aidisabled = 0; - dir = 4; - name = "MiniSat Antechamber APC"; - areastring = "/area/ai_monitored/turret_protected/aisat_interior"; - pixel_x = 29 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 4 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"bpX" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bpY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bpZ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bqa" = ( -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bqb" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Arrivals - Station Entrance"; - dir = 4; - network = list("SS13") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bqc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bqd" = ( -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/secondary/entry) -"bqe" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bqf" = ( -/obj/structure/chair/comfy/beige, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bqg" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bqh" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/chips, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bqi" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"bqj" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/hallway/primary/port) -"bqk" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/port) -"bql" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bqm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bqn" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bqo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bqp" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bqq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Port Primary Hallway - Middle"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bqr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bqs" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Port Hallway APC"; - areastring = "/area/hallway/primary/port"; - pixel_x = -1; - pixel_y = 26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bqt" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bqu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bqv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/brown/corner{ - dir = 4 - }, -/area/hallway/primary/port) -"bqw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/brown/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bqx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/brown/corner{ - dir = 4 - }, -/area/hallway/primary/port) -"bqy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/brown/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bqz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Port Primary Hallway" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bqA" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"bqB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=4-Customs"; - location = "3-Central-Port" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bqC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "hop"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hop) -"bqD" = ( -/obj/item/folder/blue, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/table/wood, -/obj/item/device/assembly/flash/handheld, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bqE" = ( -/obj/effect/landmark/start/head_of_personnel, -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bqF" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = 32 - }, -/obj/machinery/computer/security/mining{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bqG" = ( -/obj/machinery/power/apc/highcap/ten_k{ - dir = 8; - name = "Bridge APC"; - areastring = "/area/bridge"; - pixel_x = -27 - }, -/obj/structure/cable/yellow, -/obj/machinery/camera{ - c_tag = "Bridge - Port"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 8 - }, -/area/bridge) -"bqH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bqI" = ( -/turf/open/floor/plasteel/darkblue/corner, -/area/bridge) -"bqJ" = ( -/turf/open/floor/plasteel/darkblue/side{ - dir = 2 - }, -/area/bridge) -"bqK" = ( -/turf/open/floor/plasteel/darkblue/side{ - dir = 6 - }, -/area/bridge) -"bqL" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/recharger, -/obj/item/restraints/handcuffs, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bqM" = ( -/obj/machinery/computer/communications, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bqN" = ( -/obj/machinery/computer/security/wooden_tv{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bqO" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/folder/blue{ - pixel_y = 2 - }, -/obj/item/folder/blue{ - pixel_y = 2 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bqP" = ( -/turf/open/floor/plasteel/darkblue/side{ - dir = 10 - }, -/area/bridge) -"bqQ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/bridge) -"bqR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bqS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/darkblue/side{ - dir = 4 - }, -/area/bridge) -"bqT" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/item/storage/fancy/donut_box, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bqU" = ( -/obj/structure/displaycase/captain{ - pixel_y = 5 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bqV" = ( -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bqW" = ( -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bqX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bqY" = ( -/obj/machinery/computer/communications{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Captain)"; - pixel_x = 28 - }, -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/machinery/keycard_auth{ - pixel_x = 24; - pixel_y = 24 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bqZ" = ( -/obj/structure/rack, -/obj/item/cane, -/obj/item/reagent_containers/food/snacks/grown/mushroom/glowshroom, -/turf/open/floor/plating, -/area/crew_quarters/heads/captain/private) -"bra" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Starboard - Art Storage"; - dir = 4; - network = list("SS13") - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"brb" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"brc" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/art) -"brd" = ( -/obj/structure/table, -/obj/item/hand_labeler, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"bre" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/storage/art) -"brf" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/easel, -/obj/item/canvas/twentythreeXtwentythree, -/obj/item/canvas/twentythreeXtwentythree, -/turf/open/floor/plasteel, -/area/storage/art) -"brg" = ( -/obj/structure/closet/secure_closet/bar{ - req_access_txt = "25" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brh" = ( -/obj/machinery/reagentgrinder, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bri" = ( -/obj/structure/table/wood, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/gun/ballistic/revolver/doublebarrel, -/obj/machinery/camera{ - c_tag = "Bar - Backroom"; - dir = 2; - network = list("SS13") - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brj" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"brk" = ( -/obj/machinery/door/window/southleft{ - base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Bar Delivery"; - req_access_txt = "25" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"brl" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 8; - freq = 1400; - location = "Bar" - }, -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/crew_quarters/bar) -"brm" = ( -/obj/item/storage/box/lights/mixed, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brn" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"bro" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brp" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brq" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brt" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"bru" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"brv" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brw" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/caution/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"brx" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bry" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/caution/corner{ - dir = 4 - }, -/area/hallway/primary/starboard) -"brz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/engine/break_room) -"brA" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/break_room) -"brB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/break_room) -"brC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"brD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"brE" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"brF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"brG" = ( -/obj/machinery/door/poddoor/preopen{ - id = "transittube"; - name = "Transit Tube Blast Door" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"brH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Access"; - req_one_access_txt = "32;19" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) -"brI" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) -"brJ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) -"brK" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/table/glass, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) -"brL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/transit_tube/curved{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"brM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/transit_tube/horizontal, -/turf/open/space, -/area/space/nearstation) -"brN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/transit_tube/horizontal, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space, -/area/space/nearstation) -"brO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/transit_tube/crossing/horizontal, -/turf/open/space, -/area/space/nearstation) -"brP" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/transit_tube/horizontal, -/turf/open/space, -/area/space/nearstation) -"brQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/transit_tube/junction/flipped{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"brR" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space, -/area/space/nearstation) -"brS" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space, -/area/space/nearstation) -"brT" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/transit_tube/station{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"brU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"brV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"brW" = ( -/obj/machinery/holopad, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/aisat) -"brX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"brY" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"brZ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Foyer"; - req_one_access_txt = "32;19" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bsa" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bsb" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/holopad, -/obj/item/device/radio/beacon, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bsc" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bsd" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Antechamber"; - req_one_access_txt = "32;19" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bse" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bsf" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bsg" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/mob/living/simple_animal/bot/secbot/pingsky, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bsh" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bsi" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bsj" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "32" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bsk" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bsl" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bsm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bsn" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bso" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bsp" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bsq" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bsr" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bss" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bst" = ( -/obj/machinery/holopad, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bsu" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Arrivals APC"; - areastring = "/area/hallway/secondary/entry"; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/secondary/entry) -"bsv" = ( -/obj/structure/chair/comfy/beige{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Arrivals - Lounge"; - dir = 4; - network = list("SS13") - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bsw" = ( -/turf/open/floor/carpet, -/area/hallway/primary/port) -"bsx" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/holopad{ - pixel_y = -16 - }, -/turf/open/floor/carpet, -/area/hallway/primary/port) -"bsy" = ( -/obj/structure/chair/comfy/beige{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bsz" = ( -/obj/machinery/vending/cola/random, -/obj/machinery/newscaster{ - pixel_x = -28; - pixel_y = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"bsA" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/hallway/primary/port) -"bsB" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsC" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsD" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/goonplaque{ - desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of sentient postcards in a realm of darkness. The station model number is MSv42A-160516" - }, -/area/hallway/primary/port) -"bsE" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsF" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsG" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsH" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsI" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsJ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsK" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsL" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 3 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsP" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Port Primary Hallway" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bsR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bsS" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"bsT" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen, -/obj/structure/window/reinforced, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bsU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/window{ - dir = 2; - name = "HoP's Desk"; - req_access_txt = "57" - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bsV" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/cargo/request{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bsW" = ( -/obj/machinery/vending/cart{ - req_access_txt = "57" - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = 21 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bsX" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Personnel's Desk"; - departmentType = 5; - name = "Head of Personnel RC"; - pixel_y = 30 - }, -/obj/machinery/pdapainter{ - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bsY" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/bed/dogbed/ian, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bsZ" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bta" = ( -/turf/closed/wall, -/area/crew_quarters/heads/hop) -"btb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/darkblue/side{ - dir = 2 - }, -/area/bridge) -"btc" = ( -/obj/machinery/light, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/rack, -/obj/item/storage/secure/briefcase, -/obj/item/clothing/mask/cigarette/cigar, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"btd" = ( -/obj/structure/rack, -/obj/item/device/aicard, -/obj/item/device/radio/off, -/obj/machinery/computer/security/telescreen{ - dir = 1; - name = "MiniSat Monitor"; - network = list("MiniSat","tcomm"); - pixel_y = -29 - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bte" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/cell_charger{ - pixel_y = 4 - }, -/obj/structure/table/glass, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"btf" = ( -/turf/open/floor/carpet, -/area/bridge) -"btg" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/bridge) -"bth" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bti" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/structure/rack, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/signaler, -/obj/item/device/assembly/timer, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"btj" = ( -/obj/machinery/light, -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/toolbox/emergency{ - pixel_x = -2; - pixel_y = -3 - }, -/obj/item/wrench, -/obj/item/device/multitool, -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"btk" = ( -/obj/machinery/light_switch{ - pixel_x = 8; - pixel_y = -26 - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 10 - }, -/area/bridge) -"btl" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 2 - }, -/area/bridge) -"btm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/darkblue/side{ - dir = 6 - }, -/area/bridge) -"btn" = ( -/obj/structure/fireaxecabinet{ - pixel_y = -32 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_y = 3 - }, -/obj/machinery/light_switch{ - pixel_x = 28 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bto" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/power/apc{ - dir = 8; - name = "Captain's Quarters APC"; - areastring = "/area/crew_quarters/heads/captain/private"; - pixel_x = -24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/paper/fluff/gateway, -/obj/item/coin/plasma, -/obj/item/melee/chainofcommand, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"btp" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"btq" = ( -/obj/structure/table/wood, -/obj/item/stamp/captain, -/obj/machinery/computer/security/wooden_tv, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"btr" = ( -/obj/effect/landmark/start/captain, -/obj/structure/chair/comfy/brown, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bts" = ( -/obj/machinery/computer/card{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Captain's Desk"; - departmentType = 5; - name = "Captain RC"; - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"btt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"btu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"btv" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"btw" = ( -/obj/structure/table, -/obj/machinery/power/apc{ - dir = 8; - name = "Art Storage APC"; - areastring = "/area/storage/art"; - pixel_x = -25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/item/paper_bin, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/turf/open/floor/plasteel, -/area/storage/art) -"btx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/storage/art) -"bty" = ( -/obj/structure/table, -/obj/item/paper_bin/construction, -/obj/item/airlock_painter, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"btz" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/vending_refill/cigarette, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"btA" = ( -/obj/effect/landmark/start/bartender, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"btB" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"btC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"btD" = ( -/obj/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = -30 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"btE" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Bar Maintenance"; - req_access_txt = "25" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btH" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 2; - sortType = 19 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btI" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;25;46" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btJ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btK" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"btL" = ( -/obj/item/device/assembly/prox_sensor, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;25;46" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btQ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"btS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/warning/securearea{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 2 - }, -/area/hallway/primary/starboard) -"btT" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/engine/break_room) -"btU" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -30 - }, -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/engine/break_room) -"btV" = ( -/obj/machinery/microwave{ - pixel_y = 4 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Foyer - Port"; - dir = 1; - network = list("SS13") - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/engine/break_room) -"btW" = ( -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/item/storage/box/donkpockets, -/obj/structure/table/glass, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/engine/break_room) -"btX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"btY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "Engineering Foyer APC"; - areastring = "/area/engine/break_room"; - pixel_x = -1; - pixel_y = -26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/engine/break_room) -"btZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bua" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bub" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"buc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/warning/securearea{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bud" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) -"bue" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/corner, -/area/engine/break_room) -"buf" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/folder/blue{ - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/pen, -/obj/machinery/computer/security/telescreen{ - dir = 1; - name = "MiniSat Monitor"; - network = list("MiniSat","tcomm"); - pixel_y = -28 - }, -/turf/open/floor/plasteel/darkblue/corner, -/area/engine/break_room) -"bug" = ( -/obj/structure/transit_tube/diagonal/topleft, -/turf/open/space, -/area/space/nearstation) -"buh" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/transit_tube/curved{ - dir = 1 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/aisat) -"bui" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/light/small, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior Access"; - dir = 1; - network = list("MiniSat") - }, -/obj/machinery/power/apc{ - aidisabled = 0; - dir = 2; - name = "MiniSat Exterior APC"; - areastring = "/area/aisat"; - pixel_y = -24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/aisat) -"buj" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/aisat) -"buk" = ( -/obj/machinery/door/window{ - dir = 2; - name = "MiniSat Walkway Access"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/aisat) -"bul" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/aisat) -"bum" = ( -/obj/structure/window/reinforced, -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/aisat) -"bun" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/aisat) -"buo" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat/foyer) -"bup" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat/foyer) -"buq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc/highcap/five_k{ - aidisabled = 0; - dir = 2; - name = "MiniSat Foyer APC"; - areastring = "/area/ai_monitored/turret_protected/aisat/foyer"; - pixel_y = -29 - }, -/obj/structure/cable/yellow, -/obj/machinery/camera/motion{ - c_tag = "MiniSat Foyer"; - dir = 8; - network = list("MiniSat") - }, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat/foyer) -"bur" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bus" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/mob/living/simple_animal/bot/floorbot, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"but" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/darkblue/corner{ - dir = 8 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"buu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"buv" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/darkblue/corner, -/area/ai_monitored/turret_protected/aisat_interior) -"buw" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/mob/living/simple_animal/bot/cleanbot, -/turf/open/floor/plasteel/darkblue/corner, -/area/ai_monitored/turret_protected/aisat_interior) -"bux" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/machinery/power/apc{ - dir = 2; - name = "MiniSat Maint APC"; - areastring = "/area/ai_monitored/storage/satellite"; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow, -/obj/item/stack/sheet/mineral/plasma{ - amount = 35 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"buy" = ( -/obj/machinery/computer/station_alert{ - dir = 1 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/machinery/computer/security/telescreen{ - dir = 1; - name = "MiniSat Monitor"; - network = list("MiniSat","tcomm"); - pixel_y = -29 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"buz" = ( -/obj/structure/table, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/computer/monitor{ - dir = 1 - }, -/obj/structure/cable/yellow, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"buA" = ( -/obj/machinery/camera/motion{ - c_tag = "MiniSat Maintenance"; - dir = 8; - network = list("MiniSat") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/multitool, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"buB" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"buC" = ( -/obj/machinery/vending/cola/random, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"buD" = ( -/obj/item/device/radio/beacon, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"buE" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"buF" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"buG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/newscaster{ - pixel_x = 28; - pixel_y = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/secondary/entry) -"buH" = ( -/obj/structure/chair/comfy/beige{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"buI" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/hallway/primary/port) -"buJ" = ( -/obj/structure/chair/comfy/beige{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"buK" = ( -/obj/machinery/vending/snack/random, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"buL" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/hallway/primary/port) -"buM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/port) -"buN" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"buO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"buP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"buQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"buR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"buS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"buT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"buU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"buV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"buW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/plaques/kiddie/library{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"buX" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"buY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"buZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bva" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Port Primary Hallway - Starboard"; - dir = 1; - network = list("SS13") - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bvb" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bvc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Port Primary Hallway" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bvd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bve" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=7-Command-Starboard"; - location = "6-Port-Central" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bvf" = ( -/obj/machinery/button/door{ - id = "hop"; - name = "Privacy Shutters Control"; - pixel_x = -24; - pixel_y = -6; - req_access_txt = "28" - }, -/obj/machinery/light_switch{ - pixel_x = -25; - pixel_y = 5 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) "bvg" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bvh" = ( -/mob/living/simple_animal/pet/dog/corgi/Ian, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bvi" = ( -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Head of Personnel APC"; - areastring = "/area/crew_quarters/heads/hop"; - pixel_y = 24 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bvj" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bvk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bvl" = ( -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bvm" = ( -/obj/machinery/keycard_auth{ - pixel_x = 26 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bvn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bvo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bvp" = ( -/turf/closed/wall, -/area/bridge) -"bvq" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/machinery/vending/cola/random, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bvr" = ( -/obj/machinery/button/door{ - id = "bridge blast"; - name = "Bridge Access Blast Door Control"; - pixel_x = -1; - pixel_y = -24; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/button/door{ - id = "council blast"; - name = "Council Chamber Blast Door Control"; - pixel_x = -1; - pixel_y = -34; - req_access_txt = "19" - }, -/obj/machinery/camera{ - c_tag = "Bridge - Command Chair"; - dir = 1; - network = list("SS13") - }, -/turf/open/floor/carpet, -/area/bridge) -"bvs" = ( -/obj/machinery/holopad, -/turf/open/floor/carpet, -/area/bridge) -"bvt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/button/door{ - id = "evashutter"; - name = "E.V.A. Storage Shutter Control"; - pixel_y = -24; - req_access_txt = "19" - }, -/obj/machinery/button/door{ - id = "gateshutter"; - name = "Gateway Shutter Control"; - pixel_y = -34; - req_access_txt = "19" - }, -/turf/open/floor/carpet, -/area/bridge) -"bvu" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/vending/snack/random, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bvv" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bvw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/darkblue/side{ - dir = 1 - }, -/area/bridge) -"bvx" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced, -/obj/machinery/light_switch{ - pixel_x = -28 - }, -/obj/item/storage/secure/briefcase{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/storage/lockbox/medal, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bvy" = ( -/obj/machinery/door/window{ - name = "Captain's Desk"; - req_access_txt = "20" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bvz" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/structure/window/reinforced, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bvA" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/machinery/door/window{ - base_state = "right"; - icon_state = "right"; - name = "Captain's Desk"; - req_access_txt = "20" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/item/stamp/captain, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bvB" = ( -/obj/structure/table/wood, -/obj/item/hand_tele, -/obj/structure/window/reinforced, -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bvC" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" + dir = 4 }, /obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, /turf/open/floor/plating, -/area/maintenance/central) -"bvD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/area/maintenance/starboard) +"bvh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "20;12" - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bvE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ dir = 9 }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard) +"bvi" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/engine/break_room) +"bvj" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bvk" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" }, -/area/hallway/primary/central) -"bvF" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bvl" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bvG" = ( -/obj/structure/table, -/obj/item/canvas/twentythreeXtwentythree, -/obj/item/canvas/twentythreeXtwentythree, -/obj/item/canvas/twentythreeXnineteen, -/obj/item/canvas/twentythreeXnineteen, -/obj/item/canvas/nineteenXnineteen, -/obj/item/canvas/nineteenXnineteen, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/turf/open/floor/plasteel, -/area/storage/art) -"bvH" = ( -/obj/structure/table, -/obj/item/device/camera, -/turf/open/floor/plasteel, -/area/storage/art) -"bvI" = ( -/obj/structure/table, -/obj/item/device/camera_film, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 28 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"bvJ" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bvK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/landmark/xeno_spawn, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bvL" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/closet/gmcloset, -/obj/item/wrench, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/stack/sheet/metal{ - amount = 30 - }, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bvM" = ( -/obj/machinery/chem_master/condimaster{ - desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments."; - name = "HoochMaster Deluxe"; - pixel_x = -4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bvN" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bvO" = ( -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard) -"bvP" = ( -/obj/item/storage/toolbox/emergency, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bvQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bvR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"bvS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/caution{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bvT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/caution{ +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bvm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/area/hallway/primary/starboard) -"bvU" = ( -/turf/closed/wall, +/turf/closed/wall/r_wall, /area/engine/break_room) -"bvV" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Foyer Maintenance"; - req_access_txt = "0"; - req_one_access_txt = "32;19" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bvW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/caution{ - dir = 2 - }, -/area/engine/break_room) -"bvX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/caution{ - dir = 2 - }, -/area/engine/break_room) -"bvY" = ( +"bvn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/caution{ dir = 2 }, /area/engine/break_room) -"bvZ" = ( +"bvo" = ( /obj/structure/table/glass, /obj/item/wrench, /obj/item/crowbar, @@ -36744,7 +35169,7 @@ }, /turf/open/floor/plasteel/dark, /area/engine/break_room) -"bwa" = ( +"bvp" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/machinery/camera{ c_tag = "Engineering - Transit Tube Access"; @@ -36756,698 +35181,11 @@ }, /turf/open/floor/plasteel/dark, /area/engine/break_room) -"bwb" = ( +"bvq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/engine/break_room) -"bwc" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bwd" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved/flipped{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"bwe" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"bwf" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"bwg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"bwh" = ( -/obj/machinery/door/airlock/hatch{ - name = "Telecomms Control Room"; - req_one_access_txt = "19; 61" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/vault{ - dir = 8 - }, -/area/tcommsat/computer) -"bwi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bwj" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bwk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bwl" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-18" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bwm" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bwn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bwo" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-08" - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bwp" = ( -/obj/structure/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bwq" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-03" - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/primary/port) -"bwr" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Port Primary Hallway - Port"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"bws" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 8 - }, -/area/hallway/primary/port) -"bwt" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 4 - }, -/area/hallway/primary/port) -"bwu" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/vault, -/area/hallway/primary/port) -"bwv" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/vault, -/area/hallway/primary/port) -"bww" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel/vault, -/area/hallway/primary/port) -"bwx" = ( -/turf/closed/wall, -/area/maintenance/port) -"bwy" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;27;37" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bwz" = ( -/turf/closed/wall, -/area/library) -"bwA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/turf/open/floor/wood, -/area/library) -"bwB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/turf/open/floor/wood, -/area/library) -"bwC" = ( -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the escape arm is."; - icon_state = "direction_evac"; - name = "escape arm" - }, -/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 = 8 - }, -/obj/structure/sign/directions/engineering{ - desc = "A direction sign, pointing out which way the research department is."; - icon_state = "direction_sci"; - name = "research department"; - pixel_y = -8 - }, -/turf/closed/wall, -/area/library) -"bwD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bwE" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - sortType = 15 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bwF" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"bwG" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access = null; - req_access_txt = "57" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"bwH" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bwI" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bwJ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bwK" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/holopad, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bwL" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bwM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bwN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"bwO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access = null; - req_access_txt = "57" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) -"bwP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/darkblue/corner, -/area/bridge) -"bwQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bwR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/bridge) -"bwS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/bookcase, -/turf/open/floor/wood, -/area/bridge) -"bwT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/bridge) -"bwU" = ( -/obj/machinery/door/airlock/command{ - name = "Command Desk"; - req_access = null; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/vault, -/area/bridge) -"bwV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/bridge) -"bwW" = ( -/obj/structure/bookcase, -/turf/open/floor/wood, -/area/bridge) -"bwX" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = -26 - }, -/turf/open/floor/plasteel/darkblue/corner, -/area/bridge) -"bwY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bwZ" = ( -/obj/machinery/vending/boozeomat, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/captain/private) -"bxa" = ( -/obj/machinery/holopad{ - pixel_x = 9; - pixel_y = -9 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bxb" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bxc" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bxd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bxe" = ( -/obj/machinery/camera{ - c_tag = "Captain's Office"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain/private) -"bxf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Captain's Office - Emergency Escape"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/central) -"bxg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bxh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/neutral/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"bxi" = ( -/obj/machinery/vending/boozeomat, -/turf/closed/wall, -/area/crew_quarters/bar) -"bxj" = ( -/obj/machinery/door/airlock{ - name = "Bar Storage"; - req_access_txt = "25" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - icon_state = "wood" - }, -/area/crew_quarters/bar) -"bxk" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/obj/structure/sign/barsign{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/crew_quarters/bar) -"bxl" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/turf/open/floor/carpet, -/area/crew_quarters/bar) -"bxm" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bxn" = ( -/obj/machinery/disposal/bin{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bxo" = ( -/obj/machinery/computer/arcade, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bxp" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bxq" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bxr" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard) -"bxs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bxt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bxu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;25;46" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bxv" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/caution{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bxw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bxx" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/caution{ - dir = 4 - }, -/area/hallway/primary/starboard) -"bxy" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bxz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bxA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard) -"bxB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bxC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bxD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"bxE" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/engine/break_room) -"bxF" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bxG" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bxH" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bxI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/break_room) -"bxJ" = ( +"bvr" = ( /obj/structure/table/glass, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -37464,17 +35202,7 @@ }, /turf/open/floor/plasteel/dark, /area/engine/break_room) -"bxK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) -"bxL" = ( +"bvs" = ( /obj/machinery/door/airlock/hatch{ name = "MiniSat Space Access Airlock"; req_one_access_txt = "32;19" @@ -37482,34 +35210,15 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) -"bxM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/engine/break_room) -"bxN" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Space Access Airlock"; - req_one_access_txt = "32;19" - }, -/turf/open/floor/plasteel/dark, -/area/engine/break_room) -"bxO" = ( +"bvt" = ( /turf/closed/wall, /area/aisat) -"bxP" = ( +"bvu" = ( /obj/structure/table/wood, /obj/machinery/light/small{ dir = 8 @@ -37522,17 +35231,17 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bxQ" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/machinery/status_display{ - pixel_y = 31 +"bvv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/obj/item/folder/blue, -/obj/item/pen, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bxR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"bvw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/showcase/cyborg/old{ dir = 2; @@ -37540,14 +35249,14 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bxS" = ( +"bvx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bxT" = ( +"bvy" = ( /obj/machinery/light_switch{ pixel_y = 28 }, @@ -37557,7 +35266,7 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bxU" = ( +"bvz" = ( /obj/structure/table/wood, /obj/machinery/ai_status_display{ pixel_y = 31 @@ -37565,7 +35274,7 @@ /obj/item/device/flashlight/lamp, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bxV" = ( +"bvA" = ( /obj/machinery/light/small{ dir = 4 }, @@ -37586,7 +35295,7 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bxW" = ( +"bvB" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-20" }, @@ -37595,14 +35304,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bxX" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bxY" = ( +"bvC" = ( /obj/structure/chair, /obj/structure/sign/warning/vacuum/external{ pixel_y = 32 @@ -37612,7 +35314,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bxZ" = ( +"bvD" = ( /obj/structure/chair, /obj/effect/landmark/start/assistant, /obj/effect/turf_decal/stripes/line{ @@ -37620,19 +35322,16 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bya" = ( +"bvE" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"byb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, +"bvF" = ( /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"byc" = ( +"bvG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -37641,7 +35340,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"byd" = ( +"bvH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -37650,7 +35349,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bye" = ( +"bvI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -37659,7 +35358,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"byf" = ( +"bvJ" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -37668,7 +35367,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"byg" = ( +"bvK" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -37678,7 +35377,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"byh" = ( +"bvL" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -37690,7 +35389,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"byi" = ( +"bvM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -37698,14 +35397,14 @@ dir = 4 }, /area/hallway/secondary/entry) -"byj" = ( +"bvN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/hallway/primary/port) -"byk" = ( +"bvO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -37713,7 +35412,7 @@ dir = 9 }, /area/hallway/primary/port) -"byl" = ( +"bvP" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -37721,7 +35420,7 @@ dir = 1 }, /area/hallway/primary/port) -"bym" = ( +"bvQ" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=6-Port-Central"; location = "5-Customs" @@ -37736,7 +35435,7 @@ dir = 1 }, /area/hallway/primary/port) -"byn" = ( +"bvR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -37744,7 +35443,7 @@ dir = 1 }, /area/hallway/primary/port) -"byo" = ( +"bvS" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -37752,7 +35451,16 @@ dir = 5 }, /area/hallway/primary/port) -"byp" = ( +"bvT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"bvU" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, @@ -37763,7 +35471,7 @@ dir = 1 }, /area/hallway/primary/port) -"byq" = ( +"bvV" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -37771,19 +35479,14 @@ dir = 4 }, /area/hallway/primary/port) -"byr" = ( +"bvW" = ( /turf/closed/wall, /area/crew_quarters/toilet/auxiliary) -"bys" = ( +"bvX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, /area/crew_quarters/toilet/auxiliary) -"byt" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/port) -"byu" = ( +"bvY" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -37793,14 +35496,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"byv" = ( -/obj/structure/closet, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"byw" = ( +"bwa" = ( /obj/structure/table/wood, /obj/machinery/computer/security/telescreen/entertainment{ pixel_x = -32 @@ -37812,52 +35508,25 @@ }, /turf/open/floor/wood, /area/library) -"byx" = ( +"bwb" = ( /obj/structure/table/wood, /obj/machinery/computer/libraryconsole, /turf/open/floor/wood, /area/library) -"byy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +"bwc" = ( /turf/open/floor/carpet, /area/library) -"byz" = ( +"bwd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/library) -"byA" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" +"bwe" = ( +/obj/structure/chair/comfy/black{ + dir = 8 }, -/obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/wood, /area/library) -"byB" = ( -/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 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/cult{ - dir = 2 - }, -/area/library) -"byC" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/item/folder, -/obj/item/folder, -/turf/open/floor/plasteel/cult{ - dir = 2 - }, -/area/library) -"byD" = ( +"bwf" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ pixel_x = 1; @@ -37870,19 +35539,18 @@ dir = 2 }, /area/library) -"byE" = ( +"bwg" = ( /obj/structure/table/wood, /obj/machinery/newscaster{ pixel_y = 32 }, /obj/item/folder, /obj/item/folder, -/obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/plasteel/cult{ dir = 2 }, /area/library) -"byF" = ( +"bwh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/extinguisher_cabinet{ pixel_x = -27 @@ -37891,14 +35559,14 @@ dir = 8 }, /area/hallway/primary/central) -"byG" = ( +"bwi" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/open/floor/wood, /area/crew_quarters/heads/hop) -"byH" = ( +"bwj" = ( /obj/item/hand_labeler, /obj/item/stack/packageWrap, /obj/structure/cable/yellow{ @@ -37907,33 +35575,27 @@ /obj/structure/table/wood, /turf/open/floor/wood, /area/crew_quarters/heads/hop) -"byI" = ( +"bwk" = ( /obj/structure/closet/secure_closet/hop, /turf/open/floor/wood, /area/crew_quarters/heads/hop) -"byJ" = ( -/obj/machinery/camera{ - c_tag = "Head of Personnel's Office"; - dir = 1; - network = list("SS13") +"bwl" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Space Access Airlock"; + req_one_access_txt = "32;19" }, -/obj/structure/table/wood, -/obj/item/storage/box/PDAs{ - pixel_x = 4; - pixel_y = 4 +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 }, -/obj/item/storage/box/silver_ids, -/obj/item/storage/box/ids, -/obj/machinery/light, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"byK" = ( +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"bwm" = ( /obj/machinery/computer/secure_data{ dir = 1 }, /turf/open/floor/wood, /area/crew_quarters/heads/hop) -"byL" = ( +"bwn" = ( /obj/machinery/computer/card{ dir = 1 }, @@ -37942,7 +35604,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/heads/hop) -"byM" = ( +"bwo" = ( /obj/structure/chair/office/dark, /obj/effect/landmark/start/head_of_personnel, /obj/structure/cable/yellow{ @@ -37973,7 +35635,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/heads/hop) -"byN" = ( +"bwp" = ( /obj/structure/table/wood, /obj/item/paper_bin{ pixel_x = -2; @@ -37985,11 +35647,11 @@ }, /turf/open/floor/wood, /area/crew_quarters/heads/hop) -"byO" = ( +"bwq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/darkblue/corner, /area/bridge) -"byP" = ( +"bwr" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/firealarm{ dir = 4; @@ -38004,7 +35666,7 @@ dir = 1 }, /area/bridge) -"byQ" = ( +"bws" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp/green{ pixel_x = 1; @@ -38012,7 +35674,7 @@ }, /turf/open/floor/plasteel/dark, /area/bridge) -"byR" = ( +"bwt" = ( /obj/structure/table/wood, /obj/item/book/manual/wiki/security_space_law{ pixel_y = 3 @@ -38024,7 +35686,7 @@ }, /turf/open/floor/plasteel/dark, /area/bridge) -"byS" = ( +"bwu" = ( /obj/machinery/holopad, /obj/machinery/status_display{ pixel_y = 32 @@ -38034,7 +35696,7 @@ }, /turf/open/floor/plasteel/dark, /area/bridge) -"byT" = ( +"bwv" = ( /obj/machinery/camera{ c_tag = "Council Chamber"; dir = 2; @@ -38049,7 +35711,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/dark, /area/bridge) -"byU" = ( +"bww" = ( /obj/structure/table/wood, /obj/item/folder/yellow, /obj/machinery/firealarm{ @@ -38057,7 +35719,7 @@ }, /turf/open/floor/plasteel/dark, /area/bridge) -"byV" = ( +"bwx" = ( /obj/structure/table/wood, /obj/item/paper_bin{ pixel_x = -3; @@ -38069,7 +35731,7 @@ }, /turf/open/floor/plasteel/dark, /area/bridge) -"byW" = ( +"bwy" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -38080,7 +35742,7 @@ }, /turf/open/floor/plasteel/darkblue/corner, /area/bridge) -"byX" = ( +"bwz" = ( /obj/machinery/light{ dir = 4 }, @@ -38093,17 +35755,17 @@ dir = 1 }, /area/bridge) -"byY" = ( +"bwA" = ( /obj/machinery/vending/cigarette, /turf/open/floor/wood, /area/crew_quarters/heads/captain/private) -"byZ" = ( +"bwB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bza" = ( +"bwC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -38115,7 +35777,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bzb" = ( +"bwD" = ( /obj/structure/table/wood, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -38126,7 +35788,7 @@ /obj/item/storage/fancy/donut_box, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bzc" = ( +"bwE" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -38141,7 +35803,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bzd" = ( +"bwF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -38153,7 +35815,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bze" = ( +"bwG" = ( /obj/machinery/door/airlock/command{ name = "Emergency Escape"; req_access = null; @@ -38173,7 +35835,7 @@ }, /turf/open/floor/plating, /area/maintenance/central) -"bzf" = ( +"bwH" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -38189,14 +35851,14 @@ }, /turf/open/floor/plating, /area/maintenance/central) -"bzg" = ( +"bwI" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bzh" = ( +"bwJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, @@ -38204,7 +35866,7 @@ dir = 4 }, /area/hallway/primary/central) -"bzi" = ( +"bwK" = ( /obj/structure/table, /obj/machinery/firealarm{ dir = 8; @@ -38216,12 +35878,12 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bzj" = ( +"bwL" = ( /obj/structure/table, /obj/machinery/chem_dispenser/drinks/beer, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bzk" = ( +"bwM" = ( /obj/machinery/camera{ c_tag = "Bar"; dir = 2; @@ -38243,7 +35905,7 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bzl" = ( +"bwN" = ( /obj/machinery/light{ dir = 1 }, @@ -38252,18 +35914,17 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bzm" = ( -/obj/effect/landmark/event_spawn, +"bwO" = ( /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bzn" = ( +"bwP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment{ dir = 5 }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bzo" = ( +"bwQ" = ( /obj/structure/sign/warning/securearea{ desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; icon_state = "monkey_painting"; @@ -38279,7 +35940,7 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bzp" = ( +"bwR" = ( /obj/machinery/power/apc/highcap/five_k{ dir = 1; name = "Bar APC"; @@ -38294,13 +35955,13 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bzq" = ( +"bwS" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bzr" = ( +"bwT" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -38309,7 +35970,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bzs" = ( +"bwU" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -38329,7 +35990,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bzt" = ( +"bwV" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -38337,28 +35998,25 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/crew_quarters/bar) -"bzu" = ( +"bwW" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/disposalpipe/segment, /turf/open/floor/wood, /area/crew_quarters/bar) -"bzv" = ( +"bwX" = ( /obj/structure/chair/stool{ pixel_y = 8 }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bzw" = ( -/turf/closed/wall, -/area/crew_quarters/theatre) -"bzx" = ( +"bwY" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/starboard) -"bzy" = ( +"bwZ" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -23 @@ -38370,7 +36028,7 @@ dir = 8 }, /area/hallway/primary/starboard) -"bzz" = ( +"bxa" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -38380,7 +36038,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/starboard) -"bzA" = ( +"bxb" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -38394,13 +36052,13 @@ dir = 4 }, /area/hallway/primary/starboard) -"bzB" = ( +"bxc" = ( /turf/closed/wall/r_wall, /area/engine/atmos) -"bzC" = ( +"bxd" = ( /turf/closed/wall, /area/engine/atmos) -"bzD" = ( +"bxe" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -38412,53 +36070,64 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bzE" = ( +"bxf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/closed/wall, /area/engine/atmos) -"bzF" = ( +"bxg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/engine/atmos) -"bzG" = ( +"bxh" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, /turf/closed/wall/r_wall, /area/engine/atmos) -"bzH" = ( +"bxi" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/engine/atmos) -"bzI" = ( +"bxj" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /turf/closed/wall/r_wall, /area/engine/atmos) -"bzJ" = ( +"bxk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/closed/wall/r_wall, /area/engine/atmos) -"bzK" = ( +"bxl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/closed/wall/r_wall, /area/engine/atmos) -"bzL" = ( -/obj/machinery/announcement_system, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bzM" = ( +"bxm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/break_room) +"bxn" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -38467,14 +36136,14 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bzN" = ( +"bxo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bzO" = ( +"bxp" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -38483,16 +36152,16 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bzP" = ( +"bxq" = ( /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bzQ" = ( +"bxr" = ( /obj/structure/chair/office/dark{ dir = 4 }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bzR" = ( +"bxs" = ( /obj/machinery/computer/security/telescreen{ dir = 8; name = "Telecomms Camera Monitor"; @@ -38505,12 +36174,12 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bzS" = ( +"bxt" = ( /obj/machinery/light, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bzT" = ( +"bxu" = ( /obj/machinery/camera{ c_tag = "Arrivals - Middle Arm - Far"; dir = 1; @@ -38522,21 +36191,21 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bzU" = ( +"bxv" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bzV" = ( +"bxw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bzW" = ( +"bxx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -38546,7 +36215,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bzX" = ( +"bxy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -38554,20 +36223,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bzY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = -25 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bzZ" = ( +"bxz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -38579,7 +36235,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bAa" = ( +"bxA" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -38588,7 +36244,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bAb" = ( +"bxB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -38600,7 +36256,7 @@ dir = 2 }, /area/hallway/secondary/entry) -"bAc" = ( +"bxC" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -38612,7 +36268,7 @@ dir = 2 }, /area/hallway/secondary/entry) -"bAd" = ( +"bxD" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -38623,7 +36279,7 @@ dir = 2 }, /area/hallway/secondary/entry) -"bAe" = ( +"bxE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -38637,7 +36293,7 @@ dir = 6 }, /area/hallway/secondary/entry) -"bAf" = ( +"bxF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -38650,7 +36306,7 @@ dir = 10 }, /area/hallway/primary/port) -"bAg" = ( +"bxG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -38661,7 +36317,7 @@ }, /turf/open/floor/plasteel/neutral/side, /area/hallway/primary/port) -"bAh" = ( +"bxH" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -38676,7 +36332,7 @@ }, /turf/open/floor/plasteel/neutral/side, /area/hallway/primary/port) -"bAi" = ( +"bxI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -38685,7 +36341,7 @@ }, /turf/open/floor/plasteel/neutral/side, /area/hallway/primary/port) -"bAj" = ( +"bxJ" = ( /obj/machinery/airalarm{ dir = 1; pixel_y = -22 @@ -38694,11 +36350,11 @@ dir = 6 }, /area/hallway/primary/port) -"bAk" = ( +"bxK" = ( /obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/hallway/primary/port) -"bAl" = ( +"bxL" = ( /obj/structure/sign/map/left{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; @@ -38708,7 +36364,7 @@ dir = 10 }, /area/hallway/primary/port) -"bAm" = ( +"bxM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -38722,7 +36378,7 @@ }, /turf/open/floor/plasteel/neutral/side, /area/hallway/primary/port) -"bAn" = ( +"bxN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -38733,7 +36389,7 @@ dir = 6 }, /area/hallway/primary/port) -"bAo" = ( +"bxO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -38747,7 +36403,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bAp" = ( +"bxP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -38761,7 +36417,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bAq" = ( +"bxQ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -38773,14 +36429,7 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/crew_quarters/toilet/auxiliary) -"bAr" = ( -/obj/machinery/vending/cigarette, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/crew_quarters/toilet/auxiliary) -"bAs" = ( +"bxS" = ( /obj/item/cigbutt, /obj/machinery/power/apc/highcap/five_k{ dir = 2; @@ -38796,7 +36445,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bAt" = ( +"bxT" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -38806,37 +36455,26 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port) -"bAu" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"bAv" = ( +"bxU" = ( /obj/structure/table/wood, /obj/machinery/newscaster{ pixel_x = -32 }, /turf/open/floor/wood, /area/library) -"bAw" = ( +"bxV" = ( /obj/structure/chair/office/dark{ dir = 1 }, /obj/effect/landmark/start/librarian, /turf/open/floor/wood, /area/library) -"bAx" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/wood, -/area/library) -"bAy" = ( +"bxW" = ( /turf/open/floor/plasteel/cult{ dir = 2 }, /area/library) -"bAz" = ( +"bxX" = ( /obj/structure/chair/comfy/brown{ dir = 1 }, @@ -38844,14 +36482,14 @@ dir = 2 }, /area/library) -"bAA" = ( +"bxY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /turf/open/floor/plasteel/neutral/corner{ dir = 8 }, /area/hallway/primary/central) -"bAB" = ( +"bxZ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/machinery/door/poddoor/preopen{ @@ -38860,7 +36498,7 @@ }, /turf/open/floor/plating, /area/crew_quarters/heads/hop) -"bAC" = ( +"byb" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/brigdoor{ base_state = "rightsecure"; @@ -38885,7 +36523,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/heads/hop) -"bAD" = ( +"byc" = ( /obj/machinery/light{ dir = 8 }, @@ -38897,13 +36535,13 @@ }, /turf/open/floor/plasteel/darkblue/corner, /area/bridge) -"bAE" = ( +"byd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/darkblue/corner{ dir = 1 }, /area/bridge) -"bAF" = ( +"bye" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ name = "Council Chamber"; @@ -38912,38 +36550,38 @@ }, /turf/open/floor/plasteel/dark, /area/bridge) -"bAG" = ( +"byf" = ( /obj/structure/chair/comfy/beige, /turf/open/floor/carpet, /area/bridge) -"bAH" = ( +"byg" = ( /obj/structure/chair/comfy/black, /turf/open/floor/carpet, /area/bridge) -"bAI" = ( +"byh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /obj/structure/chair/comfy/beige, /turf/open/floor/carpet, /area/bridge) -"bAJ" = ( +"byi" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/carpet, /area/bridge) -"bAK" = ( +"byj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/carpet, /area/bridge) -"bAL" = ( +"byk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/bridge) -"bAM" = ( +"byl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -38955,7 +36593,7 @@ }, /turf/open/floor/plasteel/dark, /area/bridge) -"bAN" = ( +"bym" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -38964,7 +36602,7 @@ }, /turf/open/floor/plasteel/darkblue/corner, /area/bridge) -"bAO" = ( +"byn" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -38972,7 +36610,7 @@ dir = 1 }, /area/bridge) -"bAP" = ( +"byo" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ name = "Captain's Quarters"; @@ -38981,28 +36619,28 @@ }, /turf/open/floor/plasteel/dark, /area/crew_quarters/heads/captain/private) -"bAQ" = ( +"byp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bAR" = ( +"byq" = ( /obj/structure/chair/comfy/brown{ dir = 4 }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bAS" = ( +"byr" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/drinks/shaker, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bAT" = ( +"bys" = ( /obj/structure/chair/comfy/brown{ dir = 8 }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bAU" = ( +"byt" = ( /obj/machinery/airalarm{ dir = 8; pixel_x = 24 @@ -39012,7 +36650,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bAV" = ( +"byu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -39025,7 +36663,7 @@ icon_state = "platingdmg3" }, /area/maintenance/central) -"bAW" = ( +"byv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/firealarm{ dir = 8; @@ -39035,34 +36673,39 @@ dir = 8 }, /area/hallway/primary/central) -"bAX" = ( +"byw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/neutral/corner{ dir = 4 }, /area/hallway/primary/central) -"bAY" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall, -/area/crew_quarters/bar) -"bAZ" = ( -/turf/open/floor/plasteel/bar, -/area/crew_quarters/bar) -"bBa" = ( +"byx" = ( +/obj/machinery/porta_turret/ai{ + dir = 2 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_y = 24 + }, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/ai_monitored/turret_protected/ai) +"byy" = ( /obj/effect/landmark/start/bartender, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bBb" = ( +"byz" = ( /mob/living/carbon/monkey/punpun, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bBc" = ( +"byA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/landmark/start/bartender, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bBd" = ( +"byB" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Bar Access"; @@ -39070,10 +36713,10 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bBe" = ( +"byC" = ( /turf/open/floor/wood, /area/crew_quarters/bar) -"bBf" = ( +"byD" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -39081,14 +36724,14 @@ /obj/item/clothing/head/fedora, /turf/open/floor/wood, /area/crew_quarters/bar) -"bBg" = ( +"byE" = ( /obj/structure/table/wood/poker, /obj/item/toy/cards/deck{ pixel_y = 4 }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bBh" = ( +"byF" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, @@ -39100,7 +36743,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bBi" = ( +"byG" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -39109,7 +36752,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bBj" = ( +"byH" = ( /obj/structure/disposalpipe/segment{ dir = 10 }, @@ -39118,35 +36761,30 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bBk" = ( -/obj/structure/piano, +"byI" = ( /obj/structure/window/reinforced{ - dir = 8 + dir = 1 }, -/obj/structure/sign/poster/random{ - pixel_y = 32 +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bBl" = ( +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"byJ" = ( /obj/structure/chair/wood/wings{ dir = 8 }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bBm" = ( -/obj/machinery/light/small{ - dir = 1 +"byK" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "Engineering Security Doors" }, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bBn" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"byL" = ( /obj/machinery/power/apc{ dir = 1; name = "Theatre APC"; @@ -39160,40 +36798,55 @@ /obj/item/clothing/glasses/monocle, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bBo" = ( -/obj/structure/table/wood, -/obj/item/staff/broom, -/obj/item/wrench, -/obj/machinery/airalarm{ - dir = 8; +"byM" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; pixel_x = 24 }, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/turf/open/floor/wood, +/mob/living/simple_animal/bot/cleanbot, +/turf/open/floor/plasteel/darkblue/corner, +/area/ai_monitored/turret_protected/aisat_interior) +"byN" = ( +/turf/closed/wall, /area/crew_quarters/theatre) -"bBp" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" +"byO" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/machinery/power/apc{ + dir = 2; + name = "MiniSat Maint APC"; + areastring = "/area/ai_monitored/storage/satellite"; + pixel_y = -26 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bBq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow, +/obj/item/stack/sheet/mineral/plasma{ + amount = 35 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"byP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/item/device/radio/beacon, /turf/open/floor/plasteel/caution{ dir = 8 }, /area/hallway/primary/starboard) -"bBr" = ( +"byQ" = ( /turf/open/floor/plasteel/caution{ dir = 4 }, /area/hallway/primary/starboard) -"bBs" = ( +"byR" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -39213,7 +36866,7 @@ dir = 9 }, /area/engine/atmos) -"bBt" = ( +"byS" = ( /obj/machinery/status_display{ pixel_y = 32 }, @@ -39225,7 +36878,7 @@ dir = 1 }, /area/engine/atmos) -"bBu" = ( +"byT" = ( /obj/structure/sign/map/left{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-left-MS"; @@ -39240,7 +36893,7 @@ dir = 1 }, /area/engine/atmos) -"bBv" = ( +"byU" = ( /obj/structure/sign/map/right{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; @@ -39250,7 +36903,7 @@ dir = 1 }, /area/engine/atmos) -"bBw" = ( +"byV" = ( /obj/structure/sign/plaques/atmos{ pixel_y = 32 }, @@ -39270,7 +36923,7 @@ dir = 5 }, /area/engine/atmos) -"bBx" = ( +"byW" = ( /obj/structure/table, /obj/item/clothing/head/welding{ pixel_x = -3; @@ -39290,7 +36943,7 @@ dir = 8 }, /area/engine/atmos) -"bBy" = ( +"byX" = ( /obj/machinery/power/apc/highcap/ten_k{ dir = 1; name = "Atmospherics APC"; @@ -39306,14 +36959,14 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bBz" = ( +"byY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/engine/atmos) -"bBA" = ( +"byZ" = ( /obj/machinery/space_heater, /obj/machinery/firealarm{ dir = 2; @@ -39324,11 +36977,11 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bBB" = ( +"bza" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/engine/atmos) -"bBC" = ( +"bzb" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 8 }, @@ -39341,7 +36994,7 @@ dir = 1 }, /area/engine/atmos) -"bBD" = ( +"bzc" = ( /obj/machinery/light{ dir = 1 }, @@ -39357,7 +37010,7 @@ dir = 1 }, /area/engine/atmos) -"bBE" = ( +"bzd" = ( /obj/machinery/meter{ frequency = 1441; id_tag = "distro_meter"; @@ -39368,7 +37021,7 @@ dir = 1 }, /area/engine/atmos) -"bBF" = ( +"bze" = ( /obj/machinery/atmospherics/pipe/manifold/supply/visible{ dir = 1 }, @@ -39376,7 +37029,7 @@ dir = 1 }, /area/engine/atmos) -"bBG" = ( +"bzf" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; name = "Air to Distro"; @@ -39395,7 +37048,7 @@ dir = 1 }, /area/engine/atmos) -"bBH" = ( +"bzg" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 10 }, @@ -39403,7 +37056,7 @@ dir = 1 }, /area/engine/atmos) -"bBI" = ( +"bzh" = ( /obj/machinery/atmospherics/components/unary/thermomachine/heater{ dir = 2; on = 1 @@ -39412,17 +37065,17 @@ dir = 1 }, /area/engine/atmos) -"bBJ" = ( +"bzi" = ( /obj/structure/lattice, /obj/structure/grille, /turf/closed/wall/r_wall, /area/space/nearstation) -"bBK" = ( +"bzj" = ( /obj/structure/grille, /obj/structure/lattice, /turf/closed/wall/r_wall, /area/space/nearstation) -"bBL" = ( +"bzk" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 @@ -39432,7 +37085,7 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"bBM" = ( +"bzl" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -39443,7 +37096,7 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"bBN" = ( +"bzm" = ( /obj/structure/window/reinforced{ dir = 1; layer = 2.9 @@ -39464,7 +37117,7 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"bBO" = ( +"bzn" = ( /obj/machinery/computer/message_monitor{ dir = 4 }, @@ -39474,19 +37127,19 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bBP" = ( +"bzo" = ( /obj/structure/chair/office/dark{ dir = 8 }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bBQ" = ( +"bzp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bBR" = ( +"bzq" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -39500,7 +37153,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bBS" = ( +"bzr" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -39509,7 +37162,7 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bBT" = ( +"bzs" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -39519,7 +37172,7 @@ /obj/structure/chair/office/dark, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bBU" = ( +"bzt" = ( /obj/machinery/power/apc/highcap/five_k{ dir = 4; name = "Telecomms Control Room APC"; @@ -39535,7 +37188,7 @@ }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bBV" = ( +"bzu" = ( /obj/structure/window/reinforced{ dir = 1; layer = 2.9 @@ -39553,14 +37206,14 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"bBW" = ( +"bzv" = ( /obj/structure/window/reinforced{ dir = 4 }, /obj/structure/window/reinforced, /turf/open/floor/plasteel/dark, /area/aisat) -"bBX" = ( +"bzw" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -39571,14 +37224,14 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bBY" = ( +"bzx" = ( /turf/closed/wall, /area/security/vacantoffice) -"bBZ" = ( +"bzy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/security/vacantoffice) -"bCa" = ( +"bzz" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/centcom/abandoned{ name = "Vacant Office"; @@ -39591,7 +37244,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/security/vacantoffice) -"bCb" = ( +"bzA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -39601,33 +37254,29 @@ }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bCc" = ( +"bzB" = ( /obj/structure/mirror{ pixel_x = 28 }, /turf/open/floor/plating, /area/crew_quarters/toilet/auxiliary) -"bCd" = ( +"bzC" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port) -"bCe" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port) -"bCf" = ( +"bzD" = ( /obj/machinery/photocopier{ pixel_y = 3 }, /turf/open/floor/wood, /area/library) -"bCg" = ( +"bzE" = ( /turf/open/floor/wood, /area/library) -"bCh" = ( +"bzF" = ( /obj/machinery/light{ dir = 4 }, @@ -39638,14 +37287,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/library) -"bCi" = ( -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)" - }, -/turf/closed/wall, -/area/library) -"bCj" = ( +"bzG" = ( /obj/machinery/door/morgue{ name = "Study #1"; req_access_txt = "0" @@ -39654,7 +37296,7 @@ dir = 2 }, /area/library) -"bCk" = ( +"bzH" = ( /obj/machinery/door/morgue{ name = "Study #2"; req_access_txt = "0" @@ -39663,7 +37305,7 @@ dir = 2 }, /area/library) -"bCl" = ( +"bzI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light{ dir = 8 @@ -39672,29 +37314,18 @@ dir = 8 }, /area/hallway/primary/central) -"bCm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Port"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/central) -"bCn" = ( +"bzJ" = ( /turf/closed/wall, /area/hallway/secondary/command) -"bCo" = ( +"bzK" = ( /obj/machinery/vending/cola/random, /turf/open/floor/plasteel/dark, /area/hallway/secondary/command) -"bCp" = ( +"bzL" = ( /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bCq" = ( +"bzM" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -39707,14 +37338,14 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bCr" = ( +"bzN" = ( /obj/machinery/status_display{ pixel_y = 32 }, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bCs" = ( +"bzO" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -39725,7 +37356,7 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bCt" = ( +"bzP" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -39737,7 +37368,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bCu" = ( +"bzQ" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -2; @@ -39747,10 +37378,10 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bCv" = ( +"bzR" = ( /turf/closed/wall/r_wall, /area/hallway/secondary/command) -"bCw" = ( +"bzS" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -39765,7 +37396,7 @@ dir = 1 }, /area/bridge) -"bCx" = ( +"bzT" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -39780,7 +37411,7 @@ }, /turf/open/floor/plasteel/dark, /area/bridge) -"bCy" = ( +"bzU" = ( /obj/structure/chair/comfy/teal{ dir = 4 }, @@ -39789,7 +37420,7 @@ }, /turf/open/floor/carpet, /area/bridge) -"bCz" = ( +"bzV" = ( /obj/structure/table/wood, /obj/item/folder/white{ pixel_x = 4; @@ -39797,24 +37428,24 @@ }, /turf/open/floor/carpet, /area/bridge) -"bCA" = ( +"bzW" = ( /obj/structure/table/wood, /obj/item/folder/blue, /obj/item/lighter, /turf/open/floor/carpet, /area/bridge) -"bCB" = ( +"bzX" = ( /obj/structure/table/wood, /obj/item/folder/red, /turf/open/floor/carpet, /area/bridge) -"bCC" = ( +"bzY" = ( /obj/structure/chair/comfy/black{ dir = 8 }, /turf/open/floor/carpet, /area/bridge) -"bCD" = ( +"bzZ" = ( /obj/machinery/airalarm{ dir = 8; pixel_x = 24 @@ -39822,7 +37453,7 @@ /obj/machinery/vending/cigarette, /turf/open/floor/plasteel/dark, /area/bridge) -"bCE" = ( +"bAa" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -39835,13 +37466,13 @@ }, /turf/open/floor/plasteel/dark, /area/bridge) -"bCF" = ( +"bAb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/darkblue/corner{ dir = 1 }, /area/bridge) -"bCG" = ( +"bAc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -39851,13 +37482,13 @@ }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bCH" = ( +"bAd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bCI" = ( +"bAe" = ( /obj/machinery/light, /obj/machinery/computer/security/telescreen{ dir = 1; @@ -39869,7 +37500,7 @@ /mob/living/simple_animal/pet/fox/Renault, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bCJ" = ( +"bAf" = ( /obj/item/device/radio/intercom{ dir = 0; name = "Station Intercom (General)"; @@ -39877,14 +37508,14 @@ }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bCK" = ( +"bAg" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, /turf/open/floor/carpet, /area/crew_quarters/heads/captain/private) -"bCL" = ( +"bAh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -39893,14 +37524,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/central) -"bCM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bCN" = ( +"bAi" = ( /obj/structure/table/reinforced, /obj/item/lighter, /obj/machinery/computer/security/telescreen/entertainment{ @@ -39908,30 +37532,30 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bCO" = ( +"bAj" = ( /obj/structure/table/reinforced, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bCP" = ( +"bAk" = ( /obj/structure/table/reinforced, /obj/item/clothing/head/that{ throwforce = 1 }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bCQ" = ( +"bAl" = ( /obj/structure/table/reinforced, /obj/item/storage/box/matches{ pixel_y = 5 }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bCR" = ( +"bAm" = ( /obj/structure/table/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bCS" = ( +"bAn" = ( /obj/structure/table/reinforced, /obj/item/reagent_containers/food/condiment/saltshaker{ pixel_x = -3 @@ -39941,13 +37565,13 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bCT" = ( +"bAo" = ( /obj/machinery/smartfridge/drinks{ icon_state = "boozeomat" }, /turf/closed/wall, /area/crew_quarters/bar) -"bCU" = ( +"bAp" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -39957,7 +37581,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bCV" = ( +"bAq" = ( /obj/structure/table/wood/poker, /obj/effect/spawner/lootdrop{ loot = list(/obj/item/gun/ballistic/revolver/russian = 5, /obj/item/storage/box/syndie_kit/throwing_weapons, /obj/item/toy/cards/deck/syndicate = 2); @@ -39965,7 +37589,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bCW" = ( +"bAr" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 @@ -39975,7 +37599,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bCX" = ( +"bAs" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -39984,19 +37608,19 @@ }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bCY" = ( +"bAt" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bCZ" = ( +"bAu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bDa" = ( +"bAv" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -40005,18 +37629,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bDb" = ( -/obj/structure/table/wood, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/clothing/head/sombrero, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"bDc" = ( +"bAx" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -40034,7 +37647,7 @@ dir = 8 }, /area/hallway/primary/starboard) -"bDd" = ( +"bAy" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -40044,7 +37657,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/hallway/primary/starboard) -"bDe" = ( +"bAz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -40052,7 +37665,7 @@ dir = 4 }, /area/hallway/primary/starboard) -"bDf" = ( +"bAA" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "atmos"; @@ -40063,7 +37676,7 @@ }, /turf/open/floor/plating, /area/engine/atmos) -"bDg" = ( +"bAB" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -40074,26 +37687,26 @@ dir = 8 }, /area/engine/atmos) -"bDh" = ( +"bAC" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bDi" = ( +"bAD" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bDj" = ( +"bAE" = ( /obj/structure/chair/office/dark{ dir = 4 }, /obj/effect/landmark/start/atmospheric_technician, /turf/open/floor/plasteel, /area/engine/atmos) -"bDk" = ( +"bAF" = ( /obj/machinery/computer/atmos_control{ dir = 8 }, @@ -40107,7 +37720,7 @@ dir = 4 }, /area/engine/atmos) -"bDl" = ( +"bAG" = ( /obj/machinery/light{ dir = 8 }, @@ -40120,7 +37733,7 @@ dir = 8 }, /area/engine/atmos) -"bDm" = ( +"bAH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -40129,36 +37742,36 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bDn" = ( +"bAI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-8" }, /turf/open/floor/plasteel, /area/engine/atmos) -"bDo" = ( +"bAJ" = ( /obj/machinery/space_heater, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bDp" = ( +"bAK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /turf/open/floor/plasteel, /area/engine/atmos) -"bDq" = ( +"bAL" = ( /obj/machinery/atmospherics/components/unary/thermomachine/freezer, /turf/open/floor/plasteel, /area/engine/atmos) -"bDr" = ( +"bAM" = ( /obj/machinery/atmospherics/components/unary/thermomachine/heater{ dir = 1; on = 1 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bDs" = ( +"bAN" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1; name = "Mix to Distro"; @@ -40166,30 +37779,30 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bDt" = ( +"bAO" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bDu" = ( +"bAP" = ( /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 8 }, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmos) -"bDv" = ( +"bAQ" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bDw" = ( +"bAR" = ( /obj/structure/grille, /turf/closed/wall/r_wall, /area/engine/atmos) -"bDx" = ( +"bAS" = ( /obj/structure/window/reinforced{ dir = 1; pixel_y = 2 @@ -40197,7 +37810,7 @@ /obj/structure/lattice, /turf/open/space, /area/space/nearstation) -"bDy" = ( +"bAT" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -40207,52 +37820,59 @@ }, /turf/open/space, /area/space/nearstation) -"bDz" = ( +"bAU" = ( /obj/machinery/microwave{ pixel_y = 4 }, /obj/structure/table/wood, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bDA" = ( +"bAV" = ( /obj/machinery/light/small, /obj/item/storage/box/donkpockets, /obj/structure/table/wood, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bDB" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21" +"bAW" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/machinery/status_display{ + pixel_y = 31 }, +/obj/item/folder/blue, +/obj/item/pen, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bDC" = ( +"bAX" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bDD" = ( +"bAY" = ( /obj/structure/filingcabinet{ pixel_x = 3 }, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bDE" = ( -/obj/machinery/light/small, -/obj/item/folder, -/obj/item/folder, +"bAZ" = ( /obj/machinery/camera{ - c_tag = "Telecomms - Control Room"; + c_tag = "Head of Personnel's Office"; dir = 1; - network = list("SS13","tcomm") + network = list("SS13") }, /obj/structure/table/wood, -/obj/item/pen, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bDF" = ( +/obj/item/storage/box/PDAs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/silver_ids, +/obj/item/storage/box/ids, +/obj/machinery/light, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"bBa" = ( /obj/machinery/requests_console{ announcementConsole = 1; department = "Telecomms Admin"; @@ -40271,7 +37891,7 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/grimy, /area/tcommsat/computer) -"bDG" = ( +"bBb" = ( /obj/structure/window/reinforced{ dir = 1; layer = 2.9 @@ -40279,12 +37899,12 @@ /obj/structure/lattice, /turf/open/space, /area/space/nearstation) -"bDH" = ( +"bBc" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bDI" = ( +"bBd" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -40293,16 +37913,12 @@ dir = 4 }, /area/hallway/secondary/entry) -"bDJ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/port) -"bDK" = ( +"bBe" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/maintenance/port) -"bDL" = ( +"bBf" = ( /obj/structure/table/wood, /obj/machinery/light_switch{ pixel_x = -28 @@ -40311,31 +37927,28 @@ /obj/item/folder, /turf/open/floor/wood, /area/security/vacantoffice) -"bDM" = ( +"bBg" = ( /turf/open/floor/wood, /area/security/vacantoffice) -"bDN" = ( +"bBh" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/security/vacantoffice) -"bDO" = ( +"bBi" = ( /obj/structure/table/wood, /obj/item/device/flashlight/lamp, /turf/open/floor/wood, /area/security/vacantoffice) -"bDP" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/paper, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 +"bBj" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "panelscorched" }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bDQ" = ( +/area/maintenance/starboard) +"bBk" = ( /obj/structure/table/wood, /obj/item/device/camera_film{ pixel_y = 9 @@ -40346,39 +37959,30 @@ }, /turf/open/floor/wood, /area/security/vacantoffice) -"bDR" = ( -/obj/structure/urinal{ - pixel_y = 29 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/crew_quarters/toilet/auxiliary) -"bDS" = ( +"bBl" = ( /obj/structure/urinal{ pixel_y = 29 }, /turf/open/floor/plating, /area/crew_quarters/toilet/auxiliary) -"bDT" = ( +"bBm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bDU" = ( +"bBn" = ( /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bDV" = ( +"bBo" = ( /obj/machinery/door/airlock{ id_tag = "AuxToilet1"; name = "Unit 1" }, /turf/open/floor/plasteel, /area/crew_quarters/toilet/auxiliary) -"bDW" = ( +"bBp" = ( /obj/structure/toilet{ pixel_y = 8 }, @@ -40398,13 +38002,13 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/toilet/auxiliary) -"bDX" = ( +"bBq" = ( /obj/structure/rack, /obj/item/device/flashlight, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port) -"bDY" = ( +"bBr" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -23 @@ -40412,51 +38016,40 @@ /obj/structure/displaycase/trophy, /turf/open/floor/wood, /area/library) -"bDZ" = ( -/obj/structure/displaycase/trophy, -/turf/open/floor/wood, -/area/library) -"bEa" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 +"bBs" = ( +/obj/structure/chair/office/dark{ + dir = 8 }, /turf/open/floor/wood, /area/library) -"bEb" = ( +"bBt" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bBu" = ( /obj/machinery/vending/coffee, /obj/machinery/newscaster{ pixel_y = 32 }, /turf/open/floor/wood, /area/library) -"bEc" = ( +"bBv" = ( /obj/structure/chair/comfy/black, /obj/effect/landmark/start/assistant, /turf/open/floor/wood, /area/library) -"bEd" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 30 - }, -/obj/machinery/photocopier{ - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/library) -"bEe" = ( +"bBw" = ( /obj/machinery/bookbinder, /turf/open/floor/wood, /area/library) -"bEf" = ( -/obj/effect/spawner/structure/window/reinforced, +"bBx" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-22" + }, /turf/open/floor/wood, /area/library) -"bEg" = ( +"bBy" = ( /obj/structure/sign/directions/engineering{ desc = "A direction sign, pointing out which way the bridge is."; dir = 4; @@ -40477,14 +38070,14 @@ }, /turf/closed/wall, /area/hallway/secondary/command) -"bEh" = ( +"bBz" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" }, /turf/open/floor/plating, /area/hallway/secondary/command) -"bEi" = ( +"bBA" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "hopqueue"; name = "HoP Queue Shutters" @@ -40497,7 +38090,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bEj" = ( +"bBB" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" @@ -40507,7 +38100,7 @@ }, /turf/open/floor/plating, /area/hallway/secondary/command) -"bEk" = ( +"bBC" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -40521,7 +38114,7 @@ /obj/effect/turf_decal/loading_area, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bEl" = ( +"bBD" = ( /obj/structure/sign/directions/engineering{ desc = "A direction sign, pointing out which way the bridge is."; dir = 1; @@ -40531,7 +38124,7 @@ }, /turf/closed/wall/r_wall, /area/hallway/secondary/command) -"bEm" = ( +"bBE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; @@ -40542,9 +38135,12 @@ name = "Bridge Access"; req_access_txt = "19" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/vault, /area/bridge) -"bEn" = ( +"bBF" = ( /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; name = "bridge blast door" @@ -40555,13 +38151,23 @@ name = "Bridge Access"; req_access_txt = "19" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/vault, /area/bridge) -"bEo" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/bridge) -"bEp" = ( +"bBG" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/goonplaque{ + desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of sentient postcards in a realm of darkness. The station model number is MSv42A-160516" + }, +/area/hallway/primary/port) +"bBH" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "council blast"; @@ -40572,7 +38178,7 @@ }, /turf/open/floor/plating, /area/bridge) -"bEq" = ( +"bBI" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "council blast"; @@ -40586,7 +38192,7 @@ }, /turf/open/floor/plating, /area/bridge) -"bEr" = ( +"bBJ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "council blast"; @@ -40603,7 +38209,7 @@ }, /turf/open/floor/plating, /area/bridge) -"bEs" = ( +"bBK" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "council blast"; @@ -40617,7 +38223,7 @@ }, /turf/open/floor/plating, /area/bridge) -"bEt" = ( +"bBL" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "council blast"; @@ -40628,7 +38234,7 @@ }, /turf/open/floor/plating, /area/bridge) -"bEu" = ( +"bBM" = ( /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; name = "bridge blast door" @@ -40641,9 +38247,12 @@ /obj/structure/cable/yellow{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/vault, /area/bridge) -"bEv" = ( +"bBN" = ( /obj/structure/sign/directions/engineering{ desc = "A direction sign, pointing out which way the bridge is."; dir = 1; @@ -40653,7 +38262,7 @@ }, /turf/closed/wall/r_wall, /area/crew_quarters/heads/captain/private) -"bEw" = ( +"bBO" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -40665,7 +38274,7 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/central) -"bEx" = ( +"bBP" = ( /obj/structure/sign/directions/engineering{ desc = "A direction sign, pointing out which way the engineering department is."; dir = 4; @@ -40686,7 +38295,7 @@ }, /turf/closed/wall, /area/maintenance/central) -"bEy" = ( +"bBQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/light{ dir = 8 @@ -40695,7 +38304,7 @@ dir = 8 }, /area/hallway/primary/central) -"bEz" = ( +"bBR" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -40705,35 +38314,31 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bEA" = ( +"bBS" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/crew_quarters/bar) -"bEB" = ( +"bBT" = ( /obj/structure/chair/stool/bar, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bEC" = ( +"bBU" = ( /obj/machinery/holopad, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bED" = ( +"bBV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/landmark/start/assistant, /obj/structure/chair/stool/bar, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bEE" = ( +"bBX" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bEF" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bEG" = ( +"bBY" = ( /obj/structure/disposalpipe/segment, /obj/structure/table/wood/poker, /obj/item/toy/cards/deck{ @@ -40741,29 +38346,29 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bEH" = ( +"bBZ" = ( /obj/structure/window/reinforced{ dir = 8 }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bEI" = ( +"bCa" = ( /obj/structure/chair/wood/wings, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/landmark/start/mime, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bEJ" = ( +"bCb" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bEK" = ( +"bCc" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bEL" = ( +"bCd" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -40772,15 +38377,7 @@ /obj/item/reagent_containers/food/snacks/pie/cream, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bEM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bEN" = ( +"bCe" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -40790,7 +38387,7 @@ dir = 8 }, /area/hallway/primary/starboard) -"bEO" = ( +"bCf" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -40798,7 +38395,7 @@ dir = 4 }, /area/hallway/primary/starboard) -"bEP" = ( +"bCg" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/northleft{ dir = 4; @@ -40823,7 +38420,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bEQ" = ( +"bCh" = ( /obj/structure/chair{ dir = 8 }, @@ -40835,13 +38432,10 @@ dir = 8 }, /area/engine/atmos) -"bER" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, +"bCi" = ( /turf/open/floor/plasteel, /area/engine/atmos) -"bES" = ( +"bCj" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -40850,13 +38444,13 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bET" = ( +"bCk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bEU" = ( +"bCl" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -40867,14 +38461,14 @@ dir = 4 }, /area/engine/atmos) -"bEV" = ( +"bCm" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plating, /area/engine/atmos) -"bEW" = ( +"bCn" = ( /obj/structure/table, /obj/item/storage/belt/utility, /obj/item/device/t_scanner, @@ -40887,7 +38481,7 @@ dir = 8 }, /area/engine/atmos) -"bEX" = ( +"bCo" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -40896,14 +38490,14 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bEY" = ( +"bCp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bEZ" = ( +"bCq" = ( /obj/machinery/space_heater, /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -40914,7 +38508,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bFa" = ( +"bCr" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; name = "Waste to Filter"; @@ -40922,30 +38516,24 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bFb" = ( -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bFc" = ( +"bCt" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/purple/visible{ dir = 1 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bFd" = ( +"bCu" = ( /obj/machinery/atmospherics/pipe/manifold/purple/visible, /turf/open/floor/plasteel, /area/engine/atmos) -"bFe" = ( +"bCv" = ( /obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bFf" = ( +"bCw" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; name = "Air to Mix"; @@ -40956,7 +38544,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bFg" = ( +"bCx" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 4 @@ -40965,14 +38553,14 @@ dir = 5 }, /area/engine/atmos) -"bFh" = ( +"bCy" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 4 }, /turf/open/floor/plating, /area/engine/atmos) -"bFi" = ( +"bCz" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 4 @@ -40980,15 +38568,15 @@ /obj/machinery/atmospherics/pipe/simple/orange/visible, /turf/open/space, /area/space/nearstation) -"bFj" = ( +"bCA" = ( /obj/machinery/meter, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/purple/visible{ +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 }, +/obj/structure/grille, /turf/closed/wall/r_wall, /area/engine/atmos) -"bFk" = ( +"bCB" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 8; frequency = 1441; @@ -40997,17 +38585,17 @@ }, /turf/open/floor/engine/vacuum, /area/engine/atmos) -"bFl" = ( +"bCC" = ( /turf/open/floor/engine/vacuum, /area/engine/atmos) -"bFm" = ( +"bCD" = ( /turf/closed/wall/r_wall, /area/tcommsat/server) -"bFn" = ( +"bCE" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/tcommsat/server) -"bFo" = ( +"bCF" = ( /obj/machinery/door/airlock/hatch{ name = "Telecomms Server Room" }, @@ -41015,14 +38603,15 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/dark, /area/tcommsat/server) -"bFp" = ( +"bCG" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/sign/warning/vacuum/external, /turf/open/floor/plating, /area/hallway/secondary/entry) -"bFq" = ( +"bCH" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -41036,7 +38625,7 @@ dir = 4 }, /area/hallway/secondary/entry) -"bFr" = ( +"bCI" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -41045,7 +38634,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bFs" = ( +"bCJ" = ( /obj/item/storage/toolbox/emergency, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 @@ -41054,43 +38643,30 @@ icon_state = "panelscorched" }, /area/maintenance/port) -"bFt" = ( -/obj/item/tank/internals/air, -/obj/item/tank/internals/air, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/machinery/light/small{ +"bCK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, -/area/maintenance/port) -"bFu" = ( +/area/maintenance/starboard) +"bCL" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, /turf/open/floor/wood, /area/security/vacantoffice) -"bFv" = ( +"bCM" = ( /obj/structure/table/wood, /turf/open/floor/wood, /area/security/vacantoffice) -"bFw" = ( +"bCN" = ( /obj/structure/chair/office/dark{ dir = 8 }, /turf/open/floor/wood, /area/security/vacantoffice) -"bFx" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen/red, -/obj/machinery/newscaster{ - pixel_x = 30; - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bFy" = ( +"bCP" = ( /obj/machinery/light/small, /obj/machinery/camera{ c_tag = "Auxilary Restrooms"; @@ -41099,13 +38675,13 @@ }, /turf/open/floor/plating, /area/crew_quarters/toilet/auxiliary) -"bFz" = ( +"bCQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bFA" = ( +"bCR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -41118,46 +38694,18 @@ /obj/structure/cable/yellow, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bFB" = ( +"bCS" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 }, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bFC" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port) -"bFD" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/port) -"bFE" = ( -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/wood, -/area/library) -"bFF" = ( +"bCV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/carpet, /area/library) -"bFG" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/library) -"bFH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/turf/open/floor/wood, -/area/library) -"bFI" = ( +"bCW" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, @@ -41165,7 +38713,7 @@ dir = 8 }, /area/hallway/primary/central) -"bFJ" = ( +"bCX" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -41177,7 +38725,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bFK" = ( +"bCY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -41189,7 +38737,7 @@ dir = 4 }, /area/hallway/primary/central) -"bFL" = ( +"bCZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41204,7 +38752,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bFM" = ( +"bDa" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41215,7 +38763,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bFN" = ( +"bDb" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -41226,7 +38774,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bFO" = ( +"bDd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41240,7 +38788,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bFP" = ( +"bDe" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -41251,13 +38799,13 @@ dir = 1 }, /area/hallway/secondary/command) -"bFQ" = ( +"bDf" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plasteel/neutral/corner{ dir = 1 }, /area/hallway/secondary/command) -"bFR" = ( +"bDg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -41266,7 +38814,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bFS" = ( +"bDh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41280,7 +38828,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bFT" = ( +"bDi" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41292,7 +38840,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bFU" = ( +"bDj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41300,7 +38848,7 @@ dir = 4 }, /area/hallway/secondary/command) -"bFV" = ( +"bDk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41308,7 +38856,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bFW" = ( +"bDl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41319,7 +38867,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bFX" = ( +"bDm" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -41327,7 +38875,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bFY" = ( +"bDn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41335,7 +38883,7 @@ dir = 1 }, /area/hallway/secondary/command) -"bFZ" = ( +"bDo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41346,7 +38894,7 @@ dir = 4 }, /area/hallway/secondary/command) -"bGa" = ( +"bDp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41363,7 +38911,7 @@ dir = 4 }, /area/hallway/secondary/command) -"bGb" = ( +"bDq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41374,13 +38922,13 @@ dir = 4 }, /area/hallway/secondary/command) -"bGc" = ( +"bDr" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plasteel/neutral/corner{ dir = 4 }, /area/hallway/secondary/command) -"bGd" = ( +"bDs" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -41388,7 +38936,7 @@ dir = 4 }, /area/hallway/secondary/command) -"bGe" = ( +"bDu" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41407,7 +38955,7 @@ dir = 4 }, /area/hallway/secondary/command) -"bGf" = ( +"bDv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41419,7 +38967,7 @@ dir = 4 }, /area/hallway/secondary/command) -"bGg" = ( +"bDw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41431,7 +38979,7 @@ dir = 4 }, /area/hallway/secondary/command) -"bGh" = ( +"bDx" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -41445,7 +38993,7 @@ dir = 4 }, /area/hallway/secondary/command) -"bGi" = ( +"bDy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -41460,7 +39008,7 @@ dir = 4 }, /area/hallway/secondary/command) -"bGj" = ( +"bDz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -41472,7 +39020,7 @@ dir = 1 }, /area/hallway/primary/central) -"bGk" = ( +"bDA" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -41484,7 +39032,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bGl" = ( +"bDB" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, @@ -41495,22 +39043,22 @@ dir = 4 }, /area/hallway/primary/central) -"bGm" = ( +"bDC" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ name = "Bar" }, /turf/open/floor/plasteel, /area/crew_quarters/bar) -"bGn" = ( +"bDD" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bGo" = ( +"bDF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bGp" = ( +"bDG" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/centcom{ name = "Club"; @@ -41518,7 +39066,7 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bGq" = ( +"bDH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -41527,54 +39075,25 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bGr" = ( -/obj/effect/landmark/xmastree, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"bGs" = ( +"bDI" = ( /obj/structure/chair/stool{ pixel_y = 8 }, /obj/effect/landmark/start/assistant, /turf/open/floor/wood, /area/crew_quarters/bar) -"bGt" = ( +"bDJ" = ( /obj/structure/disposalpipe/segment, /obj/structure/table/wood/poker, /obj/item/clothing/mask/cigarette/cigar, /turf/open/floor/wood, /area/crew_quarters/bar) -"bGu" = ( +"bDK" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bGv" = ( -/obj/structure/chair/wood/wings{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bGw" = ( -/obj/structure/table/wood, -/obj/item/lipstick{ - pixel_y = 5 - }, -/obj/machinery/camera{ - c_tag = "Theatre - Stage"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/device/instrument/guitar, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"bGx" = ( +"bDM" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -41587,7 +39106,7 @@ dir = 8 }, /area/hallway/primary/starboard) -"bGy" = ( +"bDN" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -41597,16 +39116,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/starboard) -"bGz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/engine/atmos) -"bGA" = ( +"bDO" = ( /obj/structure/tank_dispenser{ pixel_x = -1 }, @@ -41614,11 +39124,7 @@ dir = 1 }, /area/engine/atmos) -"bGB" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bGC" = ( +"bDP" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ @@ -41626,7 +39132,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bGD" = ( +"bDQ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -41634,7 +39140,7 @@ dir = 4 }, /area/engine/atmos) -"bGE" = ( +"bDR" = ( /obj/machinery/door/airlock/atmos/glass{ name = "Atmospherics Monitoring"; req_access_txt = "24" @@ -41644,15 +39150,12 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bGF" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, +"bDS" = ( /turf/open/floor/plasteel/caution{ dir = 8 }, /area/engine/atmos) -"bGG" = ( +"bDT" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -41662,22 +39165,22 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/engine/atmos) -"bGH" = ( +"bDU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/engine/atmos) -"bGI" = ( +"bDV" = ( /obj/structure/closet/crate, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/atmos) -"bGJ" = ( +"bDW" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bGK" = ( +"bDX" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; name = "Mix to Filter"; @@ -41685,33 +39188,33 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bGL" = ( +"bDY" = ( /obj/machinery/atmospherics/pipe/manifold/purple/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bGM" = ( +"bDZ" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 6 }, /obj/effect/landmark/start/atmospheric_technician, /turf/open/floor/plasteel, /area/engine/atmos) -"bGN" = ( +"bEa" = ( /obj/machinery/atmospherics/pipe/manifold/green/visible{ dir = 1 }, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmos) -"bGO" = ( +"bEb" = ( /obj/machinery/atmospherics/pipe/manifold/green/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bGP" = ( +"bEc" = ( /obj/machinery/computer/atmos_control/tank{ dir = 8; frequency = 1441; @@ -41725,24 +39228,20 @@ dir = 4 }, /area/engine/atmos) -"bGQ" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/atmos) -"bGR" = ( +"bEd" = ( /obj/machinery/air_sensor{ frequency = 1441; id_tag = "mix_sensor" }, /turf/open/floor/engine/vacuum, /area/engine/atmos) -"bGS" = ( +"bEe" = ( /obj/machinery/light/small{ dir = 4 }, /turf/open/floor/engine/vacuum, /area/engine/atmos) -"bGT" = ( +"bEf" = ( /obj/machinery/telecomms/processor/preset_one, /obj/machinery/camera{ c_tag = "Telecomms - Server Room - Fore-Port"; @@ -41751,29 +39250,29 @@ }, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"bGU" = ( +"bEg" = ( /obj/structure/showcase/cyborg/old{ dir = 2; pixel_y = 20 }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bGV" = ( +"bEh" = ( /obj/machinery/telecomms/receiver/preset_left, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"bGW" = ( +"bEi" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/tcommsat/server) -"bGX" = ( +"bEj" = ( /obj/machinery/telecomms/receiver/preset_right, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"bGY" = ( +"bEk" = ( /obj/machinery/telecomms/processor/preset_three, /obj/machinery/camera{ c_tag = "Telecomms - Server Room - Fore-Starboard"; @@ -41782,31 +39281,22 @@ }, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"bGZ" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 13; - id = "ferry_home"; - name = "port bay 2"; - turf_type = /turf/open/space; - width = 5 - }, -/turf/open/space/basic, -/area/space) -"bHa" = ( +"bEl" = ( /obj/machinery/door/airlock/external{ name = "Transport Airlock" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"bHb" = ( +"bEm" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"bHc" = ( +"bEn" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -41817,7 +39307,7 @@ dir = 4 }, /area/hallway/secondary/entry) -"bHd" = ( +"bEo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -41825,36 +39315,28 @@ /obj/item/storage/box/lights/mixed, /turf/open/floor/plating, /area/maintenance/port) -"bHe" = ( +"bEp" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 }, /obj/machinery/portable_atmospherics/canister/air, /turf/open/floor/plating, /area/maintenance/port) -"bHf" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/port) -"bHg" = ( +"bEq" = ( /obj/structure/light_construct{ dir = 8 }, /turf/open/floor/wood, /area/security/vacantoffice) -"bHh" = ( +"bEs" = ( /obj/item/paper_bin{ pixel_x = -2; pixel_y = 6 }, /obj/structure/table/wood, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/wood, +/turf/open/floor/carpet, /area/security/vacantoffice) -"bHi" = ( +"bEt" = ( /obj/machinery/door/airlock{ id_tag = "AuxShower"; name = "Shower" @@ -41862,14 +39344,14 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bHj" = ( +"bEu" = ( /obj/machinery/door/airlock{ id_tag = "AuxToilet2"; name = "Unit 2" }, /turf/open/floor/plasteel, /area/crew_quarters/toilet/auxiliary) -"bHk" = ( +"bEv" = ( /obj/structure/toilet{ pixel_y = 8 }, @@ -41889,25 +39371,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/toilet/auxiliary) -"bHl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bHm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bHn" = ( +"bEw" = ( /obj/machinery/computer/security/telescreen/entertainment{ pixel_x = -32 }, @@ -41918,39 +39382,32 @@ /obj/structure/displaycase/trophy, /turf/open/floor/wood, /area/library) -"bHo" = ( +"bEx" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, /turf/open/floor/carpet, /area/library) -"bHp" = ( +"bEy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/library) -"bHq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/library) -"bHr" = ( +"bEz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/carpet, /area/library) -"bHs" = ( +"bEA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/carpet, /area/library) -"bHt" = ( +"bEB" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -41964,7 +39421,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bHu" = ( +"bEC" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -41975,7 +39432,7 @@ dir = 2 }, /area/hallway/primary/central) -"bHv" = ( +"bED" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -41990,7 +39447,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bHw" = ( +"bEE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42001,7 +39458,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bHx" = ( +"bEF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42013,7 +39470,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bHy" = ( +"bEG" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42027,7 +39484,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bHz" = ( +"bEH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42039,7 +39496,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bHA" = ( +"bEI" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -42061,7 +39518,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bHB" = ( +"bEJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42075,19 +39532,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bHC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/secondary/command) -"bHD" = ( +"bEK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42103,7 +39548,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bHE" = ( +"bEL" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42114,7 +39559,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bHF" = ( +"bEM" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42128,7 +39573,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bHG" = ( +"bEN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42142,7 +39587,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bHH" = ( +"bEO" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42154,7 +39599,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bHI" = ( +"bEP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42163,7 +39608,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bHJ" = ( +"bEQ" = ( /obj/machinery/holopad, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -42179,7 +39624,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bHK" = ( +"bER" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42189,7 +39634,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bHL" = ( +"bES" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42203,7 +39648,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHM" = ( +"bET" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42215,7 +39660,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHN" = ( +"bEU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42232,7 +39677,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHO" = ( +"bEV" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42249,7 +39694,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHP" = ( +"bEW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42260,7 +39705,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHQ" = ( +"bEX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42275,7 +39720,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHR" = ( +"bEY" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42286,7 +39731,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHS" = ( +"bEZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42300,7 +39745,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHT" = ( +"bFa" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42316,7 +39761,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHU" = ( +"bFb" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42327,7 +39772,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHV" = ( +"bFc" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -42339,7 +39784,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHW" = ( +"bFd" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42350,7 +39795,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHX" = ( +"bFe" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42367,7 +39812,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHY" = ( +"bFf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -42382,7 +39827,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bHZ" = ( +"bFg" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42393,7 +39838,7 @@ dir = 8 }, /area/hallway/primary/central) -"bIa" = ( +"bFh" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -42409,7 +39854,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bIb" = ( +"bFi" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42420,7 +39865,7 @@ dir = 2 }, /area/hallway/primary/central) -"bIc" = ( +"bFj" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -42433,7 +39878,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/bar) -"bId" = ( +"bFk" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42442,7 +39887,7 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bIe" = ( +"bFl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -42452,7 +39897,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bIf" = ( +"bFm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -42461,17 +39906,7 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bIg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/bar, -/area/crew_quarters/bar) -"bIh" = ( +"bFn" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -42480,7 +39915,7 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bIi" = ( +"bFo" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -42489,7 +39924,7 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bIj" = ( +"bFp" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42503,7 +39938,7 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bIk" = ( +"bFq" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42515,7 +39950,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bIl" = ( +"bFr" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42527,7 +39962,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bIm" = ( +"bFs" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -42541,11 +39976,11 @@ /obj/item/storage/pill_bottle/dice, /turf/open/floor/wood, /area/crew_quarters/bar) -"bIn" = ( +"bFt" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/wood, /area/crew_quarters/bar) -"bIo" = ( +"bFu" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, @@ -42555,7 +39990,7 @@ /obj/structure/table/wood/poker, /turf/open/floor/wood, /area/crew_quarters/bar) -"bIp" = ( +"bFv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42564,7 +39999,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bIq" = ( +"bFw" = ( /obj/structure/chair/wood/wings{ dir = 1 }, @@ -42575,7 +40010,7 @@ /obj/effect/landmark/start/clown, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bIr" = ( +"bFx" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42584,7 +40019,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bIs" = ( +"bFy" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -42599,7 +40034,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bIt" = ( +"bFz" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -42611,7 +40046,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bIu" = ( +"bFA" = ( /obj/machinery/door/airlock{ name = "Theatre Stage"; req_access_txt = "0"; @@ -42628,7 +40063,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bIv" = ( +"bFB" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -42646,7 +40081,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bIw" = ( +"bFC" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -42660,7 +40095,7 @@ dir = 8 }, /area/hallway/primary/starboard) -"bIx" = ( +"bFD" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -42672,7 +40107,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/starboard) -"bIy" = ( +"bFE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment{ dir = 4 @@ -42681,7 +40116,7 @@ dir = 4 }, /area/hallway/primary/starboard) -"bIz" = ( +"bFF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42701,7 +40136,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/engine/atmos) -"bIA" = ( +"bFG" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42710,20 +40145,20 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bIB" = ( +"bFH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bIC" = ( +"bFI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/atmos) -"bID" = ( +"bFJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -42732,7 +40167,7 @@ dir = 2 }, /area/engine/atmos) -"bIE" = ( +"bFK" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 8 @@ -42752,13 +40187,13 @@ dir = 6 }, /area/engine/atmos) -"bIF" = ( +"bFL" = ( /obj/machinery/holopad, /turf/open/floor/plasteel/caution{ dir = 8 }, /area/engine/atmos) -"bIG" = ( +"bFM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 6 }, @@ -42767,21 +40202,21 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bIH" = ( +"bFN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/engine/atmos) -"bII" = ( +"bFO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/atmos) -"bIJ" = ( +"bFP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, @@ -42791,25 +40226,25 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bIK" = ( +"bFQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 9 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bIL" = ( +"bFR" = ( /obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 6 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bIM" = ( +"bFS" = ( /obj/machinery/atmospherics/pipe/simple/purple/visible{ dir = 9 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bIN" = ( +"bFT" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 1; name = "Pure to Mix"; @@ -42817,13 +40252,13 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bIO" = ( +"bFU" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 5 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bIP" = ( +"bFV" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, /obj/machinery/atmospherics/components/binary/pump{ dir = 4; @@ -42832,7 +40267,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bIQ" = ( +"bFW" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 }, @@ -42841,22 +40276,21 @@ dir = 6 }, /area/engine/atmos) -"bIR" = ( +"bFX" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 }, /turf/open/floor/plating, /area/engine/atmos) -"bIS" = ( +"bFY" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/orange/visible, /turf/open/space, /area/space/nearstation) -"bIT" = ( +"bFZ" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 @@ -42864,7 +40298,7 @@ /obj/structure/grille, /turf/closed/wall/r_wall, /area/engine/atmos) -"bIU" = ( +"bGa" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 8; frequency = 1441; @@ -42873,7 +40307,7 @@ }, /turf/open/floor/engine/vacuum, /area/engine/atmos) -"bIV" = ( +"bGb" = ( /obj/machinery/camera{ c_tag = "Atmospherics Tank - Mix"; dir = 8; @@ -42881,54 +40315,34 @@ }, /turf/open/floor/engine/vacuum, /area/engine/atmos) -"bIW" = ( +"bGc" = ( /obj/machinery/telecomms/bus/preset_one, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"bIX" = ( +"bGd" = ( /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bIY" = ( +"bGe" = ( /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"bIZ" = ( +"bGf" = ( /obj/machinery/telecomms/bus/preset_three, /turf/open/floor/circuit/green/telecomms/mainframe, /area/tcommsat/server) -"bJa" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" +"bGg" = ( +/obj/structure/chair/wood/wings{ + dir = 8 }, -/obj/machinery/light{ - dir = 4 +/obj/machinery/light_switch{ + pixel_y = 28 }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/arrival{ - dir = 4 - }, -/area/hallway/secondary/entry) -"bJb" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;27;37" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bJc" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bJd" = ( +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"bGh" = ( +/obj/machinery/announcement_system, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bGj" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -42937,7 +40351,7 @@ }, /turf/open/floor/wood, /area/security/vacantoffice) -"bJe" = ( +"bGk" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -42946,7 +40360,7 @@ }, /turf/open/floor/wood, /area/security/vacantoffice) -"bJf" = ( +"bGl" = ( /obj/machinery/shower{ dir = 4 }, @@ -42961,21 +40375,22 @@ /obj/item/soap/nanotrasen, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bJg" = ( +"bGm" = ( /obj/machinery/shower{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bJh" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 +"bGp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, -/area/crew_quarters/toilet/auxiliary) -"bJi" = ( +/area/maintenance/starboard) +"bGq" = ( /obj/machinery/door/airlock/maintenance{ name = "Library Maintenance"; req_access_txt = "0"; @@ -42983,46 +40398,48 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bJj" = ( +"bGr" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /turf/open/floor/carpet, /area/library) -"bJk" = ( +"bGs" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/wood, /area/library) -"bJl" = ( +"bGt" = ( /turf/open/floor/wood{ icon_state = "wood-broken7" }, /area/library) -"bJm" = ( +"bGu" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, /turf/open/floor/wood, /area/library) -"bJn" = ( -/obj/machinery/holopad, -/turf/open/floor/wood, -/area/library) -"bJo" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-22" +"bGv" = ( +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)" }, -/turf/open/floor/wood, +/turf/closed/wall, /area/library) -"bJp" = ( +"bGw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway - Port"; + dir = 8; + network = list("SS13") + }, /turf/open/floor/plasteel/neutral/corner{ - dir = 4 + dir = 2 }, /area/hallway/primary/central) -"bJq" = ( +"bGx" = ( /obj/structure/sign/directions/engineering{ desc = "A direction sign, pointing out which way the research department is."; icon_state = "direction_sci"; @@ -43042,10 +40459,10 @@ }, /turf/closed/wall/r_wall, /area/ai_monitored/storage/eva) -"bJr" = ( +"bGy" = ( /turf/closed/wall/r_wall, /area/ai_monitored/storage/eva) -"bJs" = ( +"bGz" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/command{ @@ -43055,11 +40472,11 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bJt" = ( +"bGA" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/ai_monitored/storage/eva) -"bJu" = ( +"bGB" = ( /obj/machinery/door/firedoor, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -43072,10 +40489,10 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bJv" = ( +"bGC" = ( /turf/closed/wall/r_wall, /area/teleporter) -"bJw" = ( +"bGD" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -43090,17 +40507,17 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/teleporter) -"bJx" = ( +"bGE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/teleporter) -"bJy" = ( +"bGF" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /turf/open/floor/plating, /area/hallway/secondary/command) -"bJz" = ( +"bGG" = ( /obj/structure/chair{ dir = 1 }, @@ -43111,17 +40528,17 @@ dir = 8 }, /area/hallway/secondary/command) -"bJA" = ( +"bGH" = ( /obj/structure/chair{ dir = 1 }, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bJB" = ( +"bGI" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bJC" = ( +"bGJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -43130,13 +40547,13 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bJD" = ( +"bGK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bJE" = ( +"bGL" = ( /obj/structure/chair{ dir = 1 }, @@ -43155,14 +40572,14 @@ dir = 2 }, /area/hallway/secondary/command) -"bJF" = ( +"bGM" = ( /turf/closed/wall/r_wall, /area/gateway) -"bJG" = ( +"bGN" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/gateway) -"bJH" = ( +"bGO" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -43175,26 +40592,26 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/gateway) -"bJI" = ( +"bGP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/r_wall, /area/gateway) -"bJJ" = ( +"bGQ" = ( /obj/machinery/vending/cola/random, /turf/open/floor/plasteel/vault, /area/hallway/secondary/command) -"bJK" = ( +"bGR" = ( /obj/machinery/vending/cigarette, /obj/machinery/newscaster{ pixel_y = -29 }, /turf/open/floor/plasteel/vault, /area/hallway/secondary/command) -"bJL" = ( +"bGS" = ( /obj/machinery/vending/coffee, /turf/open/floor/plasteel/vault, /area/hallway/secondary/command) -"bJM" = ( +"bGT" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "0"; req_one_access_txt = "12;17" @@ -43204,7 +40621,7 @@ }, /turf/open/floor/plating, /area/maintenance/central) -"bJN" = ( +"bGU" = ( /obj/structure/sign/directions/engineering{ desc = "A direction sign, pointing out which way the escape arm is."; icon_state = "direction_evac"; @@ -43224,7 +40641,7 @@ }, /turf/closed/wall, /area/maintenance/central) -"bJO" = ( +"bGV" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -43232,7 +40649,7 @@ dir = 1 }, /area/hallway/primary/central) -"bJP" = ( +"bGW" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -43241,7 +40658,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bJQ" = ( +"bGX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -43250,38 +40667,38 @@ dir = 2 }, /area/hallway/primary/central) -"bJR" = ( +"bGY" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plating, /area/crew_quarters/bar) -"bJS" = ( +"bGZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bJT" = ( +"bHa" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bJU" = ( +"bHb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bJV" = ( +"bHc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bJW" = ( +"bHd" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -43293,7 +40710,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bJX" = ( +"bHe" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -43302,7 +40719,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bJY" = ( +"bHf" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -43311,7 +40728,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/bar) -"bJZ" = ( +"bHg" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -43323,7 +40740,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bKa" = ( +"bHh" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -43333,7 +40750,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bKb" = ( +"bHi" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -43342,7 +40759,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bKc" = ( +"bHj" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -43351,18 +40768,7 @@ }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bKd" = ( -/obj/item/soap/nanotrasen, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"bKe" = ( +"bHl" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -43370,7 +40776,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/starboard) -"bKf" = ( +"bHm" = ( /obj/item/crowbar, /obj/item/wrench, /obj/structure/table, @@ -43379,7 +40785,7 @@ dir = 8 }, /area/hallway/primary/starboard) -"bKg" = ( +"bHn" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -43390,7 +40796,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/hallway/primary/starboard) -"bKh" = ( +"bHo" = ( /obj/machinery/light/small{ dir = 4 }, @@ -43405,7 +40811,7 @@ dir = 4 }, /area/hallway/primary/starboard) -"bKi" = ( +"bHp" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/light/small{ dir = 8 @@ -43416,7 +40822,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/atmos) -"bKj" = ( +"bHq" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -43424,7 +40830,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/atmos) -"bKk" = ( +"bHr" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -43433,7 +40839,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/atmos) -"bKl" = ( +"bHs" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /obj/machinery/light/small{ dir = 4 @@ -43444,7 +40850,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/atmos) -"bKm" = ( +"bHt" = ( /obj/machinery/light{ dir = 8 }, @@ -43452,25 +40858,25 @@ dir = 8 }, /area/engine/atmos) -"bKn" = ( +"bHu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/engine/atmos) -"bKo" = ( +"bHv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/atmos) -"bKp" = ( +"bHw" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 6 }, /turf/open/floor/plating, /area/engine/atmos) -"bKq" = ( +"bHx" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/purple/visible, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ @@ -43478,14 +40884,14 @@ }, /turf/open/floor/plating, /area/engine/atmos) -"bKr" = ( +"bHy" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /turf/open/floor/plating, /area/engine/atmos) -"bKs" = ( +"bHz" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/yellow/visible, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ @@ -43493,7 +40899,7 @@ }, /turf/open/floor/plating, /area/engine/atmos) -"bKt" = ( +"bHA" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/green/visible, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ @@ -43501,42 +40907,26 @@ }, /turf/open/floor/plating, /area/engine/atmos) -"bKu" = ( +"bHB" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 4 }, /turf/open/floor/plating, /area/engine/atmos) -"bKv" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bKw" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bKx" = ( +"bHC" = ( /obj/machinery/light/small{ dir = 8 }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bKy" = ( +"bHD" = ( /obj/machinery/light/small{ dir = 1 }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bKz" = ( +"bHE" = ( /obj/machinery/holopad, /obj/structure/cable/yellow{ icon_state = "1-4" @@ -43546,7 +40936,7 @@ }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bKA" = ( +"bHF" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -43558,18 +40948,18 @@ }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bKB" = ( +"bHG" = ( /obj/machinery/light/small{ dir = 4 }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bKC" = ( +"bHH" = ( /obj/structure/closet/firecloset, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bKD" = ( +"bHI" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -43581,13 +40971,13 @@ dir = 4 }, /area/hallway/secondary/entry) -"bKE" = ( +"bHJ" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating{ icon_state = "platingdmg1" }, /area/maintenance/port) -"bKF" = ( +"bHK" = ( /obj/item/book/manual/wiki/security_space_law{ pixel_x = -3; pixel_y = 5 @@ -43595,13 +40985,13 @@ /obj/structure/table/wood, /turf/open/floor/wood, /area/security/vacantoffice) -"bKG" = ( +"bHL" = ( /obj/structure/chair/comfy/black{ dir = 4 }, /turf/open/floor/carpet, /area/security/vacantoffice) -"bKH" = ( +"bHM" = ( /obj/item/folder/white{ pixel_x = 4; pixel_y = -3 @@ -43609,21 +40999,7 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/security/vacantoffice) -"bKI" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/security/vacantoffice) -"bKJ" = ( -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bKK" = ( +"bHN" = ( /obj/machinery/shower{ dir = 4 }, @@ -43632,7 +41008,7 @@ /obj/effect/decal/cleanable/blood/gibs/old, /turf/open/floor/plasteel/floorgrime, /area/crew_quarters/toilet/auxiliary) -"bKL" = ( +"bHO" = ( /obj/machinery/shower{ dir = 8 }, @@ -43641,21 +41017,14 @@ }, /turf/open/floor/plating, /area/crew_quarters/toilet/auxiliary) -"bKM" = ( -/obj/machinery/light/small, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/crew_quarters/toilet/auxiliary) -"bKN" = ( +"bHP" = ( /obj/machinery/door/airlock{ id_tag = "AuxToilet3"; name = "Unit 3" }, /turf/open/floor/plating, /area/crew_quarters/toilet/auxiliary) -"bKO" = ( +"bHQ" = ( /obj/structure/toilet{ pixel_y = 8 }, @@ -43676,38 +41045,27 @@ /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/crew_quarters/toilet/auxiliary) -"bKP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bKQ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bKR" = ( +"bHR" = ( /obj/structure/bookcase/random/nonfiction, /turf/open/floor/wood, /area/library) -"bKS" = ( +"bHS" = ( /obj/structure/bookcase/random/fiction, /turf/open/floor/wood, /area/library) -"bKT" = ( +"bHT" = ( /obj/structure/table/wood, -/obj/item/device/paicard, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, /turf/open/floor/wood, /area/library) -"bKU" = ( +"bHU" = ( +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/library) +"bHV" = ( /obj/structure/table/wood, /obj/item/paper_bin{ pixel_x = -3; @@ -43715,37 +41073,7 @@ }, /turf/open/floor/wood, /area/library) -"bKV" = ( -/obj/structure/table/wood, -/obj/item/device/camera_film{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/device/camera_film{ - pixel_y = 9 - }, -/obj/item/device/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/turf/open/floor/wood, -/area/library) -"bKW" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -30 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bKX" = ( +"bHW" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -43755,7 +41083,13 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bKY" = ( +"bHX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"bHY" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/structure/extinguisher_cabinet{ pixel_x = -27 @@ -43764,20 +41098,20 @@ dir = 8 }, /area/ai_monitored/storage/eva) -"bKZ" = ( +"bHZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line{ dir = 9 }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bLa" = ( +"bIa" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bLb" = ( +"bIb" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -43787,7 +41121,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bLc" = ( +"bIc" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/machinery/light_switch{ pixel_x = -8; @@ -43797,10 +41131,10 @@ dir = 8 }, /area/ai_monitored/storage/eva) -"bLd" = ( +"bId" = ( /turf/closed/wall, /area/ai_monitored/storage/eva) -"bLe" = ( +"bIe" = ( /obj/structure/table, /obj/item/hand_tele, /obj/item/device/radio/beacon, @@ -43812,7 +41146,7 @@ dir = 4 }, /area/teleporter) -"bLf" = ( +"bIf" = ( /obj/structure/table, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high{ @@ -43826,7 +41160,7 @@ dir = 4 }, /area/teleporter) -"bLg" = ( +"bIg" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -43839,7 +41173,7 @@ dir = 8 }, /area/teleporter) -"bLh" = ( +"bIh" = ( /obj/structure/closet/crate{ icon_state = "crate"; opened = 0 @@ -43863,7 +41197,7 @@ dir = 1 }, /area/teleporter) -"bLi" = ( +"bIi" = ( /obj/structure/chair{ dir = 1 }, @@ -43877,7 +41211,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bLj" = ( +"bIj" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -43886,7 +41220,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/command) -"bLk" = ( +"bIk" = ( /obj/structure/chair{ dir = 1 }, @@ -43900,14 +41234,14 @@ dir = 2 }, /area/hallway/secondary/command) -"bLl" = ( +"bIl" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/open/floor/plating, /area/hallway/secondary/command) -"bLm" = ( +"bIm" = ( /obj/structure/closet/secure_closet/exile, /obj/structure/extinguisher_cabinet{ pixel_x = -27 @@ -43919,7 +41253,7 @@ dir = 1 }, /area/gateway) -"bLn" = ( +"bIn" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -43932,7 +41266,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bLo" = ( +"bIo" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -43942,7 +41276,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bLp" = ( +"bIp" = ( /obj/structure/closet/crate{ icon_state = "crateopen" }, @@ -43969,7 +41303,7 @@ dir = 1 }, /area/gateway) -"bLq" = ( +"bIq" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -43978,7 +41312,7 @@ }, /turf/open/floor/plating, /area/maintenance/central) -"bLr" = ( +"bIr" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -43987,13 +41321,13 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bLs" = ( +"bIs" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/neutral/corner{ dir = 2 }, /area/hallway/primary/central) -"bLt" = ( +"bIt" = ( /obj/structure/table, /obj/item/clothing/head/hardhat/cakehat, /obj/machinery/newscaster{ @@ -44005,7 +41339,7 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bLu" = ( +"bIu" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -44014,12 +41348,13 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bLv" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/bar, -/area/crew_quarters/bar) -"bLw" = ( +"bIv" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bIw" = ( /obj/machinery/light, /obj/machinery/camera{ c_tag = "Kitchen Hatch"; @@ -44028,7 +41363,13 @@ }, /turf/open/floor/plasteel/bar, /area/crew_quarters/bar) -"bLx" = ( +"bIx" = ( +/obj/structure/rack, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/suit/hooded/wintercoat, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"bIy" = ( /obj/machinery/firealarm{ dir = 1; pixel_y = -24 @@ -44036,20 +41377,7 @@ /obj/machinery/light, /turf/open/floor/wood, /area/crew_quarters/bar) -"bLy" = ( -/obj/machinery/door/window{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Theatre Stage"; - req_access_txt = "0" - }, -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/turf/open/floor/carpet, -/area/crew_quarters/theatre) -"bLz" = ( +"bIA" = ( /obj/machinery/light_switch{ pixel_y = -28 }, @@ -44059,13 +41387,13 @@ /obj/machinery/light, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bLA" = ( +"bIB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/carpet, /area/crew_quarters/theatre) -"bLB" = ( +"bIC" = ( /obj/structure/table/wood, /obj/machinery/light/small, /obj/item/clothing/glasses/regular/hipster{ @@ -44073,21 +41401,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bLC" = ( -/obj/item/device/instrument/violin, -/obj/structure/table/wood, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"bLD" = ( +"bIE" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -44097,13 +41411,13 @@ icon_state = "platingdmg2" }, /area/maintenance/starboard) -"bLE" = ( +"bIF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/yellow/side{ dir = 10 }, /area/hallway/primary/starboard) -"bLF" = ( +"bIG" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -44114,7 +41428,7 @@ dir = 2 }, /area/hallway/primary/starboard) -"bLG" = ( +"bIH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -44125,7 +41439,7 @@ dir = 6 }, /area/hallway/primary/starboard) -"bLH" = ( +"bII" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -44133,7 +41447,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/atmos) -"bLI" = ( +"bIJ" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -44141,7 +41455,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/atmos) -"bLJ" = ( +"bIK" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 @@ -44149,7 +41463,7 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/atmos) -"bLK" = ( +"bIL" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -44157,13 +41471,13 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engine/atmos) -"bLL" = ( +"bIM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/closed/wall/r_wall, /area/engine/atmos) -"bLM" = ( +"bIN" = ( /obj/structure/table, /obj/item/stack/sheet/glass/fifty, /obj/item/stack/sheet/glass/fifty, @@ -44179,7 +41493,7 @@ dir = 1 }, /area/engine/atmos) -"bLN" = ( +"bIO" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; name = "Air to External Air Ports"; @@ -44189,7 +41503,7 @@ dir = 8 }, /area/engine/atmos) -"bLO" = ( +"bIP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 @@ -44199,49 +41513,49 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bLP" = ( +"bIQ" = ( /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 1 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bLQ" = ( +"bIR" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/atmos) -"bLR" = ( +"bIS" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bLS" = ( +"bIT" = ( /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 4 }, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmos) -"bLT" = ( +"bIU" = ( /obj/machinery/atmospherics/pipe/simple/purple/visible, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmos) -"bLU" = ( +"bIV" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 6 }, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmos) -"bLV" = ( +"bIW" = ( /obj/machinery/atmospherics/pipe/manifold/yellow/visible, /turf/open/floor/plasteel, /area/engine/atmos) -"bLW" = ( +"bIX" = ( /obj/machinery/atmospherics/pipe/manifold/yellow/visible{ dir = 1 }, @@ -44250,7 +41564,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bLX" = ( +"bIY" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -44264,37 +41578,28 @@ dir = 5 }, /area/engine/atmos) -"bLY" = ( +"bIZ" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"bLZ" = ( +"bJa" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 }, /turf/open/floor/plating, /area/engine/atmos) -"bMa" = ( +"bJb" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/orange/visible, /turf/open/space, /area/space/nearstation) -"bMb" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bMc" = ( +"bJc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 8; frequency = 1441; @@ -44303,65 +41608,79 @@ }, /turf/open/floor/engine/n2o, /area/engine/atmos) -"bMd" = ( +"bJd" = ( /turf/open/floor/engine/n2o, /area/engine/atmos) -"bMe" = ( +"bJe" = ( /obj/structure/lattice, /obj/structure/grille, /obj/structure/lattice, /obj/structure/lattice, /turf/closed/wall/r_wall, /area/space/nearstation) -"bMf" = ( +"bJf" = ( /obj/structure/lattice, /obj/structure/grille, /obj/structure/lattice, /turf/closed/wall/r_wall, /area/space/nearstation) -"bMg" = ( +"bJg" = ( /obj/machinery/telecomms/message_server, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"bMh" = ( -/obj/machinery/telecomms/bus/preset_two, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bMi" = ( -/obj/machinery/telecomms/processor/preset_two, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bMj" = ( -/obj/structure/table/glass, -/obj/item/folder{ - pixel_y = 2 +"bJh" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" }, -/obj/item/folder{ - pixel_y = 2 +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bJi" = ( +/obj/machinery/light/small, +/obj/item/folder, +/obj/item/folder, +/obj/machinery/camera{ + c_tag = "Telecomms - Control Room"; + dir = 1; + network = list("SS13","tcomm") }, +/obj/structure/table/wood, /obj/item/pen, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bMk" = ( +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bJj" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;27;37" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bJk" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bMl" = ( -/obj/machinery/telecomms/processor/preset_four, +"bJl" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bJm" = ( +/obj/machinery/telecomms/bus/preset_two, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"bMm" = ( -/obj/machinery/telecomms/bus/preset_four, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bMn" = ( +"bJn" = ( /obj/machinery/blackbox_recorder, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"bMo" = ( +"bJo" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -44372,7 +41691,7 @@ dir = 4 }, /area/hallway/secondary/entry) -"bMp" = ( +"bJp" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "0"; req_one_access_txt = "12;27;37" @@ -44382,7 +41701,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bMq" = ( +"bJq" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -44394,20 +41713,20 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bMr" = ( +"bJr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/effect/landmark/event_spawn, /turf/open/floor/plating, /area/maintenance/port) -"bMs" = ( +"bJs" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/open/floor/plating, /area/maintenance/port) -"bMt" = ( +"bJt" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -44419,7 +41738,7 @@ }, /turf/open/floor/wood, /area/security/vacantoffice) -"bMu" = ( +"bJu" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -44428,25 +41747,25 @@ }, /turf/open/floor/wood, /area/security/vacantoffice) -"bMv" = ( +"bJv" = ( /obj/item/folder/blue, /obj/structure/table/wood, /turf/open/floor/carpet, /area/security/vacantoffice) -"bMw" = ( +"bJw" = ( /obj/structure/chair/office/dark{ dir = 8 }, /turf/open/floor/carpet, /area/security/vacantoffice) -"bMx" = ( +"bJx" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 }, /turf/open/floor/wood, /area/security/vacantoffice) -"bMy" = ( +"bJy" = ( /obj/machinery/light/small{ dir = 8 }, @@ -44457,12 +41776,12 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/wood, /area/library) -"bMz" = ( +"bJz" = ( /turf/open/floor/wood{ icon_state = "wood-broken5" }, /area/library) -"bMA" = ( +"bJA" = ( /obj/machinery/door/window/northright{ base_state = "left"; dir = 8; @@ -44473,29 +41792,14 @@ }, /turf/open/floor/wood, /area/library) -"bMB" = ( +"bJB" = ( /obj/effect/landmark/start/librarian, /obj/structure/chair/office/dark{ dir = 1 }, /turf/open/floor/wood, /area/library) -"bMC" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole/bookmanagement, -/obj/structure/noticeboard{ - desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; - dir = 8; - name = "requests board"; - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/library) -"bMD" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"bME" = ( +"bJC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/extinguisher_cabinet{ pixel_x = 27 @@ -44504,13 +41808,13 @@ dir = 4 }, /area/hallway/primary/central) -"bMF" = ( +"bJD" = ( /obj/machinery/suit_storage_unit/standard_unit, /turf/open/floor/plasteel/vault{ dir = 8 }, /area/ai_monitored/storage/eva) -"bMG" = ( +"bJE" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -44519,7 +41823,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bMH" = ( +"bJF" = ( /obj/structure/table, /obj/item/storage/belt/utility, /obj/item/storage/belt/utility, @@ -44530,7 +41834,7 @@ /obj/item/device/multitool, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bMI" = ( +"bJG" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -44540,7 +41844,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bMJ" = ( +"bJH" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/machinery/firealarm{ dir = 4; @@ -44550,7 +41854,7 @@ dir = 8 }, /area/ai_monitored/storage/eva) -"bMK" = ( +"bJI" = ( /obj/structure/window/reinforced, /obj/structure/table, /obj/item/stack/packageWrap, @@ -44562,7 +41866,7 @@ dir = 4 }, /area/teleporter) -"bML" = ( +"bJJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -44571,7 +41875,7 @@ }, /turf/open/floor/plasteel, /area/teleporter) -"bMM" = ( +"bJK" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -44585,7 +41889,7 @@ }, /turf/open/floor/plasteel, /area/teleporter) -"bMN" = ( +"bJL" = ( /obj/structure/closet/crate{ icon_state = "crate"; opened = 0 @@ -44607,14 +41911,14 @@ dir = 1 }, /area/teleporter) -"bMO" = ( +"bJM" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/open/floor/plating, /area/teleporter) -"bMP" = ( +"bJN" = ( /obj/structure/chair{ dir = 1 }, @@ -44625,7 +41929,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bMQ" = ( +"bJO" = ( /obj/structure/chair{ dir = 1 }, @@ -44633,7 +41937,7 @@ dir = 8 }, /area/hallway/secondary/command) -"bMR" = ( +"bJP" = ( /obj/structure/chair{ dir = 1 }, @@ -44641,7 +41945,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bMS" = ( +"bJQ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -44650,7 +41954,7 @@ dir = 2 }, /area/hallway/secondary/command) -"bMT" = ( +"bJR" = ( /obj/structure/chair{ dir = 1 }, @@ -44661,14 +41965,14 @@ dir = 2 }, /area/hallway/secondary/command) -"bMU" = ( +"bJS" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" }, /turf/open/floor/plating, /area/gateway) -"bMV" = ( +"bJT" = ( /obj/structure/closet/l3closet/scientist, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -44680,7 +41984,7 @@ dir = 1 }, /area/gateway) -"bMW" = ( +"bJU" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -44698,7 +42002,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bMX" = ( +"bJV" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -44711,7 +42015,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bMY" = ( +"bJW" = ( /obj/structure/table, /obj/item/folder/yellow, /obj/structure/cable/yellow{ @@ -44728,7 +42032,7 @@ dir = 1 }, /area/gateway) -"bMZ" = ( +"bJX" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -44738,7 +42042,7 @@ }, /turf/open/floor/plating, /area/gateway) -"bNa" = ( +"bJY" = ( /obj/machinery/gateway{ dir = 9 }, @@ -44747,7 +42051,7 @@ dir = 1 }, /area/gateway) -"bNb" = ( +"bJZ" = ( /obj/machinery/gateway{ dir = 1 }, @@ -44759,7 +42063,7 @@ dir = 8 }, /area/gateway) -"bNc" = ( +"bKa" = ( /obj/machinery/gateway{ dir = 5 }, @@ -44768,7 +42072,7 @@ dir = 4 }, /area/gateway) -"bNd" = ( +"bKb" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -44776,28 +42080,24 @@ icon_state = "panelscorched" }, /area/maintenance/central) -"bNe" = ( +"bKc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/firedoor, /turf/open/floor/plasteel/neutral/corner{ dir = 1 }, /area/hallway/primary/central) -"bNf" = ( +"bKd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /turf/open/floor/plasteel/neutral/corner{ dir = 2 }, /area/hallway/primary/central) -"bNg" = ( -/obj/structure/sign/poster/official/random, +"bKe" = ( /turf/closed/wall, /area/crew_quarters/kitchen) -"bNh" = ( -/turf/closed/wall, -/area/crew_quarters/kitchen) -"bNi" = ( +"bKf" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "kitchen"; name = "Serving Hatch" @@ -44808,7 +42108,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bNj" = ( +"bKg" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ @@ -44821,11 +42121,11 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bNk" = ( +"bKh" = ( /obj/machinery/computer/security/telescreen/entertainment, /turf/closed/wall, /area/crew_quarters/kitchen) -"bNl" = ( +"bKi" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ @@ -44842,7 +42142,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bNm" = ( +"bKj" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters/preopen{ @@ -44854,7 +42154,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bNn" = ( +"bKk" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -44867,18 +42167,18 @@ dir = 2 }, /area/crew_quarters/kitchen) -"bNo" = ( +"bKl" = ( /obj/machinery/vending/snack/random, /obj/machinery/newscaster{ pixel_y = -29 }, /turf/open/floor/carpet, /area/crew_quarters/bar) -"bNp" = ( +"bKm" = ( /obj/machinery/vending/coffee, /turf/open/floor/carpet, /area/crew_quarters/bar) -"bNq" = ( +"bKn" = ( /obj/machinery/camera{ c_tag = "Club - Aft"; dir = 1; @@ -44891,15 +42191,15 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/crew_quarters/bar) -"bNr" = ( +"bKo" = ( /obj/machinery/vending/cigarette, /turf/open/floor/carpet, /area/crew_quarters/bar) -"bNs" = ( +"bKp" = ( /obj/machinery/vending/cola/random, /turf/open/floor/carpet, /area/crew_quarters/bar) -"bNt" = ( +"bKq" = ( /obj/machinery/door/airlock{ name = "Theatre Backstage"; req_access_txt = "46" @@ -44907,14 +42207,14 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bNu" = ( +"bKr" = ( /turf/closed/wall/r_wall, /area/storage/tcom) -"bNv" = ( +"bKs" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall/r_wall, /area/storage/tcom) -"bNw" = ( +"bKt" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/airlock/engineering{ @@ -44927,33 +42227,13 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/storage/tcom) -"bNx" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNy" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNz" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNA" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNB" = ( +"bKu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/closed/wall/r_wall, /area/engine/atmos) -"bNC" = ( +"bKv" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; name = "External Waste Ports to Filter"; @@ -44967,7 +42247,7 @@ dir = 8 }, /area/engine/atmos) -"bND" = ( +"bKw" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 4 }, @@ -44976,26 +42256,26 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bNE" = ( +"bKx" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 2 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bNF" = ( +"bKy" = ( /obj/item/device/radio/beacon, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bNG" = ( +"bKz" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bNH" = ( +"bKA" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; name = "Air to Ports"; @@ -45003,7 +42283,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bNI" = ( +"bKB" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; name = "Mix to Ports"; @@ -45011,7 +42291,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bNJ" = ( +"bKC" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; name = "Pure to Ports"; @@ -45019,15 +42299,15 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bNK" = ( +"bKD" = ( /obj/effect/landmark/start/atmospheric_technician, /turf/open/floor/plasteel, /area/engine/atmos) -"bNL" = ( +"bKE" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible, /turf/open/floor/plasteel, /area/engine/atmos) -"bNM" = ( +"bKF" = ( /obj/machinery/computer/atmos_control/tank{ dir = 8; frequency = 1441; @@ -45044,85 +42324,70 @@ dir = 4 }, /area/engine/atmos) -"bNN" = ( +"bKG" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"bNO" = ( +"bKH" = ( /obj/machinery/air_sensor{ frequency = 1441; id_tag = "n2o_sensor" }, /turf/open/floor/engine/n2o, /area/engine/atmos) -"bNP" = ( +"bKI" = ( /obj/machinery/portable_atmospherics/canister/nitrous_oxide{ valve_open = 1 }, /turf/open/floor/engine/n2o, /area/engine/atmos) -"bNQ" = ( +"bKJ" = ( /obj/machinery/light/small{ dir = 4 }, /turf/open/floor/engine/n2o, /area/engine/atmos) -"bNR" = ( +"bKK" = ( /obj/structure/grille, /obj/structure/lattice, /obj/structure/lattice, /turf/closed/wall/r_wall, /area/space/nearstation) -"bNS" = ( -/obj/machinery/light/small{ - dir = 4 +"bKL" = ( +/obj/machinery/telecomms/processor/preset_two, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bKM" = ( +/obj/structure/table/glass, +/obj/item/folder{ + pixel_y = 2 }, -/obj/machinery/door/window{ - dir = 2; - name = "MiniSat Walkway Access"; - req_access_txt = "0" +/obj/item/folder{ + pixel_y = 2 }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Aft Port"; - dir = 8; - network = list("MiniSat") - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bNT" = ( +/obj/item/pen, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"bKN" = ( +/obj/machinery/telecomms/bus/preset_four, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bKO" = ( +/obj/machinery/telecomms/hub/preset, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"bKP" = ( +/obj/machinery/telecomms/processor/preset_four, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bKQ" = ( /obj/structure/lattice, /obj/structure/window/reinforced{ dir = 8 }, /turf/open/space, /area/aisat) -"bNU" = ( -/obj/machinery/telecomms/server/presets/common, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bNV" = ( -/obj/machinery/telecomms/server/presets/engineering, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bNW" = ( -/obj/machinery/telecomms/hub/preset, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bNX" = ( -/obj/machinery/telecomms/server/presets/science, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bNY" = ( -/obj/machinery/telecomms/server/presets/medical, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bNZ" = ( +"bKR" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -45146,7 +42411,7 @@ }, /turf/open/floor/plasteel/dark, /area/aisat) -"bOa" = ( +"bKS" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-06" }, @@ -45155,7 +42420,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bOb" = ( +"bKT" = ( /obj/structure/chair, /obj/effect/landmark/start/assistant, /obj/machinery/light{ @@ -45166,14 +42431,14 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bOc" = ( +"bKU" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bOd" = ( +"bKV" = ( /obj/machinery/light{ dir = 1 }, @@ -45182,7 +42447,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bOe" = ( +"bKW" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -45199,7 +42464,7 @@ dir = 4 }, /area/hallway/secondary/entry) -"bOf" = ( +"bKX" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -45207,11 +42472,7 @@ icon_state = "platingdmg2" }, /area/maintenance/port) -"bOg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port) -"bOh" = ( +"bKY" = ( /obj/machinery/power/apc{ dir = 8; name = "Vacant Office APC"; @@ -45223,24 +42484,24 @@ }, /turf/open/floor/wood, /area/security/vacantoffice) -"bOi" = ( +"bKZ" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, /turf/open/floor/wood, /area/security/vacantoffice) -"bOj" = ( +"bLa" = ( /obj/structure/light_construct{ dir = 4 }, /turf/open/floor/wood, /area/security/vacantoffice) -"bOk" = ( +"bLb" = ( /obj/structure/table, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port) -"bOl" = ( +"bLc" = ( /obj/structure/closet/crate{ icon_state = "crateopen" }, @@ -45250,7 +42511,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bOm" = ( +"bLd" = ( /obj/structure/closet, /obj/item/clothing/shoes/jackboots, /obj/effect/spawner/lootdrop/maintenance{ @@ -45259,42 +42520,38 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bOn" = ( +"bLe" = ( /obj/machinery/vending/autodrobe{ req_access_txt = "0" }, /turf/open/floor/plating, /area/maintenance/port) -"bOo" = ( +"bLf" = ( /obj/structure/rack, /obj/effect/spawner/lootdrop/costume, /obj/effect/spawner/lootdrop/costume, /turf/open/floor/plating, /area/maintenance/port) -"bOp" = ( +"bLg" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/rack, /obj/effect/spawner/lootdrop/costume, /obj/effect/spawner/lootdrop/costume, /turf/open/floor/plating, /area/maintenance/port) -"bOq" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/port) -"bOr" = ( +"bLh" = ( /obj/structure/bookcase/random/religion, /turf/open/floor/wood, /area/library) -"bOs" = ( +"bLi" = ( /obj/structure/bookcase/random/adult, /turf/open/floor/wood, /area/library) -"bOt" = ( +"bLk" = ( /obj/structure/bookcase/random/reference, /turf/open/floor/wood, /area/library) -"bOu" = ( +"bLl" = ( /obj/structure/table/wood, /obj/item/pen/red, /obj/item/pen/blue{ @@ -45303,17 +42560,7 @@ }, /turf/open/floor/wood, /area/library) -"bOv" = ( -/obj/machinery/light_switch{ - pixel_x = 28 - }, -/turf/open/floor/wood, -/area/library) -"bOw" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"bOx" = ( +"bLm" = ( /obj/item/stack/sheet/rglass{ amount = 50 }, @@ -45344,7 +42591,7 @@ dir = 8 }, /area/ai_monitored/storage/eva) -"bOy" = ( +"bLn" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -45353,13 +42600,13 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bOz" = ( +"bLo" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bOA" = ( +"bLp" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -45369,7 +42616,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bOB" = ( +"bLq" = ( /obj/machinery/door/window/northleft{ dir = 8; name = "Magboot Storage"; @@ -45394,11 +42641,11 @@ dir = 8 }, /area/ai_monitored/storage/eva) -"bOC" = ( +"bLr" = ( /obj/machinery/teleport/hub, /turf/open/floor/plating, /area/teleporter) -"bOD" = ( +"bLs" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -45407,7 +42654,7 @@ }, /turf/open/floor/plasteel, /area/teleporter) -"bOE" = ( +"bLt" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment{ dir = 5 @@ -45417,7 +42664,7 @@ }, /turf/open/floor/plasteel, /area/teleporter) -"bOF" = ( +"bLu" = ( /obj/machinery/door/window/northleft{ dir = 8; name = "Disposals Chute"; @@ -45439,7 +42686,7 @@ dir = 1 }, /area/teleporter) -"bOG" = ( +"bLv" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -45450,10 +42697,10 @@ }, /turf/open/floor/plating, /area/bridge/showroom/corporate) -"bOH" = ( +"bLw" = ( /turf/closed/wall/r_wall, /area/bridge/showroom/corporate) -"bOI" = ( +"bLx" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -45464,7 +42711,7 @@ }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bOJ" = ( +"bLy" = ( /obj/structure/closet/secure_closet/medical1, /obj/machinery/airalarm{ dir = 4; @@ -45477,7 +42724,7 @@ dir = 1 }, /area/gateway) -"bOK" = ( +"bLz" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -45486,7 +42733,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bOL" = ( +"bLA" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ @@ -45494,7 +42741,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bOM" = ( +"bLB" = ( /obj/structure/table, /obj/item/paper/pamphlet/gateway, /obj/effect/turf_decal/bot{ @@ -45504,12 +42751,12 @@ dir = 1 }, /area/gateway) -"bON" = ( +"bLC" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /turf/open/floor/plating, /area/gateway) -"bOO" = ( +"bLD" = ( /obj/machinery/gateway{ dir = 8 }, @@ -45518,11 +42765,11 @@ dir = 8 }, /area/gateway) -"bOP" = ( +"bLE" = ( /obj/machinery/gateway/centerstation, /turf/open/floor/plasteel/dark, /area/gateway) -"bOQ" = ( +"bLF" = ( /obj/machinery/gateway{ dir = 4 }, @@ -45531,7 +42778,7 @@ dir = 8 }, /area/gateway) -"bOR" = ( +"bLG" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -45539,7 +42786,7 @@ /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/central) -"bOS" = ( +"bLH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/status_display{ pixel_x = -32 @@ -45553,7 +42800,7 @@ dir = 1 }, /area/hallway/primary/central) -"bOT" = ( +"bLI" = ( /obj/structure/table, /obj/machinery/microwave{ pixel_x = -3; @@ -45569,7 +42816,7 @@ dir = 2 }, /area/crew_quarters/kitchen) -"bOU" = ( +"bLJ" = ( /obj/structure/table, /obj/machinery/microwave{ pixel_x = -3; @@ -45590,18 +42837,18 @@ dir = 2 }, /area/crew_quarters/kitchen) -"bOV" = ( +"bLK" = ( /turf/open/floor/plasteel/cafeteria{ dir = 5 }, /area/crew_quarters/kitchen) -"bOW" = ( +"bLL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/cafeteria{ dir = 5 }, /area/crew_quarters/kitchen) -"bOX" = ( +"bLM" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -45613,7 +42860,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bOY" = ( +"bLN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -45621,7 +42868,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bOZ" = ( +"bLO" = ( /obj/structure/disposalpipe/segment{ dir = 10 }, @@ -45635,7 +42882,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bPa" = ( +"bLP" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -45643,34 +42890,29 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bPb" = ( +"bLQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/light_switch{ pixel_x = -26 }, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bPc" = ( +"bLR" = ( /obj/structure/dresser, /obj/machinery/newscaster{ pixel_y = 32 }, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bPd" = ( +"bLS" = ( /obj/machinery/vending/autodrobe, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bPe" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bPf" = ( +"bLT" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/bridge) +"bLU" = ( /obj/structure/rack, /obj/item/circuitboard/machine/telecomms/bus, /obj/item/circuitboard/machine/telecomms/broadcaster, @@ -45684,7 +42926,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tcom) -"bPg" = ( +"bLV" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/holopad, /obj/structure/cable/yellow{ @@ -45692,7 +42934,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tcom) -"bPh" = ( +"bLW" = ( /obj/structure/table, /obj/item/stock_parts/subspace/analyzer, /obj/item/stock_parts/subspace/analyzer, @@ -45702,7 +42944,21 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tcom) -"bPi" = ( +"bLX" = ( +/obj/structure/closet, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard) +"bLY" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bLZ" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bMa" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -45711,7 +42967,7 @@ dir = 8 }, /area/engine/atmos) -"bPj" = ( +"bMb" = ( /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 1 }, @@ -45719,7 +42975,7 @@ dir = 8 }, /area/engine/atmos) -"bPk" = ( +"bMc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -45729,14 +42985,14 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bPl" = ( +"bMd" = ( /obj/structure/reagent_dispensers/watertank, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 9 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bPm" = ( +"bMe" = ( /obj/structure/reagent_dispensers/fueltank, /obj/item/device/radio/intercom{ freerange = 0; @@ -45752,7 +43008,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/engine/atmos) -"bPn" = ( +"bMf" = ( /obj/structure/rack, /obj/item/clothing/suit/hazardvest, /obj/item/clothing/suit/hazardvest, @@ -45765,28 +43021,26 @@ /obj/item/clothing/mask/gas, /turf/open/floor/plasteel, /area/engine/atmos) -"bPo" = ( +"bMg" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bPp" = ( +"bMh" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmos) -"bPq" = ( +"bMi" = ( /obj/machinery/atmospherics/pipe/manifold4w/general/visible, /turf/open/floor/plasteel, /area/engine/atmos) -"bPr" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, +"bMj" = ( +/obj/machinery/holopad, /turf/open/floor/plasteel, /area/engine/atmos) -"bPs" = ( +"bMk" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1; filter_type = "n2o"; @@ -45800,14 +43054,14 @@ dir = 6 }, /area/engine/atmos) -"bPt" = ( +"bMl" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"bPu" = ( +"bMm" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 8; frequency = 1441; @@ -45816,7 +43070,7 @@ }, /turf/open/floor/engine/n2o, /area/engine/atmos) -"bPv" = ( +"bMn" = ( /obj/machinery/camera{ c_tag = "Atmospherics Tank - N2O"; dir = 8; @@ -45824,7 +43078,7 @@ }, /turf/open/floor/engine/n2o, /area/engine/atmos) -"bPw" = ( +"bMo" = ( /obj/machinery/airalarm/server{ dir = 4; pixel_x = -22 @@ -45839,13 +43093,13 @@ }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bPx" = ( +"bMp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bPy" = ( +"bMq" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -45854,13 +43108,13 @@ }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bPz" = ( +"bMr" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bPA" = ( +"bMs" = ( /obj/machinery/power/apc/highcap/five_k{ dir = 4; name = "Telecomms Server Room APC"; @@ -45880,7 +43134,16 @@ }, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bPB" = ( +"bMt" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"bMu" = ( /obj/machinery/camera{ c_tag = "Arrivals - Aft Arm - Far"; dir = 1; @@ -45889,14 +43152,27 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bPC" = ( +"bMv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bPD" = ( +"bMw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = -25 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bMx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -45905,7 +43181,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) -"bPE" = ( +"bMy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -45913,7 +43189,7 @@ dir = 2 }, /area/hallway/secondary/entry) -"bPF" = ( +"bMz" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -45924,7 +43200,7 @@ dir = 2 }, /area/hallway/secondary/entry) -"bPG" = ( +"bMA" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -45940,7 +43216,7 @@ dir = 2 }, /area/hallway/secondary/entry) -"bPH" = ( +"bMB" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -45959,21 +43235,11 @@ dir = 6 }, /area/hallway/secondary/entry) -"bPI" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bPJ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/port) -"bPK" = ( +"bMC" = ( /obj/structure/chair/office/dark, /turf/open/floor/wood, /area/security/vacantoffice) -"bPL" = ( +"bMD" = ( /obj/structure/table/wood, /obj/item/paper_bin{ pixel_x = 1; @@ -45981,7 +43247,7 @@ }, /turf/open/floor/wood, /area/security/vacantoffice) -"bPM" = ( +"bME" = ( /obj/structure/mirror{ pixel_x = -28 }, @@ -45997,20 +43263,7 @@ /obj/structure/table, /turf/open/floor/plating, /area/maintenance/port) -"bPN" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bPO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/port) -"bPP" = ( +"bMF" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -46018,7 +43271,7 @@ icon_state = "panelscorched" }, /area/maintenance/port) -"bPQ" = ( +"bMG" = ( /obj/structure/closet/crate{ icon_state = "crateopen" }, @@ -46026,7 +43279,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port) -"bPR" = ( +"bMH" = ( /obj/machinery/light/small, /obj/machinery/power/apc{ dir = 8; @@ -46040,27 +43293,27 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/wood, /area/library) -"bPS" = ( +"bMI" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/wood, /area/library) -"bPT" = ( +"bMJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/carpet, /area/library) -"bPU" = ( +"bMK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "2-8" }, /turf/open/floor/carpet, /area/library) -"bPV" = ( +"bML" = ( /obj/machinery/light/small, /obj/machinery/airalarm{ dir = 1; @@ -46068,7 +43321,7 @@ }, /turf/open/floor/wood, /area/library) -"bPW" = ( +"bMM" = ( /obj/item/folder, /obj/item/folder, /obj/machinery/camera/autoname{ @@ -46080,26 +43333,24 @@ /obj/item/device/tape, /turf/open/floor/wood, /area/library) -"bPX" = ( +"bMN" = ( /obj/machinery/light/small, /obj/machinery/libraryscanner, /turf/open/floor/wood, /area/library) -"bPY" = ( +"bMO" = ( /obj/machinery/newscaster{ pixel_x = -1; pixel_y = -29 }, /turf/open/floor/wood, /area/library) -"bPZ" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/wood, -/area/library) -"bQa" = ( +"bMP" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/bar, +/area/crew_quarters/bar) +"bMR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/light{ dir = 4 @@ -46108,7 +43359,7 @@ dir = 4 }, /area/hallway/primary/central) -"bQb" = ( +"bMS" = ( /obj/structure/closet/crate/rcd{ pixel_y = 4 }, @@ -46127,13 +43378,13 @@ dir = 8 }, /area/ai_monitored/storage/eva) -"bQc" = ( +"bMT" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bQd" = ( +"bMU" = ( /obj/structure/tank_dispenser/oxygen{ layer = 2.9; pixel_x = -1; @@ -46141,7 +43392,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bQe" = ( +"bMV" = ( /obj/machinery/camera/motion{ c_tag = "E.V.A. Storage"; dir = 8 @@ -46159,7 +43410,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bQf" = ( +"bMW" = ( /obj/machinery/teleport/station, /obj/machinery/firealarm{ dir = 8; @@ -46167,21 +43418,21 @@ }, /turf/open/floor/plating, /area/teleporter) -"bQg" = ( +"bMX" = ( /obj/machinery/bluespace_beacon, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/teleporter) -"bQh" = ( +"bMY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plasteel, /area/teleporter) -"bQi" = ( +"bMZ" = ( /obj/machinery/camera{ c_tag = "Teleporter Room"; dir = 8; @@ -46200,7 +43451,7 @@ dir = 1 }, /area/teleporter) -"bQj" = ( +"bNa" = ( /obj/structure/window/reinforced, /obj/structure/showcase/mecha/ripley, /obj/structure/cable/yellow{ @@ -46209,7 +43460,7 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bQk" = ( +"bNb" = ( /obj/structure/sign/plaques/kiddie/perfect_drone{ pixel_y = 32 }, @@ -46218,7 +43469,7 @@ /obj/structure/window/reinforced, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bQl" = ( +"bNc" = ( /obj/structure/showcase/mecha/marauder, /obj/structure/window/reinforced{ dir = 4 @@ -46229,13 +43480,17 @@ }, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bQm" = ( -/obj/structure/bookcase{ - name = "bookcase" +"bNd" = ( +/obj/item/tank/internals/air, +/obj/item/tank/internals/air, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/machinery/light/small{ + dir = 4 }, -/turf/open/floor/wood, -/area/bridge/showroom/corporate) -"bQn" = ( +/turf/open/floor/plating, +/area/maintenance/port) +"bNe" = ( /obj/structure/table/wood, /obj/item/phone{ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; @@ -46257,13 +43512,13 @@ }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bQo" = ( +"bNf" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bQp" = ( +"bNg" = ( /obj/machinery/light_switch{ pixel_y = 24 }, @@ -46281,7 +43536,17 @@ }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bQq" = ( +"bNh" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/pen/red, +/obj/machinery/newscaster{ + pixel_x = 30; + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"bNi" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -46296,7 +43561,7 @@ }, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bQr" = ( +"bNj" = ( /obj/structure/showcase/perfect_employee, /obj/structure/sign/plaques/kiddie/perfect_man{ pixel_y = 32 @@ -46304,7 +43569,7 @@ /obj/structure/window/reinforced, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bQs" = ( +"bNk" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -46316,10 +43581,10 @@ }, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bQt" = ( +"bNl" = ( /turf/closed/wall, /area/gateway) -"bQu" = ( +"bNm" = ( /obj/structure/bed/roller, /obj/machinery/vending/wallmed{ pixel_x = -28 @@ -46336,14 +43601,14 @@ dir = 1 }, /area/gateway) -"bQv" = ( +"bNn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plasteel, /area/gateway) -"bQw" = ( +"bNo" = ( /obj/structure/tank_dispenser/oxygen{ pixel_x = -1; pixel_y = 2 @@ -46363,7 +43628,7 @@ dir = 1 }, /area/gateway) -"bQx" = ( +"bNp" = ( /obj/machinery/gateway{ dir = 10 }, @@ -46372,7 +43637,7 @@ dir = 4 }, /area/gateway) -"bQy" = ( +"bNq" = ( /obj/machinery/gateway, /obj/structure/cable/yellow{ icon_state = "0-2" @@ -46382,7 +43647,7 @@ dir = 8 }, /area/gateway) -"bQz" = ( +"bNr" = ( /obj/machinery/gateway{ dir = 6 }, @@ -46391,13 +43656,13 @@ dir = 1 }, /area/gateway) -"bQA" = ( +"bNs" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plating, /area/maintenance/central) -"bQB" = ( +"bNt" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/item/device/radio/intercom{ dir = 8; @@ -46408,7 +43673,7 @@ dir = 1 }, /area/hallway/primary/central) -"bQC" = ( +"bNu" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, @@ -46416,7 +43681,7 @@ dir = 2 }, /area/hallway/primary/central) -"bQD" = ( +"bNv" = ( /obj/effect/spawner/structure/window, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -46427,7 +43692,7 @@ }, /turf/open/floor/plating, /area/crew_quarters/kitchen) -"bQE" = ( +"bNw" = ( /obj/structure/rack, /obj/item/book/manual/chef_recipes{ pixel_x = 2; @@ -46442,7 +43707,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bQF" = ( +"bNx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -46450,7 +43715,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bQG" = ( +"bNy" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -46458,7 +43723,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bQH" = ( +"bNz" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -46466,7 +43731,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bQI" = ( +"bNA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -46474,13 +43739,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bQJ" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/kitchen) -"bQK" = ( +"bNB" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -46489,7 +43748,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bQL" = ( +"bNC" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -46499,14 +43758,14 @@ dir = 2 }, /area/crew_quarters/kitchen) -"bQM" = ( +"bND" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, /obj/structure/closet/secure_closet/freezer/meat, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bQN" = ( +"bNE" = ( /obj/structure/sink/kitchen{ desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; @@ -46514,52 +43773,40 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bQO" = ( +"bNF" = ( /obj/machinery/gibber, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bQP" = ( +"bNG" = ( /obj/structure/kitchenspike, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bQQ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/clothing/mask/pig, -/obj/item/bikehorn, -/obj/structure/table/wood, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"bQR" = ( +"bNI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bQS" = ( +"bNJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/effect/landmark/start/mime, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bQT" = ( -/obj/machinery/light/small{ - dir = 4 +"bNK" = ( +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/sign/poster/contraband/clown{ - pixel_x = 32 +/obj/structure/table/wood, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 }, /turf/open/floor/wood, -/area/crew_quarters/theatre) -"bQU" = ( +/area/security/vacantoffice) +"bNL" = ( /obj/structure/table, /obj/item/stock_parts/subspace/transmitter, /obj/item/stock_parts/subspace/transmitter, @@ -46580,7 +43827,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tcom) -"bQV" = ( +"bNM" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -46589,7 +43836,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tcom) -"bQW" = ( +"bNN" = ( /obj/structure/table, /obj/item/stock_parts/subspace/treatment, /obj/item/stock_parts/subspace/treatment, @@ -46603,26 +43850,11 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tcom) -"bQX" = ( -/obj/structure/closet, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"bQY" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bQZ" = ( -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bRa" = ( +"bNO" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/item/storage/box/lights/mixed, /turf/open/floor/plating, /area/maintenance/starboard) -"bRb" = ( +"bNP" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 9 }, @@ -46630,7 +43862,7 @@ dir = 8 }, /area/engine/atmos) -"bRc" = ( +"bNQ" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -46640,11 +43872,11 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bRd" = ( +"bNR" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/engine/atmos) -"bRe" = ( +"bNS" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, @@ -46658,10 +43890,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bRf" = ( -/turf/open/floor/plasteel, -/area/engine/atmos) -"bRg" = ( +"bNU" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; name = "Port Mix to East Ports"; @@ -46670,22 +43899,7 @@ /obj/item/crowbar, /turf/open/floor/plasteel, /area/engine/atmos) -"bRh" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bRi" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Mix to Engine"; - on = 0 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bRj" = ( +"bNV" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, /obj/machinery/door/window/northleft{ dir = 8; @@ -46693,45 +43907,39 @@ name = "Inner Pipe Access"; req_access_txt = "24" }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"bNW" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/door/window{ + dir = 2; + name = "MiniSat Walkway Access"; + req_access_txt = "0" + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Aft Port"; + dir = 8; + network = list("MiniSat") + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ dir = 4 }, /turf/open/floor/plasteel/dark, -/area/engine/atmos) -"bRk" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) -"bRl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"bRm" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 9 - }, -/turf/open/space, -/area/space/nearstation) -"bRn" = ( -/obj/machinery/telecomms/broadcaster/preset_left, +/area/aisat) +"bNX" = ( +/obj/machinery/telecomms/server/presets/common, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"bRo" = ( -/obj/machinery/telecomms/server/presets/command, +"bNY" = ( +/obj/machinery/telecomms/server/presets/engineering, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"bRp" = ( -/obj/machinery/telecomms/server/presets/security, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bRq" = ( +"bNZ" = ( /obj/machinery/light/small, /obj/machinery/camera{ c_tag = "Telecomms - Server Room - Aft"; @@ -46742,25 +43950,26 @@ /obj/machinery/ntnet_relay, /turf/open/floor/plasteel/dark/telecomms/mainframe, /area/tcommsat/server) -"bRr" = ( -/obj/machinery/telecomms/server/presets/service, +"bOa" = ( +/obj/machinery/telecomms/server/presets/medical, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"bRs" = ( -/obj/machinery/telecomms/server/presets/supply, +"bOb" = ( +/obj/machinery/telecomms/server/presets/science, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"bRt" = ( -/obj/machinery/telecomms/broadcaster/preset_right, +"bOc" = ( +/obj/machinery/telecomms/broadcaster/preset_left, /turf/open/floor/circuit/telecomms/mainframe, /area/tcommsat/server) -"bRu" = ( +"bOd" = ( /obj/machinery/door/airlock/external{ name = "Auxiliary Airlock" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/hallway/secondary/entry) -"bRv" = ( +"bOe" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "0"; req_one_access_txt = "12;27" @@ -46771,15 +43980,16 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port) -"bRw" = ( -/obj/structure/table/wood, -/obj/item/paper, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 +"bOf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 }, -/turf/open/floor/wood, -/area/security/vacantoffice) -"bRx" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bOg" = ( /obj/structure/table/wood, /obj/item/folder/white{ pixel_x = 4; @@ -46787,30 +43997,17 @@ }, /turf/open/floor/wood, /area/security/vacantoffice) -"bRy" = ( +"bOh" = ( /obj/item/toy/cards/deck, /obj/structure/table/wood, /turf/open/floor/wood, /area/security/vacantoffice) -"bRz" = ( +"bOi" = ( /obj/structure/table, /obj/item/clothing/mask/cigarette/pipe, /turf/open/floor/plating, /area/maintenance/port) -"bRA" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port) -"bRB" = ( -/turf/open/floor/plating, -/area/maintenance/port) -"bRC" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port) -"bRD" = ( +"bOk" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/centcom{ name = "Quiet Room"; @@ -46819,7 +44016,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/library) -"bRE" = ( +"bOl" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/centcom{ name = "Quiet Room"; @@ -46831,21 +44028,21 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/library) -"bRF" = ( +"bOm" = ( /obj/machinery/door/morgue{ name = "Private Study"; req_access_txt = "37" }, /turf/open/floor/engine/cult, /area/library) -"bRG" = ( +"bOn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/firedoor, /turf/open/floor/plasteel/neutral/corner{ dir = 4 }, /area/hallway/primary/central) -"bRH" = ( +"bOo" = ( /obj/item/stack/sheet/metal/fifty, /obj/item/stack/sheet/metal/fifty, /obj/structure/table, @@ -46868,25 +44065,32 @@ dir = 8 }, /area/ai_monitored/storage/eva) -"bRI" = ( +"bOp" = ( /obj/machinery/holopad, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bRJ" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bRK" = ( +"bOq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"bOr" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bRL" = ( +"bOs" = ( /obj/machinery/door/window/northleft{ dir = 8; name = "Jetpack Storage"; @@ -46908,38 +44112,32 @@ dir = 8 }, /area/ai_monitored/storage/eva) -"bRM" = ( +"bOt" = ( /obj/machinery/computer/teleporter{ dir = 4 }, /turf/open/floor/plating, /area/teleporter) -"bRN" = ( +"bOu" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/teleporter) -"bRO" = ( -/obj/structure/rack, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/item/device/radio/intercom{ - dir = 0; - name = "Station Intercom (General)"; - pixel_x = 27 +"bOv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 }, -/turf/open/floor/plasteel/vault{ - dir = 1 +/obj/structure/cable/yellow{ + icon_state = "1-4" }, -/area/teleporter) -"bRP" = ( +/turf/open/floor/plating, +/area/maintenance/port) +"bOw" = ( /turf/closed/wall, /area/teleporter) -"bRQ" = ( +"bOx" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -46952,14 +44150,14 @@ }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bRR" = ( +"bOy" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/effect/decal/cleanable/oil, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bRS" = ( +"bOz" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -46968,35 +44166,20 @@ }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bRT" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/bridge/showroom/corporate) -"bRU" = ( +"bOB" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bRV" = ( +"bOC" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bRW" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/bridge/showroom/corporate) -"bRX" = ( +"bOD" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -47010,14 +44193,14 @@ icon_state = "wood-broken6" }, /area/bridge/showroom/corporate) -"bRY" = ( +"bOE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bRZ" = ( +"bOF" = ( /obj/machinery/power/apc/highcap/five_k{ dir = 4; name = "Nanotrasen Corporate Showroom APC"; @@ -47036,7 +44219,7 @@ }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bSa" = ( +"bOG" = ( /obj/structure/rack, /obj/item/stack/medical/ointment, /obj/item/stack/medical/bruise_pack, @@ -47052,43 +44235,43 @@ dir = 1 }, /area/gateway) -"bSb" = ( +"bOH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/corner{ dir = 8 }, /turf/open/floor/plasteel, /area/gateway) -"bSc" = ( +"bOI" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 }, /turf/open/floor/plasteel, /area/gateway) -"bSd" = ( +"bOJ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-2" }, /turf/open/floor/plating, /area/gateway) -"bSe" = ( +"bOK" = ( /turf/open/floor/plasteel/vault, /area/gateway) -"bSf" = ( +"bOL" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/vault, /area/gateway) -"bSg" = ( +"bOM" = ( /obj/machinery/light{ dir = 4 }, /turf/open/floor/plasteel/vault, /area/gateway) -"bSh" = ( +"bON" = ( /obj/structure/sign/warning/securearea{ pixel_x = -32 }, @@ -47099,7 +44282,7 @@ icon_state = "platingdmg2" }, /area/maintenance/central) -"bSi" = ( +"bOO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/light{ dir = 8 @@ -47108,7 +44291,7 @@ dir = 1 }, /area/hallway/primary/central) -"bSj" = ( +"bOP" = ( /obj/effect/spawner/structure/window, /obj/machinery/door/poddoor/preopen{ id = "kitchenwindow"; @@ -47116,23 +44299,23 @@ }, /turf/open/floor/plating, /area/crew_quarters/kitchen) -"bSk" = ( +"bOQ" = ( /obj/machinery/food_cart, /turf/open/floor/plasteel/cafeteria{ dir = 5 }, /area/crew_quarters/kitchen) -"bSl" = ( +"bOR" = ( /obj/effect/landmark/start/cook, /turf/open/floor/plasteel/cafeteria, /area/crew_quarters/kitchen) -"bSm" = ( +"bOS" = ( /obj/structure/table, /turf/open/floor/plasteel/cafeteria{ dir = 5 }, /area/crew_quarters/kitchen) -"bSn" = ( +"bOT" = ( /obj/structure/table, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/item/storage/box/donkpockets, @@ -47140,25 +44323,20 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bSo" = ( +"bOU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/table, /turf/open/floor/plasteel/cafeteria{ dir = 5 }, /area/crew_quarters/kitchen) -"bSp" = ( +"bOV" = ( /obj/machinery/deepfryer, /turf/open/floor/plasteel/cafeteria{ dir = 5 }, /area/crew_quarters/kitchen) -"bSq" = ( -/obj/effect/landmark/start/cook, -/obj/machinery/holopad, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bSr" = ( +"bOW" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -47167,27 +44345,33 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bSs" = ( +"bOX" = ( /obj/structure/closet/secure_closet/freezer/kitchen, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bSt" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"bSu" = ( +"bOY" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bOZ" = ( /obj/machinery/chem_master/condimaster{ name = "CondiMaster Neo"; pixel_x = -4 }, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bSv" = ( +"bPa" = ( /mob/living/simple_animal/hostile/retaliate/goat{ name = "Pete" }, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bSw" = ( +"bPb" = ( /obj/structure/table/wood, /obj/structure/mirror{ pixel_x = -28 @@ -47203,20 +44387,20 @@ }, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bSx" = ( +"bPc" = ( /obj/structure/chair/wood/wings{ dir = 8 }, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bSy" = ( +"bPd" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /obj/effect/landmark/start/clown, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bSz" = ( +"bPe" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -47228,7 +44412,7 @@ }, /turf/open/floor/wood, /area/crew_quarters/theatre) -"bSA" = ( +"bPf" = ( /obj/machinery/door/airlock{ name = "Theatre Backstage"; req_access_txt = "46" @@ -47241,7 +44425,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bSB" = ( +"bPg" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -47257,7 +44441,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bSC" = ( +"bPh" = ( /obj/structure/table, /obj/item/stock_parts/subspace/ansible, /obj/item/stock_parts/subspace/ansible, @@ -47267,7 +44451,7 @@ /obj/item/stock_parts/subspace/crystal, /turf/open/floor/plasteel/dark, /area/storage/tcom) -"bSD" = ( +"bPi" = ( /obj/structure/table, /obj/item/stock_parts/micro_laser, /obj/item/stock_parts/manipulator, @@ -47285,7 +44469,7 @@ }, /turf/open/floor/plasteel/dark, /area/storage/tcom) -"bSE" = ( +"bPj" = ( /obj/structure/table, /obj/item/stock_parts/subspace/filter, /obj/item/stock_parts/subspace/filter, @@ -47294,37 +44478,37 @@ /obj/item/stock_parts/subspace/filter, /turf/open/floor/plasteel/dark, /area/storage/tcom) -"bSF" = ( +"bPk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/plating, /area/maintenance/starboard) -"bSG" = ( +"bPl" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/starboard) -"bSH" = ( +"bPm" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/starboard) -"bSI" = ( +"bPn" = ( /obj/machinery/atmospherics/components/trinary/filter, /turf/open/floor/plating, /area/maintenance/starboard) -"bSJ" = ( +"bPo" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, /obj/machinery/portable_atmospherics/scrubber, /turf/open/floor/plasteel/red, /area/engine/atmos) -"bSK" = ( +"bPp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, @@ -47332,7 +44516,7 @@ dir = 8 }, /area/engine/atmos) -"bSL" = ( +"bPq" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -47341,14 +44525,14 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bSM" = ( +"bPr" = ( /obj/structure/closet/secure_closet/atmospherics, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bSN" = ( +"bPs" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -47360,14 +44544,14 @@ dir = 1 }, /area/engine/atmos) -"bSO" = ( +"bPt" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4 }, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmos) -"bSP" = ( +"bPu" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 }, @@ -47379,13 +44563,13 @@ dir = 1 }, /area/engine/atmos) -"bSQ" = ( +"bPv" = ( /obj/machinery/atmospherics/pipe/manifold/yellow/visible{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bSR" = ( +"bPw" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, /obj/machinery/atmospherics/components/binary/pump{ dir = 8; @@ -47401,14 +44585,7 @@ }, /turf/open/floor/plasteel/purple, /area/engine/atmos) -"bSS" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bST" = ( +"bPx" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 8; frequency = 1441; @@ -47417,14 +44594,14 @@ }, /turf/open/floor/engine/plasma, /area/engine/atmos) -"bSU" = ( +"bPy" = ( /turf/open/floor/engine/plasma, /area/engine/atmos) -"bSV" = ( +"bPz" = ( /obj/effect/landmark/xeno_spawn, /turf/open/floor/engine/plasma, /area/engine/atmos) -"bSW" = ( +"bPA" = ( /obj/machinery/light/small{ dir = 8 }, @@ -47433,7 +44610,7 @@ }, /turf/open/floor/plating, /area/hallway/secondary/entry) -"bSX" = ( +"bPC" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -47445,7 +44622,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bSY" = ( +"bPD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -47454,22 +44631,14 @@ icon_state = "platingdmg2" }, /area/maintenance/port) -"bSZ" = ( -/obj/structure/closet/crate, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/poster/random_official, -/turf/open/floor/plating, -/area/maintenance/port) -"bTa" = ( +"bPF" = ( /obj/structure/grille, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/port) -"bTb" = ( +"bPG" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -47478,14 +44647,14 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bTc" = ( +"bPH" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, /obj/item/trash/candy, /turf/open/floor/plating, /area/maintenance/port) -"bTd" = ( +"bPI" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Vacant Office Maintenance"; req_access_txt = "32"; @@ -47493,22 +44662,22 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bTe" = ( +"bPJ" = ( /obj/structure/rack, /obj/item/clothing/mask/horsehead, /turf/open/floor/plating, /area/maintenance/port) -"bTf" = ( +"bPK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/port) -"bTg" = ( +"bPL" = ( /obj/structure/rack, /obj/item/storage/box, /turf/open/floor/plating, /area/maintenance/port) -"bTh" = ( +"bPM" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -47517,12 +44686,12 @@ icon_state = "platingdmg2" }, /area/maintenance/port) -"bTi" = ( +"bPN" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/maintenance/port) -"bTj" = ( +"bPO" = ( /obj/structure/table/wood, /obj/item/paper_bin{ pixel_x = -2; @@ -47532,19 +44701,19 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/wood, /area/library) -"bTk" = ( +"bPP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, /turf/open/floor/wood, /area/library) -"bTl" = ( +"bPQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, /turf/open/floor/wood, /area/library) -"bTm" = ( +"bPR" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -47553,7 +44722,7 @@ }, /turf/open/floor/wood, /area/library) -"bTn" = ( +"bPS" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -47562,12 +44731,17 @@ }, /turf/open/floor/wood, /area/library) -"bTo" = ( +"bPT" = ( +/obj/structure/table/wood, +/obj/item/device/paicard, +/turf/open/floor/wood, +/area/library) +"bPU" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/machinery/vending/games, /turf/open/floor/wood, /area/library) -"bTp" = ( +"bPV" = ( /obj/structure/destructible/cult/tome, /obj/machinery/newscaster{ pixel_x = -30 @@ -47577,11 +44751,11 @@ /obj/item/book/codex_gigas, /turf/open/floor/engine/cult, /area/library) -"bTq" = ( +"bPW" = ( /obj/structure/chair/comfy/brown, /turf/open/floor/engine/cult, /area/library) -"bTr" = ( +"bPX" = ( /obj/effect/landmark/blobstart, /obj/machinery/light/small{ dir = 1 @@ -47592,7 +44766,7 @@ /obj/structure/closet/wardrobe/curator, /turf/open/floor/engine/cult, /area/library) -"bTs" = ( +"bPY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/airalarm{ dir = 8; @@ -47602,7 +44776,7 @@ dir = 4 }, /area/hallway/primary/central) -"bTt" = ( +"bPZ" = ( /obj/structure/table, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high{ @@ -47615,7 +44789,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bTu" = ( +"bQa" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -47624,7 +44798,7 @@ }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bTv" = ( +"bQb" = ( /obj/machinery/shieldwallgen, /obj/structure/window/reinforced{ dir = 1; @@ -47637,7 +44811,7 @@ dir = 4 }, /area/teleporter) -"bTw" = ( +"bQc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -47646,7 +44820,7 @@ }, /turf/open/floor/plasteel, /area/teleporter) -"bTx" = ( +"bQd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -47655,7 +44829,7 @@ }, /turf/open/floor/plasteel, /area/teleporter) -"bTy" = ( +"bQe" = ( /obj/machinery/shieldwallgen, /obj/structure/window/reinforced{ dir = 1; @@ -47668,7 +44842,7 @@ dir = 1 }, /area/teleporter) -"bTz" = ( +"bQf" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -47689,32 +44863,32 @@ }, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bTA" = ( +"bQg" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bTB" = ( +"bQh" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bTC" = ( +"bQi" = ( /turf/open/floor/wood{ icon_state = "wood-broken3" }, /area/bridge/showroom/corporate) -"bTD" = ( +"bQj" = ( /obj/machinery/cell_charger, /obj/item/stock_parts/cell/crap, /obj/structure/table/wood, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bTE" = ( +"bQk" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/holopad, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bTF" = ( +"bQl" = ( /obj/structure/table/wood, /obj/item/toy/plush/carpplushie{ color = "red"; @@ -47722,36 +44896,17 @@ }, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bTG" = ( +"bQm" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bTH" = ( +"bQn" = ( /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bTI" = ( -/obj/structure/table/wood, -/obj/machinery/button/door{ - id = "corporate_privacy"; - name = "corporate showroom shutters control"; - pixel_x = 28; - req_access_txt = "19" - }, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/item/device/paicard{ - desc = "A real Nanotrasen success, these personal AIs provide all of the companionship of an AI without any law related red-tape."; - name = "Nanotrasen-brand personal AI device exhibit" - }, -/turf/open/floor/carpet, -/area/bridge/showroom/corporate) -"bTJ" = ( +"bQp" = ( /obj/structure/rack, /obj/item/clothing/suit/hazardvest, /obj/item/clothing/suit/hazardvest, @@ -47770,7 +44925,7 @@ dir = 1 }, /area/gateway) -"bTK" = ( +"bQq" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -47782,7 +44937,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bTL" = ( +"bQr" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -47794,7 +44949,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bTM" = ( +"bQs" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -47806,7 +44961,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bTN" = ( +"bQt" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -47825,7 +44980,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bTO" = ( +"bQu" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, @@ -47834,7 +44989,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bTP" = ( +"bQv" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -47843,7 +44998,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bTQ" = ( +"bQw" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -47852,7 +45007,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bTR" = ( +"bQx" = ( /obj/machinery/door/airlock/maintenance{ name = "Gateway Maintenance"; req_access_txt = "17" @@ -47865,7 +45020,7 @@ }, /turf/open/floor/plating, /area/maintenance/central) -"bTS" = ( +"bQy" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -47880,7 +45035,7 @@ }, /turf/open/floor/plating, /area/maintenance/central) -"bTT" = ( +"bQz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/extinguisher_cabinet{ pixel_x = -27 @@ -47889,7 +45044,7 @@ dir = 1 }, /area/hallway/primary/central) -"bTU" = ( +"bQA" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -47898,7 +45053,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bTV" = ( +"bQB" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -47906,7 +45061,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bTW" = ( +"bQC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -47917,7 +45072,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bTX" = ( +"bQD" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -47931,7 +45086,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bTY" = ( +"bQE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -47942,7 +45097,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bTZ" = ( +"bQF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -47953,7 +45108,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bUa" = ( +"bQG" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-8" @@ -47965,7 +45120,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bUb" = ( +"bQH" = ( /obj/machinery/requests_console{ department = "Kitchen"; departmentType = 2; @@ -47976,11 +45131,11 @@ dir = 2 }, /area/crew_quarters/kitchen) -"bUc" = ( +"bQI" = ( /obj/structure/closet/chefcloset, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bUd" = ( +"bQJ" = ( /obj/effect/landmark/start/cook, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 @@ -47988,114 +45143,58 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bUe" = ( +"bQK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bUf" = ( -/obj/machinery/icecream_vat, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"bUg" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/clothing/mask/horsehead, -/obj/structure/table/wood, +"bQN" = ( /obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/item/clothing/mask/cigarette/pipe, -/obj/item/clothing/mask/fakemoustache, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"bUh" = ( -/obj/machinery/camera{ - c_tag = "Theatre - Backstage"; - dir = 1; - network = list("SS13") - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/obj/structure/closet/crate/wooden/toy, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"bUi" = ( -/obj/machinery/light/small, -/obj/item/toy/dummy, -/obj/item/toy/prize/honk{ - pixel_y = 12 - }, -/obj/structure/table/wood, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"bUj" = ( -/obj/machinery/firealarm{ - dir = 4; + dir = 8; pixel_x = 24 }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/crew_quarters/theatre) -"bUk" = ( +/turf/open/floor/plating, +/area/crew_quarters/toilet/auxiliary) +"bQQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/item/wrench, /turf/open/floor/plating, /area/maintenance/starboard) -"bUl" = ( +"bQR" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 }, /obj/machinery/portable_atmospherics/canister, /turf/open/floor/plating, /area/maintenance/starboard) -"bUm" = ( +"bQS" = ( /obj/machinery/suit_storage_unit/atmos, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bUn" = ( +"bQT" = ( /obj/structure/sign/warning/nosmoking, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/engine/atmos) -"bUo" = ( +"bQU" = ( /obj/machinery/atmospherics/components/trinary/filter{ filter_type = -1; on = 1 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bUp" = ( +"bQV" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 8 }, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmos) -"bUq" = ( +"bQW" = ( /obj/machinery/computer/atmos_control/tank{ dir = 8; frequency = 1441; @@ -48110,54 +45209,44 @@ }, /turf/open/floor/plasteel/purple, /area/engine/atmos) -"bUr" = ( +"bQX" = ( /obj/machinery/air_sensor{ frequency = 1441; id_tag = "tox_sensor" }, /turf/open/floor/engine/plasma, /area/engine/atmos) -"bUs" = ( +"bQY" = ( /obj/machinery/portable_atmospherics/canister/toxins, /turf/open/floor/engine/plasma, /area/engine/atmos) -"bUt" = ( +"bQZ" = ( /obj/machinery/light/small{ dir = 4 }, /turf/open/floor/engine/plasma, /area/engine/atmos) -"bUu" = ( +"bRa" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/closed/wall, /area/aisat) -"bUv" = ( +"bRc" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, /turf/open/floor/plating, /area/maintenance/port) -"bUw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bUx" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port) -"bUy" = ( +"bRd" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/port) -"bUz" = ( +"bRe" = ( /obj/item/trash/cheesie, /turf/open/floor/plating, /area/maintenance/port) -"bUA" = ( +"bRf" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; req_access_txt = "12" @@ -48165,22 +45254,22 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port) -"bUB" = ( +"bRg" = ( /obj/machinery/holopad, /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, /turf/open/floor/wood, /area/library) -"bUC" = ( +"bRh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/library) -"bUD" = ( +"bRi" = ( /obj/structure/chair/office/dark, /turf/open/floor/wood, /area/library) -"bUE" = ( +"bRj" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -48191,7 +45280,7 @@ icon_state = "wood-broken" }, /area/library) -"bUF" = ( +"bRk" = ( /obj/machinery/computer/security/telescreen/entertainment{ pixel_x = 30 }, @@ -48201,7 +45290,7 @@ }, /turf/open/floor/wood, /area/library) -"bUG" = ( +"bRl" = ( /obj/structure/table/wood, /obj/item/paper_bin{ pixel_x = -3; @@ -48210,7 +45299,7 @@ /obj/item/pen/invisible, /turf/open/floor/engine/cult, /area/library) -"bUH" = ( +"bRm" = ( /obj/item/device/taperecorder, /obj/item/device/camera, /obj/item/device/radio/intercom{ @@ -48219,13 +45308,13 @@ /obj/structure/table/wood, /turf/open/floor/engine/cult, /area/library) -"bUI" = ( +"bRn" = ( /obj/structure/bookcase{ name = "Forbidden Knowledge" }, /turf/open/floor/engine/cult, /area/library) -"bUJ" = ( +"bRo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/item/device/radio/intercom{ dir = 4; @@ -48236,49 +45325,49 @@ dir = 4 }, /area/hallway/primary/central) -"bUK" = ( +"bRp" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bUL" = ( +"bRq" = ( /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bUM" = ( +"bRr" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bUN" = ( +"bRs" = ( /obj/machinery/shieldwallgen, /turf/open/floor/plasteel/vault{ dir = 4 }, /area/teleporter) -"bUO" = ( +"bRt" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/plasteel, /area/teleporter) -"bUP" = ( +"bRu" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/plasteel, /area/teleporter) -"bUQ" = ( +"bRv" = ( /obj/machinery/shieldwallgen, /turf/open/floor/plasteel/vault{ dir = 1 }, /area/teleporter) -"bUR" = ( +"bRw" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -48295,7 +45384,7 @@ }, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bUS" = ( +"bRx" = ( /obj/structure/table/wood, /obj/item/storage/secure/briefcase{ desc = "A large briefcase with a digital locking system, and the Nanotrasen logo emblazoned on the sides."; @@ -48304,11 +45393,11 @@ }, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bUT" = ( +"bRy" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bUU" = ( +"bRz" = ( /obj/structure/showcase/machinery/microwave{ dir = 1; pixel_y = 2 @@ -48316,7 +45405,7 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bUV" = ( +"bRA" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -48329,7 +45418,7 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bUW" = ( +"bRB" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -48347,7 +45436,7 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bUX" = ( +"bRC" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -48372,7 +45461,7 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bUY" = ( +"bRD" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48384,7 +45473,7 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bUZ" = ( +"bRE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-8" @@ -48395,7 +45484,7 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bVa" = ( +"bRF" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48419,7 +45508,7 @@ }, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bVb" = ( +"bRG" = ( /obj/item/book/manual/wiki/security_space_law{ name = "space law"; pixel_y = 2 @@ -48446,7 +45535,7 @@ }, /turf/open/floor/carpet, /area/bridge/showroom/corporate) -"bVc" = ( +"bRH" = ( /obj/structure/table, /obj/item/storage/fancy/donut_box, /obj/machinery/firealarm{ @@ -48460,7 +45549,7 @@ dir = 1 }, /area/gateway) -"bVd" = ( +"bRI" = ( /obj/structure/table, /obj/machinery/recharger, /obj/effect/turf_decal/bot{ @@ -48470,7 +45559,7 @@ dir = 1 }, /area/gateway) -"bVe" = ( +"bRJ" = ( /obj/structure/table, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high{ @@ -48484,7 +45573,7 @@ dir = 1 }, /area/gateway) -"bVf" = ( +"bRK" = ( /obj/item/storage/belt/utility, /obj/item/device/radio/off, /obj/item/device/radio/off, @@ -48503,13 +45592,13 @@ dir = 1 }, /area/gateway) -"bVg" = ( +"bRL" = ( /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plasteel, /area/gateway) -"bVh" = ( +"bRM" = ( /obj/machinery/airalarm{ dir = 8; pixel_x = 24 @@ -48524,7 +45613,7 @@ }, /turf/open/floor/plasteel, /area/gateway) -"bVi" = ( +"bRN" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -48532,7 +45621,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/central) -"bVj" = ( +"bRO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/firealarm{ dir = 8; @@ -48542,7 +45631,7 @@ dir = 1 }, /area/hallway/primary/central) -"bVk" = ( +"bRP" = ( /obj/structure/table, /obj/item/reagent_containers/food/snacks/mint, /obj/machinery/airalarm{ @@ -48560,7 +45649,7 @@ dir = 2 }, /area/crew_quarters/kitchen) -"bVl" = ( +"bRQ" = ( /obj/structure/table, /obj/item/reagent_containers/glass/beaker{ pixel_x = 5 @@ -48572,7 +45661,7 @@ dir = 2 }, /area/crew_quarters/kitchen) -"bVm" = ( +"bRR" = ( /obj/structure/table, /obj/item/stack/packageWrap, /obj/item/hand_labeler, @@ -48586,7 +45675,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bVn" = ( +"bRS" = ( /obj/structure/table, /obj/item/reagent_containers/food/condiment/saltshaker{ pixel_x = -3 @@ -48604,7 +45693,7 @@ dir = 2 }, /area/crew_quarters/kitchen) -"bVo" = ( +"bRT" = ( /obj/structure/extinguisher_cabinet{ pixel_y = -30 }, @@ -48614,7 +45703,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bVp" = ( +"bRU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -48628,7 +45717,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bVq" = ( +"bRV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -48642,7 +45731,7 @@ dir = 5 }, /area/crew_quarters/kitchen) -"bVr" = ( +"bRW" = ( /obj/machinery/door/airlock{ name = "Kitchen Cold Room"; req_access_txt = "28" @@ -48658,7 +45747,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bVs" = ( +"bRX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -48674,7 +45763,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bVt" = ( +"bRY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -48695,7 +45784,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bVu" = ( +"bRZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -48711,7 +45800,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bVv" = ( +"bSa" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -48723,22 +45812,7 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/crew_quarters/kitchen) -"bVw" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 28 - }, -/obj/structure/reagent_dispensers/cooking_oil, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"bVx" = ( +"bSc" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -48748,26 +45822,22 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard) -"bVy" = ( +"bSd" = ( /obj/machinery/portable_atmospherics/canister, /turf/open/floor/plating, /area/maintenance/starboard) -"bVz" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bVA" = ( +"bSe" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/starboard) -"bVB" = ( +"bSf" = ( /obj/item/crowbar, /turf/open/floor/plating{ icon_state = "platingdmg1" }, /area/maintenance/starboard) -"bVC" = ( +"bSg" = ( /obj/structure/fireaxecabinet{ pixel_x = -32 }, @@ -48783,7 +45853,7 @@ dir = 8 }, /area/engine/atmos) -"bVD" = ( +"bSh" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, @@ -48799,7 +45869,7 @@ dir = 1 }, /area/engine/atmos) -"bVE" = ( +"bSi" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4 }, @@ -48807,7 +45877,7 @@ /obj/item/wrench, /turf/open/floor/plasteel, /area/engine/atmos) -"bVF" = ( +"bSj" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1; filter_type = "plasma"; @@ -48819,14 +45889,7 @@ /obj/structure/window/reinforced, /turf/open/floor/plasteel/purple, /area/engine/atmos) -"bVG" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bVH" = ( +"bSk" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 8; frequency = 1441; @@ -48835,7 +45898,7 @@ }, /turf/open/floor/engine/plasma, /area/engine/atmos) -"bVI" = ( +"bSl" = ( /obj/machinery/camera{ c_tag = "Atmospherics Tank - Toxins"; dir = 8; @@ -48843,18 +45906,7 @@ }, /turf/open/floor/engine/plasma, /area/engine/atmos) -"bVJ" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 11; - height = 15; - id = "whiteship_home"; - name = "SS13: Auxiliary Dock, Station-Port"; - width = 28 - }, -/turf/open/space/basic, -/area/space) -"bVK" = ( +"bSn" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -48865,7 +45917,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/port) -"bVL" = ( +"bSo" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48874,17 +45926,16 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bVM" = ( +"bSp" = ( /obj/structure/cable/yellow{ - icon_state = "4-8" + icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 + dir = 9 }, -/obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port) -"bVN" = ( +"bSq" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48894,7 +45945,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/port) -"bVO" = ( +"bSr" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48903,7 +45954,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bVP" = ( +"bSs" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48915,7 +45966,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bVQ" = ( +"bSt" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48926,20 +45977,7 @@ icon_state = "platingdmg1" }, /area/maintenance/port) -"bVR" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port) -"bVS" = ( +"bSu" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48950,7 +45988,7 @@ icon_state = "panelscorched" }, /area/maintenance/port) -"bVT" = ( +"bSv" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -48962,50 +46000,48 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bVU" = ( -/obj/item/storage/box, +"bSw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, /turf/open/floor/plating, /area/maintenance/port) -"bVV" = ( +"bSx" = ( /obj/machinery/newscaster{ pixel_x = -32 }, -/obj/effect/landmark/event_spawn, /turf/open/floor/wood, /area/library) -"bVW" = ( +"bSy" = ( /obj/structure/chair/office/dark{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/wood, /area/library) -"bVX" = ( +"bSz" = ( /obj/structure/table/wood, /obj/item/folder, /obj/item/folder, /obj/item/pen, /turf/open/floor/wood, /area/library) -"bVY" = ( +"bSA" = ( /obj/structure/table/wood, /obj/item/storage/crayons, /turf/open/floor/wood, /area/library) -"bVZ" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/wood, -/area/library) -"bWa" = ( +"bSB" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/wood, /area/library) -"bWb" = ( +"bSC" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /obj/item/device/radio/intercom{ @@ -49015,7 +46051,7 @@ }, /turf/open/floor/wood, /area/library) -"bWc" = ( +"bSD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/firealarm{ dir = 8; @@ -49025,7 +46061,7 @@ dir = 8 }, /area/hallway/primary/central) -"bWd" = ( +"bSE" = ( /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters{ id = "evashutter"; @@ -49034,7 +46070,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bWe" = ( +"bSF" = ( /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters{ id = "evashutter"; @@ -49049,7 +46085,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/ai_monitored/storage/eva) -"bWf" = ( +"bSG" = ( /obj/machinery/door/poddoor/shutters{ id = "teleshutter"; name = "Teleporter Access Shutter" @@ -49057,7 +46093,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/teleporter) -"bWg" = ( +"bSH" = ( /obj/machinery/door/poddoor/shutters{ id = "teleshutter"; name = "Teleporter Access Shutter" @@ -49072,7 +46108,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/teleporter) -"bWh" = ( +"bSI" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/machinery/door/poddoor/shutters/preopen{ @@ -49081,11 +46117,7 @@ }, /turf/open/floor/plating, /area/bridge/showroom/corporate) -"bWi" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/bridge/showroom/corporate) -"bWj" = ( +"bSK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -49094,7 +46126,7 @@ }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bWk" = ( +"bSM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ @@ -49103,7 +46135,7 @@ }, /turf/open/floor/wood, /area/bridge/showroom/corporate) -"bWl" = ( +"bSO" = ( /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/shutters{ id = "gateshutter"; @@ -49112,7 +46144,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/gateway) -"bWm" = ( +"bSP" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -49123,25 +46155,25 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/central) -"bWn" = ( +"bSQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/neutral/corner{ dir = 1 }, /area/hallway/primary/central) -"bWo" = ( +"bSR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/green/corner{ dir = 2 }, /area/hallway/primary/central) -"bWp" = ( +"bSS" = ( /turf/closed/wall, /area/hallway/primary/central) -"bWq" = ( +"bST" = ( /turf/closed/wall, /area/hydroponics) -"bWr" = ( +"bSU" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "kitchenhydro"; name = "Service Shutter" @@ -49155,11 +46187,7 @@ dir = 5 }, /area/hydroponics) -"bWs" = ( -/obj/structure/sign/poster/official/random, -/turf/closed/wall, -/area/hydroponics) -"bWt" = ( +"bSV" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/eastleft{ dir = 1; @@ -49179,11 +46207,11 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hydroponics) -"bWu" = ( +"bSW" = ( /obj/machinery/smartfridge, /turf/closed/wall, /area/hydroponics) -"bWv" = ( +"bSX" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -49192,7 +46220,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/kitchen) -"bWw" = ( +"bSY" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -49208,7 +46236,7 @@ }, /turf/open/floor/plasteel, /area/crew_quarters/kitchen) -"bWx" = ( +"bSZ" = ( /obj/machinery/door/airlock/maintenance{ name = "Kitchen Maintenance"; req_access_txt = "28" @@ -49221,7 +46249,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bWy" = ( +"bTa" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -49237,7 +46265,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bWz" = ( +"bTb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -49249,7 +46277,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bWA" = ( +"bTc" = ( /obj/machinery/power/apc{ dir = 1; name = "Starboard Maintenance APC"; @@ -49268,67 +46296,49 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bWB" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, +"bTd" = ( +/obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard) -"bWC" = ( +"bTe" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, /obj/structure/cable/yellow{ icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 }, /turf/open/floor/plating, /area/maintenance/starboard) -"bWD" = ( +"bTf" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 2 }, /obj/machinery/meter, /turf/open/floor/plating, /area/maintenance/starboard) -"bWE" = ( +"bTg" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 }, /turf/open/floor/plating, /area/maintenance/starboard) -"bWF" = ( +"bTh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/starboard) -"bWG" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bWH" = ( +"bTi" = ( /obj/structure/closet/wardrobe/atmospherics_yellow, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"bWI" = ( -/turf/open/floor/plasteel/caution{ - dir = 8 - }, -/area/engine/atmos) -"bWJ" = ( +"bTj" = ( /obj/machinery/requests_console{ department = "Atmospherics"; departmentType = 4; @@ -49345,7 +46355,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bWK" = ( +"bTk" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; name = "Port to Filter"; @@ -49361,32 +46371,22 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bWL" = ( +"bTl" = ( /obj/machinery/atmospherics/components/unary/thermomachine/heater{ dir = 8 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bWM" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/door/window/northleft{ - dir = 8; - icon_state = "left"; - name = "Inner Pipe Access"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) -"bWN" = ( +"bTm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/lattice/catwalk, /obj/structure/window/reinforced, /turf/open/space, /area/aisat) -"bWO" = ( +"bTn" = ( /turf/closed/wall, /area/maintenance/solars/port/aft) -"bWP" = ( +"bTo" = ( /obj/machinery/door/airlock/engineering{ name = "Port Quarter Solar Access"; req_access_txt = "10" @@ -49397,11 +46397,17 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"bWQ" = ( +"bTp" = ( /obj/structure/sign/warning/electricshock, /turf/closed/wall, /area/maintenance/solars/port/aft) -"bWR" = ( +"bTq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"bTr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; @@ -49409,32 +46415,26 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bWS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, +"bTs" = ( +/turf/closed/wall, +/area/maintenance/aft) +"bTt" = ( +/obj/item/storage/box, /turf/open/floor/plating, /area/maintenance/port) -"bWT" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"bWU" = ( +"bTv" = ( /obj/structure/rack, /obj/item/paper, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port) -"bWV" = ( +"bTw" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/wood, /area/library) -"bWW" = ( +"bTx" = ( /obj/structure/chair/office/dark{ dir = 4 }, @@ -49447,7 +46447,7 @@ }, /turf/open/floor/wood, /area/library) -"bWX" = ( +"bTy" = ( /obj/machinery/firealarm{ dir = 1; pixel_y = -24 @@ -49459,12 +46459,12 @@ /obj/structure/table/wood, /turf/open/floor/wood, /area/library) -"bWY" = ( +"bTz" = ( /obj/structure/table/wood, /obj/machinery/light, /turf/open/floor/wood, /area/library) -"bWZ" = ( +"bTA" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -49476,7 +46476,7 @@ }, /turf/open/floor/wood, /area/library) -"bXa" = ( +"bTB" = ( /obj/machinery/door/airlock/maintenance{ name = "Library Maintenance"; req_access_txt = "0"; @@ -49490,7 +46490,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bXb" = ( +"bTC" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -49502,14 +46502,14 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bXc" = ( +"bTD" = ( /obj/machinery/vending/snack/random, /obj/machinery/newscaster{ pixel_x = -30 }, /turf/open/floor/plasteel/dark, /area/hallway/primary/central) -"bXd" = ( +"bTE" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -49520,7 +46520,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bXe" = ( +"bTF" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -49528,7 +46528,7 @@ dir = 4 }, /area/hallway/primary/central) -"bXf" = ( +"bTG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49536,7 +46536,7 @@ dir = 4 }, /area/hallway/primary/central) -"bXg" = ( +"bTH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49549,7 +46549,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bXh" = ( +"bTI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49558,7 +46558,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bXi" = ( +"bTJ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49567,7 +46567,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bXj" = ( +"bTK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49576,7 +46576,7 @@ dir = 4 }, /area/hallway/primary/central) -"bXk" = ( +"bTL" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49588,7 +46588,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bXl" = ( +"bTM" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49603,7 +46603,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bXm" = ( +"bTN" = ( /obj/machinery/light{ dir = 1 }, @@ -49617,7 +46617,7 @@ dir = 4 }, /area/hallway/primary/central) -"bXn" = ( +"bTO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49626,18 +46626,7 @@ dir = 1 }, /area/hallway/primary/central) -"bXo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/neutral/side{ - dir = 1 - }, -/area/hallway/primary/central) -"bXp" = ( +"bTP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49645,7 +46634,7 @@ dir = 1 }, /area/hallway/primary/central) -"bXq" = ( +"bTQ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -49653,7 +46642,7 @@ dir = 1 }, /area/hallway/primary/central) -"bXr" = ( +"bTR" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, @@ -49661,7 +46650,7 @@ dir = 1 }, /area/hallway/primary/central) -"bXs" = ( +"bTS" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49669,7 +46658,7 @@ dir = 1 }, /area/hallway/primary/central) -"bXt" = ( +"bTT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49683,7 +46672,7 @@ dir = 1 }, /area/hallway/primary/central) -"bXu" = ( +"bTU" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -49700,7 +46689,7 @@ dir = 1 }, /area/hallway/primary/central) -"bXv" = ( +"bTV" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -49713,7 +46702,7 @@ dir = 1 }, /area/hallway/primary/central) -"bXw" = ( +"bTW" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49726,7 +46715,7 @@ dir = 1 }, /area/hallway/primary/central) -"bXx" = ( +"bTX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49740,7 +46729,7 @@ dir = 1 }, /area/hallway/primary/central) -"bXy" = ( +"bTY" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49756,7 +46745,13 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bXz" = ( +"bTZ" = ( +/obj/structure/bookcase{ + name = "bookcase" + }, +/turf/open/floor/wood, +/area/bridge/showroom/corporate) +"bUa" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49768,7 +46763,7 @@ dir = 1 }, /area/hallway/primary/central) -"bXA" = ( +"bUb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -49776,7 +46771,7 @@ dir = 1 }, /area/hallway/primary/central) -"bXB" = ( +"bUc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/sign/departments/botany{ pixel_x = 32; @@ -49786,7 +46781,7 @@ dir = 4 }, /area/hallway/primary/central) -"bXC" = ( +"bUd" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -2; @@ -49795,11 +46790,11 @@ /obj/item/pen, /turf/open/floor/plasteel/green, /area/hallway/primary/central) -"bXD" = ( +"bUe" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/hydroponics) -"bXE" = ( +"bUf" = ( /obj/machinery/vending/hydroseeds{ slogan_delay = 700 }, @@ -49811,7 +46806,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics) -"bXF" = ( +"bUg" = ( /obj/machinery/vending/hydronutrients, /obj/machinery/light{ dir = 1 @@ -49819,11 +46814,11 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics) -"bXG" = ( +"bUh" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics) -"bXH" = ( +"bUi" = ( /obj/item/storage/box/syringes, /obj/item/storage/box/beakers{ pixel_x = 2; @@ -49833,18 +46828,18 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics) -"bXI" = ( +"bUj" = ( /obj/machinery/reagentgrinder, /obj/structure/table/glass, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics) -"bXJ" = ( +"bUk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hydroponics) -"bXK" = ( +"bUm" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/chem_master/condimaster{ desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; @@ -49853,7 +46848,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"bXL" = ( +"bUn" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/reagent_dispensers/watertank/high, /obj/item/reagent_containers/glass/bucket, @@ -49862,7 +46857,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"bXM" = ( +"bUo" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/window/reinforced{ dir = 4 @@ -49871,7 +46866,7 @@ /obj/item/reagent_containers/glass/bucket, /turf/open/floor/plasteel, /area/hydroponics) -"bXN" = ( +"bUp" = ( /obj/structure/closet{ name = "spare parts locker" }, @@ -49887,7 +46882,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/crew_quarters/kitchen) -"bXO" = ( +"bUq" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, @@ -49902,7 +46897,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/crew_quarters/kitchen) -"bXP" = ( +"bUr" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; dir = 8; @@ -49925,7 +46920,7 @@ dir = 1 }, /area/crew_quarters/kitchen) -"bXQ" = ( +"bUs" = ( /obj/structure/disposalpipe/sorting/mail{ dir = 2; sortType = 20 @@ -49942,7 +46937,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bXR" = ( +"bUt" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -49957,7 +46952,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bXS" = ( +"bUu" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -49972,7 +46967,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"bXT" = ( +"bUv" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -49986,54 +46981,37 @@ icon_state = "panelscorched" }, /area/maintenance/starboard) -"bXU" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bXV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bXW" = ( +"bUw" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bUx" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard) -"bXX" = ( +"bUy" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 }, /obj/machinery/portable_atmospherics/canister, /turf/open/floor/plating, /area/maintenance/starboard) -"bXY" = ( +"bUz" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"bXZ" = ( +"bUA" = ( /obj/machinery/pipedispenser, /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bYa" = ( +"bUB" = ( /obj/machinery/light{ dir = 1 }, @@ -50045,7 +47023,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/engine/atmos) -"bYb" = ( +"bUC" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -50058,7 +47036,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bYc" = ( +"bUD" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; name = "Port to Filter"; @@ -50066,25 +47044,25 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bYd" = ( +"bUE" = ( /obj/item/cigbutt, /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bYe" = ( +"bUF" = ( /obj/machinery/atmospherics/components/unary/thermomachine/heater{ dir = 4; on = 1 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bYf" = ( +"bUG" = ( /obj/machinery/atmospherics/pipe/manifold4w/yellow/visible, /turf/open/floor/plasteel, /area/engine/atmos) -"bYg" = ( +"bUH" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; name = "CO2 to Pure"; @@ -50100,7 +47078,7 @@ }, /turf/open/floor/plasteel/vault, /area/engine/atmos) -"bYh" = ( +"bUI" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 8; frequency = 1441; @@ -50109,47 +47087,28 @@ }, /turf/open/floor/engine/co2, /area/engine/atmos) -"bYi" = ( +"bUJ" = ( /turf/open/floor/engine/co2, /area/engine/atmos) -"bYj" = ( +"bUK" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/aisat) -"bYk" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bYl" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Aft"; - dir = 2; - network = list("MiniSat") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bYm" = ( +"bUL" = ( +/obj/machinery/telecomms/server/presets/security, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"bUM" = ( /obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/aisat) -"bYn" = ( +"bUN" = ( /obj/machinery/power/apc{ dir = 8; name = "Port Quarter Solar APC"; @@ -50164,7 +47123,7 @@ icon_state = "platingdmg1" }, /area/maintenance/solars/port/aft) -"bYo" = ( +"bUO" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50177,14 +47136,14 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"bYp" = ( +"bUP" = ( /obj/structure/cable/yellow{ icon_state = "0-8" }, /obj/machinery/power/smes, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"bYq" = ( +"bUQ" = ( /obj/item/cigbutt, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 @@ -50194,7 +47153,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bYr" = ( +"bUR" = ( /obj/structure/closet, /obj/item/storage/box/donkpockets, /obj/effect/spawner/lootdrop/maintenance{ @@ -50203,7 +47162,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bYs" = ( +"bUS" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "0"; req_one_access_txt = "12;5;39;25;28" @@ -50214,7 +47173,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bYt" = ( +"bUT" = ( /obj/structure/rack, /obj/item/weldingtool, /obj/item/screwdriver{ @@ -50223,23 +47182,23 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"bYu" = ( +"bUU" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bYv" = ( +"bUV" = ( /obj/machinery/recharge_station, /turf/open/floor/plating, /area/maintenance/port/aft) -"bYw" = ( +"bUW" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bYx" = ( +"bUX" = ( /obj/structure/rack, /obj/item/stack/cable_coil{ pixel_x = -1; @@ -50250,19 +47209,12 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"bYy" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port) -"bYz" = ( +"bUY" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /turf/open/floor/plasteel/dark, /area/hallway/primary/central) -"bYA" = ( +"bUZ" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -50275,7 +47227,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYB" = ( +"bVa" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50284,7 +47236,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYC" = ( +"bVb" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50293,7 +47245,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYD" = ( +"bVc" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50302,7 +47254,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYE" = ( +"bVd" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50312,7 +47264,7 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYF" = ( +"bVe" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50322,7 +47274,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYG" = ( +"bVf" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50331,7 +47283,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYH" = ( +"bVg" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50344,7 +47296,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYI" = ( +"bVh" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -50356,7 +47308,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYJ" = ( +"bVi" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50370,7 +47322,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYK" = ( +"bVj" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50379,7 +47331,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYL" = ( +"bVk" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50388,7 +47340,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYM" = ( +"bVl" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50401,7 +47353,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYN" = ( +"bVm" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50410,7 +47362,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYO" = ( +"bVn" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50420,7 +47372,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYP" = ( +"bVo" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -50436,7 +47388,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bYQ" = ( +"bVp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "2-8" @@ -50445,10 +47397,10 @@ dir = 4 }, /area/hallway/primary/central) -"bYR" = ( +"bVq" = ( /turf/open/floor/plasteel/green, /area/hallway/primary/central) -"bYS" = ( +"bVr" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, /obj/machinery/door/window/westleft{ @@ -50461,22 +47413,22 @@ dir = 4 }, /area/hydroponics) -"bYT" = ( +"bVs" = ( /turf/open/floor/plasteel/green/side{ dir = 9 }, /area/hydroponics) -"bYU" = ( +"bVt" = ( /turf/open/floor/plasteel/green/side{ dir = 5 }, /area/hydroponics) -"bYV" = ( +"bVu" = ( /turf/open/floor/plasteel/green/side{ dir = 1 }, /area/hydroponics) -"bYW" = ( +"bVv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -50484,7 +47436,7 @@ dir = 5 }, /area/hydroponics) -"bYX" = ( +"bVw" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -50492,7 +47444,7 @@ dir = 9 }, /area/hydroponics) -"bYY" = ( +"bVx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -50500,7 +47452,7 @@ dir = 1 }, /area/hydroponics) -"bYZ" = ( +"bVy" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 @@ -50512,12 +47464,12 @@ dir = 2 }, /area/hydroponics) -"bZa" = ( +"bVz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, /turf/closed/wall, /area/hallway/secondary/service) -"bZb" = ( +"bVA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/airlock{ name = "Service Hall"; @@ -50529,10 +47481,7 @@ }, /turf/open/floor/plating, /area/hallway/secondary/service) -"bZc" = ( -/turf/closed/wall, -/area/hallway/secondary/service) -"bZd" = ( +"bVB" = ( /obj/structure/rack, /obj/item/extinguisher, /obj/item/storage/belt/utility, @@ -50541,44 +47490,17 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/starboard) -"bZe" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bZf" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bZg" = ( +"bVC" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/maintenance/starboard) -"bZh" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/storage/box/lights/mixed, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bZi" = ( +"bVE" = ( /obj/structure/closet/crate, /obj/item/storage/belt/utility, /obj/item/stack/cable_coil/random, /turf/open/floor/plating, /area/maintenance/starboard) -"bZj" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bZk" = ( +"bVF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 6 }, @@ -50609,7 +47531,7 @@ dir = 9 }, /area/engine/atmos) -"bZl" = ( +"bVG" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 1 }, @@ -50617,7 +47539,7 @@ dir = 1 }, /area/engine/atmos) -"bZm" = ( +"bVH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, @@ -50626,7 +47548,7 @@ dir = 1 }, /area/engine/atmos) -"bZn" = ( +"bVI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, @@ -50634,7 +47556,7 @@ dir = 1 }, /area/engine/atmos) -"bZo" = ( +"bVJ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ dir = 2 }, @@ -50644,13 +47566,13 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bZp" = ( +"bVK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"bZq" = ( +"bVL" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 0; name = "Port to Fuel Pipe"; @@ -50658,7 +47580,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"bZr" = ( +"bVM" = ( /obj/machinery/computer/atmos_control/tank{ dir = 8; frequency = 1441; @@ -50673,34 +47595,24 @@ }, /turf/open/floor/plasteel/vault, /area/engine/atmos) -"bZs" = ( +"bVN" = ( /obj/machinery/air_sensor{ frequency = 1441; id_tag = "co2_sensor" }, /turf/open/floor/engine/co2, /area/engine/atmos) -"bZt" = ( +"bVO" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /turf/open/floor/engine/co2, /area/engine/atmos) -"bZu" = ( +"bVP" = ( /obj/machinery/light/small{ dir = 4 }, /turf/open/floor/engine/co2, /area/engine/atmos) -"bZv" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bZw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bZx" = ( +"bVQ" = ( /obj/structure/chair/stool, /obj/structure/cable{ icon_state = "2-4" @@ -50712,7 +47624,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"bZy" = ( +"bVR" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -50722,7 +47634,7 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"bZz" = ( +"bVS" = ( /obj/machinery/power/terminal{ dir = 1 }, @@ -50739,20 +47651,20 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"bZA" = ( +"bVT" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/port) -"bZB" = ( +"bVU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating{ icon_state = "panelscorched" }, /area/maintenance/port) -"bZC" = ( +"bVV" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -50762,39 +47674,28 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bZD" = ( +"bVW" = ( /turf/open/floor/plating{ icon_state = "platingdmg1" }, /area/maintenance/port/aft) -"bZE" = ( +"bVX" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bZF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bZG" = ( +"bVZ" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"bZH" = ( +"bWa" = ( /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/maintenance/port/aft) -"bZI" = ( -/obj/item/hand_labeler_refill, -/obj/structure/easel, -/turf/open/floor/plating, -/area/maintenance/port) -"bZJ" = ( +"bWb" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -50803,7 +47704,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bZK" = ( +"bWc" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50818,7 +47719,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bZL" = ( +"bWd" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50830,23 +47731,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bZM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port) -"bZN" = ( +"bWe" = ( /obj/structure/disposalpipe/sorting/mail/flip{ dir = 4; sortType = 16 @@ -50862,22 +47747,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bZO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bZP" = ( +"bWf" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50893,7 +47763,7 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"bZQ" = ( +"bWg" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50905,7 +47775,7 @@ }, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"bZR" = ( +"bWh" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -50919,7 +47789,7 @@ dir = 8 }, /area/hallway/primary/central) -"bZS" = ( +"bWi" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -50938,7 +47808,7 @@ dir = 8 }, /area/hallway/primary/central) -"bZT" = ( +"bWj" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -50946,7 +47816,7 @@ dir = 8 }, /area/hallway/primary/central) -"bZU" = ( +"bWk" = ( /obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -50955,7 +47825,7 @@ dir = 8 }, /area/hallway/primary/central) -"bZV" = ( +"bWl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -50967,7 +47837,7 @@ dir = 8 }, /area/hallway/primary/central) -"bZW" = ( +"bWm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -50978,7 +47848,7 @@ dir = 8 }, /area/hallway/primary/central) -"bZX" = ( +"bWn" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -50987,13 +47857,13 @@ dir = 8 }, /area/hallway/primary/central) -"bZY" = ( +"bWo" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bZZ" = ( +"bWp" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -51002,14 +47872,14 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"caa" = ( +"bWq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/hallway/primary/central) -"cab" = ( +"bWr" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -51018,7 +47888,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"cac" = ( +"bWs" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51027,7 +47897,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"cad" = ( +"bWt" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -51036,7 +47906,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"cae" = ( +"bWu" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -51048,7 +47918,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"caf" = ( +"bWv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51058,7 +47928,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"cag" = ( +"bWw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51067,7 +47937,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"cah" = ( +"bWx" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51076,13 +47946,13 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"cai" = ( +"bWy" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"caj" = ( +"bWz" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -51095,7 +47965,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"cak" = ( +"bWA" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51104,7 +47974,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"cal" = ( +"bWB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51115,7 +47985,7 @@ dir = 2 }, /area/hallway/primary/central) -"cam" = ( +"bWC" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51127,7 +47997,7 @@ dir = 2 }, /area/hallway/primary/central) -"can" = ( +"bWD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51138,7 +48008,7 @@ dir = 2 }, /area/hallway/primary/central) -"cao" = ( +"bWE" = ( /obj/machinery/light, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 @@ -51155,7 +48025,7 @@ dir = 2 }, /area/hallway/primary/central) -"cap" = ( +"bWF" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, @@ -51163,7 +48033,7 @@ dir = 2 }, /area/hallway/primary/central) -"caq" = ( +"bWG" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -51175,7 +48045,7 @@ dir = 2 }, /area/hallway/primary/central) -"car" = ( +"bWH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51183,7 +48053,7 @@ dir = 2 }, /area/hallway/primary/central) -"cas" = ( +"bWI" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -51194,13 +48064,13 @@ dir = 6 }, /area/hallway/primary/central) -"cat" = ( +"bWJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/green, /area/hallway/primary/central) -"cau" = ( +"bWK" = ( /obj/structure/table/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -51224,7 +48094,7 @@ dir = 4 }, /area/hydroponics) -"cav" = ( +"bWL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51236,7 +48106,7 @@ dir = 10 }, /area/hydroponics) -"caw" = ( +"bWM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51244,7 +48114,7 @@ dir = 6 }, /area/hydroponics) -"cax" = ( +"bWN" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51252,71 +48122,54 @@ dir = 8 }, /area/hydroponics) -"cay" = ( +"bWO" = ( /obj/machinery/hydroponics/constructable, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/hydroponics) -"caz" = ( +"bWP" = ( /obj/machinery/hydroponics/constructable, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/open/floor/plasteel, /area/hydroponics) -"caA" = ( +"bWQ" = ( /turf/open/floor/plasteel/green/side{ dir = 4 }, /area/hydroponics) -"caB" = ( -/obj/effect/landmark/event_spawn, +"bWR" = ( /turf/open/floor/plasteel/green/side{ dir = 8 }, /area/hydroponics) -"caC" = ( +"bWS" = ( /obj/machinery/hydroponics/constructable, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel, /area/hydroponics) -"caD" = ( +"bWT" = ( /obj/machinery/hydroponics/constructable, /turf/open/floor/plasteel, /area/hydroponics) -"caE" = ( +"bWU" = ( /obj/machinery/seed_extractor, /obj/effect/turf_decal/stripes/line{ dir = 9 }, /turf/open/floor/plasteel, /area/hydroponics) -"caF" = ( +"bWV" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, /obj/structure/closet/wardrobe/botanist, /turf/open/floor/plasteel/hydrofloor, /area/hydroponics) -"caG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/firealarm{ - pixel_y = 29 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/obj/structure/closet/crate/hydroponics, -/obj/item/shovel/spade, -/obj/item/wrench, -/obj/item/reagent_containers/glass/bucket, -/obj/item/cultivator, -/obj/item/wirecutters, -/turf/open/floor/plasteel/hydrofloor, -/area/hydroponics) -"caH" = ( +"bWX" = ( /obj/structure/disposalpipe/segment, /obj/structure/table, /obj/item/storage/bag/plants, @@ -51329,32 +48182,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/service) -"caI" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"caJ" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/hallway/secondary/service"; - dir = 1; - name = "Service Hall APC"; - pixel_y = 25 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"caK" = ( +"bWY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, @@ -51366,7 +48194,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"caL" = ( +"bWZ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -51380,7 +48208,7 @@ icon_state = "platingdmg2" }, /area/maintenance/starboard) -"caM" = ( +"bXa" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -51392,7 +48220,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"caN" = ( +"bXb" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -51407,7 +48235,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"caO" = ( +"bXc" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -51417,7 +48245,7 @@ /obj/machinery/atmospherics/pipe/manifold/supply/hidden, /turf/open/floor/plating, /area/maintenance/starboard) -"caP" = ( +"bXd" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -51432,7 +48260,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"caQ" = ( +"bXe" = ( /obj/machinery/door/airlock/maintenance{ name = "Atmospherics Maintenance"; req_access_txt = "24" @@ -51448,7 +48276,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"caR" = ( +"bXf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -51463,7 +48291,7 @@ dir = 8 }, /area/engine/atmos) -"caS" = ( +"bXg" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -51478,7 +48306,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"caT" = ( +"bXh" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -51492,7 +48320,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"caU" = ( +"bXi" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -51501,7 +48329,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"caV" = ( +"bXj" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -51510,14 +48338,14 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"caW" = ( +"bXk" = ( /obj/effect/landmark/start/atmospheric_technician, /obj/machinery/atmospherics/pipe/simple/dark/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"caX" = ( +"bXl" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -51526,27 +48354,20 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"caY" = ( +"bXm" = ( /obj/machinery/atmospherics/pipe/simple/dark/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"caZ" = ( -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cba" = ( +"bXn" = ( /obj/machinery/atmospherics/pipe/manifold/dark/visible, /obj/machinery/meter{ color = "" }, /turf/open/floor/plasteel, /area/engine/atmos) -"cbb" = ( +"bXo" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 8; name = "Pure to Fuel Pipe"; @@ -51554,13 +48375,13 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"cbc" = ( +"bXp" = ( /obj/machinery/atmospherics/pipe/manifold/yellow/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"cbd" = ( +"bXq" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 1; filter_type = "co2"; @@ -51572,7 +48393,7 @@ /obj/structure/window/reinforced, /turf/open/floor/plasteel/vault, /area/engine/atmos) -"cbe" = ( +"bXr" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 8; frequency = 1441; @@ -51581,7 +48402,7 @@ }, /turf/open/floor/engine/co2, /area/engine/atmos) -"cbf" = ( +"bXs" = ( /obj/machinery/camera{ c_tag = "Atmospherics Tank - CO2"; dir = 8; @@ -51589,19 +48410,7 @@ }, /turf/open/floor/engine/co2, /area/engine/atmos) -"cbg" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/aisat) -"cbh" = ( -/obj/structure/window/reinforced, -/obj/machinery/holopad, -/turf/open/floor/plasteel/dark, -/area/aisat) -"cbi" = ( +"bXt" = ( /obj/machinery/power/solar_control{ dir = 1; id = "aftport"; @@ -51614,7 +48423,7 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"cbj" = ( +"bXu" = ( /obj/structure/cable{ icon_state = "2-8" }, @@ -51623,30 +48432,24 @@ }, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"cbk" = ( +"bXv" = ( /obj/structure/sign/warning/vacuum/external{ pixel_x = 32 }, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"cbl" = ( -/obj/structure/rack, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"cbm" = ( +"bXx" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/port) -"cbn" = ( +"bXy" = ( /obj/structure/closet, /obj/item/device/flashlight, /turf/open/floor/plating, /area/maintenance/port/aft) -"cbo" = ( +"bXz" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -51656,22 +48459,22 @@ icon_state = "panelscorched" }, /area/maintenance/port/aft) -"cbp" = ( +"bXA" = ( /obj/structure/table, /obj/item/device/flashlight/lamp, /turf/open/floor/plating, /area/maintenance/port/aft) -"cbq" = ( +"bXB" = ( /obj/structure/chair/stool, /turf/open/floor/plating, /area/maintenance/port/aft) -"cbr" = ( +"bXC" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cbs" = ( +"bXD" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -51679,15 +48482,15 @@ icon_state = "platingdmg2" }, /area/maintenance/port/aft) -"cbt" = ( +"bXE" = ( /turf/open/floor/plating, /area/maintenance/port/aft) -"cbu" = ( +"bXF" = ( /obj/structure/girder, /obj/structure/grille, /turf/open/floor/plating, /area/maintenance/port/aft) -"cbv" = ( +"bXG" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -51698,33 +48501,33 @@ }, /turf/open/floor/plating, /area/maintenance/port) -"cbw" = ( +"bXH" = ( /obj/structure/closet/crate, /obj/item/coin/silver, /obj/item/device/flashlight, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port) -"cbx" = ( +"bXI" = ( /obj/structure/closet, /obj/item/clothing/neck/stethoscope, /obj/item/hemostat, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port) -"cby" = ( +"bXJ" = ( /obj/item/storage/box/lights/mixed, /turf/open/floor/plating{ icon_state = "platingdmg3" }, /area/maintenance/port) -"cbz" = ( +"bXK" = ( /turf/closed/wall, /area/medical/storage) -"cbA" = ( +"bXL" = ( /turf/closed/wall, /area/security/checkpoint/medical) -"cbB" = ( +"bXM" = ( /obj/structure/extinguisher_cabinet{ pixel_x = -27 }, @@ -51735,12 +48538,12 @@ dir = 8 }, /area/hallway/primary/central) -"cbC" = ( +"bXN" = ( /turf/open/floor/plasteel/blue/corner{ dir = 8 }, /area/hallway/primary/central) -"cbD" = ( +"bXO" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -51749,13 +48552,13 @@ dir = 8 }, /area/hallway/primary/central) -"cbE" = ( +"bXP" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/blue/corner{ dir = 8 }, /area/hallway/primary/central) -"cbF" = ( +"bXQ" = ( /obj/machinery/camera{ c_tag = "Central Primary Hallway - Aft-Port"; dir = 1; @@ -51765,36 +48568,36 @@ dir = 8 }, /area/hallway/primary/central) -"cbG" = ( +"bXR" = ( /obj/machinery/light/small, /turf/open/floor/plasteel/blue/corner{ dir = 8 }, /area/hallway/primary/central) -"cbH" = ( +"bXS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/blue/corner{ dir = 8 }, /area/hallway/primary/central) -"cbI" = ( +"bXT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/purple/corner{ dir = 2 }, /area/hallway/primary/central) -"cbJ" = ( +"bXU" = ( /obj/machinery/light/small, /turf/open/floor/plasteel/purple/corner{ dir = 2 }, /area/hallway/primary/central) -"cbK" = ( +"bXV" = ( /turf/open/floor/plasteel/purple/corner{ dir = 2 }, /area/hallway/primary/central) -"cbL" = ( +"bXW" = ( /obj/machinery/camera{ c_tag = "Central Primary Hallway - Aft-Starboard"; dir = 1; @@ -51804,13 +48607,13 @@ dir = 2 }, /area/hallway/primary/central) -"cbM" = ( +"bXX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/purple/corner{ dir = 2 }, /area/hallway/primary/central) -"cbN" = ( +"bXY" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -51820,7 +48623,7 @@ dir = 2 }, /area/hallway/primary/central) -"cbO" = ( +"bXZ" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -51832,7 +48635,7 @@ dir = 2 }, /area/hallway/primary/central) -"cbP" = ( +"bYa" = ( /obj/structure/disposalpipe/trunk{ dir = 1 }, @@ -51842,7 +48645,7 @@ }, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"cbQ" = ( +"bYb" = ( /obj/machinery/door/airlock/maintenance{ req_access_txt = "0"; req_one_access_txt = "12;35;47" @@ -51850,11 +48653,11 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cbR" = ( +"bYc" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/hallway/primary/central) -"cbS" = ( +"bYd" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -51864,7 +48667,7 @@ }, /turf/open/floor/plasteel/hydrofloor, /area/hallway/primary/central) -"cbT" = ( +"bYe" = ( /obj/machinery/camera/autoname{ dir = 4; network = list("SS13") @@ -51880,7 +48683,7 @@ /obj/structure/table/glass, /turf/open/floor/plasteel/green, /area/hydroponics) -"cbU" = ( +"bYf" = ( /obj/item/stack/packageWrap, /obj/item/stack/packageWrap, /obj/item/stack/packageWrap, @@ -51890,38 +48693,33 @@ /obj/structure/table/glass, /turf/open/floor/plasteel/green, /area/hydroponics) -"cbV" = ( -/turf/open/floor/plasteel/green/side{ - dir = 8 - }, -/area/hydroponics) -"cbW" = ( +"bYg" = ( /obj/effect/landmark/start/botanist, /obj/machinery/holopad, /turf/open/floor/plasteel, /area/hydroponics) -"cbX" = ( +"bYh" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel, /area/hydroponics) -"cbY" = ( +"bYi" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, /turf/open/floor/plasteel, /area/hydroponics) -"cbZ" = ( +"bYj" = ( /turf/open/floor/plasteel, /area/hydroponics) -"cca" = ( +"bYk" = ( /obj/effect/landmark/start/botanist, /turf/open/floor/plasteel/green/side{ dir = 4 }, /area/hydroponics) -"ccb" = ( +"bYl" = ( /obj/item/seeds/wheat, /obj/item/seeds/sugarcane, /obj/item/seeds/potato, @@ -51948,11 +48746,11 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"ccc" = ( +"bYm" = ( /obj/structure/closet/secure_closet/hydroponics, /turf/open/floor/plasteel/hydrofloor, /area/hydroponics) -"ccd" = ( +"bYn" = ( /obj/machinery/light/small{ dir = 4 }, @@ -51964,7 +48762,7 @@ /obj/effect/landmark/start/botanist, /turf/open/floor/plasteel/hydrofloor, /area/hydroponics) -"cce" = ( +"bYo" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, @@ -51975,7 +48773,7 @@ /obj/item/kitchen/rollingpin, /turf/open/floor/plasteel, /area/hallway/secondary/service) -"ccf" = ( +"bYp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -51985,54 +48783,22 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel, /area/hallway/secondary/service) -"ccg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 +"bYq" = ( +/obj/structure/rack, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/intercom{ + dir = 0; + name = "Station Intercom (General)"; + pixel_x = 27 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/plasteel/vault{ + dir = 1 }, -/obj/machinery/rnd/protolathe/department/service, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"cch" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/hallway/secondary/service) -"cci" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ccj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cck" = ( +/area/teleporter) +"bYr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -52044,20 +48810,20 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"ccl" = ( +"bYs" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, /obj/effect/landmark/event_spawn, /turf/open/floor/plating, /area/maintenance/starboard) -"ccm" = ( +"bYt" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/plating, /area/maintenance/starboard) -"ccn" = ( +"bYu" = ( /obj/item/cigbutt, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ @@ -52066,12 +48832,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard) -"cco" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"ccp" = ( +"bYv" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/machinery/light{ dir = 8 @@ -52089,17 +48850,17 @@ dir = 8 }, /area/engine/atmos) -"ccq" = ( +"bYw" = ( /obj/machinery/atmospherics/pipe/simple/dark/visible, /turf/open/floor/plasteel, /area/engine/atmos) -"ccr" = ( +"bYx" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 6 }, /turf/open/floor/plasteel, /area/engine/atmos) -"ccs" = ( +"bYy" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; name = "N2 to Airmix"; @@ -52107,7 +48868,7 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"cct" = ( +"bYz" = ( /obj/machinery/atmospherics/components/trinary/mixer{ dir = 4; node1_concentration = 0.8; @@ -52117,28 +48878,24 @@ }, /turf/open/floor/plasteel, /area/engine/atmos) -"ccu" = ( +"bYA" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 10 }, /turf/open/floor/plasteel, /area/engine/atmos) -"ccv" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/engine/atmos) -"ccw" = ( +"bYB" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/machinery/light{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"ccx" = ( +"bYC" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"ccy" = ( +"bYD" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -52147,25 +48904,17 @@ req_access = null; req_access_txt = "10; 13" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/maintenance/solars/port/aft) -"ccz" = ( +"bYE" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plating, /area/maintenance/port/aft) -"ccA" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/poster/random_contraband, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ccB" = ( +"bYG" = ( /obj/structure/table, /obj/item/folder/white{ pixel_x = 4; @@ -52182,20 +48931,20 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"ccC" = ( +"bYH" = ( /obj/structure/light_construct, /turf/open/floor/plating{ icon_state = "panelscorched" }, /area/maintenance/port/aft) -"ccD" = ( +"bYI" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"ccE" = ( +"bYJ" = ( /obj/structure/table, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high{ @@ -52204,34 +48953,34 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"ccF" = ( +"bYK" = ( /obj/machinery/mech_bay_recharge_port, /obj/structure/cable/yellow{ icon_state = "0-2" }, /turf/open/floor/plating, /area/maintenance/port/aft) -"ccG" = ( +"bYL" = ( /turf/open/floor/mech_bay_recharge_floor, /area/maintenance/port/aft) -"ccH" = ( +"bYM" = ( /obj/machinery/computer/mech_bay_power_console, /obj/structure/cable/yellow{ icon_state = "0-2" }, /turf/open/floor/circuit, /area/maintenance/port/aft) -"ccI" = ( +"bYN" = ( /obj/machinery/space_heater, /turf/open/floor/plating{ icon_state = "platingdmg3" }, /area/maintenance/port/aft) -"ccJ" = ( +"bYO" = ( /obj/item/vending_refill/cola, /turf/open/floor/plating, /area/maintenance/port/aft) -"ccK" = ( +"bYP" = ( /obj/structure/closet/crate{ icon_state = "crateopen" }, @@ -52239,7 +48988,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"ccL" = ( +"bYQ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -52251,13 +49000,13 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"ccM" = ( +"bYR" = ( /obj/machinery/vending/medical, /turf/open/floor/plasteel/whiteblue/side{ dir = 9 }, /area/medical/storage) -"ccN" = ( +"bYS" = ( /obj/structure/noticeboard{ pixel_y = 32 }, @@ -52282,7 +49031,7 @@ dir = 1 }, /area/medical/storage) -"ccO" = ( +"bYT" = ( /obj/structure/closet/secure_closet/medical3, /obj/item/screwdriver{ pixel_y = 6 @@ -52294,7 +49043,7 @@ dir = 1 }, /area/medical/storage) -"ccP" = ( +"bYU" = ( /obj/structure/closet/secure_closet/medical3, /obj/machinery/light{ dir = 1 @@ -52309,7 +49058,7 @@ dir = 1 }, /area/medical/storage) -"ccQ" = ( +"bYV" = ( /obj/item/device/radio/intercom{ broadcasting = 1; freerange = 0; @@ -52335,14 +49084,14 @@ dir = 1 }, /area/medical/storage) -"ccR" = ( +"bYW" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /turf/open/floor/plasteel/whiteblue/side{ dir = 5 }, /area/medical/storage) -"ccS" = ( +"bYX" = ( /obj/machinery/power/apc{ dir = 8; name = "Medical Security Checkpoint APC"; @@ -52360,7 +49109,7 @@ dir = 9 }, /area/security/checkpoint/medical) -"ccT" = ( +"bYY" = ( /obj/machinery/recharger{ pixel_y = 4 }, @@ -52382,7 +49131,7 @@ dir = 1 }, /area/security/checkpoint/medical) -"ccU" = ( +"bYZ" = ( /obj/item/pen, /obj/structure/table/reinforced, /obj/structure/reagent_dispensers/peppertank{ @@ -52404,15 +49153,15 @@ dir = 5 }, /area/security/checkpoint/medical) -"ccV" = ( +"bZa" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/medical/medbay/central) -"ccW" = ( +"bZb" = ( /obj/structure/sign/departments/medbay/alt, /turf/closed/wall, /area/medical/medbay/central) -"ccX" = ( +"bZc" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -52422,14 +49171,14 @@ dir = 2 }, /area/medical/medbay/central) -"ccY" = ( +"bZd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/firedoor, /turf/open/floor/plasteel/white/side{ dir = 2 }, /area/medical/medbay/central) -"ccZ" = ( +"bZe" = ( /obj/structure/sign/directions/security{ desc = "A direction sign, pointing out which way the security department is."; dir = 1; @@ -52450,7 +49199,7 @@ }, /turf/closed/wall, /area/medical/medbay/central) -"cda" = ( +"bZf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -52460,7 +49209,7 @@ dir = 8 }, /area/hallway/primary/aft) -"cdb" = ( +"bZg" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -52470,7 +49219,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/aft) -"cdc" = ( +"bZh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -52480,7 +49229,7 @@ dir = 2 }, /area/hallway/primary/aft) -"cdd" = ( +"bZi" = ( /obj/structure/sign/directions/engineering{ desc = "A direction sign, pointing out which way the medical department is."; dir = 8; @@ -52502,22 +49251,22 @@ }, /turf/closed/wall, /area/science/research) -"cde" = ( +"bZj" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/science/research) -"cdf" = ( +"bZk" = ( /obj/structure/sign/departments/science, /turf/closed/wall, /area/science/research) -"cdg" = ( +"bZl" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white/side{ dir = 2 }, /area/science/research) -"cdh" = ( +"bZm" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -52528,20 +49277,13 @@ dir = 2 }, /area/science/research) -"cdi" = ( +"bZn" = ( /turf/closed/wall, /area/science/research) -"cdj" = ( +"bZo" = ( /turf/closed/wall, /area/security/checkpoint/science/research) -"cdk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cdl" = ( +"bZq" = ( /obj/item/reagent_containers/food/snacks/grown/wheat, /obj/item/reagent_containers/food/snacks/grown/watermelon, /obj/item/reagent_containers/food/snacks/grown/citrus/orange, @@ -52552,13 +49294,13 @@ /obj/structure/table/glass, /turf/open/floor/plasteel/hydrofloor, /area/hallway/primary/central) -"cdm" = ( +"bZr" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel/hydrofloor, /area/hallway/primary/central) -"cdn" = ( +"bZs" = ( /obj/item/cultivator, /obj/item/crowbar, /obj/item/device/plant_analyzer, @@ -52566,7 +49308,7 @@ /obj/structure/table/glass, /turf/open/floor/plasteel/hydrofloor, /area/hallway/primary/central) -"cdo" = ( +"bZt" = ( /obj/structure/sink{ dir = 8; pixel_x = -12; @@ -52576,13 +49318,13 @@ dir = 9 }, /area/hydroponics) -"cdp" = ( +"bZu" = ( /obj/effect/landmark/start/botanist, /turf/open/floor/plasteel/green/side{ dir = 8 }, /area/hydroponics) -"cdq" = ( +"bZv" = ( /obj/machinery/biogenerator, /obj/machinery/light_switch{ pixel_x = 26 @@ -52592,25 +49334,21 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"cdr" = ( +"bZw" = ( /obj/structure/closet/secure_closet/hydroponics, /obj/machinery/light_switch{ pixel_x = -26 }, /turf/open/floor/plasteel/hydrofloor, /area/hydroponics) -"cds" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +"bZx" = ( +/obj/machinery/icecream_vat, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 }, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/hydrofloor, -/area/hydroponics) -"cdt" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"bZy" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/airlock{ name = "Service Hall"; @@ -52619,38 +49357,29 @@ }, /turf/open/floor/plating, /area/hallway/secondary/service) -"cdu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cdv" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"cdw" = ( +"bZz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/starboard) -"cdx" = ( +"bZA" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard) +"bZB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, /turf/open/floor/plating, /area/maintenance/starboard) -"cdy" = ( +"bZC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/maintenance/disposal/incinerator) -"cdz" = ( +"bZD" = ( /obj/machinery/door/airlock/maintenance{ name = "Incinerator Access"; req_access_txt = "12" @@ -52661,10 +49390,10 @@ }, /turf/open/floor/plating, /area/maintenance/disposal/incinerator) -"cdA" = ( +"bZE" = ( /turf/closed/wall, /area/maintenance/disposal/incinerator) -"cdB" = ( +"bZF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 5 }, @@ -52678,46 +49407,46 @@ dir = 8 }, /area/engine/atmos) -"cdC" = ( +"bZG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 10 }, /turf/open/floor/plasteel, /area/engine/atmos) -"cdD" = ( +"bZH" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; name = "N2 to Pure" }, /turf/open/floor/plasteel, /area/engine/atmos) -"cdE" = ( +"bZI" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"cdF" = ( +"bZJ" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engine/atmos) -"cdG" = ( +"bZK" = ( /obj/machinery/atmospherics/pipe/manifold/yellow/visible{ dir = 1 }, /turf/open/floor/plasteel, /area/engine/atmos) -"cdH" = ( +"bZL" = ( /obj/machinery/atmospherics/pipe/manifold/yellow/visible{ dir = 4 }, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engine/atmos) -"cdI" = ( +"bZM" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -52735,13 +49464,13 @@ dir = 4 }, /area/engine/atmos) -"cdJ" = ( +"bZN" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/plating/airless, /area/maintenance/solars/port/aft) -"cdK" = ( +"bZO" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; req_access_txt = "12" @@ -52749,16 +49478,16 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port/aft) -"cdL" = ( +"bZP" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/circuit, /area/maintenance/port/aft) -"cdM" = ( +"bZQ" = ( /turf/open/floor/circuit, /area/maintenance/port/aft) -"cdN" = ( +"bZR" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -52769,15 +49498,15 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cdO" = ( +"bZS" = ( /obj/structure/closet/firecloset, /turf/open/floor/plating, /area/maintenance/port/aft) -"cdP" = ( +"bZT" = ( /obj/machinery/space_heater, /turf/open/floor/plating, -/area/maintenance/port/aft) -"cdQ" = ( +/area/maintenance/aft) +"bZU" = ( /obj/machinery/light/small{ dir = 1 }, @@ -52785,13 +49514,13 @@ /obj/item/mop, /turf/open/floor/plating, /area/maintenance/port/aft) -"cdR" = ( +"bZV" = ( /obj/item/storage/toolbox/emergency, /obj/item/hand_labeler, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"cdS" = ( +"bZW" = ( /obj/item/cigbutt, /obj/structure/disposalpipe/segment{ dir = 6 @@ -52801,7 +49530,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cdT" = ( +"bZX" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=4"; dir = 4; @@ -52822,7 +49551,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/medical/storage) -"cdU" = ( +"bZY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -52830,20 +49559,20 @@ dir = 8 }, /area/medical/storage) -"cdV" = ( +"bZZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plasteel/white, /area/medical/storage) -"cdW" = ( +"caa" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plasteel/white, /area/medical/storage) -"cdX" = ( +"cab" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -52852,7 +49581,7 @@ }, /turf/open/floor/plasteel/white, /area/medical/storage) -"cdY" = ( +"cac" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -52866,7 +49595,7 @@ dir = 4 }, /area/medical/storage) -"cdZ" = ( +"cad" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Medbay Security Post"; @@ -52880,7 +49609,7 @@ }, /turf/open/floor/plasteel/red, /area/security/checkpoint/medical) -"cea" = ( +"cae" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -52894,10 +49623,10 @@ dir = 8 }, /area/security/checkpoint/medical) -"ceb" = ( +"caf" = ( /turf/open/floor/plasteel, /area/security/checkpoint/medical) -"cec" = ( +"cag" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -52905,14 +49634,14 @@ dir = 4 }, /area/security/checkpoint/medical) -"ced" = ( +"cah" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plating, /area/security/checkpoint/medical) -"cee" = ( +"cai" = ( /obj/structure/table, /obj/item/pen, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -52923,7 +49652,7 @@ dir = 1 }, /area/medical/medbay/central) -"cef" = ( +"caj" = ( /obj/machinery/light/small{ dir = 1 }, @@ -52949,31 +49678,31 @@ dir = 1 }, /area/medical/medbay/central) -"ceg" = ( +"cak" = ( /obj/structure/chair, /turf/open/floor/plasteel/whiteblue/side{ dir = 1 }, /area/medical/medbay/central) -"ceh" = ( +"cal" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cei" = ( +"cam" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cej" = ( +"can" = ( /obj/structure/chair, /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel/whiteblue/side{ dir = 1 }, /area/medical/medbay/central) -"cek" = ( +"cao" = ( /obj/structure/table, /obj/item/storage/box/bodybags{ pixel_x = 3; @@ -52983,7 +49712,7 @@ dir = 1 }, /area/medical/medbay/central) -"cel" = ( +"cap" = ( /obj/structure/table, /obj/item/stack/medical/gauze, /obj/item/stack/medical/ointment, @@ -52992,25 +49721,25 @@ dir = 1 }, /area/medical/medbay/central) -"cem" = ( +"caq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/blue/corner{ dir = 8 }, /area/hallway/primary/aft) -"cen" = ( +"car" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/hallway/primary/aft) -"ceo" = ( +"cas" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/purple/corner{ dir = 2 }, /area/hallway/primary/aft) -"cep" = ( +"cat" = ( /obj/structure/table, /obj/item/folder/white{ pixel_x = 4; @@ -53021,25 +49750,25 @@ dir = 1 }, /area/science/research) -"ceq" = ( +"cau" = ( /obj/structure/table, /obj/item/paper/pamphlet/gateway, /turf/open/floor/plasteel/whitepurple/side{ dir = 1 }, /area/science/research) -"cer" = ( +"cav" = ( /obj/structure/chair, /obj/effect/landmark/start/assistant, /turf/open/floor/plasteel/whitepurple/side{ dir = 1 }, /area/science/research) -"ces" = ( +"caw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white, /area/science/research) -"cet" = ( +"cax" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -53047,13 +49776,13 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/white, /area/science/research) -"ceu" = ( +"cay" = ( /obj/structure/chair, /turf/open/floor/plasteel/whitepurple/side{ dir = 1 }, /area/science/research) -"cev" = ( +"caz" = ( /obj/structure/table, /obj/item/stack/cable_coil, /obj/item/device/assembly/igniter{ @@ -53070,7 +49799,7 @@ dir = 1 }, /area/science/research) -"cew" = ( +"caA" = ( /obj/structure/table, /obj/item/stack/sheet/glass, /obj/item/electronics/airlock, @@ -53082,7 +49811,7 @@ dir = 1 }, /area/science/research) -"cex" = ( +"caB" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -2; @@ -53108,7 +49837,7 @@ dir = 1 }, /area/science/research) -"cey" = ( +"caC" = ( /obj/structure/table, /obj/machinery/recharger{ pixel_y = 4 @@ -53124,7 +49853,7 @@ dir = 9 }, /area/security/checkpoint/science/research) -"cez" = ( +"caD" = ( /obj/structure/table, /obj/machinery/requests_console{ department = "Security"; @@ -53157,7 +49886,7 @@ dir = 1 }, /area/security/checkpoint/science/research) -"ceA" = ( +"caE" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = 1; @@ -53172,16 +49901,7 @@ dir = 5 }, /area/security/checkpoint/science/research) -"ceB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"ceC" = ( +"caG" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24 @@ -53193,19 +49913,19 @@ }, /turf/open/floor/plasteel/hydrofloor, /area/hallway/primary/central) -"ceD" = ( +"caH" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, /turf/open/floor/plasteel/hydrofloor, /area/hallway/primary/central) -"ceE" = ( +"caI" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/hydrofloor, /area/hallway/primary/central) -"ceF" = ( +"caJ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical/glass{ name = "Hydroponics"; @@ -53216,7 +49936,7 @@ }, /turf/open/floor/plasteel/hydrofloor, /area/hydroponics) -"ceG" = ( +"caK" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -53227,7 +49947,7 @@ dir = 10 }, /area/hydroponics) -"ceH" = ( +"caL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -53238,7 +49958,7 @@ dir = 6 }, /area/hydroponics) -"ceI" = ( +"caM" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -53249,7 +49969,7 @@ dir = 10 }, /area/hydroponics) -"ceJ" = ( +"caN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -53260,7 +49980,7 @@ dir = 2 }, /area/hydroponics) -"ceK" = ( +"caO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -53274,7 +49994,7 @@ dir = 2 }, /area/hydroponics) -"ceL" = ( +"caP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -53288,7 +50008,7 @@ dir = 2 }, /area/hydroponics) -"ceM" = ( +"caQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -53304,11 +50024,14 @@ /obj/effect/turf_decal/bot{ dir = 2 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel{ dir = 2 }, /area/hydroponics) -"ceN" = ( +"caR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -53318,7 +50041,7 @@ }, /turf/open/floor/plasteel/hydrofloor, /area/hydroponics) -"ceO" = ( +"caS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -53330,7 +50053,7 @@ }, /turf/open/floor/plasteel/hydrofloor, /area/hydroponics) -"ceP" = ( +"caT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -53345,9 +50068,12 @@ /obj/structure/cable/yellow{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating, /area/maintenance/starboard) -"ceQ" = ( +"caU" = ( /obj/structure/disposalpipe/sorting/mail{ sortType = 21 }, @@ -53365,25 +50091,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"ceR" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ceS" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ceT" = ( +"caW" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -53392,12 +50100,12 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"ceU" = ( +"caX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/light_switch, /turf/closed/wall, /area/maintenance/disposal/incinerator) -"ceV" = ( +"caY" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -53407,7 +50115,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"ceW" = ( +"caZ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -53418,7 +50126,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"ceX" = ( +"cba" = ( /obj/machinery/power/smes{ capacity = 9e+006; charge = 10000 @@ -53428,7 +50136,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"ceY" = ( +"cbb" = ( /obj/machinery/door/window/northleft{ dir = 1; icon_state = "left"; @@ -53437,7 +50145,7 @@ }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"ceZ" = ( +"cbc" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -53449,7 +50157,7 @@ }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cfa" = ( +"cbd" = ( /obj/machinery/atmospherics/components/trinary/filter{ dir = 4; filter_type = "n2"; @@ -53458,7 +50166,7 @@ /obj/structure/window/reinforced, /turf/open/floor/plasteel/red, /area/engine/atmos) -"cfb" = ( +"cbe" = ( /obj/structure/window/reinforced, /obj/machinery/computer/atmos_control/tank{ dir = 1; @@ -53474,7 +50182,7 @@ /obj/machinery/atmospherics/pipe/simple/dark/visible, /turf/open/floor/plasteel/red, /area/engine/atmos) -"cfc" = ( +"cbf" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/components/binary/pump{ dir = 1; @@ -53486,7 +50194,7 @@ }, /turf/open/floor/plasteel/red, /area/engine/atmos) -"cfd" = ( +"cbg" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -53504,7 +50212,7 @@ }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cfe" = ( +"cbh" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/components/trinary/filter{ dir = 4; @@ -53513,7 +50221,7 @@ }, /turf/open/floor/plasteel/blue, /area/engine/atmos) -"cff" = ( +"cbi" = ( /obj/structure/window/reinforced, /obj/machinery/computer/atmos_control/tank{ dir = 1; @@ -53528,7 +50236,7 @@ }, /turf/open/floor/plasteel/blue, /area/engine/atmos) -"cfg" = ( +"cbj" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/components/binary/pump{ dir = 1; @@ -53540,7 +50248,7 @@ }, /turf/open/floor/plasteel/blue, /area/engine/atmos) -"cfh" = ( +"cbk" = ( /obj/structure/window/reinforced{ dir = 8 }, @@ -53562,7 +50270,7 @@ }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cfi" = ( +"cbl" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/machinery/atmospherics/pipe/simple/green/visible{ @@ -53572,24 +50280,7 @@ dir = 8 }, /area/engine/atmos) -"cfj" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/atmos_control/tank{ - dir = 1; - frequency = 1441; - input_tag = "air_in"; - name = "Mixed Air Supply Control"; - output_tag = "air_out"; - sensors = list("air_sensor" = "Tank") - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/engine/atmos) -"cfk" = ( +"cbn" = ( /obj/structure/window/reinforced, /obj/machinery/atmospherics/components/binary/pump{ dir = 1; @@ -53602,7 +50293,7 @@ dir = 8 }, /area/engine/atmos) -"cfl" = ( +"cbo" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -53614,7 +50305,7 @@ dir = 8 }, /area/engine/atmos) -"cfm" = ( +"cbp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -53623,7 +50314,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfn" = ( +"cbq" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -53634,7 +50325,7 @@ icon_state = "panelscorched" }, /area/maintenance/port/aft) -"cfo" = ( +"cbr" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -53643,13 +50334,13 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfp" = ( +"cbs" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfq" = ( +"cbt" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, @@ -53658,12 +50349,12 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfr" = ( +"cbu" = ( /turf/open/floor/plating{ icon_state = "panelscorched" }, -/area/maintenance/port/aft) -"cfs" = ( +/area/maintenance/aft) +"cbv" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -53675,7 +50366,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cft" = ( +"cbw" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -53683,13 +50374,13 @@ icon_state = "platingdmg3" }, /area/maintenance/port/aft) -"cfu" = ( +"cbx" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfv" = ( +"cby" = ( /obj/machinery/mecha_part_fabricator{ dir = 2; name = "counterfeit exosuit fabricator"; @@ -53697,7 +50388,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfw" = ( +"cbz" = ( /obj/structure/rack, /obj/item/stack/sheet/cardboard, /obj/item/device/radio/off, @@ -53707,7 +50398,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfx" = ( +"cbA" = ( /obj/structure/closet, /obj/item/stack/sheet/metal{ amount = 34 @@ -53716,7 +50407,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfy" = ( +"cbB" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -53727,7 +50418,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfz" = ( +"cbC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -53735,8 +50426,8 @@ dir = 4 }, /turf/open/floor/plating, -/area/maintenance/port/aft) -"cfA" = ( +/area/maintenance/aft) +"cbD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -53746,7 +50437,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfB" = ( +"cbE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -53756,7 +50447,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfC" = ( +"cbF" = ( /obj/item/reagent_containers/glass/bottle/morphine, /obj/item/trash/candy, /obj/structure/disposalpipe/segment{ @@ -53767,7 +50458,7 @@ icon_state = "platingdmg1" }, /area/maintenance/port/aft) -"cfD" = ( +"cbG" = ( /obj/item/storage/box/lights/mixed, /obj/structure/disposalpipe/segment{ dir = 4 @@ -53777,7 +50468,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfE" = ( +"cbH" = ( /obj/item/tank/internals/air, /obj/item/tank/internals/air, /obj/item/clothing/mask/breath, @@ -53793,7 +50484,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfF" = ( +"cbI" = ( /obj/machinery/door/airlock{ name = "Medbay Emergency Storage"; req_access_txt = "5" @@ -53803,7 +50494,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cfG" = ( +"cbJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -53814,7 +50505,7 @@ dir = 8 }, /area/medical/storage) -"cfH" = ( +"cbK" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -53823,7 +50514,7 @@ }, /turf/open/floor/plasteel/white, /area/medical/storage) -"cfI" = ( +"cbL" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -53832,7 +50523,7 @@ }, /turf/open/floor/plasteel/white, /area/medical/storage) -"cfJ" = ( +"cbM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -53841,7 +50532,7 @@ }, /turf/open/floor/plasteel/white, /area/medical/storage) -"cfK" = ( +"cbN" = ( /obj/machinery/holopad, /obj/effect/landmark/start/medical_doctor, /obj/structure/cable/yellow{ @@ -53852,7 +50543,7 @@ }, /turf/open/floor/plasteel/white, /area/medical/storage) -"cfL" = ( +"cbO" = ( /obj/machinery/camera{ c_tag = "Medbay Storage"; dir = 8; @@ -53865,7 +50556,7 @@ dir = 4 }, /area/medical/storage) -"cfM" = ( +"cbP" = ( /obj/machinery/requests_console{ announcementConsole = 0; department = "Medbay"; @@ -53874,7 +50565,7 @@ }, /turf/closed/wall, /area/security/checkpoint/medical) -"cfN" = ( +"cbQ" = ( /obj/machinery/computer/secure_data{ dir = 4 }, @@ -53893,7 +50584,7 @@ }, /turf/open/floor/plasteel/red/side, /area/security/checkpoint/medical) -"cfO" = ( +"cbR" = ( /obj/structure/chair/office/dark, /obj/machinery/button/door{ desc = "A remote control switch for the medbay foyer."; @@ -53908,11 +50599,11 @@ dir = 6 }, /area/security/checkpoint/medical) -"cfP" = ( +"cbS" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/security/checkpoint/medical) -"cfQ" = ( +"cbT" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -53921,7 +50612,7 @@ }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cfR" = ( +"cbU" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -53931,7 +50622,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cfS" = ( +"cbV" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -53940,7 +50631,7 @@ }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cfT" = ( +"cbW" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -53950,62 +50641,62 @@ /obj/machinery/holopad, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cfU" = ( +"cbX" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cfV" = ( +"cbY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cfW" = ( +"cbZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cfX" = ( +"cca" = ( /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cfY" = ( +"ccb" = ( /obj/machinery/door/firedoor, /turf/open/floor/plasteel/white/side{ dir = 8 }, /area/medical/medbay/central) -"cfZ" = ( +"ccc" = ( /obj/machinery/door/firedoor, /turf/open/floor/plasteel/white/side{ dir = 4 }, /area/science/research) -"cga" = ( +"ccd" = ( /turf/open/floor/plasteel/white, /area/science/research) -"cgb" = ( +"cce" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /turf/open/floor/plasteel/white, /area/science/research) -"cgc" = ( +"ccf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/white, /area/science/research) -"cgd" = ( +"ccg" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/white, /area/science/research) -"cge" = ( +"cch" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -54016,26 +50707,26 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/white, /area/science/research) -"cgf" = ( +"cci" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel/white, /area/science/research) -"cgg" = ( +"ccj" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, /turf/open/floor/plasteel/white, /area/science/research) -"cgh" = ( +"cck" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plating, /area/security/checkpoint/science/research) -"cgi" = ( +"ccl" = ( /obj/item/screwdriver{ pixel_y = 10 }, @@ -54047,7 +50738,7 @@ dir = 8 }, /area/security/checkpoint/science/research) -"cgj" = ( +"ccm" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/chair/office/dark{ dir = 1 @@ -54055,7 +50746,7 @@ /obj/effect/landmark/start/depsec/science, /turf/open/floor/plasteel, /area/security/checkpoint/science/research) -"cgk" = ( +"ccn" = ( /obj/machinery/computer/secure_data{ dir = 8 }, @@ -54072,18 +50763,26 @@ dir = 4 }, /area/security/checkpoint/science/research) -"cgl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cgm" = ( +"cco" = ( +/obj/machinery/light/small, +/obj/item/toy/dummy, +/obj/item/toy/prize/honk{ + pixel_y = 12 + }, +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"ccp" = ( /obj/machinery/vending/hydroseeds{ slogan_delay = 700 }, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"cgn" = ( +"ccq" = ( /obj/structure/table, /obj/item/book/manual/hydroponics_pod_people, /obj/machinery/light, @@ -54098,11 +50797,11 @@ }, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"cgo" = ( +"ccr" = ( /obj/machinery/vending/hydronutrients, /turf/open/floor/plasteel/vault, /area/hallway/primary/central) -"cgp" = ( +"ccs" = ( /obj/machinery/disposal/bin{ pixel_x = -2; pixel_y = -2 @@ -54118,13 +50817,13 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"cgq" = ( +"cct" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 }, /turf/open/floor/plasteel, /area/hydroponics) -"cgr" = ( +"ccu" = ( /obj/machinery/hydroponics/constructable, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -54135,14 +50834,14 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"cgs" = ( +"ccv" = ( /obj/machinery/hydroponics/constructable, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, /area/hydroponics) -"cgt" = ( +"ccw" = ( /obj/machinery/hydroponics/constructable, /obj/machinery/light, /obj/machinery/power/apc{ @@ -54157,7 +50856,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"cgu" = ( +"ccx" = ( /obj/machinery/hydroponics/constructable, /obj/machinery/airalarm{ dir = 1; @@ -54168,7 +50867,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"cgv" = ( +"ccy" = ( /obj/machinery/hydroponics/constructable, /obj/machinery/firealarm{ dir = 1; @@ -54179,14 +50878,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"cgw" = ( -/obj/machinery/plantgenes, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"cgx" = ( +"ccz" = ( /obj/item/wrench, /obj/item/clothing/suit/apron, /obj/item/clothing/accessory/armband/hydro, @@ -54196,7 +50888,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"cgy" = ( +"ccA" = ( /obj/item/reagent_containers/spray/plantbgone{ pixel_y = 3 }, @@ -54219,7 +50911,7 @@ }, /turf/open/floor/plasteel, /area/hydroponics) -"cgz" = ( +"ccB" = ( /obj/machinery/door/window/eastright{ dir = 1; name = "Hydroponics Delivery"; @@ -54234,7 +50926,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hydroponics) -"cgA" = ( +"ccC" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=8"; dir = 8; @@ -54254,7 +50946,7 @@ dir = 1 }, /area/hydroponics) -"cgB" = ( +"ccD" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -54268,21 +50960,21 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"cgC" = ( +"ccE" = ( /obj/machinery/atmospherics/components/unary/tank/toxins{ dir = 4 }, /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cgD" = ( +"ccF" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; name = "plasma tank pump" }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cgE" = ( +"ccG" = ( /obj/structure/sink/kitchen{ desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; @@ -54296,7 +50988,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cgF" = ( +"ccH" = ( /obj/machinery/light{ dir = 1 }, @@ -54312,7 +51004,7 @@ /obj/item/pen, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cgG" = ( +"ccI" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -54321,7 +51013,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cgH" = ( +"ccJ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ icon_state = "2-4" @@ -54331,7 +51023,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cgI" = ( +"ccK" = ( /obj/structure/cable{ icon_state = "0-8" }, @@ -54343,68 +51035,59 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cgJ" = ( +"ccL" = ( /obj/machinery/atmospherics/pipe/simple/dark/visible{ dir = 4 }, /turf/closed/wall/r_wall, /area/engine/atmos) -"cgK" = ( +"ccM" = ( /obj/machinery/atmospherics/pipe/simple/dark/visible{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cgL" = ( -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/valve/digital{ - name = "Waste Release" - }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) -"cgM" = ( +"ccN" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, /obj/machinery/atmospherics/pipe/simple/dark/visible{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cgN" = ( +"ccO" = ( /obj/machinery/atmospherics/pipe/simple/dark/visible{ dir = 9 }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cgO" = ( +"ccP" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cgP" = ( +"ccQ" = ( /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cgQ" = ( +"ccR" = ( /obj/machinery/atmospherics/pipe/simple/green/visible, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cgR" = ( +"ccS" = ( /obj/machinery/light, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cgS" = ( +"ccT" = ( /obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cgT" = ( +"ccU" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cgU" = ( +"ccV" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 9 }, @@ -54415,14 +51098,17 @@ }, /turf/open/floor/plasteel/dark, /area/engine/atmos) -"cgV" = ( +"ccW" = ( /obj/machinery/door/airlock/external{ req_access_txt = "24"; req_one_access_txt = "0" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/engine/atmos) -"cgW" = ( +"ccX" = ( /obj/structure/sign/warning/vacuum/external{ pixel_y = -32 }, @@ -54434,10 +51120,10 @@ }, /turf/open/floor/plating, /area/engine/atmos) -"cgX" = ( +"ccY" = ( /turf/open/floor/plating, /area/engine/atmos) -"cgY" = ( +"ccZ" = ( /obj/machinery/door/window/northleft{ dir = 8; icon_state = "left"; @@ -54452,12 +51138,12 @@ }, /turf/open/floor/plating, /area/engine/atmos) -"cgZ" = ( +"cda" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, /turf/open/space, /area/solar/port/aft) -"cha" = ( +"cdb" = ( /obj/structure/girder, /obj/structure/grille, /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ @@ -54468,7 +51154,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"chb" = ( +"cdc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -54477,7 +51163,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"chc" = ( +"cdd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -54489,7 +51175,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"chd" = ( +"cde" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; req_access_txt = "12" @@ -54502,7 +51188,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"che" = ( +"cdf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -54514,19 +51200,19 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"chf" = ( +"cdg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"chg" = ( +"cdh" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"chh" = ( +"cdi" = ( /obj/structure/closet, /obj/item/stack/sheet/glass{ amount = 12 @@ -54534,7 +51220,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"chi" = ( +"cdj" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -54542,31 +51228,31 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/port/aft) -"chj" = ( +"cdk" = ( /obj/item/trash/semki, /turf/open/floor/plating, /area/maintenance/port/aft) -"chk" = ( +"cdl" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/maintenance/port/aft) -"chl" = ( +"cdm" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, -/area/maintenance/port/aft) -"chm" = ( +/area/maintenance/aft) +"cdn" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 }, /obj/machinery/portable_atmospherics/canister/air, /turf/open/floor/plating, /area/maintenance/port/aft) -"chn" = ( +"cdo" = ( /obj/effect/landmark/xeno_spawn, /obj/structure/closet/firecloset, /turf/open/floor/plating, /area/maintenance/port/aft) -"cho" = ( +"cdp" = ( /obj/machinery/light_switch{ pixel_x = -26 }, @@ -54585,7 +51271,7 @@ dir = 10 }, /area/medical/storage) -"chp" = ( +"cdq" = ( /obj/machinery/firealarm{ dir = 1; pixel_y = -24 @@ -54595,7 +51281,7 @@ dir = 2 }, /area/medical/storage) -"chq" = ( +"cdr" = ( /obj/item/storage/box/bodybags{ pixel_x = 3; pixel_y = 3 @@ -54627,37 +51313,37 @@ dir = 8 }, /area/medical/storage) -"chr" = ( +"cds" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/white, /area/medical/storage) -"chs" = ( +"cdt" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/white, /area/medical/storage) -"cht" = ( +"cdu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/whiteblue/corner{ dir = 4 }, /area/medical/storage) -"chu" = ( +"cdv" = ( /obj/machinery/rnd/protolathe/department/medical, /turf/open/floor/plasteel/whiteblue/side{ dir = 5 }, /area/medical/storage) -"chv" = ( +"cdw" = ( /turf/closed/wall, /area/medical/medbay/central) -"chw" = ( +"cdx" = ( /obj/machinery/computer/crew, /turf/open/floor/plasteel/vault, /area/medical/medbay/central) -"chx" = ( +"cdy" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -54672,19 +51358,19 @@ }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"chy" = ( +"cdz" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"chz" = ( +"cdA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"chA" = ( +"cdB" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -54695,29 +51381,25 @@ }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"chB" = ( +"cdC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"chC" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"chD" = ( +"cdD" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"chE" = ( +"cdE" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"chF" = ( +"cdF" = ( /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment{ dir = 4 @@ -54726,7 +51408,7 @@ dir = 8 }, /area/medical/medbay/central) -"chG" = ( +"cdG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment{ dir = 4 @@ -54735,7 +51417,7 @@ dir = 8 }, /area/hallway/primary/aft) -"chH" = ( +"cdH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -54747,7 +51429,7 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/aft) -"chI" = ( +"cdI" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, @@ -54755,17 +51437,13 @@ dir = 2 }, /area/hallway/primary/aft) -"chJ" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/research) -"chK" = ( +"cdJ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /turf/open/floor/plasteel/white, /area/science/research) -"chL" = ( +"cdK" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -54777,7 +51455,7 @@ }, /turf/open/floor/plasteel/white, /area/science/research) -"chM" = ( +"cdL" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -54789,7 +51467,7 @@ }, /turf/open/floor/plasteel/white, /area/science/research) -"chN" = ( +"cdM" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -54798,7 +51476,7 @@ }, /turf/open/floor/plasteel/white, /area/science/research) -"chO" = ( +"cdN" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -54810,7 +51488,7 @@ }, /turf/open/floor/plasteel/white, /area/science/research) -"chP" = ( +"cdO" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -54823,7 +51501,7 @@ }, /turf/open/floor/plasteel/white, /area/science/research) -"chQ" = ( +"cdP" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -54833,7 +51511,7 @@ }, /turf/open/floor/plating, /area/security/checkpoint/science/research) -"chR" = ( +"cdQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -54845,13 +51523,13 @@ dir = 8 }, /area/security/checkpoint/science/research) -"chS" = ( +"cdR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /turf/open/floor/plasteel, /area/security/checkpoint/science/research) -"chT" = ( +"cdS" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = 30 }, @@ -54867,12 +51545,7 @@ dir = 4 }, /area/security/checkpoint/science/research) -"chU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"chV" = ( +"cdU" = ( /obj/machinery/door/airlock/maintenance{ name = "Hydroponics Maintenance"; req_access_txt = "35"; @@ -54880,7 +51553,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"chW" = ( +"cdV" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -54890,28 +51563,28 @@ icon_state = "panelscorched" }, /area/maintenance/starboard) -"chX" = ( +"cdW" = ( /obj/item/device/flashlight, /obj/machinery/light/small{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/starboard) -"chY" = ( +"cdX" = ( /obj/structure/closet/crate, /obj/item/coin/silver, /obj/effect/spawner/lootdrop/maintenance, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard) -"chZ" = ( +"cdY" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/storage/box/lights/mixed, /obj/effect/spawner/lootdrop/maintenance, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard) -"cia" = ( +"cdZ" = ( /obj/structure/sign/warning/nosmoking{ pixel_x = -28 }, @@ -54922,14 +51595,14 @@ /obj/machinery/portable_atmospherics/canister/oxygen, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cib" = ( +"cea" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; name = "input port pump" }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cic" = ( +"ceb" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -54942,7 +51615,7 @@ /obj/machinery/meter, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cid" = ( +"cec" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -54951,7 +51624,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cie" = ( +"ced" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -54960,7 +51633,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cif" = ( +"cee" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -54972,7 +51645,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cig" = ( +"cef" = ( /obj/structure/sign/warning/fire{ pixel_x = 32 }, @@ -54983,37 +51656,32 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cih" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/atmos) -"cii" = ( +"ceg" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/green/visible, /turf/open/floor/plating, /area/engine/atmos) -"cij" = ( +"ceh" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/yellow/visible, /turf/open/floor/plating, /area/engine/atmos) -"cik" = ( +"cei" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/open/floor/plating, /area/engine/atmos) -"cil" = ( +"cej" = ( /obj/structure/lattice/catwalk, /turf/open/space, /area/solar/port/aft) -"cim" = ( +"cek" = ( /obj/machinery/door/airlock/external{ req_access_txt = "13" }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cin" = ( +"cel" = ( /obj/structure/sign/warning/vacuum/external{ pixel_y = 32 }, @@ -55022,7 +51690,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cio" = ( +"cem" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -55034,7 +51702,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cip" = ( +"cen" = ( /obj/structure/girder, /obj/structure/grille, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -55045,7 +51713,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"ciq" = ( +"ceo" = ( /obj/structure/girder, /obj/structure/grille, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -55056,7 +51724,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cir" = ( +"cep" = ( /obj/structure/rack, /obj/item/screwdriver{ pixel_y = 16 @@ -55065,7 +51733,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"cis" = ( +"ceq" = ( /obj/structure/rack, /obj/item/stack/cable_coil{ pixel_x = -1; @@ -55076,7 +51744,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"cit" = ( +"cer" = ( /obj/structure/rack, /obj/item/stack/rods{ amount = 23 @@ -55084,7 +51752,7 @@ /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/port/aft) -"ciu" = ( +"ces" = ( /obj/structure/table, /obj/item/folder/white{ pixel_x = 4; @@ -55097,23 +51765,14 @@ /obj/item/pen, /turf/open/floor/plating, /area/maintenance/port/aft) -"civ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ciw" = ( +"ceu" = ( /obj/structure/grille, /turf/open/floor/plating, /area/maintenance/port/aft) -"cix" = ( +"cev" = ( /turf/closed/wall, /area/medical/sleeper) -"ciy" = ( +"cew" = ( /obj/item/storage/firstaid/regular{ pixel_x = 3; pixel_y = -3 @@ -55137,7 +51796,7 @@ dir = 8 }, /area/medical/storage) -"ciz" = ( +"cex" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, @@ -55146,13 +51805,13 @@ }, /turf/open/floor/plasteel/white, /area/medical/storage) -"ciA" = ( +"cey" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel/white, /area/medical/storage) -"ciB" = ( +"cez" = ( /obj/item/storage/firstaid/regular{ pixel_x = 3; pixel_y = -3 @@ -55178,7 +51837,7 @@ dir = 4 }, /area/medical/storage) -"ciC" = ( +"ceA" = ( /obj/structure/sink{ dir = 8; pixel_x = -12; @@ -55200,7 +51859,7 @@ dir = 9 }, /area/medical/medbay/central) -"ciD" = ( +"ceB" = ( /obj/structure/chair/office/light{ dir = 4 }, @@ -55217,23 +51876,11 @@ dir = 5 }, /area/medical/medbay/central) -"ciE" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/door/firedoor, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/syringe, -/obj/item/pen, -/turf/open/floor/plasteel/whitegreen, -/area/medical/medbay/central) -"ciF" = ( +"ceC" = ( +/obj/machinery/telecomms/server/presets/command, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"ceD" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -55242,13 +51889,13 @@ dir = 2 }, /area/medical/medbay/central) -"ciG" = ( +"ceE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/whiteblue/side{ dir = 2 }, /area/medical/medbay/central) -"ciH" = ( +"ceF" = ( /obj/structure/bed/roller, /obj/item/device/radio/intercom{ broadcasting = 0; @@ -55267,20 +51914,20 @@ dir = 2 }, /area/medical/medbay/central) -"ciI" = ( +"ceG" = ( /obj/machinery/light, /obj/structure/bed/roller, /turf/open/floor/plasteel/whiteblue/side{ dir = 2 }, /area/medical/medbay/central) -"ciJ" = ( +"ceH" = ( /obj/structure/bed/roller, /turf/open/floor/plasteel/whiteblue/side{ dir = 2 }, /area/medical/medbay/central) -"ciK" = ( +"ceI" = ( /obj/item/twohanded/required/kirbyplants{ icon_state = "plant-11" }, @@ -55288,12 +51935,12 @@ dir = 2 }, /area/medical/medbay/central) -"ciL" = ( +"ceJ" = ( /turf/open/floor/plasteel/whiteyellow/side{ dir = 2 }, /area/medical/medbay/central) -"ciM" = ( +"ceK" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -55307,14 +51954,14 @@ dir = 2 }, /area/medical/medbay/central) -"ciN" = ( +"ceL" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/hallway/primary/aft) -"ciO" = ( +"ceN" = ( /obj/structure/table, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/high{ @@ -55325,14 +51972,7 @@ dir = 2 }, /area/science/research) -"ciP" = ( -/obj/structure/table, -/obj/item/device/paicard, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 2 - }, -/area/science/research) -"ciQ" = ( +"ceO" = ( /obj/structure/table, /obj/item/stock_parts/cell/potato, /obj/machinery/light, @@ -55344,7 +51984,7 @@ dir = 2 }, /area/science/research) -"ciR" = ( +"ceQ" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -55353,15 +51993,7 @@ dir = 2 }, /area/science/research) -"ciS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 2 - }, -/area/science/research) -"ciT" = ( +"ceR" = ( /obj/structure/disposalpipe/junction/flip{ dir = 4 }, @@ -55369,7 +52001,7 @@ dir = 2 }, /area/science/research) -"ciU" = ( +"ceS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -55386,7 +52018,7 @@ dir = 2 }, /area/science/research) -"ciV" = ( +"ceT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment{ dir = 10 @@ -55395,7 +52027,7 @@ dir = 2 }, /area/science/research) -"ciW" = ( +"ceU" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -55412,7 +52044,7 @@ dir = 2 }, /area/science/research) -"ciX" = ( +"ceV" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, @@ -55423,13 +52055,13 @@ dir = 8 }, /area/security/checkpoint/science/research) -"ciY" = ( +"ceW" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel, /area/security/checkpoint/science/research) -"ciZ" = ( +"ceX" = ( /obj/item/device/radio/intercom{ dir = 4; name = "Station Intercom (General)"; @@ -55445,7 +52077,7 @@ dir = 4 }, /area/security/checkpoint/science/research) -"cja" = ( +"ceY" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -55457,7 +52089,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cjb" = ( +"ceZ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -55469,7 +52101,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cjc" = ( +"cfa" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -55483,7 +52115,7 @@ icon_state = "platingdmg2" }, /area/maintenance/starboard/aft) -"cjd" = ( +"cfb" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -55498,7 +52130,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cje" = ( +"cfc" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -55513,7 +52145,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cjf" = ( +"cfd" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -55527,48 +52159,7 @@ icon_state = "platingdmg1" }, /area/maintenance/starboard/aft) -"cjg" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cjh" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cji" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cjj" = ( +"cff" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -55582,7 +52173,7 @@ icon_state = "panelscorched" }, /area/maintenance/starboard/aft) -"cjk" = ( +"cfg" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -55600,7 +52191,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cjl" = ( +"cfh" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -55615,7 +52206,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cjm" = ( +"cfi" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -55630,20 +52221,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"cjn" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cjo" = ( +"cfj" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -55655,7 +52233,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"cjp" = ( +"cfk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -55664,7 +52242,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"cjq" = ( +"cfl" = ( /obj/machinery/door/airlock/maintenance/abandoned{ name = "Storage Room"; req_access_txt = "12" @@ -55674,7 +52252,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"cjr" = ( +"cfm" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -55683,7 +52261,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"cjs" = ( +"cfn" = ( /obj/machinery/portable_atmospherics/canister, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4; @@ -55691,7 +52269,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cjt" = ( +"cfo" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -55699,20 +52277,20 @@ /obj/machinery/atmospherics/pipe/manifold/general/visible, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cju" = ( +"cfp" = ( /obj/effect/landmark/xeno_spawn, /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 4 }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cjv" = ( +"cfq" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 4 }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cjw" = ( +"cfr" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -55723,64 +52301,66 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cjx" = ( +"cfs" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible{ dir = 4 }, /obj/machinery/meter, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"cjy" = ( +"cft" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/disposal/incinerator) -"cjz" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1441; - id = "n2_in"; - volume_rate = 200 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/engine/atmos) -"cjA" = ( +"cfu" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/green/visible, /turf/open/space, /area/space/nearstation) -"cjB" = ( +"cfv" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/yellow/visible, /turf/open/space, /area/space/nearstation) -"cjC" = ( +"cfw" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/manifold/yellow/visible{ dir = 8 }, /turf/open/space, /area/space/nearstation) -"cjD" = ( +"cfx" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 9 }, /turf/open/space, /area/space/nearstation) -"cjE" = ( +"cfy" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/open/space, /area/space/nearstation) -"cjF" = ( +"cfz" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ icon_state = "0-2" }, /turf/open/space, /area/solar/port/aft) -"cjG" = ( +"cfA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cfB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -55790,7 +52370,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"cjH" = ( +"cfC" = ( /obj/item/trash/pistachios, /obj/structure/closet, /obj/item/stack/sheet/glass, @@ -55798,31 +52378,31 @@ /obj/item/storage/belt/utility, /turf/open/floor/plating, /area/maintenance/port/aft) -"cjI" = ( +"cfD" = ( /obj/item/storage/box, /turf/open/floor/plating, /area/maintenance/port/aft) -"cjJ" = ( +"cfE" = ( /obj/structure/closet/crate, /obj/item/reagent_containers/dropper, /turf/open/floor/plating, /area/maintenance/port/aft) -"cjK" = ( +"cfF" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/maintenance/port/aft) -"cjL" = ( +"cfG" = ( /obj/structure/closet/wardrobe/pjs, /turf/open/floor/plasteel/vault, /area/medical/sleeper) -"cjM" = ( +"cfH" = ( /obj/structure/closet/wardrobe/pjs, /obj/machinery/airalarm{ pixel_y = 24 }, /turf/open/floor/plasteel/vault, /area/medical/sleeper) -"cjN" = ( +"cfI" = ( /obj/machinery/computer/med_data, /obj/machinery/light{ dir = 1 @@ -55832,7 +52412,7 @@ }, /turf/open/floor/plasteel/vault, /area/medical/sleeper) -"cjO" = ( +"cfJ" = ( /obj/structure/table, /obj/item/folder/white{ pixel_x = 4; @@ -55855,7 +52435,7 @@ /obj/item/clothing/neck/stethoscope, /turf/open/floor/plasteel/vault, /area/medical/sleeper) -"cjP" = ( +"cfK" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -2; @@ -55867,7 +52447,7 @@ }, /turf/open/floor/plasteel/vault, /area/medical/sleeper) -"cjQ" = ( +"cfL" = ( /obj/item/storage/firstaid/regular{ pixel_x = 3; pixel_y = -3 @@ -55894,7 +52474,7 @@ dir = 10 }, /area/medical/storage) -"cjR" = ( +"cfM" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, @@ -55902,7 +52482,7 @@ dir = 2 }, /area/medical/storage) -"cjS" = ( +"cfN" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -55917,13 +52497,13 @@ dir = 2 }, /area/medical/storage) -"cjT" = ( +"cfO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/whiteblue/side{ dir = 2 }, /area/medical/storage) -"cjU" = ( +"cfP" = ( /obj/item/storage/firstaid/regular{ pixel_x = 3; pixel_y = -3 @@ -55946,7 +52526,7 @@ dir = 6 }, /area/medical/storage) -"cjV" = ( +"cfQ" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -23 @@ -55956,7 +52536,7 @@ dir = 10 }, /area/medical/medbay/central) -"cjW" = ( +"cfR" = ( /obj/structure/chair/office/light{ dir = 4 }, @@ -55965,20 +52545,20 @@ dir = 6 }, /area/medical/medbay/central) -"cjX" = ( +"cfS" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor, /obj/item/reagent_containers/food/drinks/britcup, /turf/open/floor/plasteel/whitegreen, /area/medical/medbay/central) -"cjY" = ( +"cfT" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/whiteblue, /area/medical/medbay/central) -"cjZ" = ( +"cfU" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/sink{ dir = 4; @@ -55986,17 +52566,17 @@ }, /turf/open/floor/plasteel/whiteblue, /area/medical/medbay/central) -"cka" = ( +"cfV" = ( /obj/structure/sign/directions/medical{ pixel_y = -7 }, /turf/closed/wall, /area/medical/chemistry) -"ckb" = ( +"cfW" = ( /obj/structure/sign/departments/chemistry, /turf/closed/wall, /area/medical/chemistry) -"ckc" = ( +"cfX" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "chemistry_shutters"; @@ -56004,11 +52584,11 @@ }, /turf/open/floor/plating, /area/medical/chemistry) -"ckd" = ( +"cfY" = ( /obj/machinery/smartfridge/chemistry/preloaded, /turf/closed/wall, /area/medical/chemistry) -"cke" = ( +"cfZ" = ( /obj/structure/table/reinforced, /obj/item/folder/white{ pixel_x = 4; @@ -56032,10 +52612,10 @@ dir = 4 }, /area/medical/chemistry) -"ckf" = ( +"cga" = ( /turf/closed/wall, /area/medical/chemistry) -"ckg" = ( +"cgb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/light{ dir = 8 @@ -56045,7 +52625,7 @@ dir = 8 }, /area/hallway/primary/aft) -"ckh" = ( +"cgc" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/airalarm{ dir = 8; @@ -56055,10 +52635,10 @@ dir = 2 }, /area/hallway/primary/aft) -"cki" = ( +"cgd" = ( /turf/closed/wall/r_wall, /area/science/lab) -"ckj" = ( +"cge" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "research_shutters"; @@ -56066,7 +52646,7 @@ }, /turf/open/floor/plating, /area/science/lab) -"ckk" = ( +"cgf" = ( /obj/structure/table/reinforced, /obj/item/pen, /obj/item/folder/white{ @@ -56089,29 +52669,13 @@ }, /turf/open/floor/plating, /area/science/lab) -"ckl" = ( -/obj/machinery/autolathe{ - name = "public autolathe" - }, -/obj/machinery/door/window/eastright{ - dir = 2; - name = "Research and Development Desk"; - req_access_txt = "7" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters"; - name = "research shutters" - }, -/turf/open/floor/plasteel/whitepurple, -/area/science/lab) -"ckm" = ( +"cgg" = ( /obj/structure/sign/directions/science{ pixel_y = -8 }, /turf/closed/wall/r_wall, /area/science/lab) -"ckn" = ( +"cgh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/disposalpipe/segment, /obj/machinery/door/poddoor/preopen{ @@ -56121,7 +52685,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/science/research) -"cko" = ( +"cgi" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -56133,7 +52697,7 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/science/research) -"ckp" = ( +"cgj" = ( /obj/machinery/power/apc{ dir = 8; name = "Security Post - Research Division APC"; @@ -56145,11 +52709,11 @@ dir = 10 }, /area/security/checkpoint/science/research) -"ckq" = ( +"cgk" = ( /obj/structure/closet/secure_closet/security/science, /turf/open/floor/plasteel/red/side, /area/security/checkpoint/science/research) -"ckr" = ( +"cgl" = ( /obj/structure/filingcabinet, /obj/machinery/airalarm{ dir = 8; @@ -56159,7 +52723,7 @@ dir = 6 }, /area/security/checkpoint/science/research) -"cks" = ( +"cgm" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -56170,16 +52734,16 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"ckt" = ( +"cgn" = ( /obj/item/cigbutt, /turf/open/floor/plating{ icon_state = "platingdmg3" }, /area/maintenance/starboard/aft) -"cku" = ( +"cgo" = ( /turf/closed/wall/r_wall, /area/science/research) -"ckv" = ( +"cgp" = ( /obj/machinery/door/airlock/maintenance{ name = "Research Maintenance"; req_access_txt = "47"; @@ -56188,25 +52752,15 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/science/research) -"ckw" = ( +"cgq" = ( /turf/closed/wall/r_wall, /area/science/explab) -"ckx" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cky" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"ckz" = ( +"cgs" = ( /turf/open/floor/plating{ - icon_state = "platingdmg1" + icon_state = "platingdmg2" }, -/area/maintenance/starboard) -"ckA" = ( +/area/maintenance/starboard/aft) +"cgt" = ( /obj/machinery/power/apc{ dir = 8; name = "Incinerator APC"; @@ -56218,13 +52772,13 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"ckB" = ( +"cgu" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"ckC" = ( +"cgv" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/yellow{ icon_state = "1-8" @@ -56234,40 +52788,33 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"ckD" = ( +"cgw" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 10 }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"ckE" = ( +"cgx" = ( /obj/structure/cable{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"ckF" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plasteel/floorgrime, -/area/maintenance/disposal/incinerator) -"ckG" = ( +"cgy" = ( +/obj/machinery/telecomms/server/presets/service, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cgz" = ( /turf/closed/wall/r_wall, /area/maintenance/disposal/incinerator) -"ckH" = ( +"cgA" = ( /obj/machinery/atmospherics/pipe/simple, /obj/machinery/meter, /obj/structure/grille, /turf/closed/wall/r_wall, /area/engine/atmos) -"ckI" = ( +"cgB" = ( /obj/machinery/atmospherics/pipe/simple, /obj/machinery/meter{ name = "Mixed Air Tank In" @@ -56275,7 +52822,7 @@ /obj/structure/grille, /turf/closed/wall/r_wall, /area/engine/atmos) -"ckJ" = ( +"cgC" = ( /obj/machinery/atmospherics/pipe/simple, /obj/machinery/meter{ name = "Mixed Air Tank Out" @@ -56283,7 +52830,7 @@ /obj/structure/grille, /turf/closed/wall/r_wall, /area/engine/atmos) -"ckK" = ( +"cgD" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -56292,7 +52839,7 @@ }, /turf/open/floor/plating, /area/engine/atmos) -"ckL" = ( +"cgE" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -56301,31 +52848,39 @@ }, /turf/open/floor/plating, /area/engine/atmos) -"ckM" = ( -/obj/structure/cable{ - icon_state = "1-2" +"cgF" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"ckN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 28 + }, +/obj/structure/reagent_dispensers/cooking_oil, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"cgG" = ( /obj/structure/closet/emcloset/anchored, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/port/aft) -"ckO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, +"cgH" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, -/area/maintenance/port/aft) -"ckP" = ( +/area/maintenance/port) +"cgI" = ( /obj/structure/cable/yellow{ icon_state = "2-4" }, @@ -56340,7 +52895,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"ckQ" = ( +"cgJ" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -56351,37 +52906,8 @@ dir = 4 }, /turf/open/floor/plating, -/area/maintenance/port/aft) -"ckR" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ckS" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ckT" = ( +/area/maintenance/aft) +"cgL" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -56399,7 +52925,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"ckU" = ( +"cgM" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -56407,8 +52933,8 @@ dir = 4 }, /turf/open/floor/plating, -/area/maintenance/port/aft) -"ckV" = ( +/area/maintenance/aft) +"cgN" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -56419,8 +52945,8 @@ dir = 4 }, /turf/open/floor/plating, -/area/maintenance/port/aft) -"ckW" = ( +/area/maintenance/aft) +"cgO" = ( /obj/machinery/door/airlock/maintenance{ name = "Medbay Maintenance"; req_access_txt = "5" @@ -56433,7 +52959,7 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"ckX" = ( +"cgP" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -56444,7 +52970,7 @@ dir = 9 }, /area/medical/sleeper) -"ckY" = ( +"cgQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -56455,7 +52981,7 @@ dir = 1 }, /area/medical/sleeper) -"ckZ" = ( +"cgR" = ( /obj/structure/chair/office/light{ dir = 1 }, @@ -56470,7 +52996,7 @@ dir = 1 }, /area/medical/sleeper) -"cla" = ( +"cgS" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -56484,7 +53010,7 @@ dir = 1 }, /area/medical/sleeper) -"clb" = ( +"cgT" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -56500,7 +53026,7 @@ dir = 5 }, /area/medical/sleeper) -"clc" = ( +"cgU" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical/glass{ id_tag = null; @@ -56509,7 +53035,7 @@ }, /turf/open/floor/plasteel/whiteblue, /area/medical/storage) -"cld" = ( +"cgV" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -56517,7 +53043,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/medical/storage) -"cle" = ( +"cgW" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/airlock/medical/glass{ @@ -56527,7 +53053,7 @@ }, /turf/open/floor/plasteel/whiteblue, /area/medical/storage) -"clf" = ( +"cgX" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/medical/glass{ @@ -56537,12 +53063,12 @@ }, /turf/open/floor/plasteel/whiteblue, /area/medical/medbay/central) -"clg" = ( +"cgY" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plating, /area/medical/medbay/central) -"clh" = ( +"cgZ" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -56555,7 +53081,7 @@ }, /turf/open/floor/plasteel/whiteblue, /area/medical/medbay/central) -"cli" = ( +"cha" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/medical/glass{ @@ -56565,7 +53091,7 @@ }, /turf/open/floor/plasteel/whiteblue, /area/medical/medbay/central) -"clj" = ( +"chb" = ( /obj/machinery/chem_heater, /obj/machinery/light_switch{ pixel_x = -23 @@ -56574,14 +53100,14 @@ dir = 9 }, /area/medical/chemistry) -"clk" = ( +"chc" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, /turf/open/floor/plasteel/whiteyellow/side{ dir = 5 }, /area/medical/chemistry) -"cll" = ( +"chd" = ( /obj/item/reagent_containers/glass/beaker/large, /obj/item/reagent_containers/glass/beaker/large, /obj/item/reagent_containers/glass/beaker{ @@ -56599,7 +53125,7 @@ dir = 4 }, /area/medical/chemistry) -"clm" = ( +"che" = ( /obj/structure/chair/office/light{ dir = 1 }, @@ -56608,7 +53134,7 @@ dir = 4 }, /area/medical/chemistry) -"cln" = ( +"chf" = ( /obj/machinery/chem_dispenser{ layer = 2.7 }, @@ -56623,19 +53149,19 @@ dir = 4 }, /area/medical/chemistry) -"clo" = ( +"chg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/neutral/corner{ dir = 8 }, /area/hallway/primary/aft) -"clp" = ( +"chh" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/neutral/corner{ dir = 2 }, /area/hallway/primary/aft) -"clq" = ( +"chi" = ( /obj/structure/table, /obj/item/crowbar, /obj/item/wrench, @@ -56653,7 +53179,7 @@ }, /turf/open/floor/plasteel, /area/science/lab) -"clr" = ( +"chj" = ( /obj/structure/sink/kitchen{ desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; @@ -56663,21 +53189,12 @@ dir = 9 }, /area/science/lab) -"cls" = ( +"chk" = ( /turf/open/floor/plasteel/whitepurple/side{ dir = 1 }, /area/science/lab) -"clt" = ( -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/lab) -"clu" = ( +"chm" = ( /obj/machinery/button/door{ id = "research_shutters"; name = "research shutters control"; @@ -56688,40 +53205,18 @@ dir = 5 }, /area/science/lab) -"clv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - cyclelinkeddir = 2; - id_tag = "ResearchExt"; - name = "Research Division"; - req_access_txt = "0"; - req_one_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"clw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - cyclelinkeddir = 2; - id_tag = "ResearchExt"; - name = "Research Division"; - req_access_txt = "0"; - req_one_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"clx" = ( +"chn" = ( +/obj/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cho" = ( +/obj/machinery/telecomms/server/presets/supply, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"chp" = ( /turf/closed/wall/r_wall, /area/security/checkpoint/science/research) -"cly" = ( +"chq" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Security Post - Research Division"; @@ -56729,7 +53224,7 @@ }, /turf/open/floor/plasteel/red, /area/security/checkpoint/science/research) -"clz" = ( +"chr" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -56739,9 +53234,10 @@ }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"clA" = ( +"chs" = ( /obj/item/paper, /obj/structure/sign/map/left{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; @@ -56757,7 +53253,7 @@ dir = 5 }, /area/science/research) -"clB" = ( +"cht" = ( /obj/structure/sign/map/right{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; icon_state = "map-right-MS"; @@ -56769,7 +53265,7 @@ dir = 5 }, /area/science/research) -"clC" = ( +"chu" = ( /obj/machinery/ai_status_display{ pixel_y = 32 }, @@ -56778,28 +53274,20 @@ dir = 5 }, /area/science/research) -"clD" = ( +"chv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/cafeteria{ dir = 5 }, /area/science/research) -"clE" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"clF" = ( +"chw" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/bridge/showroom/corporate) +"chx" = ( /turf/open/floor/engine, /area/science/explab) -"clG" = ( +"chy" = ( /obj/structure/sign/warning/nosmoking{ pixel_y = 32 }, @@ -56813,13 +53301,20 @@ }, /turf/open/floor/engine, /area/science/explab) -"clH" = ( +"chz" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"chA" = ( /obj/item/device/radio/intercom{ pixel_y = 25 }, /turf/open/floor/engine, /area/science/explab) -"clI" = ( +"chB" = ( /obj/machinery/space_heater, /obj/effect/landmark/blobstart, /obj/effect/turf_decal/stripes/line{ @@ -56827,7 +53322,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"clJ" = ( +"chC" = ( /obj/structure/closet/crate, /obj/item/storage/belt/utility, /obj/item/stack/cable_coil/random, @@ -56837,7 +53332,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"clK" = ( +"chD" = ( /obj/structure/closet/crate{ icon_state = "crateopen" }, @@ -56848,14 +53343,14 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"clL" = ( +"chE" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plating, /area/maintenance/starboard) -"clM" = ( +"chF" = ( /obj/structure/closet, /obj/item/device/flashlight, /obj/effect/spawner/lootdrop/maintenance, @@ -56864,7 +53359,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard) -"clN" = ( +"chG" = ( /obj/structure/reagent_dispensers/fueltank, /obj/item/storage/toolbox/emergency, /obj/item/device/radio/intercom{ @@ -56873,7 +53368,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"clO" = ( +"chH" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/extinguisher, /obj/machinery/light/small, @@ -56882,7 +53377,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"clP" = ( +"chI" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/components/binary/valve{ dir = 2; @@ -56890,7 +53385,7 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"clQ" = ( +"chJ" = ( /obj/structure/extinguisher_cabinet{ pixel_y = -31 }, @@ -56900,14 +53395,14873 @@ /obj/machinery/portable_atmospherics/canister, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"clR" = ( +"chL" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) +"chM" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Exterior - Aft"; + dir = 2; + network = list("MiniSat") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/aisat) +"chN" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "n2_in" + }, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"chO" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "n2_sensor" + }, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"chP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 1; + frequency = 1441; + id_tag = "n2_out"; + name = "n2 out" + }, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"chQ" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "o2_in" + }, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"chR" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "o2_sensor" + }, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"chS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 1; + frequency = 1441; + id_tag = "o2_out"; + name = "o2 out" + }, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"chT" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "air_in" + }, +/turf/open/floor/engine/air, +/area/engine/atmos) +"chU" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "air_sensor" + }, +/turf/open/floor/engine/air, +/area/engine/atmos) +"chV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/on{ + dir = 1; + frequency = 1441; + id_tag = "air_out"; + name = "air out" + }, +/turf/open/floor/engine/air, +/area/engine/atmos) +"chW" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/engine/atmos) +"chX" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/engine/atmos) +"chY" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"chZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cia" = ( +/turf/closed/wall, +/area/medical/surgery) +"cib" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/medical/surgery) +"cic" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/surgery) +"cid" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cie" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/sleeper) +"cif" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"cig" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"cih" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"cii" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/sleeper) +"cij" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/whiteblue, +/area/medical/sleeper) +"cik" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 9 + }, +/area/medical/medbay/central) +"cil" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/medbay/central) +"cim" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/medbay/central) +"cin" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/medbay/central) +"cio" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cip" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Medbay Central APC"; + areastring = "/area/medical/medbay/central"; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Medbay Hallway Fore"; + dir = 2; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"ciq" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/medbay/central) +"cir" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cis" = ( +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Exit Button"; + normaldoorcontrol = 1; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"cit" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/medbay/central) +"ciu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/medbay/central) +"civ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + id_tag = null; + name = "Chemistry Lab"; + req_access_txt = "5; 33" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"ciw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 8 + }, +/area/medical/chemistry) +"cix" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whiteyellow/corner{ + dir = 4 + }, +/area/medical/chemistry) +"ciy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 1 + }, +/area/medical/chemistry) +"ciz" = ( +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 5 + }, +/area/medical/chemistry) +"ciA" = ( +/obj/machinery/chem_master, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/noticeboard{ + desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; + name = "requests board"; + pixel_x = 32 + }, +/turf/open/floor/plasteel/whiteyellow{ + dir = 4 + }, +/area/medical/chemistry) +"ciB" = ( +/obj/machinery/rnd/destructive_analyzer, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"ciC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"ciD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/rnd/protolathe/department/science, +/turf/open/floor/plasteel, +/area/science/lab) +"ciE" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"ciF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/science/lab) +"ciG" = ( +/obj/machinery/disposal/bin{ + pixel_x = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 4 + }, +/area/science/lab) +"ciH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ciI" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ciJ" = ( +/obj/machinery/power/apc/highcap/ten_k{ + dir = 1; + name = "Research Division APC"; + areastring = "/area/science/research"; + pixel_y = 25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/camera{ + c_tag = "Research Division - Airlock"; + dir = 2; + network = list("SS13","RD") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ciK" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research) +"ciL" = ( +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ciM" = ( +/obj/effect/landmark/blobstart, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/cigbutt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ciN" = ( +/obj/structure/chair/stool, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"ciO" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"ciP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"ciQ" = ( +/obj/item/cigbutt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"ciR" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/vending/cola/random, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"ciS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/mob/living/simple_animal/pet/dog/pug{ + desc = "It's Pugley IV, the research department's lovable pug clone. Hopefully nothing happens to this one - fourth time lucky!"; + name = "Pugley IV"; + real_name = "Pugley IV" + }, +/turf/open/floor/engine, +/area/science/explab) +"ciT" = ( +/obj/item/device/radio/beacon, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/engine, +/area/science/explab) +"ciU" = ( +/obj/machinery/rnd/experimentor, +/turf/open/floor/engine, +/area/science/explab) +"ciV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/explab) +"ciW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/engine, +/area/science/explab) +"ciX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"ciY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"ciZ" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 2 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"cja" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/public/glass{ + autoclose = 0; + frequency = 1449; + heat_proof = 1; + id_tag = "incinerator_airlock_interior"; + name = "Incinerator Interior Airlock"; + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"cjb" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"cjc" = ( +/turf/open/floor/engine/n2, +/area/engine/atmos) +"cjd" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"cje" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - N2"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"cjf" = ( +/turf/open/floor/engine/o2, +/area/engine/atmos) +"cjg" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"cjh" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - O2"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"cji" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/engine/air, +/area/engine/atmos) +"cjj" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/engine/air, +/area/engine/atmos) +"cjk" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - Air"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/engine/air, +/area/engine/atmos) +"cjl" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"cjm" = ( +/obj/machinery/door/airlock/atmos/glass{ + heat_proof = 1; + name = "Auxiliary Chamber"; + req_access_txt = "24" + }, +/turf/open/floor/plating, +/area/engine/atmos) +"cjn" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"cjo" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating/airless, +/area/engine/atmos) +"cjp" = ( +/obj/machinery/vending/boozeomat, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cjq" = ( +/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/open/floor/wood{ + icon_state = "wood-broken3" + }, +/area/maintenance/port/aft) +"cjr" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cjs" = ( +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/structure/table/wood, +/obj/structure/light_construct/small{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cjt" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cjv" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cjw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cjx" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cjy" = ( +/obj/item/cigbutt, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cjz" = ( +/obj/structure/chair, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cjA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cjB" = ( +/obj/item/cigbutt, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cjC" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cjD" = ( +/obj/structure/chair, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cjE" = ( +/obj/structure/bed/roller, +/obj/item/device/radio/intercom{ + broadcasting = 1; + freerange = 0; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_x = -30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/machinery/camera{ + c_tag = "Medbay Sleepers"; + dir = 4; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 10 + }, +/area/medical/sleeper) +"cjF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/sleeper) +"cjG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"cjH" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 2 + }, +/area/medical/sleeper) +"cjI" = ( +/obj/structure/bed/roller, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 6 + }, +/area/medical/sleeper) +"cjJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/whiteblue, +/area/medical/sleeper) +"cjK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/medbay/central) +"cjL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cjM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cjN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cjO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cjP" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cjQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cjR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/turf/open/floor/plasteel/whiteyellow/corner{ + dir = 2 + }, +/area/medical/medbay/central) +"cjS" = ( +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/storage/pill_bottle/epinephrine{ + pixel_x = 3 + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 8 + }, +/area/medical/chemistry) +"cjT" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cjU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cjV" = ( +/obj/machinery/smoke_machine, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 4 + }, +/area/medical/chemistry) +"cjW" = ( +/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/structure/table/glass, +/turf/open/floor/plasteel/whiteyellow{ + dir = 4 + }, +/area/medical/chemistry) +"cjX" = ( +/obj/machinery/computer/rdconsole/core{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/lab) +"cjY" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/lab) +"cjZ" = ( +/obj/item/reagent_containers/glass/beaker/sulphuric, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/rnd/circuit_imprinter/department/science, +/turf/open/floor/plasteel, +/area/science/lab) +"cka" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"ckb" = ( +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"ckc" = ( +/obj/structure/table, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/micro_laser, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/clothing/glasses/science, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"ckd" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/lab) +"cke" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ckf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ckg" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ckh" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"cki" = ( +/obj/item/storage/toolbox/emergency, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckj" = ( +/obj/machinery/light/small, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/device/flashlight, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckl" = ( +/obj/item/stack/packageWrap, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckm" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/item/cigbutt, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"ckn" = ( +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"cko" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"ckp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"ckq" = ( +/obj/machinery/vending/coffee, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"ckr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/engine, +/area/science/explab) +"cks" = ( +/obj/machinery/button/door{ + id = "telelab"; + name = "Test Chamber Blast Doors"; + pixel_y = -25 + }, +/turf/open/floor/engine, +/area/science/explab) +"ckt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/engine, +/area/science/explab) +"cku" = ( +/obj/structure/closet, +/obj/item/storage/box/donkpockets, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckv" = ( +/obj/structure/closet/crate, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/item/device/assembly/infra, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckw" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/item/shard, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckx" = ( +/obj/structure/table, +/obj/structure/sign/departments/medbay{ + pixel_y = 32 + }, +/obj/item/reagent_containers/glass/beaker/large, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cky" = ( +/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/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckz" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckA" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/syringe, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckB" = ( +/obj/item/reagent_containers/glass/bottle/toxin{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/reagentgrinder{ + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckC" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + name = "Incinerator Output Pump"; + on = 1; + use_power = 0 + }, +/obj/structure/disposalpipe/segment, +/turf/open/space, +/area/maintenance/disposal/incinerator) +"ckD" = ( +/obj/machinery/doorButtons/access_button{ + idDoor = "incinerator_airlock_exterior"; + layer = 3.1; + idSelf = "incinerator_access_control"; + name = "Incinerator airlock control"; + pixel_x = 8; + pixel_y = -24 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/warning/fire{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + on = 1 + }, +/obj/machinery/doorButtons/access_button{ + idDoor = "incinerator_airlock_interior"; + idSelf = "incinerator_access_control"; + name = "Incinerator airlock control"; + pixel_x = 8; + pixel_y = 24 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"ckE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"ckF" = ( +/obj/structure/sign/warning/fire{ + pixel_x = 32 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + on = 1 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"ckG" = ( +/obj/machinery/light/small, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"ckH" = ( +/obj/machinery/light/small, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"ckI" = ( +/turf/open/floor/engine/air, +/area/engine/atmos) +"ckJ" = ( +/obj/machinery/light/small, +/turf/open/floor/engine/air, +/area/engine/atmos) +"ckK" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"ckL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"ckM" = ( +/obj/structure/girder, +/turf/open/floor/plating/airless, +/area/engine/atmos) +"ckN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ckO" = ( +/obj/structure/closet/secure_closet/bar{ + pixel_x = -3; + pixel_y = -1; + req_access_txt = "25" + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"ckP" = ( +/turf/open/floor/wood, +/area/maintenance/port/aft) +"ckQ" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/port/aft) +"ckR" = ( +/obj/item/reagent_containers/glass/rag, +/obj/structure/table/wood, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/maintenance/port/aft) +"ckS" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/maintenance/port/aft) +"ckT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"ckU" = ( +/obj/structure/chair, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"ckV" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"ckW" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"ckX" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"ckY" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"ckZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Observation"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cla" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"clb" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"clc" = ( +/obj/item/cigbutt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 28 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cld" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue, +/area/medical/sleeper) +"cle" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 10 + }, +/area/medical/sleeper) +"clf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 2 + }, +/area/medical/sleeper) +"clg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 6 + }, +/area/medical/sleeper) +"clh" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue, +/area/medical/sleeper) +"cli" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"clj" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"clk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cll" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"clm" = ( +/obj/item/device/radio/intercom{ + broadcasting = 1; + freerange = 0; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_y = -30 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cln" = ( +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 2 + }, +/area/medical/medbay/central) +"clo" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 2 + }, +/area/medical/medbay/central) +"clp" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"clq" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/whiteyellow/corner{ + dir = 2 + }, +/area/medical/medbay/central) +"clr" = ( +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 6 + }, +/area/medical/medbay/central) +"cls" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastright{ + name = "Chemistry Desk"; + req_access_txt = "5; 33" + }, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Chemistry Desk"; + req_access_txt = "5" + }, +/obj/item/reagent_containers/glass/bottle/morphine, +/obj/item/reagent_containers/glass/bottle/toxin{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 8 + }, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = -5 + }, +/obj/item/reagent_containers/syringe/epinephrine, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"clt" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 8 + }, +/area/medical/chemistry) +"clu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"clv" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 4 + }, +/area/medical/chemistry) +"clw" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_y = 2 + }, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/screwdriver{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/device/radio/headset/headset_med, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/whiteyellow{ + dir = 4 + }, +/area/medical/chemistry) +"clx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cly" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway - Fore"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"clz" = ( +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/item/clothing/glasses/welding, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"clA" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/lab) +"clB" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/white, +/area/science/lab) +"clC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/white, +/area/science/lab) +"clD" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"clE" = ( +/obj/structure/table, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/scanning_module, +/obj/item/stock_parts/scanning_module, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 30 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"clF" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"clG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"clH" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/research) +"clI" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"clJ" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Research Division" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"clK" = ( +/turf/closed/wall/r_wall, +/area/maintenance/aft) +"clL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/item/storage/box/lights/mixed, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"clN" = ( +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"clO" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"clP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"clQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/noticeboard{ + pixel_y = -32 + }, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Research Division - Break Room"; + dir = 1; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"clR" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) "clS" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/science/explab) +"clT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/science/explab) +"clU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/turf/open/floor/plating, +/area/science/explab) +"clV" = ( +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/engine, +/area/science/explab) +"clW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"clX" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + locked = 0; + name = "Storage Room"; + req_access_txt = "0"; + req_one_access_txt = "12;47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"clY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"clZ" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cma" = ( +/obj/structure/rack, +/obj/item/clothing/suit/apron, +/obj/item/clothing/mask/surgical, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cmb" = ( +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo"; + pixel_x = -4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cmc" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/space, +/area/space/nearstation) +"cmd" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/public/glass{ + autoclose = 0; + frequency = 1449; + heat_proof = 1; + id_tag = "incinerator_airlock_exterior"; + name = "Incinerator Exterior Airlock"; + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"cme" = ( +/obj/item/stack/rods{ + amount = 25 + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"cmf" = ( +/turf/open/floor/plating/airless, +/area/engine/atmos) +"cmg" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/glass/beaker/cryoxadone, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/dropper, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cmh" = ( +/obj/item/reagent_containers/food/drinks/ale, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cmi" = ( +/obj/structure/light_construct/small{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 30 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cmk" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/surgery) +"cml" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/medical/surgery) +"cmm" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/medical/surgery) +"cmn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Observation"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/medical/surgery) +"cmo" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/medical/sleeper) +"cmp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"cmr" = ( +/obj/machinery/door/firedoor, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cms" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cmt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cmu" = ( +/turf/closed/wall, +/area/crew_quarters/heads/cmo) +"cmv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"cmw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"cmx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"cmy" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/medical/medbay/central) +"cmz" = ( +/obj/machinery/reagentgrinder, +/obj/machinery/requests_console{ + department = "Chemistry"; + departmentType = 2; + pixel_x = -30; + receive_ore_updates = 1 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 8 + }, +/area/medical/chemistry) +"cmA" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cmB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cmC" = ( +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/structure/table/glass, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 4 + }, +/area/medical/chemistry) +"cmD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/departments/chemistry{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cmE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/departments/science{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/purple/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"cmF" = ( +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/lab) +"cmG" = ( +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/structure/table, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cmH" = ( +/obj/structure/table, +/obj/structure/disposalpipe/segment, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/disk/tech_disk, +/obj/item/disk/tech_disk, +/obj/item/disk/design_disk, +/obj/item/disk/design_disk, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cmI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cmJ" = ( +/obj/machinery/camera{ + c_tag = "Research and Development"; + dir = 8; + network = list("SS13","RD") + }, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stock_parts/scanning_module{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/stock_parts/scanning_module, +/turf/open/floor/plasteel, +/area/science/lab) +"cmK" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/dark, +/area/aisat) +"cmL" = ( +/obj/machinery/door/window/westleft{ + dir = 2; + name = "Research Division Deliveries"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"cmM" = ( +/obj/machinery/door/airlock{ + name = "Research Emergency Storage"; + req_access_txt = "0"; + req_one_access_txt = "47" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cmN" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/medical{ + name = "Research Break Room"; + req_access_txt = "0"; + req_one_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/science/research) +"cmO" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/window/reinforced/tinted/fulltile, +/turf/open/floor/plating, +/area/science/research) +"cmP" = ( +/turf/closed/wall, +/area/science/explab) +"cmQ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_y = 30; + receive_ore_updates = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cmR" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/pen, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cmS" = ( +/obj/structure/table/reinforced, +/obj/item/hand_labeler, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/device/taperecorder, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cmT" = ( +/obj/machinery/computer/rdconsole/experiment, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cmU" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/book/manual/experimentor, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cmV" = ( +/obj/machinery/button/door{ + id = "telelab"; + name = "Test Chamber Blast Doors"; + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/bottle/charcoal{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/reagent_containers/dropper, +/obj/item/stack/medical/bruise_pack{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/stack/medical/ointment, +/obj/item/device/healthanalyzer, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cmW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cmX" = ( +/obj/structure/window/reinforced, +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/aisat) +"cmY" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cmZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cna" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/white, +/obj/item/clothing/head/soft/mime, +/obj/item/clothing/under/color/white, +/obj/item/clothing/head/soft/mime, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/mask/surgical, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cnb" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/aft) +"cnc" = ( +/obj/machinery/chem_heater, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cnd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon{ + dir = 1; + name = "incinerator output intake" + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cne" = ( +/obj/machinery/igniter{ + icon_state = "igniter0"; + id = "Incinerator"; + luminosity = 2; + on = 0 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cnf" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "air_in" + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cng" = ( +/obj/machinery/door/poddoor{ + id = "auxincineratorvent"; + name = "Incineration Chamber Vent" + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cnh" = ( +/obj/item/device/flashlight/lamp, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cni" = ( +/obj/item/reagent_containers/food/drinks/bottle/tequila, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cnj" = ( +/obj/item/reagent_containers/food/drinks/beer, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cnk" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/maintenance/port/aft) +"cnl" = ( +/obj/structure/mineral_door/wood{ + name = "The Gobbetting Barmaid" + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"cnm" = ( +/obj/structure/table, +/obj/item/hemostat, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"cnn" = ( +/obj/structure/table, +/obj/item/surgicaldrill, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/surgery) +"cno" = ( +/obj/structure/table, +/obj/item/scalpel{ + pixel_y = 12 + }, +/obj/item/circular_saw, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/surgery) +"cnp" = ( +/obj/structure/table, +/obj/item/cautery{ + pixel_x = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/razor{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/surgery) +"cnq" = ( +/obj/structure/table, +/obj/item/retractor, +/turf/open/floor/plasteel, +/area/medical/surgery) +"cnr" = ( +/obj/machinery/computer/med_data{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/surgery) +"cns" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/surgery) +"cnt" = ( +/obj/structure/table/reinforced, +/obj/item/device/radio/intercom{ + broadcasting = 1; + freerange = 0; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_x = 30 + }, +/obj/structure/bedsheetbin{ + pixel_x = 2 + }, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/item/gun/syringe, +/obj/item/clothing/glasses/eyepatch, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/surgery) +"cnu" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Cryogenics APC"; + areastring = "/area/medical/cryo"; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/reagent_containers/dropper, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/cryo) +"cnv" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/closet/secure_closet/medical1{ + pixel_x = -3 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"cnw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cnx" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cny" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cnz" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/cryo) +"cnA" = ( +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"cnB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cnC" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cnD" = ( +/obj/item/cartridge/medical{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/cartridge/medical{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/cartridge/medical, +/obj/item/cartridge/chemistry{ + pixel_y = 2 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cnE" = ( +/obj/item/folder/blue, +/obj/structure/table/glass, +/obj/item/stamp/cmo, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cnF" = ( +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/clothing/glasses/hud/health, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cnG" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/item/storage/secure/safe{ + pixel_x = 5; + pixel_y = 26 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 30 + }, +/obj/item/screwdriver{ + pixel_y = 6 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cnH" = ( +/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") + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 10 + }, +/area/medical/chemistry) +"cnI" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whiteyellow/corner{ + dir = 8 + }, +/area/medical/chemistry) +"cnJ" = ( +/obj/machinery/disposal/bin{ + pixel_x = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cnK" = ( +/obj/machinery/chem_dispenser{ + layer = 2.7 + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 4 + }, +/area/medical/chemistry) +"cnL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters_2"; + name = "chemistry shutters" + }, +/turf/open/floor/plating, +/area/medical/chemistry) +"cnM" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/floor/plasteel/yellow{ + dir = 4 + }, +/area/hallway/primary/aft) +"cnN" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/hallway/primary/aft) +"cnO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cnP" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/purple/side{ + dir = 4 + }, +/area/hallway/primary/aft) +"cnQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/purple, +/area/hallway/primary/aft) +"cnR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters_2"; + name = "research shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/lab) +"cnS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/lab) +"cnT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cnU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cnV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cnW" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/lab) +"cnX" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/science/lab) +"cnY" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 9 + }, +/area/science/research) +"cnZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/research) +"coa" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"cob" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Research Division Hallway - Central"; + dir = 2; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"coc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cod" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 29 + }, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/science/research) +"coe" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/science/research) +"cof" = ( +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/science/research) +"cog" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/research) +"coh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/research) +"coi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"coj" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 2 + }, +/area/science/research) +"cok" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/explab) +"col" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"com" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"con" = ( +/obj/effect/landmark/start/scientist, +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"coo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/science, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cop" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/science/explab) +"coq" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cor" = ( +/obj/structure/girder, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cos" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 6 + }, +/obj/item/pen, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cot" = ( +/obj/structure/table, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cou" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cov" = ( +/obj/structure/bed, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cow" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/rnd/protolathe/department/service, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"cox" = ( +/obj/structure/mineral_door/wood{ + name = "The Gobbetting Barmaid" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/maintenance/port/aft) +"coy" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/suit/apron/surgical, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/surgery) +"coz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"coA" = ( +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"coB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"coC" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Surgery APC"; + areastring = "/area/medical/surgery"; + pixel_x = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/table, +/obj/item/surgical_drapes, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/surgery) +"coD" = ( +/obj/structure/bed/roller, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"coE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"coF" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/bedsheet/medical, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"coG" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/surgery) +"coH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/cryo) +"coI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"coJ" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"coK" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 2 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel, +/area/medical/cryo) +"coL" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"coM" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/cryo) +"coN" = ( +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/medbay/central) +"coO" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"coP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"coQ" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/chief_medical_officer, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"coR" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/mob/living/simple_animal/pet/cat/Runtime, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"coS" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "CMO's Office APC"; + areastring = "/area/crew_quarters/heads/cmo"; + pixel_x = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/camera{ + c_tag = "CMO's Office"; + dir = 8; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"coT" = ( +/obj/structure/closet/wardrobe/chemistry_white{ + pixel_x = -3 + }, +/obj/item/storage/backpack/satchel/chem, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"coU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 8 + }, +/area/medical/chemistry) +"coV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"coW" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 4 + }, +/area/medical/chemistry) +"coX" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Chemistry Desk"; + req_access_txt = "5; 33" + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters_2"; + name = "chemistry shutters" + }, +/turf/open/floor/plasteel/whiteyellow{ + dir = 4 + }, +/area/medical/chemistry) +"coY" = ( +/turf/open/floor/plasteel/yellow{ + dir = 4 + }, +/area/hallway/primary/aft) +"coZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/yellow/side{ + dir = 8 + }, +/area/hallway/primary/aft) +"cpa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/purple/side{ + dir = 4 + }, +/area/hallway/primary/aft) +"cpb" = ( +/turf/open/floor/plasteel/purple, +/area/hallway/primary/aft) +"cpc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + dir = 4; + name = "Research and Development Desk"; + req_access_txt = "7" + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/door/firedoor, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters_2"; + name = "research shutters" + }, +/turf/open/floor/plating, +/area/science/lab) +"cpd" = ( +/obj/effect/landmark/start/scientist, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/lab) +"cpe" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cpf" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cpg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cph" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 4 + }, +/area/science/lab) +"cpj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/research) +"cpk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpl" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpm" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpo" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpt" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cpw" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 4 + }, +/area/science/research) +"cpx" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Experimentation Lab"; + req_access_txt = "8" + }, +/turf/open/floor/plasteel/whitepurple{ + dir = 4 + }, +/area/science/explab) +"cpy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/explab) +"cpz" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cpA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cpB" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cpC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cpD" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cpE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cpF" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Experimentation Lab Maintenance"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cpG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cpH" = ( +/obj/structure/bed/roller, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cpI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"cpJ" = ( +/obj/structure/barricade/wooden, +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cpK" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cpL" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/structure/rack, +/obj/item/storage/firstaid/regular, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/ointment, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cpM" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/space, +/area/space/nearstation) +"cpN" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/maintenance/disposal/incinerator) +"cpO" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/aisat) +"cpP" = ( +/obj/structure/lattice/catwalk, +/obj/item/wrench, +/turf/open/space, +/area/space/nearstation) +"cpQ" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/port/aft) +"cpR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Port"; + dir = 8; + network = list("SS13","Engine") + }, +/obj/machinery/airalarm/engine{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"cpS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cpT" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Surgery Maintenance"; + req_access_txt = "45" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cpU" = ( +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cpW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cpX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre"; + req_access_txt = "45" + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cpY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cpZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cqa" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cqb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Surgery Observation"; + req_access_txt = "0" + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cqc" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/cryo) +"cqd" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"cqe" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cqf" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cqg" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cqh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cqi" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/medbay/central) +"cqj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cqk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "privacy shutter" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"cql" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cqm" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cqn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cqo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cqp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "CMO Maintenance"; + req_access_txt = "40" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cqq" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cqr" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Chemistry APC"; + areastring = "/area/medical/chemistry"; + pixel_x = -24 + }, +/obj/structure/closet/secure_closet/chemical{ + pixel_x = -3 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cqs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 10 + }, +/area/medical/chemistry) +"cqt" = ( +/obj/machinery/chem_heater{ + pixel_x = 4 + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 2 + }, +/area/medical/chemistry) +"cqu" = ( +/obj/machinery/chem_master, +/obj/structure/noticeboard{ + desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; + dir = 1; + name = "requests board"; + pixel_y = -32 + }, +/obj/machinery/button/door{ + id = "chemistry_shutters_2"; + name = "chemistry shutters control"; + pixel_x = 26; + pixel_y = -26; + req_access_txt = "5; 33" + }, +/turf/open/floor/plasteel/whiteyellow/side{ + dir = 6 + }, +/area/medical/chemistry) +"cqv" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/floor/plasteel/purple, +/area/hallway/primary/aft) +"cqw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters_2"; + name = "research shutters" + }, +/turf/open/floor/plating, +/area/science/lab) +"cqx" = ( +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Research Lab APC"; + areastring = "/area/science/lab"; + pixel_y = -26 + }, +/obj/structure/cable/yellow, +/obj/structure/table, +/obj/machinery/button/door{ + id = "research_shutters_2"; + name = "research shutters control"; + pixel_x = -26; + pixel_y = -26; + req_access_txt = "7" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cqy" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cqz" = ( +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_y = -30; + receive_ore_updates = 1 + }, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cqA" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + dir = 1; + name = "Research and Development Deliveries"; + req_access_txt = "7" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/lab) +"cqB" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cqC" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"cqD" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqG" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Research Division Hallway - Starboard"; + dir = 1; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqL" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cqN" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 2 + }, +/area/science/research) +"cqO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 6 + }, +/area/science/research) +"cqP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/science/explab) +"cqQ" = ( +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/explab) +"cqR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "Experimentation Lab APC"; + areastring = "/area/science/explab"; + pixel_y = -24 + }, +/obj/structure/cable/yellow, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cqS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/machinery/camera{ + c_tag = "Experimentation Lab"; + dir = 1; + network = list("SS13","RD") + }, +/obj/machinery/light, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cqT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cqU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cqV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"cqW" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cqX" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cqY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cqZ" = ( +/obj/structure/barricade/wooden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cra" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"crb" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"crc" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/space, +/area/space/nearstation) +"crd" = ( +/obj/structure/disposaloutlet{ + dir = 2 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"cre" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"crf" = ( +/obj/machinery/door/poddoor{ + id = "turbinevent"; + name = "Turbine Vent" + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"crg" = ( +/obj/item/toy/cards/deck, +/obj/structure/table/wood/poker, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"crh" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/maintenance/port/aft) +"crj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/light_switch{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/surgery) +"crk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"crl" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"crm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"crn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/surgery) +"cro" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"crq" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/light_switch{ + pixel_x = 26 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"crr" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/cryo) +"crs" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/machinery/camera{ + c_tag = "Medbay Cryo"; + dir = 1; + network = list("SS13","Medbay") + }, +/obj/item/screwdriver{ + pixel_y = 6 + }, +/obj/item/clothing/neck/stethoscope, +/obj/item/wrench/medical, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"crt" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + freerange = 0; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_y = -30 + }, +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cru" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Connector Port (Air Supply)" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"crv" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Connector Port (Air Supply)" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"crw" = ( +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"crx" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 2 + }, +/area/medical/medbay/central) +"cry" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"crz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"crA" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/storage/secure/briefcase, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"crB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"crC" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/keycard_auth{ + pixel_x = 26; + pixel_y = -7 + }, +/obj/machinery/computer/med_data/laptop, +/obj/structure/table/glass, +/obj/machinery/button/door{ + id = "cmoprivacy"; + name = "Privacy Shutters Control"; + pixel_x = 26; + pixel_y = 4 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"crD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"crE" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chemistry Lab Maintenance"; + req_access_txt = "5; 33" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"crF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -29 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/aft) +"crG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"crH" = ( +/obj/machinery/power/apc/highcap/five_k{ + dir = 4; + name = "Aft Hallway APC"; + areastring = "/area/hallway/primary/aft"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/purple/corner{ + dir = 4 + }, +/area/hallway/primary/aft) +"crI" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Research and Development" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/lab) +"crJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"crK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white/side{ + dir = 5 + }, +/area/science/research) +"crL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/science/research) +"crM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/science/research) +"crN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"crO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"crP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"crQ" = ( +/turf/closed/wall, +/area/crew_quarters/heads/hor) +"crR" = ( +/turf/closed/wall/r_wall, +/area/science/storage) +"crS" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall/r_wall, +/area/science/storage) +"crT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage"; + req_access_txt = "8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "toxins_blastdoor"; + name = "biohazard containment shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"crU" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"crV" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"crW" = ( +/obj/structure/closet/l3closet/scientist{ + pixel_x = -2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"crX" = ( +/obj/structure/closet/wardrobe/science_white, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"crY" = ( +/obj/structure/rack, +/obj/item/reagent_containers/blood/random, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"crZ" = ( +/obj/structure/table, +/obj/structure/bedsheetbin{ + pixel_x = 2 + }, +/obj/item/clothing/mask/muzzle, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"csa" = ( +/obj/structure/table, +/obj/item/restraints/handcuffs/cable/white, +/obj/item/gun/syringe, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"csb" = ( +/obj/structure/rack, +/obj/item/hatchet, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"csc" = ( +/obj/machinery/iv_drip, +/obj/item/roller, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"csd" = ( +/obj/structure/rack, +/obj/item/tank/internals/anesthetic, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cse" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"csf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"csg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"csh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/port/aft) +"csi" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"csj" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -28 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"csk" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/surgery) +"csl" = ( +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Medbay Surgery"; + dir = 1; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"csm" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/surgery) +"csn" = ( +/obj/item/device/radio/intercom{ + broadcasting = 1; + freerange = 0; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_y = -30 + }, +/obj/structure/closet/crate/freezer/blood, +/turf/open/floor/plasteel, +/area/medical/surgery) +"cso" = ( +/obj/structure/bed/roller, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -28 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 2 + }, +/area/medical/surgery) +"csp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 2 + }, +/area/medical/surgery) +"csq" = ( +/obj/structure/bed, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/item/bedsheet/medical, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/camera{ + c_tag = "Medbay Recovery Room"; + dir = 1; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 2 + }, +/area/medical/surgery) +"csr" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"css" = ( +/turf/closed/wall, +/area/medical/cryo) +"cst" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/camera{ + c_tag = "Medbay Hallway Central"; + dir = 4; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/central) +"csu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"csv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/medbay/central) +"csw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Chief Medical Officer's Office"; + req_access_txt = "40"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"csx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"csy" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"csz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/table/glass, +/obj/item/folder/blue, +/obj/item/folder/blue, +/obj/item/pen, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"csA" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer RC"; + pixel_y = -32 + }, +/obj/effect/landmark/start/chief_medical_officer, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"csB" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for monitoring medbay to ensure patient safety."; + dir = 8; + name = "Medbay Monitor"; + network = list("Medbay"); + pixel_x = 29 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/obj/machinery/computer/card/minor/cmo{ + dir = 8 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"csC" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/aft) +"csD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/aft) +"csF" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 11 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csH" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;5;9" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"csK" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"csL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"csM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Aft Emergency Storage"; + req_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csN" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 14 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "7;47;29;12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csR" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 12 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"csU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Research Maintenance"; + req_access_txt = "0"; + req_one_access_txt = "7;47;29" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"csV" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"csW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 13 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"csX" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"csY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"csZ" = ( +/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_y = 2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"ctb" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Research Director's Desk"; + departmentType = 5; + name = "Research Director RC"; + pixel_y = 30; + receive_ore_updates = 1 + }, +/obj/machinery/modular_computer/console/preset/research{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"ctc" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/landmark/xmastree/rdrod, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/hor) +"ctd" = ( +/obj/structure/displaycase/labcage, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/warning/biohazard{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/hor) +"cte" = ( +/obj/item/storage/secure/safe{ + pixel_x = 32 + }, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/hor) +"ctf" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"ctg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"cth" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"cti" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/power/apc/highcap/five_k{ + dir = 1; + name = "Toxins Storage APC"; + areastring = "/area/science/storage"; + pixel_y = 25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"ctj" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"ctk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ctl" = ( +/obj/machinery/camera{ + active_power_usage = 0; + c_tag = "Turbine Vent"; + dir = 4; + network = list("Turbine"); + use_power = 0 + }, +/turf/open/space, +/area/space/nearstation) +"ctm" = ( +/obj/structure/grille/broken, +/turf/open/space, +/area/space/nearstation) +"ctn" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cto" = ( +/obj/machinery/vending/assist, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ctq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ctr" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/patients_rooms/room_a) +"cts" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/vending/wallmed{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/white, +/area/medical/patients_rooms/room_a) +"ctt" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/patients_rooms/room_a) +"ctu" = ( +/obj/machinery/door/airlock/medical{ + name = "Patient Room A"; + req_access_txt = "5" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/patients_rooms/room_a) +"ctv" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"ctw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/central) +"ctx" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = -28 + }, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"cty" = ( +/obj/machinery/suit_storage_unit/cmo, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"ctz" = ( +/obj/structure/table/glass, +/obj/item/pen, +/obj/item/clothing/neck/stethoscope, +/obj/structure/extinguisher_cabinet{ + pixel_x = 6; + pixel_y = -30 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"ctA" = ( +/turf/closed/wall/r_wall, +/area/medical/genetics) +"ctB" = ( +/turf/closed/wall, +/area/medical/genetics) +"ctC" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Genetics Maintenance"; + req_access_txt = "9"; + req_one_access_txt = "0" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft) +"ctD" = ( +/obj/structure/sign/directions/evac, +/turf/closed/wall, +/area/medical/genetics) +"ctE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/blue/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"ctF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ctG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"ctH" = ( +/obj/structure/sign/directions/evac, +/turf/closed/wall, +/area/maintenance/aft) +"ctJ" = ( +/obj/item/storage/toolbox/emergency, +/obj/structure/closet/firecloset, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"ctK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"ctL" = ( +/turf/closed/wall/r_wall, +/area/science/misc_lab/range) +"ctM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Research Testing Range Maintenance"; + req_access_txt = "0"; + req_one_access_txt = "7;47;29" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ctN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/science/research) +"ctO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"ctP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"ctQ" = ( +/obj/machinery/button/door{ + id = "xeno_blastdoor"; + name = "Secure Lab Shutter Control"; + pixel_x = -5; + pixel_y = -5; + req_access_txt = "47" + }, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "rdprivacy"; + name = "Privacy Shutters Control"; + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/button/door{ + id = "Biohazard"; + name = "Entrance Shutter Control"; + pixel_x = -5; + pixel_y = 5; + req_access_txt = "47" + }, +/obj/machinery/button/door{ + id = "toxins_blastdoor"; + name = "Toxins Shutter Control"; + pixel_x = 5; + pixel_y = -5; + req_access_txt = "47" + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"ctR" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/research_director, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"ctS" = ( +/obj/machinery/computer/robotics{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"ctT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/hor) +"ctU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/hor) +"ctV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/hor) +"ctW" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"ctX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"ctY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/chair/stool, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"ctZ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"cua" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"cub" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cuc" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cud" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cue" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/solar{ + id = "aftport"; + name = "Aft-Port Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port/aft) +"cuf" = ( +/obj/structure/closet, +/obj/item/extinguisher, +/obj/effect/decal/cleanable/cobweb, +/obj/item/device/flashlight, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cug" = ( +/obj/structure/closet, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/dropper, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cuh" = ( +/obj/structure/closet/crate, +/obj/item/stack/cable_coil, +/obj/item/grenade/chem_grenade, +/obj/item/device/flashlight, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cui" = ( +/obj/structure/closet/crate, +/obj/item/coin/silver, +/obj/item/reagent_containers/spray/weedspray, +/obj/item/paper, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cuj" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Port Quarter Maintenance APC"; + areastring = "/area/maintenance/port/aft"; + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cuk" = ( +/obj/structure/table, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/clothing/neck/stethoscope, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Patient Room A APC"; + areastring = "/area/medical/patients_rooms/room_a"; + pixel_x = -26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/patients_rooms/room_a) +"cul" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/patients_rooms/room_a) +"cum" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/button/door{ + id = "isola"; + name = "Privacy Shutters"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/patients_rooms/room_a) +"cun" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "isola"; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/medical/patients_rooms/room_a) +"cuo" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/central) +"cup" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cuq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cur" = ( +/obj/item/storage/box/rxglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -29 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/vault, +/area/medical/genetics) +"cus" = ( +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/gloves/color/latex, +/obj/item/storage/box/disks{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/vault, +/area/medical/genetics) +"cut" = ( +/obj/machinery/requests_console{ + department = "Genetics"; + departmentType = 0; + name = "Genetics Requests Console"; + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/storage/box/monkeycubes, +/obj/item/device/radio/headset/headset_medsci, +/obj/item/device/flashlight/pen{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/device/flashlight/pen{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/structure/noticeboard{ + desc = "A board for pinning important notices upon."; + name = "notice board"; + pixel_x = -32; + pixel_y = 32 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/vault, +/area/medical/genetics) +"cuu" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Genetics Lab APC"; + areastring = "/area/medical/genetics"; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/storage/pill_bottle/mutadone, +/obj/item/storage/pill_bottle/mannitol, +/obj/structure/table/glass, +/turf/open/floor/plasteel/vault, +/area/medical/genetics) +"cuv" = ( +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/vault, +/area/medical/genetics) +"cuw" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/blue/side{ + dir = 9 + }, +/area/medical/genetics) +"cux" = ( +/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 = 32 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/blue/side{ + dir = 5 + }, +/area/medical/genetics) +"cuy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "genetics_shutters"; + name = "genetics shutters" + }, +/turf/open/floor/plating, +/area/medical/genetics) +"cuz" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/floor/plasteel/blue, +/area/medical/genetics) +"cuA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/blue/side{ + dir = 8 + }, +/area/hallway/primary/aft) +"cuB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/aft) +"cuC" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/aft) +"cuD" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/storage/box/lights/mixed, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cuE" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cuF" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cuG" = ( +/turf/open/floor/engine{ + dir = 9; + icon_state = "floor" + }, +/area/science/misc_lab/range) +"cuH" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cuI" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 5 + }, +/area/science/research) +"cuJ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cuK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 2 + }, +/area/science/research) +"cuL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"cuM" = ( +/obj/machinery/computer/card/minor/rd{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cuN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cuO" = ( +/obj/machinery/computer/mecha{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cuP" = ( +/obj/structure/table, +/obj/item/device/aicard, +/obj/item/circuitboard/aicore{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cuQ" = ( +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cuR" = ( +/obj/structure/table, +/obj/item/device/taperecorder{ + pixel_x = -3 + }, +/obj/item/device/paicard{ + pixel_x = 4 + }, +/obj/item/storage/secure/briefcase, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cuS" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"cuT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"cuU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"cuV" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"cuW" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Toxins Storage"; + dir = 8; + network = list("SS13","RD") + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"cuY" = ( +/obj/structure/rack, +/obj/item/extinguisher, +/obj/item/storage/belt/utility, +/obj/item/clothing/mask/gas, +/obj/item/storage/box/lights/mixed, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cuZ" = ( +/turf/closed/wall/r_wall, +/area/science/circuit) +"cvd" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"cve" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"cvf" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"cvg" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"cvh" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"cvi" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"cvj" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cvk" = ( +/obj/structure/closet/crate, +/obj/item/crowbar/red, +/obj/item/pen, +/obj/item/device/flashlight/pen{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cvl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cvm" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cvn" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cvo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/medical/patients_rooms/room_a) +"cvp" = ( +/turf/closed/wall, +/area/medical/patients_rooms/room_a) +"cvq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/departments/examroom{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cvr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cvs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cvt" = ( +/turf/closed/wall, +/area/medical/genetics/cloning) +"cvu" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/door/window/southleft{ + dir = 2; + name = "Cloning Shower" + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/vault, +/area/medical/genetics/cloning) +"cvv" = ( +/obj/machinery/door/window/southleft{ + base_state = "right"; + dir = 2; + icon_state = "right"; + name = "Cloning Shower" + }, +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "sink"; + pixel_y = 28 + }, +/turf/open/floor/plasteel/vault, +/area/medical/genetics/cloning) +"cvw" = ( +/obj/machinery/clonepod{ + pixel_y = 2 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/vault, +/area/medical/genetics/cloning) +"cvx" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Genetics Lab"; + dir = 4; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/whiteblue, +/area/medical/genetics) +"cvy" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 9 + }, +/area/medical/genetics) +"cvz" = ( +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/genetics) +"cvA" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 5 + }, +/area/medical/genetics) +"cvB" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue, +/area/medical/genetics) +"cvC" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/storage/box/syringes, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/blue/side{ + dir = 8 + }, +/area/medical/genetics) +"cvD" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/plasteel/blue/side{ + dir = 4 + }, +/area/medical/genetics) +"cvE" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/pen, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Genetics Desk"; + req_access_txt = "5;9" + }, +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Outer Window" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "genetics_shutters"; + name = "genetics shutters" + }, +/turf/open/floor/plating, +/area/medical/genetics) +"cvF" = ( +/turf/open/floor/plasteel/blue, +/area/medical/genetics) +"cvG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"cvH" = ( +/turf/closed/wall, +/area/science/robotics/mechbay) +"cvI" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mech Bay Maintenance"; + req_access_txt = "29" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft) +"cvJ" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = -29 + }, +/turf/open/floor/engine{ + dir = 9; + icon_state = "floor" + }, +/area/science/misc_lab/range) +"cvK" = ( +/obj/machinery/magnetic_module, +/obj/effect/landmark/blobstart, +/obj/structure/target_stake, +/obj/effect/turf_decal/bot{ + dir = 9 + }, +/turf/open/floor/plasteel{ + dir = 9 + }, +/area/science/misc_lab/range) +"cvL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "researchrangeshutters"; + name = "blast door" + }, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"cvM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"cvN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cvO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/science/research) +"cvP" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Research Director's Office"; + req_access_txt = "30"; + req_one_access_txt = "0" + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cvQ" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cvR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cvS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cvT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cvU" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cvV" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"cvW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"cvX" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"cvY" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"cwa" = ( +/obj/structure/reagent_dispensers/watertank/high, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cwb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"cwc" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/aft) +"cwd" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cwe" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "aftport"; + name = "Aft-Port Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port/aft) +"cwf" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"cwg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"cwh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cwi" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cwj" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cwm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cwn" = ( +/obj/structure/rack, +/obj/item/clothing/glasses/sunglasses, +/obj/item/device/flashlight/pen, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cwo" = ( +/obj/structure/table, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/clothing/neck/stethoscope, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Patient Room B APC"; + areastring = "/area/medical/patients_rooms/room_b"; + pixel_x = -26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/patients_rooms/room_b) +"cwp" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/vending/wallmed{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/white, +/area/medical/patients_rooms/room_b) +"cwq" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/button/door{ + id = "isolb"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/patients_rooms/room_b) +"cwr" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "isolb"; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/medical/patients_rooms/room_b) +"cws" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/aft) +"cwt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cwu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cwv" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 9 + }, +/area/medical/genetics/cloning) +"cww" = ( +/obj/effect/landmark/start/geneticist, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 1 + }, +/area/medical/genetics/cloning) +"cwx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/computer/cloning{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 5 + }, +/area/medical/genetics/cloning) +"cwy" = ( +/obj/machinery/dna_scannernew, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/turf/open/floor/plasteel/whiteblue, +/area/medical/genetics) +"cwz" = ( +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/genetics) +"cwA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cwB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/genetics) +"cwC" = ( +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel/whiteblue, +/area/medical/genetics) +"cwD" = ( +/obj/item/storage/box/disks{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -29 + }, +/obj/machinery/camera{ + c_tag = "Genetics Desk"; + dir = 4; + network = list("SS13","Medbay") + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/blue/side{ + dir = 8 + }, +/area/medical/genetics) +"cwE" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/button/door{ + id = "genetics_shutters"; + name = "genetics shutters control"; + pixel_x = 28; + req_access_txt = "9" + }, +/turf/open/floor/plasteel/blue/side{ + dir = 4 + }, +/area/medical/genetics) +"cwF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel/blue/corner{ + dir = 1 + }, +/area/hallway/primary/aft) +"cwG" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -28 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cwH" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/science/robotics/mechbay) +"cwI" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = 31 + }, +/turf/open/floor/mech_bay_recharge_floor, +/area/science/robotics/mechbay) +"cwJ" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"cwK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cwL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cwM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Research Division Hallway - Mech Bay"; + dir = 4; + network = list("SS13","RD") + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/science/research) +"cwN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cwO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/science/research) +"cwP" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "RD Office APC"; + areastring = "/area/crew_quarters/heads/hor"; + pixel_y = -27 + }, +/obj/structure/cable/yellow, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/obj/item/twohanded/required/kirbyplants/dead, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cwQ" = ( +/obj/item/paper_bin{ + pixel_y = 7 + }, +/obj/structure/table, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/obj/item/stamp/rd{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/folder/white{ + pixel_x = 9; + pixel_y = -1 + }, +/obj/item/pen, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cwR" = ( +/obj/structure/table, +/obj/item/cartridge/signal/toxins, +/obj/item/cartridge/signal/toxins{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/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/machinery/light, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cwS" = ( +/obj/structure/closet/secure_closet/RD, +/obj/machinery/keycard_auth{ + pixel_y = -24 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cwT" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cwU" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/heads/hor) +"cwV" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"cwW" = ( +/obj/item/cigbutt, +/obj/machinery/light_switch{ + pixel_y = -23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"cwX" = ( +/obj/effect/landmark/start/scientist, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/storage) +"cwY" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light/small, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"cwZ" = ( +/turf/open/floor/plasteel, +/area/science/circuit) +"cxa" = ( +/obj/item/stack/cable_coil, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"cxb" = ( +/obj/structure/rack, +/obj/item/tank/internals/air, +/obj/item/wrench, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/port/aft) +"cxc" = ( +/obj/item/trash/chips, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cxd" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cxe" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/patients_rooms/room_b) +"cxf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/patients_rooms/room_b) +"cxg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/patients_rooms/room_b) +"cxh" = ( +/obj/machinery/door/airlock/medical{ + name = "Patient Room B"; + req_access_txt = "5" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/patients_rooms/room_b) +"cxi" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cxj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cxk" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 2 + }, +/area/medical/medbay/aft) +"cxl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/genetics/cloning) +"cxm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/genetics/cloning) +"cxn" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"cxo" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/genetics/cloning) +"cxp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/genetics) +"cxq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 9 + }, +/area/medical/genetics) +"cxr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/genetics) +"cxs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cxt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/genetics) +"cxu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 5 + }, +/area/medical/genetics) +"cxv" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/genetics) +"cxw" = ( +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/stack/packageWrap, +/obj/item/pen, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/table/glass, +/turf/open/floor/plasteel/blue/side{ + dir = 8 + }, +/area/medical/genetics) +"cxx" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/blue/corner{ + dir = 4 + }, +/area/medical/genetics) +"cxy" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = 28 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 5 + }, +/area/medical/genetics) +"cxz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=10.1-Central-from-Aft"; + location = "10-Aft-To-Central" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cxA" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxB" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=9.1-Escape-1"; + location = "8.1-Aft-to-Escape" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"cxC" = ( +/obj/machinery/door/poddoor/shutters{ + id = "Skynet_launch"; + name = "Mech Bay" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cxD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cxE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"cxF" = ( +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"cxG" = ( +/obj/machinery/camera{ + c_tag = "Mech Bay"; + dir = 8; + network = list("SS13","RD") + }, +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"cxH" = ( +/turf/open/floor/plating, +/area/science/misc_lab/range) +"cxI" = ( +/obj/machinery/camera{ + c_tag = "Research Testing Range"; + dir = 8; + network = list("SS13","RD"); + pixel_y = -22 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"cxJ" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"cxK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage"; + req_access_txt = "8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/storage) +"cxL" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/aft) +"cxM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cxN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"cxO" = ( +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cxP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cxQ" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"cxR" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cxS" = ( +/obj/item/latexballon, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cxT" = ( +/obj/item/clothing/suit/ianshirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cxU" = ( +/turf/closed/wall, +/area/medical/medbay/aft) +"cxV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/aft) +"cxW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cxX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/medbay/aft) +"cxY" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "CloningDoor"; + name = "Cloning Lab"; + req_access_txt = "5; 68" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue, +/area/medical/genetics/cloning) +"cxZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/genetics/cloning) +"cya" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics/cloning) +"cyb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/genetics/cloning) +"cyc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Genetics Lab"; + req_access_txt = "5; 9; 68" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue, +/area/medical/genetics) +"cyd" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/genetics) +"cye" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cyf" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cyg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cyh" = ( +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/medical/genetics) +"cyi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + id_tag = "AuxGenetics"; + locked = 0; + name = "Genetics Lab"; + req_access_txt = "9"; + req_one_access_txt = "0" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"cyj" = ( +/turf/open/floor/plasteel/blue/side{ + dir = 8 + }, +/area/medical/genetics) +"cyk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"cyl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 4 + }, +/area/medical/genetics) +"cym" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + id_tag = "AuxGenetics"; + locked = 0; + name = "Genetics Access"; + req_access_txt = "9"; + req_one_access_txt = "0" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"cyn" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cyo" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"cyp" = ( +/obj/machinery/door/poddoor/shutters{ + id = "Skynet_launch"; + name = "Mech Bay" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cyq" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cyr" = ( +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"cys" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/landmark/start/roboticist, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"cyt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"cyu" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"cyv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cyw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cyx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cyy" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall, +/area/science/mixing) +"cyz" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/structure/closet/l3closet/scientist{ + pixel_x = -2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyA" = ( +/obj/structure/closet/wardrobe/science_white, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyB" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyC" = ( +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyD" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyE" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Toxins - Lab"; + dir = 2; + network = list("SS13","RD") + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyF" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyG" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyJ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cyK" = ( +/turf/closed/wall/r_wall, +/area/science/mixing) +"cyM" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/circuit) +"cyN" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/medbay/aft) +"cyO" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/medbay/aft) +"cyP" = ( +/obj/machinery/vending/coffee, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/medbay/aft) +"cyQ" = ( +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/obj/machinery/vending/cola/random, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/medbay/aft) +"cyR" = ( +/obj/machinery/vending/cigarette, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/medbay/aft) +"cyT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cyU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 28 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/medical/medbay/aft) +"cyV" = ( +/obj/machinery/button/door{ + desc = "A remote control switch for the cloning door."; + id = "CloningDoor"; + name = "Cloning Exit Button"; + normaldoorcontrol = 1; + pixel_x = -23; + pixel_y = 8 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 10 + }, +/area/medical/genetics/cloning) +"cyW" = ( +/obj/effect/landmark/start/geneticist, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 2 + }, +/area/medical/genetics/cloning) +"cyX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/power/apc{ + dir = 4; + locked = 0; + name = "Cloning Lab APC"; + areastring = "/area/medical/genetics/cloning"; + pixel_x = 24 + }, +/obj/structure/cable/yellow, +/obj/machinery/camera{ + c_tag = "Genetics Cloning Lab"; + dir = 8; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 6 + }, +/area/medical/genetics/cloning) +"cyY" = ( +/turf/open/floor/plasteel/whiteblue/side{ + dir = 10 + }, +/area/medical/genetics) +"cyZ" = ( +/turf/open/floor/plasteel/whiteblue/side{ + dir = 2 + }, +/area/medical/genetics) +"cza" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 6 + }, +/area/medical/genetics) +"czb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 10 + }, +/area/medical/genetics) +"czc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 0 + }, +/area/medical/genetics) +"czd" = ( +/obj/machinery/light_switch{ + pixel_x = 23 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/blue/side{ + dir = 6 + }, +/area/medical/genetics) +"cze" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/genetics) +"czf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"czg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"czh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/button/door{ + dir = 2; + id = "Skynet_launch"; + name = "Mech Bay Door Control"; + pixel_x = 26; + pixel_y = 6; + req_one_access_txt = "29" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"czi" = ( +/obj/machinery/button/door{ + dir = 2; + id = "Skynet_launch"; + name = "Mech Bay Door Control"; + pixel_x = -26; + pixel_y = 6 + }, +/obj/machinery/light_switch{ + pixel_x = -23; + pixel_y = -2 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"czj" = ( +/turf/open/floor/mech_bay_recharge_floor, +/area/science/robotics/mechbay) +"czk" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"czl" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/paper/guides/jobs/security/range{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"czm" = ( +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "door"; + req_access_txt = "0" + }, +/turf/open/floor/engine{ + dir = 9; + icon_state = "floor" + }, +/area/science/misc_lab/range) +"czn" = ( +/obj/structure/table/reinforced, +/obj/machinery/magnetic_controller{ + autolink = 1; + pixel_y = 3 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/clothing/ears/earmuffs, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"czo" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"czp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"czq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 2 + }, +/area/science/research) +"czr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "toxins_blastdoor"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/mixing) +"czs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"czt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"czv" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"czw" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"czx" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"czy" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"czz" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"czA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"czB" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"czC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;47" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"czD" = ( +/turf/closed/wall, +/area/science/mixing) +"czE" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/syringe, +/obj/item/pen, +/turf/open/floor/plasteel/whitegreen, +/area/medical/medbay/central) +"czF" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/science/mixing) +"czG" = ( +/obj/item/stack/rods/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/target, +/obj/item/target/syndicate, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/structure/closet/crate/secure{ + desc = "A secure crate containing various materials for building a customised test-site."; + name = "Test Site Materials Crate"; + req_access_txt = "8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/science/mixing) +"czH" = ( +/obj/machinery/airalarm/all_access{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plasteel/floorgrime, +/area/maintenance/disposal/incinerator) +"czI" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/wall, +/area/science/mixing) +"czJ" = ( +/turf/closed/wall, +/area/science/test_area) +"czK" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/test_area) +"czL" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"czN" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/medical/medbay/aft) +"czO" = ( +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"czP" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"czQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"czR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"czS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/cigbutt, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"czT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + name = "Medbay Break Room"; + req_access_txt = "5" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"czU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"czV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"czW" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Medbay Aft APC"; + areastring = "/area/medical/medbay/aft"; + pixel_x = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"czX" = ( +/obj/item/book/manual/medical_cloning{ + pixel_y = 6 + }, +/obj/item/paper, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/vault, +/area/medical/genetics/cloning) +"czY" = ( +/obj/item/storage/box/rxglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/table/glass, +/turf/open/floor/plasteel/vault, +/area/medical/genetics/cloning) +"czZ" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/vault, +/area/medical/genetics/cloning) +"cAa" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/closet/wardrobe/genetics_white, +/turf/open/floor/plasteel/vault, +/area/medical/genetics) +"cAb" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/bed/roller, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/genetics) +"cAc" = ( +/obj/structure/bed/roller, +/obj/machinery/door/window/westleft{ + dir = 1; + name = "Monkey Pen"; + pixel_y = 2; + req_access_txt = "9" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/genetics) +"cAd" = ( +/obj/machinery/light, +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "Monkey Pen"; + pixel_y = 2; + req_access_txt = "9" + }, +/obj/structure/bed/roller, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/genetics) +"cAe" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/bed/roller, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/genetics) +"cAf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/vault, +/area/medical/genetics) +"cAg" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel/vault, +/area/medical/genetics) +"cAh" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway - Middle"; + dir = 4; + network = list("SS13") + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cAi" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cAj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"cAk" = ( +/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/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cAl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cAm" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cAn" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cAo" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Mech Bay APC"; + areastring = "/area/science/robotics/mechbay"; + pixel_x = 28 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cAp" = ( +/obj/structure/rack, +/obj/item/target, +/obj/item/target, +/obj/item/target/alien, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/item/target/clown, +/obj/item/target/syndicate, +/obj/item/target/syndicate, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cAq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cAr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cAs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Research Testing Range"; + req_access_txt = "0"; + req_one_access_txt = "7;47;29" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/purple, +/area/science/misc_lab/range) +"cAt" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/research) +"cAu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cAv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 4 + }, +/area/science/research) +"cAw" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Lab"; + req_access_txt = "8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "toxins_blastdoor"; + name = "biohazard containment shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"cAx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cAy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cAz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cAA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cAB" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cAC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cAD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cAE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/effect/landmark/start/scientist, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cAF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cAG" = ( +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/scrubber, +/obj/item/storage/firstaid/toxin, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cAH" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall/r_wall, +/area/science/mixing) +"cAI" = ( +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/chair/comfy{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"cAJ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/floorgrime, +/area/science/mixing) +"cAK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"cAL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/science/mixing) +"cAM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/research{ + id_tag = "ResearchExt"; + name = "Research Division"; + req_access_txt = "0"; + req_one_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"cAN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cAO" = ( +/obj/structure/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 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cAP" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/mixing) +"cAQ" = ( +/obj/structure/window/reinforced, +/obj/item/target, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/science/test_area) +"cAS" = ( +/obj/structure/chair/stool, +/obj/item/device/radio/intercom{ + broadcasting = 1; + freerange = 0; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_x = -30 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cAT" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cAU" = ( +/obj/item/cigbutt, +/obj/machinery/holopad, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cAV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cAW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cAX" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay/aft) +"cAY" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 1 + }, +/area/medical/medbay/aft) +"cAZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cBa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + broadcasting = 1; + freerange = 0; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medbay)"; + pixel_x = 30 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cBb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/medical/genetics/cloning) +"cBc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/centcom{ + name = "Genetics"; + opacity = 1; + req_access_txt = "9" + }, +/turf/open/floor/plasteel/dark, +/area/medical/genetics) +"cBd" = ( +/obj/structure/sign/directions/evac, +/turf/closed/wall, +/area/hallway/primary/aft) +"cBe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cBf" = ( +/obj/structure/sign/directions/evac, +/turf/closed/wall, +/area/science/robotics/mechbay) +"cBg" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cBh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cBi" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 28 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cBj" = ( +/obj/structure/table, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/item/clothing/glasses/science, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cBk" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "researchrangeshutters"; + name = "Blast Door Control"; + pixel_y = -24; + req_access_txt = "0" + }, +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cBl" = ( +/obj/item/gun/energy/laser/practice, +/obj/machinery/power/apc{ + dir = 2; + name = "Research Firing Range APC"; + areastring = "/area/science/misc_lab/range"; + pixel_y = -28 + }, +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cBm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "researchrangeshutters"; + name = "blast door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"cBn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"cBo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cBp" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 4 + }, +/area/science/research) +"cBq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "toxins_blastdoor"; + name = "biohazard containment door" + }, +/turf/open/floor/plating, +/area/science/mixing) +"cBr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cBs" = ( +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cBt" = ( +/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_y = 2 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBu" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/scientist, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBv" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cBx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cBy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cBz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cBA" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cBB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room Access"; + req_access_txt = "8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "toxins_blastdoor"; + name = "biohazard containment shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"cBE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"cBF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"cBG" = ( +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBJ" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBK" = ( +/obj/machinery/light/small, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBL" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/button/massdriver{ + dir = 2; + id = "toxinsdriver"; + pixel_x = 24; + pixel_y = -24 + }, +/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 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cBM" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/wall, +/area/science/test_area) +"cBN" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cBO" = ( +/obj/item/device/flashlight/lamp, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cBP" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cBQ" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"cBR" = ( +/turf/closed/wall/r_wall, +/area/medical/virology) +"cBS" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/virology) +"cBT" = ( +/obj/item/cigbutt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cBU" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cBV" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -30 + }, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/table/glass, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cBW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/structure/extinguisher_cabinet{ + pixel_y = -29 + }, +/obj/machinery/camera{ + c_tag = "Medbay Break Room"; + dir = 1; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cBX" = ( +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"cBY" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cBZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cCa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/medical/medbay/aft) +"cCb" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel/white/corner{ + dir = 2 + }, +/area/medical/medbay/aft) +"cCc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel/white/side{ + dir = 2 + }, +/area/medical/medbay/aft) +"cCd" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/medical/medbay/aft) +"cCe" = ( +/turf/closed/wall, +/area/medical/morgue) +"cCf" = ( +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCg" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCi" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCj" = ( +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCk" = ( +/obj/machinery/airalarm{ + pixel_y = 32 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/paper/guides/jobs/medical/morgue{ + pixel_x = -4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCl" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cCm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel/purple/corner{ + dir = 2 + }, +/area/hallway/primary/aft) +"cCn" = ( +/turf/closed/wall/r_wall, +/area/science/robotics/mechbay) +"cCo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics_shutters"; + name = "robotics shutters" + }, +/turf/open/floor/plating, +/area/science/robotics/mechbay) +"cCp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"cCq" = ( +/turf/closed/wall/r_wall, +/area/science/robotics/lab) +"cCr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/science/research) +"cCs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/science/research) +"cCt" = ( +/obj/structure/closet/bombcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCu" = ( +/obj/item/device/assembly/signaler{ + 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, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCv" = ( +/obj/item/device/transfer_valve{ + pixel_x = -5 + }, +/obj/item/device/transfer_valve{ + pixel_x = -5 + }, +/obj/item/device/transfer_valve, +/obj/item/device/transfer_valve, +/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_y = -30; + receive_ore_updates = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCw" = ( +/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, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCy" = ( +/obj/machinery/disposal/bin{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cCA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cCB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cCC" = ( +/obj/structure/table, +/obj/item/device/assembly/igniter{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 2; + pixel_y = -1 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Toxins Lab APC"; + areastring = "/area/science/mixing"; + pixel_x = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCD" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/floorgrime, +/area/science/mixing) +"cCF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCG" = ( +/obj/machinery/door/window/southleft{ + name = "Mass Driver Door"; + req_access_txt = "7" + }, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCH" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cCI" = ( +/turf/open/floor/plating/airless, +/area/science/test_area) +"cCJ" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cCK" = ( +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cCL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cCM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cCN" = ( +/obj/machinery/camera{ + c_tag = "Medbay Hallway Aft"; + dir = 4; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/white/side{ + dir = 5 + }, +/area/medical/medbay/aft) +"cCO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cCP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cCQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/medical/medbay/aft) +"cCR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/medbay/aft) +"cCS" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cCT" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cCU" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCX" = ( +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCY" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cCZ" = ( +/obj/machinery/vending/cola/random, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cDa" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics_shutters"; + name = "robotics shutters" + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"cDb" = ( +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/machinery/button/door{ + id = "robotics_shutters"; + name = "robotics shutters control"; + pixel_x = -26; + pixel_y = 26; + req_access_txt = "29" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cDc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cDd" = ( +/obj/machinery/mecha_part_fabricator{ + dir = 2 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 20 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cDe" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/structure/rack, +/obj/item/book/manual/robotics_cyborgs{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/storage/belt/utility, +/obj/item/reagent_containers/glass/beaker/large, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cDf" = ( +/obj/machinery/mecha_part_fabricator{ + dir = 2 + }, +/obj/machinery/camera{ + c_tag = "Robotics - Fore"; + dir = 2; + network = list("SS13","RD") + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cDg" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Robotics Lab APC"; + areastring = "/area/science/robotics/lab"; + pixel_y = 25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cDh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/research{ + id_tag = "ResearchExt"; + name = "Research Division"; + req_access_txt = "0"; + req_one_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"cDi" = ( +/turf/closed/wall, +/area/science/robotics/lab) +"cDj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cDk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/science/mixing) +"cDl" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/science/mixing) +"cDm" = ( +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cDn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cDo" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cDp" = ( +/obj/structure/table, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cDq" = ( +/obj/machinery/mass_driver{ + dir = 4; + id = "toxinsdriver" + }, +/turf/open/floor/plating, +/area/science/mixing) +"cDr" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/science/mixing) +"cDs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/mixing) +"cDt" = ( +/obj/machinery/door/poddoor{ + id = "toxinsdriver"; + name = "Toxins Launcher Bay Door" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/science/mixing) +"cDu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cDv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cDw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cDx" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cDy" = ( +/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. An external light is attached to the top."; + dir = 8; + invuln = 1; + light = null; + luminosity = 3; + name = "Hardened Bomb-Test Camera"; + network = list("Toxins"); + use_power = 0 + }, +/obj/item/target/alien/anchored, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless{ + luminosity = 2 + }, +/area/science/test_area) +"cDz" = ( +/turf/closed/indestructible{ + desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; + icon_state = "riveted"; + name = "hyper-reinforced wall" + }, +/area/science/test_area) +"cDA" = ( +/obj/structure/bed/roller, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cDB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cDC" = ( +/obj/effect/landmark/blobstart, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cDD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cDE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/medical/virology) +"cDF" = ( +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/box/syringes, +/obj/machinery/power/apc/highcap/five_k{ + dir = 1; + name = "Virology APC"; + areastring = "/area/medical/virology"; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/table/glass, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 9 + }, +/area/medical/virology) +"cDG" = ( +/obj/item/book/manual/wiki/infections{ + pixel_y = 7 + }, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/table/glass, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 5 + }, +/area/medical/virology) +"cDH" = ( +/obj/machinery/smartfridge/chemistry/virology/preloaded, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/whitegreen, +/area/medical/virology) +"cDI" = ( +/obj/machinery/reagentgrinder{ + pixel_y = 8 + }, +/obj/structure/table/glass, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 9 + }, +/area/medical/virology) +"cDJ" = ( +/obj/item/clothing/gloves/color/latex, +/obj/item/device/healthanalyzer, +/obj/item/clothing/glasses/hud/health, +/obj/structure/reagent_dispensers/virusfood{ + pixel_y = 30 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 5 + }, +/area/medical/virology) +"cDK" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cDL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cDM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"cDN" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cDO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cDP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cDQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/medbay/aft) +"cDR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cDS" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cDT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/medical/medbay/aft) +"cDU" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/medbay/aft) +"cDV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cDW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cDX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/centcom{ + name = "Morgue"; + opacity = 1; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cDY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cDZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEb" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEc" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEd" = ( +/obj/structure/table, +/obj/machinery/power/apc{ + dir = 4; + name = "Morgue APC"; + areastring = "/area/medical/morgue"; + pixel_x = 26 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/clothing/gloves/color/latex, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/morgue) +"cEf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/hallway/primary/aft) +"cEg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/aft) +"cEh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/purple/side{ + dir = 4 + }, +/area/hallway/primary/aft) +"cEi" = ( +/turf/open/floor/plasteel/purple, +/area/science/robotics/lab) +"cEj" = ( +/obj/structure/table/reinforced, +/obj/item/pen, +/obj/machinery/door/window/eastright{ + dir = 4; + name = "Robotics Desk"; + req_access_txt = "29" + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics_shutters"; + name = "robotics shutters" + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"cEk" = ( +/obj/effect/landmark/start/roboticist, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cEl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cEm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cEn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cEo" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/item/device/assembly/flash/handheld, +/obj/machinery/ai_status_display{ + pixel_x = 32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cEp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/science/research) +"cEq" = ( +/obj/structure/lattice, +/turf/open/space, +/area/science/mixing) +"cEr" = ( +/obj/machinery/door/poddoor{ + id = "mixvent"; + name = "Mixer Room Vent" + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"cEs" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"cEt" = ( +/obj/machinery/sparker{ + dir = 2; + id = "mixingsparker"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"cEu" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"cEv" = ( +/obj/machinery/airlock_sensor{ + id_tag = "tox_airlock_sensor"; + master_tag = "tox_airlock_control"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + on = 1 + }, +/turf/open/floor/engine, +/area/science/mixing) +"cEw" = ( +/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; + sanitize_external = 1; + sensor_tag = "tox_airlock_sensor" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cEx" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "manual outlet valve" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cEy" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cEz" = ( +/obj/structure/closet/wardrobe/grey, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cEA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/space/nearstation) +"cEB" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cEC" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cED" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port/aft) +"cEE" = ( +/turf/closed/wall, +/area/medical/virology) +"cEF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/medical/virology) +"cEG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Test Subject Cell"; + req_access_txt = "39" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cEH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/medical/virology) +"cEI" = ( +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/structure/sign/warning/deathsposal{ + pixel_x = -30 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/virology) +"cEJ" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 4 + }, +/area/medical/virology) +"cEK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/virology) +"cEL" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/virologist, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 1 + }, +/area/medical/virology) +"cEM" = ( +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/pen/red, +/obj/machinery/requests_console{ + department = "Virology"; + name = "Virology Requests Console"; + pixel_x = 29; + receive_ore_updates = 1 + }, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/structure/table/glass, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/virology) +"cEN" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;5;39;6" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cEO" = ( +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/medical/medbay/aft) +"cEP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cEQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/medical/medbay/aft) +"cER" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/medical/medbay/aft) +"cES" = ( +/obj/item/device/healthanalyzer{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = -30 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/medbay/aft) +"cET" = ( +/obj/machinery/vending/medical, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/medical/medbay/aft) +"cEU" = ( +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEV" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEX" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/centcom{ + name = "Morgue"; + opacity = 1; + req_access_txt = "6" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cEZ" = ( +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cFa" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cFb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cFc" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/departments/science{ + name = "\improper ROBOTICS!"; + pixel_x = 32 + }, +/turf/open/floor/plasteel/purple/corner{ + dir = 4 + }, +/area/hallway/primary/aft) +"cFd" = ( +/obj/structure/noticeboard{ + dir = 4; + pixel_x = -27 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/aug_manipulator, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cFe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cFf" = ( +/obj/effect/landmark/start/roboticist, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cFg" = ( +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cFh" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cFi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cFj" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 28; + pixel_y = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table, +/obj/item/wrench, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/obj/item/stack/cable_coil, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cFk" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Research Division Hallway - Robotics"; + dir = 4; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cFl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cFm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/research) +"cFn" = ( +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"cFo" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/research/glass{ + autoclose = 0; + frequency = 1449; + heat_proof = 1; + id_tag = "tox_airlock_exterior"; + name = "Mixing Room Exterior Airlock"; + req_access_txt = "8" + }, +/turf/open/floor/engine, +/area/science/mixing) +"cFp" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{ + dir = 2; + frequency = 1449; + id = "tox_airlock_pump" + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/engine, +/area/science/mixing) +"cFq" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/research/glass{ + autoclose = 0; + frequency = 1449; + heat_proof = 1; + id_tag = "tox_airlock_interior"; + name = "Mixing Room Interior Airlock"; + req_access_txt = "8" + }, +/turf/open/floor/engine, +/area/science/mixing) +"cFr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cFs" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Toxins - Mixing Area"; + dir = 8; + network = list("SS13","RD") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cFu" = ( +/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 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cFv" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cFw" = ( +/obj/item/device/flashlight/lamp, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cFx" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cFy" = ( +/obj/item/device/radio/intercom{ + pixel_x = -28 + }, +/obj/structure/table/glass, +/obj/item/hand_labeler, +/obj/item/device/radio/headset/headset_med, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/camera{ + c_tag = "Virology - Cells"; + dir = 4; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 9 + }, +/area/medical/virology) +"cFz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/virology) +"cFA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/virology) +"cFB" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/virology) +"cFC" = ( +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/machinery/light_switch{ + pixel_y = 26 + }, +/obj/item/wrench, +/obj/item/restraints/handcuffs, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 5 + }, +/area/medical/virology) +"cFD" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/virology) +"cFE" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/virology) +"cFF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cFG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cFH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cFI" = ( +/obj/machinery/computer/pandemic{ + layer = 2.5; + pixel_x = -4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/virology) +"cFJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"cFK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/virology) +"cFL" = ( +/obj/structure/sign/warning/biohazard{ + pixel_y = 32 + }, +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cFM" = ( +/obj/structure/sink{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cFN" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/machinery/shower{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cFO" = ( +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cFP" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/medbay/aft) +"cFQ" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21"; + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 8 + }, +/area/medical/medbay/aft) +"cFR" = ( +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cFS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cFT" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/medical/medbay/aft) +"cFU" = ( +/obj/machinery/light/small, +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cFV" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cFW" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cFX" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light_switch{ + pixel_x = 23 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cFY" = ( +/obj/structure/closet, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cFZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/aft) +"cGa" = ( +/obj/machinery/computer/rdconsole/robotics{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Robotics"; + departmentType = 2; + name = "Robotics RC"; + pixel_x = -31; + receive_ore_updates = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGf" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGg" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cGh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cGi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/science/research) +"cGj" = ( +/obj/machinery/sparker{ + dir = 2; + id = "mixingsparker"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4; + frequency = 1441; + id = "air_in" + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"cGk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/warning/fire{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + on = 1 + }, +/turf/open/floor/engine, +/area/science/mixing) +"cGl" = ( +/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 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cGm" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "manual inlet valve" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cGn" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cGo" = ( +/obj/structure/closet/crate, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cGp" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/item/target, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/science/test_area) +"cGq" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/pen/red, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/virology) +"cGr" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGs" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGt" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/virology) +"cGv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Containment Cells"; + req_access_txt = "39" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen, +/area/medical/virology) +"cGw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/virology) +"cGx" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/holopad, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/virology) +"cGB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/virology{ + name = "Virology Access"; + req_access_txt = "39" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/whitegreen, +/area/medical/virology) +"cGC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/virology) +"cGD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/doorButtons/airlock_controller{ + idExterior = "virology_airlock_exterior"; + idSelf = "virology_airlock_control"; + idInterior = "virology_airlock_interior"; + name = "Virology Access Console"; + pixel_x = 26; + pixel_y = 26; + req_access_txt = "39" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/virology) +"cGF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + id_tag = "virology_airlock_interior"; + name = "Virology Interior Airlock"; + req_access_txt = "39" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen, +/area/medical/virology) +"cGG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/doorButtons/access_button{ + idDoor = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -26; + pixel_y = 28; + req_access_txt = "39" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cGI" = ( +/obj/machinery/doorButtons/access_button{ + idDoor = "virology_airlock_exterior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_y = 24; + req_access_txt = "39" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + id_tag = "virology_airlock_exterior"; + name = "Virology Exterior Airlock"; + req_access_txt = "39" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/whitegreen, +/area/medical/virology) +"cGJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cGK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/medbay/aft) +"cGL" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + name = "Virology Access"; + req_access_txt = "39" + }, +/turf/open/floor/plasteel/whitegreen, +/area/medical/medbay/aft) +"cGM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cGN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cGO" = ( +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cGP" = ( +/obj/machinery/door/airlock/abandoned{ + name = "Medical Surplus Storeroom"; + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cGQ" = ( +/turf/open/floor/plasteel/floorgrime, +/area/maintenance/aft) +"cGR" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/storage/backpack/duffelbag/med, +/obj/item/device/flashlight/pen{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/floor/plasteel/floorgrime, +/area/maintenance/aft) +"cGS" = ( +/obj/structure/table, +/obj/item/retractor, +/obj/item/hemostat, +/obj/item/device/healthanalyzer, +/obj/item/clothing/glasses/eyepatch, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/floorgrime, +/area/maintenance/aft) +"cGT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance{ + name = "Morgue Maintenance"; + req_access_txt = "6" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cGU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/aft) +"cGV" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/rnd/circuit_imprinter, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGW" = ( +/obj/effect/landmark/start/roboticist, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/rack, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/device/healthanalyzer{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/device/healthanalyzer{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/device/healthanalyzer{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/device/radio/headset/headset_sci{ + pixel_x = -3 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cGZ" = ( +/obj/effect/spawner/structure/window, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"cHa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"cHb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cHc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 2 + }, +/area/science/research) +"cHd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM" + }, +/turf/closed/wall/r_wall, +/area/science/server) +"cHe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/server) +"cHf" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/closed/wall/r_wall, +/area/science/server) +"cHg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"cHh" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Toxins Lab Maintenance"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "toxins_blastdoor"; + name = "biohazard containment shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cHi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"cHk" = ( +/obj/structure/cable, +/obj/machinery/power/tracker, +/turf/open/floor/plating/airless, +/area/solar/port/aft) +"cHl" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 10 + }, +/area/medical/virology) +"cHm" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/side, +/area/medical/virology) +"cHn" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen/side, +/area/medical/virology) +"cHo" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/side, +/area/medical/virology) +"cHp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 6 + }, +/area/medical/virology) +"cHq" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/medical/virology) +"cHr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 10 + }, +/area/medical/virology) +"cHs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen/side, +/area/medical/virology) +"cHt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/side, +/area/medical/virology) +"cHu" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 2 + }, +/turf/open/floor/plasteel/whitegreen/side, +/area/medical/virology) +"cHv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/machinery/camera{ + c_tag = "Virology - Lab"; + dir = 8; + network = list("SS13","Medbay") + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/light_switch{ + pixel_x = 26 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 6 + }, +/area/medical/virology) +"cHw" = ( +/obj/structure/closet/emcloset, +/obj/item/device/radio/intercom{ + pixel_x = -28 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cHx" = ( +/obj/machinery/camera{ + c_tag = "Virology - Airlock"; + dir = 1; + network = list("SS13","Medbay") + }, +/obj/machinery/light, +/obj/structure/closet/l3closet, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cHy" = ( +/obj/structure/closet/l3closet, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cHz" = ( +/obj/structure/sign/warning/biohazard{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/medbay/aft) +"cHA" = ( +/obj/machinery/camera{ + c_tag = "Virology - Entrance"; + dir = 8; + network = list("SS13","Medbay") + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/medbay/aft) +"cHB" = ( +/obj/structure/sign/warning/biohazard{ + pixel_x = -32 + }, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/storage/box/masks, +/obj/structure/table/glass, +/turf/open/floor/plasteel/whitegreen/corner{ + dir = 1 + }, +/area/medical/medbay/aft) +"cHC" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_y = -30 + }, +/obj/item/storage/box/beakers{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/bodybags, +/obj/structure/table/glass, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cHD" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/machinery/light, +/obj/item/hand_labeler, +/obj/item/pen, +/obj/item/pen, +/obj/structure/table/glass, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"cHE" = ( +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/medical/medbay/aft) +"cHF" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel/floorgrime, +/area/maintenance/aft) +"cHG" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel/floorgrime, +/area/maintenance/aft) +"cHH" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/blood, +/obj/item/reagent_containers/blood, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/dropper, +/obj/structure/sign/warning/biohazard{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/floorgrime, +/area/maintenance/aft) +"cHI" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cHJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/aft) +"cHK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/aft) +"cHL" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cHM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;5;39;6" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cHN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/primary/aft) +"cHO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cHP" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cHQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cHR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cHS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cHT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cHU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cHV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Robotics Lab"; + req_access_txt = "29"; + req_one_access_txt = "0" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/purple, +/area/science/robotics/lab) +"cHW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/research) +"cHX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"cHY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/side{ + dir = 4 + }, +/area/science/research) +"cHZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Research Division Server Room"; + req_access = null; + req_access_txt = "30" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cIa" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cIb" = ( +/obj/machinery/camera{ + c_tag = "Research Division - Server Room"; + dir = 2; + network = list("SS13","RD"); + pixel_x = 22 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Research Division Server Room APC"; + areastring = "/area/science/server"; + pixel_y = 25 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cIc" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + target_temperature = 80; + dir = 2; + on = 1 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cId" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/science/server) +"cIe" = ( +/obj/machinery/rnd/server, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"cIf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + external_pressure_bound = 140; + name = "server vent"; + pressure_checks = 0 + }, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"cIg" = ( +/turf/closed/wall/r_wall, +/area/science/server) +"cIh" = ( +/obj/structure/closet, +/obj/item/storage/box/lights/mixed, +/obj/item/device/flashlight, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cIi" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cIj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/biohazard{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cIk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cIl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cIm" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Research and Development Lab"; + req_access_txt = "0"; + req_one_access_txt = "7;29" + }, +/turf/open/floor/plasteel/whitepurple{ + dir = 4 + }, +/area/science/lab) +"cIn" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cIp" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/medical/virology) +"cIq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation B"; + req_access_txt = "39" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cIr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation A"; + req_access_txt = "39" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cIs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/closed/wall, +/area/medical/virology) +"cIt" = ( +/obj/structure/closet/wardrobe/virology_white, +/obj/item/storage/backpack/satchel/vir, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/turf/open/floor/plasteel/vault, +/area/medical/virology) +"cIu" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/blood, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood/AMinus, +/obj/item/reagent_containers/blood/BMinus{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/blood/BPlus{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OPlus{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/turf/open/floor/plasteel/vault, +/area/medical/virology) +"cIv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/vault, +/area/medical/virology) +"cIw" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/plasteel/vault, +/area/medical/virology) +"cIx" = ( +/obj/structure/closet/l3closet/virology, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/vault, +/area/medical/virology) +"cIy" = ( +/obj/structure/sign/warning/biohazard{ + pixel_x = -32 + }, +/turf/open/space, +/area/space/nearstation) +"cIz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;5;39;6" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cIA" = ( +/obj/structure/bed/roller, +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/floorgrime, +/area/maintenance/aft) +"cIB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plating, +/area/maintenance/aft) +"cIC" = ( +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/structure/rack, +/obj/item/clothing/suit/toggle/labcoat, +/obj/item/clothing/suit/apron/surgical, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/mask/breath/medical, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/aft) +"cID" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cIE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/escape{ + dir = 2 + }, +/area/hallway/primary/aft) +"cIF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/escape{ + dir = 2 + }, +/area/hallway/primary/aft) +"cIG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway - Aft"; + dir = 8; + network = list("SS13") + }, +/turf/open/floor/plasteel/escape{ + dir = 2 + }, +/area/hallway/primary/aft) +"cIH" = ( +/obj/structure/sign/directions/evac, +/turf/closed/wall/r_wall, +/area/hallway/primary/aft) +"cII" = ( +/obj/structure/table, +/obj/item/circular_saw, +/obj/item/scalpel{ + pixel_y = 12 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/item/razor{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/robotics/lab) +"cIJ" = ( +/obj/effect/landmark/start/roboticist, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"cIK" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"cIL" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/surgical_drapes, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/robotics/lab) +"cIM" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cIN" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table, +/obj/item/storage/box/bodybags{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/borg/upgrade/rename, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cIO" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/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/item/device/multitool{ + pixel_x = 3 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cIP" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/science/robotics/lab) +"cIQ" = ( +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 1 + }, +/area/science/research) +"cIR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/research) +"cIS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 4 + }, +/area/science/research) +"cIT" = ( +/turf/closed/wall, +/area/science/server) +"cIU" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cIV" = ( +/obj/structure/chair/office/light, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cIW" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cIX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Server Access"; + req_access_txt = "30" + }, +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cIY" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/telecomms/server/walkway, +/area/science/server) +"cIZ" = ( +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/manifold{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/airalarm/server{ + dir = 8; + pixel_x = 22 + }, +/turf/open/floor/plasteel/dark/telecomms/server/walkway, +/area/science/server) +"cJa" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cJb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cJc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"cJd" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cJe" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cJf" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"cJg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/bedsheet/medical, +/obj/structure/bed, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cJh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cJi" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/bedsheet/medical, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cJj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/medical/virology) +"cJk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/virology{ + name = "Break Room"; + req_access_txt = "39" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen, +/area/medical/virology) +"cJl" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Research Lab Maintenance"; + req_access_txt = "0"; + req_one_access_txt = "7;29" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJn" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJo" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/wrench, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJs" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJt" = ( +/obj/structure/rack, +/obj/item/screwdriver{ + pixel_y = 6 + }, +/obj/item/crowbar, +/obj/item/storage/pill_bottle, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/item/cigbutt, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/aft) +"cJv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Medical Surplus Storeroom"; + req_access_txt = "12"; + req_one_access_txt = "0" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cJy" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/vault, +/area/hallway/secondary/exit/departure_lounge) +"cJz" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/vault, +/area/hallway/secondary/exit/departure_lounge) +"cJA" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plasteel/vault, +/area/hallway/secondary/exit/departure_lounge) +"cJB" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault, +/area/hallway/secondary/exit/departure_lounge) +"cJC" = ( +/obj/machinery/vending/coffee, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault, +/area/hallway/secondary/exit/departure_lounge) +"cJD" = ( +/obj/machinery/vending/snack/random, +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/turf/open/floor/plasteel/vault, +/area/hallway/secondary/exit/departure_lounge) +"cJE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"cJF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cJG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/hallway/secondary/exit/departure_lounge) +"cJH" = ( +/obj/structure/table, +/obj/item/retractor, +/obj/item/hemostat, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -29 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/science/robotics/lab) +"cJJ" = ( +/obj/machinery/computer/operating{ + dir = 1; + name = "Robotics Operating Computer" + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/robotics/lab) +"cJK" = ( +/obj/structure/table, +/obj/item/device/mmi, +/obj/item/device/mmi, +/obj/item/device/mmi, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/science/robotics/lab) +"cJL" = ( +/obj/machinery/door/window/eastleft{ + dir = 1; + name = "Robotics Deliveries"; + req_access_txt = "29" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cJM" = ( +/obj/structure/closet/wardrobe/robotics_black{ + pixel_x = 2 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cJN" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/crowbar, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cJO" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 2 + }, +/area/science/research) +"cJP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 2 + }, +/area/science/research) +"cJQ" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/plasteel/whitepurple/corner{ + dir = 8 + }, +/area/science/research) +"cJR" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cJS" = ( +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/machinery/computer/rdservercontrol{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cJT" = ( +/obj/structure/table, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/science/server) +"cJU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/server) +"cJW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 1; + external_pressure_bound = 120; + name = "server vent" + }, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"cJX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"cJY" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/costume, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cJZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKa" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/science, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKb" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cKf" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cKg" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cKh" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cKi" = ( +/obj/structure/table/glass, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/paper, +/obj/item/pen/red, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 9 + }, +/area/medical/virology) +"cKj" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 29 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/virology) +"cKk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/virology) +"cKl" = ( +/obj/structure/table/glass, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/light_switch{ + pixel_y = 26 + }, +/obj/machinery/camera{ + c_tag = "Virology - Break Room"; + dir = 2; + network = list("SS13","Medbay") + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 1 + }, +/area/medical/virology) +"cKm" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/structure/table/glass, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 5 + }, +/area/medical/virology) +"cKn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/aft) +"cKp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 17 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKu" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKv" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKy" = ( +/obj/machinery/power/apc/highcap/five_k{ + dir = 1; + name = "Departure Lounge APC"; + areastring = "/area/hallway/secondary/exit/departure_lounge"; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKA" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKD" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKF" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKG" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Robotics" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cKH" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Robotics Maintenance"; + req_access_txt = "29" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKI" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/science/research) +"cKJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKK" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/abandoned{ + locked = 0; + name = "Storage Room"; + req_access_txt = "0"; + req_one_access_txt = "12;47" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKN" = ( +/obj/item/storage/box/lights/mixed, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cKO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"cKP" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/aft) +"cKQ" = ( +/obj/machinery/door/airlock/engineering{ + name = "Starboard Quarter Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cKR" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/aft) +"cKS" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/glass/beaker, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cKT" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_y = 4 + }, +/obj/item/pen/red, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cKU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/closed/wall, +/area/medical/virology) +"cKV" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 8 + }, +/area/medical/virology) +"cKW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cKX" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cKY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cKZ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/whitegreen/side{ + dir = 4 + }, +/area/medical/virology) +"cLa" = ( +/turf/closed/wall, +/area/chapel/office) +"cLb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/maintenance{ + name = "Crematorium Maintenance"; + req_access_txt = "0"; + req_one_access_txt = "27" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + name = "Chapel Office Maintenance"; + req_access_txt = "0"; + req_one_access_txt = "22" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLd" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/aft) +"cLj" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLk" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;5;39;6" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLm" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLn" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=10-Aft-To-Central"; + location = "9.4-Escape-4" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLs" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLv" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;47" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/aft) +"cLy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLC" = ( /obj/machinery/doorButtons/airlock_controller{ idExterior = "incinerator_airlock_exterior"; idInterior = "incinerator_airlock_interior"; @@ -56950,13908 +68304,22 @@ }, /turf/open/floor/plasteel/floorgrime, /area/maintenance/disposal/incinerator) -"clT" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1441; - id = "n2_in" - }, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"clU" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "n2_sensor" - }, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"clV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 1; - frequency = 1441; - id_tag = "n2_out"; - name = "n2 out" - }, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"clW" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1441; - id = "o2_in" - }, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"clX" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "o2_sensor" - }, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"clY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 1; - frequency = 1441; - id_tag = "o2_out"; - name = "o2 out" - }, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"clZ" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1441; - id = "air_in" - }, -/turf/open/floor/engine/air, -/area/engine/atmos) -"cma" = ( -/obj/machinery/air_sensor{ - frequency = 1441; - id_tag = "air_sensor" - }, -/turf/open/floor/engine/air, -/area/engine/atmos) -"cmb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/on{ - dir = 1; - frequency = 1441; - id_tag = "air_out"; - name = "air out" - }, -/turf/open/floor/engine/air, -/area/engine/atmos) -"cmc" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/engine/atmos) -"cmd" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/engine/atmos) -"cme" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"cmf" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cmg" = ( -/turf/closed/wall, -/area/medical/surgery) -"cmh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/medical/surgery) -"cmi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/surgery) -"cmj" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cmk" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/sleeper) -"cml" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cmm" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cmn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cmo" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/sleeper) -"cmp" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/whiteblue, -/area/medical/sleeper) -"cmq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 9 - }, -/area/medical/medbay/central) -"cmr" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/medbay/central) -"cms" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/medbay/central) -"cmt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/medbay/central) -"cmu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cmv" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Medbay Central APC"; - areastring = "/area/medical/medbay/central"; - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Medbay Hallway Fore"; - dir = 2; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cmw" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/medbay/central) -"cmx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cmy" = ( -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer"; - name = "Medbay Exit Button"; - normaldoorcontrol = 1; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cmz" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/medbay/central) -"cmA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/medbay/central) -"cmB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = null; - name = "Chemistry Lab"; - req_access_txt = "5; 33" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cmC" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 8 - }, -/area/medical/chemistry) -"cmD" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whiteyellow/corner{ - dir = 4 - }, -/area/medical/chemistry) -"cmE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 1 - }, -/area/medical/chemistry) -"cmF" = ( -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 5 - }, -/area/medical/chemistry) -"cmG" = ( -/obj/machinery/chem_master, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/noticeboard{ - desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; - name = "requests board"; - pixel_x = 32 - }, -/turf/open/floor/plasteel/whiteyellow{ - dir = 4 - }, -/area/medical/chemistry) -"cmH" = ( -/obj/machinery/rnd/destructive_analyzer, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cmI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cmJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/rnd/protolathe/department/science, -/turf/open/floor/plasteel, -/area/science/lab) -"cmK" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cmL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cmM" = ( -/obj/machinery/disposal/bin{ - pixel_x = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 4 - }, -/area/science/lab) -"cmN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cmO" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cmP" = ( -/obj/machinery/power/apc/highcap/ten_k{ - dir = 1; - name = "Research Division APC"; - areastring = "/area/science/research"; - pixel_y = 25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/camera{ - c_tag = "Research Division - Airlock"; - dir = 2; - network = list("SS13","RD") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cmQ" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research) -"cmR" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cmS" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cmT" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/cigbutt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cmU" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cmV" = ( -/obj/structure/chair/stool, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"cmW" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"cmX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"cmY" = ( -/obj/item/cigbutt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"cmZ" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/vending/cola/random, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"cna" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/mob/living/simple_animal/pet/dog/pug{ - desc = "It's Pugley IV, the research department's lovable pug clone. Hopefully nothing happens to this one - fourth time lucky!"; - name = "Pugley IV"; - real_name = "Pugley IV" - }, -/turf/open/floor/engine, -/area/science/explab) -"cnb" = ( -/obj/item/device/radio/beacon, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/engine, -/area/science/explab) -"cnc" = ( -/obj/machinery/rnd/experimentor, -/turf/open/floor/engine, -/area/science/explab) -"cnd" = ( -/obj/effect/landmark/blobstart, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/engine, -/area/science/explab) -"cne" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/explab) -"cnf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/engine, -/area/science/explab) -"cng" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"cnh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"cni" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 2 - }, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"cnj" = ( -/obj/machinery/door/airlock/public/glass{ - autoclose = 0; - frequency = 1449; - heat_proof = 1; - icon_state = "door_locked"; - id_tag = "incinerator_airlock_interior"; - locked = 1; - name = "Incinerator Interior Airlock"; - req_access_txt = "12" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"cnk" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"cnl" = ( -/turf/open/floor/engine/n2, -/area/engine/atmos) -"cnm" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"cnn" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - N2"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"cno" = ( -/turf/open/floor/engine/o2, -/area/engine/atmos) -"cnp" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"cnq" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - O2"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"cnr" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/engine/air, -/area/engine/atmos) -"cns" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine/air, -/area/engine/atmos) -"cnt" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - Air"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/engine/air, -/area/engine/atmos) -"cnu" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 2 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"cnv" = ( -/obj/machinery/door/airlock/atmos/glass{ - heat_proof = 1; - name = "Auxiliary Chamber"; - req_access_txt = "24" - }, -/turf/open/floor/plating, -/area/engine/atmos) -"cnw" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"cnx" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/plating/airless, -/area/engine/atmos) -"cny" = ( -/obj/machinery/vending/boozeomat, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cnz" = ( -/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/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/maintenance/port/aft) -"cnA" = ( -/obj/structure/rack, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/bottle/vermouth{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cnB" = ( -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/structure/table/wood, -/obj/structure/light_construct/small{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cnC" = ( -/obj/structure/chair/stool, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cnD" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"cnE" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cnF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cnG" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cnH" = ( -/obj/item/cigbutt, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cnI" = ( -/obj/structure/chair, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cnJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cnK" = ( -/obj/item/cigbutt, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cnL" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cnM" = ( -/obj/structure/chair, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cnN" = ( -/obj/structure/bed/roller, -/obj/item/device/radio/intercom{ - broadcasting = 1; - freerange = 0; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_x = -30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/machinery/camera{ - c_tag = "Medbay Sleepers"; - dir = 4; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 10 - }, -/area/medical/sleeper) -"cnO" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/sleeper) -"cnP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cnQ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 2 - }, -/area/medical/sleeper) -"cnR" = ( -/obj/structure/bed/roller, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 6 - }, -/area/medical/sleeper) -"cnS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/whiteblue, -/area/medical/sleeper) -"cnT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/medbay/central) -"cnU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cnV" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cnW" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cnX" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cnY" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cnZ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"coa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/turf/open/floor/plasteel/whiteyellow/corner{ - dir = 2 - }, -/area/medical/medbay/central) -"cob" = ( -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/item/storage/pill_bottle/epinephrine{ - pixel_x = 3 - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 8 - }, -/area/medical/chemistry) -"coc" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cod" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"coe" = ( -/obj/machinery/smoke_machine, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 4 - }, -/area/medical/chemistry) -"cof" = ( -/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/structure/table/glass, -/turf/open/floor/plasteel/whiteyellow{ - dir = 4 - }, -/area/medical/chemistry) -"cog" = ( -/obj/machinery/computer/rdconsole/core{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/lab) -"coh" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/lab) -"coi" = ( -/obj/item/reagent_containers/glass/beaker/sulphuric, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/rnd/circuit_imprinter/department/science, -/turf/open/floor/plasteel, -/area/science/lab) -"coj" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cok" = ( -/obj/effect/landmark/start/scientist, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"col" = ( -/obj/structure/table, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/micro_laser, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"com" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/lab) -"con" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"coo" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cop" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"coq" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"cor" = ( -/obj/item/storage/toolbox/emergency, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cos" = ( -/obj/machinery/light/small, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cot" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/device/flashlight, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cou" = ( -/obj/item/stack/packageWrap, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cov" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/item/cigbutt, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"cow" = ( -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"cox" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"coy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"coz" = ( -/obj/machinery/vending/coffee, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"coA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/engine, -/area/science/explab) -"coB" = ( -/obj/machinery/button/door{ - id = "telelab"; - name = "Test Chamber Blast Doors"; - pixel_y = -25 - }, -/turf/open/floor/engine, -/area/science/explab) -"coC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/engine, -/area/science/explab) -"coD" = ( -/obj/structure/closet, -/obj/item/storage/box/donkpockets, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"coE" = ( -/obj/structure/closet/crate, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/item/device/assembly/infra, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"coF" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/item/shard, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"coG" = ( -/obj/structure/table, -/obj/structure/sign/departments/medbay{ - pixel_y = 32 - }, -/obj/item/reagent_containers/glass/beaker/large, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"coH" = ( -/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/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"coI" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"coJ" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/syringe, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"coK" = ( -/obj/item/reagent_containers/glass/bottle/toxin{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/reagentgrinder{ - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"coL" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 2; - name = "Incinerator Output Pump"; - on = 1; - use_power = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/open/space, -/area/maintenance/disposal/incinerator) -"coM" = ( -/obj/machinery/doorButtons/access_button{ - idDoor = "incinerator_airlock_exterior"; - layer = 3.1; - idSelf = "incinerator_access_control"; - name = "Incinerator airlock control"; - pixel_x = 8; - pixel_y = -24 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/warning/fire{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - on = 1 - }, -/obj/machinery/doorButtons/access_button{ - idDoor = "incinerator_airlock_interior"; - idSelf = "incinerator_access_control"; - name = "Incinerator airlock control"; - pixel_x = 8; - pixel_y = 24 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"coN" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"coO" = ( -/obj/structure/sign/warning/fire{ - pixel_x = 32 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 2; - on = 1 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"coP" = ( -/obj/machinery/light/small, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"coQ" = ( -/obj/machinery/light/small, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"coR" = ( -/turf/open/floor/engine/air, -/area/engine/atmos) -"coS" = ( -/obj/machinery/light/small, -/turf/open/floor/engine/air, -/area/engine/atmos) -"coT" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"coU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"coV" = ( -/obj/structure/girder, -/turf/open/floor/plating/airless, -/area/engine/atmos) -"coW" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"coX" = ( -/obj/structure/closet/secure_closet/bar{ - pixel_x = -3; - pixel_y = -1; - req_access_txt = "25" - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"coY" = ( -/turf/open/floor/wood, -/area/maintenance/port/aft) -"coZ" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/port/aft) -"cpa" = ( -/obj/item/reagent_containers/glass/rag, -/obj/structure/table/wood, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/maintenance/port/aft) -"cpb" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cpc" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/port/aft) -"cpd" = ( -/obj/structure/chair/stool, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"cpe" = ( -/obj/structure/chair, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cpf" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cpg" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cph" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cpi" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cpj" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Observation"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cpk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cpl" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cpm" = ( -/obj/item/cigbutt, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 28 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cpn" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue, -/area/medical/sleeper) -"cpo" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 10 - }, -/area/medical/sleeper) -"cpp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 2 - }, -/area/medical/sleeper) -"cpq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 6 - }, -/area/medical/sleeper) -"cpr" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue, -/area/medical/sleeper) -"cps" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"cpt" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cpu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cpv" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cpw" = ( -/obj/item/device/radio/intercom{ - broadcasting = 1; - freerange = 0; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_y = -30 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cpx" = ( -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 2 - }, -/area/medical/medbay/central) -"cpy" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 2 - }, -/area/medical/medbay/central) -"cpz" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"cpA" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/whiteyellow/corner{ - dir = 2 - }, -/area/medical/medbay/central) -"cpB" = ( -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 6 - }, -/area/medical/medbay/central) -"cpC" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastright{ - name = "Chemistry Desk"; - req_access_txt = "5; 33" - }, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Chemistry Desk"; - req_access_txt = "5" - }, -/obj/item/reagent_containers/glass/bottle/morphine, -/obj/item/reagent_containers/glass/bottle/toxin{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 8 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = -5 - }, -/obj/item/reagent_containers/syringe/epinephrine, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cpD" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/chemist, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 8 - }, -/area/medical/chemistry) -"cpE" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/chemist, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cpF" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 4 - }, -/area/medical/chemistry) -"cpG" = ( -/obj/structure/table/glass, -/obj/item/folder/white{ - pixel_y = 2 - }, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/screwdriver{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/device/radio/headset/headset_med, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/whiteyellow{ - dir = 4 - }, -/area/medical/chemistry) -"cpH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cpI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway - Fore"; - dir = 8; - network = list("SS13") - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"cpJ" = ( -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/metal/fifty, -/obj/item/clothing/glasses/welding, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cpK" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/lab) -"cpL" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cpM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/chair/stool, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cpN" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cpO" = ( -/obj/structure/table, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/scanning_module, -/obj/item/stock_parts/scanning_module, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 30 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cpP" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpQ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpR" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/research) -"cpS" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"cpT" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Research Division" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cpU" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/aft) -"cpV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cpW" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cpX" = ( -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"cpY" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"cpZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"cqa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/noticeboard{ - pixel_y = -32 - }, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Research Division - Break Room"; - dir = 1; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"cqb" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"cqc" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/science/explab) -"cqd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "telelab"; - name = "test chamber blast door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/science/explab) -"cqe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "telelab"; - name = "test chamber blast door" - }, -/turf/open/floor/plating, -/area/science/explab) -"cqf" = ( -/obj/machinery/door/poddoor/preopen{ - id = "telelab"; - name = "test chamber blast door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/engine, -/area/science/explab) -"cqg" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cqh" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - locked = 0; - name = "Storage Room"; - req_access_txt = "0"; - req_one_access_txt = "12;47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cqi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cqj" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cqk" = ( -/obj/structure/rack, -/obj/item/clothing/suit/apron, -/obj/item/clothing/mask/surgical, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cql" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cqm" = ( -/obj/machinery/chem_master/condimaster{ - name = "CondiMaster Neo"; - pixel_x = -4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cqn" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/space, -/area/space/nearstation) -"cqo" = ( -/obj/machinery/door/airlock/public/glass{ - autoclose = 0; - frequency = 1449; - heat_proof = 1; - icon_state = "door_locked"; - id_tag = "incinerator_airlock_exterior"; - locked = 1; - name = "Incinerator Exterior Airlock"; - req_access_txt = "12" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"cqp" = ( -/obj/item/stack/rods{ - amount = 25 - }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"cqq" = ( -/turf/open/floor/plating/airless, -/area/engine/atmos) -"cqr" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/item/reagent_containers/glass/beaker/cryoxadone, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/dropper, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cqs" = ( -/obj/item/reagent_containers/food/drinks/ale, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cqt" = ( -/obj/structure/light_construct/small{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 30 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cqu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cqv" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/surgery) -"cqw" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/medical/surgery) -"cqx" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/medical/surgery) -"cqy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Observation"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/medical/surgery) -"cqz" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/medical/sleeper) -"cqA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"cqB" = ( -/obj/machinery/door/firedoor, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cqC" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cqD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cqE" = ( -/turf/closed/wall, -/area/crew_quarters/heads/cmo) -"cqF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "cmoprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"cqG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "cmoprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"cqH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "cmoprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"cqI" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/turf/open/floor/plating, -/area/medical/medbay/central) -"cqJ" = ( -/obj/machinery/reagentgrinder, -/obj/machinery/requests_console{ - department = "Chemistry"; - departmentType = 2; - pixel_x = -30; - receive_ore_updates = 1 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 8 - }, -/area/medical/chemistry) -"cqK" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cqL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cqM" = ( -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/structure/table/glass, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 4 - }, -/area/medical/chemistry) -"cqN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/departments/chemistry{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cqO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/departments/science{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/purple/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"cqP" = ( -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/lab) -"cqQ" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/structure/table, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cqR" = ( -/obj/structure/table, -/obj/structure/disposalpipe/segment, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/disk/tech_disk, -/obj/item/disk/tech_disk, -/obj/item/disk/design_disk, -/obj/item/disk/design_disk, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cqS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cqT" = ( -/obj/machinery/camera{ - c_tag = "Research and Development"; - dir = 8; - network = list("SS13","RD") - }, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/scanning_module{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/stock_parts/scanning_module, -/turf/open/floor/plasteel, -/area/science/lab) -"cqU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - cyclelinkeddir = 1; - id_tag = "ResearchInt"; - name = "Research Division"; - req_access_txt = "0"; - req_one_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"cqV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - cyclelinkeddir = 1; - id_tag = "ResearchInt"; - name = "Research Division"; - req_access_txt = "0"; - req_one_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"cqW" = ( -/obj/machinery/door/window/westleft{ - dir = 2; - name = "Research Division Deliveries"; - req_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"cqX" = ( -/obj/machinery/door/airlock{ - name = "Research Emergency Storage"; - req_access_txt = "0"; - req_one_access_txt = "47" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cqY" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/medical{ - name = "Research Break Room"; - req_access_txt = "0"; - req_one_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/science/research) -"cqZ" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/window/reinforced/tinted/fulltile, -/turf/open/floor/plating, -/area/science/research) -"cra" = ( -/turf/closed/wall, -/area/science/explab) -"crb" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_y = 30; - receive_ore_updates = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"crc" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/pen, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"crd" = ( -/obj/structure/table/reinforced, -/obj/item/hand_labeler, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/device/taperecorder, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cre" = ( -/obj/machinery/computer/rdconsole/experiment, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"crf" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/book/manual/experimentor, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"crg" = ( -/obj/machinery/button/door{ - id = "telelab"; - name = "Test Chamber Blast Doors"; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/bottle/charcoal{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/reagent_containers/dropper, -/obj/item/stack/medical/bruise_pack{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/stack/medical/ointment, -/obj/item/device/healthanalyzer, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"crh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cri" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"crj" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"crk" = ( -/obj/structure/rack, -/obj/item/clothing/under/color/white, -/obj/item/clothing/head/soft/mime, -/obj/item/clothing/under/color/white, -/obj/item/clothing/head/soft/mime, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/mask/surgical, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"crl" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"crm" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"crn" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"cro" = ( -/obj/machinery/chem_heater, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"crp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon{ - dir = 1; - name = "incinerator output intake" - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"crq" = ( -/obj/machinery/igniter{ - icon_state = "igniter0"; - id = "Incinerator"; - luminosity = 2; - on = 0 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"crr" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1441; - id = "air_in" - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"crs" = ( -/obj/machinery/door/poddoor{ - id = "auxincineratorvent"; - name = "Incineration Chamber Vent" - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"crt" = ( -/obj/item/device/flashlight/lamp, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cru" = ( -/obj/item/reagent_containers/food/drinks/bottle/tequila, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"crv" = ( -/obj/item/reagent_containers/food/drinks/beer, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"crw" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/port/aft) -"crx" = ( -/obj/structure/mineral_door/wood{ - name = "The Gobbetting Barmaid" - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cry" = ( -/obj/structure/table, -/obj/item/hemostat, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel, -/area/medical/surgery) -"crz" = ( -/obj/structure/table, -/obj/item/surgicaldrill, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/surgery) -"crA" = ( -/obj/structure/table, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/item/circular_saw, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/surgery) -"crB" = ( -/obj/structure/table, -/obj/item/cautery{ - pixel_x = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/razor{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/surgery) -"crC" = ( -/obj/structure/table, -/obj/item/retractor, -/turf/open/floor/plasteel, -/area/medical/surgery) -"crD" = ( -/obj/machinery/computer/med_data{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/surgery) -"crE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/surgery) -"crF" = ( -/obj/structure/table/reinforced, -/obj/item/device/radio/intercom{ - broadcasting = 1; - freerange = 0; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_x = 30 - }, -/obj/structure/bedsheetbin{ - pixel_x = 2 - }, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/obj/item/gun/syringe, -/obj/item/clothing/glasses/eyepatch, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/surgery) -"crG" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Cryogenics APC"; - areastring = "/area/medical/cryo"; - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 6; - pixel_y = 2 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/cryo) -"crH" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/closet/secure_closet/medical1{ - pixel_x = -3 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"crI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"crJ" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"crK" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"crL" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/cryo) -"crM" = ( -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"crN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"crO" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"crP" = ( -/obj/item/cartridge/medical{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/cartridge/medical{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/cartridge/medical, -/obj/item/cartridge/chemistry{ - pixel_y = 2 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"crQ" = ( -/obj/item/folder/blue, -/obj/structure/table/glass, -/obj/item/stamp/cmo, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"crR" = ( -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/clothing/glasses/hud/health, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"crS" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/item/storage/secure/safe{ - pixel_x = 5; - pixel_y = 26 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 30 - }, -/obj/item/screwdriver{ - pixel_y = 6 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"crT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"crU" = ( -/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") - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 10 - }, -/area/medical/chemistry) -"crV" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whiteyellow/corner{ - dir = 8 - }, -/area/medical/chemistry) -"crW" = ( -/obj/machinery/disposal/bin{ - pixel_x = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"crX" = ( -/obj/machinery/chem_dispenser{ - layer = 2.7 - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 4 - }, -/area/medical/chemistry) -"crY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters_2"; - name = "chemistry shutters" - }, -/turf/open/floor/plating, -/area/medical/chemistry) -"crZ" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/turf/open/floor/plasteel/yellow{ - dir = 4 - }, -/area/hallway/primary/aft) -"csa" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/hallway/primary/aft) -"csb" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"csc" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/purple/side{ - dir = 4 - }, -/area/hallway/primary/aft) -"csd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/purple, -/area/hallway/primary/aft) -"cse" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters_2"; - name = "research shutters" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/lab) -"csf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/lab) -"csg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair/stool, -/turf/open/floor/plasteel/white, -/area/science/lab) -"csh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"csi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"csj" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/lab) -"csk" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/science/lab) -"csl" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 9 - }, -/area/science/research) -"csm" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/research) -"csn" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"cso" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Research Division Hallway - Central"; - dir = 2; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"csp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"csq" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 - }, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/science/research) -"csr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/science/research) -"css" = ( -/turf/open/floor/plasteel/white/side{ - dir = 6 - }, -/area/science/research) -"cst" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/research) -"csu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/research) -"csv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"csw" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-10" - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 2 - }, -/area/science/research) -"csx" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/explab) -"csy" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"csz" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"csA" = ( -/obj/effect/landmark/start/scientist, -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"csB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/crowbar, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/glasses/science, -/obj/item/device/multitool{ - pixel_x = 3 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"csC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/science/explab) -"csD" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"csE" = ( -/obj/structure/girder, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"csF" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_y = 6 - }, -/obj/item/pen, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"csG" = ( -/obj/structure/table, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/reagent_containers/blood{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"csH" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"csI" = ( -/obj/structure/bed, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"csJ" = ( -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/compressor{ - comp_id = "incineratorturbine"; - dir = 1; - luminosity = 2 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"csK" = ( -/obj/structure/mineral_door/wood{ - name = "The Gobbetting Barmaid" - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/port/aft) -"csL" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/suit/apron/surgical, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/surgery) -"csM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"csN" = ( -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"csO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"csP" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Surgery APC"; - areastring = "/area/medical/surgery"; - pixel_x = 26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/table, -/obj/item/surgical_drapes, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/surgery) -"csQ" = ( -/obj/structure/bed/roller, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"csR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"csS" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/bedsheet/medical, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"csT" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/surgery) -"csU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/cryo) -"csV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"csW" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"csX" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 2 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel, -/area/medical/cryo) -"csY" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"csZ" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cta" = ( -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/medbay/central) -"ctb" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"ctc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"ctd" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/chief_medical_officer, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cte" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/mob/living/simple_animal/pet/cat/Runtime, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"ctf" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "CMO's Office APC"; - areastring = "/area/crew_quarters/heads/cmo"; - pixel_x = 26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/camera{ - c_tag = "CMO's Office"; - dir = 8; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"ctg" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/aft) -"cth" = ( -/obj/structure/closet/wardrobe/chemistry_white{ - pixel_x = -3 - }, -/obj/item/storage/backpack/satchel/chem, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cti" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 8 - }, -/area/medical/chemistry) -"ctj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"ctk" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/chemist, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 4 - }, -/area/medical/chemistry) -"ctl" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Chemistry Desk"; - req_access_txt = "5; 33" - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters_2"; - name = "chemistry shutters" - }, -/turf/open/floor/plasteel/whiteyellow{ - dir = 4 - }, -/area/medical/chemistry) -"ctm" = ( -/turf/open/floor/plasteel/yellow{ - dir = 4 - }, -/area/hallway/primary/aft) -"ctn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/yellow/side{ - dir = 8 - }, -/area/hallway/primary/aft) -"cto" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/purple/side{ - dir = 4 - }, -/area/hallway/primary/aft) -"ctp" = ( -/turf/open/floor/plasteel/purple, -/area/hallway/primary/aft) -"ctq" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - dir = 4; - name = "Research and Development Desk"; - req_access_txt = "7" - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/door/firedoor, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters_2"; - name = "research shutters" - }, -/turf/open/floor/plating, -/area/science/lab) -"ctr" = ( -/obj/effect/landmark/start/scientist, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/lab) -"cts" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"ctt" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"ctu" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"ctv" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 4 - }, -/area/science/lab) -"ctw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Research and Development Lab"; - req_access_txt = "0"; - req_one_access_txt = "7;29" - }, -/turf/open/floor/plasteel/whitepurple{ - dir = 4 - }, -/area/science/lab) -"ctx" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/research) -"cty" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ctz" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/research) -"ctA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ctB" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"ctC" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ctD" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ctE" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ctF" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ctG" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"ctH" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ctI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ctJ" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 4 - }, -/area/science/research) -"ctK" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Experimentation Lab"; - req_access_txt = "8" - }, -/turf/open/floor/plasteel/whitepurple{ - dir = 4 - }, -/area/science/explab) -"ctL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/explab) -"ctM" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"ctN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"ctO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"ctP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"ctQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"ctR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"ctS" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Experimentation Lab Maintenance"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ctT" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ctU" = ( -/obj/structure/bed/roller, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ctV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"ctW" = ( -/obj/structure/barricade/wooden, -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ctX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ctY" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ctZ" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/structure/rack, -/obj/item/storage/firstaid/regular, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cua" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cub" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/space, -/area/space/nearstation) -"cuc" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/maintenance/disposal/incinerator) -"cud" = ( -/obj/structure/cable, -/obj/machinery/power/turbine{ - luminosity = 2 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cue" = ( -/obj/structure/lattice/catwalk, -/obj/item/wrench, -/turf/open/space, -/area/space/nearstation) -"cuf" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/port/aft) -"cug" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/port/aft) -"cuh" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cui" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Surgery Maintenance"; - req_access_txt = "45" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cuj" = ( -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cuk" = ( -/obj/structure/table/optable, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cul" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cum" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre"; - req_access_txt = "45" - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cun" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cuo" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cup" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cuq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Surgery Observation"; - req_access_txt = "0" - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cur" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/cryo) -"cus" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cut" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cuu" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cuv" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cuw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cux" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/medbay/central) -"cuy" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cuz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "cmoprivacy"; - name = "privacy shutter" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"cuA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cuB" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cuC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cuD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cuE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cuF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "CMO Maintenance"; - req_access_txt = "40" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cuG" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cuH" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Chemistry APC"; - areastring = "/area/medical/chemistry"; - pixel_x = -24 - }, -/obj/structure/closet/secure_closet/chemical{ - pixel_x = -3 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cuI" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 10 - }, -/area/medical/chemistry) -"cuJ" = ( -/obj/machinery/chem_heater{ - pixel_x = 4 - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 2 - }, -/area/medical/chemistry) -"cuK" = ( -/obj/machinery/chem_master, -/obj/structure/noticeboard{ - desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; - dir = 1; - name = "requests board"; - pixel_y = -32 - }, -/obj/machinery/button/door{ - id = "chemistry_shutters_2"; - name = "chemistry shutters control"; - pixel_x = 26; - pixel_y = -26; - req_access_txt = "5; 33" - }, -/turf/open/floor/plasteel/whiteyellow/side{ - dir = 6 - }, -/area/medical/chemistry) -"cuL" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/turf/open/floor/plasteel/purple, -/area/hallway/primary/aft) -"cuM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters_2"; - name = "research shutters" - }, -/turf/open/floor/plating, -/area/science/lab) -"cuN" = ( -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "Research Lab APC"; - areastring = "/area/science/lab"; - pixel_y = -26 - }, -/obj/structure/cable/yellow, -/obj/structure/table, -/obj/machinery/button/door{ - id = "research_shutters_2"; - name = "research shutters control"; - pixel_x = -26; - pixel_y = -26; - req_access_txt = "7" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cuO" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cuP" = ( -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_y = -30; - receive_ore_updates = 1 - }, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cuQ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/eastleft{ - dir = 1; - name = "Research and Development Deliveries"; - req_access_txt = "7" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/lab) -"cuR" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cuS" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"cuT" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cuU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/research) -"cuV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cuW" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cuX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cuY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"cuZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cva" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Research Division Hallway - Starboard"; - dir = 1; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cvb" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cvc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cvd" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 2 - }, -/area/science/research) -"cve" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 6 - }, -/area/science/research) -"cvf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/science/explab) -"cvg" = ( -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/explab) -"cvh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "Experimentation Lab APC"; - areastring = "/area/science/explab"; - pixel_y = -24 - }, -/obj/structure/cable/yellow, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cvi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/machinery/camera{ - c_tag = "Experimentation Lab"; - dir = 1; - network = list("SS13","RD") - }, -/obj/machinery/light, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cvj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cvk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cvl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"cvm" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cvn" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cvo" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cvp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cvq" = ( -/obj/structure/barricade/wooden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cvr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cvs" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/aft) -"cvt" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cvu" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/space, -/area/space/nearstation) -"cvv" = ( -/obj/structure/disposaloutlet{ - dir = 2 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"cvw" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"cvx" = ( -/obj/machinery/door/poddoor{ - id = "turbinevent"; - name = "Turbine Vent" - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cvy" = ( -/obj/item/toy/cards/deck, -/obj/structure/table/wood/poker, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cvz" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/maintenance/port/aft) -"cvA" = ( -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/reagent_containers/food/drinks/beer{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/ale, -/obj/structure/table/wood, -/obj/item/device/instrument/eguitar, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cvB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/light_switch{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/surgery) -"cvC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cvD" = ( -/obj/machinery/computer/operating{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cvE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cvF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/surgery) -"cvG" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cvH" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cvI" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/cryo) -"cvJ" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/table/reinforced, -/obj/item/crowbar, -/obj/machinery/camera{ - c_tag = "Medbay Cryo"; - dir = 1; - network = list("SS13","Medbay") - }, -/obj/item/screwdriver{ - pixel_y = 6 - }, -/obj/item/clothing/neck/stethoscope, -/obj/item/wrench/medical, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cvK" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - broadcasting = 1; - freerange = 0; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_y = -30 - }, -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cvL" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1; - name = "Connector Port (Air Supply)" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cvM" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1; - name = "Connector Port (Air Supply)" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/medical/cryo) -"cvN" = ( -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cvO" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 2 - }, -/area/medical/medbay/central) -"cvP" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cvQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cvR" = ( -/obj/structure/table/glass, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/storage/secure/briefcase, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cvS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cvT" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/keycard_auth{ - pixel_x = 26; - pixel_y = -7 - }, -/obj/machinery/computer/med_data/laptop, -/obj/structure/table/glass, -/obj/machinery/button/door{ - id = "cmoprivacy"; - name = "Privacy Shutters Control"; - pixel_x = 26; - pixel_y = 4 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cvU" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cvV" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chemistry Lab Maintenance"; - req_access_txt = "5; 33" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cvW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -29 - }, -/turf/open/floor/plasteel/yellow/corner{ - dir = 1 - }, -/area/hallway/primary/aft) -"cvX" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cvY" = ( -/obj/machinery/power/apc/highcap/five_k{ - dir = 4; - name = "Aft Hallway APC"; - areastring = "/area/hallway/primary/aft"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/purple/corner{ - dir = 4 - }, -/area/hallway/primary/aft) -"cvZ" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Research and Development" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/lab) -"cwa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Research Lab Maintenance"; - req_access_txt = "0"; - req_one_access_txt = "7;29" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cwb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white/side{ - dir = 5 - }, -/area/science/research) -"cwc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/science/research) -"cwd" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/science/research) -"cwe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "rdprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"cwf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/door/poddoor/preopen{ - id = "rdprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"cwg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/door/poddoor/preopen{ - id = "rdprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"cwh" = ( -/turf/closed/wall, -/area/crew_quarters/heads/hor) -"cwi" = ( -/turf/closed/wall/r_wall, -/area/science/storage) -"cwj" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/r_wall, -/area/science/storage) -"cwk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/research{ - name = "Toxins Storage"; - req_access_txt = "8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "toxins_blastdoor"; - name = "biohazard containment shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"cwl" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cwm" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cwn" = ( -/obj/structure/closet/l3closet/scientist{ - pixel_x = -2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cwo" = ( -/obj/structure/closet/wardrobe/science_white, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cwp" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cwq" = ( -/obj/structure/rack, -/obj/item/reagent_containers/blood/random, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cwr" = ( -/obj/structure/table, -/obj/structure/bedsheetbin{ - pixel_x = 2 - }, -/obj/item/clothing/mask/muzzle, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cws" = ( -/obj/structure/table, -/obj/item/restraints/handcuffs/cable/white, -/obj/item/gun/syringe, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cwt" = ( -/obj/structure/rack, -/obj/item/hatchet, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cwu" = ( -/obj/machinery/iv_drip, -/obj/item/roller, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cwv" = ( -/obj/structure/rack, -/obj/item/tank/internals/anesthetic, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cww" = ( -/obj/structure/light_construct/small, -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cwx" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"cwy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"cwz" = ( -/obj/item/dice/d20, -/obj/item/dice, -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cwA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/port/aft) -"cwB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cwC" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -28 - }, -/turf/open/floor/plasteel, -/area/medical/surgery) -"cwD" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/surgery) -"cwE" = ( -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Medbay Surgery"; - dir = 1; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cwF" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/surgery) -"cwG" = ( -/obj/item/device/radio/intercom{ - broadcasting = 1; - freerange = 0; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_y = -30 - }, -/obj/structure/closet/crate/freezer/blood, -/turf/open/floor/plasteel, -/area/medical/surgery) -"cwH" = ( -/obj/structure/bed/roller, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -28 - }, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 2 - }, -/area/medical/surgery) -"cwI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 2 - }, -/area/medical/surgery) -"cwJ" = ( -/obj/structure/bed, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/item/bedsheet/medical, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/camera{ - c_tag = "Medbay Recovery Room"; - dir = 1; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 2 - }, -/area/medical/surgery) -"cwK" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cwL" = ( -/turf/closed/wall, -/area/medical/cryo) -"cwM" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/camera{ - c_tag = "Medbay Hallway Central"; - dir = 4; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"cwN" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cwO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/medbay/central) -"cwP" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Chief Medical Officer's Office"; - req_access_txt = "40"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cwQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cwR" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cwS" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/table/glass, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/pen, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cwT" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Medical Officer's Desk"; - departmentType = 5; - name = "Chief Medical Officer RC"; - pixel_y = -32 - }, -/obj/effect/landmark/start/chief_medical_officer, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cwU" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring medbay to ensure patient safety."; - dir = 8; - name = "Medbay Monitor"; - network = list("Medbay"); - pixel_x = 29 - }, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/obj/machinery/computer/card/minor/cmo{ - dir = 8 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cwV" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/aft) -"cwW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cwX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/aft) -"cwY" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 11 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cwZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxa" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;5;9" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cxe" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cxf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"cxg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Aft Emergency Storage"; - req_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxh" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 14 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "7;47;29;12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxm" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 12 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Research Maintenance"; - req_access_txt = "0"; - req_one_access_txt = "7;47;29" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxq" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"cxr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 13 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cxs" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"cxt" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "rdprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"cxu" = ( -/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_y = 2 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cxv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cxw" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Research Director's Desk"; - departmentType = 5; - name = "Research Director RC"; - pixel_y = 30; - receive_ore_updates = 1 - }, -/obj/machinery/modular_computer/console/preset/research{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cxx" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/effect/landmark/xmastree/rdrod, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/hor) -"cxy" = ( -/obj/structure/displaycase/labcage, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/warning/biohazard{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/hor) -"cxz" = ( -/obj/item/storage/secure/safe{ - pixel_x = 32 - }, -/obj/machinery/ai_status_display{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/hor) -"cxA" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"cxB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"cxC" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"cxD" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/power/apc/highcap/five_k{ - dir = 1; - name = "Toxins Storage APC"; - areastring = "/area/science/storage"; - pixel_y = 25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"cxE" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"cxF" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cxG" = ( -/obj/machinery/camera{ - active_power_usage = 0; - c_tag = "Turbine Vent"; - dir = 4; - network = list("Turbine"); - use_power = 0 - }, -/turf/open/space, -/area/space/nearstation) -"cxH" = ( -/obj/structure/grille/broken, -/turf/open/space, -/area/space/nearstation) -"cxI" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cxJ" = ( -/obj/machinery/vending/assist, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cxK" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/patients_rooms/room_a) -"cxL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/vending/wallmed{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms/room_a) -"cxM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/patients_rooms/room_a) -"cxN" = ( -/obj/machinery/door/airlock/medical{ - name = "Patient Room A"; - req_access_txt = "5" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms/room_a) -"cxO" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cxP" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cxQ" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = -28 - }, -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cxR" = ( -/obj/machinery/suit_storage_unit/cmo, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cxS" = ( -/obj/structure/table/glass, -/obj/item/pen, -/obj/item/clothing/neck/stethoscope, -/obj/structure/extinguisher_cabinet{ - pixel_x = 6; - pixel_y = -30 - }, -/turf/open/floor/plasteel/barber{ - dir = 8 - }, -/area/crew_quarters/heads/cmo) -"cxT" = ( -/turf/closed/wall/r_wall, -/area/medical/genetics) -"cxU" = ( -/turf/closed/wall, -/area/medical/genetics) -"cxV" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Genetics Maintenance"; - req_access_txt = "9"; - req_one_access_txt = "0" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxW" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall, -/area/medical/genetics) -"cxX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/blue/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cxY" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cxZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"cya" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall, -/area/maintenance/aft) -"cyb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cyc" = ( -/obj/item/storage/toolbox/emergency, -/obj/structure/closet/firecloset, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cyd" = ( -/obj/item/tank/internals/air, -/obj/item/tank/internals/air, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/machinery/space_heater, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cye" = ( -/turf/closed/wall, -/area/maintenance/aft) -"cyf" = ( -/turf/closed/wall/r_wall, -/area/science/misc_lab/range) -"cyg" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Research Testing Range Maintenance"; - req_access_txt = "0"; - req_one_access_txt = "7;47;29" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cyh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 6 - }, -/area/science/research) -"cyi" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/research) -"cyj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"cyk" = ( -/obj/machinery/button/door{ - id = "xeno_blastdoor"; - name = "Secure Lab Shutter Control"; - pixel_x = -5; - pixel_y = -5; - req_access_txt = "47" - }, -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "rdprivacy"; - name = "Privacy Shutters Control"; - pixel_x = 5; - pixel_y = 5 - }, -/obj/machinery/button/door{ - id = "Biohazard"; - name = "Entrance Shutter Control"; - pixel_x = -5; - pixel_y = 5; - req_access_txt = "47" - }, -/obj/machinery/button/door{ - id = "toxins_blastdoor"; - name = "Toxins Shutter Control"; - pixel_x = 5; - pixel_y = -5; - req_access_txt = "47" - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cyl" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/research_director, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cym" = ( -/obj/machinery/computer/robotics{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cyn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/hor) -"cyo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/hor) -"cyp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/hor) -"cyq" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"cyr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"cys" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/chair/stool, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"cyt" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"cyu" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"cyv" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cyw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cyx" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cyy" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/science/circuit) -"cyz" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cyA" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cyB" = ( -/obj/structure/target_stake, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cyC" = ( -/obj/structure/closet/crate, -/obj/item/target/alien, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/item/target/clown, -/obj/item/target/syndicate, -/obj/item/target/syndicate, -/obj/item/gun/energy/laser/practice, -/obj/item/gun/energy/laser/practice, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cyD" = ( -/obj/structure/falsewall, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cyE" = ( -/obj/structure/reagent_dispensers/beerkeg{ - desc = "One of the more successful achievements of the Nanotrasen Corporate Warfare Division, their nuclear fission explosives are renowned for being cheap to produce and devastatingly effective. Signs explain that though this particular device has been decommissioned, every Nanotrasen station is equipped with an equivalent one, just in case. All Captains carefully guard the disk needed to detonate them - at least, the sign says they do. There seems to be a tap on the back."; - icon = 'icons/obj/machines/nuke.dmi'; - icon_state = "nuclearbomb_base"; - name = "Nanotrasen-brand nuclear fission explosive"; - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cyF" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/space) -"cyG" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"cyH" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/solar{ - id = "aftport"; - name = "Aft-Port Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port/aft) -"cyI" = ( -/obj/structure/closet, -/obj/item/extinguisher, -/obj/effect/decal/cleanable/cobweb, -/obj/item/device/flashlight, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cyJ" = ( -/obj/structure/closet, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/dropper, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cyK" = ( -/obj/structure/closet/crate, -/obj/item/stack/cable_coil, -/obj/item/grenade/chem_grenade, -/obj/item/device/flashlight, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cyL" = ( -/obj/structure/closet/crate, -/obj/item/coin/silver, -/obj/item/reagent_containers/spray/weedspray, -/obj/item/paper, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cyM" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Port Quarter Maintenance APC"; - areastring = "/area/maintenance/port/aft"; - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cyN" = ( -/obj/structure/table, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/clothing/neck/stethoscope, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Patient Room A APC"; - areastring = "/area/medical/patients_rooms/room_a"; - pixel_x = -26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/patients_rooms/room_a) -"cyO" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms/room_a) -"cyP" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/button/door{ - id = "isola"; - name = "Privacy Shutters"; - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/patients_rooms/room_a) -"cyQ" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "isola"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/medical/patients_rooms/room_a) -"cyR" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cyS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cyT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cyU" = ( -/obj/item/storage/box/rxglasses{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -29 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/vault, -/area/medical/genetics) -"cyV" = ( -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/gloves/color/latex, -/obj/item/storage/box/disks{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/vault, -/area/medical/genetics) -"cyW" = ( -/obj/machinery/requests_console{ - department = "Genetics"; - departmentType = 0; - name = "Genetics Requests Console"; - pixel_y = 30 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/storage/box/monkeycubes, -/obj/item/device/radio/headset/headset_medsci, -/obj/item/device/flashlight/pen{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/device/flashlight/pen{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/structure/noticeboard{ - desc = "A board for pinning important notices upon."; - name = "notice board"; - pixel_x = -32; - pixel_y = 32 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/vault, -/area/medical/genetics) -"cyX" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Genetics Lab APC"; - areastring = "/area/medical/genetics"; - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/storage/pill_bottle/mutadone, -/obj/item/storage/pill_bottle/mannitol, -/obj/structure/table/glass, -/turf/open/floor/plasteel/vault, -/area/medical/genetics) -"cyY" = ( -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/vault, -/area/medical/genetics) -"cyZ" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel/blue/side{ - dir = 9 - }, -/area/medical/genetics) -"cza" = ( -/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 = 32 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/blue/side{ - dir = 5 - }, -/area/medical/genetics) -"czb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "genetics_shutters"; - name = "genetics shutters" - }, -/turf/open/floor/plating, -/area/medical/genetics) -"czc" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/turf/open/floor/plasteel/blue, -/area/medical/genetics) -"czd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/blue/side{ - dir = 8 - }, -/area/hallway/primary/aft) -"cze" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/aft) -"czf" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/wrench, -/turf/open/floor/plating, -/area/maintenance/aft) -"czg" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/storage/box/lights/mixed, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"czh" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"czi" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"czj" = ( -/turf/open/floor/engine{ - dir = 9; - icon_state = "floor" - }, -/area/science/misc_lab/range) -"czk" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"czl" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 5 - }, -/area/science/research) -"czm" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"czn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 2 - }, -/area/science/research) -"czo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/obj/machinery/door/poddoor/preopen{ - id = "rdprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"czp" = ( -/obj/machinery/computer/card/minor/rd{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"czq" = ( -/obj/machinery/computer/mecha{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"czr" = ( -/obj/structure/table, -/obj/item/device/aicard, -/obj/item/circuitboard/aicore{ - pixel_x = -2; - pixel_y = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"czs" = ( -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"czt" = ( -/obj/structure/table, -/obj/item/device/taperecorder{ - pixel_x = -3 - }, -/obj/item/device/paicard{ - pixel_x = 4 - }, -/obj/item/storage/secure/briefcase, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"czu" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"czv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"czw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"czx" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"czy" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Toxins Storage"; - dir = 8; - network = list("SS13","RD") - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"czz" = ( -/obj/structure/rack, -/obj/item/extinguisher, -/obj/item/storage/belt/utility, -/obj/item/clothing/mask/gas, -/obj/item/storage/box/lights/mixed, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"czA" = ( -/turf/closed/wall/r_wall, -/area/science/circuit) -"czB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/research/glass{ - name = "Circuitry Lab"; - req_access_txt = "47" - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"czC" = ( -/turf/closed/wall, -/area/science/circuit) -"czD" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"czE" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"czF" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"czG" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"czH" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"czI" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"czJ" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"czK" = ( -/obj/structure/closet/crate, -/obj/item/crowbar/red, -/obj/item/pen, -/obj/item/device/flashlight/pen{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"czL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"czM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"czN" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"czO" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"czP" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"czQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"czR" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"czS" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"czT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/medical/patients_rooms/room_a) -"czU" = ( -/turf/closed/wall, -/area/medical/patients_rooms/room_a) -"czV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/departments/examroom{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"czW" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"czX" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"czY" = ( -/turf/closed/wall, -/area/medical/genetics/cloning) -"czZ" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/door/window/southleft{ - dir = 2; - name = "Cloning Shower" - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/vault, -/area/medical/genetics/cloning) -"cAa" = ( -/obj/machinery/door/window/southleft{ - base_state = "right"; - dir = 2; - icon_state = "right"; - name = "Cloning Shower" - }, -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "sink"; - pixel_y = 28 - }, -/turf/open/floor/plasteel/vault, -/area/medical/genetics/cloning) -"cAb" = ( -/obj/machinery/clonepod{ - pixel_y = 2 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/vault, -/area/medical/genetics/cloning) -"cAc" = ( -/obj/machinery/computer/scan_consolenew{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Genetics Lab"; - dir = 4; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/whiteblue, -/area/medical/genetics) -"cAd" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/geneticist, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 9 - }, -/area/medical/genetics) -"cAe" = ( -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/genetics) -"cAf" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/geneticist, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 5 - }, -/area/medical/genetics) -"cAg" = ( -/obj/machinery/computer/scan_consolenew{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue, -/area/medical/genetics) -"cAh" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/storage/box/syringes, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/blue/side{ - dir = 8 - }, -/area/medical/genetics) -"cAi" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/geneticist, -/turf/open/floor/plasteel/blue/side{ - dir = 4 - }, -/area/medical/genetics) -"cAj" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/pen, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Genetics Desk"; - req_access_txt = "5;9" - }, -/obj/machinery/door/window/southleft{ - dir = 4; - name = "Outer Window" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "genetics_shutters"; - name = "genetics shutters" - }, -/turf/open/floor/plating, -/area/medical/genetics) -"cAk" = ( -/turf/open/floor/plasteel/blue, -/area/medical/genetics) -"cAl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/blue/side{ - dir = 8 - }, -/area/hallway/primary/aft) -"cAm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"cAn" = ( -/turf/closed/wall, -/area/science/robotics/mechbay) -"cAo" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mech Bay Maintenance"; - req_access_txt = "29" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/aft) -"cAp" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_x = -29 - }, -/turf/open/floor/engine{ - dir = 9; - icon_state = "floor" - }, -/area/science/misc_lab/range) -"cAq" = ( -/obj/machinery/magnetic_module, -/obj/effect/landmark/blobstart, -/obj/structure/target_stake, -/obj/effect/turf_decal/bot{ - dir = 9 - }, -/turf/open/floor/plasteel{ - dir = 9 - }, -/area/science/misc_lab/range) -"cAr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "researchrangeshutters"; - name = "blast door" - }, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"cAs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"cAt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cAu" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/science/research) -"cAv" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Research Director's Office"; - req_access_txt = "30"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cAw" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cAx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cAy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cAz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cAA" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cAB" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"cAC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"cAD" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"cAE" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"cAF" = ( -/obj/structure/reagent_dispensers/watertank/high, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cAG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"cAH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"cAI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"cAJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"cAK" = ( -/obj/machinery/airalarm{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cAL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cAM" = ( -/obj/item/device/multitool, -/obj/item/screwdriver, -/obj/structure/table/reinforced, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cAN" = ( -/obj/structure/table/reinforced, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - dir = 2; - name = "Science Requests Console"; - pixel_y = 30; - receive_ore_updates = 1 - }, -/obj/item/device/integrated_electronics/debugger, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cAO" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/stock_parts/cell/super, -/obj/item/stock_parts/cell/super, -/obj/item/stack/sheet/metal/fifty, -/obj/structure/table/reinforced, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/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_y = 32 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cAP" = ( -/obj/item/screwdriver, -/obj/structure/table/reinforced, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cAQ" = ( -/obj/machinery/power/apc{ - areastring = "/area/science/circuit"; - dir = 1; - name = "Circuitry Lab APC"; - pixel_y = 30 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/table/reinforced, -/obj/item/device/multitool, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cAR" = ( -/obj/item/stock_parts/cell/super, -/obj/item/stock_parts/cell/super, -/obj/item/stack/sheet/metal/fifty, -/obj/structure/table/reinforced, -/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_y = 32 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cAS" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "aftport"; - name = "Aft-Port Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port/aft) -"cAT" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"cAU" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"cAV" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cAW" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cAX" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cAY" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cAZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cBa" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cBb" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cBc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cBd" = ( -/obj/structure/rack, -/obj/item/clothing/glasses/sunglasses, -/obj/item/device/flashlight/pen, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cBe" = ( -/obj/structure/table, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/clothing/neck/stethoscope, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Patient Room B APC"; - areastring = "/area/medical/patients_rooms/room_b"; - pixel_x = -26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/patients_rooms/room_b) -"cBf" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/vending/wallmed{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms/room_b) -"cBg" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/button/door{ - id = "isolb"; - name = "Privacy Shutters"; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/patients_rooms/room_b) -"cBh" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "isolb"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/medical/patients_rooms/room_b) -"cBi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/aft) -"cBj" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cBk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cBl" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 9 - }, -/area/medical/genetics/cloning) -"cBm" = ( -/obj/effect/landmark/start/geneticist, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 1 - }, -/area/medical/genetics/cloning) -"cBn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/machinery/computer/cloning{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 5 - }, -/area/medical/genetics/cloning) -"cBo" = ( -/obj/machinery/dna_scannernew, -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/turf/open/floor/plasteel/whiteblue, -/area/medical/genetics) -"cBp" = ( -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/genetics) -"cBq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cBr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/genetics) -"cBs" = ( -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel/whiteblue, -/area/medical/genetics) -"cBt" = ( -/obj/item/storage/box/disks{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -29 - }, -/obj/machinery/camera{ - c_tag = "Genetics Desk"; - dir = 4; - network = list("SS13","Medbay") - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/blue/side{ - dir = 8 - }, -/area/medical/genetics) -"cBu" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/button/door{ - id = "genetics_shutters"; - name = "genetics shutters control"; - pixel_x = 28; - req_access_txt = "9" - }, -/turf/open/floor/plasteel/blue/side{ - dir = 4 - }, -/area/medical/genetics) -"cBv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel/blue/corner{ - dir = 1 - }, -/area/hallway/primary/aft) -"cBw" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -28 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cBx" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/science/robotics/mechbay) -"cBy" = ( -/obj/structure/sign/warning/electricshock{ - pixel_y = 31 - }, -/turf/open/floor/mech_bay_recharge_floor, -/area/science/robotics/mechbay) -"cBz" = ( -/obj/machinery/computer/mech_bay_power_console, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"cBA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cBB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cBC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Research Division Hallway - Mech Bay"; - dir = 4; - network = list("SS13","RD") - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/white/side{ - dir = 6 - }, -/area/science/research) -"cBD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/research) -"cBE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/science/research) -"cBF" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "RD Office APC"; - areastring = "/area/crew_quarters/heads/hor"; - pixel_y = -27 - }, -/obj/structure/cable/yellow, -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/obj/item/twohanded/required/kirbyplants/dead, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cBG" = ( -/obj/item/paper_bin{ - pixel_y = 7 - }, -/obj/structure/table, -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/obj/item/stamp/rd{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/folder/white{ - pixel_x = 9; - pixel_y = -1 - }, -/obj/item/pen, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cBH" = ( -/obj/structure/table, -/obj/item/cartridge/signal/toxins, -/obj/item/cartridge/signal/toxins{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/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/machinery/light, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cBI" = ( -/obj/structure/closet/secure_closet/RD, -/obj/machinery/keycard_auth{ - pixel_y = -24 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cBJ" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cBK" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/crew_quarters/heads/hor) -"cBL" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"cBM" = ( -/obj/item/cigbutt, -/obj/machinery/light_switch{ - pixel_y = -23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"cBN" = ( -/obj/effect/landmark/start/scientist, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/science/storage) -"cBO" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/light/small, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"cBP" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cBQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"cBR" = ( -/turf/open/floor/plasteel, -/area/science/circuit) -"cBS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"cBT" = ( -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cBU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cBV" = ( -/obj/structure/table/reinforced, -/obj/item/device/integrated_electronics/analyzer, -/obj/item/device/integrated_circuit_printer, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cBW" = ( -/obj/effect/landmark/start/scientist, -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cBX" = ( -/obj/item/device/integrated_electronics/wirer, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cBY" = ( -/obj/structure/table/reinforced, -/obj/item/device/integrated_circuit_printer, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cBZ" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cCa" = ( -/obj/item/device/integrated_electronics/analyzer, -/obj/item/device/integrated_electronics/debugger, -/obj/item/device/integrated_electronics/wirer, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cCb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/circuit) -"cCc" = ( -/obj/item/stack/cable_coil, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"cCd" = ( -/obj/structure/rack, -/obj/item/tank/internals/air, -/obj/item/wrench, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port/aft) -"cCe" = ( -/obj/item/trash/chips, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cCf" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cCg" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cCh" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/patients_rooms/room_b) -"cCi" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms/room_b) -"cCj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/patients_rooms/room_b) -"cCk" = ( -/obj/machinery/door/airlock/medical{ - name = "Patient Room B"; - req_access_txt = "5" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms/room_b) -"cCl" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cCm" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cCn" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 2 - }, -/area/medical/medbay/aft) -"cCo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/genetics/cloning) -"cCp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/genetics/cloning) -"cCq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics/cloning) -"cCr" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/genetics/cloning) -"cCs" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/genetics) -"cCt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 9 - }, -/area/medical/genetics) -"cCu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/genetics) -"cCv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cCw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/genetics) -"cCx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 5 - }, -/area/medical/genetics) -"cCy" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/genetics) -"cCz" = ( -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/stack/packageWrap, -/obj/item/pen, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/table/glass, -/turf/open/floor/plasteel/blue/side{ - dir = 8 - }, -/area/medical/genetics) -"cCA" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/blue/corner{ - dir = 4 - }, -/area/medical/genetics) -"cCB" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_x = 28 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 5 - }, -/area/medical/genetics) -"cCC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=10.1-Central-from-Aft"; - location = "10-Aft-To-Central" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cCD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cCE" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=9.1-Escape-1"; - location = "8.1-Aft-to-Escape" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"cCF" = ( -/obj/machinery/door/poddoor/shutters{ - id = "Skynet_launch"; - name = "Mech Bay" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cCG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cCH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"cCI" = ( -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"cCJ" = ( -/obj/machinery/camera{ - c_tag = "Mech Bay"; - dir = 8; - network = list("SS13","RD") - }, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"cCK" = ( -/turf/open/floor/plating, -/area/science/misc_lab/range) -"cCL" = ( -/obj/machinery/camera{ - c_tag = "Research Testing Range"; - dir = 8; - network = list("SS13","RD"); - pixel_y = -22 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"cCM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cCN" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"cCO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Toxins Storage"; - req_access_txt = "8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/science/storage) -"cCP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cCQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"cCR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cCS" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cCT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cCU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/rnd/protolathe/department/science, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cCV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/autolathe, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cCW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cCX" = ( -/obj/item/stack/sheet/glass/fifty, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cCY" = ( -/obj/structure/rack, -/obj/item/device/flashlight, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cCZ" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cDa" = ( -/obj/item/latexballon, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cDb" = ( -/obj/item/clothing/suit/ianshirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cDc" = ( -/turf/closed/wall, -/area/medical/medbay/aft) -"cDd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/aft) -"cDe" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cDf" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/medbay/aft) -"cDg" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "CloningDoor"; - name = "Cloning Lab"; - req_access_txt = "5; 68" - }, -/turf/open/floor/plasteel/whiteblue, -/area/medical/genetics/cloning) -"cDh" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/genetics/cloning) -"cDi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics/cloning) -"cDj" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/genetics/cloning) -"cDk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "Genetics Lab"; - req_access_txt = "5; 9; 68" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue, -/area/medical/genetics) -"cDl" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/genetics) -"cDm" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cDn" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/landmark/start/geneticist, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cDo" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cDp" = ( -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/medical/genetics) -"cDq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - id_tag = "AuxGenetics"; - locked = 0; - name = "Genetics Lab"; - req_access_txt = "9"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"cDr" = ( -/turf/open/floor/plasteel/blue/side{ - dir = 8 - }, -/area/medical/genetics) -"cDs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"cDt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 4 - }, -/area/medical/genetics) -"cDu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - id_tag = "AuxGenetics"; - locked = 0; - name = "Genetics Access"; - req_access_txt = "9"; - req_one_access_txt = "0" - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"cDv" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cDw" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"cDx" = ( -/obj/machinery/door/poddoor/shutters{ - id = "Skynet_launch"; - name = "Mech Bay" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cDy" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cDz" = ( -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"cDA" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"cDB" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/landmark/start/roboticist, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"cDC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"cDD" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"cDE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cDF" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cDG" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cDH" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall, -/area/science/mixing) -"cDI" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/structure/closet/l3closet/scientist{ - pixel_x = -2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cDJ" = ( -/obj/structure/closet/wardrobe/science_white, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cDK" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cDL" = ( -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cDM" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cDN" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Toxins - Lab"; - dir = 2; - network = list("SS13","RD") - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cDO" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cDP" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cDQ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cDR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"cDS" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cDT" = ( -/turf/closed/wall/r_wall, -/area/science/mixing) -"cDU" = ( -/obj/structure/chair/comfy, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cDV" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cDW" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cDX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"cDY" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/circuit) -"cDZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"cEa" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cEb" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/medbay/aft) -"cEc" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/medbay/aft) -"cEd" = ( -/obj/machinery/vending/coffee, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/medbay/aft) -"cEe" = ( -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/machinery/vending/cola/random, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/medbay/aft) -"cEf" = ( -/obj/machinery/vending/cigarette, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/medbay/aft) -"cEg" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 8 - }, -/area/medical/medbay/aft) -"cEh" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cEi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 28 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/medical/medbay/aft) -"cEj" = ( -/obj/machinery/button/door{ - desc = "A remote control switch for the cloning door."; - id = "CloningDoor"; - name = "Cloning Exit Button"; - normaldoorcontrol = 1; - pixel_x = -23; - pixel_y = 8 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 10 - }, -/area/medical/genetics/cloning) -"cEk" = ( -/obj/effect/landmark/start/geneticist, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 2 - }, -/area/medical/genetics/cloning) -"cEl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/machinery/power/apc{ - dir = 4; - locked = 0; - name = "Cloning Lab APC"; - areastring = "/area/medical/genetics/cloning"; - pixel_x = 24 - }, -/obj/structure/cable/yellow, -/obj/machinery/camera{ - c_tag = "Genetics Cloning Lab"; - dir = 8; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 6 - }, -/area/medical/genetics/cloning) -"cEm" = ( -/turf/open/floor/plasteel/whiteblue/side{ - dir = 10 - }, -/area/medical/genetics) -"cEn" = ( -/turf/open/floor/plasteel/whiteblue/side{ - dir = 2 - }, -/area/medical/genetics) -"cEo" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 6 - }, -/area/medical/genetics) -"cEp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 10 - }, -/area/medical/genetics) -"cEq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 0 - }, -/area/medical/genetics) -"cEr" = ( -/obj/machinery/light_switch{ - pixel_x = 23 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/blue/side{ - dir = 6 - }, -/area/medical/genetics) -"cEs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/genetics) -"cEt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cEu" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cEv" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/button/door{ - dir = 2; - id = "Skynet_launch"; - name = "Mech Bay Door Control"; - pixel_x = 26; - pixel_y = 6; - req_one_access_txt = "29" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"cEw" = ( -/obj/machinery/button/door{ - dir = 2; - id = "Skynet_launch"; - name = "Mech Bay Door Control"; - pixel_x = -26; - pixel_y = 6 - }, -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = -2 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cEx" = ( -/turf/open/floor/mech_bay_recharge_floor, -/area/science/robotics/mechbay) -"cEy" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"cEz" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/paper/guides/jobs/security/range{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cEA" = ( -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "door"; - req_access_txt = "0" - }, -/turf/open/floor/engine{ - dir = 9; - icon_state = "floor" - }, -/area/science/misc_lab/range) -"cEB" = ( -/obj/structure/table/reinforced, -/obj/machinery/magnetic_controller{ - autolink = 1; - pixel_y = 3 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/clothing/ears/earmuffs, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cEC" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"cED" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cEE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 2 - }, -/area/science/research) -"cEF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "toxins_blastdoor"; - name = "biohazard containment door" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/mixing) -"cEG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cEH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cEI" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cEJ" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cEK" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cEL" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cEM" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cEN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cEO" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cEP" = ( -/obj/structure/table/glass, -/obj/machinery/camera/autoname{ - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cEQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cER" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/research/glass{ - name = "Circuitry Lab"; - req_access_txt = "47" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/science/circuit) -"cES" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cET" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cEU" = ( -/obj/machinery/light, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cEV" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cEW" = ( -/obj/item/device/radio/intercom{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cEX" = ( -/obj/machinery/camera{ - c_tag = "Research Division Circuitry Lab"; - dir = 1; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cEY" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cEZ" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/libraryconsole/bookmanagement, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cFa" = ( -/obj/machinery/bookbinder, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cFb" = ( -/obj/machinery/libraryscanner, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cFc" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"cFd" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cFe" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/turf/open/floor/plating, -/area/medical/medbay/aft) -"cFf" = ( -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cFg" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cFh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cFi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cFj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/cigbutt, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cFk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/medical{ - name = "Medbay Break Room"; - req_access_txt = "5" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cFl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cFm" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cFn" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Medbay Aft APC"; - areastring = "/area/medical/medbay/aft"; - pixel_x = 26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/disposalpipe/junction, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cFo" = ( -/obj/item/book/manual/medical_cloning{ - pixel_y = 6 - }, -/obj/item/paper, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/vault, -/area/medical/genetics/cloning) -"cFp" = ( -/obj/item/storage/box/rxglasses{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/table/glass, -/turf/open/floor/plasteel/vault, -/area/medical/genetics/cloning) -"cFq" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/vault, -/area/medical/genetics/cloning) -"cFr" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/closet/wardrobe/genetics_white, -/turf/open/floor/plasteel/vault, -/area/medical/genetics) -"cFs" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/bed/roller, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/genetics) -"cFt" = ( -/obj/structure/bed/roller, -/obj/machinery/door/window/westleft{ - dir = 1; - name = "Monkey Pen"; - pixel_y = 2; - req_access_txt = "9" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/genetics) -"cFu" = ( -/obj/machinery/light, -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "Monkey Pen"; - pixel_y = 2; - req_access_txt = "9" - }, -/obj/structure/bed/roller, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/genetics) -"cFv" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/bed/roller, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/genetics) -"cFw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/vault, -/area/medical/genetics) -"cFx" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel/vault, -/area/medical/genetics) -"cFy" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway - Middle"; - dir = 4; - network = list("SS13") - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cFz" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cFA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"cFB" = ( -/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/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cFC" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cFD" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cFE" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cFF" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Mech Bay APC"; - areastring = "/area/science/robotics/mechbay"; - pixel_x = 28 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cFG" = ( -/obj/structure/rack, -/obj/item/target, -/obj/item/target, -/obj/item/target/alien, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/item/target/clown, -/obj/item/target/syndicate, -/obj/item/target/syndicate, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light_switch{ - pixel_x = -25 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cFH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cFI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cFJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Research Testing Range"; - req_access_txt = "0"; - req_one_access_txt = "7;47;29" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/purple, -/area/science/misc_lab/range) -"cFK" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/research) -"cFL" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cFM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 4 - }, -/area/science/research) -"cFN" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/research{ - name = "Toxins Lab"; - req_access_txt = "8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "toxins_blastdoor"; - name = "biohazard containment shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"cFO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cFP" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cFQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cFR" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cFS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cFT" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cFU" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cFV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cFW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/holopad, -/obj/effect/landmark/start/scientist, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cFX" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cFY" = ( -/obj/structure/window/reinforced, -/obj/machinery/portable_atmospherics/scrubber, -/obj/item/storage/firstaid/toxin, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cFZ" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/r_wall, -/area/science/mixing) -"cGa" = ( -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/chair/comfy{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cGb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cGc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/closed/wall, -/area/science/circuit) -"cGd" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cGe" = ( -/obj/structure/chair/stool, -/obj/item/device/radio/intercom{ - broadcasting = 1; - freerange = 0; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_x = -30 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cGf" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cGg" = ( -/obj/item/cigbutt, -/obj/machinery/holopad, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cGh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cGi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cGj" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay/aft) -"cGk" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 1 - }, -/area/medical/medbay/aft) -"cGl" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cGm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/item/device/radio/intercom{ - broadcasting = 1; - freerange = 0; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medbay)"; - pixel_x = 30 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cGn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/medical/genetics/cloning) -"cGo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/centcom{ - name = "Genetics"; - opacity = 1; - req_access_txt = "9" - }, -/turf/open/floor/plasteel/dark, -/area/medical/genetics) -"cGp" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall, -/area/hallway/primary/aft) -"cGq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cGr" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall, -/area/science/robotics/mechbay) -"cGs" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cGt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cGu" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 28 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cGv" = ( -/obj/structure/table, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cGw" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "researchrangeshutters"; - name = "Blast Door Control"; - pixel_y = -24; - req_access_txt = "0" - }, -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cGx" = ( -/obj/item/gun/energy/laser/practice, -/obj/machinery/power/apc{ - dir = 2; - name = "Research Firing Range APC"; - areastring = "/area/science/misc_lab/range"; - pixel_y = -28 - }, -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"cGy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "researchrangeshutters"; - name = "blast door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/misc_lab/range) -"cGz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"cGA" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cGB" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 4 - }, -/area/science/research) -"cGC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "toxins_blastdoor"; - name = "biohazard containment door" - }, -/turf/open/floor/plating, -/area/science/mixing) -"cGD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cGE" = ( -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cGF" = ( -/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_y = 2 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cGG" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/scientist, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cGH" = ( -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cGI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cGJ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cGK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cGL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cGM" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cGN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"cGO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Room Access"; - req_access_txt = "8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "toxins_blastdoor"; - name = "biohazard containment shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"cGP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cGQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cGR" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"cGS" = ( -/turf/closed/wall, -/area/science/mixing) -"cGT" = ( -/obj/machinery/camera{ - c_tag = "Toxins - Launch Area"; - dir = 2; - network = list("SS13","RD") - }, -/obj/machinery/suit_storage_unit/rd, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/science/mixing) -"cGU" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/science/mixing) -"cGV" = ( -/obj/item/stack/rods/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/target, -/obj/item/target/syndicate, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/structure/closet/crate/secure{ - desc = "A secure crate containing various materials for building a customised test-site."; - name = "Test Site Materials Crate"; - req_access_txt = "8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/science/mixing) -"cGW" = ( -/obj/machinery/doppler_array{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 22 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/science/mixing) -"cGX" = ( -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/wall, -/area/science/mixing) -"cGY" = ( -/turf/closed/wall, -/area/science/test_area) -"cGZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/test_area) -"cHa" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port/aft) -"cHb" = ( -/turf/closed/wall/r_wall, -/area/medical/virology) -"cHc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/medical/virology) -"cHd" = ( -/obj/item/cigbutt, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cHe" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cHf" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -30 - }, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/table/glass, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cHg" = ( -/obj/structure/chair/stool, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cHh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light/small, -/obj/structure/extinguisher_cabinet{ - pixel_y = -29 - }, -/obj/machinery/camera{ - c_tag = "Medbay Break Room"; - dir = 1; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cHi" = ( -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/medical/medbay/aft) -"cHj" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cHk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cHl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white/side{ - dir = 9 - }, -/area/medical/medbay/aft) -"cHm" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel/white/corner{ - dir = 2 - }, -/area/medical/medbay/aft) -"cHn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel/white/side{ - dir = 2 - }, -/area/medical/medbay/aft) -"cHo" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel/white/corner{ - dir = 8 - }, -/area/medical/medbay/aft) -"cHp" = ( -/turf/closed/wall, -/area/medical/morgue) -"cHq" = ( -/obj/structure/bodycontainer/morgue, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cHr" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cHs" = ( -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cHt" = ( -/obj/machinery/camera{ - c_tag = "Morgue"; - dir = 2; - network = list("SS13","Medbay") - }, -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cHu" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cHv" = ( -/obj/machinery/airalarm{ - pixel_y = 32 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/paper/guides/jobs/medical/morgue{ - pixel_x = -4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cHw" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"cHx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel/purple/corner{ - dir = 2 - }, -/area/hallway/primary/aft) -"cHy" = ( -/turf/closed/wall/r_wall, -/area/science/robotics/mechbay) -"cHz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics_shutters"; - name = "robotics shutters" - }, -/turf/open/floor/plating, -/area/science/robotics/mechbay) -"cHA" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cHB" = ( -/turf/closed/wall/r_wall, -/area/science/robotics/lab) -"cHC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/science/research) -"cHD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/science/research) -"cHE" = ( -/obj/structure/closet/bombcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cHF" = ( -/obj/item/device/assembly/signaler{ - 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, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cHG" = ( -/obj/item/device/transfer_valve{ - pixel_x = -5 - }, -/obj/item/device/transfer_valve{ - pixel_x = -5 - }, -/obj/item/device/transfer_valve, -/obj/item/device/transfer_valve, -/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_y = -30; - receive_ore_updates = 1 - }, -/obj/structure/table/reinforced, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/science/mixing) -"cHH" = ( -/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, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cHI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/structure/tank_dispenser, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cHJ" = ( -/obj/machinery/disposal/bin{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cHK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cHL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cHM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cHN" = ( -/obj/structure/table, -/obj/item/device/assembly/igniter{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 2; - pixel_y = -1 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Toxins Lab APC"; - areastring = "/area/science/mixing"; - pixel_x = 26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cHO" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cHP" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/floorgrime, -/area/science/mixing) -"cHQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/science/mixing) -"cHR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/science/mixing) -"cHS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cHT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cHU" = ( -/obj/structure/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 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cHV" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/mixing) -"cHW" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"cHX" = ( -/obj/structure/window/reinforced, -/obj/item/target, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/science/test_area) -"cHY" = ( -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cHZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cIa" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cIb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cIc" = ( -/obj/machinery/camera{ - c_tag = "Medbay Hallway Aft"; - dir = 4; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/white/side{ - dir = 5 - }, -/area/medical/medbay/aft) -"cId" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cIe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cIf" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/medical/medbay/aft) -"cIg" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/medbay/aft) -"cIh" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cIi" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cIj" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/bodycontainer/morgue, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cIk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cIl" = ( -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cIm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cIn" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cIo" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cIp" = ( -/obj/machinery/vending/cola/random, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"cIq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics_shutters"; - name = "robotics shutters" - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"cIr" = ( -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/machinery/button/door{ - id = "robotics_shutters"; - name = "robotics shutters control"; - pixel_x = -26; - pixel_y = 26; - req_access_txt = "29" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cIs" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cIt" = ( -/obj/machinery/mecha_part_fabricator{ - dir = 2 - }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = 20 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cIu" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/structure/rack, -/obj/item/book/manual/robotics_cyborgs{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/storage/belt/utility, -/obj/item/reagent_containers/glass/beaker/large, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cIv" = ( -/obj/machinery/mecha_part_fabricator{ - dir = 2 - }, -/obj/machinery/camera{ - c_tag = "Robotics - Fore"; - dir = 2; - network = list("SS13","RD") - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cIw" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Robotics Lab APC"; - areastring = "/area/science/robotics/lab"; - pixel_y = 25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cIx" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 40; - pixel_x = 3; - pixel_y = -4 - }, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cIy" = ( -/turf/closed/wall, -/area/science/robotics/lab) -"cIz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cIA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/science/mixing) -"cIB" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/science/mixing) -"cIC" = ( -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cID" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cIE" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cIF" = ( -/obj/structure/table, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/item/device/multitool{ - pixel_x = 3 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cIG" = ( -/obj/machinery/vending/assist, -/turf/open/floor/plasteel, -/area/science/mixing) -"cIH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/floorgrime, -/area/science/mixing) -"cII" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cIJ" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Room"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"cIK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cIL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/mixing) -"cIM" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/mixing) -"cIN" = ( -/obj/machinery/light/small, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/mixing) -"cIO" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/button/massdriver{ - dir = 2; - id = "toxinsdriver"; - pixel_x = 24; - pixel_y = -24 - }, -/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 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cIP" = ( -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/wall, -/area/science/test_area) -"cIQ" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cIR" = ( -/obj/item/device/flashlight/lamp, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cIS" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cIT" = ( -/obj/structure/bed/roller, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cIU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cIV" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cIW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cIX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/medical/virology) -"cIY" = ( -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/box/syringes, -/obj/machinery/power/apc/highcap/five_k{ - dir = 1; - name = "Virology APC"; - areastring = "/area/medical/virology"; - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/structure/table/glass, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 9 - }, -/area/medical/virology) -"cIZ" = ( -/obj/item/book/manual/wiki/infections{ - pixel_y = 7 - }, -/obj/item/reagent_containers/syringe/antiviral, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/table/glass, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 5 - }, -/area/medical/virology) -"cJa" = ( -/obj/machinery/smartfridge/chemistry/virology/preloaded, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/whitegreen, -/area/medical/virology) -"cJb" = ( -/obj/machinery/reagentgrinder{ - pixel_y = 8 - }, -/obj/structure/table/glass, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 9 - }, -/area/medical/virology) -"cJc" = ( -/obj/item/clothing/gloves/color/latex, -/obj/item/device/healthanalyzer, -/obj/item/clothing/glasses/hud/health, -/obj/structure/reagent_dispensers/virusfood{ - pixel_y = 30 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 5 - }, -/area/medical/virology) -"cJd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cJe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cJf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"cJg" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cJh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cJi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cJj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/medbay/aft) -"cJk" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cJl" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cJm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/medical/medbay/aft) -"cJn" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/medbay/aft) -"cJo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cJp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cJq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/centcom{ - name = "Morgue"; - opacity = 1; - req_access_txt = "5" - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cJr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cJs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cJt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cJu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cJv" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cJw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cJx" = ( -/obj/structure/table, -/obj/machinery/power/apc{ - dir = 4; - name = "Morgue APC"; - areastring = "/area/medical/morgue"; - pixel_x = 26 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/clothing/gloves/color/latex, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cJy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/morgue) -"cJz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/hallway/primary/aft) -"cJA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"cJB" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/purple/side{ - dir = 4 - }, -/area/hallway/primary/aft) -"cJC" = ( -/turf/open/floor/plasteel/purple, -/area/science/robotics/lab) -"cJD" = ( -/obj/structure/table/reinforced, -/obj/item/pen, -/obj/machinery/door/window/eastright{ - dir = 4; - name = "Robotics Desk"; - req_access_txt = "29" - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics_shutters"; - name = "robotics shutters" - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"cJE" = ( -/obj/effect/landmark/start/roboticist, -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cJF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cJG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cJH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cJI" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/item/device/assembly/flash/handheld, -/obj/item/device/assembly/flash/handheld, -/obj/item/device/assembly/flash/handheld, -/obj/item/device/assembly/flash/handheld, -/obj/item/device/assembly/flash/handheld, -/obj/item/device/assembly/flash/handheld, -/obj/item/device/assembly/flash/handheld, -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cJJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/white/side{ - dir = 9 - }, -/area/science/research) -"cJK" = ( -/obj/structure/lattice, -/turf/open/space, -/area/science/mixing) -"cJL" = ( -/obj/machinery/door/poddoor{ - id = "mixvent"; - name = "Mixer Room Vent" - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"cJM" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"cJN" = ( -/obj/machinery/sparker{ - dir = 2; - id = "mixingsparker"; - pixel_x = 25 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"cJO" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"cJP" = ( -/obj/machinery/airlock_sensor{ - id_tag = "tox_airlock_sensor"; - master_tag = "tox_airlock_control"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - on = 1 - }, -/turf/open/floor/engine, -/area/science/mixing) -"cJQ" = ( -/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; - sanitize_external = 1; - sensor_tag = "tox_airlock_sensor" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cJR" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4; - name = "manual outlet valve" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cJS" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cJT" = ( -/obj/machinery/vending/snack/random, -/turf/open/floor/plasteel, -/area/science/mixing) -"cJU" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel, -/area/science/mixing) -"cJV" = ( -/obj/machinery/door/window/southleft{ - name = "Mass Driver Door"; - req_access_txt = "7" - }, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plasteel, -/area/science/mixing) -"cJW" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cJX" = ( -/turf/open/floor/plating/airless, -/area/science/test_area) -"cJY" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cJZ" = ( -/turf/closed/wall, -/area/medical/virology) -"cKa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/medical/virology) -"cKb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Test Subject Cell"; - req_access_txt = "39" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cKc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/medical/virology) -"cKd" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/structure/sign/warning/deathsposal{ - pixel_x = -30 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/virology) -"cKe" = ( -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 4 - }, -/area/medical/virology) -"cKf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) -"cKg" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/virologist, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 1 - }, -/area/medical/virology) -"cKh" = ( -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/pen/red, -/obj/machinery/requests_console{ - department = "Virology"; - name = "Virology Requests Console"; - pixel_x = 29; - receive_ore_updates = 1 - }, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/structure/table/glass, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/virology) -"cKi" = ( -/turf/closed/wall/r_wall, -/area/maintenance/port/aft) -"cKj" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;5;39;6" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cKk" = ( -/turf/open/floor/plasteel/white/side{ - dir = 6 - }, -/area/medical/medbay/aft) -"cKl" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cKm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/medical/medbay/aft) -"cKn" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 4 - }, -/area/medical/medbay/aft) -"cKo" = ( -/obj/item/device/healthanalyzer{ - pixel_x = 1; - pixel_y = 4 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_y = -30 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/medbay/aft) -"cKp" = ( -/obj/machinery/vending/medical, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/medical/medbay/aft) -"cKq" = ( -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/obj/structure/bodycontainer/morgue, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cKr" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cKs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cKt" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cKu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/centcom{ - name = "Morgue"; - opacity = 1; - req_access_txt = "6" - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cKv" = ( -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"cKw" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cKx" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cKy" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/departments/science{ - name = "\improper ROBOTICS!"; - pixel_x = 32 - }, -/turf/open/floor/plasteel/purple/corner{ - dir = 4 - }, -/area/hallway/primary/aft) -"cKz" = ( -/obj/structure/noticeboard{ - dir = 4; - pixel_x = -27 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/aug_manipulator, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cKA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cKB" = ( -/obj/effect/landmark/start/roboticist, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cKC" = ( -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cKD" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cKE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cKF" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 28; - pixel_y = 5 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table, -/obj/item/wrench, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/item/device/multitool{ - pixel_x = 3 - }, -/obj/item/stack/cable_coil, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cKG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Research Division Hallway - Robotics"; - dir = 4; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cKH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cKI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/science/research) -"cKJ" = ( -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"cKK" = ( -/obj/machinery/door/airlock/research/glass{ - autoclose = 0; - frequency = 1449; - heat_proof = 1; - id_tag = "tox_airlock_exterior"; - locked = 1; - name = "Mixing Room Exterior Airlock"; - req_access_txt = "8" - }, -/turf/open/floor/engine, -/area/science/mixing) -"cKL" = ( -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{ - dir = 2; - frequency = 1449; - id = "tox_airlock_pump" - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/engine, -/area/science/mixing) -"cKM" = ( -/obj/machinery/door/airlock/research/glass{ - autoclose = 0; - frequency = 1449; - heat_proof = 1; - id_tag = "tox_airlock_interior"; - locked = 1; - name = "Mixing Room Interior Airlock"; - req_access_txt = "8" - }, -/turf/open/floor/engine, -/area/science/mixing) -"cKN" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Toxins - Mixing Area"; - dir = 8; - network = list("SS13","RD") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cKO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;47" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cKP" = ( -/obj/machinery/mass_driver{ - dir = 4; - id = "toxinsdriver" - }, -/turf/open/floor/plating, -/area/science/mixing) -"cKQ" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/science/mixing) -"cKR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/mixing) -"cKS" = ( -/obj/machinery/door/poddoor{ - id = "toxinsdriver"; - name = "Toxins Launcher Bay Door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/science/mixing) -"cKT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cKU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cKV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cKW" = ( -/obj/item/device/radio/beacon, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cKX" = ( -/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. An external light is attached to the top."; - dir = 8; - invuln = 1; - light = null; - luminosity = 3; - name = "Hardened Bomb-Test Camera"; - network = list("Toxins"); - use_power = 0 - }, -/obj/item/target/alien/anchored, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless{ - luminosity = 2 - }, -/area/science/test_area) -"cKY" = ( -/turf/closed/indestructible{ - desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; - icon_state = "riveted"; - name = "hyper-reinforced wall" - }, -/area/science/test_area) -"cKZ" = ( -/obj/item/device/radio/intercom{ - pixel_x = -28 - }, -/obj/structure/table/glass, -/obj/item/hand_labeler, -/obj/item/device/radio/headset/headset_med, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/machinery/camera{ - c_tag = "Virology - Cells"; - dir = 4; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 9 - }, -/area/medical/virology) -"cLa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) -"cLb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) -"cLc" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) -"cLd" = ( -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/obj/item/wrench, -/obj/item/restraints/handcuffs, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 5 - }, -/area/medical/virology) -"cLe" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/virology) -"cLf" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/virology) -"cLg" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cLh" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cLi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cLj" = ( -/obj/machinery/computer/pandemic{ - layer = 2.5; - pixel_x = -4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/virology) -"cLk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"cLl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/virology) -"cLm" = ( -/obj/structure/sign/warning/biohazard{ - pixel_y = 32 - }, -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cLn" = ( -/obj/structure/sink{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cLo" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cLp" = ( -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cLq" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/medbay/aft) -"cLr" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-21"; - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 8 - }, -/area/medical/medbay/aft) -"cLs" = ( -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cLt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cLu" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/white/side{ - dir = 9 - }, -/area/medical/medbay/aft) -"cLv" = ( -/obj/machinery/light/small, -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cLw" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cLx" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cLy" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light_switch{ - pixel_x = 23 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cLz" = ( -/obj/structure/closet, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"cLA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/aft) -"cLB" = ( -/obj/machinery/computer/rdconsole/robotics{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Robotics"; - departmentType = 2; - name = "Robotics RC"; - pixel_x = -31; - receive_ore_updates = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cLC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) "cLD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cLE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cLF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cLG" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cLH" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cLI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cLJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/science/research) -"cLK" = ( -/obj/machinery/sparker{ - dir = 2; - id = "mixingsparker"; - pixel_x = 25 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4; - frequency = 1441; - id = "air_in" - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"cLL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/warning/fire{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - on = 1 - }, -/turf/open/floor/engine, -/area/science/mixing) -"cLM" = ( -/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 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cLN" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4; - name = "manual inlet valve" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cLO" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cLP" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cLQ" = ( -/obj/structure/closet/wardrobe/grey, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cLR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cLS" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/space/nearstation) -"cLT" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cLU" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cLV" = ( -/obj/structure/table/glass, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/pen/red, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/virology) -"cLW" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cLX" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cLY" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cLZ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/virology) -"cMa" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Containment Cells"; - req_access_txt = "39" - }, -/turf/open/floor/plasteel/whitegreen, -/area/medical/virology) -"cMb" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/virology) -"cMc" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cMd" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/holopad, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cMe" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cMf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/virology) -"cMg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/virology{ - name = "Virology Access"; - req_access_txt = "39" - }, -/turf/open/floor/plasteel/whitegreen, -/area/medical/virology) -"cMh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/virology) -"cMi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cMj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/doorButtons/airlock_controller{ - idExterior = "virology_airlock_exterior"; - idSelf = "virology_airlock_control"; - idInterior = "virology_airlock_interior"; - name = "Virology Access Console"; - pixel_x = 26; - pixel_y = 26; - req_access_txt = "39" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/virology) -"cMk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - icon_state = "door_locked"; - id_tag = "virology_airlock_interior"; - locked = 1; - name = "Virology Interior Airlock"; - req_access_txt = "39" - }, -/turf/open/floor/plasteel/whitegreen, -/area/medical/virology) -"cMl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/doorButtons/access_button{ - idDoor = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = -26; - pixel_y = 28; - req_access_txt = "39" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cMm" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cMn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cMo" = ( -/obj/machinery/doorButtons/access_button{ - idDoor = "virology_airlock_exterior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_y = 24; - req_access_txt = "39" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - icon_state = "door_locked"; - id_tag = "virology_airlock_exterior"; - locked = 1; - name = "Virology Exterior Airlock"; - req_access_txt = "39" - }, -/turf/open/floor/plasteel/whitegreen, -/area/medical/virology) -"cMp" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cMq" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/medbay/aft) -"cMr" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - name = "Virology Access"; - req_access_txt = "39" - }, -/turf/open/floor/plasteel/whitegreen, -/area/medical/medbay/aft) -"cMs" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cMt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cMu" = ( -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cMv" = ( -/obj/machinery/door/airlock/abandoned{ - name = "Medical Surplus Storeroom"; - req_access_txt = "5" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cMw" = ( -/turf/open/floor/plasteel/floorgrime, -/area/maintenance/aft) -"cMx" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/storage/backpack/duffelbag/med, -/obj/item/device/flashlight/pen{ - pixel_x = 4; - pixel_y = 3 - }, -/turf/open/floor/plasteel/floorgrime, -/area/maintenance/aft) -"cMy" = ( -/obj/structure/table, -/obj/item/retractor, -/obj/item/hemostat, -/obj/item/device/healthanalyzer, -/obj/item/clothing/glasses/eyepatch, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/floorgrime, -/area/maintenance/aft) -"cMz" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/maintenance{ - name = "Morgue Maintenance"; - req_access_txt = "6" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cMA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/primary/aft) -"cMB" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/rnd/circuit_imprinter, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cMC" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cMD" = ( -/obj/effect/landmark/start/roboticist, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cME" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cMF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/rack, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/device/healthanalyzer{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/device/healthanalyzer{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/device/healthanalyzer{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/device/radio/headset/headset_sci{ - pixel_x = -3 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cMG" = ( -/obj/effect/spawner/structure/window, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"cMH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"cMI" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cMJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 2 - }, -/area/science/research) -"cMK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM" - }, -/turf/closed/wall/r_wall, -/area/science/server) -"cML" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/server) -"cMM" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/closed/wall/r_wall, -/area/science/server) -"cMN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"cMO" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Toxins Lab Maintenance"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "toxins_blastdoor"; - name = "biohazard containment shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cMP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"cMQ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cMR" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cMS" = ( -/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 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cMT" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cMU" = ( -/obj/item/device/flashlight/lamp, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cMV" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cMW" = ( -/obj/structure/cable, -/obj/machinery/power/tracker, -/turf/open/floor/plating/airless, -/area/solar/port/aft) -"cMX" = ( -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 10 - }, -/area/medical/virology) -"cMY" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/side, -/area/medical/virology) -"cMZ" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitegreen/side, -/area/medical/virology) -"cNa" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/side, -/area/medical/virology) -"cNb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 6 - }, -/area/medical/virology) -"cNc" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/medical/virology) -"cNd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 10 - }, -/area/medical/virology) -"cNe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitegreen/side, -/area/medical/virology) -"cNf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/side, -/area/medical/virology) -"cNg" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 2 - }, -/turf/open/floor/plasteel/whitegreen/side, -/area/medical/virology) -"cNh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/machinery/camera{ - c_tag = "Virology - Lab"; - dir = 8; - network = list("SS13","Medbay") - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 6 - }, -/area/medical/virology) -"cNi" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/virology) -"cNj" = ( -/obj/structure/closet/emcloset, -/obj/item/device/radio/intercom{ - pixel_x = -28 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cNk" = ( -/obj/machinery/camera{ - c_tag = "Virology - Airlock"; - dir = 1; - network = list("SS13","Medbay") - }, -/obj/machinery/light, -/obj/structure/closet/l3closet, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cNl" = ( -/obj/structure/closet/l3closet, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cNm" = ( -/obj/structure/sign/warning/biohazard{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/medbay/aft) -"cNn" = ( -/obj/machinery/camera{ - c_tag = "Virology - Entrance"; - dir = 8; - network = list("SS13","Medbay") - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/medbay/aft) -"cNo" = ( -/obj/structure/sign/warning/biohazard{ - pixel_x = -32 - }, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/storage/box/masks, -/obj/structure/table/glass, -/turf/open/floor/plasteel/whitegreen/corner{ - dir = 1 - }, -/area/medical/medbay/aft) -"cNp" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_y = -30 - }, -/obj/item/storage/box/beakers{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/bodybags, -/obj/structure/table/glass, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cNq" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/light, -/obj/item/hand_labeler, -/obj/item/pen, -/obj/item/pen, -/obj/structure/table/glass, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"cNr" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/medical/medbay/aft) -"cNs" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel/floorgrime, -/area/maintenance/aft) -"cNt" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel/floorgrime, -/area/maintenance/aft) -"cNu" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/blood, -/obj/item/reagent_containers/blood, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/dropper, -/obj/structure/sign/warning/biohazard{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/floorgrime, -/area/maintenance/aft) -"cNv" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cNw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cNx" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/aft) -"cNy" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, /obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, /area/maintenance/aft) -"cNz" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 +"cLE" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1; + name = "euthanization chamber freezer"; + on = 1; + target_temperature = 80 }, /turf/open/floor/plating, -/area/maintenance/aft) -"cNA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/aft) -"cNB" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cNC" = ( +/area/science/xenobiology) +"cLF" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -70859,2221 +68327,63 @@ dir = 4 }, /turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/aft) -"cND" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 + icon_state = "platingdmg2" }, +/area/maintenance/starboard/aft) +"cLH" = ( +/obj/machinery/space_heater, /obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cNE" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;5;39;6" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cNF" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/neutral/corner{ dir = 1 }, -/area/hallway/primary/aft) -"cNG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cNH" = ( -/obj/structure/window/reinforced{ +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cLJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/closet, +/obj/item/storage/box/lights/mixed, +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cNI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cNJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cNK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cNL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cNM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cNN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Robotics Lab"; - req_access_txt = "29"; - req_one_access_txt = "0" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/purple, -/area/science/robotics/lab) -"cNO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/research) -"cNP" = ( +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cLK" = ( +/obj/machinery/power/smes, /obj/structure/cable/yellow{ - icon_state = "1-2" + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cLL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" }, /obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"cNQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/side{ - dir = 4 - }, -/area/science/research) -"cNR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Research Division Server Room"; - req_access = null; - req_access_txt = "30" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cNS" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cNT" = ( -/obj/machinery/camera{ - c_tag = "Research Division - Server Room"; - dir = 2; - network = list("SS13","RD"); - pixel_x = 22 +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cLM" = ( /obj/machinery/power/apc{ dir = 1; - name = "Research Division Server Room APC"; - areastring = "/area/science/server"; - pixel_y = 25 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cNU" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - target_temperature = 80; - dir = 2; - on = 1 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cNV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/science/server) -"cNW" = ( -/obj/machinery/rnd/server, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"cNX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - external_pressure_bound = 140; - name = "server vent"; - pressure_checks = 0 - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"cNY" = ( -/turf/closed/wall/r_wall, -/area/science/server) -"cNZ" = ( -/obj/structure/closet, -/obj/item/storage/box/lights/mixed, -/obj/item/device/flashlight, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOa" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOb" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/warning/biohazard{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOc" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOd" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOe" = ( -/obj/machinery/power/apc/highcap/five_k{ - dir = 2; - name = "Starboard Quarter Maintenance APC"; - areastring = "/area/maintenance/starboard/aft"; - pixel_y = -24 - }, -/obj/structure/cable/yellow, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOf" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOg" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/item/target, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/science/test_area) -"cOh" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/medical/virology) -"cOi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation B"; - req_access_txt = "39" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cOj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation A"; - req_access_txt = "39" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cOk" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/medical/virology) -"cOl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/closed/wall, -/area/medical/virology) -"cOm" = ( -/obj/structure/closet/wardrobe/virology_white, -/obj/item/storage/backpack/satchel/vir, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/turf/open/floor/plasteel/vault, -/area/medical/virology) -"cOn" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/blood, -/obj/item/reagent_containers/blood{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/reagent_containers/blood/AMinus, -/obj/item/reagent_containers/blood/BMinus{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/reagent_containers/blood/BPlus{ - pixel_x = 1; - pixel_y = 2 - }, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OPlus{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/turf/open/floor/plasteel/vault, -/area/medical/virology) -"cOo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/vault, -/area/medical/virology) -"cOp" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/plasteel/vault, -/area/medical/virology) -"cOq" = ( -/obj/structure/closet/l3closet/virology, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/vault, -/area/medical/virology) -"cOr" = ( -/obj/structure/sign/warning/biohazard{ - pixel_x = -32 - }, -/turf/open/space, -/area/space/nearstation) -"cOs" = ( -/turf/closed/wall/r_wall, -/area/maintenance/aft) -"cOt" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;5;39;6" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cOu" = ( -/obj/structure/bed/roller, -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/floorgrime, -/area/maintenance/aft) -"cOv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plating, -/area/maintenance/aft) -"cOw" = ( -/obj/item/clothing/gloves/color/latex/nitrile, -/obj/structure/rack, -/obj/item/clothing/suit/toggle/labcoat, -/obj/item/clothing/suit/apron/surgical, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/mask/breath/medical, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/aft) -"cOx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cOy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/escape{ - dir = 2 - }, -/area/hallway/primary/aft) -"cOz" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/escape{ - dir = 2 - }, -/area/hallway/primary/aft) -"cOA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway - Aft"; - dir = 8; - network = list("SS13") - }, -/turf/open/floor/plasteel/escape{ - dir = 2 - }, -/area/hallway/primary/aft) -"cOB" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall/r_wall, -/area/hallway/primary/aft) -"cOC" = ( -/obj/structure/table, -/obj/item/circular_saw, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/item/razor{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/robotics/lab) -"cOD" = ( -/obj/effect/landmark/start/roboticist, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"cOE" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"cOF" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/surgical_drapes, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/science/robotics/lab) -"cOG" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cOH" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/borg/upgrade/rename, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cOI" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/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/item/device/multitool{ - pixel_x = 3 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cOJ" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/science/robotics/lab) -"cOK" = ( -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 1 - }, -/area/science/research) -"cOL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/research) -"cOM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/whiteblue/corner{ - dir = 4 - }, -/area/science/research) -"cON" = ( -/turf/closed/wall, -/area/science/server) -"cOO" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cOP" = ( -/obj/structure/chair/office/light, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cOQ" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cOR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Server Access"; - req_access_txt = "30" - }, -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cOS" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/telecomms/server/walkway, -/area/science/server) -"cOT" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/manifold{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/airalarm/server{ - dir = 8; - pixel_x = 22 - }, -/turf/open/floor/plasteel/dark/telecomms/server/walkway, -/area/science/server) -"cOU" = ( -/obj/item/storage/box, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOV" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/glasses/sunglasses, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOW" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/solar{ - id = "aftstarboard"; - name = "Aft-Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cOX" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/space, -/area/solar/starboard/aft) -"cOY" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/solar{ - id = "aftstarboard"; - name = "Aft-Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"cOZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/bedsheet/medical, -/obj/structure/bed, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cPa" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cPb" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/bedsheet/medical, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cPc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/medical/virology) -"cPd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/virology{ - name = "Break Room"; - req_access_txt = "39" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen, -/area/medical/virology) -"cPe" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPf" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPg" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPh" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/aft) -"cPi" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPj" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPk" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/stack/ore/slag, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPl" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPm" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPn" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/closet/crate, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/wrench, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPo" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPp" = ( -/obj/structure/rack, -/obj/item/screwdriver{ - pixel_y = 6 - }, -/obj/item/crowbar, -/obj/item/storage/pill_bottle, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/item/cigbutt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/aft) -"cPr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/generic, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Medical Surplus Storeroom"; - req_access_txt = "12"; - req_one_access_txt = "0" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPu" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/vault, -/area/hallway/secondary/exit/departure_lounge) -"cPv" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel/vault, -/area/hallway/secondary/exit/departure_lounge) -"cPw" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/plasteel/vault, -/area/hallway/secondary/exit/departure_lounge) -"cPx" = ( -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"cPy" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault, -/area/hallway/secondary/exit/departure_lounge) -"cPz" = ( -/obj/machinery/vending/coffee, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault, -/area/hallway/secondary/exit/departure_lounge) -"cPA" = ( -/obj/machinery/vending/snack/random, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/vault, -/area/hallway/secondary/exit/departure_lounge) -"cPB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"cPC" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cPD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/turf/open/floor/plasteel/neutral/corner{ - dir = 2 - }, -/area/hallway/secondary/exit/departure_lounge) -"cPE" = ( -/obj/structure/table, -/obj/item/retractor, -/obj/item/hemostat, -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = -29 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 4 - }, -/area/science/robotics/lab) -"cPF" = ( -/obj/structure/table/optable{ - name = "Robotics Operating Table" - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/machinery/camera{ - c_tag = "Robotics - Aft"; - dir = 1; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/science/robotics/lab) -"cPG" = ( -/obj/machinery/computer/operating{ - dir = 1; - name = "Robotics Operating Computer" - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/science/robotics/lab) -"cPH" = ( -/obj/structure/table, -/obj/item/device/mmi, -/obj/item/device/mmi, -/obj/item/device/mmi, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/science/robotics/lab) -"cPI" = ( -/obj/machinery/door/window/eastleft{ - dir = 1; - name = "Robotics Deliveries"; - req_access_txt = "29" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cPJ" = ( -/obj/structure/closet/wardrobe/robotics_black{ - pixel_x = 2 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cPK" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/crowbar, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/device/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cPL" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 2 - }, -/area/science/research) -"cPM" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 2 - }, -/area/science/research) -"cPN" = ( -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-10" - }, -/turf/open/floor/plasteel/whitepurple/corner{ - dir = 8 - }, -/area/science/research) -"cPO" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cPP" = ( -/obj/item/device/radio/intercom{ - broadcasting = 0; - listening = 1; - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/machinery/computer/rdservercontrol{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cPQ" = ( -/obj/structure/table, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/science/server) -"cPR" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/server) -"cPS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 1; - external_pressure_bound = 120; - name = "server vent" - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"cPT" = ( -/obj/structure/easel, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPU" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"cPV" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPX" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/science, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPY" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPZ" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQa" = ( -/obj/structure/closet/crate, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQb" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space, -/area/solar/starboard/aft) -"cQc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cQd" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cQe" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cQf" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cQg" = ( -/obj/structure/table/glass, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/paper, -/obj/item/pen/red, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 9 - }, -/area/medical/virology) -"cQh" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 29 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) -"cQi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) -"cQj" = ( -/obj/structure/table/glass, -/obj/item/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/obj/machinery/camera{ - c_tag = "Virology - Break Room"; - dir = 2; - network = list("SS13","Medbay") - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 1 - }, -/area/medical/virology) -"cQk" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/structure/table/glass, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 5 - }, -/area/medical/virology) -"cQl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/aft) -"cQm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/aft) -"cQn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/aft) -"cQo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cQp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 17 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/aft) -"cQq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cQr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/grille, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/aft) -"cQs" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cQt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"cQu" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQx" = ( -/obj/machinery/power/apc/highcap/five_k{ - dir = 1; - name = "Departure Lounge APC"; - areastring = "/area/hallway/secondary/exit/departure_lounge"; + name = "Starboard Quarter Solar APC"; + areastring = "/area/maintenance/solars/starboard/aft"; pixel_y = 24 }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQy" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQz" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - pixel_y = 25 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQC" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQE" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQF" = ( -/obj/structure/plasticflaps{ - opacity = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Robotics" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cQG" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Robotics Maintenance"; - req_access_txt = "29" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cQH" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/science/research) -"cQI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/whitepurple{ - dir = 4 - }, -/area/science/research) -"cQJ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/abandoned{ - locked = 0; - name = "Storage Room"; - req_access_txt = "0"; - req_one_access_txt = "12;47" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQM" = ( -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"cQO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"cQQ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQR" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQS" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQT" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"cQU" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/glass/beaker, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cQV" = ( -/obj/structure/table/glass, -/obj/item/folder/white{ - pixel_y = 4 - }, -/obj/item/pen/red, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cQW" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/closed/wall, -/area/medical/virology) -"cQX" = ( -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 8 - }, -/area/medical/virology) -"cQY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cQZ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cRa" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cRb" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/whitegreen/side{ - dir = 4 - }, -/area/medical/virology) -"cRc" = ( -/obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/open/floor/plating, -/area/medical/virology) -"cRd" = ( -/turf/closed/wall, -/area/chapel/office) -"cRe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/maintenance{ - name = "Crematorium Maintenance"; - req_access_txt = "0"; - req_one_access_txt = "27" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - name = "Chapel Office Maintenance"; - req_access_txt = "0"; - req_one_access_txt = "22" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRg" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRj" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/aft) -"cRm" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRn" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;5;39;6" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cRp" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cRq" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=10-Aft-To-Central"; - location = "9.4-Escape-4" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cRr" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cRs" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cRt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cRu" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cRv" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cRw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cRx" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cRy" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;47" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRz" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"cRB" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRC" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRD" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRE" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cRF" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Research Division Hallway - Xenobiology Lab Access"; - dir = 2; - network = list("SS13","RD") - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/xenobiology) -"cRG" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 2 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/xenobiology) -"cRH" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 24 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/xenobiology) -"cRI" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "0"; - req_one_access_txt = "12;47" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRJ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRK" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRL" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/aft) -"cRM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRN" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRO" = ( -/obj/machinery/space_heater, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRP" = ( -/obj/structure/closet/crate, -/obj/item/poster/random_official, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/closet, -/obj/item/storage/box/lights/mixed, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRR" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRS" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRT" = ( -/obj/structure/closet, -/obj/item/device/flashlight, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cRU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/medical/virology) -"cRV" = ( +/area/maintenance/solars/starboard/aft) +"cLN" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment, /turf/closed/wall/r_wall, /area/medical/virology) -"cRW" = ( +"cLO" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -23 @@ -73085,13 +68395,13 @@ dir = 10 }, /area/medical/virology) -"cRX" = ( +"cLP" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 1 }, /turf/open/floor/plasteel/whitegreen/side, /area/medical/virology) -"cRY" = ( +"cLQ" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 @@ -73101,11 +68411,11 @@ }, /turf/open/floor/plasteel/whitegreen/side, /area/medical/virology) -"cRZ" = ( +"cLR" = ( /obj/structure/chair/stool, /turf/open/floor/plasteel/whitegreen/side, /area/medical/virology) -"cSa" = ( +"cLS" = ( /obj/structure/chair/stool, /obj/machinery/firealarm{ dir = 4; @@ -73115,21 +68425,19 @@ dir = 6 }, /area/medical/virology) -"cSb" = ( +"cLT" = ( /obj/effect/decal/cleanable/cobweb, /obj/structure/bodycontainer/morgue{ dir = 2 }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cSc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"cSd" = ( +"cLU" = ( +/obj/effect/landmark/blobstart, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/engine, +/area/science/explab) +"cLV" = ( /obj/item/device/radio/intercom{ pixel_y = 25 }, @@ -73146,7 +68454,7 @@ /obj/item/clothing/under/burial, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cSe" = ( +"cLW" = ( /obj/machinery/requests_console{ department = "Chapel"; departmentType = 2; @@ -73157,7 +68465,7 @@ }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cSf" = ( +"cLX" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 8 }, @@ -73169,13 +68477,13 @@ }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cSg" = ( +"cLY" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cSh" = ( +"cLZ" = ( /obj/machinery/door/morgue{ name = "Relic Closet"; req_access_txt = "22" @@ -73184,7 +68492,7 @@ dir = 2 }, /area/chapel/office) -"cSi" = ( +"cMa" = ( /obj/structure/table/wood, /obj/item/spellbook/oneuse/smoke/lesser{ name = "mysterious old book of " @@ -73203,7 +68511,7 @@ dir = 2 }, /area/chapel/office) -"cSj" = ( +"cMb" = ( /obj/machinery/door/airlock/maintenance{ name = "Chapel Maintenance"; req_access_txt = "0"; @@ -73215,52 +68523,32 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/aft) -"cSk" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Departure Lounge - Port Fore"; - dir = 4; - network = list("SS13") - }, -/obj/item/twohanded/required/kirbyplants{ - icon_state = "plant-24" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cSl" = ( +"cMd" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cSm" = ( +"cMe" = ( /obj/effect/turf_decal/stripes/corner{ dir = 2 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cSn" = ( +"cMf" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cSo" = ( +"cMg" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cSp" = ( +"cMh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cSq" = ( +"cMi" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -73271,7 +68559,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cSr" = ( +"cMj" = ( /obj/machinery/light{ dir = 4 }, @@ -73291,20 +68579,18 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cSs" = ( -/obj/machinery/light/small{ - dir = 8 +"cMk" = ( +/obj/machinery/power/apc/highcap/five_k{ + dir = 2; + name = "Aft Maintenance APC"; + areastring = "/area/maintenance/aft"; + pixel_y = -24 }, +/obj/structure/cable/yellow, +/obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/aft) -"cSt" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cSu" = ( +"cMl" = ( /obj/structure/table, /obj/item/stack/sheet/glass/fifty{ pixel_x = 3; @@ -73313,79 +68599,83 @@ /obj/item/stack/sheet/metal/fifty, /turf/open/floor/plating, /area/maintenance/aft) -"cSv" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xeno_blastdoor"; - name = "biohazard containment door" +"cMm" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSw" = ( /obj/structure/cable/yellow{ - icon_state = "1-2" + icon_state = "2-4" }, -/obj/machinery/door/poddoor/preopen{ - id = "xeno_blastdoor"; - name = "biohazard containment door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSx" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xeno_blastdoor"; - name = "biohazard containment door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSy" = ( -/obj/machinery/space_heater, /turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cSz" = ( +/area/maintenance/port/aft) +"cMo" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cMp" = ( /obj/structure/chair, /obj/item/cigbutt, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cSA" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/aft) -"cSB" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/aft) -"cSC" = ( -/obj/machinery/door/airlock/engineering{ - name = "Starboard Quarter Solar Access"; - req_access_txt = "10" +"cMq" = ( +/obj/machinery/power/terminal{ + dir = 1 }, -/obj/structure/cable/yellow{ - icon_state = "1-2" +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/camera{ + c_tag = "Aft Starboard Solar Maintenance"; + dir = 4; + network = list("SS13") }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) -"cSD" = ( +"cMr" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/solars/starboard/aft) +"cMs" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cMt" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, /turf/open/floor/plating/airless, /area/space/nearstation) -"cSE" = ( +"cMu" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plating/airless, /area/space/nearstation) -"cSF" = ( +"cMv" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -73394,7 +68684,7 @@ }, /turf/open/floor/plating/airless, /area/medical/virology) -"cSG" = ( +"cMw" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 @@ -73407,7 +68697,7 @@ }, /turf/open/floor/plating, /area/medical/virology) -"cSH" = ( +"cMx" = ( /obj/machinery/atmospherics/components/unary/tank/air{ dir = 1 }, @@ -73416,7 +68706,7 @@ }, /turf/open/floor/plasteel/vault, /area/medical/virology) -"cSI" = ( +"cMy" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1; name = "virology air connector port" @@ -73427,7 +68717,7 @@ }, /turf/open/floor/plasteel/vault, /area/medical/virology) -"cSJ" = ( +"cMz" = ( /obj/item/trash/popcorn, /obj/structure/table/glass, /obj/structure/cable/yellow{ @@ -73435,25 +68725,25 @@ }, /turf/open/floor/plasteel/vault, /area/medical/virology) -"cSK" = ( +"cMA" = ( /obj/item/reagent_containers/food/snacks/sosjerky, /obj/structure/table/glass, /turf/open/floor/plasteel/vault, /area/medical/virology) -"cSL" = ( +"cMB" = ( /obj/item/trash/cheesie{ pixel_y = 4 }, /obj/structure/table/glass, /turf/open/floor/plasteel/vault, /area/medical/virology) -"cSM" = ( +"cMC" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cSN" = ( +"cMD" = ( /obj/machinery/light/small{ dir = 4 }, @@ -73463,7 +68753,7 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cSO" = ( +"cME" = ( /obj/item/device/flashlight/lamp, /obj/machinery/newscaster{ pixel_x = -30 @@ -73471,13 +68761,13 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cSP" = ( +"cMF" = ( /obj/structure/chair, /obj/effect/landmark/start/chaplain, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cSQ" = ( +"cMG" = ( /obj/item/paper_bin{ pixel_x = -2; pixel_y = 8 @@ -73490,7 +68780,7 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cSR" = ( +"cMH" = ( /obj/machinery/light/small{ dir = 4 }, @@ -73499,10 +68789,10 @@ }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cSS" = ( +"cMI" = ( /turf/closed/wall, /area/chapel/main) -"cST" = ( +"cMJ" = ( /obj/item/candle, /obj/machinery/light_switch{ pixel_x = -27 @@ -73511,7 +68801,7 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cSU" = ( +"cMK" = ( /obj/item/storage/book/bible, /obj/machinery/light/small{ dir = 1 @@ -73527,7 +68817,7 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cSV" = ( +"cML" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/snacks/grown/poppy{ pixel_y = 2 @@ -73546,14 +68836,14 @@ }, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cSW" = ( +"cMM" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cSX" = ( +"cMN" = ( /obj/structure/table/wood, /obj/item/reagent_containers/food/snacks/grown/harebell, /obj/item/reagent_containers/food/snacks/grown/harebell, @@ -73562,7 +68852,7 @@ /obj/item/reagent_containers/food/snacks/grown/harebell, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cSY" = ( +"cMO" = ( /obj/item/paper_bin{ pixel_x = -2; pixel_y = 8 @@ -73576,7 +68866,7 @@ }, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cSZ" = ( +"cMP" = ( /obj/item/candle, /obj/machinery/light_switch{ pixel_y = 25 @@ -73585,13 +68875,24 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cTa" = ( +"cMQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/neutral/side{ + dir = 1 + }, +/area/hallway/primary/central) +"cMR" = ( /obj/structure/table, /obj/item/candle, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cTb" = ( +"cMS" = ( /obj/structure/chair{ dir = 4 }, @@ -73601,7 +68902,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cTc" = ( +"cMT" = ( /obj/structure/chair{ dir = 8 }, @@ -73610,13 +68911,13 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cTd" = ( +"cMU" = ( /obj/machinery/status_display{ layer = 4 }, /turf/closed/wall, /area/hallway/secondary/exit/departure_lounge) -"cTe" = ( +"cMV" = ( /obj/structure/chair{ dir = 4 }, @@ -73625,14 +68926,14 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cTf" = ( +"cMW" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cTg" = ( +"cMX" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -73642,7 +68943,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cTh" = ( +"cMY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -73651,7 +68952,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cTi" = ( +"cMZ" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/westleft{ base_state = "right"; @@ -73672,7 +68973,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cTj" = ( +"cNa" = ( /obj/structure/chair/office/dark{ dir = 8 }, @@ -73689,7 +68990,7 @@ dir = 9 }, /area/hallway/secondary/exit/departure_lounge) -"cTk" = ( +"cNb" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, @@ -73700,7 +69001,7 @@ dir = 1 }, /area/hallway/secondary/exit/departure_lounge) -"cTl" = ( +"cNc" = ( /obj/structure/chair, /obj/structure/sign/map/left{ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; @@ -73711,7 +69012,7 @@ dir = 1 }, /area/hallway/secondary/exit/departure_lounge) -"cTm" = ( +"cNd" = ( /obj/structure/table, /obj/machinery/recharger{ pixel_y = 4 @@ -73729,52 +69030,49 @@ dir = 5 }, /area/hallway/secondary/exit/departure_lounge) -"cTn" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/aft) -"cTo" = ( -/obj/machinery/power/apc/highcap/five_k{ - dir = 2; - name = "Aft Maintenance APC"; - areastring = "/area/maintenance/aft"; - pixel_y = -24 +"cNe" = ( +/obj/machinery/door/airlock/external{ + name = "Auxiliary Escape Airlock" }, -/obj/structure/cable/yellow, -/obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/maintenance/aft) -"cTp" = ( -/obj/machinery/droneDispenser, -/turf/open/floor/plating, -/area/maintenance/aft) -"cTq" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall, -/area/science/xenobiology) -"cTr" = ( +"cNf" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, /obj/structure/cable/yellow{ - icon_state = "1-2" + icon_state = "1-8" }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "47" +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 }, -/turf/open/floor/plasteel/whitepurple{ - dir = 4 +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cNg" = ( +/obj/structure/rack, +/obj/item/device/flashlight, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cNh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 }, -/area/science/xenobiology) -"cTs" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/science/xenobiology) -"cTt" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/whiteblue/corner{ + dir = 8 + }, +/area/medical/medbay/aft) +"cNi" = ( /obj/machinery/biogenerator, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cTu" = ( +"cNj" = ( /obj/item/reagent_containers/food/snacks/grown/banana, /obj/item/reagent_containers/food/snacks/grown/banana, /obj/item/reagent_containers/food/snacks/grown/wheat, @@ -73794,7 +69092,7 @@ /obj/item/seeds/cannabis/rainbow, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cTv" = ( +"cNk" = ( /obj/item/storage/bag/plants/portaseeder, /obj/item/storage/bag/plants/portaseeder, /obj/item/device/plant_analyzer, @@ -73809,7 +69107,7 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cTw" = ( +"cNl" = ( /obj/machinery/hydroponics/soil{ pixel_y = 8 }, @@ -73818,19 +69116,22 @@ /obj/item/seeds/cannabis/white, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cTx" = ( -/obj/machinery/hydroponics/soil{ - pixel_y = 8 +"cNm" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 }, -/obj/item/seeds/glowshroom, -/obj/item/seeds/corn, -/obj/effect/turf_decal/stripes/line, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, /turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cTy" = ( +/area/maintenance/port/aft) +"cNn" = ( /obj/machinery/hydroponics/soil{ pixel_y = 8 }, @@ -73838,61 +69139,49 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cTz" = ( -/obj/machinery/power/smes, -/obj/structure/cable/yellow{ - icon_state = "0-4" +"cNo" = ( +/obj/structure/cable{ + icon_state = "1-4" }, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) -"cTA" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ +"cNp" = ( +/obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, +/obj/structure/chair/stool, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) -"cTB" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Starboard Quarter Solar APC"; - areastring = "/area/maintenance/solars/starboard/aft"; - pixel_y = 24 +"cNq" = ( +/obj/machinery/power/solar_control{ + dir = 8; + id = "aftstarboard"; + name = "Starboard Quarter Solar Control"; + track = 0 }, -/obj/structure/cable/yellow{ +/obj/structure/cable, +/obj/structure/cable{ icon_state = "0-8" }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, /turf/open/floor/plating, /area/maintenance/solars/starboard/aft) -"cTC" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cTD" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space, -/area/solar/starboard/aft) -"cTE" = ( +"cNr" = ( /obj/structure/disposaloutlet, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/open/floor/plating/airless, /area/space/nearstation) -"cTF" = ( +"cNs" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 1 }, /turf/open/floor/plating/airless, /area/medical/virology) -"cTG" = ( +"cNt" = ( /obj/machinery/button/crematorium{ id = "crematoriumChapel"; pixel_x = -26; @@ -73900,7 +69189,7 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cTH" = ( +"cNu" = ( /obj/machinery/camera{ c_tag = "Chapel Office - Backroom"; dir = 8; @@ -73913,7 +69202,7 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cTI" = ( +"cNv" = ( /obj/item/storage/crayons, /obj/machinery/light/small{ dir = 8 @@ -73921,15 +69210,19 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cTJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table/wood, -/obj/item/folder{ - pixel_y = 2 +"cNw" = ( +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" }, -/turf/open/floor/plasteel/grimy, -/area/chapel/office) -"cTK" = ( +/obj/machinery/power/compressor{ + comp_id = "incineratorturbine"; + dir = 1; + luminosity = 2 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cNx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" @@ -73940,10 +69233,10 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cTL" = ( +"cNy" = ( /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cTM" = ( +"cNz" = ( /obj/item/device/radio/intercom{ broadcasting = 1; frequency = 1480; @@ -73953,31 +69246,31 @@ /obj/structure/chair, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cTN" = ( +"cNA" = ( /obj/machinery/door/morgue{ name = "Confession Booth" }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cTO" = ( +"cNB" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/carpet, /area/chapel/main) -"cTP" = ( +"cNC" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/carpet, /area/chapel/main) -"cTQ" = ( +"cND" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/carpet, /area/chapel/main) -"cTR" = ( +"cNE" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -73986,7 +69279,7 @@ }, /turf/open/floor/carpet, /area/chapel/main) -"cTS" = ( +"cNF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -73995,7 +69288,7 @@ }, /turf/open/floor/carpet, /area/chapel/main) -"cTT" = ( +"cNG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -74004,7 +69297,7 @@ }, /turf/open/floor/carpet, /area/chapel/main) -"cTU" = ( +"cNH" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -74017,7 +69310,7 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cTV" = ( +"cNI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -74029,7 +69322,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cTW" = ( +"cNJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -74041,7 +69334,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cTX" = ( +"cNK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -74050,7 +69343,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cTY" = ( +"cNL" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -74059,7 +69352,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cTZ" = ( +"cNN" = ( /obj/structure/flora/ausbushes/fernybush, /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/ppflowers, @@ -74067,21 +69360,21 @@ /obj/structure/window/reinforced/fulltile, /turf/open/floor/grass, /area/hallway/secondary/exit/departure_lounge) -"cUa" = ( +"cNO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cUb" = ( +"cNP" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-4" }, /turf/open/floor/plating, /area/hallway/secondary/exit/departure_lounge) -"cUc" = ( +"cNQ" = ( /obj/machinery/computer/secure_data{ dir = 4 }, @@ -74092,13 +69385,13 @@ dir = 8 }, /area/hallway/secondary/exit/departure_lounge) -"cUd" = ( +"cNR" = ( /obj/structure/chair/office/dark{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cUe" = ( +"cNS" = ( /obj/structure/table, /obj/item/folder/red{ pixel_x = 3 @@ -74121,28 +69414,23 @@ dir = 4 }, /area/hallway/secondary/exit/departure_lounge) -"cUf" = ( -/obj/machinery/door/airlock/external{ - name = "Auxiliary Escape Airlock" +"cNT" = ( +/obj/structure/sign/warning/vacuum{ + pixel_x = 32 }, +/obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, /area/maintenance/aft) -"cUg" = ( -/turf/closed/wall, -/area/science/xenobiology) -"cUh" = ( +"cNU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "1-2" }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/xenobiology) -"cUi" = ( -/obj/effect/spawner/structure/window/reinforced, +/obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plating, -/area/science/xenobiology) -"cUj" = ( +/area/maintenance/port/aft) +"cNW" = ( /obj/structure/sink/kitchen{ desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; @@ -74155,140 +69443,42 @@ icon_state = "platingdmg3" }, /area/maintenance/starboard/aft) -"cUk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cUl" = ( +"cNX" = ( /obj/item/seeds/watermelon, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cUm" = ( +"cNY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/grille, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cUn" = ( +"cNZ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, /obj/structure/chair, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cUo" = ( -/obj/machinery/power/terminal{ - dir = 1 +"cOa" = ( +/obj/structure/cable, +/obj/machinery/power/turbine{ + luminosity = 2 }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/camera{ - c_tag = "Aft Starboard Solar Maintenance"; - dir = 4; - network = list("SS13") - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cUp" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/solars/starboard/aft) -"cUq" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cUr" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access = null; - req_access_txt = "10; 13" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cUs" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cUt" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space, -/area/solar/starboard/aft) -"cUu" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/space, -/area/solar/starboard/aft) -"cUv" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard/aft) -"cUw" = ( -/obj/structure/lattice/catwalk, -/obj/item/stack/cable_coil, -/turf/open/space, -/area/solar/starboard/aft) -"cUx" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/space, -/area/solar/starboard/aft) -"cUy" = ( -/obj/machinery/power/tracker, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating/airless, -/area/solar/starboard/aft) -"cUz" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"cUA" = ( +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cOb" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /obj/effect/landmark/xeno_spawn, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cUB" = ( +"cOc" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -74299,20 +69489,20 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cUC" = ( +"cOd" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cUD" = ( +"cOe" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cUE" = ( +"cOf" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -74322,7 +69512,7 @@ }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cUF" = ( +"cOg" = ( /obj/machinery/light_switch{ pixel_x = 28 }, @@ -74339,11 +69529,11 @@ }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cUG" = ( +"cOh" = ( /obj/effect/spawner/structure/window/reinforced/tinted, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cUH" = ( +"cOi" = ( /obj/structure/cable/yellow{ icon_state = "0-4" }, @@ -74355,13 +69545,13 @@ }, /turf/open/floor/carpet, /area/chapel/main) -"cUI" = ( +"cOj" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, /turf/open/floor/carpet, /area/chapel/main) -"cUJ" = ( +"cOk" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -74371,7 +69561,7 @@ /obj/effect/landmark/xmastree, /turf/open/floor/carpet, /area/chapel/main) -"cUK" = ( +"cOl" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -74380,14 +69570,14 @@ }, /turf/open/floor/carpet, /area/chapel/main) -"cUL" = ( +"cOm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/carpet, /area/chapel/main) -"cUM" = ( +"cOn" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -74397,7 +69587,7 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cUN" = ( +"cOo" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -74406,7 +69596,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cUO" = ( +"cOp" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -74415,23 +69605,23 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cUP" = ( +"cOq" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cUQ" = ( +"cOr" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cUR" = ( +"cOs" = ( /obj/machinery/ai_status_display, /turf/closed/wall, /area/hallway/secondary/exit/departure_lounge) -"cUS" = ( +"cOt" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -74440,7 +69630,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cUT" = ( +"cOu" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -74452,7 +69642,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cUU" = ( +"cOv" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/security/glass{ name = "Departure Lounge Security Post"; @@ -74466,7 +69656,7 @@ }, /turf/open/floor/plasteel/red, /area/hallway/secondary/exit/departure_lounge) -"cUV" = ( +"cOw" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, @@ -74484,13 +69674,13 @@ dir = 10 }, /area/hallway/secondary/exit/departure_lounge) -"cUW" = ( +"cOx" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, /turf/open/floor/plasteel/red/side, /area/hallway/secondary/exit/departure_lounge) -"cUX" = ( +"cOy" = ( /obj/structure/table, /obj/item/paper_bin{ pixel_x = -3; @@ -74499,7 +69689,7 @@ /obj/item/pen, /turf/open/floor/plasteel/red/side, /area/hallway/secondary/exit/departure_lounge) -"cUY" = ( +"cOz" = ( /obj/structure/table, /obj/machinery/newscaster/security_unit{ pixel_x = 29; @@ -74527,88 +69717,37 @@ dir = 6 }, /area/hallway/secondary/exit/departure_lounge) -"cUZ" = ( -/obj/structure/sign/warning/vacuum{ - pixel_x = 32 +"cOA" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/sunglasses, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/small{ + dir = 4 }, -/obj/effect/turf_decal/stripes/line, /turf/open/floor/plating, -/area/maintenance/aft) -"cVa" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cVb" = ( +/area/maintenance/starboard/aft) +"cOB" = ( /obj/item/seeds/sunflower/moonflower, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cVc" = ( +"cOC" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /obj/effect/landmark/xeno_spawn, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cVd" = ( +"cOD" = ( /obj/item/seeds/berry, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cVe" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"cVf" = ( +"cOE" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/reagent_containers/glass/bucket, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cVg" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cVh" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cVi" = ( -/obj/machinery/power/solar_control{ - dir = 8; - id = "aftstarboard"; - name = "Starboard Quarter Solar Control"; - track = 0 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cVj" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/space, -/area/solar/starboard/aft) -"cVk" = ( -/obj/structure/bodycontainer/crematorium{ - id = "crematoriumChapel"; - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"cVl" = ( +"cOF" = ( /obj/structure/table, /obj/item/storage/box/bodybags{ pixel_x = 2; @@ -74616,7 +69755,7 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cVm" = ( +"cOG" = ( /obj/structure/closet/wardrobe/chaplain_black, /obj/machinery/airalarm{ dir = 4; @@ -74624,14 +69763,14 @@ }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cVn" = ( +"cOH" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cVo" = ( +"cOI" = ( /obj/machinery/power/apc{ dir = 2; lighting = 3; @@ -74646,20 +69785,20 @@ /obj/structure/cable/yellow, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cVp" = ( +"cOJ" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/grimy, /area/chapel/office) -"cVq" = ( +"cOK" = ( /obj/machinery/door/morgue{ name = "Confession Booth (Chaplain)"; req_access_txt = "22" }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cVr" = ( +"cOL" = ( /obj/item/device/radio/intercom{ broadcasting = 1; frequency = 1480; @@ -74672,58 +69811,58 @@ /obj/effect/landmark/start/chaplain, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cVs" = ( +"cOM" = ( /turf/open/floor/plasteel/chapel{ dir = 4 }, /area/chapel/main) -"cVt" = ( +"cON" = ( /obj/structure/chair/stool, /turf/open/floor/plasteel/chapel{ dir = 1 }, /area/chapel/main) -"cVu" = ( +"cOO" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/chair/stool, /turf/open/floor/plasteel/chapel{ dir = 4 }, /area/chapel/main) -"cVv" = ( +"cOP" = ( /turf/open/floor/plasteel/dark, /area/chapel/main) -"cVw" = ( +"cOQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/chair/stool, /turf/open/floor/plasteel/chapel{ dir = 1 }, /area/chapel/main) -"cVx" = ( +"cOR" = ( /obj/structure/chair/stool, /turf/open/floor/plasteel/chapel{ dir = 4 }, /area/chapel/main) -"cVy" = ( +"cOS" = ( /turf/open/floor/plasteel/chapel{ dir = 1 }, /area/chapel/main) -"cVz" = ( +"cOT" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cVA" = ( +"cOU" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 2 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cVB" = ( +"cOV" = ( /obj/structure/chair{ dir = 8 }, @@ -74735,7 +69874,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cVC" = ( +"cOW" = ( /obj/structure/flora/ausbushes/fernybush, /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/brflowers, @@ -74746,7 +69885,7 @@ /obj/structure/window/reinforced/fulltile, /turf/open/floor/grass, /area/hallway/secondary/exit/departure_lounge) -"cVD" = ( +"cOX" = ( /obj/structure/chair{ dir = 4 }, @@ -74758,20 +69897,20 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cVE" = ( +"cOY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cVF" = ( +"cOZ" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cVG" = ( +"cPa" = ( /obj/structure/chair{ dir = 8 }, @@ -74783,7 +69922,10 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cVH" = ( +"cPb" = ( +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"cPc" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow, /obj/structure/cable/yellow{ @@ -74791,23 +69933,24 @@ }, /turf/open/floor/plating, /area/hallway/secondary/exit/departure_lounge) -"cVI" = ( +"cPd" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/open/floor/plating, /area/hallway/secondary/exit/departure_lounge) -"cVJ" = ( +"cPe" = ( /obj/structure/cable/yellow{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/machinery/light/small{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cVK" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cPf" = ( /obj/machinery/hydroponics/soil{ pixel_y = 8 }, @@ -74818,7 +69961,7 @@ /obj/item/seeds/cannabis/ultimate, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cVL" = ( +"cPg" = ( /obj/machinery/hydroponics/soil{ pixel_y = 8 }, @@ -74828,7 +69971,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cVM" = ( +"cPh" = ( /obj/machinery/hydroponics/soil{ pixel_y = 8 }, @@ -74838,7 +69981,7 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cVN" = ( +"cPi" = ( /obj/machinery/hydroponics/soil{ pixel_y = 8 }, @@ -74849,7 +69992,7 @@ /obj/item/seeds/cannabis, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cVO" = ( +"cPj" = ( /obj/machinery/hydroponics/soil{ pixel_y = 8 }, @@ -74859,24 +70002,11 @@ }, /turf/open/floor/plating, /area/maintenance/starboard/aft) -"cVP" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space, -/area/solar/starboard/aft) -"cVQ" = ( +"cPk" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/chapel/office) -"cVR" = ( +"cPl" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/public/glass{ name = "Chapel Office"; @@ -74884,7 +70014,7 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/office) -"cVS" = ( +"cPm" = ( /obj/machinery/airalarm{ dir = 4; pixel_x = -23 @@ -74894,29 +70024,29 @@ }, /turf/open/floor/plasteel/chapel, /area/chapel/main) -"cVT" = ( +"cPn" = ( /obj/structure/chair/stool, /turf/open/floor/plasteel/chapel{ dir = 8 }, /area/chapel/main) -"cVU" = ( +"cPo" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/chapel, /area/chapel/main) -"cVV" = ( +"cPp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/chair/stool, /turf/open/floor/plasteel/chapel{ dir = 8 }, /area/chapel/main) -"cVW" = ( +"cPq" = ( /obj/structure/chair/stool, /turf/open/floor/plasteel/chapel, /area/chapel/main) -"cVX" = ( +"cPr" = ( /obj/machinery/light{ dir = 4 }, @@ -74924,24 +70054,20 @@ dir = 8 }, /area/chapel/main) -"cVY" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cVZ" = ( +"cPs" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWa" = ( +"cPt" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWb" = ( +"cPu" = ( /obj/structure/chair{ dir = 8 }, @@ -74951,11 +70077,29 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWc" = ( +"cPv" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/hallway/secondary/exit/departure_lounge) -"cWd" = ( +"cPx" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cPz" = ( +/obj/structure/closet, +/obj/item/device/flashlight, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cPA" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ id = "chapel_shutters_parlour"; @@ -74963,7 +70107,7 @@ }, /turf/open/floor/plating, /area/chapel/main) -"cWe" = ( +"cPB" = ( /obj/structure/closet/coffin, /obj/machinery/light/small{ dir = 1 @@ -74971,14 +70115,14 @@ /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating, /area/chapel/main) -"cWf" = ( +"cPC" = ( /obj/structure/closet/coffin, /obj/structure/window/reinforced{ dir = 4 }, /turf/open/floor/plating, /area/chapel/main) -"cWg" = ( +"cPD" = ( /obj/structure/noticeboard{ desc = "A memorial wall for pinning up momentos"; name = "memorial board"; @@ -74993,7 +70137,7 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/chapel/main) -"cWh" = ( +"cPE" = ( /obj/structure/sign/plaques/kiddie/badger{ pixel_y = 32 }, @@ -75018,7 +70162,7 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/chapel/main) -"cWi" = ( +"cPF" = ( /obj/structure/noticeboard{ desc = "A memorial wall for pinning up momentos"; name = "memorial board"; @@ -75028,15 +70172,15 @@ /obj/structure/table/wood, /turf/open/floor/carpet, /area/chapel/main) -"cWj" = ( +"cPG" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/chapel/main) -"cWk" = ( +"cPH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cWl" = ( +"cPI" = ( /obj/machinery/light/small{ dir = 1 }, @@ -75051,7 +70195,7 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cWm" = ( +"cPJ" = ( /obj/structure/chair/comfy/black{ dir = 4 }, @@ -75060,7 +70204,7 @@ dir = 1 }, /area/chapel/main) -"cWn" = ( +"cPK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, @@ -75068,7 +70212,7 @@ dir = 4 }, /area/chapel/main) -"cWo" = ( +"cPL" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -75078,7 +70222,7 @@ dir = 1 }, /area/chapel/main) -"cWp" = ( +"cPM" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 @@ -75087,7 +70231,7 @@ dir = 4 }, /area/chapel/main) -"cWq" = ( +"cPN" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/chair/comfy/black{ dir = 8 @@ -75096,7 +70240,7 @@ dir = 4 }, /area/chapel/main) -"cWr" = ( +"cPO" = ( /obj/machinery/camera{ c_tag = "Departure Lounge - Port Aft"; dir = 4; @@ -75116,19 +70260,19 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWs" = ( +"cPP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 6 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWt" = ( +"cPQ" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWu" = ( +"cPR" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -75137,7 +70281,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWv" = ( +"cPS" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -75147,7 +70291,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWw" = ( +"cPT" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -75156,13 +70300,13 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWx" = ( +"cPU" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWy" = ( +"cPV" = ( /obj/machinery/camera{ c_tag = "Departure Lounge - Starboard Aft"; dir = 8; @@ -75185,19 +70329,49 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWz" = ( -/obj/structure/closet/coffin, -/turf/open/floor/plating, -/area/chapel/main) -"cWA" = ( -/obj/structure/closet/coffin, -/obj/machinery/door/window/eastleft{ - name = "Coffin Storage"; - req_access_txt = "22" +"cPW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/grille, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/aft) +"cPX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/whitepurple{ + dir = 4 + }, +/area/science/research) +"cPY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"cPZ" = ( +/obj/structure/closet/coffin, /turf/open/floor/plating, /area/chapel/main) -"cWB" = ( +"cQa" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -75209,13 +70383,13 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cWC" = ( +"cQb" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cWD" = ( +"cQc" = ( /obj/item/device/radio/intercom{ freerange = 0; frequency = 1459; @@ -75231,13 +70405,13 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cWE" = ( +"cQd" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cWF" = ( +"cQf" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -75247,7 +70421,7 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cWG" = ( +"cQg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, @@ -75255,20 +70429,20 @@ dir = 8 }, /area/chapel/main) -"cWH" = ( +"cQh" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/open/floor/plasteel/chapel, /area/chapel/main) -"cWI" = ( +"cQi" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/chapel, /area/chapel/main) -"cWJ" = ( +"cQj" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 2 }, @@ -75276,7 +70450,7 @@ dir = 8 }, /area/chapel/main) -"cWK" = ( +"cQk" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -75284,22 +70458,22 @@ dir = 8 }, /area/chapel/main) -"cWL" = ( +"cQl" = ( /turf/open/floor/plasteel/chapel, /area/chapel/main) -"cWM" = ( +"cQm" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWN" = ( +"cQn" = ( /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWO" = ( +"cQo" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=9.4-Escape-4"; @@ -75310,7 +70484,7 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWP" = ( +"cQp" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=9.3-Escape-3"; @@ -75321,91 +70495,141 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWQ" = ( +"cQq" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cWR" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" +"cQr" = ( +/obj/machinery/light/small{ + dir = 1 }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cWS" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cWT" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/light/small{ +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cWU" = ( -/obj/structure/closet/coffin, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/chapel/main) -"cWV" = ( -/obj/structure/chair{ - pixel_y = -2 - }, -/turf/open/floor/plasteel/vault, -/area/chapel/main) -"cWW" = ( -/obj/structure/chair{ - pixel_y = -2 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/vault, -/area/chapel/main) -"cWX" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, /obj/machinery/camera{ - c_tag = "Chapel - Funeral Parlour"; - dir = 8; - network = list("SS13") + c_tag = "Research Division Hallway - Xenobiology Lab Access"; + dir = 2; + network = list("SS13","RD") }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/chapel/main) -"cWY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/chapel/main) -"cWZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/chapel/main) -"cXa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/plasteel/chapel{ +/turf/open/floor/plasteel/whitepurple/side{ dir = 1 }, +/area/science/xenobiology) +"cQs" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/xenobiology) +"cQt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 2 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/xenobiology) +"cQv" = ( +/obj/machinery/camera{ + c_tag = "Toxins - Launch Area"; + dir = 2; + network = list("SS13","RD") + }, +/obj/machinery/suit_storage_unit/rd, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/science/mixing) +"cQx" = ( +/obj/structure/chair{ + pixel_y = -2 + }, +/turf/open/floor/plasteel/vault, /area/chapel/main) -"cXb" = ( +"cQB" = ( +/obj/machinery/doppler_array{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + listening = 1; + name = "Station Intercom (General)"; + pixel_y = 22 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/science/mixing) +"cQC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cQD" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 40; + pixel_x = 3; + pixel_y = -4 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cQE" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, @@ -75413,22 +70637,22 @@ dir = 4 }, /area/chapel/main) -"cXc" = ( +"cQF" = ( /obj/structure/table/wood, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cXd" = ( +"cQG" = ( /obj/item/storage/book/bible, /obj/structure/table/wood, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cXe" = ( +"cQH" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /turf/open/floor/plasteel/chapel{ dir = 1 }, /area/chapel/main) -"cXf" = ( +"cQI" = ( /obj/structure/chair/comfy/black{ dir = 8 }, @@ -75441,71 +70665,192 @@ dir = 4 }, /area/chapel/main) -"cXg" = ( +"cQJ" = ( /obj/structure/sign/warning/vacuum{ pixel_x = -32 }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cXh" = ( +"cQK" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cXi" = ( +"cQL" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cXj" = ( +"cQM" = ( /obj/machinery/holopad, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cXk" = ( +"cQN" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cXl" = ( +"cQO" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cXm" = ( +"cQP" = ( /obj/structure/sign/warning/vacuum{ pixel_x = 32 }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cXn" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-4" +"cQR" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xeno_blastdoor"; + name = "biohazard containment door" }, -/obj/structure/cable{ - icon_state = "1-8" +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cQS" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 }, -/turf/open/space, -/area/solar/starboard/aft) -"cXo" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xeno_blastdoor"; + name = "biohazard containment door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cQT" = ( +/obj/structure/closet/coffin, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/chapel/main) +"cQV" = ( +/obj/item/device/flashlight/lantern{ + pixel_y = 7 + }, +/obj/structure/table/wood, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"cQW" = ( +/obj/effect/landmark/start/chaplain, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"cQX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/chapel/main) +"cQY" = ( +/obj/machinery/door/airlock/external{ + name = "Departure Lounge Airlock" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cQZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno_blastdoor"; + name = "biohazard containment door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cRa" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall, +/area/science/xenobiology) +"cRb" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/science/xenobiology) +"cRc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "47" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/whitepurple{ + dir = 4 + }, +/area/science/xenobiology) +"cRe" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"cRf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/xenobiology) +"cRg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRh" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 9 + }, +/area/science/xenobiology) +"cRi" = ( +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"cRj" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cXp" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main) -"cXq" = ( +"cRk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRl" = ( /obj/machinery/door/window{ dir = 4; name = "Mass Driver"; @@ -75516,7 +70861,7 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cXr" = ( +"cRm" = ( /obj/machinery/mass_driver{ dir = 2; id = "chapelgun" @@ -75536,7 +70881,7 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cXs" = ( +"cRn" = ( /obj/machinery/camera{ c_tag = "Chapel - Port"; dir = 4; @@ -75549,49 +70894,55 @@ dir = 8 }, /area/chapel/main) -"cXt" = ( -/obj/item/device/flashlight/lantern{ - pixel_y = 7 +"cRo" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel/chapel{ + dir = 4 }, -/obj/structure/table/wood, -/turf/open/floor/plasteel/dark, /area/chapel/main) -"cXu" = ( -/obj/effect/landmark/start/chaplain, -/turf/open/floor/plasteel/dark, +"cRp" = ( +/turf/open/floor/plasteel/vault, /area/chapel/main) -"cXv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 +"cRq" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/vault, +/area/chapel/main) +"cRr" = ( +/obj/machinery/light/small, +/obj/machinery/button/door{ + id = "chapel_shutters_space"; + name = "chapel shutters control"; + pixel_x = -6; + pixel_y = -25; + req_access_txt = "0" + }, +/obj/machinery/light_switch{ + pixel_x = 6; + pixel_y = -25 }, /turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/chapel/main) +"cRs" = ( +/obj/machinery/light/small{ dir = 8 }, -/area/chapel/main) -"cXw" = ( -/obj/item/device/radio/intercom{ - freerange = 0; - frequency = 1459; - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/turf/open/floor/plasteel/chapel, -/area/chapel/main) -"cXx" = ( -/obj/machinery/door/airlock/external{ - name = "Departure Lounge Airlock" - }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) -"cXy" = ( +"cRt" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cRu" = ( /obj/structure/sign/warning/biohazard, /turf/closed/wall/r_wall, /area/science/xenobiology) -"cXz" = ( -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"cXA" = ( +"cRv" = ( /obj/machinery/doorButtons/access_button{ idDoor = "xeno_airlock_exterior"; idSelf = "xeno_airlock_control"; @@ -75603,12 +70954,11 @@ icon_state = "1-2" }, /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/research{ autoclose = 0; frequency = 1449; - icon_state = "door_locked"; id_tag = "xeno_airlock_exterior"; - locked = 1; name = "Xenobiology Lab External Airlock"; req_access_txt = "55" }, @@ -75616,11 +70966,59 @@ dir = 4 }, /area/science/xenobiology) -"cXB" = ( +"cRw" = ( /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/science/xenobiology) -"cXC" = ( +"cRx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"cRy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRz" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/xenobiology) +"cRA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/xenobiology) +"cRC" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRD" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cRE" = ( /obj/machinery/hydroponics/soil{ pixel_y = 8 }, @@ -75635,7 +71033,7 @@ dir = 2 }, /area/chapel/main) -"cXD" = ( +"cRF" = ( /obj/machinery/door/morgue{ name = "Chapel Garden"; req_access_txt = "0" @@ -75644,7 +71042,7 @@ dir = 2 }, /area/chapel/main) -"cXE" = ( +"cRG" = ( /obj/machinery/light/small, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -75657,20 +71055,16 @@ }, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cXF" = ( +"cRH" = ( /obj/structure/chair, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cXG" = ( +"cRI" = ( /obj/structure/chair, /obj/effect/landmark/start/chaplain, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cXH" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/vault, -/area/chapel/main) -"cXI" = ( +"cRJ" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -75688,7 +71082,7 @@ /obj/structure/table/wood, /turf/open/floor/plasteel/vault, /area/chapel/main) -"cXJ" = ( +"cRK" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -75697,41 +71091,1356 @@ }, /turf/open/floor/plasteel/dark, /area/chapel/main) -"cXK" = ( -/obj/structure/bookcase{ - name = "Holy Bookcase" - }, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/chapel/main) -"cXL" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/chapel/main) -"cXM" = ( -/turf/open/floor/plasteel/vault, -/area/chapel/main) -"cXN" = ( -/obj/machinery/light/small, -/obj/machinery/button/door{ +"cRL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ id = "chapel_shutters_space"; - name = "chapel shutters control"; - pixel_x = -6; - pixel_y = -25; - req_access_txt = "0" + name = "chapel shutters" }, +/turf/open/floor/plating, +/area/chapel/main) +"cRM" = ( +/obj/machinery/processor/slime, +/obj/effect/turf_decal/stripes/corner{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRN" = ( +/obj/machinery/monkey_recycler, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 8 + }, +/area/science/xenobiology) +"cRO" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard/aft) +"cRP" = ( +/obj/machinery/door/poddoor{ + id = "chapelgun"; + name = "Chapel Launcher Door" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/chapel/main) +"cRR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cRS" = ( +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/xenobiology) +"cRT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/light_switch{ + pixel_x = 25 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"cRU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"cRV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRW" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"cRX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cRY" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "test chamber blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"cRZ" = ( +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"cSa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"cSd" = ( +/turf/closed/wall, +/area/science/xenobiology) +"cSe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSh" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSj" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSk" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSm" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio8"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSn" = ( +/turf/open/floor/engine, +/area/science/xenobiology) +"cSp" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Pen #1"; + dir = 4; + network = list("SS13","RD","Xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSq" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen #1"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSs" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen #1"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSt" = ( +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSv" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen #2"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "containment blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSw" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen #2"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSx" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Pen #2"; + dir = 8; + network = list("SS13","RD","Xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSy" = ( +/mob/living/simple_animal/slime, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSz" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/space, +/area/solar/starboard/aft) +"cSA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSB" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio3"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSC" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/space, +/area/solar/starboard/aft) +"cSD" = ( +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"cSE" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSF" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSI" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/science/xenobiology) +"cSJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSL" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSM" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio7"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSN" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen #3"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSO" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen #3"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSP" = ( +/obj/docking_port/stationary/random{ + id = "pod_lavaland1"; + name = "lavaland" + }, +/turf/open/space, +/area/space/nearstation) +"cSQ" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen #4"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "containment blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cSR" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen #4"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSS" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio2"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cST" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio1"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSU" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_x = -32; + possible_destinations = "pod_lavaland1"; + shuttleId = "pod1" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/pod_1) +"cSV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSW" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table/wood, +/obj/item/folder{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/office) +"cSZ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 2; + pixel_y = 26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cTa" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cTb" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen #5"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTc" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen #5"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio1"; + name = "containment blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cTd" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_x = 25 + }, +/obj/item/storage/pod{ + pixel_x = -26 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/pod_1) +"cTe" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen #6"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTf" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"cTg" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen #6"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cTi" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/computer/shuttle/pod{ + pixel_y = -32; + possible_destinations = "pod_lavaland4"; + shuttleId = "pod4" + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/pod_4) +"cTj" = ( +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTk" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/button/ignition{ + id = "Xenobio"; + pixel_x = -6; + pixel_y = -3 + }, +/obj/machinery/button/door{ + id = "Xenolab"; + name = "Test Chamber Blast Doors"; + pixel_x = 4; + pixel_y = -3; + req_access_txt = "55" + }, +/obj/structure/table/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTm" = ( +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "test chamber blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"cTn" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"cTo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/chapel/main) +"cTp" = ( +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"cTq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch{ + name = "Test Chamber Maintenance"; + req_access_txt = "47"; + req_one_access_txt = "0" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cTr" = ( +/obj/machinery/computer/security/telescreen{ + dir = 1; + name = "Test Chamber Monitor"; + network = list("Xeno"); + pixel_y = 2 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTs" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTt" = ( +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Maximum Security Test Chamber"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTu" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = 25 + }, +/obj/item/storage/pod{ pixel_x = 6; - pixel_y = -25 + pixel_y = -32 + }, +/obj/machinery/light/small, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/pod_4) +"cTw" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cTy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/comfy/black{ + dir = 4 }, /turf/open/floor/plasteel/chapel{ dir = 1 }, /area/chapel/main) -"cXO" = ( +"cTz" = ( +/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/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTA" = ( +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"cTB" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"cTC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"cTD" = ( +/obj/structure/cable/yellow, +/obj/machinery/shieldwallgen/xenobiologyaccess, +/turf/open/floor/plating, +/area/science/xenobiology) +"cTR" = ( +/obj/effect/landmark/xmastree, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"cTT" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"cUH" = ( +/obj/structure/table/optable, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cUL" = ( +/obj/docking_port/stationary/random{ + dir = 4; + id = "pod_lavaland4"; + name = "lavaland" + }, +/turf/open/space, +/area/space/nearstation) +"cUM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cUN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cUR" = ( +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/valve/digital{ + name = "Waste Release" + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cUT" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/machinery/photocopier{ + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/library) +"cUU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/wood, +/area/library) +"cUZ" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 5; + height = 7; + id = "supply_home"; + name = "Cargo Bay"; + width = 12 + }, +/turf/open/space/basic, +/area/space) +"cVa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cVb" = ( +/obj/structure/table/wood, +/obj/item/device/camera_film{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/device/camera_film{ + pixel_y = 9 + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/turf/open/floor/wood, +/area/library) +"cVd" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = -30 + }, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"cVe" = ( +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole/bookmanagement, +/obj/structure/noticeboard{ + desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; + dir = 8; + name = "requests board"; + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/library) +"cVf" = ( +/obj/machinery/light_switch{ + pixel_x = 28 + }, +/turf/open/floor/wood, +/area/library) +"cVh" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"cVi" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/wood, +/area/library) +"cVx" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 13; + id = "ferry_home"; + name = "port bay 2"; + turf_type = /turf/open/space; + width = 5 + }, +/turf/open/space/basic, +/area/space) +"cVy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/atmos) +"cVz" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "n2_in"; + volume_rate = 200 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/engine/atmos) +"cVC" = ( +/mob/living/simple_animal/sloth/citrus, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"cVD" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cVE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"cVH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"cVJ" = ( +/obj/structure/window/reinforced, +/obj/machinery/computer/atmos_control/tank{ + dir = 1; + frequency = 1441; + input_tag = "air_in"; + name = "Mixed Air Supply Control"; + output_tag = "air_out"; + sensors = list("air_sensor" = "Tank") + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/engine/atmos) +"cVK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"cVL" = ( +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"cVM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"cVQ" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"cWg" = ( +/obj/docking_port/mobile/auxillary_base{ + dheight = 4; + dir = 2; + dwidth = 4; + height = 9; + width = 9; + timid = 0 + }, +/obj/machinery/bluespace_beacon, +/obj/machinery/computer/auxillary_base, +/turf/closed/wall, +/area/shuttle/auxillary_base) +"cWh" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"cWA" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cWF" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"cWJ" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"cWK" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"cWM" = ( +/obj/machinery/door/airlock/external{ + name = "Construction Zone"; + req_access = null; + req_access_txt = "0"; + req_one_access_txt = "0" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"cXc" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/easel, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cXz" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Aft"; + dir = 1; + network = list("SS13","Engine") + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cXA" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) +"cXE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/construction/mining/aux_base) +"cXI" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cXR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/construction/mining/aux_base) +"cXZ" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cYc" = ( +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/machinery/camera{ + c_tag = "Robotics - Aft"; + dir = 1; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/robotics/lab) +"cYj" = ( +/obj/structure/closet/firecloset, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cYE" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/construction/mining/aux_base) +"cYG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/yellow/side, +/area/construction/mining/aux_base) +"cYJ" = ( +/obj/docking_port/stationary{ + dheight = 0; + dir = 2; + dwidth = 9; + height = 25; + id = "emergency_home"; + name = "MetaStation emergency evac bay"; + width = 29 + }, +/turf/open/space/basic, +/area/space) +"cYK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for the Auxillary Mining Base."; + dir = 1; + name = "Auxillary Base Monitor"; + network = list("AuxBase"); + pixel_y = -28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/yellow/side, +/area/construction/mining/aux_base) +"cYL" = ( +/obj/machinery/door/poddoor/shutters{ + id = "aux_base_shutters"; + name = "Auxillary Base Shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"cYP" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/engineering{ + name = "Auxillary Base Construction"; + req_access_txt = "0"; + req_one_access_txt = "32;47;48" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"cYQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/construction/mining/aux_base) +"cYT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cZa" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cZc" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/turf/open/floor/plasteel/chapel, +/area/chapel/main) +"cZd" = ( /obj/structure/chair/comfy/black{ dir = 8 }, @@ -75739,21 +72448,559 @@ dir = 4 }, /area/chapel/main) -"cXP" = ( +"cZf" = ( +/obj/structure/chair, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"cZh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/yellow/corner{ + dir = 4 + }, +/area/hallway/secondary/entry) +"cZq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"cZv" = ( +/turf/open/floor/circuit/killroom, +/area/science/xenobiology) +"cZR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/main) +"dap" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel/red/side{ + dir = 4 + }, +/area/security/main) +"daA" = ( +/obj/machinery/door/window/southleft{ + dir = 2; + name = "Maximum Security Test Chamber"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "test chamber blast door" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"daB" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/engine, +/area/science/xenobiology) +"daC" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"daD" = ( +/obj/structure/disposaloutlet{ + dir = 2 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"daE" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 10 + }, +/obj/item/device/electropack, +/turf/open/floor/engine, +/area/science/xenobiology) +"daF" = ( +/obj/machinery/sparker{ + id = "Xenobio"; + pixel_x = -25 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"daG" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"daH" = ( +/obj/item/device/radio/beacon, +/turf/open/floor/engine, +/area/science/xenobiology) +"daI" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/stack/cable_coil, +/obj/item/device/multitool, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"daJ" = ( +/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner, +/turf/open/floor/engine, +/area/science/xenobiology) +"daK" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Test Chamber"; + dir = 1; + network = list("SS13","RD","Xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"daL" = ( +/obj/machinery/light/small, +/turf/open/floor/engine, +/area/science/xenobiology) +"daM" = ( +/obj/structure/table, +/obj/item/device/assembly/igniter{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/device/assembly/igniter{ + pixel_x = 2; + pixel_y = -1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"daN" = ( +/obj/item/device/radio/intercom{ + pixel_y = -25 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"daO" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"daP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"daQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"daR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1; + external_pressure_bound = 140; + name = "server vent"; + pressure_checks = 0 + }, +/turf/open/floor/circuit/killroom, +/area/science/xenobiology) +"daS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/circuit/killroom, +/area/science/xenobiology) +"daW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"daX" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/port/fore) +"daY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"daZ" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/machinery/power/rad_collector/anchored, +/obj/structure/cable, +/obj/structure/window/plasma/reinforced, +/turf/open/floor/engine, +/area/engine/supermatter) +"dbb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"dbd" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"dbe" = ( +/obj/machinery/keycard_auth{ + pixel_x = 26 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"dbg" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dbh" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dbj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dbk" = ( +/obj/item/hand_labeler_refill, +/obj/structure/easel, +/turf/open/floor/plating, +/area/maintenance/port) +"dbl" = ( +/obj/structure/easel, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dbm" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"dbn" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"dbo" = ( /obj/machinery/light/small{ dir = 8 }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cXQ" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Pen #3"; + dir = 4; + network = list("SS13","RD","Xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"dbp" = ( /obj/machinery/light/small{ dir = 4 }, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Pen #4"; + dir = 8; + network = list("SS13","RD","Xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"dbq" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/maintenance/port/aft) +"dbr" = ( +/obj/machinery/camera{ + c_tag = "Morgue"; + dir = 2; + network = list("SS13","Medbay") + }, +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"dbs" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Pen #5"; + dir = 4; + network = list("SS13","RD","Xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"dbt" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Pen #6"; + dir = 8; + network = list("SS13","RD","Xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"dbv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small, +/turf/open/floor/circuit/killroom, +/area/science/xenobiology) +"dbw" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Lab - Kill Chamber"; + dir = 1; + network = list("SS13","RD","Xeno"); + start_active = 1 + }, +/turf/open/floor/circuit/killroom, +/area/science/xenobiology) +"dbE" = ( +/obj/machinery/plantgenes, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"dbF" = ( +/obj/structure/bookcase{ + name = "Holy Bookcase" + }, +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/chapel/main) +"dbH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/research{ + id_tag = "ResearchInt"; + name = "Research Division"; + req_access_txt = "0"; + req_one_access_txt = "47" + }, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cXR" = ( +/area/science/research) +"dbI" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/research{ + id_tag = "ResearchInt"; + name = "Research Division"; + req_access_txt = "0"; + req_one_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"dbJ" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/solar{ + id = "aftstarboard"; + name = "Aft-Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard/aft) +"dbK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/space, +/area/solar/starboard/aft) +"dbL" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/solar{ + id = "aftstarboard"; + name = "Aft-Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard/aft) +"dbM" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space, +/area/solar/starboard/aft) +"dbN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"dbO" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space, +/area/solar/starboard/aft) +"dbP" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"dbQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"dbR" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space, +/area/solar/starboard/aft) +"dbS" = ( +/obj/structure/lattice/catwalk, +/obj/item/stack/cable_coil, +/turf/open/space, +/area/solar/starboard/aft) +"dbT" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/space, +/area/solar/starboard/aft) +"dbU" = ( +/obj/machinery/power/tracker, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating/airless, +/area/solar/starboard/aft) +"dbV" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space, +/area/solar/starboard/aft) +"dbW" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/space, +/area/solar/starboard/aft) +"dbX" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/structure/sink{ dir = 8; @@ -75765,7 +73012,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cXS" = ( +"dbY" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -75774,7 +73021,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cXT" = ( +"dbZ" = ( /obj/machinery/doorButtons/access_button{ idDoor = "xeno_airlock_interior"; idSelf = "xeno_airlock_control"; @@ -75796,20 +73043,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cXU" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 9 - }, -/area/science/xenobiology) -"cXV" = ( +"dca" = ( /obj/machinery/firealarm{ dir = 2; pixel_y = 26 @@ -75818,12 +73052,7 @@ dir = 1 }, /area/science/xenobiology) -"cXW" = ( -/turf/open/floor/plasteel/whitepurple/side{ - dir = 1 - }, -/area/science/xenobiology) -"cXX" = ( +"dcb" = ( /obj/machinery/airalarm{ pixel_y = 23 }, @@ -75836,7 +73065,7 @@ dir = 1 }, /area/science/xenobiology) -"cXY" = ( +"dcc" = ( /obj/structure/table/glass, /obj/item/stack/sheet/mineral/plasma{ pixel_y = 4 @@ -75872,7 +73101,7 @@ dir = 1 }, /area/science/xenobiology) -"cXZ" = ( +"dcd" = ( /obj/structure/table/glass, /obj/item/paper_bin{ pixel_y = 4 @@ -75898,7 +73127,7 @@ dir = 1 }, /area/science/xenobiology) -"cYa" = ( +"dce" = ( /obj/structure/table/glass, /obj/item/storage/box/monkeycubes{ pixel_x = 2; @@ -75909,7 +73138,7 @@ dir = 1 }, /area/science/xenobiology) -"cYb" = ( +"dcf" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 @@ -75918,23 +73147,7 @@ dir = 5 }, /area/science/xenobiology) -"cYc" = ( -/obj/machinery/door/poddoor{ - id = "chapelgun"; - name = "Chapel Launcher Door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/chapel/main) -"cYd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chapel_shutters_space"; - name = "chapel shutters" - }, -/turf/open/floor/plating, -/area/chapel/main) -"cYe" = ( +"dcg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/shower{ dir = 4 @@ -75950,7 +73163,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYf" = ( +"dch" = ( /obj/structure/cable/yellow{ icon_state = "1-4" }, @@ -75959,7 +73172,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYg" = ( +"dci" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -75971,14 +73184,13 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYh" = ( +"dcj" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/research{ autoclose = 0; frequency = 1449; - icon_state = "door_locked"; id_tag = "xeno_airlock_interior"; - locked = 1; name = "Xenobiology Lab Internal Airlock"; req_access_txt = "55" }, @@ -75992,7 +73204,7 @@ dir = 4 }, /area/science/xenobiology) -"cYi" = ( +"dck" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -76011,7 +73223,7 @@ dir = 8 }, /area/science/xenobiology) -"cYj" = ( +"dcl" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, @@ -76020,7 +73232,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYk" = ( +"dcm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -76033,7 +73245,7 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"cYl" = ( +"dcn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -76049,7 +73261,7 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"cYm" = ( +"dco" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 10 }, @@ -76062,39 +73274,24 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"cYn" = ( +"dcp" = ( /obj/structure/cable/yellow{ icon_state = "1-8" }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYo" = ( +"dcq" = ( /obj/structure/chair/office/light{ dir = 1 }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYp" = ( -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cYq" = ( +"dcr" = ( /turf/open/floor/plasteel/whitepurple/side{ dir = 4 }, /area/science/xenobiology) -"cYr" = ( -/obj/docking_port/stationary{ - dheight = 0; - dir = 2; - dwidth = 9; - height = 25; - id = "emergency_home"; - name = "MetaStation emergency evac bay"; - width = 29 - }, -/turf/open/space/basic, -/area/space) -"cYs" = ( +"dcs" = ( /obj/structure/closet/emcloset, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 5 @@ -76109,7 +73306,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYt" = ( +"dct" = ( /obj/structure/closet/l3closet/scientist, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 @@ -76120,7 +73317,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYu" = ( +"dcu" = ( /obj/structure/closet/l3closet/scientist, /obj/machinery/airalarm{ dir = 1; @@ -76134,28 +73331,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"cYw" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/xenobiology) -"cYx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cYy" = ( +"dcv" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 10 }, @@ -76167,14 +73343,14 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"cYz" = ( +"dcw" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/science/xenobiology) -"cYA" = ( +"dcx" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/chair/comfy/black{ dir = 1 @@ -76184,67 +73360,33 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"cYB" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cYC" = ( +"dcy" = ( /obj/machinery/holopad, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYD" = ( +"dcz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall/r_wall, /area/science/xenobiology) -"cYE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/xenobiology) -"cYF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cYG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cYH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cYI" = ( +"dcA" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYJ" = ( +"dcB" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYK" = ( +"dcC" = ( /obj/structure/chair/office/light, /obj/effect/landmark/start/scientist, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYL" = ( +"dcD" = ( /obj/machinery/reagentgrinder{ pixel_x = -1; pixel_y = 8 @@ -76254,49 +73396,20 @@ dir = 4 }, /area/science/xenobiology) -"cYM" = ( +"dcE" = ( /obj/machinery/atmospherics/components/unary/outlet_injector/on{ dir = 4 }, /turf/open/floor/plating/airless, /area/science/xenobiology) -"cYN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/science/xenobiology) -"cYO" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cYP" = ( -/obj/machinery/monkey_recycler, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/whitepurple/side{ - dir = 8 - }, -/area/science/xenobiology) -"cYQ" = ( -/obj/machinery/processor/slime, -/obj/effect/turf_decal/stripes/corner{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cYR" = ( +"dcG" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/stripes/line{ dir = 2 }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYS" = ( +"dcH" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -76308,7 +73421,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYT" = ( +"dcI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/disposalpipe/segment{ dir = 4 @@ -76318,7 +73431,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYU" = ( +"dcJ" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/extinguisher{ pixel_x = 4; @@ -76333,7 +73446,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cYV" = ( +"dcK" = ( /obj/machinery/disposal/bin, /obj/structure/sign/warning/deathsposal{ pixel_y = -32 @@ -76345,7 +73458,7 @@ dir = 2 }, /area/science/xenobiology) -"cYW" = ( +"dcL" = ( /obj/machinery/light, /obj/structure/table/glass, /obj/item/storage/box/beakers{ @@ -76357,7 +73470,7 @@ }, /turf/open/floor/plasteel/whitepurple/side, /area/science/xenobiology) -"cYX" = ( +"dcM" = ( /obj/machinery/chem_master, /obj/item/device/radio/intercom{ name = "Station Intercom (General)"; @@ -76365,339 +73478,13 @@ }, /turf/open/floor/plasteel/whitepurple/side, /area/science/xenobiology) -"cYY" = ( +"dcN" = ( /obj/machinery/chem_heater, /turf/open/floor/plasteel/whitepurple/side{ dir = 6 }, /area/science/xenobiology) -"cYZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZa" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZc" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet, -/turf/open/floor/engine, -/area/science/xenobiology) -"cZd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cZe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cZf" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZj" = ( -/obj/structure/window/reinforced, -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio8"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZk" = ( -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cZl" = ( -/turf/open/floor/engine, -/area/science/xenobiology) -"cZm" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #1"; - dir = 4; - network = list("SS13","RD","Xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cZn" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #1"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cZo" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #1"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZs" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #2"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZt" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #2"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "containment blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cZu" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #2"; - dir = 8; - network = list("SS13","RD","Xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cZv" = ( -/mob/living/simple_animal/slime, -/turf/open/floor/engine, -/area/science/xenobiology) -"cZw" = ( -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cZx" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio3"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZy" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZA" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZB" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cZD" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cZE" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall, -/area/science/xenobiology) -"cZF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZG" = ( +"dcO" = ( /obj/structure/sink{ dir = 4; pixel_x = 11 @@ -76713,7 +73500,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cZH" = ( +"dcP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -76727,35 +73514,14 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/xenobiology) -"cZI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZJ" = ( +"dcQ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/corner{ dir = 8 }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cZK" = ( -/obj/structure/window/reinforced, -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio7"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZL" = ( +"dcR" = ( /obj/structure/cable/yellow{ icon_state = "0-2" }, @@ -76766,138 +73532,7 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/xenobiology) -"cZM" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #3"; - dir = 4; - network = list("SS13","RD","Xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cZN" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #3"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cZO" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #3"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZQ" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #4"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZR" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #4"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "containment blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cZS" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #4"; - dir = 8; - network = list("SS13","RD","Xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cZT" = ( -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cZU" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio2"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZV" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZW" = ( +"dcS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -76912,26 +73547,14 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/xenobiology) -"cZX" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZY" = ( +"dcT" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"cZZ" = ( +"dcU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -76945,7 +73568,7 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/xenobiology) -"daa" = ( +"dcV" = ( /obj/structure/window/reinforced, /obj/machinery/button/door{ id = "xenobio6"; @@ -76959,7 +73582,7 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"dab" = ( +"dcW" = ( /obj/structure/cable/yellow{ icon_state = "0-2" }, @@ -76970,85 +73593,7 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/xenobiology) -"dac" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #5"; - dir = 4; - network = list("SS13","RD","Xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dad" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #5"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "containment blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dae" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #5"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"daf" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #6"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"dag" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #6"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "containment blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dah" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #6"; - dir = 8; - network = list("SS13","RD","Xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dai" = ( +"dcX" = ( /obj/structure/cable/yellow{ icon_state = "0-4" }, @@ -77060,26 +73605,7 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/xenobiology) -"daj" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio1"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"dak" = ( +"dcY" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -77089,20 +73615,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dal" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dam" = ( +"dcZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/cable/yellow{ icon_state = "4-8" @@ -77110,7 +73623,7 @@ /obj/effect/turf_decal/stripes/corner, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dan" = ( +"dda" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -77126,7 +73639,7 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"dao" = ( +"ddb" = ( /obj/structure/cable/yellow, /obj/structure/cable/yellow{ icon_state = "0-8" @@ -77141,7 +73654,7 @@ }, /turf/open/floor/plating, /area/science/xenobiology) -"dap" = ( +"ddc" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -77150,7 +73663,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"daq" = ( +"ddd" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -77162,17 +73675,11 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dar" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"das" = ( +"dde" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"dat" = ( -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"dau" = ( +"ddf" = ( /obj/machinery/portable_atmospherics/canister, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 @@ -77187,60 +73694,7 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"dav" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"daw" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dax" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"day" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"daz" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 2; - pixel_y = 26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"daA" = ( +"ddg" = ( /obj/machinery/portable_atmospherics/canister, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 @@ -77255,38 +73709,21 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"daB" = ( +"ddh" = ( /turf/open/floor/plating{ icon_state = "platingdmg3" }, /area/maintenance/department/science/xenobiology) -"daC" = ( +"ddi" = ( /obj/structure/rack, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"daD" = ( +"ddj" = ( /turf/open/floor/plating{ icon_state = "platingdmg2" }, /area/maintenance/department/science/xenobiology) -"daE" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"daF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch{ - name = "Test Chamber Maintenance"; - req_access_txt = "47"; - req_one_access_txt = "0" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"daG" = ( +"ddk" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -77298,19 +73735,7 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"daH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"daI" = ( +"ddl" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -77330,7 +73755,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"daJ" = ( +"ddm" = ( /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -77345,7 +73770,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"daK" = ( +"ddn" = ( /obj/structure/cable/yellow{ icon_state = "4-8" }, @@ -77354,7 +73779,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"daL" = ( +"ddo" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, @@ -77366,7 +73791,7 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"daM" = ( +"ddp" = ( /obj/machinery/door/airlock/hatch{ name = "Test Chamber Maintenance"; req_access_txt = "47"; @@ -77377,111 +73802,17 @@ }, /turf/open/floor/plating, /area/science/xenobiology) -"daN" = ( +"ddq" = ( /obj/structure/cable/yellow{ icon_state = "2-8" }, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"daO" = ( +"ddr" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"daP" = ( -/obj/structure/closet, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"daQ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"daR" = ( -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"daS" = ( -/obj/machinery/computer/security/telescreen{ - dir = 1; - name = "Test Chamber Monitor"; - network = list("Xeno"); - pixel_y = 2 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"daT" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/button/ignition{ - id = "Xenobio"; - pixel_x = -6; - pixel_y = -3 - }, -/obj/machinery/button/door{ - id = "Xenolab"; - name = "Test Chamber Blast Doors"; - pixel_x = 4; - pixel_y = -3; - req_access_txt = "55" - }, -/obj/structure/table/reinforced, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"daU" = ( -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Maximum Security Test Chamber"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"daV" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"daW" = ( -/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/effect/turf_decal/stripes/line{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"daX" = ( +"dds" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, @@ -77490,64 +73821,13 @@ }, /turf/open/floor/plasteel, /area/science/xenobiology) -"daY" = ( +"ddt" = ( /obj/structure/cable/yellow{ icon_state = "1-2" }, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"daZ" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"dba" = ( -/obj/structure/cable/yellow, -/obj/machinery/shieldwallgen/xenobiologyaccess, -/turf/open/floor/plating, -/area/science/xenobiology) -"dbb" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "test chamber blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"dbc" = ( -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "test chamber blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"dbd" = ( -/obj/machinery/door/window/southleft{ - dir = 2; - name = "Maximum Security Test Chamber"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "test chamber blast door" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbe" = ( +"ddu" = ( /obj/structure/cable/yellow{ icon_state = "0-8" }, @@ -77562,7 +73842,7 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/xenobiology) -"dbf" = ( +"ddv" = ( /obj/structure/cable/yellow{ icon_state = "0-8" }, @@ -77573,62 +73853,7 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/science/xenobiology) -"dbg" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"dbh" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbi" = ( -/obj/structure/disposaloutlet{ - dir = 2 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbj" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 10 - }, -/obj/item/device/electropack, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbk" = ( -/obj/machinery/sparker{ - id = "Xenobio"; - pixel_x = -25 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbl" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbm" = ( -/obj/item/device/radio/beacon, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbn" = ( -/obj/structure/table, -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/stack/cable_coil, -/obj/item/device/multitool, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbo" = ( +"ddw" = ( /obj/structure/cable/yellow, /obj/machinery/power/apc{ dir = 4; @@ -77638,91 +73863,7 @@ }, /turf/open/floor/plating, /area/maintenance/department/science/xenobiology) -"dbp" = ( -/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbq" = ( -/obj/machinery/light/small, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbr" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Test Chamber"; - dir = 1; - network = list("SS13","RD","Xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbs" = ( -/obj/item/device/radio/intercom{ - pixel_y = -25 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbt" = ( -/obj/structure/table, -/obj/item/device/assembly/igniter{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 2; - pixel_y = -1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbu" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"dbv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"dbw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"dbx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - glass = 1; - name = "Slime Euthanization Chamber"; - opacity = 0; - req_access_txt = "55" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dby" = ( +"ddx" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -77733,56 +73874,17 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dbz" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dbA" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dbB" = ( -/obj/machinery/door/airlock/research{ - glass = 1; - name = "Slime Euthanization Chamber"; - opacity = 0; - req_access_txt = "55" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dbC" = ( +"ddy" = ( /turf/open/floor/plating{ icon_state = "platingdmg1" }, /area/maintenance/department/science/xenobiology) -"dbD" = ( -/obj/structure/rack, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/suit/hooded/wintercoat, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"dbE" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1; - name = "euthanization chamber freezer"; - on = 1; - target_temperature = 80 - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"dbF" = ( +"ddz" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/open/floor/plating, /area/science/xenobiology) -"dbG" = ( +"ddA" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research{ @@ -77793,23 +73895,7 @@ }, /turf/open/floor/plasteel/white, /area/science/xenobiology) -"dbH" = ( -/turf/open/floor/circuit/killroom, -/area/science/xenobiology) -"dbI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1; - external_pressure_bound = 140; - name = "server vent"; - pressure_checks = 0 - }, -/turf/open/floor/circuit/killroom, -/area/science/xenobiology) -"dbJ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/circuit/killroom, -/area/science/xenobiology) -"dbK" = ( +"ddB" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 1; external_pressure_bound = 120; @@ -77817,31 +73903,4363 @@ }, /turf/open/floor/circuit/killroom, /area/science/xenobiology) -"dbL" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small, -/turf/open/floor/circuit/killroom, -/area/science/xenobiology) -"dbM" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Kill Chamber"; - dir = 1; - network = list("SS13","RD","Xeno"); - start_active = 1 - }, -/turf/open/floor/circuit/killroom, -/area/science/xenobiology) -"dbN" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"dbO" = ( +"ddC" = ( /obj/structure/disposalpipe/trunk{ dir = 1 }, /obj/structure/disposaloutlet, /turf/open/floor/plating/airless, /area/science/xenobiology) +"ddE" = ( +/obj/effect/landmark/start/cook, +/obj/machinery/holopad, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"ddF" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"ddG" = ( +/obj/effect/turf_decal/stripes/line, +/obj/docking_port/stationary/public_mining_dock, +/turf/open/floor/plating, +/area/shuttle/auxillary_base) +"ddO" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ddP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ddQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ddS" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Fore"; + dir = 4; + network = list("SS13","Engine") + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ddT" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ddU" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ddV" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ddW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ddX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ddY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ddZ" = ( +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"dea" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + volume_rate = 200 + }, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"deb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"ded" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/engineering) +"dee" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/engineering) +"def" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"deh" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/engineering) +"dei" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dej" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dek" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 2; + name = "Mix to Gas" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"del" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dem" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Gas to Mix" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"den" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"dep" = ( +/obj/machinery/firealarm{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"deq" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"der" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"des" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"deu" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dev" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"dew" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Laser Room"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"dex" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"dey" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"deA" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"deB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"deC" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"deD" = ( +/obj/machinery/status_display, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"deI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"deJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, +/turf/open/floor/engine, +/area/engine/engineering) +"deK" = ( +/obj/structure/cable/white, +/obj/machinery/power/emitter/anchored{ + dir = 2; + state = 2 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"deL" = ( +/obj/structure/cable/white, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"deM" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"deN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"deO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"deS" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/machinery/power/rad_collector/anchored, +/obj/structure/cable, +/obj/structure/window/plasma/reinforced, +/turf/open/floor/engine, +/area/engine/supermatter) +"deU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, +/turf/open/floor/engine, +/area/engine/engineering) +"deV" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"deW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Starboard"; + dir = 4; + network = list("SS13","Engine") + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"deX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"deY" = ( +/obj/structure/reflector/single/anchored{ + dir = 9 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"dfa" = ( +/obj/machinery/power/supermatter_shard/crystal/engine, +/turf/open/floor/engine, +/area/engine/supermatter) +"dfb" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"dfc" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"dfd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dfe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, +/turf/open/floor/engine, +/area/engine/engineering) +"dff" = ( +/obj/structure/reflector/double/anchored{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"dfg" = ( +/obj/structure/reflector/single/anchored{ + dir = 10 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"dfh" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"dfi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"dfj" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"dfk" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/machinery/power/rad_collector/anchored, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"dfm" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/machinery/power/rad_collector/anchored, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"dfp" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"dfq" = ( +/obj/machinery/camera{ + c_tag = "Supermatter Chamber"; + dir = 4; + network = list("Engine") + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"dft" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dfu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + filter_type = "n2" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dfz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"dfA" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"dfB" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/power/emitter/anchored{ + dir = 1; + state = 2 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"dfC" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/power/emitter/anchored{ + dir = 1; + state = 2 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"dfD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dfE" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dfF" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/meter, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dfG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dfI" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Cooling Loop Bypass" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dfJ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dfM" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"dfO" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"dfP" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Atmos to Loop" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dfQ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/engine, +/area/engine/engineering) +"dfR" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Gas to Cold Loop"; + on = 1 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engine/engineering) +"dfS" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engine/engineering) +"dfT" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engine/engineering) +"dfU" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Cold Loop to Gas"; + on = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dfV" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"dfW" = ( +/obj/item/wrench, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"dfX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/engine/engineering) +"dfY" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"dfZ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"dga" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"dgb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"dgc" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dgd" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/space, +/area/space/nearstation) +"dge" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"dgf" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/space, +/area/space/nearstation) +"dgg" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"dgh" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"dgi" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dgj" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"dgk" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"dgm" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"dgo" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dgp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dgr" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 10 + }, +/turf/open/space, +/area/space/nearstation) +"dgt" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"dgu" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/space, +/area/space/nearstation) +"dgv" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"dgw" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space/nearstation) +"dgz" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/delivery, +/obj/item/clothing/glasses/meson/engine, +/turf/open/floor/plasteel, +/area/engine/engineering) +"dgA" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space/nearstation) +"dgB" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"dgI" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 5 + }, +/turf/open/space, +/area/space/nearstation) +"dgJ" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"dgK" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"dgM" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 10 + }, +/turf/open/space, +/area/space/nearstation) +"dgN" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space/nearstation) +"dgO" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space/nearstation) +"dgS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/transit_tube/horizontal, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space/nearstation) +"dha" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space/nearstation) +"dhc" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space, +/area/space/nearstation) +"dhe" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"dhg" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"dhh" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Mix to Engine"; + on = 0 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"dhi" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/door/window/northleft{ + dir = 8; + icon_state = "left"; + name = "Inner Pipe Access"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"dhj" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"dhk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"dhl" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 9 + }, +/turf/open/space, +/area/space/nearstation) +"dhn" = ( +/obj/structure/table, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fore) +"dho" = ( +/obj/item/stack/sheet/cardboard, +/obj/structure/light_construct/small{ + dir = 1 + }, +/obj/structure/closet/crate, +/obj/item/coin/silver, +/obj/item/grenade/chem_grenade, +/obj/item/storage/box/lights/mixed, +/obj/item/watertank, +/obj/item/storage/box/donkpockets, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dhp" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"dhq" = ( +/obj/structure/table/reinforced, +/obj/structure/light_construct/small{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/structure/window/reinforced, +/obj/item/poster/random_official, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dhr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"dhs" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/blue, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/neck/tie/blue, +/obj/item/clothing/head/soft/blue, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault, +/area/crew_quarters/fitness/recreation) +"dht" = ( +/obj/item/cigbutt, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dhu" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dhv" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Outer Window"; + req_access_txt = "0" + }, +/obj/machinery/door/window/brigdoor{ + dir = 8; + name = "Brig Control Desk"; + req_access_txt = "3" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/poster/random_official, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"dhw" = ( +/obj/structure/closet, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dhx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dhy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/cardboard, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/floorgrime, +/area/quartermaster/warehouse) +"dhz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"dhA" = ( +/obj/machinery/washing_machine, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/barber, +/area/crew_quarters/dorms) +"dhB" = ( +/obj/item/clothing/glasses/meson, +/obj/structure/closet/crate, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dhC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/rack, +/obj/item/stack/sheet/cardboard, +/obj/item/stack/rods/fifty, +/obj/item/paper, +/obj/item/storage/box/lights/mixed, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/floorgrime, +/area/quartermaster/warehouse) +"dhD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"dhE" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dhF" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/vault, +/area/crew_quarters/dorms) +"dhG" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/brown/corner{ + dir = 4 + }, +/area/construction/storage/wing) +"dhH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dhI" = ( +/obj/machinery/vending/assist, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/brown{ + dir = 1 + }, +/area/storage/primary) +"dhJ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"dhK" = ( +/obj/structure/closet, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dhL" = ( +/obj/structure/table, +/obj/item/device/analyzer, +/obj/machinery/power/apc{ + dir = 2; + name = "Tool Storage APC"; + areastring = "/area/storage/primary"; + pixel_y = -27 + }, +/obj/structure/cable/yellow, +/obj/item/wrench, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/brown{ + dir = 10 + }, +/area/storage/primary) +"dhM" = ( +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/arrival{ + dir = 5 + }, +/area/hallway/secondary/entry) +"dhN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"dhO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dhP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"dhQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dhR" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"dhS" = ( +/obj/machinery/vending/cigarette, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/crew_quarters/toilet/auxiliary) +"dhT" = ( +/obj/structure/sign/poster/random, +/turf/closed/wall, +/area/crew_quarters/bar) +"dhU" = ( +/obj/structure/piano, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"dhV" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"dhW" = ( +/obj/structure/table/wood, +/obj/item/staff/broom, +/obj/item/wrench, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"dhX" = ( +/obj/structure/table/wood, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/clothing/head/sombrero, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"dhZ" = ( +/obj/structure/urinal{ + pixel_y = 29 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/crew_quarters/toilet/auxiliary) +"dib" = ( +/obj/structure/table/wood, +/obj/item/lipstick{ + pixel_y = 5 + }, +/obj/machinery/camera{ + c_tag = "Theatre - Stage"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/device/instrument/guitar, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"dic" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/arrival{ + dir = 4 + }, +/area/hallway/secondary/entry) +"did" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"dif" = ( +/obj/item/soap/nanotrasen, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"dig" = ( +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"dih" = ( +/obj/machinery/light/small, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/crew_quarters/toilet/auxiliary) +"dii" = ( +/obj/machinery/door/window{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Theatre Stage"; + req_access_txt = "0" + }, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/turf/open/floor/carpet, +/area/crew_quarters/theatre) +"dij" = ( +/obj/item/device/instrument/violin, +/obj/structure/table/wood, +/obj/item/device/radio/intercom{ + freerange = 0; + frequency = 1459; + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"dik" = ( +/obj/structure/sign/poster/official/random, +/turf/closed/wall, +/area/crew_quarters/kitchen) +"dil" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/clothing/mask/pig, +/obj/item/bikehorn, +/obj/structure/table/wood, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"dim" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/sign/poster/contraband/clown{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"din" = ( +/obj/structure/table/wood, +/obj/item/paper, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"dio" = ( +/obj/structure/closet/crate, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/poster/random_official, +/turf/open/floor/plating, +/area/maintenance/port) +"dip" = ( +/obj/structure/table/wood, +/obj/machinery/button/door{ + id = "corporate_privacy"; + name = "corporate showroom shutters control"; + pixel_x = 28; + req_access_txt = "19" + }, +/obj/item/poster/random_official, +/obj/item/poster/random_official, +/obj/item/poster/random_official, +/obj/item/poster/random_official, +/obj/item/poster/random_official, +/obj/item/device/paicard{ + desc = "A real Nanotrasen success, these personal AIs provide all of the companionship of an AI without any law related red-tape."; + name = "Nanotrasen-brand personal AI device exhibit" + }, +/turf/open/floor/carpet, +/area/bridge/showroom/corporate) +"diq" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/clothing/mask/horsehead, +/obj/structure/table/wood, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/obj/item/clothing/mask/cigarette/pipe, +/obj/item/clothing/mask/fakemoustache, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"dir" = ( +/obj/machinery/camera{ + c_tag = "Theatre - Backstage"; + dir = 1; + network = list("SS13") + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/obj/structure/closet/crate/wooden/toy, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"dis" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/crew_quarters/theatre) +"dit" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port) +"diu" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/storage/box/lights/mixed, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"div" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port) +"diw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/firealarm{ + pixel_y = 29 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/obj/structure/closet/crate/hydroponics, +/obj/item/shovel/spade, +/obj/item/wrench, +/obj/item/reagent_containers/glass/bucket, +/obj/item/cultivator, +/obj/item/wirecutters, +/turf/open/floor/plasteel/hydrofloor, +/area/hydroponics) +"dix" = ( +/obj/structure/rack, +/obj/item/poster/random_contraband, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"diy" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/poster/random_contraband, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"diz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/hydrofloor, +/area/hydroponics) +"diA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"diB" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"diC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"diD" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"diE" = ( +/obj/structure/rack, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/bottle/vermouth{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"diF" = ( +/obj/structure/chair/stool, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"diG" = ( +/obj/structure/chair/stool, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/aft) +"diH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"diI" = ( +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/poster/random_contraband, +/obj/item/reagent_containers/food/drinks/beer{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/ale, +/obj/structure/table/wood, +/obj/item/device/instrument/eguitar, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"diJ" = ( +/obj/structure/light_construct/small, +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"diK" = ( +/obj/item/dice/d20, +/obj/item/dice, +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"diL" = ( +/obj/item/tank/internals/air, +/obj/item/tank/internals/air, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/machinery/space_heater, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"diM" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"diN" = ( +/obj/structure/chair/stool, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/medical/medbay/aft) +"diP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"diQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/aft) +"diR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/stack/ore/slag, +/turf/open/floor/plating, +/area/maintenance/aft) +"diS" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/aft) +"diT" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"diU" = ( +/obj/structure/closet/crate, +/obj/item/poster/random_official, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"diV" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Departure Lounge - Port Fore"; + dir = 4; + network = list("SS13") + }, +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-24" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"diW" = ( +/obj/machinery/hydroponics/soil{ + pixel_y = 8 + }, +/obj/item/seeds/glowshroom, +/obj/item/seeds/corn, +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"djg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"djh" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"djj" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/camera{ + c_tag = "Chapel - Funeral Parlour"; + dir = 8; + network = list("SS13") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"djk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/chapel/main) +"djr" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"djs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/science/xenobiology) +"djt" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"djx" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/crowbar, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"djz" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"djB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/landmark/observer_start, +/obj/effect/turf_decal/plaque{ + icon_state = "L8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"djC" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Arrival Airlock" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"djM" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 15; + id = "arrivals_stationary"; + name = "arrivals"; + width = 7; + roundstart_template = /datum/map_template/shuttle/arrival/box; + }, +/turf/open/space/basic, +/area/space) +"djW" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/paper, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/security/vacantoffice) +"djX" = ( +/obj/structure/closet/coffin, +/obj/machinery/door/window/eastleft{ + name = "Coffin Storage"; + req_access_txt = "22" + }, +/turf/open/floor/plating, +/area/chapel/main) +"dlI" = ( +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"dlN" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/supermatter) +"dlV" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/science/xenobiology) +"dmq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + glass = 1; + name = "Slime Euthanization Chamber"; + opacity = 0; + req_access_txt = "55" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dmr" = ( +/obj/machinery/door/airlock/research{ + glass = 1; + name = "Slime Euthanization Chamber"; + opacity = 0; + req_access_txt = "55" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dmD" = ( +/obj/structure/displaycase/trophy, +/turf/open/floor/wood, +/area/library) +"dmF" = ( +/turf/closed/wall, +/area/quartermaster/sorting) +"dmH" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"dmT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"dnd" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dne" = ( +/turf/closed/wall, +/area/maintenance/port/fore) +"dnh" = ( +/turf/closed/wall, +/area/maintenance/starboard/fore) +"dni" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dnk" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dnr" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Port Bow Maintenance APC"; + areastring = "/area/maintenance/port/fore"; + pixel_x = 26 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/port/fore) +"dnu" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dnz" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dnF" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"dnG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dnM" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dnO" = ( +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dnP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dnR" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dnS" = ( +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dnZ" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"dod" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"doe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"doh" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/starboard/fore) +"dou" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"doA" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"doJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dpk" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dps" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/fore) +"dpG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dpL" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"dqe" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dqp" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/fore) +"dqu" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dqT" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboard/fore) +"dqU" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel, +/area/science/mixing) +"drQ" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/port/fore) +"dsg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"dss" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dst" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dtl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dtE" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dtP" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dtR" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dtS" = ( +/obj/item/cigbutt, +/obj/machinery/power/apc{ + dir = 2; + name = "Starboard Bow Maintenance APC"; + areastring = "/area/maintenance/starboard/fore"; + pixel_y = -28 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"duo" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dux" = ( +/turf/closed/wall, +/area/maintenance/port/aft) +"duH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dvq" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dvt" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"dvw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dvE" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dvY" = ( +/turf/closed/wall, +/area/maintenance/starboard/aft) +"dwb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dwc" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dwe" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dwi" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dwj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dwv" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dww" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dwL" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboard/aft) +"dwQ" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dwX" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/starboard/aft) +"dwY" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dxh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dxk" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dxv" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/aft) +"dxQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dyc" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dyg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dyj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/aft) +"dyp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"dyw" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dzc" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dzI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dzK" = ( +/turf/closed/wall/r_wall, +/area/maintenance/port/aft) +"dzQ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dAd" = ( +/obj/machinery/power/apc/highcap/five_k{ + dir = 2; + name = "Starboard Quarter Maintenance APC"; + areastring = "/area/maintenance/starboard/aft"; + pixel_y = -24 + }, +/obj/structure/cable/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dAh" = ( +/obj/item/storage/box, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dAn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dAp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/aft) +"dAw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "0"; + req_one_access_txt = "12;47" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dAx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dAZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dBe" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/starboard/aft) +"dBu" = ( +/turf/closed/wall, +/area/engine/gravity_generator) +"dBw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"dBx" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"dBy" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"dBz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"dBA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/engine, +/area/engine/engineering) +"dBB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dBC" = ( +/obj/machinery/meter, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"dBF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/brig) +"dBG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/brig) +"dBH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/brig) +"dBI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/engine/break_room) +"dBJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"dBK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/engine/atmos) +"dBM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/caution{ + dir = 8 + }, +/area/engine/atmos) +"dBN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/medical/virology) +"dBO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"dBS" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dBT" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/medical/virology) +"dBU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/medical/virology) +"dBV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/medical/virology) +"dBX" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"dBY" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/crew_quarters/fitness/recreation) +"dBZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/vault{ + dir = 8 + }, +/area/security/warden) +"dCa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/warden) +"dCb" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/red, +/area/security/main) +"dCc" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/corner{ + dir = 4 + }, +/area/crew_quarters/fitness/recreation) +"dCe" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/fore) +"dCf" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"dCg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/red/corner{ + dir = 1 + }, +/area/security/brig) +"dCh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"dCi" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/starboard/fore) +"dCj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/floorgrime, +/area/security/brig) +"dCk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/engineering) +"dCl" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dCn" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"dCo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"dCp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/fore) +"dCq" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/courtroom) +"dCr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"dCs" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dCt" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/storage/primary) +"dCv" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/floorgrime, +/area/crew_quarters/locker) +"dCw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/engineering) +"dCx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"dCz" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"dCA" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/corner{ + dir = 1 + }, +/area/crew_quarters/locker) +"dCB" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"dCC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dCD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dCE" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dCH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dCI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"dCJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/yellow/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"dCK" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/bridge) +"dCM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/caution/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"dCN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"dCO" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"dCP" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain/private) +"dCS" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/bar, +/area/crew_quarters/bar) +"dCT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dCU" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"dCV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dCW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port) +"dCX" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/library) +"dCY" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/atmos) +"dCZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/library) +"dDa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/neutral/corner{ + dir = 8 + }, +/area/hallway/secondary/command) +"dDb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/bar, +/area/crew_quarters/bar) +"dDe" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/crew_quarters/kitchen) +"dDf" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/bridge/showroom/corporate) +"dDg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/bridge/showroom/corporate) +"dDi" = ( +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/library) +"dDl" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/green/side{ + dir = 8 + }, +/area/hydroponics) +"dDm" = ( +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/atmos) +"dDo" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dDp" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/research) +"dDq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dDr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dDs" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dDt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/barber{ + dir = 8 + }, +/area/crew_quarters/heads/cmo) +"dDu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dDv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/blue/side{ + dir = 8 + }, +/area/hallway/primary/aft) +"dDw" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dDy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/research) +"dDz" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"dDA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"dDB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dDC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"dDE" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dDF" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dDG" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dDH" = ( +/obj/structure/chair{ + pixel_y = -2 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/vault, +/area/chapel/main) +"dDI" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dDJ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/construction/mining/aux_base) +"dDK" = ( +/obj/structure/rack, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/device/assault_pod/mining, +/turf/open/floor/plasteel/yellow/side{ + dir = 1 + }, +/area/construction/mining/aux_base) +"dDL" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Storage Room"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dGH" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"dIs" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"dLK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dYu" = ( +/obj/machinery/door/airlock/external{ + name = "Auxiliary Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"eoK" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"eqq" = ( +/obj/item/screwdriver, +/obj/structure/table/reinforced, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"eqG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"evy" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/space) +"eEe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"eFN" = ( +/obj/structure/bodycontainer/crematorium{ + id = "crematoriumChapel"; + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"eXy" = ( +/obj/machinery/airalarm{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"eZe" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"fdr" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/engine/engineering) +"fDD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"gfh" = ( +/obj/machinery/libraryscanner, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"gix" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/research/glass{ + name = "Circuitry Lab"; + req_access_txt = "47" + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"gnZ" = ( +/obj/item/device/radio/intercom{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"gEk" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"gGT" = ( +/obj/effect/landmark/start/scientist, +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"gHh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"gJs" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/atmos) +"gLC" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"gNe" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"gRS" = ( +/obj/structure/table/reinforced, +/obj/item/device/integrated_electronics/analyzer, +/obj/item/device/integrated_circuit_printer, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"hfJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/autolathe, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"hyP" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Two" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/security/prison) +"ioI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/research/glass{ + name = "Circuitry Lab"; + req_access_txt = "47" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/science/circuit) +"izu" = ( +/obj/machinery/autolathe{ + name = "public autolathe" + }, +/obj/machinery/door/window/eastright{ + dir = 2; + name = "Research and Development Desk"; + req_access_txt = "7" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters"; + name = "research shutters" + }, +/turf/open/floor/plasteel/whitepurple, +/area/science/lab) +"jwW" = ( +/turf/closed/wall/mineral/plastitanium, +/area/crew_quarters/fitness/recreation) +"jyv" = ( +/obj/item/stock_parts/cell/super, +/obj/item/stock_parts/cell/super, +/obj/item/stack/sheet/metal/fifty, +/obj/structure/table/reinforced, +/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_y = 32 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"jyQ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"jKK" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"kfu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"krD" = ( +/turf/closed/wall, +/area/science/circuit) +"kys" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/hallway/secondary/service"; + dir = 1; + name = "Service Hall APC"; + pixel_y = 25 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"kzn" = ( +/obj/machinery/door/airlock/external{ + name = "Departure Lounge Airlock" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"kDM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"kOt" = ( +/obj/item/device/multitool, +/obj/item/screwdriver, +/obj/structure/table/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"kVo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"lal" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"llb" = ( +/obj/structure/table/reinforced, +/obj/item/device/integrated_circuit_printer, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"lsv" = ( +/obj/machinery/power/apc{ + areastring = "/area/science/circuit"; + dir = 1; + name = "Circuitry Lab APC"; + pixel_y = 30 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/table/reinforced, +/obj/item/device/multitool, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"lzk" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"lMz" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"lMJ" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"lNZ" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"lWY" = ( +/obj/machinery/door/airlock/hatch{ + name = "Telecomms Server Room" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/server) +"mjJ" = ( +/obj/structure/reagent_dispensers/beerkeg{ + desc = "One of the more successful achievements of the Nanotrasen Corporate Warfare Division, their nuclear fission explosives are renowned for being cheap to produce and devastatingly effective. Signs explain that though this particular device has been decommissioned, every Nanotrasen station is equipped with an equivalent one, just in case. All Captains carefully guard the disk needed to detonate them - at least, the sign says they do. There seems to be a tap on the back."; + icon = 'icons/obj/machines/nuke.dmi'; + icon_state = "nuclearbomb_base"; + name = "Nanotrasen-brand nuclear fission explosive"; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"mvj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/hallway/secondary/service) +"mzh" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"ngl" = ( +/obj/machinery/bookbinder, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"nnK" = ( +/obj/item/stack/sheet/glass/fifty, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"noG" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/circuit) +"nyo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"nAG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"nIb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay"; + req_access_txt = "0"; + req_one_access_txt = "48;50" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/storage/wing) +"obb" = ( +/obj/structure/target_stake, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"ocT" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/stock_parts/cell/super, +/obj/item/stock_parts/cell/super, +/obj/item/stack/sheet/metal/fifty, +/obj/structure/table/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/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_y = 32 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"ohj" = ( +/obj/item/device/integrated_electronics/analyzer, +/obj/item/device/integrated_electronics/debugger, +/obj/item/device/integrated_electronics/wirer, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"oub" = ( +/obj/structure/sign/poster/official/random, +/turf/closed/wall, +/area/hydroponics) +"oLW" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + dir = 2; + name = "Science Requests Console"; + pixel_y = 30; + receive_ore_updates = 1 + }, +/obj/item/device/integrated_electronics/debugger, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"oRL" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 11; + height = 15; + id = "whiteship_home"; + name = "SS13: Auxiliary Dock, Station-Port"; + width = 28 + }, +/turf/open/space/basic, +/area/space) +"oUA" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"pvA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"pzj" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"pCV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"pSX" = ( +/obj/machinery/door/airlock/external{ + name = "Auxiliary Escape Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"pVo" = ( +/obj/machinery/light, +/obj/machinery/vending/kink, +/turf/open/floor/plasteel/neutral/corner{ + dir = 2 + }, +/area/crew_quarters/locker) +"qnJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/science/circuit) +"qqg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"qBh" = ( +/obj/structure/table, +/obj/item/device/paicard, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 2 + }, +/area/science/research) +"qBq" = ( +/turf/closed/wall/mineral/plastitanium, +/area/hallway/secondary/entry) +"qJZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"qRM" = ( +/obj/machinery/camera{ + c_tag = "Research Division Circuitry Lab"; + dir = 1; + network = list("SS13","RD") + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"rzX" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 1 + }, +/area/science/lab) +"rQK" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/red/side{ + dir = 8 + }, +/area/security/main) +"rSL" = ( +/obj/machinery/vending/snack/random, +/turf/open/floor/plasteel, +/area/science/mixing) +"sdi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"siF" = ( +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"sGh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"sIA" = ( +/obj/machinery/door/airlock/external{ + name = "Transport Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"sJW" = ( +/turf/closed/wall/mineral/plastitanium, +/area/engine/break_room) +"tjH" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/libraryconsole/bookmanagement, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"tsx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"txj" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"tDM" = ( +/obj/machinery/door/airlock/engineering/glass{ + heat_proof = 1; + name = "Supermatter Chamber"; + req_access_txt = "10" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"tFJ" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"tVY" = ( +/obj/structure/closet/crate, +/obj/item/target/alien, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/item/target/clown, +/obj/item/target/syndicate, +/obj/item/target/syndicate, +/obj/item/gun/energy/laser/practice, +/obj/item/gun/energy/laser/practice, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"upN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"urv" = ( +/turf/closed/wall/mineral/plastitanium, +/area/security/prison) +"uun" = ( +/obj/machinery/vending/assist, +/turf/open/floor/plasteel, +/area/science/mixing) +"uGW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"uHc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"uJU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"uRM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/whitepurple/side{ + dir = 2 + }, +/area/science/research) +"uTS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/rnd/protolathe/department/science, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"uYk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"vhG" = ( +/obj/structure/table/glass, +/obj/machinery/camera/autoname{ + dir = 4; + network = list("SS13") + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"vLD" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"wiZ" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "1" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/security/prison) +"wxc" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "24"; + req_one_access_txt = "0" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"wFH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"wKo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/turf/closed/wall, +/area/science/circuit) +"wOE" = ( +/obj/machinery/droneDispenser, +/turf/open/floor/plating, +/area/maintenance/aft) +"wPk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"wRy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"xkG" = ( +/obj/item/device/integrated_electronics/wirer, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"xse" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access = null; + req_access_txt = "10; 13" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"xyp" = ( +/obj/docking_port/stationary{ + dheight = 1; + dir = 8; + dwidth = 12; + height = 17; + id = "syndicate_nw"; + name = "northwest of station"; + turf_type = /turf/open/space; + width = 23 + }, +/turf/open/space/basic, +/area/space/nearstation) +"xAp" = ( +/obj/structure/chair/comfy, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"xVl" = ( +/turf/closed/wall, +/area/hallway/secondary/service) +"xVP" = ( +/obj/machinery/light, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"ygk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"ykE" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/white, +/area/science/circuit) (1,1,1) = {" aaa @@ -83358,7 +83776,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -83891,7 +84309,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -84369,7 +84787,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -85120,7 +85538,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -85646,7 +86064,7 @@ aaa aaa aaa aaa -anY +anT aaa aaa aaf @@ -85899,7 +86317,7 @@ aaa aaa aaa aaa -anY +anT aaa aaa aaa @@ -86157,12 +86575,12 @@ aaa aaa aaa aaf -aqL -anX +aqB +anS aaf aaf aaa -anX +anS aaf aaf aaf @@ -86410,16 +86828,16 @@ aaa aaa aaa aaa -anY +anT aaa aaa -anX +anS aaf -anX +anS aaf aaf aaf -anX +anS aaf aaa aaa @@ -86667,16 +87085,16 @@ aaa aaa aaa aaa -aqL -anX -anX -anX -anX -anX +aqB +anS +anS +anS +anS +anS aaf -anX -anX -anX +anS +anS +anS aaf aaf aaf @@ -86923,17 +87341,17 @@ aaa aaa aaa aaa -anX +anS aaf aaf -anX -anX -apy -anX +anS +anS +apq +anS aaf -anX -anX -anX +anS +anS +anS aaf aaa aaa @@ -86943,15 +87361,15 @@ aaa aaa aaa aaa -aQu -aRJ -aRJ -aRJ -aRJ -aXC -aXC -aXC -aXC +qBq +aRA +aRA +aRA +aRA +aVs +aVs +aVs +aVs aaf aaa aaa @@ -86961,20 +87379,20 @@ aaa aaa aaa aaf -aXC -aXC -aXC -aXC -aXC +aVs +aVs +aVs +aVs +aVs aaa aaa aaa aaa aaa -aXC -aXC -aXC -aXC +aVs +aVs +aVs +aVs aaa aaf aaa @@ -87016,7 +87434,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -87180,17 +87598,17 @@ aaa aaa aaa aaa -anX -anX -anX -anX -anX -anX -anX +anS +anS +anS +anS +anS +anS +anS aaf -anX -anX -anX +anS +anS +anS aaf aaa aaa @@ -87199,15 +87617,15 @@ aaa aaa aaa aaa -aOT -aOT -aOT -aTk -aUA -aWf -aXD -aZh -aXC +aOZ +aOZ +aOZ +aRB +aSH +aUb +aVt +aWT +aVs aaf aaf aaa @@ -87219,21 +87637,21 @@ aaa aaa aaf aaf -aXC -bxW -aZh -aXC +aVs +bvB +aWT +aVs aaa aaa aaa aaa aaa -aXC -bOa -aZh -aXC -aXC -aXC +aVs +bKS +aWT +aVs +aVs +aVs aaa aaa aaa @@ -87440,13 +87858,13 @@ aaa aaf aaf aaf -anX -anX -anX -anX -anX -anX -anX +anS +anS +anS +anS +anS +anS +anS aaf aaf aaf @@ -87455,16 +87873,16 @@ aaa aaa aaa aaa -aNy -aOU -aQv -aRK -aTl -aUB -aWg -aXE -aZi -baZ +cSP +aND +cSU +cTd +aRC +bsk +aUc +aVu +aWU +aYC aaa aaf aaa @@ -87476,21 +87894,21 @@ aaa aaa aaf aaa -baZ -aXE -aZi -aRJ +aYC +aVu +aWU +aRA aaa aaa aaa aaa aaa -aRJ -bwm -aZi -bRu -bSW -bRu +aRA +btS +aWU +bOd +bPA +dYu aaa aaa aaa @@ -87695,15 +88113,15 @@ aaa aaa aaa aaf -aqL -anX -anX -anX -anX -anX -anX -apy -anX +aqB +anS +anS +anS +anS +anS +anS +apq +anS aaf aaf aaf @@ -87713,15 +88131,15 @@ aaa aaa aaa aaa -aOT -aOT -aOT -aTk -aUC -aRJ -aXF -aZi -aXC +aOZ +aOZ +aOZ +aRB +aSI +aRA +aVv +aWU +aVs aaf aaf aaa @@ -87733,22 +88151,22 @@ aaa aaa aaf aaf -aXC -bxX -aZi -aXC +aVs +aVw +aWU +aVs aaa aaa aaa aaa aaa -aXC -bxX -aZi -bRu -bcB -bRu -bVJ +aVs +aVw +aWU +bOd +aZZ +dYu +oRL aaa aaa aaa @@ -87951,16 +88369,16 @@ aaa aaa aaa aaa -anX +anS aaf -anX +anS aaf -anX -anX -anX -anX -anX -anX +anS +anS +anS +anS +anS +anS aaf aaf aaa @@ -87971,14 +88389,14 @@ aaa aaa aaf aaa -aQu -aRJ -aRJ -aRJ -aRJ -aXG -aZj -aRJ +qBq +aRA +aRA +aRA +aRA +cZf +aWV +aRA aaa aaa aaa @@ -87990,21 +88408,21 @@ aaa aaa aaa aaa -aRJ -bxY -bzS -baZ +aRA +bvC +bxt +aYC aaa aaa aaa aaa aaa -baZ -bOb -aZi -aXC -aXC -aXC +aYC +bKT +aWU +aVs +aVs +aVs aaa aaa aaa @@ -88208,19 +88626,19 @@ aaa aaa aaa aaa -anX -anX -anX -anX -anX -avW -anX -anX -anX -anX -anX +anS +anS +anS +anS +anS +avI +anS +anS +anS +anS +anS aaf -anX +anS aaa aaf aaa @@ -88232,12 +88650,12 @@ aaf aaa aaf aaf -aRJ -aXH -aZi -aXC -aXC -aXC +aRA +aVx +aWU +aVs +aVs +aVs aaa aaa aaa @@ -88245,21 +88663,21 @@ aaa aaa aaa aaa -aXC -aXC -aXC -bxZ -aZi -aXC +aVs +aVs +aVs +bvD +aWU +aVs aaa aaa aaa aaa aaa -aXC -bxX -aZi -aXC +aVs +aVw +aWU +aVs aaa aaf aaa @@ -88283,21 +88701,21 @@ aaa aaa aaa aaa -cxH -anY -aae -anY -aae -anY -anY -anY -aqL -anY -anY -anY -anY -aqL -anY +ctm +anT +aai +anT +aai +anT +anT +anT +aqB +anT +anT +anT +anT +aqB +anT aaf aaa aaa @@ -88464,37 +88882,37 @@ aaa aaa aaa aaa -anX -anX -anX -apy -anX -anX +anS +anS +anS +apq +anS +anS aaf -anX -anX -anX +anS +anS +anS aaf -anX -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aXE -aZi -bba -bcB -bem +anS +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aVu +aWU +djz +aZZ +djC aaa aaa aaa @@ -88502,21 +88920,21 @@ aaa aaa aaa aaa -bba -aUB -bem -aXE -bzT -aRJ +djz +bsk +djC +aVu +bxu +aRA aaa aaa aaa aaa aaa -aRJ -aXE -aZi -aXC +aRA +aVu +aWU +aVs aaf aaf aaa @@ -88539,7 +88957,7 @@ aaa aaa aaa aaa -anY +anT aaa aaa aaf @@ -88554,7 +88972,7 @@ aaf aaf aaa aaa -aae +aai aaa aaa aaa @@ -88696,7 +89114,7 @@ aaa aaa aaa aaa -aat +xyp aaa aaa aaa @@ -88721,37 +89139,37 @@ aaa aaa aaa aaa -anY +anT aaf aaf aaf aaf -anX -anX -anX -anX +anS +anS +anS +anS azg -anX -anX -aDo -aEM -aGn -aGn -aGn -aGn -aGn -aGn -aGn -aQw -aRL -aTm -aUD -aDo -aXI -aZi -aXC -aXC -aXC +anS +anS +aDb +aDa +cVK +cVK +cVK +cVK +cVK +cVK +cVK +cWF +cWK +aRD +aSJ +aDb +aVy +aWU +aVs +aVs +aVs aaa aaa aaa @@ -88759,21 +89177,21 @@ aaa aaa aaa aaa -aXC -aXC -aXC -aXE -bzU -aXC +aVs +aVs +aVs +aVu +bxv +aVs aaa aaa aaa aaa aaa -aXC -aXE -bPB -aRJ +aVs +aVu +bMu +aRA aaa aaf aaa @@ -88796,22 +89214,22 @@ aaa aaa aaa aaa -anY +anT aaa -cyH -czD -cAS +cue +cvd +cwe aaf -cyH -czD -cAS +cue +cvd +cwe aaf -cyH -czD -cAS +cue +cvd +cwe aaa aaa -anY +anT aaf aaf aaa @@ -88980,35 +89398,35 @@ aaa aaa aaa aaa -anX +anS aaf -aqL -anX -anX +aqB +anS +anS aaf -anX -anX +anS +anS aaf -aae -aDo -aEN -aGo -aGo -aGo -aGo -aGo -aGo -aGo -aQx -aRL -aTn -aUE -aWh -aXJ -aZk -aZh -bcC -aXC +aai +aDb +cVE +cVL +cVL +cVL +cVL +cVL +cVL +cVL +cWJ +cWK +aRE +aSK +cYL +aVz +aWW +aWT +baa +aVs aaa aaa aaa @@ -89016,21 +89434,21 @@ aaa aaa aaa aaa -aXC -buC -bwi -bya -bzV -aXC +aVs +bsl +btO +bvE +bxw +aVs aaa aaa aaa aaa aaa -aXC -bOc -bPC -aXC +aVs +bKU +bMv +aVs aaa aaf aaa @@ -89055,20 +89473,20 @@ aaf aaf aaf aaa -cyH -czE -cAS +cue +cve +cwe aaa -cyH -czE -cAS +cue +cve +cwe aaa -cyH -czE -cAS +cue +cve +cwe aaf aaa -anY +anT aaa aaa aaa @@ -89236,36 +89654,36 @@ aaa aaa aaa aaa -anX -anX +anS +anS aaf -anX -auT -anX -anX -ayn -anX +anS +auC +anS +anS +ayf +anS aaf aaa -aDo -aEN -aGo -aGo -aGo -aGo -aGo -aGo -aGo -aQx -aRL -aTn -aUE -aWh -aXJ -aZl -aZi -bcC -aXC +aDb +cVE +cVL +cVL +cVL +cVL +cVL +cVL +cVL +cWJ +cWK +aRE +aSK +cYL +aVz +bvF +aWU +baa +aVs aaa aaa aaa @@ -89273,21 +89691,21 @@ aaa aaa aaa aaa -aXC -buD -aXE -aZl -bzV -aXC +aVs +bsm +aVu +bvF +bxw +aVs aaa aaa aaa aaa aaa -aXC -aXE -bzY -aRJ +aVs +aVu +bMw +aRA aaa aaf aaa @@ -89310,22 +89728,22 @@ aaa aaf aaa aaa -aae +aai aaf -cyH -czE -cAS +cue +cve +cwe aaf -cyH -czE -cAS +cue +cve +cwe aaf -cyH -czE -cAS +cue +cve +cwe aaf aaa -anY +anT aaa aaa aaa @@ -89492,37 +89910,37 @@ aaa aaa aaa aaa -anX -anX -anX -anX -anX -anX -anX -anX -anX -anX -anX +anS +anS +anS +anS +anS +anS +anS +anS +anS +anS +anS aaf -aDo -aEN -aGo -aGo -aGo -aKt -aGo -aGo -aGo -aQx -aRL -aTo -aUF -aDo -aXK -aZl -aZi -bcD -aXC +aDb +cVE +cVL +cVL +cVL +cVQ +cVL +cVL +cVL +cWJ +cWK +cXE +aIf +aDb +cZh +bvF +aWU +bab +aVs aaa aaa aaa @@ -89530,21 +89948,21 @@ aaa aaa aaa aaa -aXC -bcC -bwj -byb -bzW -aRJ +aVs +baa +btP +aWX +bxx +aRA aaa aaa aaa aaa aaa -aRJ -bwm -bzV -aXC +aRA +btS +bxw +aVs aaf aaf aaa @@ -89567,19 +89985,19 @@ aaf aaf aaa aaa -anY +anT aaa -cyH -czE -cAS +cue +cve +cwe aaf -cyH -czE -cAS +cue +cve +cwe aaa -cyH -czE -cAS +cue +cve +cwe aaf aaa aaa @@ -89750,36 +90168,36 @@ aaa aaa aaa aaa -apy -anX -anX +apq +anS +anS aaf aaf -anX -anX +anS +anS aaf -anX -anX +anS +anS aaf -aDo -aEN -aGo -aGo -aJd -aKu -aGo -aGo -aGo -aQy -aRM -aTp -aUG -aWi -aXL -aZm -bbb -bcE -aXC +aDb +cVE +cVL +cVL +aHb +cWg +cVL +cVL +cVL +ddG +cWM +cXR +cYG +cYP +aVA +aWY +aYE +bac +aVs aaa aaa aaa @@ -89787,21 +90205,21 @@ aaa aaa aaa aaa -aXC -buE -bwk -byc -bzV -aXC +aVs +bsn +btQ +bvG +bxw +aVs aaa aaa -bGZ +cVx aaa aaa -aXC -aXE -bzV -aRJ +aVs +aVu +bxw +aRA aaa aaf aaa @@ -89826,23 +90244,23 @@ aaa aaa aaa aaa -cyH -czE -cAS +cue +cve +cwe aaf -cyH -czE -cAS +cue +cve +cwe aaf -cyH -czE -cAS +cue +cve +cwe aaa aaa aaa -anY -anY -anY +anT +anT +anT aaa aaa aaa @@ -90006,37 +90424,37 @@ aaa aaa aaa aaa -anX -anX -anX +anS +anS +anS aaf aaf -aqL -anX +aqB +anS aaf aaf aaf aaf aaf -aDo -aEN -aGo -aGo -aGo -aKv -aGo -aGo -aGo -aQx -aRL -aTq -aUH -aWj -aXM -aZn -aXC -aXC -aXC +aDb +cVE +cVL +cVL +cVL +cWh +cVL +cVL +cVL +cWJ +cWK +cYE +cYK +cYQ +aVB +aWZ +aVs +aVs +aVs aaa aaa aaa @@ -90044,21 +90462,21 @@ aaa aaa aaa aaa -aXC -aXC -aXC -byd -bzX -aRJ +aVs +aVs +aVs +bvH +bxy +aRA aaf -bFp -bHa -aXC +bCG +bEl +aVs aaf -aRJ -bOd -bPD -aRJ +aRA +bKV +bMx +aRA aaa aaf aaa @@ -90081,25 +90499,25 @@ aaa aaa aaf aaa -aae +aai aaa aaf -czF +cvf aaa aaa aaf -czF +cvf aaa aaa aaf -czF +cvf aaa aaa aaa aaa aaf aaa -anY +anT aaa aaa aaa @@ -90264,36 +90682,36 @@ aaa aaa aaa aaa -anX +anS aaa aaa aaf -akt -avX -akt +dne +avJ +dne aaf aaa aaf aaa -aDo -aEN -aGo -aGo -aGo -aGo -aGo -aGo -aGo -aQx -aRL -aTr -aUI -aDo -aXN -aZn -bba -bcB -bem +aDb +cVE +cVL +cVL +cVL +cVL +cVL +cVL +cVL +cWJ +cWK +dDJ +aSL +aDb +cZq +aWZ +djz +aZZ +djC aaa aaa aaa @@ -90301,24 +90719,24 @@ aaa aaa aaa aaa -bba -aUB -bem -byd -bzY -aRJ -aXC -aXC -bHb -aXC -aXC -aRJ -bwm -bPE -bwx -bwx -bwx -bwx +djz +bsk +djC +bvH +bMw +aRA +aVs +aVs +bEm +aVs +aVs +aRA +btS +bMy +alK +alK +alK +alK aaa aaa aaa @@ -90338,25 +90756,25 @@ aaf aaf aaf aaf -anY +anT aaf aaf -cil -cil -cCc -cil -cil -cFc -ckM -cHa -cil -cFc -ckM -ckM -ckM -cMW +cej +cej +cxa +cej +cej +czL +cED +cBQ +cej +czL +cED +cED +cED +cHk aaf -anY +anT aaa aaa aaa @@ -90510,7 +90928,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -90525,32 +90943,32 @@ aaa aaa aaf aaf -akt -avY -akt +dne +avK +dne aaf aaf -akt -akt -aDo -aEN -aGo -aGo -aGo -aGo -aGo -aGo -aGo -aQx -aRL -aTs -aUJ -aDo -aXN -aZn -aXC -aXC -aXC +dne +dne +aDb +cVE +cVL +cVL +cVL +cVL +cVL +cVL +cVL +cWJ +cWK +dDK +aSM +aDb +cZq +aWZ +aVs +aVs +aVs aaa aaa aaa @@ -90558,31 +90976,31 @@ aaa aaa aaa aaa -aXC -aXC -aXC -byd -bzZ -aRJ -bDH -aXC -bHa -aXC -bKC -aRJ -aXE -bPF -bRv -bSX -bUv -bwx +aVs +aVs +aVs +bvH +bxz +aRA +bBc +aVs +sIA +aVs +bHH +aRA +aVu +bMz +bOe +bPC +bRc +alK aaf aaf aaf aaf -aae -anY -aae +aai +anT +aai aaf aaf aaf @@ -90595,25 +91013,25 @@ aaa aaa aaa aaa -anY +anT aaa aaf -czG +cvg aaa aaa aaf -czG +cvg aaf aaa aaf -czG +cvg aaa aaf aaa aaa aaf aaa -anY +anT aaa aaa aaa @@ -90781,58 +91199,58 @@ aaf aaf aaa aaf -akt -akt -avX -akt -akt -aio -akt -alD -aDo -aEO -aGp -aGp -aGp -aGp -aGp -aGp -aGp -aQz -aRL -aTt -aUK -aDo -aXO -aZo -bbc -aXC +dne +dne +pzj +dne +dne +aip +dne +dnk +aDb +cVH +cVM +cVM +cVM +cVM +cVM +cVM +cVM +aPb +cWK +aRF +aSN +aDb +aVC +aXa +aYF +aVs aaa aaa aaa aaa -bkS +djM aaa aaa aaa aaa -aXC -bwl -bye -bAa -bkT -ben -ben -ben -ben -ben -bmu -bwn -bPG -bwx -bSY -bUw -bwx +aVs +btR +bvI +bxA +biu +bbI +bbI +bbI +bbI +bbI +bjV +btT +bMA +alK +bPD +asa +alK aaa aaa aaf @@ -90854,23 +91272,23 @@ aaa aaa aaf aaa -cyH -czH -cAS +cue +cvh +cwe aaf -cyH -czH -cAS +cue +cvh +cwe aaf -cyH -czH -cAS +cue +cvh +cwe aaa aaa aaa -anY -anY -anY +anT +anT +anT aaa aaa aaa @@ -91035,93 +91453,93 @@ aaa aaa aaa aaf -akt -akt -aio -akt -auU -avZ -awZ -alD -auW -arf -alD -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aDo -aXP -aZp -bbd -aRJ -aRJ -aRJ -aXC -aXC -aXC -aXC -aXC -aRJ -aRJ -aRJ -bwm -byf -bAb -bkU -bDI -bFq -bHc -bJa -bKD -bMo -bOe -bPH -bwx -bSZ -bUw -bwx -bWO -bWO -bWO -bWO -bWO +dne +dne +aip +dne +auD +avL +awM +dnk +dqe +doA +dnk +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aDb +aVD +aXb +aYG +aRA +aRA +aRA +aVs +aVs +aVs +aVs +aVs +aRA +aRA +aRA +btS +bvJ +bxB +biv +bBd +bCH +bEn +dic +bHI +bJo +bKW +bMB +alK +dio +asa +alK +bTn +bTn +bTn +bTn +bTn aaa aaf aaa aaf -aae -anY -anY -aae -anY -aae -anY -aae -anY -anY +aai +anT +anT +aai +anT +aai +anT +aai +anT +anT aaf aaf -cyH -czH -cAS +cue +cvh +cwe aaa -cyH -czH -cAS +cue +cvh +cwe aaa -cyH -czH -cAS +cue +cvh +cwe aaa aaa aaa @@ -91292,68 +91710,68 @@ aaa aaa aaa aaf -akt -aqM -asj -atC -auV -awa -awh -awh -awh -awh -aCa -awh -aEP -awa -awh -awh -awh -awh -awh -awh -awh -awh -awh -aUL -aWk -aXQ -aZq -bbe -bcF -ben -ben -ben -ben -bkT -bmu -bmu +dne +aqC +arW +ato +auE +avM +avT +avT +avT +avT +aJi +avT +dss +avM +avT +avT +avT +avT +avT +avT +avT +avT +avT +dtl +aUd +aVE +aXc +aYH +bad +bbI +bbI +bbI +bbI +biu +bjV +bjV +bnK bqb -bss -ben -bwn -byg -bAc -bwx -bwx -bwx -bwx -bwx -bwx -bMp -bwx -bwx -bwx -bTa -bUw -bTg -bWO -bYn -bZx -cbi -ccx -ccx -ccx +bbI +btT +bvK +bxC +alK +alK +alK +alK +alK +alK +bJp +alK +alK +alK +bPF +asa +bPL +bTn +bUN +bVQ +bXt +bYC +bYC +bYC aaa aaa aaf @@ -91368,20 +91786,20 @@ aaa aaa aaf aaa -cyH -czH -cAS +cue +cvh +cwe aaf -cyH -czH -cAS +cue +cvh +cwe aaf -cyH -czH -cAS +cue +cvh +cwe aaf aaa -anY +anT aaa aaa aaa @@ -91549,96 +91967,96 @@ aaa aaa aaa aaa -aio -aqN -ask -akt -akt -akt -aoh -aoi -azh -akt -aio -akt -aEQ -aGq -aHZ -aoh -aoh -aLL -auX -ako -aQA -alD -aoh -aUM -akt -aXR -aZr -bbf -bcG -beo -bfC -beo -biS -bkU -bmv -boo +aip +aqD +arX +dne +dne +dne +aRG +aoc +drQ +dne +aip +dne +dst +aDc +dhE +aRG +aRG +cWA +auG +dnd +dhK +dnk +aRG +aSP +dne +dhM +aXd +aYI +bae +bbJ +bcV +bbJ +bgv +biv +bjW +blT +bnL bqc -bst -buF -bqc -byh -bAd -bBX -byu -bFr -bHd -bJb -bCd -bMq -bOf -bPI -bPI -bTb -bAt -bVK -bWP -bYo -bZy -cbj -ccy -cdJ -ccy -cgZ -cil -cjF -ckM -cme -cil -cil -cil -cjF -ckM -cgZ -cil -cil -cjF -ckM -czH -cAS +bso +bnL +bvL +bxD +bzw +bvY +bCI +bEo +bJj +bzC +bJq +bKX +bbL +bbL +bPG +bxT +bSn +bTo +bUO +bVR +bXu +bYD +bZN +jyQ +cda +cej +cfz +cED +chY +cej +cej +cej +cfz +cED +cda +cej +cej +cfz +cED +cvh +cwe aaa -cyH -czH -cAS +cue +cvh +cwe aaf -cyH -czH -cAS +cue +cvh +cwe aaf aaf -anY +anT aaf aaf aaa @@ -91806,68 +92224,68 @@ aaa aaa aaa aaa -akt -akt -asl -akt +dne +dne +arY +dne aaf -akt -akt -aio -akt -akt +dne +dne +aip +dne +dne aaa -akt -akt -akt -akt -aio -akt -akt -akt -akt -akt -akt -aio -akt -akt -akt -akt -akt -bcH -bep -bfD -bhl -bep -bkV -bmw -bop +dne +dne +dne +dne +aip +dne +dne +dne +dne +dne +dne +aip +dne +dne +dne +dne +dne +baf +bbK +bcW +beK +bbK +biw +bjX +blU +bnM bqd -bsu -buG -bqd -byi -bAe -bwx -bDJ -bFs -bHe -bwx -bFD -bMr -bCe -bPJ -bOq -bTa -bRA -bUw -bWQ -bYp -bZz -cbk -ccx -ccx -ccx +bsp +bnM +bvM +bxE +alK +auF +bCJ +bEp +alK +apz +bJr +alC +aqK +aqO +bPF +aGN +asa +bTp +bUP +bVS +bXv +bYC +bYC +bYC aaa aaa aaf @@ -91882,20 +92300,20 @@ aaa aaa aaf aaa -cyH -czI -cAS +cue +cvi +cwe aaf -cyH -czI -cAS +cue +cvi +cwe aaf -cyH -czI -cAS +cue +cvi +cwe aaa aaa -anY +anT aaa aaf aaa @@ -91914,7 +92332,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -92064,9 +92482,9 @@ aaa aaa aaa aaf -aqO -asm -atD +aqE +arZ +atp aaf aaf aaa @@ -92090,39 +92508,39 @@ aaf aaf aaa aaa -akt -asm -bep -bfE -bhm -biT -bkW -bmx -boq -bdf -bdf -bdf -bdf -byj -bmx -bwx -bDK -bFt -bHf -bwx -bKE -bMs -bOg -bOg -bOg -bTc -bOg -bVL -bWO -bWO -bWO -bWO -bWO +dne +arZ +bbK +bcX +beL +bgw +bix +bjY +blV +baE +baE +baE +baE +bvN +bjY +alK +bBe +bNd +ako +alK +bHJ +bJs +aLd +aLd +aLd +bPH +aLd +bSo +bTn +bTn +bTn +bTn +bTn aaa aaf aaa @@ -92152,7 +92570,7 @@ aaf aaa aaa aaa -aqL +aqB aaa aaf aaa @@ -92321,9 +92739,9 @@ aaa aaa aaa aaa -aqP -asn -atE +aqF +doJ +atq aaf aaa aaa @@ -92347,39 +92765,39 @@ aaa aaa aaa aaa -akt -asn -bep -bfF -bhn -biU -bkX -bmy -bor +dne +doJ +bbK +bcY +beM +bgx +biy +bjZ +blW +bnN bqe -bsv -buH -bwo -byk -bAf -bBY -bBY -bBY -bBY -bBY -bBY -bBY -bBY -bBY -bBY -bBY -bCe -bVM -bwx -bRB -bRB -cbl -bwx +bsq +btU +bvO +bxF +bzx +bzx +bzx +bzx +bzx +bzx +bzx +bzx +bzx +bzx +bzx +alC +cgH +alK +aob +aob +dix +alK aaf aaf aaf @@ -92396,20 +92814,20 @@ aaa aaf aaf aaf -anY +anT aaf -anY -anY -anY -aqL -anY -aqL -anY -anY -aqL -anY -aqL -anY +anT +anT +anT +aqB +anT +aqB +anT +anT +aqB +anT +aqB +anT aaf aaf aaa @@ -92578,9 +92996,9 @@ aaa aaa aaa aaf -aqP -asn -atE +aqF +doJ +atq aaf aaa aaa @@ -92604,39 +93022,39 @@ aaa aaa aaa aaf -akt -bcI -bep -bfG -bho -biV -bkY -bmz -bos +dne +bag +bbK +bcZ +beN +bgy +biz +bka +blX +bnO bqf -bsw -bsw -bwp -byl -bAg -bBZ -bDL -bFu -bHg -bJc -bKF -bMt -bOh -bDO -bPL -bBY -bUx -bVN -bWR -bYq -bZA -bRB -bwx +bqf +btV +bvP +bxG +bzy +bBf +bCL +bEq +did +bHK +bJt +bKY +bBi +bMD +bzx +amZ +bSq +bTr +bUQ +bVT +aob +alK aaa aaf aaa @@ -92803,20 +93221,20 @@ aaa aaa aaa aaf -aac -aad -aad -aad -aae -aad -aad -aad -aac -aad -aad -aae -aad -aad +aaj +aag +aag +aag +aai +aag +aag +aag +aaj +aag +aag +aai +aag +aag aaf aaa aaa @@ -92835,9 +93253,9 @@ aaa aaa aaf aaf -aqP -asn -atE +aqF +doJ +atq aaf aaa aaa @@ -92861,43 +93279,43 @@ aaa aaa aaa aaf -aio -asn -bep -bfH -bhp -biW -bkZ -bmz -bot +aip +doJ +bbK +bda +beO +bgz +biA +bka +blY +bnP bqg -bsx -buI -bqg -bym -bAh -bBY -bDM -bDM -bDM -bJd -bDN -bMu -bOi -bPK -bRw -bBY -bDJ -bVO -bwx -bMs -bZB -cbm -bwx +bsr +bnP +bvQ +bxH +bzx +bBg +bBg +bBg +bGj +bBh +bJu +bKZ +bMC +din +bzx +auF +bSr +alK +bJs +bVU +bXx +alK aaa aaf aaf -acg +ack aaf aaf aaf @@ -93056,10 +93474,10 @@ aaa aaa aaa aaa -aab +aac aaa aaa -aae +aai aaa aaf aaf @@ -93073,7 +93491,7 @@ aaf aaf aaa aaa -aad +aag aaf aaa aaa @@ -93092,9 +93510,9 @@ aaa aaa aaa aaf -aqP -asn -atE +aqF +doJ +atq aaf aaa aaa @@ -93118,43 +93536,43 @@ aaa aaa aaa aaa -aio -asv -bep -bfI -bhq -biX -bkY -bmA -bou +aip +asi +bbK +bdb +beP +bgA +biz +bkb +blZ +bnO bqf -bsw -bsw -bwp -byn -bAi -bCa -bDN -bDN -bDN -bJe -bKG -bKG -bDM -bDM -bRx -bBY -bAu -bVO -bwx -bYr -bwx -bwx -bwx +bqf +btV +bvR +bxI +bzz +bBh +bBh +bBh +bGk +bHL +bHL +bBg +bBg +bOg +bzx +aoa +bSr +alK +bUR +alK +alK +alK aaa aaf aaa -acg +ack aaf aaa aaa @@ -93316,21 +93734,21 @@ aaa aaa aaa aaa -aac +aaj aaa -aai -aak -aas +aal +aan +aau aaa -aai -aak -aas +aal +aan +aau aaa -aai -aak -aas +aal +aan +aau aaf -aad +aag aaf aaa aaa @@ -93349,15 +93767,15 @@ aaa aaa aaf aaf -aqP -asn -atE +aqF +doJ +atq aaf aaa aaa aaa aaa -aAE +aAA aaa aaa aaa @@ -93375,78 +93793,78 @@ aaa aaa aaa aaa -aio -asn -bep -bfJ -bhr -biY -bfD -bmB -bov +aip +doJ +bbK +bdc +beQ +bpt +bcW +bkc +bma +bnQ bqh -bsy -buJ -bwq -byo -bAj -bBY -bDO -bFv -bDM -bDM -bKH -bMv -bDM -bDM -bDM -bTd -bUy -bVO -bwx -bwx -bwx -cbn -bWT -bWT -bWT -bWT -cim -bWT -bWT -bWT -bWT -coW -coW -coW -coW -coW -coW -coW -coW +bss +btW +bvS +bxJ +bzx +bBi +bCM +bBg +bBg +bHM +bJv +bBg +bBg +bBg +bPI +bRd +bSr +alK +alK +alK +bXy +dux +dux +dux +dux +cek +dux +dux +dux +dux +ckN +ckN +ckN +ckN +ckN +ckN +ckN +ckN aaa aaf aaa aaf -aae -anY +aai +anT aaf aaf -aae -anY -anY -aae -anY -anY +aai +anT +anT +aai +anT +anT aaf aaf aaf -aae -anY +aai +anT aaf -aae -anY -aae +aai +anT +aai aaa aaa aaa @@ -93573,19 +93991,19 @@ aaa aaa aaa aaa -aad +aag aaf -aai aal -aas +aao +aau aaa -aai aal -aas +aao +aau aaa -aai aal -aas +aao +aau aaf aaf aaf @@ -93606,17 +94024,17 @@ aaa aaa aaa aaf -aqQ -aso -atF +aqG +asb +atr aaf aaa aaf -ayo -ayo -aAF -ayo -ayo +ayi +ayi +aAB +ayi +ayi aaf aaa aaa @@ -93632,55 +94050,55 @@ aaa aaa aaa aaf -akt -bcJ -bep -bep -bhs -bep -bfD -bmC -boq -bdf -bdf -bdf -bdf -byj -bAk -bBY -bDP -bFw -bDM -bDM -bKI -bMw -bDM -bPK -bRx -bBY -bUz -bVP -bWS -bYs -bZC -cbo -ccz -ccz -cfm -bWT -cin -bYu +dne +daX +bbK +bbK +beR +bbK +bcW +dhP +blV +baE +baE +baE +baE +bvN +bxK +bzx +djW +bCN +bBg +bBg +bEs +bJw +bBg +bMC +bOg +bzx +bRe +bSs +aSO +bUS +bVV +bXz +bYE +bYE +cbp +dux +cel +bUU +cgG +dux +cjp +ckO +cmg +cnh +ckN +cpQ +crg +cjt ckN -bWT -cny -coX -cqr -crt -coW -cuf -cvy -cpb -coW aaa aaf aaf @@ -93830,19 +94248,19 @@ aaa aaa aaa aaf -aad +aag aaf -aai aal -aas +aao +aau aaf -aai aal -aas +aao +aau aaf -aai aal -aas +aao +aau aaf aaa aaf @@ -93862,18 +94280,18 @@ aaf aaf aaf aaf -akt -akt -asp -akt +dne +dne +asc +dne aaf aaa aaf -ayo -azi -aAG -aCb -ayo +ayi +azj +aAC +aBS +ayi aaf aaa aaa @@ -93882,62 +94300,62 @@ aaa aaa aaa aaa -aQB +cUZ aaa aaa aaa aaa aaa aaf -akt -bcK -beq -bfK -bht -biZ -bla -bmD -bow +dne +baj +dhO +bdd +beS +bgC +biB +bkd +bmb +bnR bqi -bsz -buK -bwr -byk -bAl -bBY -bDQ -bFx -bHh -bDM -bKJ -bMx -bOj -bPL -bRy -bBY -bOq -bVQ -bWT -bWT -bWT -bWT -bWT -bWT -cfn -bWT -bWT -cim -bWT -bWT -cnz -coY -cpc -coY -coY -coY -cpb -cvz -coW +bst +btX +bvO +bxL +bzx +bBk +bNh +bNK +bBg +dig +bJx +bLa +bMD +bOh +bzx +aqO +bSt +dux +dux +dux +dux +dux +dux +cbq +dux +dux +cek +dux +dux +cjq +ckP +ckS +ckP +ckP +ckP +cjt +crh +ckN aaa aaf aaf @@ -93946,18 +94364,18 @@ aaa aaf aaa aaa -cHb -cHb -cHb -cHb -cHb -cIX -cHb -cHb -cHb -cHb -cHb -cHb +cBR +cBR +cBR +cBR +cBR +cDE +cBR +cBR +cBR +cBR +cBR +cBR aaf aaf aaf @@ -94089,17 +94507,17 @@ aaa aaf aaa aaa -aai aal -aas +aao +aau aaa -aai aal -aas +aao +aau aaa -aai aal -aas +aao +aau aaf aaa aaf @@ -94119,107 +94537,107 @@ aaa aaa aaf aaa -aio -aok -asq -akt +aip +dnO +asd +dne aaf aaa aaf -ayo -azj -aAG -aCc -ayo +ayi +azk +aAC +aBT +ayi aaf aaf aaf aaf -aKw -aLM -aNz -aKw -aNz -aRN -aKw +aJB +aKN +aMs +aJB +aMs +aQg +aJB aaf aaf aaf aaf -akt -aso -ber -bfL -bhu -bja -blb -bmE -box +dne +asb +bbM +bde +beT +bgD +biC +bke +bmc +bnS bqj -bsA -buL -bws -byp -bAm -bBY -bBY -bBY -bBY -bBY -bBY -bBY -bBY -bBY -bBY -bBY -bwx -bVO -bWT -bYt -bZD +bsu +btY +bvU +bxM +bzx +bzx +bzx +bzx +bzx +bzx +bzx +bzx +bzx +bzx +bzx +alK +bSr +dux +bUT +bVW +bXA +diy +dux +cbr +bYE +cem +cfB cbp -ccA -bWT -cfo -ccz -cio -cjG -cfm -bWT -cnA -coZ -coY -cru -cpb -cug -coZ -cpb -coW +dux +diE +ckQ +ckP +cni +cjt +dbq +ckQ +cjt +ckN aaf aaf -cAT -acg +cwf +ack aaf aaf aaa aaa -cHb -cHY -cIT -cJZ -cKZ -cLV -cMX -cOh -cOZ -cQc -cQU -cHb +cBR +cCK +cDA +cEE +cFy +cGq +cHl +cIp +cJg +cKe +cKS +cBR aaf aaa aaf -aae -aad +aai +aag aaa aaa aaa @@ -94341,22 +94759,22 @@ aaa aaa aaa aaa -aac -aad -aac +aaj +aag +aaj aaa aaa -aai aal -aas +aao +aau aaa -aai aal -aas +aao +aau aaa -aai aal -aas +aao +aau aaf aaf aaf @@ -94369,114 +94787,114 @@ aaf aaf aaf aaf -ahn -aid -ahn -aho -ahn -ahn -ahn -ahn -aqR -asr -akt +ahp +aif +ahp +ahq +ahp +ahp +ahp +ahp +aqH +ase +dne aaf aaf aaf -ayp -ayp -aAH -aCd -ayp -ayo -ayo -ayp +ayj +ayj +aAD +aBU +ayj +ayi +ayi +ayj aaf -aJe -aLN -aNA -aJe -aQC -aRO -aJe +aIg +aKO +aMt +aIg +aPd +aQh +aIg aaf aaf -aWl -aWl -aWl -bcL -bes -bfM -bhv -bjb -bev -bmF -boy +aUe +aUe +aUe +bak +dmF +bdf +beU +bgE +bbP +bkf +bmd +bnT bqk -bsB -buM -bwt -byq -bAn -byr -bDR -bFy -byr -bJf -bKK -byr -bOk -bPM -bRz -bTe -bwx -bVM -bWT -bYu -bZE +bsv +btZ +bvV +bxN +bvW +dhZ +bCP +bvW +bGl +bHN +bvW +bLb +bME +bOi +bPJ +alK +cgH +dux +bUU +bVX +bXB +bYG +dux +dux +dux +cen +dux cbq -ccB -bWT -bWT -bWT -cip -bWT -cfn -bWT -cnB -cpa -cqs -crv -cpb -coY -cpb -cww -bWT -bWT -acg -cAU -acg -acg +dux +cjs +ckR +cmh +cnj +cjt +ckP +cjt +diJ +dux +dux +ack +cwg +ack +ack aaf aaa aaa -cHb -cHZ -cIU -cKa -cLa -cLW -cMY -cOi -cPa -cQd -cQV -cRU +cBR +cCL +cDB +cEF +cFz +cGr +cHm +cIq +cJh +cKf +cKT +dBV aaf aaa aaa aaa -aae +aai aaa aaa aaa @@ -94598,21 +95016,21 @@ aaa aaa aaa aaa -aad +aag aaa aaf aaa aaa aaf -aam +aap aaf aaf aaf -aam +aap aaf aaa aaf -aam +aap aaf aaa aaf @@ -94626,111 +95044,111 @@ aaa aaa aaf aaa -ahn -aie +ahp +aig ajc akf -aly -amP -anZ -ahn -akt -ass -akt -akt -akt -akt -ayp -azk -aAI -aAI -aDp -aER -aGr -ayp -aJe -aJe -aLM -aNz -aJe -aNz -aRN -aJe -aJe -aWl -aXS -aZs -bbg -bcM -bes -bfN -bhw -bjc -bes -bes -bes +alx +amO +anU +ahp +dne +asf +dne +dne +dne +dne +ayj +azl +aAE +aAE +aDh +aEv +aFF +ayj +aIg +aIg +aKN +dIs +aIg +dIs +aQg +aIg +aIg +aUe +aVG +aXe +aYJ +bal +dmF +bdg +byI +bgF +dmF +dmF +dmF +bnU bql -bsC -buN -bdf -byr -bAo -byr -bDS -bFz -bHi -bJg -bKL -byr -bOl -bPN -bRA -bPJ -bwx -bVR -bWT -bYv -bZF -cbr -ccC -bWT -cfp -cha -ciq -bWT -chb -bWT -cnC -cpb -cpb -cpb -coY -coY -cvz -cwx -cxI -bWT -bWT -cAV -bWT -bWT +bsw +baE +bvW +bxO +bvW +bBl +bCQ +bEt +bGm +bHO +bvW +bLc +aod +aGN +aqK +alK +dit +dux +bUV +duH +bXC +bYH +dux +cbs +cdb +ceo +dux +cdc +dux +diF +cjt +cjt +cjt +ckP +ckP +crh +dxv +ctn +dux +dux +cfA +dux +dux aaf aaf aaf -cHc -cIa -cIV -cKb -cLb -cLX -cMZ -cJZ -cJZ -cJZ -cJZ -cHb -cSD -cTE +dBN +dBO +cDC +cEG +cFA +dBS +cHn +cEE +cEE +cEE +cEE +cBR +cMt +cNr aaa aaa aaa @@ -94855,138 +95273,138 @@ aaa aaa aaa aaa -aae +aai aaa -aag aah -aah -aaj -aan -aan -aan -aau -aan -aan -aax -aan -aan -aan -abc -aah -aah -aah -aah -acP +aak +aak +aam +aaq +aaq +aaq +aaw +aaq +aaq +aaz +aaq +aaq +aaq +abf +aak +aak +aak +aak +acS aaa aaa aaf aaf aaf aaa -aho -aho -ahn -akg -ahn -amQ -aoa -apz -aqS -ast -atG -ana -akt -axa -ayp -azl -aAJ -aAG -aAG -aES -aGs -ayp -aJf -aKx -aLO -aNB -aOV -aNB -aRP -aTu -aTu -aWm -aTu -aTu -bbh -bcN -bet -bfO -bhw -bjd -blc -bmG -boz -bqm -bsD -buO -bwu -byr -bAp -bCb -bDT -bFA -byr -byr -byr -byr -bOm -bPO -bRB -bCe -bwx -bVS -bWT -bYw -bZG -cbs -ccD -cdK -cfq -chb -bWT -bWT -ckO -bWT -cnD -cpc -cqt -crw -coY -cqt -cfr -cwy -cxJ -bWT -czJ -cAW -cCd -bWT +ahq +ahq +ahp +blt +ahp +amP +anV +apr +aqI +asg +ats +dnu +dne +awP +ayj +azm +aAF +aAC +aAC +aEw +aFG +ayj +aIh +aJC +aKP +aMu +aNE +aMu +aQi +aRH +aRH +aUf +aRH +aRH +aYK +bam +dmH +bdh +byI +bgG +biD +bkg +bme +bnV +bBG +bsx +bua +bvW +bxP +bzA +bBm +bCR +bvW +bvW +bvW +bvW +bLd +aof +aob +alC +alK +bSu +dux +bUW +bVZ +bXD +bYI +bZO +cbt +cdc +dux +dux +csT +dux +cxQ +ckS +cmi +cnk +ckP +cmi +dvt +csf +cto +dux +cvj +cwh +cxb +dux aaa aaa aaa -cHb -cIb -cIW -cKc -cLc -cLY -cNa -cOj -cPa -cQe -cQV -cRU -cSE +cBR +cCM +cDD +cEH +cFB +cGt +cHo +cIr +cJh +cKg +cKT +dBV +cMu aaf aaa aaa @@ -95112,139 +95530,139 @@ aaa aaa aaa aaa -aad +aag aaa aaf aaa aaf aaf -aao +aar aaf aaa aaf -aao +aar aaf aaa aaf -aao +aar aaf aaa aaf aaa aaa aaa -acQ +acT aaf aaa aaf aaa aaf aaa -aho -aif +ahq +aih ajd akh -alz -amQ -aob -apA -aqT -asu -atH -auW -akt -akt -ayp -azm -aAK -aCe -aDq -aET -aGt -aIa -aJg -aKy -aLP -aLP -aLP -aLP -aLP -aLP -aUN -aLP -aLP -aLP -bbi -bcO -beu -bfP -bhx -bje -bld -bmH -bet +aly +amP +anW +aps +aqJ +ash +att +dqe +dne +dne +ayj +azn +aAG +aBV +aDi +aEx +aFH +aHc +aIi +aJD +aKQ +aKQ +aKQ +aKQ +aKQ +aKQ +aSQ +aKQ +aKQ +aKQ +aYL +ban +bbO +bdi +beV +bgH +biE +bkh +dmH +bnW bqn -bsE -buP -bwv -bys -bAq -bCc -bDU -bFB -bDU -bJh -bKM -byr -bOn -bPP -bFD -bRB -bwx -bVO -bWT -bYx -bZH -cbt -ccE -bWT -cfr -chc -bWT -cjH -chb -bWT -cnE -cpd -bWT -crx -csK -bWT -cvA -cwz -bWT -bWT -bWT -cAX -bWT -bWT -bWT +bsy +bub +bvX +bxQ +bzB +bBn +bCS +bBn +bQN +dih +bvW +bLe +bMF +apz +aob +alK +bSr +dux +bUX +bWa +bXE +bYJ +dux +dvt +cdd +dux +cfC +cdc +dux +cjv +diG +dux +cnl +cox +dux +diI +diK +dux +dux +dux +cwi +dux +dux +dux aaa aaa -cHb -cHY -cIT -cJZ -cLd -cLZ -cNb -cOk -cPb -cQf -cQU -cHb -cSF -cTF +cBR +cCK +cDA +cEE +cFC +cGu +cHp +dBT +cJi +cKh +cKS +cBR +cMv +cNs aaf aaa aaf @@ -95369,142 +95787,142 @@ aaa aaa aaa aaa -aae -aac -aac +aai +aaj +aaj aaa aaf -aai -aap +aal aas +aau aaa -aai -aap +aal aas +aau aaa -aai -aap +aal aas +aau aaa aaf aaa aaa aaa -acQ +acT aaa aaa aaa aaa aaf aaa -aho -aig -aje +ahq +aii +ajg aki -alA -amQ -aoc -apB -alD -asn -atI -aoh -apF -axb -ayq -azn -aAL -aCf -aDr -aEU -aGu -aIb -aJh -aKz -aLQ -aNC -aOW -aNC -aNC -aNC -aLQ -aNC -aXT -aZt -bbj -bcP -bet -bfO -bhy -bjf -ble -bmI -boA +alz +amP +anX +apt +dnk +doJ +atu +aRG +dnZ +awQ +ayk +azo +aAH +aBW +dCn +aEy +aFI +aHd +aIj +aJE +aKR +aMv +aNF +aMv +aMv +aMv +aKR +aMv +cVC +aXf +aYM +bao +dmH +bdh +beW +bgI +biF +bki +bmf +bnX bqo -bsF -buQ -bww -byr -bAr -byr -bDV -byr -bHj -byr -bKN -byr -bOo -bMs -bOg -bTf -bUA -bVT -bWT -bWT -bWT -bWT -bWT -bWT -bWT -chd -bWT -bWT -chb -bWT -bWT -bWT -bWT -cbu -cbu -bWT -bWT -cwA -bWT -cyI -czK -cAW -cbt -cdP -bWT +bsz +buc +bvW +dhS +bvW +bBo +bvW +bEu +bvW +bHP +bvW +bLf +bJs +aLd +bPK +bRf +bSv +dux +dux +dux +dux +dux +dux +dux +cde +dux +dux +cdc +dux +dux +dux +dux +bXF +bXF +dux +dux +csh +dux +cuf +cvk +cwh +bXE +dvq +dux aaa aaa -cHb -cHb -cIX -cJZ -cLe -cMa -cNc -cOl -cPc -cPc -cQW -cRV -cSG -cHb +cBR +cBR +cDE +cEE +cFD +cGv +cHq +cIs +cJj +cJj +cKU +cLN +cMw +cBR aaf aaa -aae +aai aaa aaa aaa @@ -95523,7 +95941,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -95631,137 +96049,137 @@ aaa aaa aaa aaa -aai -aap +aal aas +aau aaf -aai -aap +aal aas +aau aaa -aai -aap +aal aas +aau aaa aaf aaa aaa aaa -acQ +acT aaf aaf aaf aaf aaf aaa -aho -aih +ahq +aij ajf akj -alB -amR -aod -ahn -aqU -asn -atI -alD -alD -asn -ayp -azo -aAM -aCg -aDs -aEV -aGv -ayp -aJi -aKz -aLR -aNC -aOX -aNC -aRQ -aNC -aLR -aWn -aNC -aNC -bbj -bcQ -bes -bfP -bhz -bjg -blf -bmJ -boB -bqp -bsC -buR -bdf -byr -byr -byr -bDW -byr -bHk -byr -bKO -byr -bOp -bOo -bRC -bTg -bwx -bHm -bHl -bCe -bZI -bWT -ccF -cdL -cfs -che -cir -bWT -ckP -cmf -cmf -cmf -cqu -cmf -cmf -cuh -cmf -cwB -cmf -cmf -czL -cfu -ciw -bWT -bWT +alA +amQ +anY +ahp +dhu +doJ +atu +dnk +dnk +doJ +ayj +azp +aAI +aBX +aDj +aEz +aFJ +ayj +aIk +aJE +aKS +aMv +aNG +aMv +aQj +aMv +aKS +dCB +aMv +aMv +aYM +bap +dmF +bdi +beX +bgJ +biG +bkj +bmg +bnY +bql +bsA +baE +bvW +bvW +bvW +bBp +bvW +bEv +bvW +bHQ +bvW +bLg +bLf +amU +bPL +alK +bOf +bOv +alC +dbk +dux +bYK +bZP +cbv +cdf +cep +dux +cgI +chZ +chZ +chZ +cBr +chZ +chZ +cpS +chZ +csi +chZ +chZ +cvl +cbx +ceu +dux +dux aaf aaa aaa -cHb -cIY -cKd -cLf -cMb -cNd -cOm -cJZ -cQg -cQX -cRW -cSH -cHb +cBR +cDF +cEI +cFE +cGw +cHr +cIt +cEE +cKi +cKV +cLO +cMx +cBR aaf aaf -aad +aag aaa aaa aaa @@ -95886,139 +96304,139 @@ aaa aaa aaa aaa -aad +aag aaf -aai -aap +aal aas +aau aaa -aai -aap +aal aas +aau aaf -aai -aap +aal aas +aau aaf aaf aaf aaf aaf -acQ +acT aaa aaa aaa aaf aaf aaf -aho -aii -ajg +ahq +aik +anZ akk -alC -amS +alB +amR +aoO +ahp +aqL +asi +atu +auG +avN +doJ +ayj +ayj +aAJ +ayj +ayj +ayj +ayj +ayj +aIl +aJF +aKT +aMw +aNH +aMw +aQk +aMw +aSR +aMw +aVH +aXg +aYN +baq +dmF +bdj +dmF +bgK +dmT +bkk +dmF +bnZ +bql +bsB +alK aoe -ahn -aqV -asv -atI -auX -awb -asn -ayp -ayp -aAN -ayp -ayp -ayp -ayp -ayp -aJj -aKA -aLS -aND -aOY -aND -aRR -aND -aUO -aND -aXU -aZu -bbk -bcR -bes -bfQ -bes -bjh -blg -bmK -bes -bqq -bsC -buS -bwx -byt -bAs -byr -byr -byr -byr -byr -byr -byr -bwx -bwx -bwx -bwx -bwx -bCe -bVP -bCd -bZJ -bWT -ccG -cdM -cft -chf -cis -bWT -ckQ -cmg -cmg -cmg -cmg -cmg -cmg -cui -cmg -cmg -cmg -ciw -czM -cfr -cbt -chl -bWT +bxS +bvW +bvW +bvW +bvW +bvW +bvW +bvW +alK +alK +alK +alK +alK +alC +bSs +bzC +bWb +dux +bYL +bZQ +cbw +cdg +ceq +dux +dwb +cia +cia +cia +cia +cia +cia +cpT +cia +cia +cia +ceu +dyg +dvt +bXE +dvE +dux aaf aaf aaf -cHc -cIZ -cKe -cLg -cMc -cNe -cOn -cJZ -cQh -cQY -cRX -cSI -cHb +dBN +cDG +cEJ +cFF +cGx +cHs +cIu +cEE +cKj +cKW +cLP +cMy +cBR aaa aaa -aae +aai aaa aaa aaa @@ -96143,136 +96561,136 @@ aaa aaa aaa aaa -aae -aaf aai -aap +aaf +aal aas +aau aaf -aai -aap +aal aas +aau aaa -aai -aap +aal aas +aau aaa aaf aaa aaa aaa -acQ +acT aaa aaf aaf aaf -aec -agw -agw -agw -agw +aee +bbo +bbo +bbo +bbo akl -ahn -ahn -ahn -ahn -akt -asn -atJ -alD -alD -asn -ayr -azp -aAO -aCh -aDt -aEW -aGw -aIc -aJk -aKB -aLT -aNC -aOZ -aNC -aRS -aNC -aUP -aNC -aRS -aZv -aNC -bcS -bes -bfP -bes -bji -blh -bmL -bes -bqn -bsG -buT -bwy -byu -bAt -bCd -bCd -bFC -bHl -bCe -bKP -bCd -bCd -bCd -bCd -bTh -bCd -bCd -bKQ -bCe -bVO -bWT -ccH -cdL -cfu -chg -cbt -bWT -ckR -cmg -cnF -cpe -cqv -cry -csL -cuj -cvB -cwC -cmg -cyJ -czM -cAY -cbt -cCY -bWT +ahp +ahp +ahp +ahp +dne +doJ +atD +dnk +dnk +doJ +ayl +aEt +aAK +aBY +aDk +aEA +aFK +aHe +aIm +aJG +aKU +aMv +aNI +aMv +aQl +aMv +aSS +aMv +aQl +aXh +aMv +bar +dmF +bdi +dmF +bgL +biI +bkl +dmF +bnW +bqp +bsC +bud +bvY +bxT +bzC +bzC +dCW +bOv +alC +bSw +bzC +bzC +bzC +bzC +bPM +bzC +bzC +bSp +alC +bSr +dux +bYM +bZP +cbx +cdh +bXE +dux +dwc +cia +cjw +ckU +cmk +cnm +coy +cpU +crj +csj +cia +cug +dyg +dDw +bXE +cNg +dux aaa aaa aaa -cHb -cJa -cKf -cLh -cMd -cNf -cOo -cPd -cQi -cQZ -cRY -cSJ -cHb +cBR +cDH +cEK +cFG +cGy +cHt +cIv +cJk +cKk +cKX +cLQ +cMz +cBR aaa aaa aaf @@ -96400,139 +96818,139 @@ aaa aaa aaa aaa -aac +aaj aaa -aai -aaq -aas +aal +aat +aau aaa -aai -aaq -aas +aal +aat +aau aaa -aai -aaq -aas +aal +aat +aau aaa aaf aaa aaa aaa -acQ +acT aaa aaf -aec -aec -aec -agx -ahp -aij -agw +aee +aee +aee +agB +ahr +ail +bbo akm -alD -amT -aof -alD -aqW -asw -atK -auY -awc -axc -ayr -azq -aAP -aCi -aDu -aEX -aGx -aId -aJl -aKC -aLU -aKC -aPa -aKC -aRT -aKC -aUQ -aKC -aKC -aZw -bbl -bcT -bev -bfR -bes -bjj -bli -bmM -bes -bqr -bsH -buU -bwx -byv -bAu -bCe -bDX -bFD -bHm -bCd -bKQ -bAu -bOq -bPQ -bCe -bTi -bFD -bVU -bWU -bCe -bVO -bWT -bWT -bWT -cfv -cbt -cit -bWT -ckQ -cmh -cnG -cpf -cqw -crz -csM -csM -cvC -cwD -cmg -cyK -czN -cAZ -cCe -cCZ -bWT +dnk +amS +dnF +dnk +aqM +asj +atv +auH +avO +awR +ayl +dhy +aAL +aBZ +aDl +aEB +aFL +aHf +aIn +aJH +aKV +aJH +aNJ +aJH +aQm +aJH +aST +aJH +aJH +aXi +aYO +bas +bbP +bdk +dmF +bgM +biJ +bkm +dmF +boa +bqq +bsD +alK +dhR +aoa +alC +bBq +apz +bOf +bzC +bSp +aoa +aqO +bMG +alC +bPN +apz +bTt +bTv +alC +bSr +dux +dux +dux +cby +bXE +cer +dux +dwb +cib +cjx +ckV +cml +cnn +coz +coz +crk +csk +cia +cuh +cvm +cDK +cxc +cxR +dux aaa aaa aaa -cHc -cJb -cKg -cLi -cMe -cNg -cOp -cJZ -cQj -cRa -cRZ -cSK -cHb +dBN +cDI +cEL +cFH +cGz +cHu +cIw +cEE +cKl +cKY +cLR +cMA +cBR aaa aaa -aae +aai aaa aaa aaa @@ -96657,7 +97075,7 @@ aaa aaa aaa aaa -aac +aaj aaf aaa aaf @@ -96675,125 +97093,125 @@ aaf aaf aaf aaf -acR -aah -aah -aed -aeD -afB -agy -ahq -aik +acU +aak +aak +aef +aeG +afE +agC +ahs +aim ajh akn -alE -amU -aog -apC -aqX -asx -atL -auZ -awd -axd -ayr -azr -aAQ -aCj -aDv -aEY -ayr -aIe -aJm -aKD -aLV -aNE -aPb -aKD -aRU -aRU -aUR -aWo -aXV -aZx -bbm -bcU -bes -bes -bes -bjk -bes -bes -bes -bqs -bsI -buV -bwz -bwz -bwz -bwz -bwz -bwz -bwz -bJi -bwz -bwz -bwz -bwz -bwz -bwz -bwz -bwz -bwz -bwz -bVM -bWT -ccI -bWT -cfw -cbt -ciu -bWT -ckS -cmi -cnH -cpg -cqv -crA -csN -cuk -cvD -cwE -cmg -ciw -ciw -czM -bWT -bWT -bWT +alD +amT +dnG +apu +aqN +ask +dpG +auI +avP +awS +ayl +azs +aAM +aCa +aDm +dhC +ayl +aHg +aIo +aJI +aKW +aMx +aNK +aJI +aQn +aQn +aSU +aUg +aVJ +aXj +aYP +bat +dmF +dmF +dmF +bgN +dmF +dmF +dmF +bob +bqr +bsE +bue +bue +bue +bue +bue +bue +bue +bGq +bue +bue +bue +bue +bue +bue +bue +bue +bue +bue +cgH +dux +bYN +dux +cbz +bXE +ces +dux +dwe +cic +cjy +ckW +cmk +cno +coA +cUH +crl +csl +cia +ceu +ceu +dyg +dux +dux +dux aaa aaa aaa -cHb -cJc -cKh -cLj -cMf -cNh -cOq -cJZ -cQk -cRb -cSa -cSL -cHb +cBR +cDJ +cEM +cFI +cGA +cHv +cIx +cEE +cKm +cKZ +cLS +cMB +cBR aaf aaf -aae -aad -aad -aad -aad +aai +aag +aag +aag +aag aaa aaa aaa @@ -96916,14 +97334,14 @@ aaa aaa aaa aaf -aae -aad -aae -aad -aac -aad -aae -aac +aai +aag +aai +aag +aaj +aag +aai +aaj aaa aaa aaf @@ -96935,118 +97353,118 @@ aaa aaf aaa aaf -aec -aec -aec -agz -ahr -ail +aee +aee +aee +agD +aht +ain aji -ako -alF -amV -aoh -alF -aqY -akt -akt -ava -awe -akt -ayr -azs -aAR -aCk -aDw -aEZ -ayr -aIf -aJn -aKE -aLW -aNF -aPc -aQD -aKC -aTv -aUS -aWp -aXW -aZy -bbn -bcV -bew -bfS -bhA -bjl -blj -bmN -bcU -bqn -bsJ -buO -bwz -byw -bAv -bCf -bDY -bFE -bHn -bCg -bKR -bMy -bOr -bPR -bwz -bTj -bUB -bVV -bWV -bwz -bVO -cbu -ccJ -bWT -cbt -cfr -bWT -bWT -ckQ -cmi -cnI -cph -cqx -crB -csO -csO -cvE -cwF -cmg -cyL -czO -czM -bWT -cDa -bWT +dnd +alE +dnr +aRG +alE +dou +dne +dne +auJ +avQ +dne +ayl +azt +aAN +aCb +aDn +aED +ayl +aHh +aIp +aJJ +aKX +aMy +aNL +aPe +aJH +aRI +aSV +aUh +aVK +aXk +aYQ +bau +bbQ +bdl +beY +bgO +biK +bkn +bat +bnW +bqs +bsx +bue +bwa +bxU +bzD +bBr +bSx +bEw +bzE +bHR +bJy +bLh +bMH +bue +bPO +bRg +dDi +bTw +bue +bSr +bXF +bYO +dux +bXE +dvt +dux +dux +dwb +cic +cjz +ckX +cmm +cnp +coB +coB +crm +csm +cia +cui +cwj +dyg +dux +cxS +dux aaf aaf aaf -cHb -cHb -cHb -cLk -cMg -cHb -cHb -cHb -cHb -cRc -cHb -cHb -cHb +cBR +cBR +cBR +cFJ +cGB +cBR +cBR +cBR +cBR +dBU +cBR +cBR +cBR aaa aaa -aae +aai aaa aaa aaa @@ -97194,107 +97612,107 @@ aaa aaf aaf aaf -aec -agw -agw -aim -aim -ain -alG -ain -akt -apD -akt -akt -atM -avb -awf -axe -ays -azt -aAS -aCl -aDx -aFa -ayr -aIg -aJo -aKF -aLX -aNG -aPd -aQE -aRV -aTw -aUT -aWq -aXX -aZz +aee bbo -bcW -bex -bfT -bhB -bjm -blk -bmO -bhF -bqm -bsK -buW -bwz -byx -bAw -bCg -bDZ -bCg -bDZ -bCg -bKR -bMz -bOs -bPS -bwz -bTk -bUC -bVW -bWW -bwz -bVS -bWT -ccK -bWT -cfx -chh -bWT -chk -ckQ -cmi -cnJ -cpi -cqv -crC -csP -cul -cvF -cwG -cmg -chk -czP -cBa -bWT -cDb -bWT +bbo +agA +agA +aio +alF +aio +dne +apv +dne +dne +atx +auK +avR +awT +aym +azu +aAO +aCc +aDo +aEE +ayl +aHi +aIq +aJK +aKY +aMz +aNM +aPf +aQo +aRJ +aSW +aUi +aVL +aXl +aYR +bav +bbR +bdm +beZ +bgP +biL +bko +bbN +bnV +dCN +apA +bue +bwb +bxV +bzE +dmD +bzE +dmD +bzE +bHR +bJz +bLi +bMI +bue +bPP +bRh +bSy +bTx +bue +bSu +dux +bYP +dux +cbA +cdi +dux +cdl +dwb +cic +cjA +ckY +cmk +cnq +coC +cpW +crn +csn +cia +cdl +cMm +cMo +dux +cxT +dux aaa aaa aaa aaf aaa aaa -cLl -cMh -cNi -cOr +cFK +cGC +cBS +cIy aaf aaa aaa @@ -97454,103 +97872,103 @@ aaf aaf aaf aaf -ain +aio ajj akp -alH -amW -aoi -alH -aoi -akt -atN -avc -awg -axf -ayr -ayr -ayr -ayr -ayr -ayr -ayr -aIh -aJp -akt -aLY -akt -aPe -aQF -aRW -aRW -aUU -aUU -aXY -aZA -aUU -bcU -bey -bfU -bhC -bjn -bll -bmP -boC -bqm -bsC -buX -bwA -byy -byy -byy -byy -byy -bHo -byy -byy -byy -byy -bPT -bRD -bTl -bUD -bVX -bWX -bwz -bVO -bWT -bWT -bWT -bWT -bWT -bWT -cjI -ckQ -cmi -cmg -cpj -cmg -cmg -cmg -cum -cmg -cmg -cmg -ciw -czM -cBb -bWT -cDa -bWT +alG +dhq +aoc +alG +aoc +dne +aty +auL +avS +awU +ayl +ayl +ayl +ayl +ayl +ayl +ayl +aHj +aIr +dne +aKZ +dne +aNN +aPg +aQp +aQp +aSX +aSX +aVM +aXm +aSX +bat +bbS +bdn +bfa +bgQ +biH +bkp +bmh +bnV +bql +avH +bug +bCV +bCV +bCV +bCV +bCV +bEx +bCV +bCV +bCV +bCV +bMJ +bOk +bPQ +bRi +bSz +bTy +bue +bSr +dux +dux +dux +dux +dux +dux +cfD +dwb +cic +cia +ckZ +cia +cia +cia +cpX +cia +cia +cia +ceu +dyg +dyw +dux +cxS +dux aaa aaa aaa aaf aaa aaa -cLl -cMi -cNi +cFK +cGD +cBS aaa aaf aaf @@ -97560,13 +97978,13 @@ aaa aaa aaa aaa -cSS -cWd -cWd -cWd -cSS -cWd -cSS +cMI +cPA +cPA +cPA +cMI +cPA +cMI aaa aaa aaa @@ -97711,119 +98129,119 @@ aaa aaf aaa aaf -aio -ajk +aip +dho akq -alI -amX -aoh -apE -apH -akt -atO -avd -awh -axg -ayt -ayt -aAT -ayt -ayt -ayt -aGy -aIi -aJq -aKG -aLZ -akt -aPf -aQG -aRX -aTx -aUU -aWr -aXZ -aZB -aUU -bcX -bez -bfV -bhD -bjo -bhD -bmQ -boD +alH +amW +aRG +apw +dod +dne +atz +auM +avT +awV +ayn +ayn +dCl +ayn +ayn +ayn +aFM +aHk +aIs +aJL +aLa +dne +aNO +aPh +aQq +aRK +aSX +aUj +aVN +aXn +aSX +baw +bbT +bdo +bfb +bgR +bfb +bkq +bmi +boc bqt -bsL -buP -bwB -byz -byz -bCh -byz -byz -bHp -bJj -byz -byz -byz -bPU -bRE -bTm -bUD -bVY -bWY -bwz -bZK -cbv -ccL -cdN -cfy -chi -civ -chi -ckT -cmj -cnK -cpk -cqv -crD -csQ -cun -cvG -cwH -cmg -cjI -czQ -ciw -bWT -bWT -bWT -bWT -bWT -bWT -bWT -bWT +bsy +buh +bwd +bwd +bzF +bwd +bwd +bEy +bGr +bwd +bwd +bwd +bMK +bOl +bPR +bRi +bSA +bTz +bue +bWc +bXG +bYQ +bZR +cbB +cdj +cse +cdj +cgL +cid +cjB +cla +cmk +cnr +coD +cpY +cro +cso +cia +cfD +dyj +ceu +dux +dux +dux +dux +dux +dux +dux +dux aaa -cLl -cMj -cNi +cFK +cGE +cBS aaa aaf aaa -cRd -cRd -cRd -cRd -cRd -cRd -cSS -cWe -cWz -cWU -cSS -cXC -cWd +cLa +cLa +cLa +cLa +cLa +cLa +cMI +cPB +cPZ +cQT +cMI +cRE +cPA aaa aaa aaa @@ -97954,133 +98372,133 @@ aaf aaa aaa aaa -aaW -aaW -aaW -aaW -aaW -aaW -aaW -aaW -aaW -aaW -aaW -aaW +aaZ +aaZ +aaZ +aaZ +aaZ +aaZ +aaZ +aaZ +aaZ +aaZ +aaZ +aaZ aaa aaf -ain +aio ajl akr -alJ -amY -aoh -apF -aqZ -akt -atP -akt -akt -akt -akt -akt -akt -akt -akt -akt -akt -aIj -aJr -akt -aMa -akt -aPg -aQH -aRY -aTy -aUU -aWs -aYa -aZC -aUU -bcY -beA -bfW -bhE -bjp -blm -bmR -bcU -bqm -bsC -buY -bwz -byA -bAx -bCi -bEa -bFF -bHq -bJk -bKS -bCg -bOt -bCg -bwz -bTn -bTm -bVZ -bVZ -bwz -bZL -cbw -bWT -cdO -cfz -chj -ciw -cjJ -ckU -cmi -cnL -cpl -cqy -crE -csR -cuo -csO -cwI -cwK -bZF -czM -ciw -czP -cBc -cBc -cAZ -ciw -cHd -cjK -bWT -cKi -cLk -cMk -cHb -cOs -cye -cye -cRd -cSb -cSM -cTG -cUz -cVk -cSS -cWf -cWA -cWf -cSS -cXD -cSS +alI +amX +aRG +dnZ +aqP +dne +atA +dne +dne +dne +dne +dne +dne +dne +dne +dne +dne +aHl +aIt +dne +aLb +dne +aNP +aPi +aQr +aRL +aSX +aUk +aVO +aXo +aSX +bax +bbU +bdp +bfc +bgS +biM +bkr +bat +bnV +bql +awL +bue +aze +bwe +bGv +bHT +bwc +dCZ +bGs +bHS +bzE +bLk +bzE +bue +bPS +bPR +bBs +bBs +bue +bWd +bXH +dux +bZS +dvw +cdk +ceu +cfE +dwi +cic +cjC +clb +cmn +cns +coE +cpZ +coB +csp +csr +duH +dyg +ceu +cMm +cwm +cwm +cDK +ceu +cBT +cfF +dux +dzK +cFJ +cGF +cBR +clK +bTs +bTs +cLa +cLT +cMC +cNt +cTf +eFN +cMI +cPC +djX +cPC +cMI +cRF +cMI aaa aaa aaa @@ -98212,30 +98630,30 @@ aaf aaa aaa aaf -abd -abu -abS -aci -acw -acS -adj -adH -aee -aeE -aaW +abg +abx +abV +acm +acA +acV +adm +adJ +aeg +aeH +aaZ aaa aaf -ain -ain +aio +aio aks -alK -amZ -aoh -aoh -ara -akt -atQ -akt +alJ +amY +aRG +aRG +aqQ +dne +atB +dne aaa aaa aaf @@ -98244,100 +98662,100 @@ aaa aaf aaa aaa -aGz -aIk -aIh -akt -aMb -akt -aPh -aQI -aRZ -aTz -aUU -aWt -aYb -aZD -aUU -bcZ -beB -bfX -bhF -bjq -bcU -bcU -boE -bqu -bsC -buZ -bwz -bwz -bwz -bwz -bEb -bFF -bHr -bJl -bKS -bCg -bOt -bPV -bwz -bCg -bUE -bWa -bTm -bwz -bZM -cbx -bWT -bWT -cfA -bWT -bWT -cjK -ckV -cmi -cnM -cpm -cqv -crF -csS -cup -cvH -cwJ -cmg -bWT -czR -cBc -cCf -ciw -cdP -cFd -cGd -cBc -cBc -cAZ -cKi -cLm -cMl -cNj -cOs -cPe -cQl -cRe -cSc -cSN -cTH -cUA -cVl -cRd -cSS -cWB -cWk -cXo -cXE -cSS +aFN +aHm +nIb +dne +aLc +dne +aNQ +aPj +aQs +aRM +aSX +aUl +aVP +aXp +aSX +bay +bbV +bdq +bbN +bgT +bat +bat +bmj +bod +bql +bsG +bue +bue +bue +bue +bBu +bwc +bEz +bGt +bHS +bzE +bLk +bML +bue +bzE +bRj +bSB +bPR +bue +div +bXI +dux +dux +cbD +dux +dux +cfF +dwj +cic +cjD +clc +cmk +cnt +coF +cqa +crq +csq +cia +dux +diM +cwm +cNf +ceu +dvq +cNm +cNU +cwm +cwm +cDK +dzK +cFL +cGG +cHw +clK +cdm +cKn +cLb +cRT +cMD +cNu +cOb +cOF +cLa +cMI +cQa +cPH +cRj +cRG +cMI aaa aaa aaa @@ -98469,132 +98887,132 @@ aaf aaf aaf aaf -abd -abv -abT -acj -acx -acT -adk -adI -aef -aeF -aaW +abg +aby +abW +acn +acB +acW +adn +adK +aeh +aeI +aaZ aaf aaf aaf -ain -ain -ain -ain -aoj -apG -arb -akt +aio +aio +aio +aio +dnM +apy +aqR +dne akm -akt +dne aaf -axh -axh -axh -axh -axh -axh +awW +awW +awW +awW +awW +awW aaf -aGA -aIl -aJs -akt -aMc -akt -aPi -aQJ -aSa -aTA -aUU -aWu -aYc -aZE -bbp -bda -beC -bfY -bhG -bjr -bln -bmS -bgd -bqv -bsC -bva -bwz -byB -bAy -bCj -bCg -bFF -bHs -bJm -bEa -bMA -bOu -bPW -bwz -bTo -bUF -bWb -bWZ -bwz -bZL -bCe -bWT -cdP -cfB -chk -cix -cix -ckW -cmi -cmg -cmg -cmg -cmg -csT -cuq -cmg -cmg -cmg -cyM -cfu -cAY -cbt -cDc -cDc -cFe -cDc -cDc -cDc -cJd -cKi -cLn -cMm -cNk -cOs -cPf -cQm -cRd -cRd -cRd -cRd -cUB -cRd -cRd -cWg -cWC -cWV -cWC -cXF -cWd +aFO +aHn +aIu +dne +bOq +dne +aNR +aPk +aQt +aRN +aSX +aUm +aVQ +aXq +aYS +baz +bbW +bdr +bfd +bgU +biN +bks +bdw +boe +bql +bsH +bue +aAz +bxW +bzG +bzE +bwc +bEA +bGu +bHT +bJA +bLl +bMM +bue +bPU +bRk +bSC +bTA +bue +bWd +alC +dux +dvq +cbE +cdl +cev +cev +cgO +cic +cia +cia +cia +cia +coG +cqb +cia +cia +cia +cuj +cbx +dDw +bXE +cxU +cxU +czN +cxU +cxU +cxU +cDL +dzK +cFM +cGs +cHx +clK +bZT +cKo +cLa +cLa +cLa +cLa +cOc +cLa +cLa +cPD +cQb +cQx +cQb +cRH +cPA aaa aaa aaa @@ -98726,132 +99144,132 @@ aaa aaa aaa aaf -abd -abw -abU -ack -acy -acU -adl -adJ -aeg -aeG -aaW +abg +abz +abX +aco +acC +acX +ado +adL +aei +aeJ +aaZ aaa aaa aaf aaf aaf aaf -akt -akt -akt -akt -akt -atR -ave +dne +dne +dne +dne +dne +dhx +auN aaa -axh -ayu -azu -aAU -aCm -aDy +awW +ayo +azv +aAP +aCd +aDp aaa -aGB -aIm -aJt -akt -aMb -akt -akt -akt -akt -akt -akt -akt -akt -akt -akt -bdb -beD -bfZ -bhH -bjs -blo -bmT -boF -bqw -bsM -buQ -bwz -byC -bAz -bwz -bEc -bFF -bFF -bCg -bKT -bCg -bCg -bPX -bwz -bwz -bwz -bwz -bXa -bwz -bZL -bPJ -bWT -cdQ -cfC -chl -cix -cjL -ckX -cmk -cnN -cpn -cix -crG -csU -cur -cvI -cwK -bZF -cbt -czS -cBd -cCg -cDc -cEb -cFf -cGe -cHe -cDc -cJe -cKi -cLo -cMn -cNl -cOs -cPg -cQn -cRd -cSd -cSO -cTI -cUC -cVm -cRd -cWh -cWC -cWW -cWC -cXG -cWd +aFP +aHo +dhG +dne +aLc +dne +dne +dne +dne +dne +dne +dne +dne +dne +dne +baA +bbX +bds +dCI +bgV +biO +bkt +bmk +bof +bqu +bsz +bue +bwg +bxX +bue +bBv +bwc +bwc +bzE +bPT +bzE +bzE +bMN +bue +bue +bue +bue +bTB +bue +bWd +aqK +dux +bZU +cbF +dvE +cev +cfG +cgP +cie +cjE +cld +cev +cnu +coH +cqc +crr +csr +duH +bXE +cvn +cwn +cxd +cxU +cyN +czO +cAS +cBU +cxU +dDB +dzK +cFN +cGH +cHy +clK +cJl +cKp +cLa +cLV +cME +cNv +cOd +cOG +cLa +cPE +cQb +dDH +cQb +cRI +cPA aaa aaa aaa @@ -98976,139 +99394,139 @@ aaa aaa aaa aaa -aae +aai aaa aaf aaa aaa aaa -aav -aav -aav -aav -aav -aav -acV -adm -adK -aav -aav -aav -aav +aax +aax +aax +aax +aax +aax +acY +adp +adM +aax +aax +aax +aax aaa aaa aaf aaa -akt -akt -aok -alD -arc -akt -atS -avf +dne +dne +dnO +dnk +aqS +dne +atE +auO aaa -axh -ayv -azv -aAV -aCn -aDz -aFb -aGC -aIn -aJu -aKH -aMd -awh -aPj -aQK -awh -aTB -aUV -awh -awh -aZF -akt -bdc -beE -bga -beE -bjt -blp -bmU -boG -bqx -bsN -bvb -bwz -bwz -bwz -bwz -bEd -bFF -bFF -bJn -bKU -bMB -bCg -bPY -bwz -bTp -bUG -bwz -bXb -bYy -bZN -cby -bWT -cdR -cfD -chm -cix -cjM -ckY -cml -cnO -cpo -cqz -crH -csV -cus -cvJ -cwL -bWT -bWT -bWT -bWT -bWT -cDc -cEc -cFg -cGf -cHf -cDc -cJf -cKi -cHb -cMo -cHb -cOs -cPh -cQo -cRd -cSe -cSP -cTJ -cUD -cVn -cRd -cWi -cWC -cWX -cXp -cXH -cWd +awW +ayp +azw +aAQ +aCe +aDq +aEF +aFQ +aHp +aIw +aJM +aLe +avT +bfU +aPl +avT +dCx +aSY +avT +avT +aXr +dne +baB +bbY +bdt +bbY +bgW +biP +bku +bml +bog +bqv +bsI +bue +bue +bue +bue +cUT +bwc +bwc +bHU +bHV +bJB +bzE +bMO +bue +bPV +bRl +bue +bTC +atw +bWe +bXJ +dux +bZV +cbG +cdn +cev +cfH +cgQ +cif +cjF +cle +cmo +cnv +coI +cqd +crs +css +dux +dux +dux +dux +dux +cxU +cyO +czP +cAT +cBV +cxU +cDM +dzK +cBR +cGI +cBR +clK +diQ +cKq +cLa +cLW +cMF +cSY +cOe +cOH +cLa +cPF +cQb +djj +djr +cRq +cPA aaa aaa aaa @@ -99233,139 +99651,139 @@ aaa aaa aaa aaa -aac +aaj aaf aaf aaa aaa aaf -aaw -abe -abx -abV -acl -aav -acW -adn -adL -aeh -aeH -afC -aav -aav +aay +abh +abA +abY +acp +aax +acZ +adq +adN +aej +aeK +afF +aax +aax aaa aaf aaa -akt -ana -aol -apH -apF -akt -atT -avf +dne +dnu +dnP +dod +dnZ +dne +atP +auO aaa -axh -ayw -azw -aAW -aCo -aDA -aFc -aGD -aIo -aJv -aKI -aKI -aKI -aKI -aQL -aKI -aKI -aUW -aKI -aKI -aZG -bbq -bdd -beF -bgb -beF -bju -blq -bmV -bgd -bqy -bsO -buO -bwz -byD -bAy -bCk -bCg -bFG -bFF -bCg -bKV -bMC -bOv -bPZ -bRF -bTq -bUH -bwz -bDJ -bCe -bZO -bOq -bWT -cdS -cfE -chn -cix -cjN -ckZ -cmm -cnP -cpp -cqA -crI -csW -cut -cvK -cwL -cxK -cyN -czT -cBe -cCh -cDc -cEd -cFh -cGg -cHg -cDc -cJd -bWT -cLp -cMp -cNm -cye -cPi -cQp -cRf -cSf -cSQ -cTK -cUE -cVo -cVQ -cWj -cWD -cWY -cXq -cXI -cSS +awW +ayq +azx +aAR +aCf +aDr +aEG +aFR +aHq +aIx +aJN +aJN +aJN +aJN +aPm +aJN +aJN +aSZ +aJN +aJN +aXs +aYT +baC +bbZ +bdu +bbZ +bgX +biQ +bkv +bdw +boh +bqw +bsx +bue +bwf +bxW +bzH +bzE +dCX +bwc +bzE +cVb +cVe +cVf +cVi +bOm +bPW +bRm +bue +auF +alC +aXt +aqO +dux +bZW +cbH +cdo +cev +cfI +cgR +cig +cjG +clf +cmp +cnw +coJ +cqe +crt +css +ctr +cuk +cvo +cwo +cxe +cxU +cyP +czQ +cAU +diN +cxU +cDL +dux +cFO +cGJ +cHz +bTs +cJn +cKr +cLc +cLX +cMG +cNx +cOf +cOI +cPk +cPG +cQc +djk +cRl +cRJ +cMI aaa aaa aaa @@ -99490,139 +99908,139 @@ aaa aaa aaa aaa -aae +aai aaa aaf aaf aaf aaf -aav -abf -aby -abb -abb -aav -acX -ado -ado -aei -aeI -afD -agA -aav +aax +abi +abB +abe +abe +aax +ada +adr +adr +aek +aeL +afG +agE +aax aaa aaf aaf -aio -anb -aom -apI -ard -asy -atU -avf +aip +ana +aog +doe +aqT +asl +atG +auO aaa -axh -ayx -azx -aAX -aCp -aDB -aFd -aGE -aIm -aJw -aKJ -aMe -aNH -aPk -aQM -aSb -aTC -aUX -aWv -aKI -aZH -akt -bde -beG -bgc -bhI -bjv -blr -bmW -bgd -bqm -bsO -buO -bwz -byE -bAz -bwz -bEe -bFF -bFF -bJo -bwz -bwz -bwz -bwz -bwz -bTr -bUI -bwz -bwx -bwx -bZP -cbz -cbz -cdT -cfF -cbz -cix -cjO -cla -cmn -cnQ -cpq -cix -crJ -csX -cuu -cvL -cwL -cxL -cyO -czU -cBf -cCi -cDc -cEe -cFi -cGh -cHh -cDc -cJg -cKj -cLq -cMq -cNn -cOt -cPj -cQq -cRd -cSg -cSR -cTL -cUF -cVp -cVR -cWk -cWE -cWZ -cXr -cXJ -cYc +awW +ayr +azy +aAS +aCg +aDs +aEH +aFS +aHo +aIy +aJO +aLf +aMA +aNT +aPn +aQu +aRO +aTa +dhL +aJN +dtP +dne +baD +bca +bdv +bff +bgY +biR +bkw +bdw +bnV +bqw +bsx +bue +aFE +bxX +bue +bBw +bwc +bwc +bBx +bue +bue +bue +bue +bue +bPX +bRn +bue +alK +alK +bWf +bXK +bXK +bZX +cbI +bXK +cev +cfJ +cgS +cih +cjH +clg +cev +cnx +coK +cqf +cru +css +cts +cul +cvp +cwp +cxf +cxU +cyQ +czR +cAV +cBW +cxU +cDN +cEN +cFP +cGK +cHA +cIz +cJo +cKs +cLa +cLY +cMH +cNy +cOg +cOJ +cPl +cPH +cQd +cTo +cRm +cRK +cRP aaa aaa aaa @@ -99753,133 +100171,133 @@ aaa aaa aaf aaa -aav -abg -aaQ -abW -acm -acz -abb -adp -adM -aej -aeJ -afE -agB -afS +aax +abj +aaR +abZ +acq +acD +abe +ads +adO +ael +aeM +afH +agF +afW aaf aaf aaa -akt -ako -aon -akt -akt -akt -atV -avg +dne +dnd +aoh +dne +dne +dne +atH +auP aaa -axh -ayy -azy -aAY -aCq -axh +awW +ays +azz +aAT +aCh +awW aaa -aGF -aIp -aJx -aKK -aMf -aNI -aNI -aNI -aNI -aTD -aUY -aWw -aKI -aZI -akt -bdf -bdf -bgd -bhJ -bjw -bgd -bdf -boH -bqz -bsP -bvc -bwC -bwz -bwz -bwz -bEf -bFH -bFH -bEf -bwz -bMD -bOw -aYi -bwz -bwz -bwz -bwz -bXc -bYz -bZQ -cbz -ccM -cdU -cfG -cho -cix -cjP -clb -cmo -cnR -cpr -cix -crK -csY -cuv -cvM -cwL -cxM -cyP -czU -cBg -cCj -cDc -cEf -cFj -cGi -cHi -cDc -cJh -cDc -cDc -cMr -cDc -cDc -cPk -cQr -cRd -cSh -cRd -cRd -cRd -cVq -cRd -cWl -cWC -cWZ -cSS -cSS -cSS +aFT +aHr +aIz +aJP +aLg +aMB +aMB +aMB +aMB +aRP +aTb +aUo +aJN +aXu +dne +baE +baE +bdw +bfg +bgZ +bdw +baE +bmm +boi +bqx +bsJ +bui +bue +bue +bue +cUU +aZO +aZO +cUU +bue +buf +cVh +aVW +bue +bue +bue +bue +bTD +bUY +bWg +bXK +bYR +bZY +cbJ +cdp +cev +cfK +cgT +cii +cjI +clh +cev +cny +coL +cqg +crv +css +ctt +cum +cvp +cwq +cxg +cxU +cyR +czS +cAW +cBX +cxU +cDO +cxU +cxU +cGL +cxU +cxU +diR +cPW +cLa +cLZ +cLa +cLa +cLa +cOK +cLa +cPI +cQb +cTo +cMI +cMI +cMI aaa aaa aaa @@ -99894,7 +100312,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -100010,133 +100428,133 @@ aaf aaf aaf aaf -aaw -abh -abz -abz -acn -acA -acY -abB -abB -aek -aeK -afF -agC -aav +aay +abk +abC +abC +acr +acE +adb +abE +abE +aem +aeN +afI +agG +aax aaa aaf aaa -akt -akt -akt -akt -are -asz -atW -akt +dne +dne +dne +dne +aqU +asm +atI +dne aaf -axh -axh -axh -axh -axh -axh +awW +awW +awW +awW +awW +awW aaf -aGG -aIq -aJy -aKL -aMg -aNJ -aPl -aQN -aNI -aTD -aUY -aWx -aKJ -aZJ -bbr -bdg -beH -bge -bhK -bge -bhK -bmX -bbr -bqA -bsQ -bvd -bwD -byF -bAA -bCl -bwD -bFI -bwD -bwD -bKW -bwD -bwD -bwD -bAA -bwD -byF -bWc -bwD -bwD -bZR -cbz -ccN -cdV -cfH -chp -cix -cix -cix -cmp -cnS -cps -cix -crL -csZ -cuw -crL -cwL -cxN -cyQ -czU -cBh -cCk -cDc -cDc -cFk -cGj -cDc -cDc -cJi -cDc -cLr -cMp -cNo -cDc -cPl -cQq -cRd -cSi -cRd -cTM -cUG -cVr -cRd -cSS -cWF -cWZ -cSS -cXK -cSS +aFU +aHs +aIA +aJQ +aLh +aMC +aNU +dCt +aMB +aRP +aTb +aUp +aJO +aXv +aYU +baF +bcb +bdx +bfh +bdx +bfh +bkx +aYU +boj +bqy +bsK +buj +bwh +bxY +bzI +buj +bCW +buj +buj +cVd +buj +buj +buj +bxY +buj +bwh +bSD +buj +buj +bWh +bXK +bYS +bZZ +cbK +cdq +cev +cev +cev +cij +cjJ +cli +cev +cnz +coM +cqh +cnz +css +ctu +cun +cvp +cwr +cxh +cxU +cxU +czT +cAX +cxU +cxU +cDP +cxU +cFQ +cGJ +cHB +cxU +diS +cKs +cLa +cMa +cLa +cNz +cOh +cOL +cLa +cMI +cQf +cTo +cMI +dbF +cMI aaa aaa aaa @@ -100267,31 +100685,31 @@ aaa aaf aaa aaa -aav -abi -abA -abB -aaH -acB -abb -adq -adN -abb -aeL -afG -aav -aav +aax +abl +abD +abE +aaI +acF +abe +adt +adP +abe +aeO +afJ +aax +aax aaa aaf aaa aaa -akt -aoo -apJ -apK -akt -akt -akt +dne +aoi +apB +apC +dne +dne +dne aaa aaa aaa @@ -100300,100 +100718,100 @@ aaa aaa aaa aaa -aGz -aIr -aJz -aKJ -aMh -aNK -aPm -aQO -aSc -aTE -aUZ -aWy -aKJ -aZK -bbs -bdh -bdh -bgf -bdh -bdh -bdh -bgw -bdh -bqB -bsR -bve -bwE -beS -bgw -bdh -bdh -bFJ -bHt -bdh -bKX -bdh -beS -bdh -bgw -bdh -bdh -bdh -bXd -bYA -bZS -cbz -ccO -cdW -cfI -chq -ciy -cjQ -cbz -cmq -cnT -cpt -cqB -crM -cta -cux -cvN -cwM -cux -cyR -czV -cBi -cCl -cDd -cEg -cFl -cGk -cHj -cIc -cJj -cKk -cLs -cMs -cNp -cDc -cPm -cQq -cRd -cRd -cSS -cTN -cRd -cRd -cRd -cWm -cWG -cXa -cXs -cVy -cSS +aFN +aHt +aIB +aJO +aLi +aMD +aNV +aPo +aQv +aRQ +aTc +aUq +aJO +aXw +aYV +baG +baG +bdy +baG +baG +baG +bdP +baG +bok +bqz +bsL +buk +dCH +bdP +baG +baG +bCX +bEB +baG +bHW +baG +dCH +baG +bdP +baG +baG +baG +bTE +bUZ +bWi +bXK +bYT +caa +cbL +cdr +cew +cfL +bXK +cik +cjK +clj +cmr +cnA +coN +cqi +crw +cst +cqi +cuo +cvq +cws +cxi +cxV +cNh +czU +cAY +cBY +cCN +cDQ +cEO +cFR +cGM +cHC +cxU +cJq +cKs +cLa +cLa +cMI +cNA +cLa +cLa +cLa +cPJ +cQg +cTy +cRn +cOS +cMI aaa aaa aaa @@ -100520,33 +100938,33 @@ aaa aaa aaa aaa -aav -aav -aaE -aav -aav -abj -abB -aaQ -aaH -acC -acZ -acZ -adO -acZ -aeM -afH -agD -aav +aax +aax +aaF +aax +aax +abm +abE +aaR +aaI +acG +adc +adc +adQ +adc +aeP +afK +agH +aax aaa aaf -akt -akt -akt -aop -apK -arf -akt +dne +dne +dne +aoj +apC +doA +dne aaa aaa aaa @@ -100556,101 +100974,101 @@ aaa aaa aaa aaa -azA -azA -azA -aJA -aKI -aMi -aNL -aPn -aQP -aSd -aTF -aVa -aWz -aYd -aZL -bbt -bdi -beI -bgg -bhL -bhL -bhL -bmY -boI -bhL -bsS -bsS -bwF -bhL -bmY -bCm -bhL -bFK -bHu -bJp -bJp -bME -bJp -bQa -bRG -bTs -bUJ -bJp -bXe -bYB -bZT -cbz -ccP -cdV -cfJ -chr -chr -cjR -clc -cmr -cnU -cpu -cqC -ceh -ceh -cuy -ceh -cwN -cxO -cyS -czW -cBj -cCm -cDe -cEh -cFm -cGl -cHk -cId -cJk -cKl -cLt -cMt -cNq -cDc -cPn -cQs -cRg -cRd -cST -cTO -cUH -cVs -cVS -cWn -cWH -cXb -cWL -cXL -cSS +aDu +aDu +aDu +aIC +aJN +aLj +aME +aNW +aPp +aQw +aRR +aTd +aUr +aVR +aXx +aYW +baH +bcc +bdz +bfi +bfi +bfi +bky +bmn +bfi +bqA +bqA +bul +bfi +bky +bGw +bfi +bCY +bEC +bHX +bHX +bJC +bHX +bMR +bOn +bPY +bRo +bHX +bTF +bVa +bWj +bXK +bYU +bZZ +cbM +cds +cds +cfM +cgU +cil +cjL +clk +cms +cal +cal +cqj +cal +csu +ctv +cup +cvr +cwt +cxj +cxW +cyT +czV +cAZ +cBZ +cCO +cDR +cEP +cFS +cGN +cHD +cxU +cJr +cKu +cLd +cLa +cMJ +cNB +cOi +cOM +cPm +cPK +cQh +cQE +cQl +cRo +cMI aaa aaa aaa @@ -100777,33 +101195,33 @@ aaa aaa aaf aaa -aav -aay -aaF -aaO -aav -abk -abB -abA -aco -acD -abb -adr -adP -abb -aeN -afI -agE -afS +aax +aaA +aaG +aaP +aax +abn +abE +abD +acs +acH +abe +adu +adR +abe +aeQ +afL +agI +afW aaf aaf -akt +dne alL -anc -aoq -apL -arg -akt +anb +aok +aox +aqV +dne aaa aaa aaa @@ -100813,101 +101231,101 @@ aaa aaa aaa aaa -azz -aGH -aIs -aJB -aKI -aMj -aNL -aPn -aQN -aSe -aNI -aVb -aWA -aKM -aZM -bbu -bdj -beJ -beJ -beJ -beJ -beJ -bmZ -bmZ -bqC -bmZ -bmZ -bwG -bmZ -bmZ -bCn -bEg -bFL -bHv -bJq -bJr -bJr -bJr -bJr -bJr -bJr -bJr -bJr -bXf -bbu -bZU -cbz -ccQ -cdX -cfK -chs -ciz -cjS -cld -cms -cnV -cpv -cqD -crN -cei -chy -cvO -cwO -cxP -cyT -czX -cBk -cCn -cDf -cEi -cFn -cGm -cHl -cIe -cJl -cKm -cLu -cMu -cNr -cDc -cPo -cQt -cRh -cRd -cSU -cTP -cUI -cVt -cVT -cWo -cWG -cXc -cXt -cXM -cYd +azC +aFV +aHu +aID +aJN +dhI +aME +aNW +dCt +aQx +aMB +aTe +aUs +aJR +aXy +dCE +baI +bcd +bcd +bcd +bcd +bcd +bkz +bkz +bol +bkz +bkz +bum +bkz +bkz +bzJ +bBy +bCZ +bED +bGx +bGy +bGy +bGy +bGy +bGy +bGy +bGy +bGy +bTG +dCE +bWk +bXK +bYV +cab +cbN +cdt +cex +cfN +cgV +cim +cjM +cll +cmt +cnB +cam +cdz +crx +csv +ctw +cuq +cvs +cwu +cxk +cxX +cyU +czW +cBa +cCa +cCP +cDS +cEQ +cFT +cGO +cHE +cxU +cJs +cJX +cLe +cLa +cMK +cNC +cOj +cON +cPn +cPL +cQg +cQF +cQV +cRp +cRL aaa aaa aaa @@ -101034,33 +101452,33 @@ aaa aaa aaf aaf -aaw -aaz -aaG -aaP -aaX -abl -abC -abX -acp -acE -ada -ads -adQ -ael -aeO -afD -agD -aav +aay +aaB +aaH +aaQ +aba +abo +abF +aca +act +acI +add +adv +adS +aen +aeR +afG +agH +aax aaf aaf -akt +dne alL -and -aor -apM -arh -akt +anc +aol +apD +aqW +dne aaa aaa aaa @@ -101070,101 +101488,101 @@ aaa aaa aaa aaa -azz -aGI -aIt -aJC -aKI -aMk -aNL -aPo -aQQ -aQQ -aQQ -aVc -aWB -aYe -aZN -bbv -bdj -beJ -bgh -bhM -bjx -bls -bmZ -boJ -bqD -bsT -bvf -bwH -byG -bmZ -bCo -bEh -bFM -bHw -bJr -bKY -bMF -bOx -bQb -bRH -bMF -bMF -bJr -bXg -bby -bZV -cbz -ccR -cdY -cfL -cht -ciA -cjT -cle -cmt -cnW -cpw -cqE -cqE -cqF -cuz -cqE -cwP -cqE -cqE -czY -czY -cCo -cDg -czY -czY -czY -cDc -cIf -cJm -cDc -cye -cMv -cye -cye -cye -cye -cRi -cRd -cSV -cTQ -cUJ -cVu -cVU -cWp -cWI -cXc -cVv -cXM -cYd +azC +aFW +aHv +aIE +aJN +aLl +aME +aNX +aPq +aPq +aPq +aTf +aUt +aVS +aXz +aYY +baI +bcd +bdA +bfj +bha +biS +bkz +bmo +bom +bqB +bsM +bun +bwi +bkz +bzK +bBz +bDa +bEE +bGy +bHY +bJD +bLm +bMS +bOo +bJD +bJD +bGy +bTH +aYX +bWl +bXK +bYW +cac +cbO +cdu +cey +cfO +cgW +cin +cjN +clm +cmu +cmu +cmv +cqk +cmu +csw +cmu +cmu +cvt +cvt +cxl +cxY +cvt +cvt +cvt +cxU +cCQ +cDT +cxU +bTs +cGP +bTs +bTs +bTs +bTs +cLf +cLa +cML +cND +cOk +cOO +cPo +cPM +cQi +cQF +cOP +cRp +cRL aaa aaa aaa @@ -101291,33 +101709,33 @@ aaa aaa aaf aaa -aav -aaA -aaH -aaQ -aaY -aaH -abD -abY -acq -acF +aax +aaC +aaI +aaR abb -adt -adR -acZ -aeP -afJ -abb -aav -aip +aaI +abG +acb +acu +acJ +abe +adw +adT +adc +aeS +afM +abe +aax +aiq ajm ajm ajm ajm -aos +aom ajm -akt -akt +dne +dne aaa aaa aaa @@ -101327,101 +101745,101 @@ aaa aaa aaa aaa -azz -aGI -aIu -aJD -aKI -aMl -aNM -aPp -aQR -aSf -aTG -aVd -aWC -aYf -aZO -bbw -bdk -beK -bgi -bhN -bjy -blt -bmZ -boK -bqE -bsU -bvg -bwI -byH -bAB -bCp -bEi -bFN -bHx -bJs -bKZ -bMG -bOy -bQc -bRI -bQc -bUK -bWd -bXh -bby -bZW -cbA -cbA -cdZ -cfM -chu -ciB -cjU -cbz +azC +aFW +aHw +aIF +aJN +aLm +aMF +aNY +aPr +aQy +aRS +aTg +aUu +aVT +aXA +aYZ +baJ +bce +bdB +bfk +bhb +biT +bkz +bmp +bon +bqC +bsN +buo +bwj +bxZ +bzL +bBA +bDb +bEF +bGz +bHZ +bJE +bLn +bMT +bOp +bMT +bRp +bSE +bTI +aYX +bWm +bXL +bXL +cad +cbP +cdv +cez +cfP +bXK +cio +cjO +cln cmu -cnX -cpx -cqE -crO -ctb -cuA -cvP -cwQ -cxQ -cqE -czZ -cBl -cCp -cDh -cEj -cFo -czY -cHm -cIg -cJn -cKn -cye -cMw -cNs -cOu -cPp -cye -cRj -cSj -cSW -cTR -cUK -cVv -cVv -cVv -cWC -cXd -cXu -cXH -cYd +cnC +coO +cql +cry +csx +ctx +cmu +cvu +cwv +cxm +cxZ +cyV +czX +cvt +cCb +cCR +cDU +cER +bTs +cGQ +cHF +cIA +cJt +bTs +cLg +cMb +cMM +cNE +cOl +cOP +cOP +cOP +cQb +cQG +cQW +cRq +cRL aaa aaa aaa @@ -101548,137 +101966,137 @@ aaa aaa aaa aaa -aaw -aaB -aaI -aaR -aaZ -abm -abE -abZ -acr -acG -abb -abb -abb -abb -aeQ -afK -abb -ahs -aiq -ahv -aku -alM -ane -aot -ajm -ari +aay +aaD +aaJ +aaS +abc +abp +abH +acc +acv +acK +abe +abe +abe +abe +aeT +afN +abe +ahu +air +ahx akt +alM +and +aon +ajm +aqX +dne aaa aaa aaa aaa aaa aaa -aAZ +aAV aaa aaa -azA -aGJ -aIv -aJE -aKM -aMm -aKM -aKM -aKM -aKM -aKM -aVe -aKM -aKM -aZP -bbx -bdl -beJ -bgj -bhO -bjz -blu -bmZ -boL -bqF -bsV -bvh -bwJ -byI -bmZ -bCq -bEj -bFM -bHw -bJt -bLa -bMH -bOz -bQd -bRJ -bTt -bUL -bWd -bXh -bby -bZT -cbA -ccS -cea -cbA -chv -chv -chv -chv +aDu +aFX +aHx +aIG +aJR +aLn +aJR +aJR +aJR +aJR +aJR +aTh +aJR +aJR +aXB +aZa +baK +bcd +bdC +bfl +bhc +biU +bkz +bmq +boo +bqD +bsO +bup +bwk +bkz +bzM +bBB +bDa +bEE +bGA +bIa +bJF +bLo +bMU +dbm +bPZ +bRq +bSE +bTI +aYX +bWj +bXL +bYX +cae +bXL +cdw +cdw +cdw +cdw +cip +cjP +clo cmv -cnY -cpy -cqF -crP -ctc -cuB -cvQ -cwR -cxR -cqE -cAa -cBm -cCq -cDi -cEk -cFp -cGn -cHn -cIh -cJo -cKo -cye -cMx -cNt -cOv -cPq -cye -cRk -cRd -cSX -cTS -cUL -cVw -cVV -cVw -cWJ -cXc -cVv -cXM -cYd +cnD +coP +cqm +crz +csy +cty +cmu +cvv +cww +cxn +cya +cyW +czY +cBb +cCc +cCS +cDV +cES +bTs +cGR +cHG +cIB +cJu +bTs +cPY +cLa +cMN +cNF +cOm +cOQ +cPp +cOQ +cQj +cQF +cOP +cRp +cRL aaa aaa aaa @@ -101805,137 +102223,137 @@ aaa aaa aaf aaa -aav -aaC -aaJ -aaS -aav -abn -abF -abz -acs -acH -abb -adu -adS -aej -aeR -afL -abb -aht -air +aax +aaE +aaK +aaT +aax +abq +abI +abC +acw +acL +abe +adx +adU +ael +aeU +afO +abe ahv -akv +ais +ahx +aku alN -anf -aou +ane +aoo ajm ajm ajm ajo ajo -awi +avY ajo aaa -azz -aBa -azz -azA -azA -aGK -aIv +azC +aAW +azC +aDu +aDu +aFY +aHx aaa aaa -aMn +aLo aaa aaa aaa aaa aaf aaa -aWD -aYg -aZQ -bby -bdm -beL -bgk -bhP -bjA -blv -bmZ -bmZ -bmZ -bmZ -bvi -bwK -byJ -bmZ -bCr -bEj -bFM -bHy -bJu -bLb -bMI -bOA -bQe -bRK -bTu -bUM -bWe -bXh -bby -bZT -cbA -ccT -ceb -cfN -chv -ciC -cjV -clf +aUv +aVU +aXC +aYX +baL +bcf +bdD +bfm +bhd +biV +bkz +bkz +bkz +bkz +btH +buq +bAZ +bkz +bzN +bBB +bDa +bEG +bGB +bIb +bJG +bLp +bMV +bOr +bQa +bRr +bSF +bTI +aYX +bWj +bXL +bYY +caf +cbQ +cdw +ceA +cfQ +cgX +ciq +cjO +clo cmw -cnX -cpy -cqG -crQ -ctd -cuC -cvR -cwS -cxS -cqE -cAb -cBn -cCr -cDj -cEl -cFq -czY -cHo -cIi -cJp -cKp -cye -cMy -cNu -cOw -cPr -cye -cRi -cRd -cSY -cTT -cTP -cVx -cVW -cVx -cWI -cXc -cXt -cXM -cYd +cnE +coQ +dDt +crA +csz +ctz +cmu +cvw +cwx +cxo +cyb +cyX +czZ +cvt +cCd +cCT +cDW +cET +bTs +cGS +cHH +cIC +cJv +bTs +cLf +cLa +cMO +cNG +cNC +cOR +cPq +cOR +cQi +cQF +cQV +cRp +cRL aaa aaa aaa @@ -102062,137 +102480,137 @@ aaa aaa aaf aaf -aav -aav -aaK -aav -aav -abo -abG -abB -abB -abB -adb -abB -abB -aem -aeS -afM -abb -ahu -aiq -ahv -akw +aax +aax +aaL +aax +aax +abr +abJ +abE +abE +abE +ade +abE +abE +aeo +aeV +afP +abe +ahw +air +ahx +akv alO -ang -aov -ahv -arj -asA -atX +anf +aop +ahx +aqY +asn +atK ajo -avy +avk ajo aaa -azA -aBb -aCr -aDC -aFe -aGL -aIw +aDu +aAX +aCj +aDv +aEI +aFZ +aHy aaa aaa -aMo -aKN -aPq -aQS -aKN -aKN +aLp +aJS +aNZ +aPs +aJS +aJS aaa -aWE -aYh -aZR -bbz -bdn -beJ -beJ -bhQ -beJ -beJ -beM -boM -bmZ -bsW -bvj -bwJ -byK -bmZ -bCs -bEj -bFM -bHz -bJr -bLc -bMJ -bOB -bLd -bRL -bMF -bMF -bJr -bXi -bby -bZT -cbA -ccU -cec -cfO -chw -ciD -cjW -clg +aUw +aVV +aXD +aZb +baM +bcd +bcd +bfn +bcd +bcd +bcg +bmr +bkz +bqE +dCO +bup +bwm +bkz +bzO +bBB +bDa +bEH +bGy +bIc +bJH +bLq +bId +bOs +bJD +bJD +bGy +bTJ +aYX +bWj +bXL +bYZ +cag +cbR +cdx +ceB +cfR +cgY +cir +cjN +clo cmx -cnW -cpy -cqH -crR -cte -cuD -cvS -cwT -cxT -cxT -cxT -cxT -cCs -cDk -cxT -cxT -cxT -cHp -cHp -cJq -cHp -cHp -cHp -cye -cye -cPs -cye -cRl -cRd -cSZ -cTT -cTP -cVy -cVX -cVy -cWK -cXe -cXv -cXN -cSS +cnF +coR +cqo +crB +csA +ctA +ctA +ctA +ctA +cxp +cyc +ctA +ctA +ctA +cCe +cCe +cDX +cCe +cCe +cCe +bTs +bTs +cJw +bTs +cLi +cLa +cMP +cNG +cNC +cOS +cPr +cOS +cQk +cQH +cQX +cRr +cMI aaa aaa aaa @@ -102323,133 +102741,133 @@ aaa aaf aaa aaa -aaw -abp -abH -aca -act -acI -abb -adv -adR -acZ -aeT -afH -agF -ahv -ais -ahv -akx +aay +abs +abK +ace +acx +acM +abe +ady +adT +adc +aeW +afK +agJ +ahx +ait +ahx +akw alP -anh -aow -ahv -ark -asB -atY -ahv -awj -ahv -ahv +ang +aoq +ahx +aqZ +aso +atL +ahx +avZ +ahx +ahx ajm ajm ajm -azA -aFf -aGM -aIv +aDu +aEJ +aGa +aHx aaa -aKN -aMo -aNN -aPr -aQT -aSg -aKN +aJS +aLp +aMG +aOa +aPt +aQz +aJS aaa -aWD -aYi -aZQ -bbA -bdo -beM -bgl -bhR -bjB -blw -bna -boN -bmZ -bsX -bvk -bwL -byL -bAB -bCp -bEj -bFN -bHA -bJr -bLd -bLd -bLd -bLd -bLd -bLd -bLd -bJt -bXj -bbx -bZX -cbA -cbA -ced -cfP -chv -ciE -cjX -chv -cmy -cnX -cpz -cqE -crS -ctf -cuE -cvT -cwU -cxT -cyU -cAc -cBo -cCt -cDl -cEm -cFr -cxT -cHq -cIj -cJr -cKq -cHq -cHp -cNv -cOx -cPt -cOx -cRm -cRd -cSS -cTU -cUM -cSS -cSS -cWq -cWL -cXf -cXw -cXO -cSS +aUv +aVW +aXC +aZc +baN +bcg +bdE +bfo +bhe +biW +bkA +bms +bkz +btC +bsR +bur +bwn +bxZ +bzL +bBB +bDb +bEI +bGy +bId +bId +bId +bId +bId +bId +bId +bGA +bTK +aZa +bWn +bXL +bXL +cah +cbS +cdw +czE +cfS +cdw +cis +cjO +clp +cmu +cnG +coS +cqn +crC +csB +ctA +cur +cvx +cwy +cxq +cyd +cyY +cAa +ctA +cCf +cCU +cDY +cEU +cCf +cCe +cHI +cID +cJx +cID +cLj +cLa +cMI +cNH +cOn +cMI +cMI +cPN +cQl +cQI +cZc +cZd +cMI aaa aaa aaa @@ -102579,134 +102997,134 @@ aaf aaf aaf aaa -aaT -aav -aav -aav -aav -aav -abb -abb -abb -abb -abb -aeU -afN -agG -ahw -ait +urv +aax +aax +aax +aax +aax +abe +abe +abe +abe +abe +aeX +afR +agK +ahy +aiu ajn -aky +akx alQ -ani -aox -apN -arl -ani -ani -avh -awk -axi -ayz -azB -aBc -aCs -aDD -aDJ -aGN -aIv +anh +aor +apE +dCg +anh +anh +auU +awa +awZ +ayw +azD +aAY +aCk +aDw +aDC +aGb +aHx aaf -aKN -aMp -aNO -aNO -aQU -aSh -aKN -aKN -aWF -aWF -aZS -bbB -bdp -beN -bgm -bhS -bjC -blx -bnb -boO -bmZ -bsY -bvl -bwM -byM -bAC -bCt -bEk -bFO -bHB -bJv -bLe -bMK -bOC -bQf -bRM -bTv -bUN -bJv -bXk -bby -bZT -cbB -ccV -cee -cfQ -chx -ciF -cjY -clh -cmz -cnZ -cpA -cqE -cqE -cqE -cuF -cqE -cqE -cxT -cyV -cAd -cBp -cCu -cDm -cEn -cFs -cxT -cHr -cIk -cJs -cHs -cHs -cHp -cNw +aJS +aLq +aMH +aMH +aPu +aQA +aJS +aJS +aUx +aUx +aXE +aZd +baO +bch +bdF +bfp +bhf +biX +bkB +bmt +bkz +bsP +bsQ +bus +bwo +byb +bzP +bBC +bDd +bEJ +bGC +bIe +bJI +bLr +bMW +bOt +bQb +bRs +bGC +bTL +aYX +bWj +bXM +bZa +cai +cbT +cdy +ceD +cfT +cgZ +cit +cjQ +clq +cmu +cmu +cmu +cqp +cmu +cmu +ctA +cus +cvy +cwz +cxr cye -cye -cye -cRn -cPx -cTa -cTV -cUN -cTa -cSS -cSS -cSS -cSS -cSS -cSS -cSS +cyZ +cAb +ctA +cCg +cCV +cDZ +cCj +cCj +cCe +cgJ +bTs +bTs +bTs +cLk +cPb +cMR +cNI +cOo +cMR +cMI +cMI +cMI +cMI +cMI +cMI +cMI aaa aaa aaa @@ -102835,135 +103253,135 @@ aaa aaa aaf aaa -aaL -aaL -aaL -abq -abI -acb -acu -abI -adc -adw -acb -acu -aeV -afD -agH -ahx -aiu +aaV +aaV +aaV +abt +abL +acf +acy +abL +adf +adz +acf +hyP +aeY +afG +agL +ahz +aiv ajo -akz -alR -anj -aoy -apO -apO -apO -atZ -avi -awl -axj -ayA -azC -azC -aCt -aDE -aFg -aGO -aIv +aky +akg +ani +aos +apF +apF +apF +atM +auV +awb +axa +ayx +azE +azE +aCl +aDx +aEK +aGc +aHx aaa -aKN -aMq -aNO -aPs -aQV -aQU -aTH -aKN -aWG -aYj -aZT -bbw -bdq -beM -bgn -bhT -bgn -bgn -beM -boP -bmZ -bsZ -bvm -bwN -byN -bmZ -bCu -bCv -bFM -bHC -bJv -bLf -bML -bOD -bQg -bRN -bTw -bUO -bWf -bXh -bYC -bZY -cbC -ccW -cef -cfR -chy -ciG -cjZ -cli -cmA -coa -cpB -cqI -crT -ctg -cuG -cvU -cwV -cxT -cyW -cAe -cBq -cCv -cDn -cEn -cFt -cxT -cHs -cHs -cJr -cHs -cHs -cHp -cNx -cye -cPu -cQu -cRo -cSk -cTb -cTW -cUO -cTe -cTe -cWr -cWM -cXg -cXx -cXP -cXx +aJS +aLr +aMH +aOb +aPv +aPu +aRT +aJS +aUy +aVX +aXF +aYZ +baP +bcg +bdG +bfq +bdG +bdG +bcg +bmu +bkz +bqG +dbe +but +bwp +bkz +bzQ +bzR +bDa +dDa +bGC +bIf +bJJ +bLs +bMX +bOu +bQc +bRt +bSG +bTI +bVb +bWo +bXN +bZb +caj +cbU +cdz +ceE +cfU +cha +ciu +cjR +clr +cmy +ctq +cbu +cqq +crD +csC +ctA +cut +cvz +cwA +cxs +cyf +cyZ +cAc +ctA +cCj +cCj +cDY +cCj +cCj +cCe +cHJ +bTs +cJy +cKv +cLl +diV +cMS +cNJ +cOp +cMV +cMV +cPO +cQm +cQJ +cQY +cRs +kzn aaa aaa aaa @@ -103091,136 +103509,136 @@ aaa aaa aaa aaa -aaD +adG aaM -aaU -aba -abr -abJ -acc -aav -abb -abb -abb -abb -abb -aeW -afO -agI -ahy -aiv +adH +aPa +abu +abM +acg +aax +abe +abe +abe +abe +abe +aeZ +afS +agM +ahA +aiw ajp -akA +akz +ajQ +anj +aot +apG +apG +apG +atN alS -ank -aoz -apP -apP -apP -aua -avj -awm -axk -ayB -azD -aBd -aCu -aDD -aFh -aGP -aIv +awc +axb +ayy +azF +aAZ +aCm +aDw +aEL +aGd +aHx aaa -aKN -aMr -aNO -aPt -aQW -aSi -aTI -aVf -aWH -aYk -aZU -bbC -bdr -beO +aJS +aLs +aMH +aOc +aPw +aQB +aRU +aTi +aUz +aVY +aXG +aZe +baQ +bci aaf aaf aaf -bhY -bhY -boQ -bhY -bta -bta -bwO -bta -bmZ -bCv -bEl -bFP -bHD -bJw -bLg -bMM -bOE -bQh -bQh -bTx -bUP -bWg -bXh -bYD -baf -cbC -ccV -ceg -cfS -chz -ciH -cka -ckf -cmB -ckd -cpC -ckf -ckf -ckf -ckf -ckf -cwW -cxT -cyX -cAf -cBr -cCw -cDo -cEn -cFu -cxT -cHt -cIl -cJt -cIl -cLv -cHp -cNy -cye +bfv +bfv +bmv +bfv +bqH +bqH +buu +bqH +bkz +bzR +bBD +bDe +bEK +bGD +bIg +bJK +bLt +bMY +bMY +bQd +bRu +bSH +bTI +bVc +aXR +bXN +bZa +cak +cbV +cdA +ceF +cfV +cga +civ +cfY +cls +cga +cga +cga +cga +cga +csD +ctA +cuu +cvA +cwB +cxt +cyg +cyZ +cAd +ctA +dbr +tFJ +dDC +tFJ +cFU +cCe +ctK +bTs +cJz +cKw +cLm +cLm +cLm +cNK +cOq +cLm +cLm +cLm +cQn +cQK +cPv +cPv cPv -cQv -cRp -cRp -cRp -cTX -cUP -cRp -cRp -cRp -cWN -cXh -cWc -cWc -cWc aaa aaa aaa @@ -103349,135 +103767,135 @@ aaa aaf aaf aaa -aaL -aaL -aaL -abq -abK -acd -aav -acJ -add -adx -adT -acZ -aeX -afP -agJ -ahz -ahz -ahz -ahz -alT -ahz -ahA -aoB -ahA -aoB -aub -avk -awn -axl -ahv -ahv -ahv +aaV +aaV +aaV +abt +abN +ach +aax +acN +adg +adA +adV +adc +afa +afT +agN +ahB +ahB +ahB +ahB +alR +ahB +adY +apH +adY +apH +atO +auW +awd +axc +ahx +ahx +ahx ajm -aDF -aFi -aGQ -aIv +aDy +aEM +aGe +aHx aaa -aKN -aMs -aNO -aPu -aQV -aNO -aTJ -aKN -aWI -aYl -aZV -bby -bdr -beO +aJS +aLt +aMH +aOd +aPv +aMH +aRV +aJS +aUA +aVZ +aXH +aYX +baQ +bci aaf aaf aaf -bly -bnc -boR -bqG -bqP -bvn -bwP -byO -bAD -bwY -bEm -bFQ -bHE -bJx -bLh -bMN -bOF -bQi -bRO -bTy -bUQ -bJv -bXl -bYE -bZZ -cbD -ccX -ceh -cfT -chA -ciI -ckb -clj -cmC -cob -cpD -cqJ -crU -cth -cuH -ckf -cwX -cxT -cyY -cAg -cBs -cCx -cDp -cEo -cFv -cxT -cHq -cHq -cJu -cHq -cHq -cHp -cNz -cye -cPw -cQw -cRq -cSl -cSl -cTY -cUP -cVz -cRp -cWs -cWO -cXi -cXx -cXh -cXx +biY +bkC +bmw +bop +boy +bsS +buv +bwq +byc +buE +bBE +bDf +bEL +bGE +bIh +bJL +bLu +bMZ +bYq +bQe +bRv +bGC +bTM +bVd +bWp +bXO +bZc +cal +cbW +cdB +ceG +cfW +chb +ciw +cjS +clt +cmz +cnH +coT +cqr +cga +csE +ctA +cuv +cvB +cwC +cxu +cyh +cza +cAe +ctA +cCf +cCf +cEa +cCf +cCf +cCe +diC +bTs +cJA +cKx +cLn +cMd +cMd +cNL +cOq +cOT +cLm +cPP +cQo +cQL +cQY +cQK +kzn aaa aaa aaa @@ -103607,134 +104025,134 @@ aaa aaf aaa aaa -aaT -abb -abb -abb -ace -aav -acK -ade -ady -adU -aen -aeY -afQ -agK -ahz -aiw +urv +abe +abe +abe +aci +aax +acO +adh +adB +adW +aep +afb +afU +agO +ahB +aNA ajq -akB -alU -anl +aix +akA +ank ajx -apQ -arm -asC -ans -avk -awn -axm -ayz -azE -aBc -aCs -aDD -aFj -aGR -aIv +apI +ara +asp +anr +auW +awd +axd +ayw +azG +aAY +aCk +aDw +aEN +aGf +aHx aaf -aKN -aMt -aNO -aNO -aQU -aSj -aKN -aKN -aWF -aWF -aZW -bbu -bdr -beO +aJS +aLu +aMH +aMH +aPu +aQC +aJS +aJS +aUx +aUx +aXI +dCE +baQ +bci aaf -bhU -bjD -bhY -bnd -boS -bqH -btb -bvo -bwQ -byP -bAE -bCw -bEn -bFR -bHF -bJv -bJv -bMO -bJv -bJv -bRP -bRP -bRP -bJv -bXm -bbw -caa -cbE -ccY -cei -cfU -chB -ciJ -ckc -clk -cmD -coc -coc -cqK -crV -cti -cuI -cvV -cwY -cxT -cxT -cxT -cxT -cCy -cDq -cxT -cxT -cxT -cHu -cIm -cJv -cKr -cLw -cHp -cNA -cye -cPx -cQx -cRr -cRp -cRp -cRp -cUQ -cVA -cVY -cWt -cWN -cXh -cWc -cWc -cWc +bfr +bhg +bfv +bkD +bmx +boq +bqI +bsT +buw +bwr +byd +bzS +bBF +bDg +bEM +bGC +bGC +bJM +bGC +bGC +bOw +bOw +bOw +bGC +bTN +aYZ +bWq +bXP +bZd +cam +cbX +cdC +ceH +cfX +chc +cix +cjT +cjT +cmA +cnI +coU +cqs +crE +csF +ctA +ctA +ctA +ctA +cxv +cyi +ctA +ctA +ctA +cCi +cCW +cEb +cEV +cFV +cCe +cHK +bTs +cPb +cKy +cLo +cLm +cLm +cLm +cOr +cOU +dDG +cPQ +cQn +cQK +cPv +cPv +cPv aaa aaa aaa @@ -103867,129 +104285,129 @@ aaa aaa aaf aaa -abb -acf -aav -acL -adf -adz -adV -aej -aeZ -afR -agL -ahz -aix +abe +acj +aax +acR +adi +adC +adX +ael +afd +afV +agP +ahB +aiy +dBZ ajr -akC -alV -anm -aoA -apR -arn -asD -auc -avl -awo -axn -ayC -azF -azC -aCt -aDE -aFk -aGS -aIv +alT +anl +aou +apJ +arb +asq +ava +axR +awe +axe +ayz +dCj +azE +aCl +aDx +dCo +aGg +aHx aaa -aKN -aMu -aNP -aPv -aQX -aSk -aKN +aJS +aLv +aMI +aOe +aPx +aQD +aJS aaa -aWD -aYm -aZQ -bby -bdr -beO +aUv +aWa +aXC +aYX +baQ +bci aaf -bhV -bjE -blz -bne -boT -bqI -bqK -bvp -bwR -bvp -bAF -bwR -bhY -bFS -bHG -bJy +bfs +bhh +biZ +bkE +bmy +bor +bot +bsU +bux +bsU +bye +bux +bfv +bDh +bEN +bGF aaf aaf -bOG -bQj -bRQ -bTz -bUR -bWh -bXf -bby -baf -cbC -ccV -cej -cfV -chC -ciK -ckd -cll -cmE -cod -cpE -cqL -crW -ctj -cuJ -ckf -cwZ -cxU -cyZ -cAh -cBt -cCz -cDr -cEp -cFw -cGo -cHs -cIn -cJw -cKs -cLx -cMz -cNB -cye -cPy -cQy -cRs -cSm -cTc -cTc -cTc -cVB -cTc -cWu -cWN -cXh -cWc +bLv +bNa +bOx +bQf +bRw +bSI +bTG +aYX +aXR +bXN +bZa +can +cbY +dDo +ceI +cfY +chd +ciy +cjU +clu +cmB +cnJ +coV +cqt +cga +cKJ +ctB +cuw +cvC +cwD +cxw +cyj +czb +cAf +cBc +cCj +cCX +cEc +cEW +cFW +cGT +cHL +bTs +cJB +cKz +cLp +cMe +cMT +cMT +cMT +cOV +cMT +cPR +cQn +cQK +cPv aaa aaf aaa @@ -104124,129 +104542,129 @@ aaf aaf aaf aaf -abb -ace -aav -aav -aaK -aav -aav -aav -afa -afS -aav -ahA -aiy -ajs -akD -alU -ann +abe +wiZ +aax +aax +aaL +aax +aax +aax +afc +afW +aax +adY +aiz +ajt +akB +akA +anm ajx -apS -aro -asE -ans -avm -awm -axk -ayB -azD -aBe -aCu -aDD -aFl -aGT -aIv +apK +arc +asr +anr +auY +awc +axb +ayy +azF +aBa +aCm +aDw +aEO +aGh +aHx aaa aaa -aMu -aKN -aPq -aQY -aKN -aKN +aLv +aJS +aNZ +aPy +aJS +aJS aaa -aWE -aYn -aZX -bbD -bdr -beO +aUw +aWb +aXJ +aZf +baQ +bci aaf -bhW -bjF -blA -blC -boU +bft +bhi +bja +bjc +bmz +bos bqJ -btc -bvp -bwS -byQ -blC -bCx -bhY -bFT -bHH -bCv -bEh -bEh -bOH -bQk -bRR -bTA -bUS -bWi -bXf -bby -baf -cbF -ccW -cek -cfW -chD -ciL -cke -clm -cmF -coe -cpF -cqM -crX -ctk -cuK -ckf -cxa -cxV -cza -cAi -cBu -cCA -cDs -cEq -cFx -cxU -cHv -cIo -cJx -cKt -cLy -cHp -cNC -cye -cPz -cQz -cRt -cSn -cTd -cTZ -cUR -cVC -cTd -cWv -cWN -cXj -cWc +bsU +buy +bws +bjc +bzT +bfv +bDi +bEO +bzR +bBz +bBz +bLw +bNb +bOy +bQg +bRx +chw +bTG +aYX +aXR +bXQ +bZb +cao +cbZ +cdD +ceJ +cfZ +che +ciz +cjV +clv +cmC +cnK +coW +cqu +cga +csH +ctC +cux +cvD +cwE +cxx +cyk +czc +cAg +ctB +cCk +cCY +cEd +cEX +cFX +cCe +cxL +bTs +cJC +cKA +cLq +cMf +cMU +cNN +cOs +cOW +cMU +cPS +cQn +cQM +cPv aaa aaf aaa @@ -104382,7 +104800,7 @@ aaa aaf aaa aaa -acg +ack aaa aaa aaf @@ -104392,118 +104810,118 @@ aaf aaf aaf aaf -ahA -ahA -ahA -ahA -alW -ahA -ahA -apT -arp -asF -ahA -avk -awn -axo -ahv -ahv -ahv +adY +adY +adY +adY +alV +adY +adY +apL +dCh +ass +adY +auW +awd +axf +ahx +ahx +ahx ajm -aDG -aFm -aGU -aIw +aDz +aEP +aGi +aHy aaa aaa -aMv +aLw aaa aaa aaa aaa aaf aaa -aWD -aYo -aZY -bbE -bdr -beO +aUv +aWc +aXK +aZg +baQ +bci aaf -bhX -bjG -blB -blC -boV +bfu +bhj +bjb +bjc +bmA +bot bqK -btd -bvp -bwR -byR -btf -btf -bEo -bFU -bHG -bJz -bLi -bMP -bOG -bQl -bRS -bTB -bUT -bWj -bXn -bYF -cab -cbC -ccV -cel +bsU +bux +bwt +bqM +bqM +bLT +bDj +bEN +bGG +bIi +bJN +bLv +bNc +bOz +bQh +bRy +bSK +bTO +bVe +bWr +bXN +bZa +cap +cca +cdE +ceK cfX -chE -ciM -ckc -cln -cmG -cof -cpG -ckf -crY -ctl -crY -ckf -cxb -cxU -czb -cAj -cxU -cCB -cDt -cEr -cFx -cxU -cHp -cHp -cJy -cKu -cHp -cHp -cND -cye -cPA -cQA -cRu -cSo -cTe -cTe -cTe -cVD -cTe -cWw -cWN -cXh -cWc +chf +ciA +cjW +clw +cga +cnL +coX +cnL +cga +cbC +ctB +cuy +cvE +ctB +cxy +cyl +czd +cAg +ctB +cCe +cCe +cEe +cEY +cCe +cCe +cgN +bTs +cJD +cKB +cLr +cMg +cMV +cMV +cMV +cOX +cMV +cPT +cQn +cQK +cPv aaa aaf aaa @@ -104639,130 +105057,130 @@ aaa aaf aaf aaf -acg +ack aaf aaf aaf aaf aaf aaf -adW -adW -adW -adW -adW -ajt -akE -alX -ano -ahA -apU -arq -asG -ahA -avk -awn -axm -ayz -azG -aBc -aCs -aDD -aFl -aGS -aIv -aJF -aIv -aMw -aIv -aIv -aIv -aIv -aIv -aJF -aWJ -aYp -aZZ -bbF -bdr -beO +aeq +aeq +aeq +aeq +aeq +bgB +akC +alU +ann +adY +apM +ard +ast +adY +auW +awd +axd +ayw +azH +aAY +aCk +aDw +aEO +aGg +aHx +aIH +aHx +aLx +aHx +aHx +aHx +aHx +aHx +aIH +aUB +aWd +aXL +aZh +baQ +bci aaf -bhY -bjH -blC -bnf -boW +bfv +bhk +bjc +dCK +bmB +bou bqL -bte -bvq -bwR -byS -btf -bCy -bEp -bFV -bHI -bJA -bJA -bMQ -bOH -bQm -bRT -bTC -bUU -bOH -bXo -bYG -cac -cbG -ccZ -ccW -cfY -chF -ccV -ckf -ckc -ckf -ckc -ckf -ckf -crZ -ctm -ctm -ckf -cxc -cxW -czc -cAk -cxU -cxU -cDu -cEs -cxU -cGp -cHw -cIp -cJz -cKv -cLz -cye -cNE -cya -cPx -cQB -cRu -cRp -cRp -cRp -cRp -cUP -cRp -cWt -cWN -cXh -cWc -cWc -cWc +bsV +bux +bwu +bqM +bzU +bBH +bDk +bEP +bGH +bGH +bJO +bLw +bTZ +dDf +bQi +bRz +bLw +cMQ +bVf +bWs +bXR +bZe +bZb +ccb +cdF +bZa +cga +cfX +cga +cfX +cga +cga +cnM +coY +coY +cga +csI +ctD +cuz +cvF +ctB +ctB +cym +cze +ctB +cBd +cCl +cCZ +cEf +cEZ +cFY +bTs +cHM +ctH +cPb +cKC +cLr +cLm +cLm +cLm +cLm +cOq +cLm +cPQ +cQn +cQK +cPv +cPv +cPv aaa aaa aaa @@ -104902,125 +105320,125 @@ aaa aaf aaa aaf -adW -adW -afT -agM -ahB -aiz -aju -aju -alY -anp -aoB -apV -arr -asH -aud -avn -awp -axj -ayD -azC -azC -aCt -aDE -aFn -aGV -aIx -aJG -aKO -aMx -aNQ -aIx -aIx -aSl -aKO -aJG -aWK -aYq -baa -bbG -bds -beO +aeq +aeq +afZ +agR +ahE +aiA +akD +akD +dCa +ano +apH +apN +are +asu +atQ +auZ +awf +axa +ayA +azE +azE +aCl +aDx +aEQ +aGj +aHz +aII +aJT +aLy +aMJ +aHz +aHz +aQE +aJT +aII +aUC +aWe +aXM +aZi +baR +bci aaf -bhZ -bjI -blB -blC -boX -blC -btf -bvr -bwT -blC -bAG -bCz -bEq -bFV -bHI -bJB -bJA -bMR -bOH -bQn -bRU -bTD -bUV -bWh -bXp -bYH -cad -cbH -cda -cem -cem -chG -cem -ckg -clo -clo -clo -cpH -cqN -csa -ctn -ctn -cvW -cxd -cxX -czd -cAl -cBv -cCC -cDv -cEt -cFy -cGq -clo -clo -cJA -cKw -cLA -cMA -cNF -cOy -cPB -cQC -cRv -cSp -cTf -cSp -cSp -cVE -cVZ -cWx -cWP -cXk -cXx -cXh -cXx -cYr +bfw +bhl +bjb +bjc +bmC +bjc +bqM +bsW +buz +bjc +byf +bzV +bBI +bDk +bEP +bGI +bGH +bJP +bLw +bNe +bOB +bQj +bRA +bSI +bTP +bVg +bWt +bXS +bZf +caq +caq +cdG +caq +cgb +chg +chg +chg +clx +cmD +cnN +coZ +coZ +crF +csJ +ctE +dDv +cuA +cwF +cxz +cyn +czf +cAh +cBe +chg +chg +cEg +cFa +cFZ +cGU +cHN +cIE +cJE +cKD +cLs +cMh +cMW +cMh +cMh +cOY +cPs +cPU +cQp +cQN +cQY +cQK +kzn +cYJ aaa aaa aaa @@ -105158,125 +105576,125 @@ aaa aaa aaf aaa -adW -adW -afb -afU -afU -ahC -aiA +aeq +aeq +aff +afY +afY +ahD +ahP ajv -akF -alZ -anq -aoC -ant -ars -asI -aue -avo -awq -axp -ayB -azD -aBf -aCu -aDD -aFj -aGW -aIy -aJH -aKP -aGW -aNR -aIy -aQZ -aKP -aTK -aVg -aWL -aYr -bab -bbH -bdt -beO +akE +alW +anp +aow +ans +arf +asv +atR +azb +azq +axg +ayy +azF +aBb +aCm +aDw +aEN +aGk +aHA +aIJ +aJU +aGk +dCr +aHA +aPz +aJU +aRW +aTj +aUD +aWf +aXN +djB +baS +bci aaf -bhV -bjJ -blD -bng -boY -bqM -btg -bvs -bwU -bnf -bAH -bCA -bEr -bFW -bHJ -bJC -bLj -bMS -bOI -bQo -bRS -bTE -bUW -bWh -bXp -bYI -cae -aYr -cdb -cen -cen -chH -ciN -ciN -ciN -ciN -ciN -ciN -ciN -csb -ciN -ciN -cvX -cxe -cxY -cen -cen -cen -cCD -cen -cEu -cFz -cxY -cen -cen -cEu -cKx -cen -cen -cNG -cOz -cPC -cQD -cRw -cSq -cTg -cUa -cUS -cVF -cWa -cRp -cWN -cXl -cWc -cWc -cWc +bfs +bhm +bjd +bkF +bmD +bov +bqN +bsX +buA +dCK +byg +bzW +bBJ +bDl +bEQ +bGJ +bIj +bJQ +bLx +bNf +bOz +bQk +bRB +bSI +bTP +bVh +bWu +aWf +bZg +car +car +cdH +ceL +ceL +ceL +ceL +ceL +ceL +ceL +cnO +ceL +ceL +crG +csK +ctF +car +car +car +cxA +car +czg +cAi +ctF +car +car +czg +cFb +car +car +cHO +cIF +cJF +cKE +cLt +cMi +cMX +cNO +cOt +cOZ +cPt +cLm +cQn +cQO +cPv +cPv +cPv aaa aaa aaa @@ -105415,125 +105833,125 @@ aaa aaa aaf aaa -adW -aeo -afc -afV -agN -ahD -aiB +aeq +aes +afh +agb +agT +ahG +aiC ajw -akG -ama +akF +alZ +anq +aoA +aoy +arg +asw anr -aoD -apW -art -asJ -ans -avk -awr -axq -ahv -ahv -ahv +auW +awg +axh +ahx +ahx +ahx ajm -aDH -aFo -aGX -aIz -aJI -aKQ -aJI -aIz -aIz -aRa -aKQ -aIz -aIz -aWM -aYs -bac -bbI -bdu -beO +aDA +aER +aGl +aHB +aIK +aJV +aIK +aHB +aHB +aPA +aJV +aHB +aHB +aUE +aWg +aXO +aZk +baT +bci aaf -bhX -bjK -blB -blC -boW -bqN -btf -bvt -bwV -bwY -bAI -bCB -bEs -bFX -bHK -bJD -bJA -bMQ -bOH -bQp -bRV -bTF -bUX -bWh -bXq -bYJ -caf -cbI -cdc -ceo -ceo -chI -ceo -ckh -clp -clp -clp -cpI -cqO -csc -cto -cto -cvY -cxf -cxZ -ckh -cAm -clp -cCE -cDw -cEv -cFA -cxZ -cHx -cto -cJB -cKy -clp -clp -cAm -cOA -cPD -cQE -cRx -cSr -cTh -cTc -cUT -cVG -cWb -cWy -cWQ -cXm -cXx -cXQ -cXx +bfu +bhn +bjb +bjc +bmB +bow +bqM +bsY +buB +buE +byh +bzX +bBK +bDm +bER +bGK +bGH +bJO +bLw +bNg +bOC +bQl +bRC +bSI +bTQ +bVi +bWv +bXT +bZh +cas +cas +cdI +cas +cgc +chh +chh +chh +cly +cmE +cnP +cpa +cpa +crH +csL +ctG +cgc +cvG +chh +cxB +cyo +czh +cAj +ctG +cCm +cpa +cEh +cFc +chh +chh +cvG +cIG +cJG +cKF +cLu +cMj +cMY +cMT +cOu +cPa +cPu +cPV +cQq +cQP +cQY +cRt +kzn aaa aaa aaa @@ -105671,126 +106089,126 @@ aaa aaa aaa aaf -adA -adW -aep -afd -afW -agO -ahE -adW +adD +aeq +aer +afg +aga +agS +ahF +aeq ajx -akH -amb -ans -ahA -ahA -aru -ans -ahA -avp -aws -axr -ayE -azH -aBg -aCv -aDI -aFp -aGY -aIA -aIB -aKR -aIB -aIB -aIB -aIB -aSm -aTL -aVh -aWN -aYt -bad -bbJ -bdu -beO +akG +ama +anr +adY +adY +dhv +anr +adY +avb +awh +axi +ayB +azI +aBc +aCn +aDB +aES +aGm +aHC +aHD +aJW +aHD +aHD +aHD +aHD +aQF +aRX +aTk +aUF +aWh +aXP +aZl +baT +bci aaf -bhY -bjL -blC -blC -boW +bfv +bho +bjc +bjc +bmB +box bqO -bth -bvu -bvp -byT -bAJ -bCC -bEt -bFV -bHI -bJA -bJA -bMR -bOH -bQm -bRW -bTA -bUY -bOH -bXp -bYK -cag -cbJ -cdd -cdf -cfZ -cfZ -cde -cki -ckj -cki -ckj -cki -cki -csd -ctp -cuL -cki -cxg -cya -cye -cAn -cAn -cCF -cDx -cAn -cFB -cGr -cAn -cuL -cJC -cHB -cHB -cHB -cHB -cOB -cHB -cHB -cRy -cPx -cTi -cUb -cUU -cPx -cWc -cPx -cWc -cPx -cWc -cWc -cWc +bsZ +bsU +bwv +byi +bzY +bBL +bDk +bEP +bGH +bGH +bJP +bLw +bTZ +dDg +bQg +bRD +bLw +bTP +bVj +bWw +bXU +bZi +bZk +ccc +ccc +bZj +cgd +cge +cgd +cge +cgd +cgd +cnQ +cpb +cqv +cgd +csM +ctH +bTs +cvH +cvH +cxC +cyp +cvH +cAk +cBf +cvH +cqv +cEi +cCq +cCq +cCq +cCq +cIH +cCq +cCq +cLv +cPb +cMZ +cNP +cOv +cPb +cPv +cPb +cPv +cPb +cPv +cPv +cPv aaa aaa aaa @@ -105929,118 +106347,118 @@ aaa aaa aaf aaa -adW aeq -afd -afX -agP -ahF -adW +aex +afg +agd +agU +ahH +aeq ajy -akI -amc -ant -aoE -apX +akH +amb +ans +amf +dCf ajz ajz -auf -avk -awt -axs -aip -azI -aBh -aCw -aDJ -aFq -aGZ -aIB -aJJ -aKS -aMy -aNS -aPw -aRb -aSn -aTM -aVi -aIB -aYu -bae -bbK -bdu -beO +atS +auW +awi +axj +aiq +azJ +aBd +aCo +aDC +aET +aGn +aHD +aIL +aJX +aLz +aMK +aOf +aPB +aQG +aRY +aTl +aHD +aWi +aXQ +aZm +baT +bci aaf -bhZ -bjM -blB -bnf -boZ +bfw +bhp +bjb +dCK +bmE +boy bqP -bti -bvp -bvp -byU -bAK -btf -bEo -bFY -bHL -bJE -bLk -bMT -bOG -bQq -bRX -bTG -bUZ -bWk -bXr -bYL -cah -cbK -cde -cep -cga -cga -ciO -cki -clq -cmH -cog -cpJ -cki -cse -ctq -cuM -cki -cxh -cyb -cze -cAo -cBw -cCG -cDy -cEw -cFC -cGs -cHy -cIq -cJD -cHB -cLB -cMB -cNH -cOC -cPE -cHB -cRz -cPx -cTj -cUc -cUV -cPx +bsU +bsU +bww +byj +bqM +bLT +bDn +bES +bGL +bIk +bJR +bLv +bNi +bOD +bQm +bRE +bSM +bTR +bVk +bWx +bXV +bZj +cat +ccd +ccd +ceN +cgd +chi +ciB +cjX +clz +cgd +cnR +cpc +cqw +cgd +csN +cLD +cuB +cvI +cwG +cxD +cyq +czi +cAl +cBg +cCn +cDa +cEj +cCq +cGa +cGV +cHP +cII +cJH +cCq +cLw +cPb +cNa +cNQ +cOw +cPb aaf aaa aaa @@ -106170,7 +106588,7 @@ aaa aaa aaa aaa -aar +aav aaa aaa aaa @@ -106178,7 +106596,7 @@ aaa aaa aaa aaa -aar +aav aaa aaa aaa @@ -106186,118 +106604,118 @@ aaa aaa aaf aaa -adW -adW -afe -afY -agQ -afY -aiC +aeq +aeq +afX +agc +dBX +agc +ajs ajz -akJ -amd -anu -aoF -apY -arv -asK -aug -avq -awu -axt -ayF -azJ -aBi -aCx -aDK -aFr -aHa -aIB -aJK -aJP -aJP -aNT -aPx -aRb -aSo -aSo -aJR -aIB -aYv -baf -bby -bdu -beO +akI +amc +ant +ame +apO +ari +asx +aiB +avc +awj +axk +ayC +azK +aBe +aCp +aDD +aEU +aGo +aHD +aIM +aIR +aIR +aML +aOg +aPB +aQH +aQH +aIT +aHD +aWj +aXR +aYX +baT +bci aaf -bhW -bjN -blE -blC -boU -bqJ -btj -bvp -bwW -byV -bAL -bCD -bhY -bFZ -bHM -bCv -bLl -bLl -bOH -bQr -bRY -bTH -bVa -bWi -bXs -bby -baf -cbL -cdf -ceq -cgb -cga -ciP -cki -clr -cmI -coh -cpK -cqP -csf -ctr -cuN -cki -cxi -cyc -czf -cAn -cBx -cCH -cDz -cBx -cFD -cGs -cHz -cIr -cJE -cKz -cLC -cLC -cNI -cOD -cPF -cHB -cRA -cPx -cTk -cRp -cUW -cVH +bft +bhq +bje +bjc +bmz +bos +bqQ +bsU +buC +bwx +byk +bzZ +bfv +bDo +bET +bzR +bIl +bIl +bLw +bNj +bOE +bQn +bRF +chw +bTS +aYX +aXR +bXW +bZk +cau +cce +ccd +qBh +cgd +chj +ciC +cjY +clA +cmF +cnS +cpd +cqx +cgd +cLh +ctJ +cuC +cvH +cwH +cxE +cyr +cwH +cAm +cBg +cCo +cDb +cEk +cFd +cGb +cGb +cHQ +cIJ +cYc +cCq +cLx +cPb +cNb +cLm +cOx +cPc aaf aaf aaf @@ -106415,7 +106833,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -106444,117 +106862,117 @@ aaa aaf aaa aaf -adW -adW -afZ -agR -ahG -adW +aeq +aeq +agQ +ahC +ahI +aeq ajA -akK -amd -anv -aoG -apZ -arw -asL -ahz -avr -awv -axu -ahv -ahv -ahv +akJ +amc +anu +aoz +apQ +arj +asz +ahB +avd +awk +axl +ahx +ahx +ahx ajm -aDL -aFs -aHb -aIC -aJL -aKT -aMz -aNU -aPy -aRb -aSo -aSo -aVj -aIB -aYw -bag -bby -bdu -beO +aDE +aEV +aGp +aHE +aIN +aJY +aLA +aMM +aOh +aPB +aQH +aQH +aTm +aHD +aWk +aXS +aYX +baT +bci aaf -bhW -bjO -blF -bnh -bpa -bqQ -btk -bvp -bvp -bvp -bAM -bvp -bhY -bGa -bHN -bJy +bft +bhr +bjf +bkG +bmF +boz +bqR +bsU +bsU +bsU +byl +bsU +bfv +bDp +bEU +bGF aaf aaf -bOG -bQs -bRZ -bTI -bVb -bWh -bXs -bby -baf -cbK -cde -cer -cgc -chJ -ciQ -cki -cls -cmJ -coi -cpL -cqQ -csg -cts -cuO -cki -cxj -cyd -czg +bLv +bNk +bOF +dip +bRG +bSI +bTS +aYX +aXR +bXV +bZj +cav +ccf +dDp +ceO +cgd +chk +ciD +cjZ +clB +cmG +cnT +cpe +cqy +cgd +csO +diL +cuD +cvH +cwI +cxF +dDz +czj cAn -cBy -cCI -cDA -cEx -cFE -cGt -cHA -cIs -cJF -cKA -cLD -cKC -cNJ -cOE -cPG -cHB -cRB -cPx -cTl -cUd -cUX -cVI +cBh +cCp +cDc +cEl +cFe +cGc +cFg +cHR +cIK +cJJ +cCq +cgM +cPb +cNc +cNR +cOy +cPd aaa aaa aaf @@ -106702,116 +107120,116 @@ aaf aaf aaf aaf -adW -adW -adW -adW -adW -ahA -akL -ame -ahz -aoD -ahz -arx -asM -ahz -avs -aww -axv -aip -azK -aBj +aeq +aeq +aeq +aeq +aeq +adY +akK +alX +ahB +aoA +ahB +ark +asA +ahB +ave +awl +axm +aiq +azL +aBf ajm -aDM -aFt -aHc -aIC -aJM -aKU -aJP -aJP -aPz -aRb -aSo -aSo -aVk -aIB -aIB -bag -bby -bdu -beO +aDF +aEW +aGq +aHE +aIO +aJZ +aIR +aIR +aOi +aPB +aQH +aQH +aTn +aHD +aHD +aXS +aYX +baT +bci aaf -bia -bjP -bhY -bni -bpb -bqR -btl -bvv -bwX -byW -bAN -bCE -bEu -bGb -bHO -bJF -bJF -bMU -bJF -bQt -bQt -bQt -bQt -bJF -bXt -bby -cai -cbM -cdg -ces +bfx +bhs +bfv +bkH +bmG +boA +bqS +bta +buD +bwy +bym +bAa +bBM +bDq +bEV +bGM +bGM +bJS +bGM +bNl +bNl +bNl +bNl +bGM +bTT +aYX +bWy +bXX +bZl +caw +ccg +cdJ +ceQ +cge +chk +ciE +cka +clC +cmH +cnU +cpf +cqz cgd -chK -ciR -ckj -cls -cmK -coj -cpM -cqR -csh -ctt -cuP -cki -cxk -cye -czh -cAn -cBz -cCJ -cDB -cEy -cFF -cGu -cHy -cIt -cJG -cKB -cKC -cKD -cNJ -cOF -cPH -cHB -cRB -cPx -cTm -cUe -cUY -cPx +csP +bTs +cuE +cvH +cwJ +cxG +cys +czk +cAo +cBi +cCn +cDd +cEm +cFf +cFg +cFh +cHR +cIL +cJK +cCq +cgM +cPb +cNd +cNS +cOz +cPb aaa aaa aaa @@ -106965,110 +107383,110 @@ aaf aaf aiD ajB -akM -amf -anw -aoH -aqa -ary -asN +akL +amd +anv +aoB +apR +arl +asy ajD -avt -awn -axw -ayG -azL -aBk -aCy -aDN -aFu -aHd -aIC -aJN -aKV -aMA -aNV -aPA -aRc -aJR -aTN -aJR -aWO -aIB -bag -bby -bdu -beO +avf +awd +axn +ayD +azM +aBg +dBH +aDG +aEX +aGr +aHE +aIP +aKa +aLB +aMN +aOj +aPC +aIT +aRZ +aIT +aUG +aHD +aXS +aYX +baT +bci aaf aaf aaf -bly -bnj -bpc -bqS -btm -bvw -bwY -byX -bAO -bCF -bEm -bGc -bHP -bJG -bLm -bMV -bOJ -bQu -bSa -bTJ -bVc -bJF -bXu -bYM -caj -cbN -cdh -cet -cge -chL -ciS -ckk -clt -cmL -cok -cpN -cqS -csi -ctu -cuQ -cvZ -cxl -cyf -cyf -cyf -cyf -cyf -cyf -cyf -cyf -cyf -cHB -cIu -cJG -cKC -cKC -cMC -cNJ -cOG -cPI -cQF -cRC -cPx -cPx -cPx -cPx -cPx +biY +bkI +bmH +boB +bqT +btb +buE +bwz +byn +bAb +bBE +bDr +bEW +bGN +bIm +bJT +bLy +bNm +bOG +bQp +bRH +bGM +bTU +bVl +bWz +bXY +bZm +cax +cch +cdK +uRM +cgf +rzX +ciF +ckb +clD +cmI +cnV +cpg +cqA +crI +csQ +ctL +ctL +ctL +ctL +ctL +ctL +ctL +ctL +ctL +cCq +cDe +cEm +cFg +cFg +dDE +cHR +cIM +cJL +cKG +cLy +cPb +cPb +cPb +cPb +cPb aaa aaa aaa @@ -107215,119 +107633,119 @@ aaa aaf aaf aaf -adX -adX -aga -agS -adX -adX +adZ +adZ +age +agV +adZ +adZ ajC -akN -amg -anx -anx -aqb -arz -asO -auh -avm -awx -axx -ayH -azM -aBl -aCz -aDO -aFv -aHe -aIC -aJO -aKW -aMB -aJP -aPz -aRb -aSo -aSo -aVl -aWP -aVh -bah -bbL -bdu -beO +akM +alY +cZR +cZR +rQK +arm +asC +atT +auY +awm +axo +ayE +azN +aBh +aCq +aDH +aEY +aGs +aHE +aIQ +aKb +dCq +aIR +aOi +aPB +aQH +aQH +dCz +aUH +aTk +aXT +aZn +baT +bci aaf aaf aaf -bhY -bhY -bhY -bqT -btn -bhY -beP -beP -bAP -beP -bEv -bGd -bHQ -bJH -bLn -bMW -bOK -bOK -bOK -bTK -bVd -bJF -bXv -bYN -cak -cbK -cde -ceu -cgf -chM -ciT -ckl -clu -cmM -col -cpO -cqT -csj -ctv -cuR -cwa -cxm -cyf -czi +bfv +bfv +bfv +boC +bqU +bfv +bcj +bcj +byo +bcj +bBN +bDs +bEX +bGO +bIn +bJU +bLz +bLz +bLz +bQq +bRI +bGM +bTV +bVm +bWA +bXV +bZj +cay +cci +cdL +ceR +izu +chm +ciG +ckc +clE +cmJ +cnW +cph +cqB +cJm +csR +ctL +cuF +cvJ +cwK +cxH +cyt +czl cAp -cBA -cCK -cDC -cEz -cFG -cGv -cHB -cIv -cJG -cKD -cLE -cMD -cNK -cOH -cPJ -cHB -cRB -cSs -cTn -cUf -cUZ -cUf -acg -acg +cBj +cCq +cDf +cEm +cFh +cGd +cGW +cHS +cIN +cJM +cCq +cgM +gNe +cwc +cNe +cNT +pSX +ack +ack aaf aaf aaa @@ -107471,118 +107889,118 @@ aaa aaf aaf aaa -adX -adX -aff -agb -agT -ahH -adX +adZ +adZ +afi +agf +agW +ahJ +adZ ajD -akO -amh -any -aoI -aqc -arA -asP -aui -avu -awy -axy -ayI -azN -aBm +akN +amg +anw +aoC +apS +arn +asD +atU +avg +awn +axp +dBF +azO +aBi ajm ajm ajm ajm -aIC -aJP -aKX -aMC -aNW +aHE +aIR +aKc +aLC +aMO +aOk aPB -aRb -aSo -aSo -aVm -aWQ -aYx -bai -bbM -bdv -beP -beP -beP -beP -beP -bnk -beP -beP -beP -beP -bwZ -byY -bid -bCG -beP -bFU -bHR -bJI -bLo -bMX -bOL -bQv -bSb -bTL -bVe -bJF -bXw -bbu -cak -cbK -cdf -cev -cgf -chN -ciU -ckm -cki -cki -com -cki -cki -csk -ctw -csk -cki -cxn -cyg -czj +aQH +aQH +aTo +aUI +aWl +aXU +aZo +baU +bcj +bcj +bcj +bcj +bcj +bkJ +bcj +bcj +bcj +bcj +buF +bwA +bfA +bAc +bcj +bDj +bEY +bGP +bIo +bJV +bLA +bNn +bOH +bQr +bRJ +bGM +bTW +dCE +bWA +bXV +bZk +caz +cci +cdM +ceS +cgg +cgd +cgd +ckd +cgd +cgd +cnX +cIm +cnX +cgd +csS +ctM +cuG +cvK +cuG +cxH +cyu +czm cAq -czj -cCK -cDD -cEA -cFH -cGw -cHB -cIw -cJH -cKE -cLF -cME -cNL -cKD -cKD -cQG -cRD -cSt -cTo -cye -cye -cye +cBk +cCq +cDg +cEn +cFi +cGe +cGX +cHT +cFh +cFh +cKH +cLz +wFH +cMk +bTs +bTs +bTs aaa aaa aaa @@ -107728,116 +108146,116 @@ aaa aaa aaf aaa -adX -aer -afg -agc -agU -ahI +adZ +aet +afj +agg +agX +ahK aiE ajE -akP -ami -anz -aoJ -aqd -arB -asQ -auj -avv -awz -axz -ayJ -azO -aBn -aCA -avy -avy -avy -aIB -aJQ -aKY -aJP -aNX -aPC -aRd -aSp -aSp -aVn -aJR -aVh -bag -bbu -bdw -beP -bgo -bib -bjQ -blG -bnl -blG -bqU -bto -bvx -bxa -byZ -bAQ -bCH -bAP -bFU -bHS -bJF -bLp -bMY -bOM -bQw -bSc -bTM -bVf -bJF -bXx -bby -cal -cbO -cde -cew -cgg -chO -ciV -ckn -clv -cmN -con -cpP -cqU -csl -ctx -cuS -cku -cxo -cyf -czk -czj -cBB -cCL -cDD -cEB -cFI -cGx -cHB -cIx -cJI -cKF -cLG -cMF -cNM -cOI -cPK -cHB -cND -cSu -cTp -cye +akO +dCb +amh +aoD +apT +aro +asE +atV +avh +awo +axq +dBG +azP +aBj +aCr +avk +avk +avk +aHD +aIS +aKd +aIR +aMP +aOl +aPD +aSa +aSa +aTp +aIT +aTk +aXS +dCE +baV +bcj +bdH +bfy +bht +bjg +bkK +bjg +boD +bqV +btc +buG +bwB +byp +bAd +byo +bDj +bEZ +bGM +bIp +bJW +bLB +bNo +bOI +bQs +bRK +bGM +bTX +aYX +bWB +bXZ +bZj +caA +ccj +cdN +ceT +cgh +cAM +ciH +cke +clF +dbH +cnY +cpj +cqC +cgo +cLB +ctL +cuH +cuG +cwL +cxI +cyu +czn +cAr +cBl +cCq +cQD +cEo +cFj +cGf +cGY +cHU +cIO +cJN +cCq +cgN +cMl +wOE +bTs aaf aaf aaf @@ -107985,116 +108403,116 @@ aaa aaa aaf aaa -adY -aes -afh -agd -agV -ahJ +aea +aeu +afk +agh +agY +ahL aiF ajF -akQ -amj -anA +akP ami -aqe -arC -asR -auh -avk -awA -axA -ayK -ayK -ayK -ayK -ayO -ayO -aHf -aID -aJR -aKZ -aJP -aJP -aPD -aRb -aSq -aJR -aJR -aWR -aIB -bag -bby -bdx -beQ -bgp -bic -bjR -blG -bnm -blG -bqV -btp -bvy -bxb -bza -bAR -bid -beP -bGe -bHT -bJF -bJF -bMZ -bON -bJF -bSd -bTN -bON -bJF -bXy -bbx -cam -bWp -cdi -cex -cgg -chP -ciW -cko -clw -cmO -coo -cpQ -cqV -csm -cty -cuT -cku -cxp -cyf -cyf -cAr -cyf -cyf -cyf -cAr -cFJ -cGy -cHB -cIy -cIy -cIy -cIy -cMG -cNN -cOJ -cHB -cHB -cRE -cye -cye -cye +anx +dCb +apU +arp +asF +atT +auW +awp +axr +ayF +ayF +ayF +ayF +ayJ +ayJ +aGt +aHF +aIT +aKe +aIR +aIR +aOm +aPB +aQJ +aIT +aIT +aUJ +aHD +aXS +aYX +baW +bck +bdI +bfz +bhu +bjg +bkL +bjg +boE +bqW +btd +buH +bwC +byq +bfA +bcj +bDu +bFa +bGM +bGM +bJX +bLC +bGM +bOJ +bQt +bLC +bGM +bTY +aZa +bWC +bSS +bZn +caB +ccj +cdO +ceU +cgi +cDh +ciI +ckf +clG +dbI +cnZ +cpk +cqD +cgo +csU +ctL +ctL +cvL +ctL +ctL +ctL +cvL +cAs +cBm +cCq +cDi +cDi +cDi +cDi +cGZ +cHV +cIP +cCq +cCq +cLA +bTs +bTs +bTs aaf aaa aaa @@ -108225,7 +108643,7 @@ aaa aaa aaa aaa -aar +aav aaa aaa aaa @@ -108242,122 +108660,122 @@ aaa aaa aaf aaf -adZ -aet -afi -age -agW -ahK +aeb +aev +afl +agi +agZ +ahM aiG ajG -akR -amk -anB -aoK -aqf -arD -asS +akQ +amj +any +aoE +apV +arq +asG ajD -avk -awA -axB -ayK -azP -aBo -aCB -aDP -ayO -ayO -aIB -aIB -aIB -aIB -aNY -aIB -aIB -aIB -aTL -aVh -aIB -aIB -baj -bbx -bdy -beP -bgq -bid -bjS -blG -bnn -blG -bqW -btq -bvz -bxc -bzb -bAS -bCI -beP -bFU -bHU -bJJ -bJF -bNa -bOO -bQx -bSe -bTO -bVg -bWl -bXh -bby -cal -aYg -cdj -cdj -cgh -chQ -cdj -cdj -clx -cmP -cop -cpR -cdi -csn -ctz -cuU -cwb -cxq -cyh -czl -cAs -cBC -ces -cDE -cEC -cFK -cGz -cHC -cIz -ces -cKG -cLH -cMH -cNO -cOK -cPL -cQH -cRF -cSv -cTq -cUg -cUi -cUi -cUi -cUi -cUi -cUi +auW +awp +axs +ayF +azQ +aBk +aCs +aDI +ayJ +ayJ +aHD +aHD +aHD +aHD +aMQ +aHD +aHD +aHD +aRX +aTk +aHD +aHD +aXV +aZa +baX +bcj +bdJ +bfA +bhv +bjg +bkM +bjg +boF +bqX +bte +dCP +bwD +byr +bAe +bcj +bDj +bFb +bGQ +bGM +bJY +bLD +bNp +bOK +bQu +bRL +bSO +bTI +aYX +bWB +aVU +bZo +bZo +cck +cdP +bZo +bZo +chp +ciJ +ckg +clH +bZn +coa +cpl +cqE +crK +csV +ctN +cuI +cvM +cwM +caw +cyv +czo +cAt +cBn +cCr +cDj +caw +cFk +cGg +cHa +cHW +cIQ +cJO +cKI +cQr +cQR +cRa +cSd +cRe +cRe +cRe +cRe +cRe +cRe aaa aaa aaa @@ -108490,7 +108908,7 @@ aaa aaa aaa aaa -aar +aav aaa aaa aaa @@ -108499,122 +108917,122 @@ aaa aaa aaf aaa -aea -aeu -afj -agf -agX -ahL +aec +aew +afm +agj +aha +ahN aiH ajH -akS -aml -anC -aoL -aqg -arC -asT -auk -avk -awB -axz -ayL -azQ -aBp -aCC -aDQ -aFw -aHg -aIE -aJS -aLa -aMD -aNZ -aPE -aIE -aSr -aML -aVo -aML -aTR -bag -bbN -bdu -beP -bgr -bie -bjT -blH -bno -bpd -bqX -btr -bvA -bxd -bzc -bAT -bCJ -beP -bGf -bHV -bJK -bJF -bNb -bOP -bQy -bSf -bTP -bVg -bWl -bXh -bby -cal -aYi -cdj -cey -cgi -chR -ciX -ckp -cly -cmQ -coq -cpS -cdi -cso -ctA -cuV -cwc -cxr -cyi -czm -cAt -cBD -cCM -cDF -cED -cFL -cGA -cwc -cCM -cBD -cKH -cLI -cMI -cNP -cOL -cPM -cQI -cRG -cSw -cTr -cUh -cVa -cVJ -cVa -cVa -cWR -cUi +akR +amk +bnh +aoF +apW +arp +asH +atW +auW +awq +axq +ayG +azR +aBl +aCt +aDJ +aEZ +aGu +aHG +aIU +aKf +aLD +aMR +aOn +aHG +aQK +aLK +dCA +aLK +aSe +aXS +aZp +baT +bcj +bdK +bfB +bhw +bjh +bkN +bmI +boG +bqY +btf +buI +bwE +bys +bAf +bcj +bDv +bFc +bGR +bGM +bJZ +bLE +bNq +bOL +bQv +bRL +bSO +bTI +aYX +bWB +aVW +bZo +caC +ccl +cdQ +ceV +cgj +chq +ciK +ckh +clI +bZn +cob +cpm +cqF +crL +csW +ctO +cuJ +cvN +dDy +cwN +cyw +czp +cAu +cBo +crL +cwN +dDy +cFl +cGh +cHb +cHX +cIR +cJP +cPX +cQt +cQZ +cRc +cRf +cYT +cRg +cYT +cYT +djg +cRe aaa aaa aaa @@ -108756,122 +109174,122 @@ aaa aaf aaf aaa -adX -aev -afk -agg -agU -ahM +adZ +afe +afn +agk +agX +ahO aiI ajI -akT -amm -anD -aoM -aqh -arE -asU -aul -avm -awC -axC -ayM -azR -aBq -aCD -aDR -aFx -aHh -aIE -aJT -aLb -aME -aOa -aPF -aRe -aSs -aTO -aVp -aWS -aYy -bak -bbO -bdz -beP -bgs -bid -bjU -blI -bnp -blG -bqY -bts -bvB -bxe -bzd -bAU -bCK -beQ -bGg -bHW -bJL -bJF -bNc -bOQ -bQz -bSg -bTQ -bVh -bWl -bXh -bby -cal -aYi -cdj -cez -cgj -chS -ciY -ckq -clx -cku -cku -cku -cku -csp -ctB -cuW -cwd -cxs -cyj -czn -cAu -cBE -cCN -cDG -cEE -cFM -cGB -cHD -cyj -cJJ -cKI -cLJ -cMJ -cNQ -cOM -cPN -cku -cRH -cSx -cTs -cUi -cUi -cUi -cUi -cUi -cWS -cUi +akS +aml +anA +aoG +bni +arr +asI +atX +auY +awr +axt +ayH +azS +aBm +aCu +aDK +aFa +aGv +aHG +aIV +aKg +aLE +aMS +aOo +aPE +aQL +aSb +aTq +aUK +aWm +aXW +aZq +baY +bcj +bdL +bfA +bhx +bji +bkO +bjg +boH +bqZ +btg +buJ +bwF +byt +bAg +bck +bDw +bFd +bGS +bGM +bKa +bLF +bNr +bOM +bQw +bRM +bSO +bTI +aYX +bWB +aVW +bZo +caD +ccm +cdR +ceW +cgk +chp +cgo +cgo +cgo +cgo +coc +cpn +cqG +crM +csX +ctP +cuK +cvO +cwO +cxJ +cyx +czq +cAv +cBp +cCs +ctP +cEp +cFm +cGi +cHc +cHY +cIS +cJQ +cgo +cQs +cQS +cRb +cRe +cRe +cRe +cRe +cRe +cZa +cRe aaa aaa aaa @@ -109013,122 +109431,122 @@ aaa aaa aaf aaa -adX -adX -afl -agh -agY -ahN -adX +adZ +adZ +afo +agl +ahb +auX +adZ ajD -akU -amn -anE -aoN -aqi -arC -asV +akT +amm +anB +aoH +apY +arp +asJ ajD -avk -awD -axD -ayN -azS -aBr -aCE -aDS -ayO -ayO -aIE -aJU -aLc -aLc -aOb -aPG -aRf -aSt -aTP -aVq -aPO -aYz -bal -bby -bdv -beP -bgt -bif -bjV -blJ -bnp -blG -blG -beP -beP -beP -bze -beP -beP -beP -bFU -bHP -bJF -bJF -bJF -bJF -bJF -bJF -bTR -bJF -bJG -bXi -bby -can -cbP -cdj -ceA -cgk -chT -ciZ -ckr -cdj -cmR -cor -cpT -cqW -cga -ctC -cuX -cwe -cxt -cxt -czo -cAv -cwh -cwh -cDH -cEF -cFN -cGC -cDH -cDT -cDT -cHV -cDT -cMK -cNR -cON -cON -cNY -cRI -cky -cky +auW +aws +axu +ayI +azT +aBn +aCv +aDL +ayJ +ayJ +aHG +aIW +aKh +aKh +aMT +aOp +aPF +aQM +aSc +aTr +aOx +aWn +aXX +aYX +baU +bcj +bdM +bfC +bhy +bjj +bkO +bjg +bjg +bcj +bcj +bcj +bwG +bcj +bcj +bcj +bDj +bEW +bGM +bGM +bGM +bGM +bGM +bGM +bQx +bGM +bGN +bTJ +aYX +bWD +bYa +bZo +caE +ccn +cdS +ceX +cgl +bZo +dwv +cki +clJ +cmL +ccd +cpo +cqH +crN +csY +csY +cuL +cvP +crQ +crQ +cyy +czr +cAw +cBq +cyy +cyK +cyK +cAP +cyK +cHd +cHZ +cIT +cIT +cIg +dAw +dvY +dvY aaa aaf aaa aaa -cUi -cWS -cUi +cRe +cZa +cRe aaa aaa aaa @@ -109271,121 +109689,121 @@ aaa aaf aaa aaa -adX -adX -agi -agS -adX -adX +adZ +adZ +agm +agV +adZ +adZ ajJ -akV -amo -anF -anF -anF -arF -asW -aum -avw -awE -axE -ayK -azT -aBs -aCF -aDT -aFy -aHi -aIE -aJV -aLd -aMF -aOc -aPH -aRg -aSu -aTQ -aVr -aWT -aTR -bag -bby -bdu -beP -bgu -big -bjW -blK -bnq -blG -bqZ -beP -bvC -bxf -bzf -bAV -bCL -bEw -bGh -bHX -bJM -bLq -bNd -bOR -bQA -bSh -bTS -bVi -bWm -bXz -bYO -cao -bWp -cdj -cdj -cdj -cdj -cdj -cdj -cdj -cmS -cos -cpU -cku -csq -ctD -cuY -cwf -cxu -cyk -czp -cAw -cBF -cwh -cDI -cEG -cFO -cGD -cHE -cDT -cJK -cJK -cJK -cML -cNS -cOO -cPO -cNY -cRJ -cmR -cky +akU +amn +dap +dap +dap +ars +asK +atY +avi +awt +axv +ayF +azU +aBo +aCw +aDM +aFb +aGw +aHG +aIX +aKi +aLF +aMU +aOq +aPG +aQN +aSd +aTs +aUL +aSe +aXS +aYX +baT +bcj +bdN +bfD +bhz +bjk +bkP +bjg +boI +bcj +bth +buK +bwH +byu +bAh +bBO +bDx +bFe +bGT +bIq +bKb +bLG +bNs +bON +bQy +bRN +bSP +bUa +bVn +bWE +bSS +bZo +bZo +bZo +bZo +bZo +bZo +bZo +ciL +ckj +dwL +cgo +cod +cpp +cqI +crO +csZ +ctQ +cuM +cvQ +cwP +crQ +cyz +czs +cAx +cFr +cCt +cyK +cEq +cEq +cEq +cHe +cIa +cIU +cJR +cIg +dAx +dwv +dvY aaa aaf aaa aaa -cUi -cWS -cUi +cRe +cZa +cRe aaf aaa aaa @@ -109535,119 +109953,119 @@ aaf aaf aiD ajK -akW -amp -anG -aoO -aqj -arG -asX -aqk +akV +amo +anC +aoI +apZ +art +asL +aqa ajm -awF -axF -ayK -azU -aBt -aCG -aDU -ayO -aHj -aIF -aJW -aLe -aMG -aOd -aPI -aIE -aSv -aPL -aVs -aWU -aYA -bag -bby -bdu -beP -beP -beP -beP -beP -beP -beP -beP -beP -bvD -beM -beM -beM -beM -bEx -bGi -bHY -bJN -beM -beM -beM -beM -beM -beM -beM -beM -bXs -bby -cap -cbQ -cdk -ceB -cgl -chU -cja -cks -clz -cmT -cot -cpV -cqX -csr -ctE -cuZ -cwg -cxv -cyl -cxv -cAx -cBG -cwh -cDJ -cEH -cFP -cGE -cHE -cDT -cJL -cJL -cJL -cML -cNT -cOP -cPP -cNY -cyw -cSy -cky +awu +axw +ayF +azV +aBp +aCx +aDN +ayJ +aGx +aHH +aIY +aKj +aLG +aMV +aOr +aHG +aQO +aOu +aTt +aUM +aWo +aXS +aYX +baT +bcj +bcj +bcj +bcj +bcj +bcj +bcj +bcj +bcj +bti +bcg +bcg +bcg +bcg +bBP +bDy +bFf +bGU +bcg +bcg +bcg +bcg +bcg +bcg +bcg +bcg +bTS +aYX +bWF +bYb +cmZ +diA +crJ +dDq +ceY +cgm +chr +ciM +ckk +clL +cmM +coe +cpq +cqJ +crP +cuN +ctR +cuN +cvR +cwQ +crQ +cyA +czt +cAy +cBs +cCt +cyK +cEr +cEr +cEr +cHe +cIb +cIV +cJS +cIg +dxQ +dzc +dvY aaf aaf aaf aaa -cUi -cWS -cUi -cXy -cXz -cXz -cXz -cXz +cRe +cZa +cRe +cRu +cRi +cRi +cRi +cRi aaf aaa aaf @@ -109674,8 +110092,8 @@ aaf aaa aaf aaf -aae -aad +aai +aag aaa aaa aaa @@ -109785,144 +110203,144 @@ aaa aaa aaf aaa -aew -aew -aex -aew -aew +aey +aey +aez +aey +aey aiJ aiJ -akX -amq +akW +amp aiJ -aoP -aqk -arH -aqk -aqk -avx -awG -axG -ayO -ayO -ayO -ayO -ayO -ayO -aHk -aIE -aIE -aIE -aIE -aIE -aIE -aIE -aSw -aTR -aVt -aWU -aYB -bag -bby -bdA -beR -bgv -bih -bjX -blL -bnr -bpe +aoJ +aqa +aru +aqa +aqa +avj +awv +axx +ayJ +ayJ +ayJ +ayJ +ayJ +ayJ +dCp +aHG +aHG +aHG +aHG +aHG +aHG +aHG +aQP +aSe +aTu +aUM +aWp +aXS +aYX +baZ +bcl +bdO +bfE +bhA +bjl +bkQ +bmJ +boJ bra -btt -bvE -bxg -bgv -bAW -beR -bEy -bGj -bHZ -bJO -bJO -bNe -bOS -bQB -bSi -bTT -bVj -bWn -bXA -bYC -caq -bWp -bWp -bWp -bWp -bWp -cjb -ckt -cky -cmU -cou -cpW -cku -css -ctF -cgf -cwh -cxw -cym -czq -cAy -cBH -cwh -cDK -cEI -cFQ -cGF -cHF -cDT -cJM -cKJ -cKJ -cML -cNU -cOQ -cPQ -cNY -cRK -cSz -cua +btj +buL +bdO +byv +bcl +bBQ +bDz +bFg +bGV +bGV +bKc +bLH +bNt +bOO +bQz +bRO +bSQ +bUb +bVb +bWG +bSS +bSS +bSS +bSS +bSS +ceZ +cgn +dvY +dww +ckl +diH +cgo +cof +cpr +cci +crQ +ctb +ctS +cuO +cvS +cwR +crQ +cyB +czy +cAz +cBt +cCu +cyK +cEs +cFn +cFn +cHe +cIc +cIW +cJT +cIg +diT +cMp +dxk aaa aaa aaf aaf -cUi -cWS -cUi -cXz -cXR -cYe -cYs -cXz -cYM -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -dar -dar -dar -dar +cRe +cZa +cRe +cRi +dbX +dcg +dcs +cRi +dcE +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +dlV +dlV +dlV +dlV aaf aaa aaa @@ -109932,8 +110350,8 @@ aaa aaa aaf aaa -aad -aad +aag +aag aaa aaa aaa @@ -110033,7 +110451,7 @@ aaa aaa aaa aaa -aar +aav aaa aaa aaa @@ -110042,155 +110460,155 @@ aaa aaa aaf aaa -aew -afm -agj -agj -agj +aey +afp +agn +agn +agn aiK ajL -akY -amr +akX +amq aiJ -aoQ -aqk -arI -asY -aun -avy -awH -axH -ahv -azV -aBu -aCH -aDV -aCH -aHl -aCH -aJX -aLf -aMH -aOe -aPJ -aRh -aSu -aPL -aVs -aWU -aYC -bam -bbP -bdB -beS -bgw -bdh -bjY -blM -bns -aYr -aYr -btu -bvF -aYr -bzg -aYr -bCM -bEz -bGk -bIa -bJP -bLr -bzg -aYr -aYr -aYr -aYr -bCM -aYr -aYr -bYP -car -cbR -cdl -ceC -cgm -bWp -cjb -cku -cku -cku -cku -cku -cku -cga -ctF -cgf -cwh -cxx -cyn -czr -cAy -cBI -cwh -cDL -cEJ -cFR -cGG -cHG -cDT -cJN -cKJ -cLK -cML -cNV -cOR -cPR -cNY -cRL -cky -cky -cky -cky -cky -cky -cUi -cWT -cVa -cXA -cXS -cYf -cYt -cYD -cYN -cXz -cZc -cZm -cZv -cUg -cZc -cZM -cZv -cUg -cZc -dac -cZl -cXz -das -daD -daP -dar -dar -dar -dar -dar -dar -dar -dar -dar +aoK +aqa +arv +asM +atZ +avk +aww +axy +ahx +azW +aBq +aCy +aDO +aCy +aGy +aCy +aIZ +aKk +aLH +aMW +aOs +aPH +aQN +aOu +aTt +aUM +aWq +aXY +aZr +bba +dCH +bdP +baG +bhB +bjm +bkR +aWf +aWf +brb +btk +aWf +bwI +aWf +dCT +bBR +bDA +bFh +bGW +bIr +bwI +aWf +aWf +aWf +aWf +dCT +aWf +aWf +bVo +bWH +bYc +bZq +caG +ccp +bSS +ceZ +cgo +cgo +cgo +cgo +cgo +cgo +ccd +cpr +cci +crQ +ctc +ctT +cuP +cvS +cwS +crQ +cyC +czv +dDA +cBu +cCv +cyK +cEt +cFn +cGj +cHe +cId +cIX +cJU +cIg +cLF +dvY +dvY +dvY +dvY +dvY +dvY +cRe +djh +cYT +cRv +dbY +dch +dct +dcz +djs +cRi +cSh +cSp +cSy +cSd +cSh +dbo +cSy +cSd +cSh +dbs +cSn +cRi +dde +ddj +cTp +dlV +dlV +dlV +dlV +dlV +dlV +dlV +dlV +dlV aaa aaa -aae +aai aaa aaa aaa @@ -110283,7 +110701,7 @@ aaa aaa aaa aaa -aar +aav aaa aaa aaa @@ -110299,155 +110717,155 @@ aaa aaa aaf aaf -aex -afn -agk -agZ -agZ +aez +afq +ago +ahc +ahc aiL ajM -akZ -ams -anH -aoR +akY +amr +anD +aoL ajD -arI -asZ -aun -avy -awI -axI -ahv -azW -aBv -axL -axL -axL -axL -axL -axL -axL -aMI -aOf -aPK -aPK -aSx -aPK -aVu -aWU -aYD -ban -bbQ -bdC -beT -bgx -bii -bjZ -blN -bnt -bpf -brb -btv -btv -bxh -bzh -bAX -bAX -bAX -bGl -bIb -bJQ -bLs -bNf -bLs -bQC -bLs -bLs -bLs -bWo -bXB -bYQ -cas -cbS -cdm -ceD -cgn -bWp -cjb -cku -clA -cmV -cov -cpX -cdi -cst -ctF -cva -cwh -cxy -cyo -czs -cAz -cBJ -cwh -cDM -cEK -cFS -cGH -cHH -cDT -cJO -cKK -cJO -cML -cNW -cOS -cNW -cNY -cOc -cky -cTt -cvs -cVb -cVK -cky -cUi -cUi -cUi -cXz -cXT -cYg -cYu -cXz -cUi -cXz -cZd -cZl -cZl -cUg -cZd -cZl -cZl -cUg -cZd -cZl -cZl -cXz -dat -daE -daQ -daQ -daQ -daQ -daQ -daQ -daQ -dbu -dbD -dar +arv +asN +atZ +avk +awx +axz +ahx +azX +dsg +axC +axC +axC +axC +axC +axC +axC +aZU +aMX +aOt +aOt +aQQ +aOt +aTv +aUM +aWr +aXZ +aZs +bbb +bcm +bdQ +bfF +bhC +bjn +bkS +bmK +boK +brc +brc +buM +bwJ +byw +byw +byw +bDB +bFi +bGX +bIs +bKd +bIs +bNu +bIs +bIs +bIs +bSR +bUc +bVp +bWI +bYd +bZr +caH +ccq +bSS +ceZ +cgo +chs +ciN +ckm +clN +bZn +cog +cpr +cqK +crQ +ctd +ctU +cuQ +cvT +cwT +crQ +cyD +czw +cAA +cBv +cCw +cyK +cEu +cFo +cEu +cHe +cIe +cIY +cIe +cIg +cPe +dvY +cNi +cgs +cOB +cPf +dvY +cRe +cRe +cRe +cRi +dbZ +dci +dcu +cRi +cRe +cRi +cSg +cSn +cSn +cSd +cSg +cSn +cSn +cSd +cSg +cSn +cSn +cRi +cTA +cTn +cTC +cTC +cTC +cTC +cTC +cTC +cTC +daO +bIx +dlV aaf aaf -aad +aag aaa aaa aaa @@ -110556,156 +110974,156 @@ aaa aaa aaf aaa -aew -afo -agl -agl -agl +aey +afr +agp +agp +agp aiM ajN -ala -amt -aew -aoS +akZ +ams +aey +aoM ajD -arJ -asY -aun -avy -awJ -axJ -ahv -azX -aoZ -axL -aDW -axL -aHm -axL -aJY -axL -aMJ -aOg -aPL -aPM -aSy -aRk -aVv -aWU -aYE -als -bbR -bbR -bbR -bbR -bij -bka -blO -bnu -bpg -brc -bpj -bph -bpj -bpk -bAY -bpk -bEA -bGm -bIc -bJR -bpk -bNg -bNh -bQD -bSj -bSj -bNh -bWp -bXC -bYR -cat -cbR -cdn -ceE +arw +asM +atZ +avk +awy +axA +ahx +dhz +aoP +axC +aDP +axC +aGz +axC +aJa +axC +bbG +aMY +aOu +aOv +aQR +dCv +aTw +aUM +aWs +dnh +aZt +aZt +aZt +aZt +bfG +bhD +bjo +bkT +bmL +boL +bmO +bmM +bmO +bmP +dhT +bmP +bBS +bDC +bFj +bGY +bmP +dik +bKe +bNv +bOP +bOP +bKe +bSS +bUd +bVq +bWJ +bYc +bZs +caI +ccr +bSS +cfa cgo -bWp -cjc -cku -clB -cmW -cow -cpY -cqY -csu -ctG -cvb -cwh -cxz -cyp -czt -cAA -cBK -cwh -cDN -cEL -cFT -cGI -cHI -cIA -cJP -cKL -cLL -cMM -cNX -cOT -cPS -cNY -cRM -cky -cTu -cmS -cmS -cVL -cky +cht +ciO +ckn +clO +cmN +coh +cpt +cqL +crQ +cte +ctV +cuR +cvU +cwU +crQ +cyE +czx +cAB +cBw +cCx +cDk +cEv +cFp +cGk +cHf +cIf +cIZ +cJW +cIg +dDF +dvY +cNj +ciL +ciL +cPg +dvY aaa aaa aaa -cXB -cXz -cYh -cYv -cXz -cYO -cUg -cZd -cZl -cZl -cUg -cZd -cZl -cZl -cUg -cZd -cZl -cZl -cXz -cXz -daF -cXz -cXz -cXz -cXz -cXz -cXz -cXz -dbv -dbE -dar +cRw +cRi +dcj +cRx +cRi +cRD +cSd +cSg +cSn +cSn +cSd +cSg +cSn +cSn +cSd +cSg +cSn +cSn +cRi +cRi +cTq +cRi +cRi +cRi +cRi +cRi +cRi +cRi +daP +cLE +dlV aaa aaa aaf -aad +aag aaa aaa aaa @@ -110789,7 +111207,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -110813,156 +111231,156 @@ aaa aaa aaf aaa -aew -aew -aex -aew -aew -aew -aew -aew -aew -aew -aoT +aey +aey +aez +aey +aey +aey +aey +aey +aey +aey +aoN ajD -arK -ata +arx +asO ajD -avy -awK -axK -ahv +avk +awz +axB +ahx azY -aoZ -axL -aDX -axL -aHn -axL -aJZ -axL -aMK -aOg -aPM -aPN -aSy -aPL -aVw -aWU -aYF -aHD -bbR -bdD -beU -bgy -bbR -bkb -blP -bnv -bph +aoP +axC +aDQ +axC +aGA +axC +aJb +axC +bah +aMY +aOv +aOw +aQR +aOu +aTx +aUM +aWt +aYa +aZt +bbc +bcn +bdR +aZt +bhE +bjp +bkU +bmM +boM brd -btw -bvG -bpj -bzi -bAZ -bCN -bEB -bAZ -bId -bJS -bLt -bNh -bOT -bQE -bSk -bTU -bVk -bWq -bXD -bYS -cau -bWq -bXD -ceF -bXD -bWq -cjb -cku -clC -cmX -cox -cpZ -cqZ -csv -ctH -cvc -cwi -cwi -cwi -cwi -cwi -cwi -cwi -cDO -cEI -cFU -cGJ -cHJ -cIB -cJO -cKM -cJO -cML -cNY -cNY -cNY -cNY -cyw -cky -cTv -cmS -cmS -cVM -cky +btl +bmO +bwK +bwO +bAi +bBT +bwO +bFk +bGZ +bIt +bKe +bLI +bNw +bOQ +bQA +bRP +bST +bUe +bVr +bWK +bST +bUe +caJ +bUe +bST +ceZ +cgo +chu +ciP +cko +clP +cmO +coi +cpu +cqM +crR +crR +crR +crR +crR +crR +crR +cyF +czy +cAC +cBx +cCy +cDl +cEu +cFq +cEu +cHe +cIg +cIg +cIg +cIg +dxQ +dvY +cNk +ciL +ciL +cPh +dvY aaa aaa aaf -cXz -cXU -cYi -cYw -cYE -cYP -cUg -cZe -cZn -cZw -cUg -cZH -cZN -cZT -cUg -cZZ -dad -dai -cUg -dau -daG -daR -dba -cXz -cZl -dbk -dbp -cXz -dbw -cXz -cXz -cXz -cXz +cRi +cRh +dck +cRz +cRB +cRN +cSd +cRU +cSq +cRZ +cSd +dcP +cSN +cSD +cSd +dcU +cTc +dcX +cSd +ddf +ddk +cTj +cTD +cRi +cSn +daF +daJ +cRi +bvT +cRi +cRi +cRi +cRi aaa -aae +aai aaa aaa aaa @@ -111073,153 +111491,153 @@ aaa aaf aaa aaa -agm -ahO -agm +agq +ahQ +agq ajO -alb -amu -agm -aoU +ala +amt +agq +dhr ajD ajD ajD ajD -ahv -ahv -ahv -ahv -azZ -aBw -aCI -aDY -aFz -aHo -aIG -aFA -aLg -aML -aOg -aPN -aRi -aSz -aTS -aVx -aWU -aWU -bao -bbR -bdE -beV -bgz -bik -bkc -blQ -bnw -bpi +ahx +ahx +ahx +ahx +aGE +aBr +aCz +aDR +aFc +aGB +aHI +aFd +aKl +aLK +aMY +aOw +aPI +aQS +aSf +aTy +aUM +aUM +aYb +aZt +bbd +bco +bdS +bfH +bhF +bjq +bkV +bmN +boN bre -btx -bvH -bpj -bzj -bBa -bCO -bEB -bGn -bIe -bJT -bLu -bNh -bOU -bQF -bSl -bTV -bVl -bWq -bXE -bYT -cav -cbT -cdo -ceG +btm +bmO +bwL +byy +bAj +bBT +bDD +bFl +bHa +bIu +bKe +bLJ +bNx +bOR +bQB +bRQ +bST +bUf +bVs +bWL +bYe +bZt +caK +ccs +bST +cfb cgp -bWq -cjd -ckv -clD -cmY -coy -cqa -cdi -cga -ctI -cvd -cwj -cxA -cyq -czu -cAB -cBL -cwi -cDP -cEM -cFV -cGK -cHK -cIC -cJQ -cGD -cLM -cMN -cNZ -cOU -cPT -cLP -cyw -cky -cky -cUj -cVc -cky -cky +chv +ciQ +ckp +clQ +bZn +ccd +cpv +cqN +crS +ctf +ctW +cuS +cvV +cwV +crR +cyG +czz +cAD +cBy +cCz +cDm +cEw +cFr +cGl +cHg +cIh +dAh +dbl +dyc +dxQ +dvY +dvY +cNW +cOC +dvY +dvY aaa aaa aaa -cXz -cXV -cYj -cYx -cYF -cYQ -cTq -cZf -cZo -cZx -cZE -cZf -cZO -cZU -cZE -cZf -dae -daj -cUg -dav -daH -daS -dbb -dbg -cZl -cZl -cZl -cXz -dbx -cXz -dbH -dbH -cXz +cRi +dca +dcl +cRy +cRA +cRM +cRa +cSj +cSs +cSB +cSI +cSj +cSO +cSS +cSI +cSj +cTb +cST +cSd +cSL +cVa +cTr +cRY +daC +cSn +cSn +cSn +cRi +dmq +cRi +cZv +cZv +cRi aaf -aad +aag aaa aaa aaa @@ -111329,152 +111747,152 @@ aaf aaf aaf aaa -agm -agm -agm -agm -aiN -alc -aiN -agm -aoV -aql -aql -atb -auo -aql -aql -aql -aql -aAa -aBx -axL -aDZ -aFA -aHp -aIH -aIH -aLg -aMM -aOh -aPO -aRj -aSA -aPL -aVs -aWV -aWU -bap -aVB -bdF -beW -bgA -bil -bkb -blP -bnv -bph +agq +agq +agq +agq +aje +alb +aje +agq +aur +aqb +aqb +asP +aua +aqb +aqb +aqb +aqb +azZ +aBs +axC +aDS +aFd +aGC +aHJ +aHJ +aKl +aLL +aMZ +aOx +aPJ +aQT +aOu +aTt +aUN +aUM +aYc +aTC +bbe +bcp +bdT +bfI +bhE +bjp +bkU +bmM +boO brf -bty -bvI -bpj -bzk -bAZ -bCP -bEB -bAZ -bIf -bJS -bEB -bNi -bOV -bQG -bSm -bTV -bVm -bWq -bXF -bYU -caw -cbU -bYU -ceH -cgq -chV -cje -cku -clE -cmZ -coz -cqb -cdi -csw -ctJ -cve -cwk -cxB -cyr -czv -czv -cBM -cwi -cDQ -cEL -cFW -cGL -cHL -cID -cJR -cID -cLN -cMO -cOa -ckx -cPU -cQJ -cRN -cky -cTw -cUk -cVd -cVN -cky +btn +bmO +bwM +bwO +bAk +bBT +bwO +bFm +bGZ +bBT +bKf +bLK +bNy +bOS +bQB +bRR +bST +bUg +bVt +bWM +bYf +bVt +caL +cct +cdU +cfc +cgo +diD +ciR +ckq +clR +bZn +coj +cpw +cqO +crT +ctg +ctX +cuT +cuT +cwW +crR +cyH +czx +cAE +cBz +cCA +cDn +cEx +cDn +cGm +cHh +cIi +cJa +dAp +cKK +cxM +dvY +cNl +dAZ +cOD +cPi +dvY aaa aaa aaf -cUi -cXW -cYk -cYy -cYG -cYR -cYZ -cZg -cZp -cZy -cZF -cZI -cZp -cZy -cZX -cZI -cZp -dak -dap -daw -daI -daT -dbc -dbh -dbh -dbl -cZl -cXz -dby -dbF -dbI -dbH -cUi +cRe +cRS +dcm +dcv +cRC +dcG +cSe +cSi +cSr +cSA +cSG +cSK +cSr +cSA +cSW +cSK +cSr +dcY +ddc +cSk +ddl +cTk +cTm +daB +daB +daG +cSn +cRi +ddx +ddz +daR +cZv +cRe aaa aaa aaa @@ -111586,153 +112004,153 @@ aaf aaa aaf aaa -agm -aha -ahP -aiN -aiN -ald -aiN -agm -aoW -agm -agm -atc -agm -agm -agm -axL -axL -axL -axL -axL -aDZ -aFB -axL -axL -axL -axL -aMN -aOi -aPP -aPK -aSB -aTT -aVs -aWW -aWU -baq -bbR -bdG -beX -bgB -bim -bkd -blR -bnx -bpj -bpj -bpj -bpj -bpj -bzl -bBb -bCO -bEC -bAZ -bIg -bJU -bLv -bNj -bOW -bQH -bSn -bTW -bOV -bWr -bXG -bYT -cax -cbV -caB -ceI -cgr -bWq -cjf -ckw -ckw -ckw -ckw -ckw -cra -cra -ctK -cvf -cwi -cxC -cys -czw -cAC -cBN -cCO -cDR -cEN -cFX -cGM -cHM -cIE -cJS -cKN -cLO -cMP -cOb -cky -cky -cQK -cky -cky -cTx -cUl -cVe -cVO -cky +agq +ahd +ahR +aje +aje +alc +aje +agq +dCe +agq +agq +asQ +agq +agq +agq +axC +axC +axC +axC +axC +aDS +aFe +axC +axC +axC +axC +dhJ +aNa +aOy +aOt +aQU +aSg +aTt +aUO +aUM +boW +aZt +bbf +bcq +bdU +bfJ +bhG +bjr +bkW +bmO +bmO +bmO +bmO +bmO +bwN +byz +bAj +bBU +bwO +dDb +bHb +bMP +bKg +bLL +bNz +bOT +bQC +bLK +bSU +bUh +bVs +bWN +bWR +dDl +caM +ccu +bST +cfd +cgq +cgq +cgq +cgq +cgq +cmP +cmP +cpx +cqP +crR +cth +ctY +cuU +cvW +cwX +cxK +cyI +czA +cAF +cBA +cCB +cDo +cEy +cFs +cGn +cHi +cIj +dvY +dvY +cKL +dvY +dvY +diW +cNX +dBe +cPj +dvY aaa aaa aaf -cUi -cXW -cYl -cYz -cYH -cYS -cZa -cZh -cZq -cZz -cZq -cZq -cZP -cZV -cZq -cZq -cZq -dal -cZq -dax -daJ -daU -dbd -cZl -cZl -cZl -dbq -cXz -dbz -dbG -dbJ -dbL -dbN -dbO +cRe +cRS +dcn +dcw +cRk +dcH +cSf +cSl +cSJ +cSa +cSJ +cSJ +cUM +cUN +cSJ +cSJ +cSJ +cSV +cSJ +cSX +ddm +cTt +daA +cSn +cSn +cSn +daL +cRi +daQ +ddA +daS +dbv +cTT +ddC aaf aaa aaa @@ -111823,7 +112241,7 @@ aaa aaa aaa aaa -aar +aav aaa aaa aaa @@ -111843,152 +112261,152 @@ aaf aaa aaf aaf -agm -ahb -ahQ -aiN +agq +ahe +ahS +aje ajP -ale -amv -anI -aoX -agm -arL -atd -aiN -auq -awL -axL -ayP -aAb -aBy -aCJ -aEa -aFC -aHq -aII -aKa -axL -aMO -aOi -aPQ -aPL -aSC -aPM -aVs -aWX -aWU -bar -bbR -bdH -beY -bgC -bbR -bke -blP -bnv -bpk +ald +amu +anE +aoQ +agq +ary +asR +aje +auc +awA +axC +ayK +aAa +aBt +aCA +aDT +aFf +aGD +aHK +aJc +axC +aLN +aNa +aOz +aOu +aQV +aOv +aTt +aUP +aUM +dCD +aZt +bbg +bcr +bdV +aZt +bhH +bjp +bkU +bmP +boP brg -btz -bvJ -bxi -bzm -bAZ -bCQ -bEB -bAZ -bIh -bJV -bLw -bNk -bOX -bQI -bSo -bTX -bVn -bWs -bXH -bYV -cay -cbW -caD -ceJ -cgs -bWq -cjg -ckw -clF -clF -clF -ckw -crb -csx -ctL -cvg -ckw -cxD -cyt -czx -cAD -cBO -cwi -cDS -cEO -cFY -cGN -cHN -cIF -cDT -cDT -cDT -cDT -cOc -cky -cPV -cQL -cRO -cky -cTy -cUk -cVf -cVM -cky +bto +buN +dCS +bwO +bAl +bBT +bwO +bFn +bHc +bIw +bKh +bLM +bNA +bOU +bQD +bRS +oub +bUi +bVu +bWO +bYg +bWT +caN +ccv +bST +dDr +cgq +chx +chx +chx +cgq +cmQ +cok +cpy +cqQ +cgq +cti +ctZ +cuV +cvX +cwY +crR +cyJ +czB +cAG +cBB +cCC +cDp +cyK +cyK +cyK +cyK +cPe +dvY +cJY +cKM +cLH +dvY +cNn +dAZ +cOE +cPh +dvY aaa aaa aaf -cUi -cXW -cYm -cYA -cYI -cYT -cZb -cZi -cZr -cZA -cZG -cZJ -cZr -cZA -cZY -cZJ -cZr -dam -daq -day +cRe +cRS +dco +dcx +dcA +dcI +cRR +cRV +cRX +cSb +dcO +dcQ +cRX +cSb +dcT +dcQ +cRX +dcZ +ddd +cTa +ddn +cTs +ddu +daD +cSn +daH daK -daV -dbe -dbi -cZl -dbm -dbr -cXz -dbA -dbF -dbK -dbH -cUi +cRi +bIv +ddz +ddB +cZv +cRe aaa aaf aaa @@ -112088,7 +112506,7 @@ aaa aaa aaa aaa -aar +aav aaa aaa aaa @@ -112098,156 +112516,156 @@ aaa aaa aaf aaa -acM -acM -acM -acM -ahR +acP +acP +acP +acP +dhn aiO -aiN -alf -ahQ -agm -aoY -agm -arM -ate -aup -aiN -aha -axL -ayQ -aAc -aBz -aCK -aEb -aFD -aHr -axL -axL -axL -aMP -aOj -aPR -aPN -aSD -aPN -aVs -aWY -aYG -bas -bbR -bbR -bbR -bbR -bbR -bkf -blS -bny -bpk +aje +ale +ahS +agq +aoR +agq +arz +asS +aub +aje +ahd +axC +ayL +aAb +aBu +aCB +aDU +aFg +dhD +axC +axC +axC +aLO +aNb +aOA +aOw +aQW +aOw +aTt +aUQ +dtE +aYf +aZt +aZt +aZt +aZt +aZt +bhI +bjs +bkX +bmP +boQ brh -btA -bvK -bxj -bzn -bBc -bCR -bED -bGo -bIi -bAZ -bEB -bNl -bOY -bQJ -bSp -bTY -bVo -bWq -bXI -bYV -caz -cbX -caD -ceK -cgt -bWq -cjb -ckw -clF -cna -clF -cqc -crc -csy -ctM -cvh -ckw -cxE -cyu -czy -cAE -cAD -cwi -cDT -cDT -cFZ -cGO -cDT -cDT -cDT -cky -cLP -cyv -cOd -cky -cPW -cQM -cRP -cky -cky -cUm -cky -cky -cky +btp +buO +bwP +byA +bAm +bBV +bDF +bFo +bwO +bBT +bKi +bLN +dDe +bOV +bQE +bRT +bST +bUj +bVu +bWP +bYh +bWT +caO +ccw +bST +ceZ +cgq +chx +ciS +chx +clS +cmR +col +cpz +cqR +cgq +ctj +cua +cuW +cvY +cvX +crR +cyK +cyK +cAH +cBC +cyK +cyK +cyK +dvY +dyc +cub +diP +dvY +cJZ +cKN +diU +dvY +dvY +cNY +dvY +dvY +dvY aaa aaa aaa -cXz -cXX -cWS -cYB -cYJ -cYU -cTq -cZj -cZs -cZB -cZE -cZK -cZQ -cZB -cZE -daa -daf -dan -cUg -daz -daK -daW -dbf -dbg -cZl -cZl -dbs -cXz -dbB -cXz -dbH -dbM -cXz +cRi +dcb +cZa +dDI +dcB +dcJ +cRa +cSm +cSw +cSE +cSI +cSM +cSR +cSE +cSI +dcV +cTe +dda +cSd +cSZ +ddn +cTz +ddv +daC +cSn +cSn +daN +cRi +dmr +cRi +cZv +dbw +cRi aaa -aad +aag aaa aaa aaa @@ -112355,156 +112773,156 @@ aaf aaf aaf aaf -acN -afp -agn -acM -ahS +acQ +afs +agr +acP +ahU aiP -acM -acM -acM -acM -aoZ -agm -arN -aiN -auq -aiN -awM -axL -ayR -aAd -aBA -axL -aEc -aFE -aHs -aIJ -aKb -axL -aMQ -aOj -aPS -aPN -aSE -aPL -aVs -aWZ -aWU -bat -als -bdI -beZ -als -bin -bkb -blP -bnv -bpk +acP +acP +acP +acP +aoP +agq +arA +aje +auc +aje +awB +axC +ayM +aAc +aBv +axC +aDV +aFh +aGF +aHL +aJd +axC +aLP +aNb +aOB +aOw +aQX +aOu +aTt +aUR +aUM +aYe +dnh +bbh +duo +dnh +bfK +bhE +bjp +bkU +bmP +boR bri -btB -bvL -bpk -bzo -bAZ -bCS -bEB -bAZ -bId -bAZ -bEB -bNm -bOY -bOV -bSq -bTZ -bQH -bWt -bXJ -bYW -caA -caA -caA -ceH -cgs -bWq -cjh -ckw -clF -cnb -coA -cqd -crd -csz -ctN -cvi -ckw -cpU -cpU -cpU -cpU -cpU -cpU -cDU -cEP -cGa -cGP -cHO -cIG -cJT -cky -cLQ -cyw -cLP -cky -cPX -cQN -cRQ -csE -cdk -cUn -cua +btq +bmP +bwQ +bwO +bAn +bBT +bwO +bFk +bwO +bBT +bKj +bLN +bLK +ddE +bQF +bNz +bSV +bUk +bVv +bWQ +bWQ +bWQ +caL +ccv +bST +csg +cgq +chx +ciT +ckr +clT +cmS +com +cpA +cqS +cgq +dwL +dwL +dwL +dwL +dwL +dwL +xAp +vhG +cAI +cBD +cCD +uun +rSL +dvY +cEz +dxQ +dyc +dvY +cKa +cKO +cLJ +cor +cmZ +cNZ +dxk aaa aaa aaa aaa aaa -cXz -cXY -cYn -cYp -cYp -cYV -cUg -cZk -cZt -cZC -cUg -cZL -cZR -cZW -cUg -dab -dag -dao -cUg -daA -daL -daX -dba -cXz -dbj -dbn -dbt -cXz -dat -cXz -cXz -cXz -cXz +cRi +dcc +dcp +cSt +cSt +dcK +cSd +cRW +cSv +cSc +cSd +dcR +cSQ +dcS +cSd +dcW +cTg +ddb +cSd +ddg +ddo +dds +cTD +cRi +daE +daI +daM +cRi +cTA +cRi +cRi +cRi +cRi aaf -aad +aag aaa aaa aaa @@ -112607,161 +113025,161 @@ aaa aaa aaa aaa -aae +aai aaa aaa aaf aaa -acM -acM -ago -acM -acM -acM -acM -alg -amw -acM -apa -acM -arO -arO -arO -arO -arO -axL -axL -axL -axL -axL -aEd -aFF -axL -axL -axL -axL -aMR -aOk -aPT -aRk -aSF -aPN -aVs -aXa -aWU -bau -bbS -bdJ -bfa -als -bio -bkb -blP -bnv -bpk +acP +acP +ags +acP +acP +acP +acP +alf +amv +acP +aoS +acP +arB +arB +arB +arB +arB +axC +axC +axC +axC +axC +aDW +aFi +axC +axC +axC +axC +aLQ +aNc +aOC +dCv +aQY +aOw +aTt +aUS +aUM +aYg +aZv +bbi +bct +dnh +bfL +bhE +bjp +bkU +bmP +dbd brj -btC -bvM -bpk -bpk -bBd -bCT -bAY -bGp -bIj -bAY -bpk -bNh -bOZ -bQK -bQK -bUa -bVp -bWu -bXG -bYX -caB -cbV -cdp -ceI -cgu -bWq -cjb -ckw -clG -cnc -clF -cqe -cre -csA -ctO -cvj -cwl -cpU -cyv -ckx -ckx -ckx -cCP -cDV -cDV -cDV -cGQ -cHP -cIH -cIH -cKO -cLR -cMQ -cOe -cky -cky -cky -cky -cSA -cSA -cSA -cSA -cSA +btr +bmP +bmP +byB +bAo +dhT +bDG +bFp +dhT +bmP +bKe +bLO +bNB +bNB +bQG +bRU +bSW +bUh +bVw +dDl +bWR +bZu +caM +ccx +bST +ceZ +cgq +chy +ciU +chx +clU +cmT +con +cpB +cqT +crU +dwL +cub +cJa +cJa +cJa +gHh +wRy +wRy +wRy +cBE +cAJ +cCE +cCE +czC +dzI +cIl +dAd +dvY +dvY +dvY +dvY +cKP +cKP +cKP +cKP +cKP aaa aaa aaa aaa -cXz -cXZ -cYo -cYC -cYp -cYW -cUg -cZl -cZl -cZd -cUg -cZl -cZl -cZd -cUg -cZl -cZl -cZd -cXz -cXz -daM -cXz -cXz -cXz -cXz -cXz -cXz -cXz -dat -dar +cRi +dcd +dcq +dcy +cSt +dcL +cSd +cSn +cSn +cSg +cSd +cSn +cSn +cSg +cSd +cSn +cSn +cSg +cRi +cRi +ddp +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cTA +dlV aaf aaa aaa aaf -aad +aag aaa aaa aaa @@ -112864,160 +113282,160 @@ aaa aaa aaa aaa -aad +aag aaa aaa aaf aaa -acN -afq -agp -ahc -ahT +acQ +aft +agt +ahf +ahV aiQ -ajQ -alh -alh -anJ -apb -aqm -arO -atf -aur -arO -awN -auB -arO -aAe -aBB -aCL -aEe -aFG -aHt -aIK -aKc -aLh -aMS -aOl -aPU -aRl -aSC -aPM -aVy -aWU -aWU -bat -als -als -als -als -als -bkb -blP -bnz -bpk +dhp +alg +alg +anF +aoT +aqc +arB +asT +aud +arB +awC +aun +arB +aAd +aBw +aCC +aDX +aFj +aGG +aHM +aJe +aKm +aLR +aNd +aOD +aPK +aQV +aOv +aTt +pVo +aUM +aYe +dnh +dnh +dnh +dnh +dnh +bhE +bjp +dCM +bmP +boT brk -btD -bpk -bpk -bzp -bBe -bBe -bBe -bBe -bIk -bEE -bEE -bNn -bPa -bQL -bSr -bUb -bVq -bWq -bXG -bYY -caC -cbY -caD -ceJ -cgs -bWq -cjb -ckw -clF -cnd -clF -cqe -crf -csB -ctP -cvk -cwm -cpU -cyw -czz -cAF -cBP -cpU -cDW -cEQ -cGb -cGR -cHQ -cII -cJU -cky +bmP +bmP +bwR +byC +byC +byC +byC +bFq +bBX +bBX +bKk +bLP +bNC +bOW +bQH +bRV +bST +bUh +bVx +bWS +bYi +bWT +caN +ccv +bST +ceZ +cgq +chx +cLU +chx +clU cmU -cMR -cOf -ckx -cPY -cQO -cRR -cSB -cTz -cUo -cVg -cSA +coo +cpC +cqU +crV +dwL +dxQ +cuY +cwa +dzQ +dwL +gLC +qqg +cAK +cBF +cCF +uGW +dqU +dvY +dww +gEk +eZe +cJa +cPx +cJb +cKb +cKR +cLK +cMq +cNo +cKP aaa aaa aaa aaa -cXz -cYa -cYp -cYp -cYK -cYX -cUg -cZl -cZl -cZd -cUg -cZl -cZl -cZd -cUg -cZl -cZl -cZd -cXz -daB -daN -daY -daY -daY -daY -dbo -dat -dat -dbC -dar +cRi +dce +cSt +cSt +dcC +dcM +cSd +cSn +cSn +cSg +cSd +cSn +cSn +cSg +cSd +cSn +cSn +cSg +cRi +ddh +ddq +ddt +ddt +ddt +ddt +ddw +cTA +cTA +ddy +dlV aaf aaf aaa -aae +aai aaa aaa aaa @@ -113121,160 +113539,160 @@ aaa aaa aaa aaa -aad +aag aaa aaa aaf aaa -acN -afr -agq -ahd -ahd -ahd +acQ +afu +agu +ahg +ahg +ahg ajR -ahd -ahd -anK -apc -aqn -arO -atg -aus -arO -awO -axN -arO -aAf -aBC +ahg +ahg +anG +aoU +aqd +arB +asU +aue +arB +awD +axD +arB +aAe +aBx +aCD +aDY +aFk +aGH +aHN +aJf +aKn +aLS +aNe +aOE +aPL +aQZ +aSh +aTA +aUT +aUM +aYh aCM -aEf -aFH -aHu -aIL -aKd -aLi -aMT -aOm -aPV -aRm -aSG -aTU -aVz -aXb -aWU -bav -aCV -bdK -aCV -bgD -bip -bkg -blT -bnv -bpk +bbj +aCM +bdW +bfM +bhJ +bjt +bkU +bmP +boU brl -btE -bpk -bxk -bzq -bzv -bzv -bBe -bBe -bIl -bBe -bLx -bNh -bNh -bNh -bNh -bNh -bVr -bWq -bXK -bYV -caD -cbZ -caD -ceJ -cgv -bWq -cjb -ckw -clH -cne -coB -ckw -crg -csC -ctQ -cvl -cwn -cpU -cyw -czA -czA -czA -czA -czA -cER -czC -cGS -cHR -cIJ -cDH -cGS -cGS -cMS -cLP -cOV -cPZ -cQP -cRS -cSC -cTA -cUp -cVh -cSA +bmP +buP +bwS +bwX +bwX +byC +byC +bFr +byC +bIy +bKe +bKe +bKe +bKe +bKe +bRW +bST +bUm +bVu +bWT +bYj +bWT +caN +ccy +bST +ceZ +cgq +chA +ciV +cks +cgq +cmV +cop +cpD +cqV +crW +dwL +dxQ +cuZ +cuZ +cuZ +cuZ +cuZ +ioI +krD +czD +cAL +cBG +cyy +czD +czD +cFu +dyc +cOA +cIn +cJc +cKc +cKQ +cLL +cMr +cNp +cKP aaf aaa aaa aaa -cXz -cYb -cYq -cYq -cYL -cYY -cUg -cZl -cZu -cZD -cUg -cZv -cZS -cZD -cUg -cZl -dah -cZD -cXz -daC -daO -daZ -dar -dar -dar -dar -dar -dar -dar -dar +cRi +dcf +dcr +dcr +dcD +dcN +cSd +cSn +cSx +cSF +cSd +cSy +dbp +cSF +cSd +cSn +dbt +cSF +cRi +ddi +ddr +cTB +dlV +dlV +dlV +dlV +dlV +dlV +dlV +dlV aaf aaa aaa -aad +aag aaa aaa aaa @@ -113378,149 +113796,149 @@ aaa aaa aaa aaa -aad +aag aaa aaa aaf aaa -acN -afs -agq -ahe -ahe +acQ +afv +agu +ahh +ahh aiR ajS -ali -agv -agv -apd -aqo -arO -ath -aut -arO -awP -axO -arO -aAg -aBC -aCN -aEg -aFI -aHv -aIM -aKe -aLj -aMU -aOn -aPW -aRn -aSH -aTV -aVA -aXb -aWU -baw -als -als -alr -als -als -bkb -blP -bnv -bpl +alh +agz +agz +aoV +dhs +arB +asV +auf +arB +awE +axE +arB +dhA +aBx +aCE +aDZ +aFl +aGI +aHO +aJg +aKo +aLT +aNf +aOF +aPM +aRa +aSi +aTB +aUT +aUM +dhN +dnh +dnh +dni +dnh +dnh +bhE +bjp +bkU +alq +boV brm -btF -bpk -bxl -bzr -bBf -bCU -bEE -bGq -bIm -bJW -bBe -bNo -bNh -bQM -bSs -bUc -bVs -bWq -bXL -bYU -caA -cca -caA -ceH -cgw -bWq -cji -ckw -clF -cnf -coC -cqf -crh -csD -ctR -cvm -cwo -cpU -cyw -czA -cAG -cBQ -cCQ -cDX -cES -cGc -cGS -cHS -cIK -cJV +bmP +buQ +bwT +byD +bAp +bBX +bDH +bFs +bHd +byC +bKl +bKe +bND +bOX +bQI +bRX +bST +bUn +bVt +bWQ +bYk +bWQ +caL +dbE +bST +diB +cgq +chx +ciW +ckt +clV +cmW +coq +cpE +cqW +crX +dwL +dxQ +cuZ +cwb +lal +ygk +sdi +fDD +wKo +czD +cQC +cBH +cCG +cDq +czD +dvY +dvY +dvY +cGo +cJd +cPz +cKP +cLM +cMs +cNq cKP -cGS -cky -cky -cky -cQa -cQQ -cRT -cSA -cTB -cUq -cVi -cSA aaa -aab +aac aaa aaa -cXz -cUi -cUi -cUi -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -cXz -dar -dar -dar -dar +cRi +cRe +cRe +cRe +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +cRi +dlV +dlV +dlV +dlV aaa aaf aaf @@ -113530,8 +113948,8 @@ aaf aaa aaf aaf -aad -aad +aag +aag aaf aaa aaa @@ -113635,122 +114053,122 @@ aaa aaa aaa aaa -aae +aai aaa aaa aaf aaf -acM -acM -agr -ahe -ahU +acP +acP +agv +ahh +ahW aiS ajT aiS -amx -anL -apd -aqp -arO -ati -auu -arO -ati -axP -arO -arO -aBD -aCO -aEh -aFJ -aHw -avD -aKf -aKf -aKf -aOo -aPX -aRo -aKf -aKf -aKf -aWU -aWU -aXg -als -aaa -aaa -aaa +amw +dCc +aoV +aqf +arB +asW +aug +arB +asW +axF +arB +arB +aBy +aCF +aEa +aFm +aGJ +avo +aJh +aJh +aJh +aNg +aOG +aPN +aJh +aJh +aJh +aUM +aUM biq -bkh -blU -bnA -bpl +dnh +aaa +aaa +aaa +bfN +bhK +bju +bkZ +alq +bBj brn -btG -bpk -bpk -bzs -bBg -bCV -bEF -bBe -bzv -bJX -bEF -bNp -bNh -bQN -bSt -bSt -bVt -bWq -bXM -bYZ -caE -ccb -cdq -ceL -cgx -bWq -cjj -ckw -ckw -ckw -ckw -ckw -ckw -ckw -ctS -ckw -ckw -cpU -cyw -czA -cAH -cBR -cBR -cDY -cET -czC -cGT -cHT -cIL -cHV -cKQ -cGS +bmP +bmP +bwU +byE +bAq +dCU +byC +bwX +bHe +dCU +bKm +bKe +bNE +dbn +dbn +bRY +bST +bUo +bVy +bWU +bYl +bZv +caP +ccz +bST +cff +cgq +cgq +cgq +cgq +cgq +cgq +cgq +cpF +cgq +cgq +dwL +dxQ +cuZ +eqG +cwZ +cwZ +cyM +uYk +krD +cQv +cAN +cBI +cAP +cDr +czD aaf aaf -cky -cky -cQR -cky -cSA -cTC -cUr -cTC -cSA +dvY +dvY +dAn +dvY +cKP +dbN +dbP +dbN +cKP aaf aaf aaf @@ -113787,7 +114205,7 @@ aaa aaa aaa aaa -aae +aai aaa aaa aaa @@ -113892,128 +114310,128 @@ aaa aaa aaa aaa -aad +aag aaa aaa aaf aaa -acN -aft -agq -ahf -ahV +acQ +afw +agu +ahi +ahX aiT ajU -alj -amy -anM -ape -aqq -arP -atj -auv -avA -atj -axQ -ayS -aAh -aBE -aCP -aEi -aFJ -aHv -aIN -aKf -aLk -aMV -aOp -aPY -aRp -aSI -aTW -aKf -aXc -aCV -bax -bbT -bbT -bfb -bbT -bbT -bki -blV -bnB -bpm +ali +amx +anH +aoW +aqg +arC +asX +auh +avl +asX +axG +ayN +aAf +aBz +aCG +aEb +aFm +aGI +dhF +aJh +aKp +aLU +aNh +aOH +aPO +aRb +aSj +aJh +aUU +aCM +dtR +aZw +aZw +bcu +aZw +aZw +bhL +bjv +bla +bmQ +boX bro -btH -bvN -bxm -bzt -bBh -bzv -bBe -bGr -bIn -bJY -bBe -bNq -bNh -bQO -bSu -bUd -bVu -bNh -bNh -bNh -bWq -bWq -bWq -ceM -bWq -bWq -cjk -ckx -ckx -cng -ckx -cqg -cri -ckx -ctT -cvn -cwp -cxF -cyx -czA -cAI -cBR -cBR -cDY -cEU -czC -cGU -cHT -cIM -cHV -cKR -cGS +bts +buR +bwV +byF +bwX +byC +cTR +bFt +bHf +byC +bKn +bKe +bNF +bOZ +bQJ +bRZ +bKe +bKe +bKe +bST +bST +bST +caQ +bST +bST +cfg +cJa +cJa +ciX +cJa +clW +cIk +cJa +cpG +kVo +dDu +ctk +cuc +cuZ +dyp +cwZ +cwZ +cyM +xVP +krD +czF +cAN +cBJ +cAP +cDs +czD aaf aaa aaf -cky -cQS -cky +dvY +cJe +dvY aaa -cTC -cUs -cTC +dbN +dbQ +dbN aaa aaa aaa aaf aaa aaa -cyG +vLD aaa aaf aaa @@ -114149,121 +114567,121 @@ aaa aaa aaa aaa -aad +aag aaa aaa aaf aaa -acN -afu -ags -ahg -ahV +acQ +afx +agw +ahj +ahX aiT ajU aiT -amz -anN -apf -aqr -arQ -atk -auw -avB -atk -auw -ayT -aAi -aBF -aCQ -aEj -aFK -aHx -aIO -aKf -aLl -aMW -aOq -aPZ -aOq -aSJ -aTX -aKf -avS -apj -bay -bbT -bdL -bfc -bgE -bbT -bkj -blW -bnv -bpl -bpl -btI -bpk -bxn -bzu -bBi -bBe -bzv -bGs -bzv -bJX -bBe -bNr -bNh -bQN -bSv -bUe -bVv -bWv -bXN -bNh -caF -ccc -cdr -ceN -cgy -bWq -cjl -cky -cky -cky -cky -cqh -cky -cky -cky -cky -cky -cky -cyy -czA -cAJ -cBS -cBS -cDZ -cBT -czC -cGV -cHT -cIN -cGS -cKS -cGS +amy +anI +aoX +aqh +arD +asY +aui +avm +asY +aui +ayO +aAg +aBA +aCH +aEc +aFn +aGK +aUX +aJh +aKq +aLV +aNi +aOI +aNi +aRc +aSk +aJh +avD +dnR +dtS +aZw +bbk +bcv +bdX +aZw +bhM +bjw +bkU +alq +alq +brp +bmP +buS +bwW +byG +byC +bwX +bDI +bwX +bHe +byC +bKo +bKe +bNE +bPa +bQK +bSa +bSX +bUp +bKe +bWV +bYm +bZw +caR +ccA +bST +cfh +dvY +dvY +dvY +dvY +clX +dvY +dvY +dvY +dvY +dvY +dvY +qnJ +cuZ +upN +cxN +cxN +qJZ +cxO +krD +czG +cAN +cBK +czD +cDt +czD aaf aaa aaf -cky -cQR -cky +dvY +kDM +dvY aaa -cTC -cUr -cTC +dbN +xse +dbN aaf aaf aaf @@ -114406,120 +114824,120 @@ aaa aaa aaa aaf -aae +aai aaf aaf aaf aaa -acN -afv -agt -ahh -ahV +acQ +afy +agx +ahk +ahX aiU ajV -alk -amA -anO -apg -aqs -arR -atl -aux -avC -awR -aux -ayU -aAj -aBG -aCR -aux -aFL -aHy -aIP -aKf -aLm -aMW -aOq -aQa -aOq -aSK -aTY -aKf -avQ -apk -apk -bbT -bdM -bfd -bgF -bbT -bkk -blX -bnC -bpl -brp -btJ -bpk -bxo -bzv -bBj -bCW -bEG -bGt -bIo -bIl -bBe -bNs -bNh -bQP -bQP -bUf -bVw -bWw -bXO -bNh -caG -ccd -cds -ceO -cgz -bWq -cjm -bfw -clI -cky -coD -cqi -crj -cky -ctU -cvo -ctU -cky -cyz -czA -cAK -cBT -cBT -cEa -cEV -czC -cGW -cHU -cIO -cHV -cKT -cLS +alj +amz +anJ +aoY +aqi +arE +asZ +auj +avn +awF +auj +ayP +aAh +aBB +aCI +auj +aFo +aGL +aHR +aJh +aKr +aLV +aNi +aOJ +aNi +aRd +aSl +aJh +avB +dnS +dnS +aZw +bbl +bcw +bdY +aZw +bhN +bjx +blb +alq +boY +brq +bmP +buT +bwX +byH +bAr +bBY +bDJ +bFu +bFr +byC +bKp +bKe +bNG +bNG +bZx +cgF +bSY +bUq +bKe +diw +bYn +diz +caS +ccB +bST +cfi +aqr +chB +dvY +cku +clY +cmY +dvY +cpH +cqX +cpH +dvY +cud +cuZ +eXy +cxO +cxO +dGH +mzh +krD +cQB +cAO +cBL +cAP +cDu +cEA aaf aaa aaa -acg -cQT -acg +ack +cJf +ack aaa aaf -cUt +dbR aaa aaa aaa @@ -114527,7 +114945,7 @@ aaa aaf aaa aaa -aqL +aqB aaa aaa aaa @@ -114668,106 +115086,106 @@ aaa aaa aaf aaa -acM -acM -agu -ahi -ahW +acP +acP +agy +ahl +ahY aiV aiV aiV -amB -anP -aph -aqt -arO -arO -auy -avD -arO -axR -avD -aAk -arO -avD -aEk -arO -aHz -avD -aKf -aLn -aMW -aOq -aQb -aRq -aSL -aTZ -aVB -aXd -aYH -aYH -bbT -bbT -bfe -bbT -bbT -bkb -blP -bnD -bpl -brq -btK -bpk -bpk -bzw -bBk -bCX -bEH -bEH -bIp -bJZ -bLy -bzw -bNh -bNh -bNh -bNh -bNh -bWx -bXP -bNh -bWq -bWq -bWq -ceP -cgA -bWq -cjn -aYQ -bZf -cky -coE -cqj -cdk -csE -ctV -cvp -cwq -cky -cyA -czB -cAL -cBU -cCR -cBT -cEW -czC -cGX -cHV -cHV -cGS -anX -bnZ +amA +anK +aoZ +aqj +arB +arB +auk +avo +arB +axI +avo +aAi +arB +avo +aEd +arB +aGM +avo +aJh +aKs +aLV +aNi +aOK +aPP +aRe +aSm +aTC +aUV +aWv +aWv +aZw +aZw +bcx +aZw +aZw +bhE +bjp +bkY +alq +bcs +brr +bmP +bmP +byN +dhU +bAs +bBZ +bBZ +bFv +bHg +dii +byN +bKe +bKe +bKe +bKe +bKe +bSZ +bUr +bKe +bST +bST +bST +caT +ccC +bST +dDs +apc +apb +dvY +ckv +clZ +cmZ +cor +cpI +cqY +crY +dvY +lzk +gix +cwd +kfu +cxP +cxO +gnZ +krD +czI +cAP +cAP +czD +anS +blx aaa aaa aaa @@ -114776,7 +115194,7 @@ aaf aaa aaa aaf -cUt +dbR aaa aaf aaa @@ -114784,7 +115202,7 @@ aaa aaf aaa aaf -anY +anT aaa aaa aaa @@ -114921,127 +115339,127 @@ aaa aaa aaf aaa -acM -acM -acN -acM -acM -afw -agv -ahj -ahi +acP +acP +acQ +acP +acP +afz +agz +dBY +ahl aiW aja -all -amC -anP -aph -aqu -arO -atm -auz -avE -awS -axS -avE -aAl -arO -aCS -aEl -arO -aHA -aIQ -aKf -aLo -aMX -aOr -aQc -aOr -aSM -aUa -aKf -aXe -aYH -baz -bbU -bdN -bff -bgG -aYH -bkl -blP -bnE -bpn -brr -btL -bvO -bxp -bzw -bBl -bCY -bEI -bGu -bIq -bKa -bLz -bzw -bzw -bQQ -bSw -bUg -bzw -bWy -bXQ -bZa -caH -cce -bZa -ceQ -cgB -chW -cjo -aYQ -clJ -cky -cky -cky -cky -cky -ctW -cvq -cky -cky -cyB -czC -cAM -cBV -cCS -cBT -cEX -czC +alk +amB +anK +aoZ +aqk +arB +ata +aul +avp +awG +axJ +avp +aAj +arB +aCJ +aEe +arB +boS +aHS +aJh +aKt +aLW +aNj +aOL +aNj +aRf +aSn +aJh +dCC +aWv +aYi +aZx +bbm +bcy +bdZ +aWv +dCJ +bjp +blc +bmR +boZ +brs +btt +avs +byN +bGg +bAt +bCa +bDK +bFw +bHh +bIA +byN +byN +dil +bPb +diq +byN +bTa +bUs +bVz +bWX +bYo +bVz +caU +ccD +cdV +cfj +apc +chC +dvY +dvY +dvY +dvY +dvY +cpJ +cqZ +dvY +dvY +obb +krD +kOt +gRS +oUA +cxO +qRM +krD aaf aaf aaf -anX -anX -anX +anS +anS +anS aaa aaf -aqL -anY -anY -anY +aqB +anT +anT +anT aaf aaf -cUt -aqL -anY -aqL -anY -anY -anY +dbR +aqB +anT +aqB +anT +anT +anT aaf -anY +anT aaa aaa aaa @@ -115178,104 +115596,104 @@ aaa aaa aaf aaf -acN -adg -adB -aeb -aey -afx -agv -ahk -ahX +acQ +adj +adE +aed +aeA +afA +agz +ahm +ahZ aiX ajW aiX aiX -anQ -aph -aqv -arO -atn -auA -arO -atg -axT -arO -aAm -arO -aCT -aEm -arO -aHB -aIR -aKf -aLp -aMY -aOs -aQd -aRr -aSN -aLp -aKf -aXf -aYH -baA -bbV -bdO -bfg -bgH -aYH -bkm -blY -bnF -bpo -brs -btM -bvP -bxq -bzw -bBm -bCZ -bEJ -bGv -bIr -bKb -bLA -bNt -bPb -bQR -bSx -bUh -bzw -bWz -bXR -bZb -caI -ccf -cdt -ceR -cdx -chX -cjp -aYQ -clK -cky -coF -cqk -crk -csF -ctX -cqi -cwr -cky -cyC -czC -cAN -cBW -cCT -cEa -cBT -czC +anL +aoZ +aql +arB +atb +aum +arB +asU +axK +arB +aAk +arB +aCK +aEf +arB +aGO +aHT +aJh +aKu +aLX +aNk +aOM +aPQ +aRg +aKu +aJh +aUW +aWv +aYj +aZy +bbn +bcz +bea +aWv +bhO +bjy +bld +bmS +bpa +brt +btu +buU +byN +dhV +bAu +bCb +byJ +bFx +bHi +bIB +bKq +bLQ +bNI +bPc +dir +byN +bTb +bUt +bVA +nyo +bYp +bZy +tsx +bZB +cdW +cfk +apc +chD +dvY +ckw +cma +cna +cos +dxh +clY +crZ +dvY +tVY +krD +oLW +gGT +wPk +dGH +cxO +krD aaf aaa aaf @@ -115290,7 +115708,7 @@ aaa aaa aaa aaa -cUu +cSz aaa aaa aaf @@ -115298,7 +115716,7 @@ aaa aaa aaf aaa -anY +anT aaa aaa aaa @@ -115418,7 +115836,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -115435,104 +115853,104 @@ aaa aaa aaf aaa -acM -adh -adC -adh -acM -afy -agv -ahl -ahY +acP +adk +adF +adk +acP +afB +agz +ahn +aia aiY aiY -alm -amD -amD -api -aqw -arO -ato -auB -arO -awT -aur -arO -aAn -arO -ato -aEn -arO -aHC -aIS -aKf -aLq -aMZ -aOt -aQe -aRs -aSO -aMZ -aKf -avQ -aYH -baB -bbV -bdP -bfh -bgI -aYH -bkh -blZ -bnA -bpl -brt -btN -bpl -bpl -bzw -bBn -bDa -bEK -bEK -bIs -bKc -bLB -bzw -bPc -bQS -bSy -bUi -bzw -bWA -bXS -bZc -caJ -ccg -bZc -ceS -bpl -bpl -cjq -bpl -bpl -cky -coG -cmS -cql -csG -crn -cvr -cws -cky -cyD -czC -cAO -cBX -cCU -cBT -cEY -czC +all +amC +amC +apa +aqm +arB +atc +aun +arB +awH +aud +arB +aAl +arB +atc +aEg +arB +aGP +aHU +aJh +aKv +aLY +aNl +aON +aPR +aRh +aLY +aJh +avB +aWv +aYk +aZy +apx +bcA +beb +aWv +bhK +bjz +bkZ +alq +bpb +bru +alq +alq +byN +byL +bAv +bCc +bCc +bFy +bHj +bIC +byN +bLR +bNJ +bPd +cco +byN +bTc +bUu +xVl +kys +cow +xVl +dLK +alq +alq +cfl +alq +alq +dvY +ckx +ciL +dwQ +cot +cnb +cra +csa +dvY +lMz +krD +ocT +xkG +uTS +cxO +ykE +krD aaa aaa aaa @@ -115541,21 +115959,21 @@ aaf aaa aaf aaa -cOW -cOW -cOW -cOW -cOW +dbJ +dbJ +dbJ +dbJ +dbJ aaf -cUv +cRO aaa -cOW -cOW -cOW -cOW -cOW +dbJ +dbJ +dbJ +dbJ +dbJ aaa -aqL +aqB aaf aaa aaa @@ -115692,127 +116110,127 @@ aaa aaa aaf aaa -acM -adi -adD -adi -aez -afz -afz -afz -ahZ -acN -acN -aln -amE -amE -amE -aqx -arO -arO -arO -arO -arO -arO -arO -aAo -arO -arO -arO -arO -arO -arO -aKf -aKf -aKf -aKf -aKf -aKf -aKf -aKf -aKf -aXg -aYH -baC -bbW -bdQ -bfi -bgJ -bir -bkd -bma -bnx -bpl -bpl -btO -bpl -bxr -bzw -bBo -bDb -bEL -bGw -bIt -bKd -bLC -bzw -bPd -bQT -bSz -bUj -bzw -bxz -bXT -bZc -bZc -cch -bZc -ceS -bpl -chY -cjr -aYQ -clL +acP +adl +bih +adl +aeB +afC +afC +afC +aib +acQ +acQ +alm +amD +amD +amD +aqn +arB +arB +arB +arB +arB +arB +arB +aHQ +arB +arB +arB +arB +arB +arB +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +aJh +biq +aWv +aYl +aZz +bbp +bcB +bec +bfO +bhG +bjA +bkW +alq +alq +brv +alq +buV +byN +dhW +dhX +bCd +dib +bFz +dif +dij +byN +bLS +dim +bPe +dis +byN +bvd +bUv +xVl +xVl +mvj +xVl +dLK +alq +cdX +cfm +apc +chE +dvY cky -coH -cmS -crl -cmS -cmS -csH -cwt -cky -cyE -czC -cAP -cBY -cCV -cBT -cEZ -czC +ciL +dwX +ciL +ciL +cou +csb +dvY +mjJ +krD +eqq +llb +hfJ +cxO +tjH +krD aaa aaa aaa aaa aaf aaa -anY +anT aaa -cOX -cQb -cQb -cQb -cQb -cTD -cUv -cVj -cVP -cVP -cVP -cVP -cXn +dbK +dbM +dbM +dbM +dbM +dbO +cRO +cSC +dbV +dbV +dbV +dbV +dbW aaf -anY +anT aaf aaa aaa @@ -115949,127 +116367,127 @@ aaa aaa aaf aaa -acO -adi -adE -adi -aeA -afA -afA -afA -afA -afA -afA -afA -afA -afA -afA -aqy -arS -als -auC -avF -awU -axU -als -ayb -als -aCU -aEo -aFM -aHD -aIT -als -aLr -aNa -aOu -apj -aRt -aSP -aUb -als -avQ -aYH -baD -bbX -bdR -bfj -bgK -bis -bkg -blT -bnv -bpl -bru -btP -bvQ -bxs -bzw -bzw -bzw -bzw -bzw -bIu -bzw -bzw -bzw -bzw -bzw -bSA -bzw -bzw -bWB -bXU -bZd -bZg -cci -cdu -ceT -bpl -chZ -bSG +jwW +adl +aQf +adl +aeC +afD +afD +afD +afD +afD +afD +afD +afD +afD +afD +aqo +dhw +dnh +auo +avq +awI +axL +dnh +axO +dnh +dhB +aLk +aHW +aYa +aHV +dnh +aKw +aLZ +aNm +dnR +aPS +cXc +aSo +dnh +avB +aWv +aYm +aZA +bbq +bcC +bed +bfP +bhJ +bjt +bkU +alq +atj +brw +btv +dbj +byN +byN +byN +byN +byN +bFA +byN +byN +byN +byN +byN +bPf +byN +byN +cjr +bTe +bVB +bVC +nAG +pCV +caW +alq +cdY +bPl +avr +chF +dvY ckz -clM -cky -coI -cmS -crm -cmS -cmS -cvs -cwu -cky -cyF -czC -cAQ -cBZ -cCW -cBT -cFa -czC +ciL +dwY +ciL +ciL +cgs +csc +dvY +evy +krD +lsv +txj +eEe +cxO +ngl +krD aaa aaa aaa aaf aaf aaa -anY +anT aaf -cOY -cOY -cOY -cOY -cOY +dbL +dbL +dbL +dbL +dbL aaf -cUw +dbS aaf -cOY -cOY -cOY -cOY -cOY +dbL +dbL +dbL +dbL +dbL aaa -anY +anT aaa aaa aaa @@ -116204,113 +116622,113 @@ aaa aaa aaa aaa -aae +aai aaa aaa -adi -adF -adi -aeA -afA -afA -afA -afA -afA -afA -afA -afA -afA -afA -aqy -als -als -als -als -als -axV -ayV -aAp -aBH -aCV -avU -aFN -aHE -aFM -aKg -aCV -aCV -aOv -aCV -aRu -aSQ -aCV -aCV -avU -aYH -baE -bbY -bdS -bfk -bgL -aYH -bkn -bmb -bnG -bpp -brv -btQ -bvR -bxt -bzx -bBp -bvR -bEM -bzx -bIv -bKe -bLD -bKe -bPe -bKe -bSB -bKe -bVx -bWC -bXV -bZe -bZe -ccj -cdv -cdA -cdA -cdA -cdA -cdA -cdA -cdA -coJ -cql -crn -csH -ctY -cmS -cwu -cky -cyG -czC -cAR -cCa -cCX -cBT -cFb -czC +adl +adI +adl +aeC +afD +afD +afD +afD +afD +afD +afD +afD +afD +afD +aqo +dnh +dnh +dnh +dnh +dnh +axM +ayQ +aAn +aIv +aCM +avF +aLJ +aNS +aHW +dhH +aCM +aCM +dCs +aCM +aPT +aRi +aCM +aCM +avF +aWv +aYn +aZB +bbr +bcD +bee +aWv +bhP +bjB +ble +bmT +bpc +dhQ +btw +buX +bwY +bGp +btw +dCV +bwY +bFB +bHl +bIE +bHl +bTd +bHl +bPg +bHl +bSc +eoK +uHc +uJU +uJU +pvA +bZA +bZE +bZE +bZE +bZE +bZE +bZE +bZE +ckA +dwQ +cnb +cou +cpK +ciL +csc +dvY +vLD +krD +jyv +ohj +nnK +cxO +gfh +krD aaa aaa aaa aaa aaf aaa -anY +anT aaf aaf aaf @@ -116318,7 +116736,7 @@ aaf aaa aaa aaa -cUv +cRO aaa aaf aaa @@ -116326,7 +116744,7 @@ aaa aaf aaa aaa -anY +anT aaa aaa aaa @@ -116461,129 +116879,129 @@ aaa aaa aaa aaa -aad +aag aaa aaa aaa -adG +bii aaa -aeA -afA -afA -afA -afA -afA -afA -afA -afA -afA -afA -aqy -arT -atp -auD -apj -als -axW -apj -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -aYI -aYI -aYI -aYI -aYI -aYI -aYI -bko -blT -bnH -bpq -bpl -bpl -bpl -bxu -bpl -bpl -bpl -bpl -bpl -bpl -bpl -bpl -bNu -bNu -bNu -bNu -bNu -bpl -bpl -bpl -bZf -bZf -caM -cdw -cdA -cgC -cia -cjs -ckA -clN -cdA -coK -cqm -cro -csI -ctZ -cvt -cwv -cky -cyG -czC -czC -cCb -czC -cCb -czC -czC +aeC +afD +afD +afD +afD +afD +afD +afD +afD +afD +afD +aqo +arG +asB +aup +dnR +dnh +axN +dnR +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +aWw +aWw +aWw +aWw +aWw +aWw +aWw +bhQ +bjt +blf +bmU +alq +alq +alq +buY +alq +alq +alq +alq +alq +alq +alq +alq +bKr +bKr +bKr +bKr +bKr +alq +alq +alq +apb +apb +bXa +bZz +bZE +ccE +cdZ +cfn +cgt +chG +bZE +ckB +cmb +cnc +cov +cpL +crb +csd +dvY +vLD +krD +krD +noG +krD +noG +krD +krD aaa aaa aaa aaa aaf aaa -aqL +aqB aaa -cOW -cOW -cOW -cOW -cOW +dbJ +dbJ +dbJ +dbJ +dbJ aaf -cUv +cRO aaa -cOW -cOW -cOW -cOW -cOW +dbJ +dbJ +dbJ +dbJ +dbJ aaf -anY +anT aaa aaa aaa @@ -116718,98 +117136,98 @@ aaa aaa aaa aaa -aae +aai aaf aaf aaf -aae +aai aaf -aeA -afA -afA -afA -afA -afA -afA -afA -afA -afA -afA -aqy -arU -atq -auE -avG -als -axX -anR -awW -aBI -aCW -aEp -aFO -aHF -awW -aKh -aKi -aNb -aNb -awW -aRv -aSR -aUc -aVC -awW -aYJ -baF -bbZ -bdT -bfl -bgM -aYI -bkm -bmc -bnI -bpr -brw -bpr -bvS -bxv -bzy -bBq -bDc -bEN -bGx -bIw -bKf -bLE -bNv -bPf -bQU -bSC -bNu -bVy -bSH -bpl -bZg -caK -cck -cdw -cdA -cgD -cib -cib -ckB -clO -cdA -cky -cky -cky -cky -cua -cky -cky -cky +aeC +afD +afD +afD +afD +afD +afD +afD +afD +afD +afD +aqo +arH +dpk +auq +dqp +dnh +azr +dnz +axY +aBD +aCN +aEh +aFp +aGQ +axY +aJj +aJk +aMa +aMa +axY +aPU +aRj +aSp +aTD +axY +aWx +aYo +aZC +bbs +bcE +bef +aWw +bhO +bjC +blg +bmV +bpd +bmV +btx +buZ +bwZ +byP +bAx +bCe +bDM +bFC +bHm +bIF +bKs +bLU +bNL +bPh +bKr +bSd +bPm +alq +bVC +bWY +bYr +bZz +bZE +ccF +cea +cea +cgu +chH +bZE +dvY +dvY +dvY +dvY +dxk +dvY +dvY +dvY aaf aaf aaf @@ -116824,23 +117242,23 @@ aaa aaf aaf aaf -anY +anT aaa -cOX -cQb -cQb -cQb -cQb -cTD -cUv -cVj -cVP -cVP -cVP -cVP -cXn +dbK +dbM +dbM +dbM +dbM +dbO +cRO +cSC +dbV +dbV +dbV +dbV +dbW aaf -anY +anT aaa aaa aaa @@ -116979,94 +117397,94 @@ aaa aaa aaa aaa -aad +aag aaa -aeA -afA -afA -afA -afA -afA -afA -afA -afA -afA -afA -aqy -arV -atr -auF -ats -auI +aeC +afD +afD +afD +afD +afD +afD +afD +afD +afD +afD +aqo +arI +atd +bai +ate +dDL +axP +dnS axY -apk -awW -aBJ -aAs -aEq -aFP -aHG -awW -aKi -aKi -aNb -aOw -awW -aRw -aSS -aUd -aVD -awW -aYK -baG -bca -bdU -bfm -bgN -aYI -bkp -bmd -bnJ -bps -brx -btR -btR -bxw -bzz -btR -bDd -bDd -bGy -bIx -bKg -bLF -bNw -bPg -bQV -bSD -bNu -bVz -bWD -bpl -bZh -caL -ccl -cdx -cdA -cgE -cic -cjt +aBE +aCO +aEi +aFq +aGR +axY +aJk +aJk +aMa +aNn +axY +aPV +aRk +aSq +aTE +axY +aWy +aYp +aZD +bbt +bcF +beg +aWw +bhR +bjD +blh +bmW +bpe +bry +bry +bva +bxa +bry +bAy +bAy +bDN +bFD +bHn +bIG +bKt +bLV +bNM +bPi +bKr +bNO +bTf +alq +diu +bWZ +bYs +bZB +bZE +ccG +ceb +cfo +cgv +chI +ciY ckC -clP -cnh -coL -cqn -cqn -cqn -cub -cvu +cmc +cmc +cmc +cpM +crc aaf -cxG +ctl aaa aaf aaf @@ -117076,28 +117494,28 @@ aaf aaf aaf aaf -cHW -cHW +lMJ +lMJ aaf aaa aaf -anY +anT aaf -cOY -cOY -cOY -cOY -cOY +dbL +dbL +dbL +dbL +dbL aaf -cUv +cRO aaf -cOY -cOY -cOY -cOY -cOY +dbL +dbL +dbL +dbL +dbL aaa -anY +anT aaa aaa aaa @@ -117236,94 +117654,94 @@ aaa aaa aaa aaa -aae +aai aaa -aeB -afz -afz -ahm -aia -acN -acN -alo -amF -amF -amF -aqz -als -apj -auG -apk -als -axZ -apk -awW -aBK -aCX -aEr -aFQ -aHH -awW -aKj -aLs -aEL -aOx -awW -aRx -aST -aUe -aVD -awW -aYL -baG -bcb -bdV -bfn -bgO -aYI -bkq -bme -bnK -bpt -bry -btS -bvT -bxx -bzA -bBr -bDe -bEO -bvT -bIy -bKh -bLG -bNu -bPh -bQW -bSE -bNu -bfw -bWE -bpl -bZi -caM -ccm -cdy -ceU -cgF -cid -cju -cjv -clQ -ckG -ckG -ckG -ckG -ckG -cuc -cvv -acg -acg +aeE +afC +afC +aho +aic +acQ +acQ +aln +amE +amE +amE +aqp +dnh +dnR +aus +dnS +dnh +aAm +dnS +axY +aBF +aCP +aEj +aFr +aGS +axY +aJl +aKx +aJu +aNo +axY +aPW +aRl +aSr +aTE +axY +aWz +aYp +aZE +bbu +bcG +beh +aWw +bhS +bjE +bli +bmX +bpf +brz +bty +bvb +bxb +byQ +bAz +bCf +bty +bFE +bHo +bIH +bKr +bLW +bNN +bPj +bKr +aqr +bTg +alq +bVE +bXa +bYt +bZC +caX +ccH +cec +cfp +cfq +chJ +cgz +cgz +cgz +cgz +cgz +cpN +crd +ack +ack aaf aaf aaa @@ -117338,7 +117756,7 @@ aaa aaf aaf aaf -anY +anT aaa aaa aaf @@ -117346,7 +117764,7 @@ aaf aaf aaa aaa -cUv +cRO aaa aaa aaf @@ -117354,7 +117772,7 @@ aaf aaf aaf aaa -aqL +aqB aaf aaa aaa @@ -117498,89 +117916,89 @@ aaa aaa aaf aaa -acM -aib +acP +aid aiZ ajX -alp -acM -anR -apj -aqA -als -als -als -als -als -aya -ayW -awW -aBL -aAu -aEs -aFR -aHI -awW -aKk -aEL -aNc -aOy -awW -aRy -aSU -aUf -aRy -awW -aYI -baH -bcc -bdW -bfn -bgP -aYI -bkr -bkr -bnL -bpu -brz -bkr -bkr -bxy -bzB -bzB -bDf -bEP -bGz -bIz -bzJ -bzF -bzB -bNu -bNu -bNu -bNu -aYQ -aYQ -bpl -bpl -caN -ccn -cdz -ceV -cgG -cie -cjv +alo +acP +dnz +dnR +dht +dnh +dnh +dnh +dnh +dnh +axQ +ayR +axY +aBG +dCk +aEk +aFs +aGT +axY +aJm +aJu +aMb +fdr +axY +aPX +aRm +aSs +aPX +axY +aWw +aYq +aZF +bbv +bcG +bei +aWw +bhT +bhT +blj +bmY +dBI +bhT +bhT +bvc +bxc +bxc +bAA +bCg +dBK +bFF +bxk +bxg +bxc +bKr +bKr +bKr +bKr +apc +apc +alq +alq +bXb +bYu +bZD +caY +ccI +ced +cfq +cgw +cfs +ciZ ckD -cjx -cni -coM -cni -crp -ckG -ckG -cvw +ciZ +cnd +cgz +cgz +cre aaa -acg +ack aaa aaa aaa @@ -117595,23 +118013,23 @@ aaa aaa aaf aaa -aqL +aqB aaf -cOW -cOW -cOW -cOW -cOW +dbJ +dbJ +dbJ +dbJ +dbJ aaf -cUv +cRO aaa -cOW -cOW -cOW -cOW -cOW +dbJ +dbJ +dbJ +dbJ +dbJ aaf -anY +anT aaa aaa aaa @@ -117755,89 +118173,89 @@ aaf aaf aaf aaa -acM -aic +acP +aie aja ajY -alq -amG -anS -apk -aqB -apk -apk -auH -apk -apk -ayb -apk -awW -aBM -aCY -aEt -aFS -aHJ -awW -awW -aLt -aLt -awW -awW -aRz -aSV -aUg -aVE -aXh -aYM -baG -bcd -bdX -bfo -bgQ -bit -bks -bmf -bnM -bpv +alp +amF +anN +dnS +doh +dnS +dnS +dCi +dnS +dnS +axO +dnS +axY +aBH +aCQ +aEl +aFt +aGU +axY +axY +aKz +aKz +axY +axY +aPY +aRn +aSt +aTF +aUY +aWA +aYp +aZG +bbw +bcH +bej +bfQ +bhU +bjF +blk +bmZ +bpg brA -btT -bvU -bxz -bzC -bBs -bDg -bEQ -bGA -bIA -bKi -bLH -bNx -aYT -bQX -bSF -bUk -bVA -bWF -bXW -bZj -caO -aYQ -cdA -ceW -cgH -cif -cjw +bep +bvd +bxd +byR +bAB +bCh +bDO +bFG +bHp +bII +aaO +atm +bLX +bPk +bQQ +bSe +bTh +bUx +aut +bXc +apc +bZE +caZ +ccJ +cee +cfr +cgx +chL +cja ckE -clR -cnj -coN -cqo -crq -csJ -cud -cvx +cmd +cne +cNw +cOa +crf aaa -acg +ack aaa aaa aaa @@ -117852,21 +118270,21 @@ aaa aaa aaf aaa -anY +anT aaf -cOX -cQb -cQb -cQb -cQb -cTD -cUv -cVj -cVP -cVP -cVP -cVP -cXn +dbK +dbM +dbM +dbM +dbM +dbO +cRO +cSC +dbV +dbV +dbV +dbV +dbW aaa aaf aaa @@ -118012,89 +118430,89 @@ aaa aaa aaf aaa -acM -acN -acN -acN -acM -acM -als -als -als -als -als -als -als -als -ayc -awW -awW -aBN -aCZ -aEu -aFT -aBN -aBN -aKl -aAs -aFP -aOz -aBN -aRA -aSW -aUh -aVF -aXi -aYN -baI -bce -bdY -bfp -bgR -biu -bkt -bmg -bnN -bpw -brA -btU -bvU -bxA -bzC -bBt -bDh -bER -bGB -bIB -bKj -bLI -bNy -aYT -bQY -bSG -aYQ -bef -aYQ -bXX -bpl -caP -cco -cdA -ceX -cgI -cig -cjx +acP +acQ +acQ +acQ +acP +acP +dnh +dnh +dnh +dnh +dnh +dnh +dnh +dnh +aBC +axY +axY +aBI +aCR +aEm +aFu +aBI +aBI +aJn +aCO +aFq +aNq +aBI +aPZ +aRo +aSu +aTG +aUZ +aWB +aYr +aZH +bbx +bcI +bek +bfR +bhV +bjG +bll +bna +bpg +brB +bep +bve +bxd +byS +bAC +dBJ +dCY +bFH +bHq +bIJ +aiN +atm +bLY +bPl +apc +aqq +apc +bUy +alq +bXd +apf +bZE +cba +ccK +cef +cfs +czH +cLC +cjb ckF -clS -cnk -coO -cnk -crr -ckG -ckG -cvw +cjb +cnf +cgz +cgz +cre aaa -acg +ack aaa aaa aaa @@ -118109,21 +118527,21 @@ aaa aaa aaf aaa -anY +anT aaf -cOY -cOY -cOY -cOY -cOY +dbL +dbL +dbL +dbL +dbL aaf -cUx +dbT aaf -cOY -cOY -cOY -cOY -cOY +dbL +dbL +dbL +dbL +dbL aaa aaa aaa @@ -118273,85 +118691,85 @@ aaa aaa aaa aaf -alr +dni +amG amH -amI -anS -apk -arW -arV -als -avH -aqB -ayb -awW -aAq -aBO -aDa -aEv -aFU -aHK -aIU -aEq -aLu -aNd -aEq -aQf -aEq -aSX -aUi -aVG -aXj -aYI -aYI -aYI -aYI -aYI -aYI -aYI -bku -bmg -bnO -bpx -brA -btV -bvU -bxB -bzC -bBu -bDi -bES -bGC -bIC -bKk -bLJ -bNz -aYT -bQZ -bSH -aYQ -bVB -aYQ -bzB -bzB -caQ -bzB -bzB -bzB -cgJ -bzB -cjy -ckG -ckG -ckG -ckG -ckG -crs -ckG -cue -acg -acg -acg +anN +dnS +arJ +arI +dnh +dqu +doh +axO +axY +aAo +aBJ +ayT +aEn +aFv +aGV +aHX +aEi +aKA +aMc +aEi +aOO +aEi +aRp +aSv +aTH +aVa +aWw +aWw +aWw +aWw +aWw +aWw +aWw +bhW +bjG +blm +bnb +bpg +brC +bep +bCK +bxd +byT +bAD +bCj +bDP +bFI +bHr +bIK +bBt +atm +bLZ +bPm +apc +bSf +apc +bxc +bxc +bXe +bxc +bxc +bxc +ccL +bxc +cft +cgz +cgz +cgz +cgz +cgz +cng +cgz +cpP +ack +ack +ack aaa aaa aaa @@ -118366,7 +118784,7 @@ aaa aaa aaf aaa -anY +anT aaa aaa aaf @@ -118374,7 +118792,7 @@ aaf aaa aaa aaa -cUt +dbR aaa aaf aaa @@ -118530,73 +118948,73 @@ aaf aaf aaf aaf -als -amI -als -apl -apk -arX -apk -als -als -als -ayb -awW -aAr -aBP -aDb -aEw -aFV -aHL -aIV -aIV -aLv -aNe -aOA -aQg -aRB -aSY -aUj -aVH -aXk -aYO -baJ -bcf -bdZ -bfq -aBN -biv -bkv -bmh -bnP -bpy -brB -btW -bvU -bxC -bzC -bBv -bDj -bET -bER -bID -bKl -bLK -bNA -aYT -bRa -bSI -bUl -aYQ -bWG -bzB -bZk -caR -ccp -cdB -ceY -cgK -bzB +dnh +amH +dnh +apd +dnS +arK +dnS +dnh +dnh +dnh +axO +axY +aAp +aBK +aCS +aEo +aFw +aGW +aHY +aHY +aKB +aMd +aNr +aOP +dCw +aRq +aSw +aTI +aVb +aWC +aYs +aZI +bby +bcJ +aBI +byK +bhX +bjH +bln +bnc +bph +brD +bep +bvg +bxd +byU +bAE +bCk +dBJ +bFJ +bHs +bIL +cVD +atm +cTw +bPn +bQR +apc +anM +bxc +bVF +bXf +bYv +bZF +cbb +ccM +bxc aaf aaf aaf @@ -118623,22 +119041,22 @@ aaa aaa aaf aaa -anY -anY -anY -anY -anY +anT +anT +anT +anT +anT aaa aaf aaa -cUt +dbR aaa aaa aaa aaf aaf -anY -anY +anT +anT aaa aaa aaa @@ -118788,81 +119206,81 @@ aaf aaa aaf aaa -acg -als -apm -apk -arY -ats -auI -avI -awV -ayd -awW -aAs -aBQ -aDc -aEx -aFW -aHM -aFW -aFW -aFW -aNf -aFW -aQh -aFW -aSZ -aUk -aVI -aXl -aYP -baK -bcg -bea -bfr -bgS -biw -bkw -bmi -bml -bnQ -brC -btX -bvV -bxD -bzC -bBw -bDk -bEU -bGD -bIE -bzJ -bLL -bNB -bzB -bzB -bzB -bzB -bzB -bzB -bzB -bZl -caS -bDt -cdC -ceZ -cgL -cih -cjz -bDw -bDw -bDw -bDw -bDw +ack +dnh +ape +dnS +arL +ate +dDL +avt +awJ +axS +axY +aCO +ddW +aCT +aEp +aKC +aFx +aKC +aKC +aKC +aMe +aKC +aOQ +aKC +aRr +aSx +aTJ +dfX +aWD +aVc +aZJ +bbz +bcK +bel +bfT +bhY +bjI +bjL +blo +bpi +brE +btz +bvh +bxd +byV +bAF +bCl +bDQ +bFK +bxk +bIM +bKu +bxc +bxc +bxc +bxc +bxc +bxc +bxc +bVG +bXg +bAO +bZG +cbc +cUR +cVy +cVz +bAR +bAR +bAR +bAR +bAR aaf aaa -aae +aai aaf aaf aaa @@ -118880,18 +119298,18 @@ aaa aaf aaf aaa -anY +anT aaa aaa aaf aaa aaa -anY +anT aaf -cUy +dbU aaf -aqL -aab +aqB +aac aaa aaa aaa @@ -119045,83 +119463,83 @@ aaf aaf aaf aaf -acg -alr -apn -apk -apk -apk -als -avJ -awW -aye -awW -aAt -aBR -aDd -aEy -aFX -aHN -aIW -aKm -aFX -aNg -aFX -aQi -aRC -aHN -aFX -aVJ -aXm -aBN -baL -bch -beb -bfs -aBN -biv -bkx -bmg -bnQ -bpz -bnQ -btY -bvU -bxE -bzB -bzB -bzB -bEV -bGE -bBB -bzK -bLM -bzF -bPi -bPi -bSJ -bSJ -bzB -bWH -bXY -bZm -caT -bRf -bRf -cfa -cgM -cii -cjA -ckH -clT -cnl -cnl -bDw +ack +dni +bcO +dnS +dnS +dnS +dnh +avu +axY +axT +axY +aAr +ddX +aCU +aEq +aTO +aGX +aHZ +aJp +aTO +aSB +aTO +aOR +aQa +aGX +aTO +aTK +aVd +aBI +aYt +aZK +bbA +dgz +aBI +byK +bhZ +bjG +blo +bnd +blo +brF +bep +bvi +bxc +bxc +bxc +bCm +bDR +bza +bxl +bIN +bxg +bMa +bMa +bPo +bPo +bxc +bTi +bUz +bVH +bXh +bCi +bCi +cbd +ccN +ceg +cfu +cgA +chN +cjc +cjc +bAR aaf aaa -bBJ +bzi aaa -aae +aai aaa aaa aaa @@ -119137,17 +119555,17 @@ aaa aaa aaf aaa -anY +anT aaa aaa aaf aaf aaa -aqL +aqB aaa aaa aaa -anY +anT aaf aaf aaa @@ -119303,82 +119721,82 @@ aaa aaf aaa aaf -als -apo -aqC -arZ -att -att -avK -awW -ayf -ayX -aAu -aBS -aDe -aEz -aFY -aEI -aIX -awW -aEI -aNh -aEI -aQj -aIX -aEI -aFY -aEz -aXn -awW -baM -baM -baM -baM -baM -baM -bky -bmg -bnQ -bpA -bnQ -btZ -bvU -bvU -bzB -bBx -bDl -bEW -bGF -bIF -bKm -bLN -bNC -bPj -bRb -bSK -bSK -bVC -bWI -bWI -bZn -caU -ccq -ccq -cfb -cgN -bBB +dnh +apg +aqs +arM +dBu +dBu +avv +axY +axU +ayS +dCk +ddY +deb +deh +aFz +aCZ +deM +axY +aCZ +aMg +aCZ +dfh +deM +aCZ +aFz +deh +aVe +axY +aYu +aYu +aYu +aYu +aYu +aYu +bia +bjG +blo +bne +blo +brG +bep +bep +bxc +byW +bAG +bCn +dBM +bFL +bHt +bIO +bKv +bMb +bNP +bPp +bPp +bSg +bDS +bDS +bVI +bXi +bYw +bYw +cbe +ccO +bza aaf -bGQ -clU -cnm -coP -bDw +gJs +chO +cjd +ckG +bAR aaf aaa -bBJ +bzi aaa -bBK +bzj aaf aaf aaf @@ -119389,8 +119807,8 @@ aaa aaa aaf aaf -cHW -cHW +lMJ +lMJ aaf aaf aaa @@ -119400,11 +119818,11 @@ aaa aaa aaa aaa -anY -anY -anY -anY -anY +anT +anT +anT +anT +anT aaa aaa aaa @@ -119563,83 +119981,83 @@ ajb ajb ajb ajb -asa -atu -auJ -avL -atu -ayg -ayY -aAv -aBT -aDe -aEA -aFZ -aHO -aHO -aHO -aHO -aNi -aHO -aHO -aHO -aHO -aUl -aVK -aXn -aYQ -baM -bci -bec -bft -bgT -bix -bkz -bmj -bnR -bpB -brD -bua -bvW -bxF -bzC -bBy -bDm -bEX -bGG -bIG -bKn -bLO -bND -bPk -bRc -bSL -bSL -bKn -bWJ -bKn -bZo -caV -ccr -bPo -cfc -cgO -cij -cjB -ckH -clV -cnn -cnl -bDw +arN +atf +auu +avw +atf +axV +ddP +aAt +aBL +deb +dei +aFA +deB +deB +deB +deB +aMh +deB +deB +deB +deB +aSz +aTM +aVe +apc +aYu +aZL +bbB +bcL +bem +bfV +bib +bjJ +blp +bnf +bpj +brH +btA +bvj +bxd +byX +bAH +bCo +bDT +bFM +bHu +bIP +bKw +bMc +bNQ +bPq +bPq +bHu +bTj +bHu +bVJ +bXj +bYx +bMg +cbf +ccP +ceh +cfv +cgA +chP +cje +cjc +bAR aaf aaa -bBJ +bzi aaa -bBK +bzj aaa aaa aaa -aab +aac aaf aaf aaf @@ -119815,84 +120233,84 @@ aaa aaf ajb ajZ -alt -amJ -anT -app -aqD -asb -atv -auK -avM -awX -ayh -ayZ -aAw -aBU -aDf -aEB -aGa -aHP -aIY -aKn -aLw -aNj -aOB -aQk -aRD -aTa -aUm -aVL -aXo -aYQ -baM -bcj -bed -bfu -bgU -biy -bkA -bmk -bnS -bnS -brE -bub -bvX -bxG -bzD -bBz -bDn -bEY -bGH -bIH -bDt -bLP -bNE -bPl -bzC -bSM -bUm -bSM -bzC -bXZ -bZp -caW -ccs -cdD -cfd -cgP -bBB +als +amI +anO +aph +aqt +arO +atg +auv +avx +awK +axW +aAu +ddQ +aBM +aCV +aEr +aFB +aGY +daW +dBw +aKF +aMi +cpR +dfi +aQd +dBA +aSA +aTN +aVf +apc +aYu +aZM +bbC +bcM +ben +bfW +bic +bjK +blq +blq +bpk +brI +btB +bvk +bxe +byY +bAI +bCp +bDU +bFN +bAO +bIQ +bKx +bMd +bxd +bPr +bQS +bPr +bxd +bUA +bVK +bXk +bYy +bZH +cbg +ccQ +bza aaf -bDw -bDw -bDw -bDw -bDw +bAR +bAR +bAR +bAR +bAR aaf aaf -bBJ +bzi aaa -bBK +bzj aaf aaa aaa @@ -120055,101 +120473,101 @@ aaa aaa aaa aaa -aad -aae -aad -aad -aad -aac -aad -aad -aad -aae -aad -aad -aad -aae -aad +aag +aai +aag +aag +aag +aaj +aag +aag +aag +aai +aag +aag +aag +aai +aag ajb aka -alu -amK -anU -apq -aqE -asc +alt +amJ +anP +api +aqu +arP ajb -auL -avN +auw +avy ajb -ayi -aza -aAx -aBV -aDg -aEB -aGb -aHQ -aHQ -aIZ -aLx -aNk -aOC -aIZ -aRE -aTb -aUn -aVL -aXn -aYQ -baM -bck -bee -bfv -bgV -biz -bkB -bml -bnT -bpC -brF -buc -bvY -bxH -bzE -bBA -bDo -bEZ -bGI -bII -bKo -bLQ -bNF -bPm -bRd -bRd -bUn -bRd -bRd -bYa -bII -caX -bLR -cdE -cfe -cgQ -cii -cjA -ckH -clW -cno -cno -bDw +axX +ayV +aAv +aBN +aCW +aEr +aFC +aGZ +aGZ +dlI +aKG +aMj +dBy +dlI +aQe +aRv +dfD +aTN +aVe +apc +aYu +aZN +bbD +bcN +beo +bfX +bid +bjL +blr +bng +bpl +btD +bvn +bvl +bxf +byZ +bAJ +bCq +bDV +bFO +bHv +bIR +bKy +bMe +bNR +bNR +bQT +bNR +bNR +bUB +bFO +bXl +bIS +bZI +cbh +ccR +ceg +cfu +cgA +chQ +cjf +cjf +bAR aaf aaa -bBJ +bzi aaa -aae +aai aaa aaa aaa @@ -120312,7 +120730,7 @@ aaa aaa aaa aaa -aad +aag aaa aaa aaf @@ -120330,83 +120748,83 @@ aaf ajb akb ajZ -amL +amK ajZ -apr -aqF -asd +apj +aqv +arQ ajb ajb -avO -awW -awW -azb -azf -aBW -aDh -aEC -aGb -aHR -aHR -aIZ -aLy -aNl -aOD -aIZ -aRF -aRF -aUo -aVM -aXp -aYR -baM -bcl -bcl -bcl -bcl -bcl -bkC -bmm -bnU -bkr -brG -bkr -bkr -bxI -bzF -bBB -bBB -bBB -bBB -bIJ -bBB -bLR -bNG -bPn -bzC -bSN -bSN -bVD -bzC -bYb -bZp -caY -bLR -cdE -cff -cgR -bBB +avz +axY +axY +ayW +bTq +aBO +aCX +dej +aFC +deC +deC +dlI +aKH +aMk +aNu +dlI +dfp +dfp +dfE +dfP +dfY +dgc +aYu +cXA +cXA +cXA +cXA +cXA +bie +bjM +bls +bhT +bpm +bhT +bhT +bvm +bxg +bza +bza +bza +bza +bFP +bza +bIS +bKz +bMf +bxd +bPs +bPs +bSh +bxd +bUC +bVK +bXm +bIS +bZI +cbi +ccS +bza aaf -bGQ -clX -cnp -coQ -bDw +gJs +chR +cjg +ckH +bAR aaf aaa -bBJ +bzi aaa -bBK +bzj aaa aaa aaa @@ -120569,101 +120987,101 @@ aaa aaa aaa aaa -aad +aag aaa -abs -abL -ach +abv +abO +acl aaa -abs -abL -ach +abv +abO +acl aaa -abs -abL -ach +abv +abO +acl aaa aaf ajb akc -alu -amM -anV -aps -aqG -ase -atw +alt +amL +anQ +apk +aqw +arR +ath ajb -avP -awW -ayj -azc -aAy -azd -aDi -aED -aGc -aHS -aIZ -aKo -aLz -aNk -aOE -aQl -aIZ -aHS -aUp -aVL -aXn -aYS -baN -aYR -bef -bfw -bgW -biA -biA -biA -bkr -bkr -brH -bkr -bvZ -bxJ -bzG -bBC -bDp -bFa -bGJ -bIK -bKp -bLS -bNH -bPo -bRe -bSO -bUo -bVE -bWK -bGJ -bIK -caY -cct -cdF -cfg -cgO -cij -cjC -ckH -clY -cnq -cno -bDw +avA +axY +axZ +ayX +ddS +bUw +aCY +dek +der +deD +dlI +aJv +aKI +tDM +dfb +dfj +dlI +deD +dfF +aTN +aVe +aWH +dgi +dgc +aqq +aqr +aWu +bif +bif +bif +bhT +bhT +brK +bhT +bvo +bvr +bxh +bzb +bAK +bCr +bDW +bFQ +bHw +bIT +bKA +bMg +bNS +bPt +bQU +bSi +bTk +bDW +bFQ +bXm +bYz +bZJ +cbj +ccP +ceh +cfw +cgA +chS +cjh +cjf +bAR aaf aaa -aae +aai aaa -bBK +bzj aaf aaa aaa @@ -120826,101 +121244,101 @@ aaa aaa aaa aaa -aad +aag aaf -abs -abM -ach +abv +abP +acl aaa -abs -abM -ach +abv +abP +acl aaa -abs -abM -ach +abv +abP +acl aaa aaf ajb ajZ -alv -amN -anW -apt -aqH -asf -atx +alu +amM +anR +apl +aqx +arS +ati ajb -avQ -awW -ayk -azd -aAz -aBX -aDj -aEE -aGd -aHT -aJa -aKp -aLA -aNl -aOF -aQm -aRG -aHT -aUq -aVN -aXq -aYQ -aYQ -bcm -aYQ -bfx -aYT -biB -biA -bmn -bkr -bpD -brI -bud -bwa -bxK -bzH -bBD -bDq -bFb -bGK -bIL -bKq -bLT -bNI -bPp -bRf -bRf -bNK -bRf -bRf -bYc -bRf -caZ -bLR -cdG -cfh -cgO -cij -cjD -bDw -bDw -bDw -bDw -bDw +avB +axY +ddO +bUw +ddT +ddZ +ded +del +des +djt +daY +daZ +dbb +aMk +aNv +dfk +dfq +djt +dfG +dfQ +dfZ +apc +apc +dgo +apc +cXZ +atm +bfZ +bif +bfY +bhT +bqF +bpp +btF +bvp +bvv +bxi +bzc +bAL +ddF +bDX +bFR +bHx +bIU +bKB +bMh +bCi +bCi +bKD +bCi +bCi +bUD +bCi +dDm +bIS +bZK +cbk +ccP +ceh +cfx +bAR +bAR +bAR +bAR +bAR aaf aaf -bBJ +bzi aaa -bBK +bzj aaa aaa aaa @@ -121083,19 +121501,19 @@ aaa aaa aaa aaa -aad +aag aaf -abs -abM -ach +abv +abP +acl aaf -abs -abM -ach +abv +abP +acl aaf -abs -abM -ach +abv +abP +acl aaf aaf ajb @@ -121108,76 +121526,76 @@ ajb ajb ajb ajb -avR -awW -ayl -azd -aAA -aBY -aDk -aEB -aGd -aHT -aJa -aKp -aLA -aNm -aOF -aQm -aJa -aTc -aUq -aVO -aXn -aYT -baO -bcn -beg -bfy -aYT -biC -bkD -biC -bkr -bpE -brJ -bue -bkr -bxL -bzI -bBE -bDr -bFc -bGL -bIM -bKr -bLU -bNJ -bPq -bRg -bPo -bUp -bPo -bPo -bYd -bZq -cba -ccu -cdF -cfi -bNN -cik -cjE +avC +axY +aya +bUw +ddU +aBQ +dee +aEr +des +djt +daY +daZ +dbb +dfa +aNv +dfk +daY +djx +dfG +cXz +aVe +atm +alr +dgp +cXI +cYj +atm +bga +big +bga +bhT +bpv +brL +btE +bhT +bvs +bxj +bzd +bAM +bCt +bDY +bFS +bHy +bIV +bKC +bMi +bNU +bMg +bQV +bMg +bMg +bUE +bVL +bXn +bYA +bZJ +cbl +bKG +cei +cfy +cgB +chT +cji ckI -clZ -cnr -coR -bDw +bAR aaf aaa -bBK +bzj aaf -aae +aai aaf aaa aaa @@ -121334,25 +121752,25 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa aaa aaa -aad +aag aaf -abs -abM -ach +abv +abP +acl aaa -abs -abM -ach +abv +abP +acl aaa -abs -abM -ach +abv +abP +acl aaa aaf aaf @@ -121362,79 +121780,79 @@ aaf aaf aaf aaf +dni +dps +dpL +avD +axY +ddO +bUw +ddV +aBQ +dee +aEr +aKL +djt +daY +deS +dbb +aMk +aNv +dfm +daY +djt +dbg +dfR +dga +dgd +dgj +dgp alr -aty -auM -avS -awW -ayk -azd -aAB -aBY -aDk -aEB -aGe -aHT -aJa -aKq -aLA -aNl -aOF -aQn -aJa -aHT -aUr -aVP -aXr -aYU -baP -bcn -baO -aYT -aYT -biD -bkE -biD -bkr -bpF -brK -buf -bwb -bxM -bzJ -bBF -bDs -bFd -bGM -bIN -bKs -bLV -bNK -bPr -bRh -bSP -bSP -bSP -bWL -bYe -bNK -cbb -ccv -cdE -cfj -cgP -bBB +atm +atm +bgb +cTu +bgb +bhT +brJ +brN +btG +bvq +bxm +bxk +bze +bAN +bCu +bDZ +bFT +bHz +bIW +bKD +dhe +dhg +bPu +bPu +bPu +bTl +bUF +bKD +bXo +bMj +bZI +cVJ +ccQ +bza aaf -bGQ -cma -cns -coS -bDw +gJs +chU +cjj +ckJ +bAR aaf aaa -bBJ +bzi aaa -bBK +bzj aaa aaa aaa @@ -121594,104 +122012,104 @@ aaa aaa aaa aaa -aac -aae -aac -aad +aaj +aai +aaj +aag aaa -abs -abM -ach +abv +abP +acl aaa -abs -abM -ach +abv +abP +acl aaa -abs -abM -ach +abv +abP +acl aaa aaa aaf aaa aaa akd -alw -apu -apu -apu -apu -apj -avT -awW -aym -aze -aAC -azd -aDi -aEF -aGf -aHS -aIZ -aIZ -aLB -aNn -aOG -aIZ -aIZ -aHS -aUs -aVQ -aXs +alv +apm +apm +apm +apm +dnR +avE +axY +ayc +aza +aAw +bUw +aCY +dem +aFD +deD +dlI +dlI +deV +dlN +dfc +dlI +dlI +deD +dfI +dfS +aVh aaf -baQ -bco -beh -bfz -bgX -biD -bkF -biD -bnV -aOS -brL -aOS -bkr -bxN -bzK -bBG -bDt -bFe -bGN -bIO -bKr -bLW -bNL -bNL -bRi -bSQ -bNL -bNL -bNL -bYf -bNL -cbc -bNL -cdH -cfk -cgS -cik -cjE -ckJ -cmb -cnt -coR -bDw +aYx +dgr +dgw +dgA +dgI +bgb +cTi +bgb +sJW +aNC +brM +aNC +bhT +bwl +bxl +bzf +bAO +bCv +bEa +bFU +bHy +bIX +bKE +bKE +dhh +bPv +bKE +bKE +bKE +bUG +bKE +bXp +bKE +bZL +cbn +ccT +cei +cfy +cgC +chV +cjk +ckI +bAR aaf aaa -bMf +bJf aaf -bNR +bKK aaf aaa aaa @@ -121851,104 +122269,104 @@ aaa aaa aaa aaa -aad +aag aaa aaf aaa aaa aaf -abN +abQ aaf aaf aaf -abN +abQ aaf aaa aaf -abN +abQ aaf aaa aaa aaf akd -alw -alw -alw -apv -aqI -asg -apu -apk -avQ -awW -awW -azf -aAD -aBW -aDl -aEG -aGg -aHU -aJb -aHU -aLC -aNo -aOH -aJb -aRH -aTd -aUt -aVR -aXs +alv +alv +alv +apn +aqy +arT +apm +dnS +avB +axY +axY +bTq +aAx +aBO +aIe +aOS +deu +deI +deN +deI +deW +aMm +dfd +deN +dft +dBB +dbh +dfT +aVh aaa -baQ -aYW -baP -acg -bgY -biD -bkG -biD +aYx +dgf +dgj +ack +dgJ +bgb +bij +bgb aaa aaf -brM +bpw aaf aaf -acg -bzB -bBH -bDu -bFf -bGO -bIP -bKt -bLX -bNM -bPs -bRj -bSR -bUq -bVF -bWM -bYg -bZr -cbd -bWM -cdI -cfl -cgT -bzB +ack +bxc +bzg +bAP +bCw +bEb +bFV +bHA +bIY +bKF +bMk +dhi +bPw +bQW +bSj +bNV +bUH +bVM +bXq +bNV +bZM +cbo +ccU +bxc aaf -bDw -bDw -bDw -bDw -bDw +bAR +bAR +bAR +bAR +bAR aaf aaa aaf aaa -bBK +bzj aaa aaa aaa @@ -122108,93 +122526,93 @@ aaa aaa aaa aaa -aad +aag aaa aaN -aaV -aaV -abt -abO -abO -acv -abO -abO -abO -abO -aeC -abO -abO -abO -abO -abO +aaY +aaY +abw +abR +abR +acz +abR +abR +abR +abR +aeF +abR +abR +abR +abR +abR ake -alx -amO -alx -apw -aqJ -ash -atz -auN -avU -awY -awY +alw +amN +sGh +apo +aqz +arU +atk +aux +avF +dqT +dqT aaf -acg -aBZ -aDm -aEH -aGh -aHV -aJc -aKr -aLD -aNp -aOI -aQo -aRI -aTe -aUu -aVS -aXr -aYV -baR -baR -baR -bfA -bgZ +ack +dea +aIc +den +dev +deJ +deO +deU +deX +dBx +dfe +dBz +dfu +dfz +dfJ +dfU +dga +dge +azd +azd +azd +dgB +dgK aaa -bkH +cUL aaa aaf aaf -brM +bpw aaa aaf aaf -bzB -bBI -bDv -bFg -bGP -bIQ -bKu -bLY -bNN -bPt -bRk -bLY -bNN -bPt -bNN -bLY -bNN -bPt -ccw -bNN -bNN -cgU -bzB +bxc +bzh +bAQ +bCx +bEc +bFW +bHB +bIZ +bKG +bMl +dhj +bIZ +bKG +bMl +bKG +bIZ +bKG +bMl +bYB +bKG +bKG +ccV +bxc aaf aaf aaf @@ -122203,9 +122621,9 @@ aaf aaf aaf aaf -bBK -bBK -bBK +bzj +bzj +bzj aaf aaf aaf @@ -122216,8 +122634,8 @@ aaa aaf aaf aaf -cHW -cHW +lMJ +lMJ aaf aaf aaa @@ -122365,93 +122783,93 @@ aaa aaa aaa aaa -aad +aag aaa aaa aaa aaf aaf -abP +abS aaf aaa aaf -abP +abS aaf aaa aaf -abP +abS aaf aaa aaa aaf akd -alw -alw -alw -apx -aqK -asi -atA -auO -apk -awY -awY +alv +alv +alv +app +aqA +arV +atl +auy +dnS +dqT +dqT aaf -acg -acg -aDn -aEI -aGi -aEI -awW -awW -aEI -aEI -aEI -awW -awW -aEI -aGi -aEI -aXn -aYW -baS -bcp -baS -bcr -bgY -anY +ack +ack +def +aCZ +dew +aCZ +axY +axY +aCZ +aCZ +aCZ +axY +axY +aCZ +dew +aCZ +aVe +dgf +dgk +dgt +dgk +dgv +dgJ +anT aaf aaf aaf aaa -brM +bpw aaa aaa aaf -bzB -bzB -bzB -bFh -bBB -bIR -bBB -bLZ -bBB -bIR -bRl -bLZ -bBB -bIR -bBB -bLZ -bBB -bIR -bzB -bzB -bzB -cgV -bzB +bxc +bxc +bxc +bCy +bza +bFX +bza +bJa +bza +bFX +dhk +bJa +bza +bFX +bza +bJa +bza +bFX +bxc +bxc +bxc +ccW +bxc aaf aaa aaa @@ -122622,93 +123040,93 @@ aaa aaa aaa aaa -aac -aac -aae -aac +aaj +aaj +aai +aaj aaf -abs -abQ -ach +abv +abT +acl aaa -abs -abQ -ach +abv +abT +acl aaa -abs -abQ -ach +abv +abT +acl aaa aaa aaf aaa aaa akd -alw -apu -apu -apu -apu -als -apk -anR -awY +alv +apm +apm +apm +apm +dnh +dnS +dnz +dqT aaf aaf aaf -aDn -aBX -aGj -aEL -aBX -aBX -aBX -aNq -aOJ -aBX -aBX -aEL -aGj -aBX -aXn -aYX -baS -bcp -baS -bfA -bha -biE -bkI -bkI -beh -bkI -brN -bkI -bkI -beh -beh -beh -beh -bFi -beh -bIS -beh -bMa -beh -bIS -bRm -bSS +def +ddZ +dex +aJu +ddZ +ddZ +ddZ +aMo +dff +ddZ +ddZ +aJu +dex +ddZ +aVe +aWK +dgk +dgt +dgk +dgB +dgM +dgN +dgO +dgO +dgw +dgO +dgS +dgO +dgO +dgw +dgw +dgw +dgw +bCz +dgw +dha +dgw +dhc +dgw +dha +dhl +bJb aaf -bVG +bFY aaf -bSS +bJb aaf -bVG +bFY aaf aaf -bzB -cgW -bzB +bxc +ccX +bxc aaf aaf aaf @@ -122882,19 +123300,19 @@ aaa aaa aaa aaa -aad +aag aaa -abs -abQ -ach +abv +abT +acl aaa -abs -abQ -ach +abv +abT +acl aaa -abs -abQ -ach +abv +abT +acl aaf aaa aaf @@ -122905,67 +123323,67 @@ aaf aaa aaa aaa -als -auP -avG -awY -awY +dnh +auz +dqp +dqT +dqT aaa aaa aaa -azf -aEJ -aGk -aHW -aBX -aBX -aBX -aBX -aBX -aBX -aBX -aTf -aUv -aVT -aXt -aYY -baR -baR -baR -bcr +bTq +dep +dey +aHa +ddZ +ddZ +ddZ +ddZ +ddZ +ddZ +ddZ +dfA +dfM +dfV +dgb +dgg +azd +azd +azd +dgv aaf -anY +anT aaa aaa aaf aaf -brO +bpx aaf aaf aaf aaa aaf -bDw -bFj -bGQ -bIT -bDw -bMb -bGQ -bIT -bDw -bMb -bGQ -bIT -bDw -bMb -bGQ -bIT -bDw +bAR +dBC +gJs +bFZ +bAR +bCA +gJs +bFZ +bAR +bCA +gJs +bFZ +bAR +bCA +gJs +bFZ +bAR aaf -bzB -cgV -bzB +bxc +wxc +bxc aaf aaa aaf @@ -122975,7 +123393,7 @@ aaa aaf aaa aaa -aae +aai aaf aaa aaa @@ -123139,19 +123557,19 @@ aaa aaa aaa aaa -aad +aag aaf -abs -abQ -ach +abv +abT +acl aaf -abs -abQ -ach +abv +abT +acl aaf -abs -abQ -ach +abv +abT +acl aaa aaa aaf @@ -123162,77 +123580,77 @@ aaf aaf aaf aaf -alr -auQ -apk -awY +dni +auA +dnS +dqT aaa aaa aaa aaa -awW -aEK -aGk -aHX -aBX -aBX -aBX -aNq -aBX -aBX -aBX -aTg -aUv -aVU -awW -aYX -baS -bcp -baS -bfA +axY +deq +dey +deK +ddZ +ddZ +ddZ +aMo +ddZ +ddZ +ddZ +dfB +dfM +dfW +axY +aWK +dgk +dgt +dgk +dgB aaa -anY +anT aaa aaa aaf aaa -brM +bpw aaa aaa aaf aaa aaf -bDw -bFk -bGR -bIU -bDw -bMc -bNO -bPu -bDw -bST -bUr -bVH -bDw -bYh -bZs -cbe -bDw +bAR +bCB +bEd +bGa +bAR +bJc +bKH +bMm +bAR +bPx +bQX +bSk +bAR +bUI +bVN +bXr +bAR aaf -aNr -cgX -bDG +aMr +ccY +bBb aaf aaa aaf -bzB -cnx -coV -cqq -cqq +bxc +cjo +ckM +cmf +cmf aaa -bNR +bKK aaa aaa aaa @@ -123396,19 +123814,19 @@ aaa aaa aaa aaa -aad +aag aaf -abs -abQ -ach +abv +abT +acl aaa -abs -abQ -ach +abv +abT +acl aaa -abs -abQ -ach +abv +abT +acl aaa aaa aaf @@ -123419,77 +123837,77 @@ aaa aaa aaf aaa -als -auR -avV -awY +dnh +auB +avG +dqT aaa aaa aaa aaa -awW -aEL -aGl -aHY -aEL -aEL -aLE -awW -aOK -aEL -aEL -aTh -aUw -aBX -awW -aYZ -baS -baS -baS -bcr +axY +aJu +deA +deL +aJu +aJu +deY +axY +dfg +aJu +aJu +dfC +dfO +ddZ +axY +dgh +dgk +dgk +dgk +dgv aaf -anY +anT aaa aaa aaf aaa -brM +bpw aaa aaa aaf aaa aaf -bDw -bFl -bFl -bFl -bDw -bMd -bNP -bMd -bDw -bSU -bUs -bSU -bDw -bYi -bZt -bYi -bDw +bAR +bCC +bCC +bCC +bAR +bJd +bKI +bJd +bAR +bPy +bQY +bPy +bAR +bUJ +bVO +bUJ +bAR aaf -aKs -cgX -biR -aOL +aMq +ccY +bgo +aTQ +cgD +chW +cjl ckK -cmc -cnu -coT -bFl -bFl -coV +bCC +bCC +ckM aaf -bNR +bKK aaa aaa aaa @@ -123653,22 +124071,22 @@ aaa aaa aaa aaa -aac +aaj aaa -abs -abR -ach +abv +abU +acl aaa -abs -abR -ach +abv +abU +acl aaa -abs -abR -ach +abv +abU +acl aaf aaf -aad +aag aaa aaa aaa @@ -123676,77 +124094,77 @@ aaa aaa aaf aaa -als -als -atB -awY +dnh +dnh +jKK +dqT aaf aaa aaa aaa -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -awW -aYX -baT -bcq -baT -bfA +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +axY +aWK +dgm +dgu +dgm +dgB aaa -anY +anT aaa aaa aaf aaf -brO +bpx aaf aaf aaf aaf aaf -bDw -bFl -bGS -bIV -bDw -bMd -bNQ -bPv -bDw -bSV -bUt -bVI -bDw -bYi -bZu -cbf -bDw +bAR +bCC +bEe +bGb +bAR +bJd +bKJ +bMn +bAR +bPz +bQZ +bSl +bAR +bUJ +bVP +bXs +bAR aaf -aNr -cgX -cgX -cgX -cgX -cgX -cnv -bFl -cqp -bFl -cnx +aMr +ccY +ccY +ccY +ccY +ccY +cjm +bCC +cme +bCC +cjo aaa -bNR +bKK aaf aaa aaa @@ -123910,7 +124328,7 @@ aaa aaa aaa aaa -aac +aaj aaa aaf aaa @@ -123931,12 +124349,12 @@ aaa aaa aaa aaa -acg -acg -atB -auS -avV -awY +ack +ack +atn +bOY +avG +dqT aaf aaa aaa @@ -123955,55 +124373,55 @@ aaf aaa aaf aaf -acg -acg -baU -bcr -baU -bcr +ack +ack +aye +dgv +aye +dgv aaf -anY +anT aaf aaf aaf aaa -brM +bpw aaa aaf aaa aaa aaf -bDw -bDw -bDw -bDw -bDw -bDw -bDw -bDw -bDw -bDw -bDw -bDw -bDw -bDw -bDw -bDw -bDw +bAR +bAR +bAR +bAR +bAR +bAR +bAR +bAR +bAR +bAR +bAR +bAR +bAR +bAR +bAR +bAR +bAR aaf -aKs -cgX -aXu -aOS +aMq +ccY +aVk +aNC +cgE +chX +cjn ckL -cmd -cnw -coU -bFl -bFl -bzB +bCC +bCC +bxc aaf -aae +aai aaa aaa aaa @@ -124167,33 +124585,33 @@ aaa aaa aaa aaa -aac -aae -aad -aad -aad -aae -aad -aad -aad -aac -aad -aad -aae -aad -aae -aad -aae -aad +aaj +aai +aag +aag +aag +aai +aag +aag +aag +aaj +aag +aag +aai +aag +aai +aag +aai +aag aaf aaf aaf aaf aaf -als -als -atB -awY +dnh +dnh +lNZ +dqT aaf aaa aaa @@ -124224,7 +124642,7 @@ aaa aaa aaf aaa -brM +bpw aaa aaf aaf @@ -124248,17 +124666,17 @@ aaf aaf aaf aaf -aNr -cgY -bDG +aMr +ccZ +bBb aaf aaa aaf -cnx -coV -cqq -coV -cnx +cjo +ckM +cmf +ckM +cjo aaa aaf aaf @@ -124449,27 +124867,27 @@ aaf aaa aaa aaf -acg -awY +ack +dqT aaf -anY -anY -anY -anY +anT +anT +anT +anT aaf -anY -anY -anY -anY -anY -anY -aqL -anY -anY -anY -anY -anY -anY +anT +anT +anT +anT +anT +anT +aqB +anT +anT +anT +anT +anT +anT aaf aaa aaa @@ -124481,7 +124899,7 @@ aaa aaa aaf aaa -brM +bpw aaa aaf aaa @@ -124706,7 +125124,7 @@ aaf aaf aaf aaf -acg +ack aaf aaa aaa @@ -124714,16 +125132,16 @@ aaa aaf aaa aaa -aGm -aGm -aGm -aGm -aGm -aGm -aGm -aGm -aGm -aGm +bpu +bpu +bpu +bpu +bpu +bpu +bpu +bpu +bpu +bpu aaa aaa aaa @@ -124738,40 +125156,40 @@ aaa aaa aaf aaa -brM +bpw aaa aaf aaf aaf -aae -bBK -bBK -bBK -bBK -bBK -bMe -bBK -bBK -aae -bBK -bBK -bBK -bNR -bBK -bBK -bBK -bBK -bMe -bBK -aae -bBK +aai +bzj +bzj +bzj +bzj +bzj +bJe +bzj +bzj +aai +bzj +bzj +bzj +bKK +bzj +bzj +bzj +bzj +bJe +bzj +aai +bzj aaf aaf -aae -bBK -aae -bBK -bBK +aai +bzj +aai +bzj +bzj aaf aaf aaa @@ -124971,16 +125389,16 @@ aaa aaf aaf aaf -anY -anY -anY -anY -aqL -anY -anY -anY -anY -aqL +anT +anT +anT +anT +aqB +anT +anT +anT +anT +aqB aaf aaf aaf @@ -124995,7 +125413,7 @@ aaa aaa aaf aaa -brM +bpw aaa aaf aaa @@ -125032,7 +125450,7 @@ aaa aaa aaf aaa -aab +aac aaa aaa aaa @@ -125244,7 +125662,7 @@ aaa aaf aaa aaa -aae +aai aaa aaa aaa @@ -125252,30 +125670,30 @@ aaa aaa aaf aaa -brM +bpw aaa aaf aaf -aae -bBJ -bBJ -bBJ -bBJ -bBJ -bBJ -bMf -bBJ -bBJ -bBJ -bBJ -bBJ -bBJ -bMf -bBJ -bBJ -bBJ -bBJ -bMf +aai +bzi +bzi +bzi +bzi +bzi +bzi +bJf +bzi +bzi +bzi +bzi +bzi +bzi +bJf +bzi +bzi +bzi +bzi +bJf aaf aaf aaf @@ -125499,9 +125917,9 @@ aaa aaa aaa aaf -aae +aai aaa -aae +aai aaa aaa aaa @@ -125509,7 +125927,7 @@ aaa aaa aaf aaf -brO +bpx aaf aaf aaa @@ -125756,9 +126174,9 @@ aaa aaa aaa aaa -aad +aag aaa -bei +siF aaa aaa aaa @@ -125766,33 +126184,33 @@ aaa aaa aaf aaa -brM +bpw aaa aaf aaf -aae -bBK -bBK -aae -bBK -bei -bBK -bBK -bNR -bBK -bBK -bBK -bBK -bei -aae -bBK -bBK -bBK -bBK -bNR -bBK -bBK -anX +aai +bzj +bzj +aai +bzj +siF +bzj +bzj +bKK +bzj +bzj +bzj +bzj +siF +aai +bzj +bzj +bzj +bzj +bKK +bzj +bzj +anS aaa aaa aaa @@ -126013,26 +126431,26 @@ aaa aaa aaa aaa -aae +aai aaa -anY +anT aaa aaa -aab +aac aaa aaa aaf aaa -brM +bpw aaa aaf aaa aaa aaa aaa -aae +aai aaa -anY +anT aaa aaa aaa @@ -126272,7 +126690,7 @@ aaa aaa aaf aaf -anY +anT aaa aaa aaa @@ -126280,7 +126698,7 @@ aaa aaa aaf aaa -brM +bpw aaa aaf aaa @@ -126289,7 +126707,7 @@ aaa aaa aaf aaa -anY +anT aaa aaa aaa @@ -126527,9 +126945,9 @@ aaa aaa aaa aaa -aae +aai aaa -anY +anT aaa aaa aaa @@ -126537,22 +126955,22 @@ aaa aaa aaf aaa -brM +bpw aaa aaf aaa aaa aaa aaa -aae +aai aaf -anY +anT aaa aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -126784,9 +127202,9 @@ aaa aaa aaa aaa -aad +aag aaa -aae +aai aaa aaa aaa @@ -126794,16 +127212,16 @@ aaa aaa aaf aaa -brM +bpw aaa aaf aaa aaa aaa aaa -aad +aag aaa -anY +anT aaa aaa aaa @@ -127041,9 +127459,9 @@ aaa aaa aaa aaa -aad +aag aaa -anY +anT aaa aaa aaa @@ -127051,16 +127469,16 @@ aaa aaa aaf aaa -brM +bpw aaa aaf aaa aaa aaa aaa -aad +aag aaa -aae +aai aaa aaa aaa @@ -127298,9 +127716,9 @@ aaa aaa aaa aaa -aae +aai aaa -anY +anT aaa aaa aaa @@ -127308,16 +127726,16 @@ aaa aaa aaf aaf -brO +bpx aaf aaf aaa aaa aaa aaa -aae +aai aaa -bei +siF aaa aaa aaa @@ -127516,7 +127934,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -127540,7 +127958,7 @@ aaa aaa aaa aaa -aab +aac aaa aaa aaa @@ -127555,9 +127973,9 @@ aaa aaa aaa aaa -aae +aai aaa -anY +anT aaa aaa aaa @@ -127565,16 +127983,16 @@ aaa aaa aaf aaa -brP +bpy aaa aaf aaa aaa aaa aaa -aae +aai aaa -bei +siF aaa aaa aaa @@ -127812,9 +128230,9 @@ aaa aaa aaa aaa -aad +aag aaa -anY +anT aaa aaa aaa @@ -127822,16 +128240,16 @@ aaa aaa aaf aaa -brP +bpy aaa aaf aaa aaa aaa aaa -aad +aag aaa -anY +anT aaa aaa aaa @@ -128069,9 +128487,9 @@ aaa aaa aaa aaa -aad +aag aaf -aae +aai aaf aaf aaf @@ -128079,16 +128497,16 @@ aaa aaa aaf aaa -brQ +bpz aaa aaf aaa aaa aaa aaa -aad +aag aaa -anY +anT aaa aaa aaa @@ -128129,9 +128547,9 @@ aaa aaa aaf aaf -cGZ -cKU -cGZ +czK +cDv +czK aaf aaf aaa @@ -128326,26 +128744,26 @@ aaa aaa aaa aaa -aad +aag aaa -bei +siF aaa aaa aaf aaf aaf aaf -bpG -brR -bug +bno +bpA +brO aaf aaa aaa aaa aaa -aad +aag aaf -aae +aai aaa aaa aaa @@ -128385,11 +128803,11 @@ aaa aaa aaf aaf -cIP -cGZ -cKV -cGZ -cIP +cBM +czK +cDw +czK +cBM aaf aaf aaa @@ -128583,26 +129001,26 @@ aaa aaa aaa aaa -aae +aai aaa -anY +anT aaa aaa aaf aaa aaa -bnW +blu aaa -brR +bpA aaa -bwc +btI aaa aaa aaa aaa -aad +aag aaa -anY +anT aaa aaa aaa @@ -128641,13 +129059,13 @@ aaa aaa aaf aaf -cGZ -cGZ -cJW -cKU -cLT -cGZ -cGZ +czK +czK +cCH +cDv +cEB +czK +czK aaf aaf aaa @@ -128840,26 +129258,26 @@ aaa aaa aaa aaa -anY +anT aaa -anY +anT aaf aaf -acg -acg +ack +ack aaf -bnX +blv aaf -brR +bpA aaf -bnX +blv aaf aaf aaf aaf -aad +aag aaa -bei +siF aaa aaa aaa @@ -128897,15 +129315,15 @@ aaa aaa aaa aaf -cGY -cGY -cIQ -cJX -cJX -cJX -cMT -cGY -cGY +czJ +czJ +cBN +cCI +cCI +cCI +cFv +czJ +czJ aaf aaa aaa @@ -129097,26 +129515,26 @@ aaa aaa aaa aaa -anY +anT aaa -aqL +aqB aaa -aKs -biF -biF -aQr -bnY -aLF -brS -aLF -bwd +aMq +bgc +bgc +aOV +blw +aNw +bpB +aNw +btJ aaa aaa aaa aaa -aae +aai aaa -anY +anT aaa aaa aaa @@ -129154,15 +129572,15 @@ aaa aaf aaf aaf -cGZ -cHX -cIR -cJX -cKW -cJX -cMU -cOg -cGZ +czK +cAQ +cBO +cCI +cDx +cCI +cFw +cGp +czK aaf aaf aaf @@ -129354,26 +129772,26 @@ aaa aaa aaa aaa -anY +anT aaa -anY +anT aaa -aKs -biG -biG -aQr -aKs -bpH -brT -buh -bwe +aMq +bgd +bgd +aOV +aMq +bnp +bpC +brP +btK aaa aaa aaa aaa -aad +aag aaa -aae +aai aaa aaa aaa @@ -129411,15 +129829,15 @@ aaa aaa aaa aaf -cGY -cGY -cIS -cJX -cJX -cJX -cMV -cGY -cGY +czJ +czJ +cBP +cCI +cCI +cCI +cFx +czJ +czJ aaf aaa aaa @@ -129611,26 +130029,26 @@ aaa aaa aaa aaa -anY +anT aaa -anY -anY -bhb -biH -bkJ -bhb -bnZ -bpI -brU -bui -bnZ -anY -anY -anY -anY -aad +anT +anT +beq +bge +bik +beq +blx +bnq +bpD +brQ +blx +anT +anT +anT +anT +aag aaa -anY +anT aaa aaa aaa @@ -129669,13 +130087,13 @@ aaa aaa aaf aaf -cGZ -cGZ -cJY -cKX -cLU -cGZ -cGZ +czK +czK +cCJ +cDy +cEC +czK +czK aaf aaf aaa @@ -129863,31 +130281,31 @@ aaa aaa aaa aaa -anY -anY -anY -anY -anY -anY -anY -anY +anT +anT +anT +anT +anT +anT +anT +anT aaa -aNs -biI -biG -aQt -boa -bpJ -brV -buj -aQt -aLF -aLF -aOL +aSD +bgf +bgd +aOX +bly +bnr +bpE +brR +aOX +aNw +aNw +aTQ aaa -anY +anT aaa -aad +aag aaa aaa aaa @@ -129927,11 +130345,11 @@ aaa aaa aaf aaf -cIP -cGZ -cKY -cGZ -cIP +cBM +czK +cDz +czK +cBM aaf aaf aaa @@ -130115,48 +130533,48 @@ aaa aaa aaa aaa -anY -anY -anY -anY -anY -anY +anT +anT +anT +anT +anT +anT aaa -aOL -aLF -aLF -aLF -aLF -aLF -aNs -bhc -biJ -bkK -bmo -bmo -bpK -brW -buk -bmo -bmo -bmo -bBL -bDx -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY +aTQ +aNw +aNw +aNw +aNw +aNw +aSD +bes +bgg +bil +bjO +bjO +bns +bpF +brS +bjO +bjO +bjO +bzk +bAS +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT aaa aaa aaa @@ -130185,9 +130603,9 @@ aaa aaa aaf aaf -cGZ -cGY -cGZ +czK +czJ +czK aaf aaf aaa @@ -130372,48 +130790,48 @@ aaa aaa aaa aaa -anY +anT aaa -aOL -aLF -aLF -aLF -aNs -aVV -aQp -aQp -aQp -aQp -aQp -aQp -bhd -aXu -aLK -aLK -aUz -bpL -brX -bul -aQq -aLK -aNx -bBM -bDy -aLF -aLF -aLF -bKv -aLF -aLF -aLF -aLF -bKv -aLF -aLF -aLF -aOL +aTQ +aNw +aNw +aNw +aSD +aTR +aOT +aOT +aOT +aOT +aOT +aOT +bet +aVk +aOY +aOY +aSG +bnt +bpG +brT +aOU +aOY +bcQ +bzl +bAT +aNw +aNw +aNw +bJl +aNw +aNw +aNw +aNw +bJl +aNw +aNw +aNw +aTQ aaa -anY +anT aaa aaa aaa @@ -130629,48 +131047,48 @@ aaa aaa aaa aaa -anY -aKs -aOM -aQp -aQp -aQp -aQp -aVW -aXu -aLK -aLK -aLK -aLK -aLK -aVX +anT +aMq +aNx +aOT +aOT +aOT +aOT +aTS +aVk +aOY +aOY +aOY +aOY +aOY +aTT aaa aaa aaa -bob -bpM -brY -bum -aQr +blA +bnu +bpH +brU +aOV aaa -aKs -bBN -aQp -aQp -aQp -aQp -bKw -bKw -bNS -bKw -bKw -bKw -bKw -aQp -aQp -bYj -bDG -anY +aMq +bzm +aOT +aOT +aOT +aOT +bMt +bMt +bNW +bMt +bMt +bMt +bMt +aOT +aOT +bUK +bBb +anT aaa aaa aaa @@ -130886,48 +131304,48 @@ aaa aaa aaa aaa -anY -aKs -aON -aQq -aLK -aLK -aLK -aVX +anT +aMq +aNy +aOU +aOY +aOY +aOY +aTT aaa aaa aaa aaa aaa aaa -aVY +aTU aaa aaa -aTi -aTi -bpN -brZ -bun -aTi +aRy +aRy +bnv +bpI +brV +aRy aaa aaa -aVX -aLK -aLK -aLK -aLK -aLK -aLK -bNT -aLK -aLK -aLK -aLK -aLK -aNx -aON -biQ -anY +aTT +aOY +aOY +aOY +aOY +aOY +aOY +bKQ +aOY +aOY +aOY +aOY +aOY +bcQ +aNy +bgn +anT aaa aaa aaa @@ -131143,48 +131561,48 @@ aaa aaa aaa aaa -anY -aKs -aON -aQr +anT +aMq +aNy +aOV aaa aaa aaa -aVY +aTU aaa -aTi -aTi -aTi -aTi -aTi -aTi -aTi -aTi -aTi -boc -bpO -bsa -buo -aTi -bxO +aRy +aRy +aRy +aRy +aRy +aRy +aRy +aRy +aRy +blB +bnw +bpJ +brW +aRy +bvt aaa -aVY +aTU aaa aaa aaa aaa aaa aaa -aVY +aTU aaa aaa aaa aaa aaa -aKs -aON -biQ -anY +aMq +aNy +bgn +anT aaa aaa aaa @@ -131400,48 +131818,48 @@ aaa aaa aaa aaa -anY -aKs -aON -aQr +anT +aMq +aNy +aOV aaa aaa aaa -aTi -aTi -aTi -aVZ -aVZ -aVZ -aTi -aTi -aTi -aTi -bmp -bod -bpP -bsb -bup -aTi -aTi -aTi -aTi -aTi -aTi -aTi -aTi -aTi -aTi -aTi -bxO -bxO +aRy +aRy +aRy +aTV +aTV +aTV +aRy +aRy +aRy +aRy +bjP +blC +bnx +bpK +bsf +aRy +aRy +aRy +aRy +aRy +aRy +aRy +aRy +aRy +aRy +aRy +bvt +bvt aaa aaa aaa -aKs -aON -biQ -anY +aMq +aNy +bgn +anT aaa aaa aaa @@ -131655,52 +132073,52 @@ aaa aaa aaa aaa -anY -anY -anY -aNr -aON -aQr +anT +anT +anT +aMr +aNy +aOV aaa aaa -aTi -aTi -aVZ -aVZ -aVZ -bcs -aVZ -aVZ -aVZ -aVZ -aVZ -bmp -boe -bpQ -bsc -buq -bwf -bwf -bwf -bwf -bwf -bFm -bGT -bIW -bKx -bMg -aTi -aTi -aTi -aTi +aRy +aRy +aTV +aTV +aTV +aZQ +aTV +aTV +aTV +aTV +aTV +bjP +blD +bny +bpL +brY +btL +btL +btL +btL +btL +bCD +bEf +bGc +bHC +bJg +aRy +aRy +aRy +aRy aaa aaa -aKs -bhj -bDG -anY -anY -anY +aMq +bez +bBb +anT +anT +anT aaa aaa aaa @@ -131912,52 +132330,52 @@ aaa aaa aaa aaa -anY +anT aaa -aLF -aNs -aON -aQr +aNw +aSD +aNy +aOV aaa aaa -aTi -aVZ -aXv -aZa -baV -bct -bej -bfB -aXv -biK -bkL -bmq -bmq -bpR -bsd -bur -bwf -bxP -bzL -bBO -bDz -bFm -bGU -bIX -bIX -bMh -bNU -bPw -bRn -aTi +aRy +aTV +aVl +aWL +aYy +aZR +bbF +bcP +aVl +bgh +bim +bjQ +bjQ +bnz +bpM +brZ +btL +bvu +bGh +bzn +bAU +bCD +bEg +bGd +bGd +bJm +bNX +bMo +bOc +aRy aaa aaa -aKs -bhj -bDy -aLF +aMq +bez +bAT +aNw aaa -anY +anT aaa aaa aaa @@ -132169,52 +132587,52 @@ aaa aaa aaa aaa -anY -aKs -aLG -aNt -aOO -aQr +anT +aMq +bnl +bpn +bpr +aOV aaa -aTi -aTi -aVZ -aXw -aZb -aZb -bcu -aZb -aZb -aZb -biL -bkM -bmr -bof -bpS -bse -bus -bwf -bxQ -bzM -bBP -bDA -bFm -bGV -bIY -bIX -bMi -bNV -bIX -bRo -aTi -bxO +aRy +aRy +aTV +aVm +aWM +aWM +aZS +aWM +aWM +aWM +bgi +bin +bjR +brX +bnA +bpN +bsa +btL +bAW +bxn +bzo +bAV +bCD +bEh +bGe +bGd +bKL +bNY +bGd +ceC +aRy +bvt aaa -aKs -bYk -aNt -cbg -biQ -anY +aMq +chz +bpn +cpO +bgn +anT aaa aaa aaa @@ -132426,52 +132844,52 @@ aaa aaa aaa aaa -anY -aKs -aLH -aNu -aOO -aQr +anT +aMq +bnk +bnn +bpr +aOV aaa -aTi -aTi -aVZ -aXx -aZc -aVZ -bcv -aVZ -aVZ -bhe -aZc -bkN -bmr -bog -bpT -bsf -but -bwg -bxR -bzN -bBQ -bDB -bFn -bFn -bFn -bKy -bIX -bIX -bIX -bRp -aTi -bxO +aRy +aRy +aTV +aVn +aWN +aTV +bqm +aTV +aTV +beu +aWN +bio +bjR +blF +bnB +bpO +bsb +btM +bvw +bxo +bzp +bJh +bCE +bCE +bCE +bHD +bGd +bGd +bGd +bUL +aRy +bvt aaa -aKs -bYk -bZv -aOO -biQ -anY +aMq +chz +cmK +bpr +bgn +anT aaa aaa aaa @@ -132683,52 +133101,52 @@ aaa aaa aaa aaa -anY -aKs -aLI -aNv -aOP -aQs -aQs -aTj -aUx -aWa -aXy -aZd -baW -bcw -bek -aVZ -bhf -biM -bkO -bms -boh -bpU -bsg -buu -bwh -bxS -bzO -bBR -bDC -bFo -bGW -bFo -bKz -bMj -bNW -bPx -bRq -aTj -bUu -aQs -bWN -bYl -bZw -cbh -biQ -anY +anT +aMq +aYd +bfS +bps +aOW +aOW +aRz +aSE +aTW +bjS +aWO +aYz +brx +bvf +aTV +byx +bgj +bip +blI +blG +bnC +bpP +bsc +btN +bvx +bxp +bzq +bAX +bCF +bEi +lWY +bHE +bKM +bKO +bMp +bNZ +aRz +bRa +aOW +bTm +chM +ckT +cmX +bgn +anT aaa aaa aaa @@ -132940,52 +133358,52 @@ aaa aaa aaa aaa -anY -aKs -aLH -aNu -aOO -aQr +anT +aMq +bnk +bnn +bpr +aOV aaa -aTi -aUy -aWb -aXz -aZe -aVZ -bcx -aVZ -aVZ -bhg -biN -bkP -bmq -boi -bpV -bsh -buv -bwf -bxT -bzP -bBS -bDD -bFn -bFn -bFn -bKA -bMk -bMk -bPy -bRr -aTi -bxO +aRy +aSF +aTX +aVp +aWP +aTV +aZV +aTV +aTV +bew +bgk +blE +bjQ +blH +bnD +bpQ +bsd +btL +bvy +bxq +bzr +bAY +bCE +bCE +bCE +bHF +bJk +bJk +bMq +cgy +aRy +bvt aaa -aKs -bYk -bZv -aOO -biQ -anY +aMq +chz +cmK +bpr +bgn +anT aaa aaa aaa @@ -133197,52 +133615,52 @@ aaa aaa aaa aaa -anY -aKs -aLJ -aNw -aOO -aQr +anT +aMq +bnm +bpq +bpr +aOV aaa -aTi -aTi -aVZ -aXA -aZf -baX -bcy -baX -baX -bhh -biO -bkQ -bmq -boj -bpW -bsi -buw -bwf -bxU -bzQ -bBT -bDE -bFm -bGX -bIY -bIX -bMl -bNX -bPz -bRs -aTi -bxO +aRy +aRy +aTV +aVq +aWQ +aYA +aZW +aYA +aYA +bex +bgl +bir +bjQ +bse +bnE +bpR +byM +btL +bvz +bxr +bzs +bJi +bCD +bEj +bGe +bGd +bKP +bOb +bMr +cho +aRy +bvt aaa -aKs -bYk -aNw -bBW -biQ -anY +aMq +chz +bpq +bzv +bgn +anT aaa aaa aaa @@ -133454,52 +133872,52 @@ aaa aaa aaa aaa -anY +anT aaa -aLK -aNx -aOQ -aQr +aOY +bcQ +aNz +aOV aaa aaa -aTi -aVZ -aXB -aZg -baY -bcz -bel -aZg -aXB -biP -bkR -bmq -bmq -bpR -bsj -bur -bwf -bxV -bzR -bBU -bDF -bFm -bGU -bIX -bIX -bMm -bNY -bPA -bRt -aTi +aRy +aTV +aVr +aWR +aYB +aZX +bbH +aWR +aVr +bgm +bis +bjQ +bjQ +bnz +bpS +brZ +btL +bvA +bxs +bzt +bBa +bCD +bEg +bGd +bGd +bKN +bOa +bMs +chn +aRy aaa aaa -aKs -bhj -aXu -aLK +aMq +bez +aVk +aOY aaa -anY +anT aaa aaa aaa @@ -133711,52 +134129,52 @@ aaa aaa aaa aaa -anY -anY -anY -aNr -aOQ -aQr +anT +anT +anT +aMr +aNz +aOV aaa aaa -aTi -aTi -aVZ -aVZ -aVZ -bcA -aVZ -aVZ -aVZ -aVZ -aVZ -bmt -bok -bpX -bsk -bux -bwf -bwf -bwf -bwf -bwf -bFm -bGY -bIZ -bKB -bMn -aTi -aTi -aTi -aTi +aRy +aRy +aTV +aTV +aTV +aZY +aTV +aTV +aTV +aTV +aTV +bjT +blJ +bnF +bpT +byO +btL +btL +btL +btL +btL +bCD +bEk +bGf +bHG +bJn +aRy +aRy +aRy +aRy aaa aaa -aKs -bhj -bDG -anY -anY -anY +aMq +bez +bBb +anT +anT +anT aaa aaa aaa @@ -133970,48 +134388,48 @@ aaa aaa aaa aaa -anY -aKs -aOQ -aQr +anT +aMq +aNz +aOV aaa aaa aaa -aTi -aTi -aTi -aVZ -aVZ -aVZ -aTi -aTi -aTi -aTi -bmt -bol -bpY -bsl -buy -aTi -aTi -aTi -aTi -aTi -aTi -aTi -aTi -aTi -aTi -aTi -bxO -bxO +aRy +aRy +aRy +aTV +aTV +aTV +aRy +aRy +aRy +aRy +bjT +blK +bnG +bpU +bsg +aRy +aRy +aRy +aRy +aRy +aRy +aRy +aRy +aRy +aRy +aRy +bvt +bvt aaa aaa aaa -aKs -bhj -biQ -anY +aMq +bez +bgn +anT aaa aaa aaa @@ -134227,48 +134645,48 @@ aaa aaa aaa aaa -anY -aKs -aOQ -aQr +anT +aMq +aNz +aOV aaa aaa aaa -aVY +aTU aaa -aTi -aTi -aTi -aTi -aTi -aTi -aTi -aTi -aTi -bom -bpZ -bsm -buz -aTi -bxO +aRy +aRy +aRy +aRy +aRy +aRy +aRy +aRy +aRy +blL +bnH +bpV +bsh +aRy +bvt aaa -aVY +aTU aaa aaa aaa aaa aaa aaa -aVY +aTU aaa aaa aaa aaa aaa -aKs -bhj -biQ -anY +aMq +bez +bgn +anT aaa aaa aaa @@ -134484,48 +134902,48 @@ aaa aaa aaa aaa -anY -aKs -aOQ -aQt -aLF -aLF -aLF -aWc +anT +aMq +aNz +aOX +aNw +aNw +aNw +aTY aaa aaa aaa aaa aaa aaa -aVY +aTU aaa aaa -aTi -bon -bqa -bsn -buA -aTi +aRy +blM +bnI +bpW +bsi +aRy aaa aaa -aWc -aLF -aLF -aLF -aLF -aLF -aLF -aWc -aLF -aLF -aLF -aLF -aLF -boa -bhj -biQ -anY +aTY +aNw +aNw +aNw +aNw +aNw +aNw +aTY +aNw +aNw +aNw +aNw +aNw +bly +bez +bgn +anT aaa aaa aaa @@ -134741,48 +135159,48 @@ aaa aaa aaa aaa -anY -aKs -aOR -aQp -aQp -aQp -aQp -aWd -aQt -aLF -aLF -aLF -aLF -aLF -aWc +anT +aMq +aNB +aOT +aOT +aOT +aOT +aTZ +aOX +aNw +aNw +aNw +aNw +aNw +aTY aaa aaa -aTi -aTi -aTi -bso -aTi -aTi +aRy +aRy +aRy +bpX +aRy +aRy aaa -aKs -bBV -aQp -aQp -aQp -aQp -aQp -aQp -bNZ -bKw -bKw -bKw -bKw -bKw -bKw -bYm -bDG -anY +aMq +bzu +aOT +aOT +aOT +aOT +aOT +aOT +bKR +bMt +bMt +bMt +bMt +bMt +bMt +bUM +bBb +anT aaa aaa aaa @@ -134998,48 +135416,48 @@ aaa aaa aaa aaa -anY +anT aaa -aOS -aLK -aLK -aLK -aUz -aWe -aQp -aQp -aQp -aQp -aQp -aQp -bhi -biQ +aNC +aOY +aOY +aOY +aSG +aUa +aOT +aOT +aOT +aOT +aOT +aOT +bey +bgn aaa aaa aaa -aKs -bsp -biQ +aMq +bpY +bgn aaa aaa -aKs -bhj -aXu -aLK -aLK -aLK -aLK -aLK -aOS -aLK -aLK -aLK -aLK -aLK -aLK -aOS +aMq +bez +aVk +aOY +aOY +aOY +aOY +aOY +aNC +aOY +aOY +aOY +aOY +aOY +aOY +aNC aaa -anY +anT aaa aaa aaa @@ -135255,48 +135673,48 @@ aaa aaa aaa aaa -anY -anY -anY -anY -anY -anY +anT +anT +anT +anT +anT +anT aaa -aOS -aLK -aLK -aLK -aLK -aLK -aNx -bhj -biR -aLF -aLF -aLF -aNs -bsq -buB -aLF -aLF -boa -bhj -biQ -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY +aNC +aOY +aOY +aOY +aOY +aOY +bcQ +bez +bgo +aNw +aNw +aNw +aSD +bpZ +bsj +aNw +aNw +bly +bez +bgn +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT aaa aaa aaa @@ -135517,29 +135935,29 @@ aaa aaa aaa aaa -anY -anY -anY -anY -anY -anY -anY -anY -aKs -bhk -aQp -aQp -aQp -aQp -aQp -bsr -aQp -aQp -aQp -aQp -bBW -bDG -anY +anT +anT +anT +anT +anT +anT +anT +anT +aMq +beA +aOT +aOT +aOT +aOT +aOT +bqa +aOT +aOT +aOT +aOT +bzv +bBb +anT aaa aaa aaa @@ -135781,22 +136199,22 @@ aaa aaa aaa aaa -anY +anT aaa -aOS -aLK -aLK -aLK -aLK -aLK -aOS -aLK -aLK -aLK -aLK -aOS +aNC +aOY +aOY +aOY +aOY +aOY +aNC +aOY +aOY +aOY +aOY +aNC aaa -anY +anT aaa aaa aaa @@ -136038,22 +136456,22 @@ aaa aaa aaa aaa -anY -anY -aad -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY -anY +anT +anT +aag +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT +anT aaa aaa aaa diff --git a/_maps/map_files/Mining/Lavaland.dmm b/_maps/map_files/Mining/Lavaland.dmm index 388143b438..d72d67da8a 100644 --- a/_maps/map_files/Mining/Lavaland.dmm +++ b/_maps/map_files/Mining/Lavaland.dmm @@ -194,8 +194,10 @@ /turf/open/floor/plasteel, /area/mine/laborcamp) "aI" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock{ - cyclelinkeddir = 4; name = "Labor Camp External Access" }, /turf/open/floor/plasteel, @@ -285,8 +287,10 @@ /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/lavaland/surface/outdoors/explored) "aY" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 4; name = "Labor Camp Shuttle Security Airlock"; req_access_txt = "2" }, @@ -449,8 +453,10 @@ /turf/open/floor/plating/asteroid/basalt/lava_land_surface, /area/mine/eva) "bx" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 4; name = "Labor Camp Shuttle Prisoner Airlock"; req_access_txt = "0" }, @@ -657,8 +663,10 @@ }, /area/mine/eva) "bX" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; glass = 1; name = "Mining External Airlock"; opacity = 0; @@ -743,8 +751,10 @@ /turf/open/floor/plating, /area/mine/laborcamp) "cj" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; glass = 1; name = "Mining Shuttle Airlock"; opacity = 0; @@ -3298,31 +3308,39 @@ /turf/open/lava/smooth/lava_land_surface, /area/lavaland/surface/outdoors) "WA" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock{ - cyclelinkeddir = 8; name = "Labor Camp External Access" }, /turf/open/floor/plasteel, /area/mine/laborcamp) "WB" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 8; name = "Labor Camp Shuttle Security Airlock"; req_access_txt = "2" }, /turf/open/floor/plasteel, /area/mine/laborcamp) "WC" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 8; name = "Labor Camp Shuttle Prisoner Airlock"; req_access_txt = "0" }, /turf/open/floor/plasteel, /area/mine/laborcamp) "WD" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; glass = 1; name = "Mining External Airlock"; opacity = 0; @@ -3331,8 +3349,10 @@ /turf/open/floor/plasteel, /area/mine/eva) "WE" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; glass = 1; name = "Mining Shuttle Airlock"; opacity = 0; diff --git a/_maps/map_files/OmegaStation/OmegaStation.dmm b/_maps/map_files/OmegaStation/OmegaStation.dmm index 1f23ab98ab..88e19bad50 100644 --- a/_maps/map_files/OmegaStation/OmegaStation.dmm +++ b/_maps/map_files/OmegaStation/OmegaStation.dmm @@ -623,7 +623,6 @@ "abk" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 0; name = "Bridge Access"; req_access_txt = "19" }, @@ -648,7 +647,6 @@ "abl" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 0; name = "Bridge Access"; req_access_txt = "19" }, @@ -692,7 +690,6 @@ "abq" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 0; name = "Bridge Access"; req_access_txt = "19" }, @@ -708,7 +705,6 @@ "abr" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 0; name = "Bridge Access"; req_access_txt = "19" }, @@ -1272,6 +1268,9 @@ /obj/structure/cable/white{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/maintenance/starboard) "acD" = ( @@ -3201,6 +3200,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/quartermaster/storage) "agC" = ( @@ -4237,7 +4239,6 @@ "aiy" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 0; name = "Bridge Access"; req_access_txt = "19" }, @@ -4259,8 +4260,8 @@ /area/ai_monitored/nuke_storage) "aiA" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/highsecurity{ - locked = 1; name = "AI Vault Chamber"; req_access_txt = "16" }, @@ -4293,7 +4294,6 @@ "aiC" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 0; name = "Bridge Access"; req_access_txt = "19" }, @@ -5637,6 +5637,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/security/brig) "akV" = ( @@ -7103,6 +7104,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/hallway/primary/central) "anS" = ( @@ -7116,6 +7118,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/hallway/primary/central) "anT" = ( @@ -7130,6 +7133,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/hallway/primary/central) "anU" = ( @@ -7422,6 +7426,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/security/brig) "aoy" = ( @@ -7462,6 +7469,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/security/brig) "aoB" = ( @@ -7898,6 +7908,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/quartermaster/miningdock) "apn" = ( @@ -7968,6 +7981,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/security/brig) "apy" = ( @@ -8039,6 +8055,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/security/brig) "apD" = ( @@ -8082,6 +8101,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/security/brig) "apG" = ( @@ -8804,6 +8826,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/crew_quarters/bar/atrium) "ard" = ( @@ -8831,6 +8856,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/crew_quarters/bar/atrium) "arf" = ( @@ -13680,6 +13708,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/hallway/secondary/exit) "aBo" = ( @@ -14407,6 +14438,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/engine/atmos) "aCJ" = ( @@ -14655,6 +14687,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/hallway/secondary/exit) "aDj" = ( @@ -14715,6 +14750,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/engine/atmos) "aDu" = ( @@ -15274,11 +15310,13 @@ }, /area/crew_quarters/dorms) "aEL" = ( +/obj/item/twohanded/required/kirbyplants{ + icon_state = "plant-21" + }, /obj/machinery/status_display{ pixel_y = -32 }, /obj/effect/turf_decal/bot, -/obj/machinery/vending/kink, /turf/open/floor/plasteel/vault{ dir = 5 }, @@ -16051,6 +16089,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/engine/engineering) "aGo" = ( @@ -16662,6 +16703,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/engine/engineering) "aHy" = ( @@ -17868,6 +17912,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/maintenance/port/central) "aJN" = ( @@ -18100,6 +18145,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/engine/gravity_generator) "aKt" = ( @@ -18169,6 +18217,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/engine/gravity_generator) "aKy" = ( @@ -18758,6 +18809,7 @@ name = "Supermatter Chamber"; req_access_txt = "24" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/engine, /area/engine/supermatter) "aLS" = ( @@ -20990,8 +21042,8 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/command{ - cyclelinkeddir = 2; name = "Telecomms Server Room"; req_access = null; req_access_txt = "61" @@ -21842,7 +21894,6 @@ /area/maintenance/starboard/aft) "aSM" = ( /obj/machinery/door/airlock/command{ - cyclelinkeddir = 2; name = "Telecomms Server Room"; req_access = null; req_access_txt = "61" @@ -21856,6 +21907,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/vault/telecomms{ dir = 5 }, @@ -27613,6 +27667,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/science/research) "beN" = ( @@ -27634,6 +27689,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/science/research) "beO" = ( @@ -27949,6 +28005,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/vault{ dir = 8 }, @@ -28121,6 +28178,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/science/xenobiology) "bfR" = ( @@ -28146,6 +28206,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel, /area/science/xenobiology) "bfS" = ( @@ -28848,6 +28911,9 @@ /obj/structure/cable/white{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/vault{ dir = 8 }, @@ -30212,6 +30278,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/hallway/secondary/entry) "bkk" = ( @@ -31055,8 +31124,10 @@ /turf/open/space/basic, /area/space) "btk" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "External Docking Port" }, /obj/effect/turf_decal/stripes/line{ @@ -31068,8 +31139,10 @@ /turf/open/floor/plasteel, /area/hallway/secondary/entry) "btl" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "External Docking Port" }, /obj/effect/turf_decal/stripes/line{ @@ -31610,6 +31683,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/maintenance/starboard/fore) "byk" = ( @@ -31632,6 +31708,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/maintenance/starboard/fore) "bym" = ( @@ -31655,31 +31734,183 @@ /obj/structure/sign/nanotrasen, /turf/closed/wall, /area/security/checkpoint) -"hwc" = ( -/turf/closed/wall, +"cmp" = ( +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"csX" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/central) +"cRz" = ( +/obj/machinery/button/door{ + id = "supplybridge"; + name = "Shuttle Bay Space Bridge Control"; + pixel_y = 27; + req_access_txt = "0" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Bridge Hatch"; + req_access_txt = "12" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dfP" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dqM" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, /area/crew_quarters/cryopod) -"iCO" = ( -/obj/machinery/cryopod, -/turf/open/floor/plasteel/purple, -/area/crew_quarters/cryopod) -"puH" = ( +"eJF" = ( /obj/structure/cable/white{ icon_state = "0-8" }, /obj/machinery/power/apc{ areastring = "/area/medical/cryo"; - dir = 1; + dir = 2; name = "Cryogenics APC"; pixel_y = -24 }, /turf/open/floor/plasteel/purple, /area/crew_quarters/cryopod) -"rQZ" = ( +"fWz" = ( +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"gHi" = ( /obj/machinery/computer/cryopod{ pixel_x = 25 }, /turf/open/floor/plasteel/purple, /area/crew_quarters/cryopod) +"icS" = ( +/obj/machinery/cryopod, +/turf/open/floor/plasteel/purple, +/area/crew_quarters/cryopod) +"kKd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock"; + req_access = null; + req_access_txt = "48" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"lCg" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"nKi" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) "sws" = ( /obj/docking_port/stationary{ dheight = 1; @@ -31869,6 +32100,9 @@ /obj/structure/cable/white{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/maintenance/starboard) "sBW" = ( @@ -32516,6 +32750,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating, /area/maintenance/starboard) "sJe" = ( @@ -32550,6 +32787,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating, /area/maintenance/starboard) "sJk" = ( @@ -33281,8 +33521,8 @@ /area/ai_monitored/turret_protected/aisat_interior) "sML" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/highsecurity{ - locked = 1; name = "MiniSat Chamber"; req_access_txt = "16" }, @@ -33525,7 +33765,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "sNk" = ( /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "MiniSat External Access"; req_access = null; req_access_txt = "65" @@ -33586,6 +33825,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/vault, /area/ai_monitored/turret_protected/aisat_interior) "sNp" = ( @@ -33630,6 +33872,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel/vault, /area/ai_monitored/turret_protected/aisat_interior) "sNt" = ( @@ -33679,7 +33924,6 @@ /area/ai_monitored/turret_protected/aisat_interior) "sNy" = ( /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "MiniSat External Access"; req_access = null; req_access_txt = "65" @@ -34019,6 +34263,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/maintenance/starboard) "sOM" = ( @@ -34120,10 +34367,47 @@ "sPY" = ( /turf/open/floor/plating, /area/maintenance/starboard/aft) -"sXe" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, +"usJ" = ( +/turf/closed/wall, /area/crew_quarters/cryopod) +"uxJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Atrium" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar/atrium) +"uxM" = ( +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"wUF" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Supermatter Chamber"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/supermatter) (1,1,1) = {" aaa @@ -65597,7 +65881,7 @@ aHo aIl aLR aMU -aLR +wUF aMU aOa aMU @@ -72024,7 +72308,7 @@ aJM aKU aMj aNo -aJM +csX aOY aQf abt @@ -73342,14 +73626,14 @@ bgP bgP bjX bgU -bkj +cmp bgU bkt bky bkB bkE bgU -bkj +cmp bgU bjY sLm @@ -75856,7 +76140,7 @@ anb anS aoP apV -ard +uxJ asg asg auc @@ -76880,8 +77164,8 @@ ajx akA alt amm -puH -hwc +eJF +usJ aoT apZ ara @@ -77138,7 +77422,7 @@ akB alk amm amm -sXe +dqM aoU aqa arg @@ -77393,9 +77677,9 @@ aiC ajz akC alk -iCO -rQZ -sXe +icS +gHi +dqM aoV aqb arh @@ -78469,7 +78753,7 @@ aZe bdp aZe beL -aYu +nKi bfP bgp bhb @@ -79240,7 +79524,7 @@ baa bds baa aZl -aYu +dfP bfP bgs bhb @@ -81787,7 +82071,7 @@ sIw axW aRz sJN -sJd +cRz abN aaa bte @@ -82524,9 +82808,9 @@ aaa aaa ado aeh -agB +lCg ado -agB +lCg ahq ado aaa @@ -83821,7 +84105,7 @@ aaa aaa amD amD -apm +kKd amD amD aaa @@ -85375,17 +85659,17 @@ aaa aaa aaa azb -aBh +fWz azb -aDi +uxM azb aaa aaa aaa azb -aDi +uxM azb -aDi +uxM azb aaa aaa diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm index 4e866e4ec2..31fcdadf69 100644 --- a/_maps/map_files/PubbyStation/PubbyStation.dmm +++ b/_maps/map_files/PubbyStation/PubbyStation.dmm @@ -643,6 +643,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/ai_monitored/turret_protected/AIsatextAP) "adw" = ( @@ -697,6 +700,9 @@ /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 1 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating, /area/ai_monitored/turret_protected/AIsatextAS) "adC" = ( @@ -743,6 +749,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/ai_monitored/turret_protected/AIsatextAP) "adI" = ( @@ -779,6 +786,7 @@ /obj/structure/cable/yellow{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/aisat_interior) "adN" = ( @@ -808,6 +816,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 9 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/ai_monitored/turret_protected/AIsatextAS) "adR" = ( @@ -1141,6 +1150,9 @@ /obj/structure/cable/yellow{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/aisat_interior) "aeP" = ( @@ -1164,6 +1176,9 @@ name = "MiniSat Maintenance"; req_access_txt = "65" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plating, /area/ai_monitored/turret_protected/AIsatextAS) "aeT" = ( @@ -1740,8 +1755,8 @@ /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/aisat_interior) "agt" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "MiniSat External Access"; req_access = null; req_access_txt = "65" @@ -1789,6 +1804,7 @@ name = "Cell 2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/vault, /area/security/prison) "agA" = ( @@ -1807,6 +1823,7 @@ id_tag = "permabolt1"; name = "Cell 1" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/vault, /area/security/prison) "agC" = ( @@ -1961,8 +1978,10 @@ /turf/open/floor/plating, /area/security/main) "agR" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "MiniSat External Access"; req_access = null; req_access_txt = "65" @@ -2113,6 +2132,9 @@ req_access_txt = "2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) "ahn" = ( @@ -2136,6 +2158,9 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/floorgrime, /area/security/prison) "ahq" = ( @@ -3436,6 +3461,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) "akm" = ( @@ -3482,6 +3510,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating, /area/maintenance/department/crew_quarters/dorms) "akq" = ( @@ -5566,10 +5597,12 @@ /area/maintenance/fore) "apl" = ( /obj/machinery/door/airlock/external{ - cyclelinkeddir = 0; name = "Security External Airlock"; req_access_txt = "63" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/maintenance/fore) "apm" = ( @@ -5579,8 +5612,10 @@ /turf/open/floor/plating, /area/maintenance/fore) "apn" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Security External Airlock"; req_access_txt = "63" }, @@ -6285,6 +6320,9 @@ name = "Labor Camp Shuttle Airlock"; req_access_txt = "2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/security/brig) "arj" = ( @@ -6299,6 +6337,9 @@ pixel_y = -25; req_access_txt = "2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/security/brig) "ark" = ( @@ -6735,6 +6776,7 @@ /obj/machinery/door/airlock/external{ name = "Escape Pod" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/crew_quarters/dorms) "asj" = ( @@ -7312,8 +7354,8 @@ /turf/open/floor/plating, /area/security/brig) "atE" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 2; id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63" @@ -7337,8 +7379,8 @@ /turf/open/floor/plating, /area/security/brig) "atG" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 2; id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63" @@ -7376,6 +7418,7 @@ req_access = null; req_access_txt = "20" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/maintenance/fore) "atL" = ( @@ -7468,8 +7511,8 @@ /turf/closed/wall, /area/bridge) "atZ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Bridge External Access"; req_access = null; req_access_txt = "10;13" @@ -7869,9 +7912,8 @@ /turf/closed/wall/r_wall, /area/ai_monitored/nuke_storage) "auY" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/vault{ - icon_state = "door_locked"; - locked = 1; req_access_txt = "53" }, /obj/structure/cable{ @@ -8208,6 +8250,9 @@ req_access = null; req_access_txt = "20" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/maintenance/fore) "avN" = ( @@ -8242,6 +8287,9 @@ req_access_txt = "65" }, /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel/vault{ dir = 5 }, @@ -8321,8 +8369,10 @@ /turf/open/floor/plasteel/darkyellow, /area/bridge) "awc" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Bridge External Access"; req_access = null; req_access_txt = "10;13" @@ -8642,8 +8692,10 @@ /area/security/brig) "awL" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 1; id_tag = "outerbrig"; name = "Brig"; req_access_txt = "63" @@ -8670,8 +8722,10 @@ /area/security/brig) "awN" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/security/glass{ - cyclelinkeddir = 1; id_tag = "outerbrig"; name = "Brig"; req_access_txt = "63" @@ -8757,6 +8811,9 @@ req_access = null; req_access_txt = "20" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plating, /area/maintenance/fore) "awU" = ( @@ -8957,6 +9014,9 @@ /obj/machinery/door/airlock/public/glass{ name = "Holodeck Door" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) "axz" = ( @@ -9864,8 +9924,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13" @@ -9882,8 +9944,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13" @@ -10427,8 +10491,8 @@ /area/crew_quarters/heads/captain) "aBq" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 2; name = "Bridge"; req_access_txt = "19" }, @@ -10441,8 +10505,8 @@ "aBr" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 2; name = "Bridge"; req_access_txt = "19" }, @@ -10504,8 +10568,8 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 2; name = "Bridge"; req_access_txt = "19" }, @@ -12192,8 +12256,10 @@ /turf/open/floor/plating, /area/maintenance/department/cargo) "aFh" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; req_access_txt = "13" }, /turf/open/floor/plating, @@ -12202,8 +12268,10 @@ /turf/open/floor/plating, /area/maintenance/department/cargo) "aFj" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; req_access_txt = "13" }, /turf/open/floor/plating, @@ -12902,8 +12970,10 @@ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 1; name = "Bridge"; req_access_txt = "19" }, @@ -12916,8 +12986,10 @@ }, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 1; name = "Bridge"; req_access_txt = "19" }, @@ -12938,8 +13010,10 @@ /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/command/glass{ - cyclelinkeddir = 1; name = "Bridge"; req_access_txt = "19" }, @@ -14278,8 +14352,10 @@ /turf/open/floor/plating, /area/maintenance/department/cargo) "aKy" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Escape Airlock" }, /turf/open/floor/plating, @@ -14294,8 +14370,10 @@ /turf/open/floor/plating, /area/hallway/secondary/exit/departure_lounge) "aKB" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Escape Airlock" }, /turf/open/floor/plating, @@ -18286,6 +18364,9 @@ name = "Supply Dock Airlock"; req_access_txt = "31" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/quartermaster/storage) "aUz" = ( @@ -19763,7 +19844,6 @@ /area/crew_quarters/kitchen) "aYd" = ( /obj/machinery/door/airlock{ - cyclelinkeddir = 8; name = "Kitchen"; req_access_txt = "0"; req_one_access_txt = "25; 28" @@ -21303,8 +21383,8 @@ /turf/open/space, /area/solar/starboard) "bbQ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Port Docking Bay 1" }, /turf/open/floor/plating, @@ -21682,8 +21762,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13" @@ -21700,8 +21782,10 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Solar Maintenance"; req_access = null; req_access_txt = "10; 13" @@ -22072,8 +22156,10 @@ /turf/open/space, /area/solar/starboard) "bdV" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Port Docking Bay 1" }, /turf/open/floor/plating, @@ -22181,8 +22267,10 @@ /area/hydroponics) "bek" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/public/glass{ - cyclelinkeddir = 4; name = "Hydroponics"; req_access_txt = "35" }, @@ -22228,8 +22316,10 @@ /area/hallway/primary/central) "beo" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/public/glass{ - cyclelinkeddir = 8; name = "Kitchen"; req_access_txt = "28" }, @@ -22794,6 +22884,9 @@ req_access = null; req_access_txt = "48" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/quartermaster/miningdock) "bfJ" = ( @@ -25889,6 +25982,7 @@ req_access_txt = "30" }, /obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/dark, /area/science/server) "bnV" = ( @@ -27836,6 +27930,7 @@ }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/maintenance/department/cargo) "bsl" = ( @@ -28234,6 +28329,9 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/dark, /area/science/server) "btg" = ( @@ -28467,8 +28565,10 @@ /turf/open/space/basic, /area/space) "btL" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; id_tag = null; name = "Port Docking Bay 2"; req_access_txt = "0" @@ -28476,8 +28576,10 @@ /turf/open/floor/plating, /area/hallway/secondary/entry) "btM" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; id_tag = null; name = "Port Docking Bay 2"; req_access_txt = "0" @@ -29010,6 +29112,9 @@ name = "Kill Room Access"; req_access_txt = "55" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/science/xenobiology) "buT" = ( @@ -29047,6 +29152,9 @@ name = "Kill Room"; req_access_txt = "55" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating, /area/science/xenobiology) "buW" = ( @@ -30164,8 +30272,10 @@ /turf/open/floor/plasteel/dark, /area/science/research/lobby) "bxq" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/research{ - cyclelinkeddir = 4; name = "Research Division Access"; req_access_txt = "47" }, @@ -30200,8 +30310,10 @@ /turf/open/floor/plasteel/dark, /area/science/research) "bxt" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/research{ - cyclelinkeddir = 8; name = "Research Division Access"; req_access_txt = "47" }, @@ -30302,12 +30414,11 @@ /area/science/research) "bxE" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/research{ autoclose = 0; frequency = 1449; - icon_state = "door_locked"; id_tag = "xeno_airlock_exterior"; - locked = 1; name = "Xenobiology Lab External Airlock"; req_access_txt = "55" }, @@ -30321,6 +30432,9 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/science/xenobiology) "bxF" = ( @@ -30341,12 +30455,11 @@ /area/science/xenobiology) "bxI" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/research{ autoclose = 0; frequency = 1449; - icon_state = "door_locked"; id_tag = "xeno_airlock_interior"; - locked = 1; name = "Xenobiology Lab Internal Airlock"; req_access_txt = "55" }, @@ -30360,6 +30473,9 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel/white, /area/science/xenobiology) "bxJ" = ( @@ -30550,6 +30666,9 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plating, /area/maintenance/department/cargo) "bxX" = ( @@ -31925,12 +32044,11 @@ /area/medical/virology) "bAX" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/virology{ autoclose = 0; frequency = 1449; - icon_state = "door_locked"; id_tag = "virology_airlock_exterior"; - locked = 1; name = "Virology Exterior Airlock"; req_access_txt = "39" }, @@ -31945,6 +32063,7 @@ req_access_txt = "39" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/white, /area/medical/virology) "bAY" = ( @@ -33143,6 +33262,9 @@ name = "Toxins Storage"; req_access_txt = "8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/science/storage) "bDR" = ( @@ -33190,6 +33312,9 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/science/mixing) "bDV" = ( @@ -34111,12 +34236,11 @@ /area/medical/virology) "bFM" = ( /obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/virology{ autoclose = 0; frequency = 1449; - icon_state = "door_locked"; id_tag = "virology_airlock_interior"; - locked = 1; name = "Virology Interior Airlock"; req_access_txt = "39" }, @@ -34131,6 +34255,9 @@ req_access_txt = "39" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/plasteel/white, /area/medical/virology) "bFN" = ( @@ -34479,6 +34606,7 @@ /obj/machinery/door/airlock/external{ name = "Pod Docking Bay" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plating, /area/chapel/dock) "bGG" = ( @@ -35396,17 +35524,17 @@ /turf/closed/wall/r_wall, /area/science/mixing) "bIL" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/public/glass{ autoclose = 0; frequency = 1449; heat_proof = 1; - icon_state = "door_locked"; id_tag = "tox_airlock_interior"; - locked = 1; name = "Interior Airlock"; req_access_txt = "8"; req_one_access_txt = "0" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/engine, /area/science/mixing) "bIM" = ( @@ -35622,6 +35750,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/freezer, /area/medical/surgery) "bJr" = ( @@ -35645,6 +35776,9 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel/freezer, /area/medical/surgery) "bJu" = ( @@ -36383,23 +36517,25 @@ /turf/open/floor/engine/vacuum, /area/engine/atmos) "bLf" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/public/glass{ autoclose = 0; frequency = 1449; heat_proof = 1; - icon_state = "door_locked"; id_tag = "tox_airlock_exterior"; - locked = 1; name = "Exterior Airlock"; req_access_txt = "8"; req_one_access_txt = "0" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /turf/open/floor/engine, /area/science/mixing) "bLg" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; req_access_txt = "8"; req_one_access_txt = "0" }, @@ -36726,7 +36862,6 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/door/airlock/atmos/glass{ - cyclelinkeddir = 0; name = "Atmospherics"; req_access_txt = "24" }, @@ -37680,8 +37815,10 @@ /area/science/mixing) "bOu" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; req_access_txt = "8"; req_one_access_txt = "0" }, @@ -38979,6 +39116,9 @@ req_access_txt = "11" }, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/engine/gravity_generator) "bRI" = ( @@ -39004,6 +39144,9 @@ req_access_txt = "11" }, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/storage/tech) "bRL" = ( @@ -39463,7 +39606,6 @@ "bSQ" = ( /obj/machinery/door/firedoor/heavy, /obj/machinery/door/airlock/atmos/glass{ - cyclelinkeddir = 0; name = "Atmospherics Monitoring"; req_access_txt = "24" }, @@ -39805,8 +39947,8 @@ /turf/closed/wall, /area/engine/engineering) "bTF" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/engineering{ - cyclelinkeddir = 2; name = "Engineering"; req_one_access_txt = "10;24" }, @@ -40550,6 +40692,18 @@ }, /turf/open/space/basic, /area/space/nearstation) +"bVq" = ( +/obj/machinery/door/airlock/external{ + name = "Construction Zone"; + req_access = null; + req_access_txt = "0"; + req_one_access_txt = "0" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) "bVr" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/airless, @@ -41409,8 +41563,10 @@ /turf/open/floor/plasteel/dark, /area/engine/engine_smes) "bXp" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/engineering{ - cyclelinkeddir = 1; name = "Engine Room"; req_access_txt = "10" }, @@ -41552,9 +41708,10 @@ /turf/open/floor/plasteel/dark, /area/chapel/main/monastery) "bXL" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 4 +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 }, +/obj/machinery/door/airlock/external, /turf/open/floor/plating, /area/chapel/asteroid/monastery) "bXM" = ( @@ -41564,9 +41721,10 @@ /turf/open/floor/plating, /area/chapel/asteroid/monastery) "bXN" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 8 +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 }, +/obj/machinery/door/airlock/external, /turf/open/floor/plating, /area/chapel/asteroid/monastery) "bXS" = ( @@ -41799,12 +41957,14 @@ /area/chapel/main/monastery) "bYF" = ( /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Construction Zone"; req_access = null; req_access_txt = "0"; req_one_access_txt = "0" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/maintenance/department/engine) "bYG" = ( @@ -42793,13 +42953,12 @@ /obj/structure/cable/yellow{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/public/glass{ autoclose = 0; frequency = 1449; heat_proof = 1; - icon_state = "door_locked"; id_tag = "incinerator_airlock_interior"; - locked = 1; name = "Turbine Interior Airlock"; req_access_txt = "24"; req_one_access_txt = "0" @@ -42816,13 +42975,12 @@ /obj/structure/cable/yellow{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/public/glass{ autoclose = 0; frequency = 1449; heat_proof = 1; - icon_state = "door_locked"; id_tag = "incinerator_airlock_exterior"; - locked = 1; name = "Turbine Exterior Airlock"; req_access_txt = "24"; req_one_access_txt = "0" @@ -43568,8 +43726,10 @@ }, /area/maintenance/disposal/incinerator) "cdj" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; name = "Atmospherics External Access"; req_access = null; req_access_txt = "24" @@ -43586,8 +43746,10 @@ /turf/open/floor/plating, /area/maintenance/disposal/incinerator) "cdl" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; name = "Atmospherics External Access"; req_access = null; req_access_txt = "24" @@ -43872,6 +44034,9 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 5 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/chapel/main/monastery) "ceh" = ( @@ -43948,8 +44113,8 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Engineering External Access"; req_access = null; req_access_txt = "10;13" @@ -44008,8 +44173,8 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Engineering External Access"; req_access = null; req_access_txt = "10;13" @@ -44268,8 +44433,10 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Engineering External Access"; req_access = null; req_access_txt = "10;13" @@ -44315,8 +44482,10 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Engineering External Access"; req_access = null; req_access_txt = "10;13" @@ -44365,18 +44534,20 @@ }, /area/chapel/main/monastery) "cfH" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 4 +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 }, +/obj/machinery/door/airlock/external, /turf/open/floor/plating, /area/chapel/main/monastery) "cfI" = ( /turf/open/floor/plating, /area/chapel/main/monastery) "cfJ" = ( -/obj/machinery/door/airlock/external{ - cyclelinkeddir = 8 +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 }, +/obj/machinery/door/airlock/external, /turf/open/floor/plating, /area/chapel/main/monastery) "cfK" = ( @@ -44564,8 +44735,8 @@ /turf/open/floor/plating, /area/engine/engineering) "cgs" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Engineering External Access"; req_access = null; req_access_txt = "61" @@ -44849,8 +45020,10 @@ /turf/open/floor/plasteel/showroomfloor, /area/chapel/main/monastery) "chv" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Engineering External Access"; req_access = null; req_access_txt = "61" @@ -45915,8 +46088,8 @@ /turf/open/space, /area/space/nearstation) "clz" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 2; name = "Telecommunications External Access"; req_access = null; req_access_txt = "61" @@ -45940,8 +46113,10 @@ /turf/open/floor/plating, /area/tcommsat/computer) "clD" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 1; name = "Telecommunications External Access"; req_access = null; req_access_txt = "61" @@ -46295,8 +46470,8 @@ }, /area/tcommsat/computer) "cmw" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/engineering/glass{ - cyclelinkeddir = 2; name = "Server Room"; req_access_txt = "61" }, @@ -46370,8 +46545,10 @@ /turf/open/floor/plating, /area/tcommsat/computer) "cmF" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/engineering/glass{ - cyclelinkeddir = 1; name = "Server Room"; req_access_txt = "61" }, @@ -46941,7 +47118,6 @@ /area/crew_quarters/bar) "cpe" = ( /obj/machinery/door/airlock{ - cyclelinkeddir = 4; name = "Bar Access"; req_access_txt = "25" }, @@ -47501,8 +47677,10 @@ /turf/open/space, /area/space/nearstation) "crz" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 4; req_access_txt = "13" }, /obj/structure/disposalpipe/segment{ @@ -47520,8 +47698,10 @@ /turf/open/floor/plating, /area/maintenance/department/engine) "crB" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/external{ - cyclelinkeddir = 8; req_access_txt = "13" }, /obj/structure/disposalpipe/segment{ @@ -47820,6 +48000,9 @@ opacity = 1; req_access_txt = "22" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/chapel/office) "csM" = ( @@ -48945,6 +49128,7 @@ name = "Library" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel/dark, /area/library) "cxB" = ( @@ -49788,13 +49972,59 @@ "cDa" = ( /turf/closed/wall, /area/quartermaster/warehouse) -"evx" = ( +"cDX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/darkpurple, +/area/crew_quarters/cryopod) +"gfg" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/plasteel/darkpurple, /area/crew_quarters/cryopod) -"iVL" = ( +"gHc" = ( +/turf/open/floor/plasteel/darkpurple, +/area/crew_quarters/cryopod) +"gOG" = ( +/obj/machinery/cryopod, +/turf/open/floor/plasteel/darkpurple, +/area/crew_quarters/cryopod) +"izB" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/crew_quarters/dorms) +"jgr" = ( +/obj/machinery/door/airlock/centcom{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"kjK" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"kls" = ( /obj/machinery/light{ dir = 8 }, @@ -49805,7 +50035,7 @@ }, /turf/open/floor/plasteel/dark, /area/security/prison) -"jvQ" = ( +"kFZ" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49817,7 +50047,15 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"lcu" = ( +"lqy" = ( +/obj/machinery/door/airlock/centcom{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/dark, +/area/library) +"mTb" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 }, @@ -49826,29 +50064,34 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) -"mhM" = ( -/turf/open/floor/plating/airless, -/area/space/nearstation) -"nnS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" +"oig" = ( +/obj/machinery/cryopod, +/obj/machinery/light/small/built{ + dir = 4 }, /turf/open/floor/plasteel/darkpurple, /area/crew_quarters/cryopod) -"oZq" = ( -/obj/structure/cable{ - icon_state = "4-8" +"oPy" = ( +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock"; + req_access = null; + req_access_txt = "48" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 }, -/obj/structure/cable{ - icon_state = "1-8" +/turf/open/floor/plating, +/area/quartermaster/miningdock) +"pbm" = ( +/obj/machinery/door/airlock/external{ + name = "Pod Docking Bay" }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"pgi" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/chapel/dock) +"pCj" = ( /obj/machinery/power/apc{ areastring = "/area/medical/cryo"; dir = 1; @@ -49860,35 +50103,51 @@ }, /turf/open/floor/plasteel/darkpurple, /area/crew_quarters/cryopod) -"pPV" = ( +"sQt" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"tBM" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/plasteel/stairs, /area/crew_quarters/cryopod) -"pXL" = ( +"tWw" = ( /obj/machinery/computer/cryopod{ pixel_y = 24 }, /turf/open/floor/plasteel/darkpurple, /area/crew_quarters/cryopod) -"qSi" = ( +"vvr" = ( /turf/closed/wall, /area/crew_quarters/cryopod) -"tnH" = ( -/obj/machinery/cryopod, -/obj/machinery/light/small/built{ - dir = 4 +"vzz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" }, -/turf/open/floor/plasteel/darkpurple, -/area/crew_quarters/cryopod) -"tMS" = ( -/obj/machinery/cryopod, -/turf/open/floor/plasteel/darkpurple, -/area/crew_quarters/cryopod) -"tUf" = ( -/turf/open/floor/plasteel/darkpurple, -/area/crew_quarters/cryopod) +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"vOw" = ( +/obj/machinery/door/airlock/centcom{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/library) (1,1,1) = {" aaa @@ -66484,7 +66743,7 @@ aaa bFE bGF bHJ -bGF +pbm bKa cqH bLn @@ -67561,13 +67820,13 @@ cjQ cjQ cxn cjQ -ckT +lqy cxC cxK cxX cyl cyz -ckT +jgr cjQ cjQ cjQ @@ -67824,7 +68083,7 @@ cxL cxY cym cyA -cxz +vOw ckm ckm ckm @@ -69483,7 +69742,7 @@ aem aem aeT afn -iVL +kls afZ agn agy @@ -75240,7 +75499,7 @@ bPA bSw bSw bDi -bYF +bVq bZt cac cac @@ -80138,8 +80397,8 @@ cgv cgV bBW bBW +aaa cgV -mhM aaa bBW bBW @@ -80914,7 +81173,7 @@ cis ciG aaa aaa -cgV +aaa cfV bTE abI @@ -81163,7 +81422,7 @@ cfd cfw cfW cgw -mhM +cgV abI abI cij @@ -81171,7 +81430,7 @@ cit ciH abI abI -mhM +cgV cfV bTE abI @@ -81302,7 +81561,7 @@ aee aee aee aev -adv +kjK aeZ afu afL @@ -81420,7 +81679,7 @@ cfe cfx cfa cgv -cgV +aaa aaa aaa cik @@ -82195,8 +82454,8 @@ cgV bBW aaa aaa -mhM cgV +aaa bBW bBW cgV @@ -86478,12 +86737,12 @@ aaa aaa aaa aaa -qSi -pgi -evx -pPV -jvQ -oZq +vvr +pCj +gfg +tBM +kFZ +aIU aJI aLe aMe @@ -86735,11 +86994,11 @@ aaa aaa aaa aaa -qSi -pXL -tUf -nnS -lcu +vvr +tWw +gHc +cDX +mTb aIU aJH aLe @@ -86992,10 +87251,10 @@ apX aBL aBL apX -qSi -tnH -tMS -qSi +vvr +oig +gOG +vvr aHN aIU aJI @@ -89552,7 +89811,7 @@ aoF aqY asi atk -asi +izB avk awv axt @@ -91890,9 +92149,9 @@ aaa aaa aLg aTr -aUy +sQt aPd -aUy +sQt aXz aLg aaa @@ -91901,7 +92160,7 @@ aaa aaa aaa bdI -bfI +oPy bdI aaa aEj @@ -93410,10 +93669,10 @@ atn atn avm avm -axy +vzz avm avm -axy +vzz avm avm atn diff --git a/_maps/map_files/debug/runtimestation.dmm b/_maps/map_files/debug/runtimestation.dmm index 60bf3a95a6..284898d6d9 100644 --- a/_maps/map_files/debug/runtimestation.dmm +++ b/_maps/map_files/debug/runtimestation.dmm @@ -180,6 +180,9 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/engine/engineering) "aD" = ( @@ -312,6 +315,9 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/engine/gravity_generator) "aV" = ( @@ -338,6 +344,9 @@ req_access_txt = "11"; req_one_access_txt = "0" }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/engine/gravity_generator) "aY" = ( @@ -1335,6 +1344,30 @@ }, /turf/open/floor/plasteel, /area/storage/primary) +"pI" = ( +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"Qt" = ( +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"WT" = ( +/obj/machinery/door/airlock, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/engineering) (1,1,1) = {" aa @@ -2755,7 +2788,7 @@ ad ad aj aj -aC +WT aj aj aj @@ -3465,7 +3498,7 @@ by by cn by -cn +Qt by cn by @@ -3573,7 +3606,7 @@ ad ad ad by -cn +pI by ad ad diff --git a/_maps/map_files/generic/CentCom.dmm b/_maps/map_files/generic/CentCom.dmm index fd823f0b01..5d36bb15ea 100644 --- a/_maps/map_files/generic/CentCom.dmm +++ b/_maps/map_files/generic/CentCom.dmm @@ -6045,6 +6045,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 2 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/centcom/supply) "qT" = ( @@ -6056,6 +6057,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 2 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/centcom/control) "qU" = ( @@ -6784,8 +6786,8 @@ }, /area/centcom/ferry) "sH" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/vault{ - locked = 1; name = "Vault Door"; req_access_txt = "53" }, @@ -8110,6 +8112,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/centcom/ferry) "wv" = ( @@ -8228,6 +8233,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plasteel, /area/centcom/evac) "wK" = ( @@ -8334,6 +8342,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plasteel, /area/centcom/ferry) "xd" = ( @@ -8622,6 +8633,20 @@ }, /turf/open/floor/engine/cult, /area/wizard_station) +"yj" = ( +/obj/machinery/door/airlock/centcom{ + name = "CentCom Security"; + opacity = 1; + req_access_txt = "101" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) "yk" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8 @@ -8817,6 +8842,21 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/grass, /area/wizard_station) +"yU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/centcom{ + name = "CentCom"; + opacity = 1; + req_access_txt = "0" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) "yX" = ( /obj/structure/chair/stool, /turf/open/floor/plasteel/dark, @@ -10656,6 +10696,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 2 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/tdome/tdomeobserve) "EC" = ( @@ -12157,6 +12198,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 2 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /turf/open/floor/plasteel, /area/tdome/tdomeadmin) "Iy" = ( @@ -13455,6 +13497,199 @@ }, /turf/open/floor/wood, /area/wizard_station) +"Nk" = ( +/obj/machinery/door/airlock/centcom{ + name = "Thunderdome"; + opacity = 1; + req_access_txt = "101" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"NG" = ( +/obj/machinery/door/airlock/centcom{ + name = "CentCom Security"; + opacity = 1; + req_access_txt = "101" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"NU" = ( +/obj/machinery/door/airlock/centcom{ + name = "CentCom"; + opacity = 1; + req_access_txt = "0" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Oj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/centcom{ + name = "CentCom"; + opacity = 1; + req_access_txt = "0" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Un" = ( +/obj/machinery/door/airlock/centcom{ + name = "Thunderdome"; + opacity = 1; + req_access_txt = "101" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"UO" = ( +/obj/machinery/door/airlock/centcom{ + name = "CentCom Security"; + opacity = 1; + req_access_txt = "101" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Wc" = ( +/obj/machinery/door/airlock/centcom{ + name = "CentCom Security"; + opacity = 1; + req_access_txt = "101" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/evac) +"WJ" = ( +/obj/machinery/door/airlock/centcom{ + name = "Thunderdome Administration"; + opacity = 1; + req_access_txt = "102" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeadmin) +"WQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/centcom{ + name = "CentCom Security"; + opacity = 1; + req_access_txt = "101" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"Xt" = ( +/obj/machinery/door/airlock/centcom{ + name = "CentCom Security"; + opacity = 1; + req_access_txt = "101" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel, +/area/centcom/control) +"Xy" = ( +/obj/machinery/door/airlock/external{ + name = "Ferry Airlock"; + req_access_txt = "0" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/ferry) +"Yt" = ( +/obj/machinery/door/airlock/centcom{ + name = "CentCom Security"; + opacity = 1; + req_access_txt = "101" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"ZJ" = ( +/obj/machinery/door/airlock/centcom{ + name = "CentCom Security"; + opacity = 1; + req_access_txt = "101" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/evac) +"ZX" = ( +/obj/machinery/door/airlock/centcom{ + name = "CentCom Security"; + opacity = 1; + req_access_txt = "101" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 2 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/supply) (1,1,1) = {" aa @@ -15337,7 +15572,7 @@ fX fX fX fX -fX +fY fX fX fX @@ -16108,7 +16343,7 @@ fX fX fX fX -fY +fX fX fX fX @@ -17386,21 +17621,21 @@ aa aa aa aa -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -17643,21 +17878,21 @@ aa aa aa aa -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -17900,21 +18135,21 @@ aa aa aa aa -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -18157,21 +18392,21 @@ aa aa aa aa -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -18414,21 +18649,21 @@ aa aa aa aa -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -18671,21 +18906,21 @@ aa aa aa aa -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX -fX +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -48582,7 +48817,7 @@ um nT vB oe -xc +Xy oe vB mD @@ -50123,9 +50358,9 @@ pR sw uQ mD -wu +WQ xh -wu +WQ mD yZ pg @@ -52215,7 +52450,7 @@ IS Je Jo IS -Ix +WJ IS JG JG @@ -52472,7 +52707,7 @@ IS Jf Jp IS -Ix +WJ IS JG JG @@ -55006,9 +55241,9 @@ iu iu io im -ja +Oj mk -ja +Oj im io iu @@ -55515,7 +55750,7 @@ mg qq qS rG -qS +ZX tK nq mR @@ -55527,9 +55762,9 @@ nq mR nq zF -kZ +Xt ut -kZ +NG ly jA jA @@ -56800,7 +57035,7 @@ nq qt qT rI -qT +NU tM nq iu @@ -56814,7 +57049,7 @@ nq nq qT BE -qT +NU wH nq np @@ -56826,11 +57061,11 @@ EO Ft EO Gm -Gx +Un GN GN GN -Gx +Nk HL HW HN @@ -57820,9 +58055,9 @@ il iu io iu -ja +yU mk -ja +yU iu io iu @@ -58097,9 +58332,9 @@ nq mR nq zG -kZ +Xt ut -kZ +NG ly jA jA @@ -58334,9 +58569,9 @@ il in im iu -ja +Oj mk -ja +Oj iu io io @@ -58601,12 +58836,12 @@ io io io tP -lT +UO io im -ja +yU mk -ja +yU im io iu @@ -59115,12 +59350,12 @@ io io iu im -lT +yj io im -ja +Oj mk -ja +Oj im io iu @@ -60164,7 +60399,7 @@ jA jA EB EF -EB +Yt FH Gq Gv @@ -61169,24 +61404,24 @@ io qx qx qx -sL +ZJ tR qx io im -ja +yU mk -ja +yU im io io io -lT +UO io io iu io -lT +UO io aa aa @@ -61210,7 +61445,7 @@ IS Je Jo IS -Ix +WJ IS JG JG @@ -61467,7 +61702,7 @@ IS Jf Jp IS -Ix +WJ IS JG JG @@ -61683,7 +61918,7 @@ io qx qx qx -sL +Wc qx qx qx @@ -61695,12 +61930,12 @@ rS qx qx qx -sL +Wc qx qx qx qx -sL +Wc qx aa aa diff --git a/_maps/shuttles/arrival_delta.dmm b/_maps/shuttles/arrival_delta.dmm index e6d9a7cb68..df4976c7e4 100644 --- a/_maps/shuttles/arrival_delta.dmm +++ b/_maps/shuttles/arrival_delta.dmm @@ -17,6 +17,7 @@ dwidth = 4; height = 17; name = "delta arrivals shuttle"; + timid = 1; width = 9 }, /turf/closed/wall/mineral/plastitanium, diff --git a/_maps/shuttles/cargo_birdboat.dmm b/_maps/shuttles/cargo_birdboat.dmm index 8815239d65..4abd694656 100644 --- a/_maps/shuttles/cargo_birdboat.dmm +++ b/_maps/shuttles/cargo_birdboat.dmm @@ -112,7 +112,8 @@ }, /obj/docking_port/mobile/supply{ dwidth = 3; - width = 10 + width = 10; + timid = 1 }, /turf/open/floor/plating, /area/shuttle/supply) diff --git a/_maps/shuttles/cargo_box.dmm b/_maps/shuttles/cargo_box.dmm index e4da4bf228..8f5a8ef1b4 100644 --- a/_maps/shuttles/cargo_box.dmm +++ b/_maps/shuttles/cargo_box.dmm @@ -49,7 +49,8 @@ }, /obj/docking_port/mobile/supply{ dwidth = 5; - width = 12 + width = 12; + timid = 1 }, /turf/open/floor/plating, /area/shuttle/supply) diff --git a/_maps/shuttles/cargo_delta.dmm b/_maps/shuttles/cargo_delta.dmm index 9fb96591fb..ba8a8a555f 100644 --- a/_maps/shuttles/cargo_delta.dmm +++ b/_maps/shuttles/cargo_delta.dmm @@ -92,6 +92,7 @@ /obj/docking_port/mobile/supply{ dir = 4; dwidth = 4; + timid = 1; width = 12 }, /turf/open/floor/plating, diff --git a/_maps/shuttles/emergency_airless.dmm b/_maps/shuttles/emergency_airless.dmm index d58c5e7604..1606703ac2 100644 --- a/_maps/shuttles/emergency_airless.dmm +++ b/_maps/shuttles/emergency_airless.dmm @@ -37,6 +37,7 @@ name = "Shuttle Under Construction"; port_direction = 4; preferred_direction = 2; + timid = 1; width = 30 }, /turf/open/floor/plating/airless, diff --git a/_maps/shuttles/emergency_arena.dmm b/_maps/shuttles/emergency_arena.dmm index b20ffddbc6..037af600f2 100644 --- a/_maps/shuttles/emergency_arena.dmm +++ b/_maps/shuttles/emergency_arena.dmm @@ -57,7 +57,8 @@ "o" = ( /obj/effect/forcefield/arena_shuttle_entrance, /obj/docking_port/mobile/emergency{ - name = "The Arena" + name = "The Arena"; + timid = 1 }, /turf/open/indestructible/necropolis/air, /area/shuttle/escape/arena) diff --git a/_maps/shuttles/emergency_asteroid.dmm b/_maps/shuttles/emergency_asteroid.dmm index d2f06cc036..01772ed706 100644 --- a/_maps/shuttles/emergency_asteroid.dmm +++ b/_maps/shuttles/emergency_asteroid.dmm @@ -35,7 +35,8 @@ dwidth = 10; height = 13; name = "Asteroid emergency shuttle"; - width = 28 + width = 28; + timid = 1 }, /turf/open/floor/mineral/titanium, /area/shuttle/escape) diff --git a/_maps/shuttles/emergency_bar.dmm b/_maps/shuttles/emergency_bar.dmm index 46d86dfa30..262ed4029b 100644 --- a/_maps/shuttles/emergency_bar.dmm +++ b/_maps/shuttles/emergency_bar.dmm @@ -242,7 +242,8 @@ name = "Emergency Shuttle Airlock" }, /obj/docking_port/mobile/emergency{ - name = "The Emergency Escape Bar" + name = "The Emergency Escape Bar"; + timid = 1 }, /turf/open/floor/plasteel/bar, /area/shuttle/escape) diff --git a/_maps/shuttles/emergency_birdboat.dmm b/_maps/shuttles/emergency_birdboat.dmm index df84efddfb..3b62aa9d7b 100644 --- a/_maps/shuttles/emergency_birdboat.dmm +++ b/_maps/shuttles/emergency_birdboat.dmm @@ -201,6 +201,7 @@ height = 18; port_direction = 4; width = 14; + timid = 1; name = "Birdboat emergency escape shuttle" }, /turf/open/floor/mineral/titanium, diff --git a/_maps/shuttles/emergency_box.dmm b/_maps/shuttles/emergency_box.dmm index 1b675f0538..6443518590 100644 --- a/_maps/shuttles/emergency_box.dmm +++ b/_maps/shuttles/emergency_box.dmm @@ -203,7 +203,8 @@ name = "Emergency Shuttle Airlock" }, /obj/docking_port/mobile/emergency{ - name = "Box emergency shuttle" + name = "Box emergency shuttle"; + timid = 1 }, /turf/open/floor/plating, /area/shuttle/escape) diff --git a/_maps/shuttles/emergency_cere.dmm b/_maps/shuttles/emergency_cere.dmm index 3d6550bdca..3c9188b883 100644 --- a/_maps/shuttles/emergency_cere.dmm +++ b/_maps/shuttles/emergency_cere.dmm @@ -551,6 +551,7 @@ name = "Cere emergency shuttle"; port_direction = 4; preferred_direction = 2; + timid = 1; width = 42 }, /turf/open/floor/plating, diff --git a/_maps/shuttles/emergency_clown.dmm b/_maps/shuttles/emergency_clown.dmm index 9574676a18..b0cd4e7113 100644 --- a/_maps/shuttles/emergency_clown.dmm +++ b/_maps/shuttles/emergency_clown.dmm @@ -191,7 +191,8 @@ name = "Emergency Shuttle Airlock" }, /obj/docking_port/mobile/emergency{ - name = "Snappop(tm)!" + name = "Snappop(tm)!"; + timid = 1 }, /turf/open/floor/plating, /area/shuttle/escape) diff --git a/_maps/shuttles/emergency_cramped.dmm b/_maps/shuttles/emergency_cramped.dmm index 6b5893ebd2..d8da16a7d9 100644 --- a/_maps/shuttles/emergency_cramped.dmm +++ b/_maps/shuttles/emergency_cramped.dmm @@ -62,7 +62,8 @@ dwidth = 3; height = 5; name = "Secure Transport Vessel 5"; - width = 14 + width = 14; + timid = 1 }, /turf/open/floor/plating, /area/shuttle/escape) diff --git a/_maps/shuttles/emergency_delta.dmm b/_maps/shuttles/emergency_delta.dmm index 54d011ffc7..6a166bfe15 100644 --- a/_maps/shuttles/emergency_delta.dmm +++ b/_maps/shuttles/emergency_delta.dmm @@ -443,7 +443,8 @@ name = "Delta emergency shuttle"; width = 30; preferred_direction = 2; - port_direction = 4 + port_direction = 4; + timid = 1 }, /turf/open/floor/plating, /area/shuttle/escape) diff --git a/_maps/shuttles/emergency_discoinferno.dmm b/_maps/shuttles/emergency_discoinferno.dmm index e1631ba1c1..3cd9fc7890 100644 --- a/_maps/shuttles/emergency_discoinferno.dmm +++ b/_maps/shuttles/emergency_discoinferno.dmm @@ -103,7 +103,8 @@ /area/shuttle/escape) "u" = ( /obj/docking_port/mobile/emergency{ - name = "Disco Inferno" + name = "Disco Inferno"; + timid = 1 }, /obj/machinery/door/airlock/gold{ armor = list("melee" = 30, "bullet" = 30, "laser" = 20, "energy" = 20, "bomb" = 10, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100); diff --git a/_maps/shuttles/emergency_goon.dmm b/_maps/shuttles/emergency_goon.dmm index a9f9a5b307..b79aa8c62c 100644 --- a/_maps/shuttles/emergency_goon.dmm +++ b/_maps/shuttles/emergency_goon.dmm @@ -39,7 +39,8 @@ dir = 2; dwidth = 9; name = "NES Port"; - width = 19 + width = 19; + timid = 1 }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/escape) diff --git a/_maps/shuttles/emergency_imfedupwiththisworld.dmm b/_maps/shuttles/emergency_imfedupwiththisworld.dmm index 8a33387a9d..403c75b1b6 100644 --- a/_maps/shuttles/emergency_imfedupwiththisworld.dmm +++ b/_maps/shuttles/emergency_imfedupwiththisworld.dmm @@ -13,7 +13,8 @@ dwidth = 1; height = 10; name = "Oh Hi Mark"; - width = 12 + width = 12; + timid = 1 }, /obj/machinery/door/airlock/wood, /turf/open/floor/wood, diff --git a/_maps/shuttles/emergency_luxury.dmm b/_maps/shuttles/emergency_luxury.dmm index 46e49bfb57..8306423ffd 100644 --- a/_maps/shuttles/emergency_luxury.dmm +++ b/_maps/shuttles/emergency_luxury.dmm @@ -24,6 +24,7 @@ dwidth = 5; height = 14; name = "Luxury emergency shuttle"; + timid = 1; width = 25 }, /obj/machinery/door/airlock/gold, diff --git a/_maps/shuttles/emergency_meta.dmm b/_maps/shuttles/emergency_meta.dmm index 1f3b49b675..0bd4da4a7d 100644 --- a/_maps/shuttles/emergency_meta.dmm +++ b/_maps/shuttles/emergency_meta.dmm @@ -28,6 +28,7 @@ dwidth = 5; height = 14; name = "Meta emergency shuttle"; + timid = 1; width = 25 }, /turf/open/floor/mineral/titanium/blue, diff --git a/_maps/shuttles/emergency_meteor.dmm b/_maps/shuttles/emergency_meteor.dmm index aaf0be6de8..a4584813c1 100644 --- a/_maps/shuttles/emergency_meteor.dmm +++ b/_maps/shuttles/emergency_meteor.dmm @@ -63,6 +63,7 @@ height = 40; movement_force = list("KNOCKDOWN" = 3, "THROW" = 6); name = "\proper a meteor with engines strapped to it"; + timid = 1; width = 40 }, /turf/open/floor/plating/asteroid, diff --git a/_maps/shuttles/emergency_mini.dmm b/_maps/shuttles/emergency_mini.dmm index a4636fd1c0..8bf882302b 100644 --- a/_maps/shuttles/emergency_mini.dmm +++ b/_maps/shuttles/emergency_mini.dmm @@ -170,6 +170,7 @@ dwidth = 8; height = 9; name = "Mini emergency shuttle"; + timid = 1; width = 21 }, /turf/open/floor/mineral/titanium/blue, diff --git a/_maps/shuttles/emergency_narnar.dmm b/_maps/shuttles/emergency_narnar.dmm index 0f24d118ed..165a2e5a2b 100644 --- a/_maps/shuttles/emergency_narnar.dmm +++ b/_maps/shuttles/emergency_narnar.dmm @@ -159,7 +159,8 @@ "E" = ( /obj/machinery/door/airlock/cult/friendly, /obj/docking_port/mobile/emergency{ - name = "shuttle 667" + name = "shuttle 667"; + timid = 1 }, /turf/open/floor/plating, /area/shuttle/escape) diff --git a/_maps/shuttles/emergency_pubby.dmm b/_maps/shuttles/emergency_pubby.dmm index d13786c6ae..92ad72d1c5 100644 --- a/_maps/shuttles/emergency_pubby.dmm +++ b/_maps/shuttles/emergency_pubby.dmm @@ -288,6 +288,7 @@ height = 15; name = "Pubby emergency shuttle"; port_direction = 4; + timid = 1; width = 18 }, /turf/open/floor/plating, diff --git a/_maps/shuttles/emergency_raven.dmm b/_maps/shuttles/emergency_raven.dmm index ea8bb30f86..f1dbe29fbe 100644 --- a/_maps/shuttles/emergency_raven.dmm +++ b/_maps/shuttles/emergency_raven.dmm @@ -614,6 +614,7 @@ dwidth = 14; height = 18; name = "CentCom Raven Battlecruiser"; + timid = 1; width = 32 }, /obj/machinery/door/airlock/hatch, diff --git a/_maps/shuttles/emergency_russiafightpit.dmm b/_maps/shuttles/emergency_russiafightpit.dmm index 85e0e00dbe..b68eeba8e3 100644 --- a/_maps/shuttles/emergency_russiafightpit.dmm +++ b/_maps/shuttles/emergency_russiafightpit.dmm @@ -277,7 +277,8 @@ "aW" = ( /obj/docking_port/mobile/emergency{ height = 15; - name = "Box emergency shuttle" + name = "Box emergency shuttle"; + timid = 1 }, /obj/machinery/door/airlock/security/glass{ name = "Emergency Shuttle Airlock" diff --git a/_maps/shuttles/emergency_scrapheap.dmm b/_maps/shuttles/emergency_scrapheap.dmm index cd6a1b9fe9..c2452c1761 100644 --- a/_maps/shuttles/emergency_scrapheap.dmm +++ b/_maps/shuttles/emergency_scrapheap.dmm @@ -217,7 +217,8 @@ name = "Emergency Shuttle Airlock" }, /obj/docking_port/mobile/emergency{ - name = "Scrapheap Challenge" + name = "Scrapheap Challenge"; + timid = 1 }, /turf/open/floor/plating, /area/shuttle/escape) diff --git a/_maps/shuttles/emergency_supermatter.dmm b/_maps/shuttles/emergency_supermatter.dmm index 9e11d60d5f..d5caf0ddb2 100644 --- a/_maps/shuttles/emergency_supermatter.dmm +++ b/_maps/shuttles/emergency_supermatter.dmm @@ -141,7 +141,8 @@ name = "Emergency Shuttle Airlock" }, /obj/docking_port/mobile/emergency{ - name = "Hyperfractal Gigashuttle" + name = "Hyperfractal Gigashuttle"; + timid = 1 }, /turf/open/floor/plating, /area/shuttle/escape) diff --git a/_maps/shuttles/emergency_wabbajack.dmm b/_maps/shuttles/emergency_wabbajack.dmm index 25d97e2bbf..facb14a15c 100644 --- a/_maps/shuttles/emergency_wabbajack.dmm +++ b/_maps/shuttles/emergency_wabbajack.dmm @@ -154,6 +154,7 @@ name = "Emergency Shuttle Airlock" }, /obj/docking_port/mobile/emergency{ + timid = 1; name = "NT Lepton Violet" }, /turf/open/floor/plating, diff --git a/_maps/shuttles/ferry_base.dmm b/_maps/shuttles/ferry_base.dmm index cb9d6c4834..e0cdfc2c38 100644 --- a/_maps/shuttles/ferry_base.dmm +++ b/_maps/shuttles/ferry_base.dmm @@ -55,7 +55,8 @@ id = "ferry"; name = "ferry shuttle"; port_direction = 2; - width = 5 + width = 5; + timid = 1 }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/transport) diff --git a/_maps/shuttles/ferry_fancy.dmm b/_maps/shuttles/ferry_fancy.dmm index a79903533e..83795f0c55 100644 --- a/_maps/shuttles/ferry_fancy.dmm +++ b/_maps/shuttles/ferry_fancy.dmm @@ -72,6 +72,7 @@ name = "ferry shuttle"; port_direction = 1; preferred_direction = 4; + timid = 1; width = 5 }, /turf/open/floor/pod/light, diff --git a/_maps/shuttles/ferry_lighthouse.dmm b/_maps/shuttles/ferry_lighthouse.dmm index b94e82c049..f1c7bb5e69 100644 --- a/_maps/shuttles/ferry_lighthouse.dmm +++ b/_maps/shuttles/ferry_lighthouse.dmm @@ -165,6 +165,7 @@ height = 27; id = "ferry"; name = "The Lighthouse"; + timid = 1; port_direction = 2; width = 16 }, diff --git a/_maps/shuttles/ferry_meat.dmm b/_maps/shuttles/ferry_meat.dmm index 2fd1c308c6..d7802a6773 100644 --- a/_maps/shuttles/ferry_meat.dmm +++ b/_maps/shuttles/ferry_meat.dmm @@ -111,7 +111,8 @@ id = "ferry"; name = "ferry shuttle"; port_direction = 2; - width = 5 + width = 5; + timid = 1 }, /turf/open/floor/plasteel/freezer, /area/shuttle/transport) diff --git a/_maps/shuttles/labour_box.dmm b/_maps/shuttles/labour_box.dmm index 315c40b8b9..dac173c279 100644 --- a/_maps/shuttles/labour_box.dmm +++ b/_maps/shuttles/labour_box.dmm @@ -111,6 +111,7 @@ id = "laborcamp"; name = "labor camp shuttle"; port_direction = 4; + timid = 1; width = 9 }, /turf/open/floor/mineral/titanium/blue, diff --git a/_maps/shuttles/mining_box.dmm b/_maps/shuttles/mining_box.dmm index 7378c8013d..2b1771e0c7 100644 --- a/_maps/shuttles/mining_box.dmm +++ b/_maps/shuttles/mining_box.dmm @@ -41,6 +41,7 @@ id = "mining"; name = "mining shuttle"; port_direction = 4; + timid = 1; width = 7 }, /turf/open/floor/plating, diff --git a/_maps/shuttles/whiteship_box.dmm b/_maps/shuttles/whiteship_box.dmm index 2daa647497..d51176b1b8 100644 --- a/_maps/shuttles/whiteship_box.dmm +++ b/_maps/shuttles/whiteship_box.dmm @@ -19,6 +19,7 @@ name = "NT Medical Ship"; port_direction = 8; preferred_direction = 4; + timid = 1; width = 35 }, /turf/open/floor/mineral/titanium, diff --git a/_maps/shuttles/whiteship_cere.dmm b/_maps/shuttles/whiteship_cere.dmm index f189ba7478..913f005c17 100644 --- a/_maps/shuttles/whiteship_cere.dmm +++ b/_maps/shuttles/whiteship_cere.dmm @@ -23,6 +23,7 @@ name = "NT Recovery White-Ship"; port_direction = 8; preferred_direction = 1; + timid = 1; width = 16 }, /turf/open/floor/plating, diff --git a/_maps/shuttles/whiteship_delta.dmm b/_maps/shuttles/whiteship_delta.dmm index 1bf4ae78d4..35b425ae77 100644 --- a/_maps/shuttles/whiteship_delta.dmm +++ b/_maps/shuttles/whiteship_delta.dmm @@ -12,8 +12,8 @@ /turf/closed/wall/mineral/titanium/nodiagonal, /area/shuttle/abandoned) "ad" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/door/airlock/titanium{ - cyclelinkeddir = 2; name = "External Airlock" }, /obj/effect/decal/cleanable/dirt{ @@ -102,8 +102,10 @@ }, /area/shuttle/abandoned) "an" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, /obj/machinery/door/airlock/titanium{ - cyclelinkeddir = 1; glass = 1; name = "Internal Airlock" }, @@ -953,8 +955,10 @@ /turf/open/floor/plasteel, /area/shuttle/abandoned) "bP" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /obj/machinery/door/airlock/titanium{ - cyclelinkeddir = 4; glass = 1; name = "Internal Airlock" }, @@ -967,8 +971,10 @@ }, /area/shuttle/abandoned) "bQ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/titanium{ - cyclelinkeddir = 8; name = "External Airlock" }, /obj/effect/decal/cleanable/dirt{ @@ -1500,8 +1506,10 @@ /turf/open/floor/plating, /area/shuttle/abandoned) "cS" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /obj/machinery/door/airlock/titanium{ - cyclelinkeddir = 8; name = "External Airlock" }, /obj/effect/decal/cleanable/dirt{ @@ -1518,6 +1526,7 @@ name = "White-Ship"; port_direction = 8; preferred_direction = 8; + timid = 0; width = 32 }, /turf/open/floor/plasteel/neutral, diff --git a/_maps/shuttles/whiteship_meta.dmm b/_maps/shuttles/whiteship_meta.dmm index a45cfd00ae..9052339cf8 100644 --- a/_maps/shuttles/whiteship_meta.dmm +++ b/_maps/shuttles/whiteship_meta.dmm @@ -39,6 +39,7 @@ name = "NT Recovery White-Ship"; port_direction = 8; preferred_direction = 4; + timid = 1; width = 28 }, /turf/open/floor/mineral/titanium/blue, diff --git a/_maps/shuttles/whiteship_pubby.dmm b/_maps/shuttles/whiteship_pubby.dmm index c1171c899d..3ef386e265 100644 --- a/_maps/shuttles/whiteship_pubby.dmm +++ b/_maps/shuttles/whiteship_pubby.dmm @@ -94,6 +94,7 @@ name = "White Ship"; port_direction = 4; preferred_direction = 1; + timid = 1; width = 9 }, /turf/open/floor/plasteel/dark, diff --git a/_maps/templates/pirate_ship.dmm b/_maps/templates/pirate_ship.dmm index 8b513991b0..ddf66e6a81 100644 --- a/_maps/templates/pirate_ship.dmm +++ b/_maps/templates/pirate_ship.dmm @@ -448,9 +448,9 @@ /area/shuttle/pirate) "bg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/vault{ id_tag = "piratevault"; - locked = 1; name = "Vault" }, /obj/effect/decal/cleanable/dirt, @@ -648,9 +648,9 @@ /turf/open/floor/plating, /area/shuttle/pirate) "bF" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/external{ - id_tag = "pirateportexternal"; - locked = 1 + id_tag = "pirateportexternal" }, /obj/docking_port/mobile/pirate{ callTime = 100; @@ -675,6 +675,9 @@ name = "Deep Space"; width = 23 }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/shuttle/pirate) "bG" = ( @@ -683,6 +686,9 @@ "bH" = ( /obj/machinery/door/airlock/external, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating, /area/shuttle/pirate) "bI" = ( @@ -818,6 +824,9 @@ /area/shuttle/pirate) "bU" = ( /obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, /turf/open/floor/plating, /area/shuttle/pirate) "bV" = ( @@ -825,11 +834,14 @@ /turf/open/floor/plating, /area/shuttle/pirate) "bW" = ( +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/external{ - id_tag = "piratestarboardexternal"; - locked = 1 + id_tag = "piratestarboardexternal" }, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, /turf/open/floor/plating, /area/shuttle/pirate) "bX" = ( @@ -1700,10 +1712,10 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/public/glass{ heat_proof = 1; id_tag = "pirateturbinebolt"; - locked = 1; name = "Turbine Access" }, /turf/open/floor/engine, diff --git a/code/__DEFINES/layers.dm b/code/__DEFINES/layers.dm index c01cfe45b4..b22768d494 100644 --- a/code/__DEFINES/layers.dm +++ b/code/__DEFINES/layers.dm @@ -36,6 +36,7 @@ #define BELOW_OPEN_DOOR_LAYER 2.6 #define BLASTDOOR_LAYER 2.65 #define OPEN_DOOR_LAYER 2.7 +#define DOOR_HELPER_LAYER 2.71 //keep this above OPEN_DOOR_LAYER #define PROJECTILE_HIT_THRESHHOLD_LAYER 2.75 //projectiles won't hit objects at or below this layer if possible #define TABLE_LAYER 2.8 #define BELOW_OBJ_LAYER 2.9 diff --git a/code/game/machinery/doors/poddoor.dm b/code/game/machinery/doors/poddoor.dm index 9e467e8926..2bce3671e0 100644 --- a/code/game/machinery/doors/poddoor.dm +++ b/code/game/machinery/doors/poddoor.dm @@ -68,4 +68,4 @@ /obj/machinery/door/poddoor/try_to_crowbar(obj/item/I, mob/user) if(stat & NOPOWER) - open(1) + open(1) \ No newline at end of file diff --git a/code/modules/mapping/mapping_helpers.dm b/code/modules/mapping/mapping_helpers.dm index 842373dbad..054d97c9f1 100644 --- a/code/modules/mapping/mapping_helpers.dm +++ b/code/modules/mapping/mapping_helpers.dm @@ -95,6 +95,49 @@ ..() return INITIALIZE_HINT_QDEL + +//airlock helpers +/obj/effect/mapping_helpers/airlock + layer = DOOR_HELPER_LAYER + +/obj/effect/mapping_helpers/airlock/cyclelink_helper + name = "airlock cyclelink helper" + icon_state = "airlock_cyclelink_helper" + +/obj/effect/mapping_helpers/airlock/cyclelink_helper/Initialize(mapload) + . = ..() + if(!mapload) + log_world("### MAP WARNING, [src] spawned outside of mapload!") + return + var/obj/machinery/door/airlock/airlock = locate(/obj/machinery/door/airlock) in loc + if(airlock) + if(airlock.cyclelinkeddir) + log_world("### MAP WARNING, [src] at [COORD(src)] tried to set [airlock] cyclelinkeddir, but it's already set!") + else + airlock.cyclelinkeddir = dir + else + log_world("### MAP WARNING, [src] failed to find an airlock at [COORD(src)]") + + +/obj/effect/mapping_helpers/airlock/locked + name = "airlock lock helper" + icon_state = "airlock_locked_helper" + +/obj/effect/mapping_helpers/airlock/locked/Initialize(mapload) + . = ..() + if(!mapload) + log_world("### MAP WARNING, [src] spawned outside of mapload!") + return + var/obj/machinery/door/airlock/airlock = locate(/obj/machinery/door/airlock) in loc + if(airlock) + if(airlock.locked) + log_world("### MAP WARNING, [src] at [COORD(src)] tried to bolt [airlock] but it's already locked!") + else + airlock.locked = TRUE + else + log_world("### MAP WARNING, [src] failed to find an airlock at [COORD(src)]") + + //needs to do its thing before spawn_rivers() is called INITIALIZE_IMMEDIATE(/obj/effect/mapping_helpers/no_lava) @@ -117,4 +160,3 @@ GLOBAL_LIST_EMPTY(z_is_planet) . = ..() var/turf/T = get_turf(src) GLOB.z_is_planet["[T.z]"] = TRUE - diff --git a/icons/effects/mapping_helpers.dmi b/icons/effects/mapping_helpers.dmi index bc7db470661212bec5d4b0604ad3abf8538838bf..ae929c194eb9bb1b85182d1de23b1312edd6f38a 100644 GIT binary patch literal 1604 zcmV-K2D|x*P)V=-0C=2*jm-)IArwZ}`V^O$ee^S1H{lR2W?n%=Zz`+76U~Dwfhd7 z!`H)cJgFJvr1*lRhMYjau-S5U53YF-aM*L^F=!*Qq&&lhUFa&zeCD4qWh{o?|K+#335{W35)R17PD79;f|J0fuw5yC)yQ|&V(Y{^n`@w>C zJi9Y`-^_b6Pb=A~*Xv;Dn4<1L(P06IVF8FK#l2vuT9sjc|8!-=((g|3h$X;MwJLw? z^#JLw!FH*HTh*#$5uy`&2DogOhA%yNcnD0fSBrzT04EO*P4=U(=nq#ZhYtf(rWd96 zb!B={x`$uAu`~o zKy(rEW_%zg0sx~$$fNNA0|E#kE}7^^6oN#^tMP$^0;CmyRlFjkZG0ib9U+7iLfr8? zk4tV`kcyw7QylrW{NhglupOfh&UJ29<|y@Q3N&U)<7AA(<16p zGc6G^6@P( zJ?BhJVhi9Vqo4#~B+Q2t84kk4a1bU&D;v7J)qv~w%WJdt&*$%&?2{HsdKhqAqF-6s z_Zmf_AneA2j09m@UfYDUyMX%8)NolSgX`=r`yX!dhtPCil*Hacm?bNd}Uhb|BR(F17CRcnDBLD#V`Gplcc=7Pa==GL` zjb3#YJ$UgD&o8V1$}IAf8DZjLfODFgRnWu;kXI(j1?3VJfEX5l7#4sS7JwKQfEX5l z7#4sS7JwKQfEX5l7#4sSOU|9Si~X4e9DjWeKoh`*a{xeBsoV8l-1zpVE&x=1`24ib zy-)kRKI%az4Pbv}0YEv0Hp`wi3(XXczrKe`1QmqNlZfEX5l7#4sS z7JwKQfSAx9>*%5XZ)=4R>aURVzQ7=XGeG_a{Ql3cn3M0}ssye|;4^s^;C+Enf@VPN z)lJy1ZUVr+O7R9j|Enky1t;T(;UG*53qTADK+OMn;wHlw3RoWi0000V=-0C=2JR&a84_w-Y6@%7{?OD!tS%+FJ>RWQ*r;NmRLOex7wuvIWN;^NFm z%}mcIfpCgT5=&AQY!#H0xHwZXi;5L&6%4sJ(~1&vQz2})g1r3roW!z3TV@W zTzoyb0D2)KiB|xft^fc5o=HSORA_Ex#T>m!GB$d%T|E? zG@$#tKMiP_FD}+E6mMV|FbT0}CGk!6@w^4=N`D&g@w{~*k+J)%nQxu`F)<<5;)`ZL zDE+77ku{tT_l^4m*w^fMW1xG@_neOMEifvDpIv;1yCODq79be_u>V2GyyaL8$mvI} z0k%LX8sspG!=sl^tZA}mxFLcF~J0O=-B#RD{A0KmEl9Pt1J43JV@ za>qy|WCB+_K&AnE6+j!;gdFhz4J`p1pHPl?fJ_7SO#iK58(_rOSO#lFkV11cz+Lmy zbAk)YfIUxuHnEQ%UrY+k6v4G>&o!Y515&p-jtSXCaBHahJkz%3q=_1^C0QBp8~6cQ7zo(-(vt}Q0000 Date: Sat, 17 Feb 2018 18:05:26 -0600 Subject: [PATCH 90/94] Flightsuit Armor adjustments (#5515) * armor tweaks * marks the nerfs for future generations to respect. * Modularizes values flags are still getting trimmed tho. * reee --- code/modules/clothing/spacesuits/flightsuit.dm | 6 +++--- .../code/modules/clothing/spacesuits/flightsuit.dm | 9 +++++++++ tgstation.dme | 1 + 3 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 modular_citadel/code/modules/clothing/spacesuits/flightsuit.dm diff --git a/code/modules/clothing/spacesuits/flightsuit.dm b/code/modules/clothing/spacesuits/flightsuit.dm index a393ab71e0..684649b566 100644 --- a/code/modules/clothing/spacesuits/flightsuit.dm +++ b/code/modules/clothing/spacesuits/flightsuit.dm @@ -752,7 +752,7 @@ item_state = "flightsuit" strip_delay = 30 w_class = WEIGHT_CLASS_BULKY - resistance_flags = FIRE_PROOF | ACID_PROOF + resistance_flags = FIRE_PROOF helmettype = /obj/item/clothing/head/helmet/space/hardsuit/flightsuit jetpack = null actions_types = list(/datum/action/item_action/flightsuit/toggle_helmet, /datum/action/item_action/flightsuit/toggle_boots, /datum/action/item_action/flightsuit/toggle_flightpack, /datum/action/item_action/flightsuit/lock_suit) @@ -1073,12 +1073,12 @@ icon_state = "flighthelmet" item_state = "flighthelmet" item_color = "flight" - resistance_flags = FIRE_PROOF | ACID_PROOF + resistance_flags = FIRE_PROOF brightness_on = 7 light_color = "#30ffff" armor = list("melee" = 20, "bullet" = 20, "laser" = 20, "energy" = 10, "bomb" = 30, "bio" = 100, "rad" = 75, "fire" = 100, "acid" = 100) max_heat_protection_temperature = FIRE_HELM_MAX_TEMP_PROTECT - var/list/datahuds = list(DATA_HUD_SECURITY_ADVANCED, DATA_HUD_MEDICAL_ADVANCED, DATA_HUD_DIAGNOSTIC_BASIC) + var/list/datahuds = list(DATA_HUD_SECURITY_BASIC, DATA_HUD_MEDICAL_BASIC, DATA_HUD_DIAGNOSTIC_BASIC) //CITADEL NERF var/zoom_range = 12 var/zoom = FALSE actions_types = list(/datum/action/item_action/toggle_helmet_light, /datum/action/item_action/flightpack/zoom) diff --git a/modular_citadel/code/modules/clothing/spacesuits/flightsuit.dm b/modular_citadel/code/modules/clothing/spacesuits/flightsuit.dm new file mode 100644 index 0000000000..9abd12c6bb --- /dev/null +++ b/modular_citadel/code/modules/clothing/spacesuits/flightsuit.dm @@ -0,0 +1,9 @@ + +/obj/item/device/flightpack + armor = list("melee" = 5, "bullet" = 5, "laser" = 5, "energy" = 0, "bomb" = 0, "bio" = 100, "rad" = 20, "fire" = 20, "acid" = 20) + +/obj/item/clothing/suit/space/hardsuit/flightsuit + armor = list("melee" = 5, "bullet" = 5, "laser" = 5, "energy" = 0, "bomb" = 0, "bio" = 100, "rad" = 20, "fire" = 20, "acid" = 20) + +/obj/item/clothing/head/helmet/space/hardsuit/flightsuit + armor = list("melee" = 5, "bullet" = 5, "laser" = 5, "energy" = 0, "bomb" = 0, "bio" = 100, "rad" = 20, "fire" = 20, "acid" = 20) \ No newline at end of file diff --git a/tgstation.dme b/tgstation.dme index c914ff5882..e8054cfceb 100755 --- a/tgstation.dme +++ b/tgstation.dme @@ -2566,6 +2566,7 @@ #include "modular_citadel\code\modules\client\loadout\suit.dm" #include "modular_citadel\code\modules\client\loadout\uniform.dm" #include "modular_citadel\code\modules\client\verbs\who.dm" +#include "modular_citadel\code\modules\clothing\spacesuits\flightsuit.dm" #include "modular_citadel\code\modules\clothing\under.dm" #include "modular_citadel\code\modules\clothing\under\polychromic_clothes.dm" #include "modular_citadel\code\modules\clothing\under\turtlenecks.dm" From ca5095a1b3dda0f065a578a4e36ccd0588e0aa01 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 17 Feb 2018 18:05:28 -0600 Subject: [PATCH 91/94] Automatic changelog generation for PR #5515 [ci skip] --- html/changelogs/AutoChangeLog-pr-5515.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5515.yml diff --git a/html/changelogs/AutoChangeLog-pr-5515.yml b/html/changelogs/AutoChangeLog-pr-5515.yml new file mode 100644 index 0000000000..eea214c057 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5515.yml @@ -0,0 +1,4 @@ +author: "Poojawa" +delete-after: True +changes: + - balance: "returned Flightsuit armor to being less useful, also ensured they're not getting the best possible huds as well. Batteries to be done eventually." From d85116abe7156b9ae33b25e26ced32b3bb8a0664 Mon Sep 17 00:00:00 2001 From: Poojawa Date: Sat, 17 Feb 2018 18:10:21 -0600 Subject: [PATCH 92/94] fixes travis --- code/modules/vore/eating/voreitems.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/vore/eating/voreitems.dm b/code/modules/vore/eating/voreitems.dm index a1d52d109a..5d157c39fe 100644 --- a/code/modules/vore/eating/voreitems.dm +++ b/code/modules/vore/eating/voreitems.dm @@ -33,7 +33,7 @@ ////////////////////////// Anti-Noms Drugs ////////////////////////// - +/* /datum/reagent/medicine/ickypak name = "Ickypak" id = "ickypak" @@ -60,4 +60,4 @@ name = "Ickypak" id = "ickypak" results = list("ickypak" = 2) - required_reagents = list("chlorine" = 2 , "oil" = 1) \ No newline at end of file + required_reagents = list("chlorine" = 2 , "oil" = 1) */ \ No newline at end of file From 1585de0687f6a2336be0ef192dbae6c2b2b79989 Mon Sep 17 00:00:00 2001 From: Zna12 Date: Sat, 17 Feb 2018 19:18:22 -0600 Subject: [PATCH 93/94] [Ready to merge] Au-toy-lathe (#5534) * Autoylathe Complete. All the errors with the autoylathe should be fixed for now * Toylathe Tweaking and plastic's initializing. Well, this gets plastics halfway there. The toylathe now has 8 categories to choose from and some other sutff. It's all coming back. * TOY LATHE NOW ACCEPTING PLASTIC TOYLATHE IS WORKING AND RUNNING PROPERLY. SOME GUNS HAVE BEEN ADDED AND WILL NEED MORE TIME TO ADD MORE GUNS. * Toy Datum construction. Building some datums for the toys for the autoylathe to print. * Toys toys toys Adding toys to the list woo * Autoylathe complete. Holy shit it's fucking done. * Fixes a duplicate id. Also adds some shit to the hacked list. * Okay this shit needs to stop Rogue indentations? Nani? * ugh fuck * Rogue indents * Power issues Fixes power scaling and the draining an APC * Rogue File deletion. Part of an early experiment that didn't work out. * Some other tweaks and shit Moves datums to the autoylathe designs and also fixes a dumb mistake I made. * Clamps? Added a clamp. Who knew? * Shit. Won't compile if it keeps looking for a file that doesn't exist * Woops Deleted a line not paying attention * reworked initialize I think I did this right. * Revert "reworked initialize" This reverts commit 649c156baebd64b6cd84e95f2f4c3cbd70dabce7. * Odd variables that don't have any other references in the coding. Why are these even here? Seriously. * UNUSED VARIABLE?! NANI?! Deleted. Don't need em. --- code/__DEFINES/construction.dm | 3 +- code/__DEFINES/machines.dm | 3 +- code/citadel/cit_guns.dm | 75 --- code/datums/components/material_container.dm | 5 + .../items/stacks/sheets/sheet_types.dm | 1 + code/game/objects/items/toys.dm | 4 +- .../code/datums/wires/autoylathe.dm | 48 ++ .../code/game/machinery/toylathe.dm | 379 +++++++++++ .../circuitboards/machine_circuitboards.dm | 10 +- .../research/designs/autoylathe_designs.dm | 626 ++++++++++++++++++ .../research/designs/machine_designs.dm | 6 + .../code/modules/research/techweb/_techweb.dm | 3 + .../modules/research/techweb/all_nodes.dm | 8 + tgstation.dme | 6 + 14 files changed, 1096 insertions(+), 81 deletions(-) create mode 100644 modular_citadel/code/datums/wires/autoylathe.dm create mode 100644 modular_citadel/code/game/machinery/toylathe.dm create mode 100644 modular_citadel/code/modules/research/designs/autoylathe_designs.dm create mode 100644 modular_citadel/code/modules/research/designs/machine_designs.dm create mode 100644 modular_citadel/code/modules/research/techweb/_techweb.dm create mode 100644 modular_citadel/code/modules/research/techweb/all_nodes.dm diff --git a/code/__DEFINES/construction.dm b/code/__DEFINES/construction.dm index b3a9a05119..8d77c39740 100644 --- a/code/__DEFINES/construction.dm +++ b/code/__DEFINES/construction.dm @@ -91,6 +91,7 @@ #define MAT_BANANIUM "$bananium" #define MAT_TITANIUM "$titanium" #define MAT_BIOMASS "$biomass" +#define MAT_PLASTIC "$plastic" //The amount of materials you get from a sheet of mineral like iron/diamond/glass etc #define MINERAL_MATERIAL_AMOUNT 2000 //The maximum size of a stack object. @@ -125,4 +126,4 @@ #define RCD_FLOORWALL 1 #define RCD_AIRLOCK 2 #define RCD_DECONSTRUCT 3 -#define RCD_WINDOWGRILLE 4 \ No newline at end of file +#define RCD_WINDOWGRILLE 4 diff --git a/code/__DEFINES/machines.dm b/code/__DEFINES/machines.dm index 4ac48b7d4f..4665bd3b1e 100644 --- a/code/__DEFINES/machines.dm +++ b/code/__DEFINES/machines.dm @@ -29,6 +29,7 @@ #define BIOGENERATOR 32 //Uses biomass #define LIMBGROWER 64 //Uses synthetic flesh #define SMELTER 128 //uses various minerals +#define AUTOYLATHE 256 //Uses glass/metal/Plastic //Note: More then one of these can be added to a design but imprinter and lathe designs are incompatable. //Modular computer/NTNet defines @@ -86,4 +87,4 @@ #define SUPERMATTER_DELAMINATING 6 // Pretty obvious. //R&D Snowflakes -#define RD_CONSOLE_LOCKED_SCREEN 0.2 \ No newline at end of file +#define RD_CONSOLE_LOCKED_SCREEN 0.2 diff --git a/code/citadel/cit_guns.dm b/code/citadel/cit_guns.dm index abd54a7520..da1171bb26 100644 --- a/code/citadel/cit_guns.dm +++ b/code/citadel/cit_guns.dm @@ -189,15 +189,6 @@ w_class = WEIGHT_CLASS_BULKY weapon_weight = WEAPON_HEAVY -/datum/design/foam_x9 - name = "Foam Force X9 Rifle" - id = "foam_x9" - build_type = AUTOLATHE - materials = list(MAT_METAL = 24000, MAT_GLASS = 14000) - build_path = /obj/item/gun/ballistic/automatic/x9/toy - category = list("hacked", "Misc") - - ////////XCOM2 Magpistol///////// //////projectiles////// @@ -352,22 +343,6 @@ ammo_type = /obj/item/ammo_casing/caseless/foam_dart/mag max_ammo = 42 -/datum/design/magfoam_dart - name = "Box of MagFoam Darts" - id = "magfoam_dart" - build_type = AUTOLATHE - materials = list(MAT_METAL = 300, MAT_GLASS = 200) - build_path = /obj/item/ammo_box/foambox/mag - category = list("initial", "Misc") - -/datum/design/foam_magpistol - name = "Foam Force Magpistol" - id = "magfoam_launcher" - build_type = AUTOLATHE - materials = list(MAT_METAL = 7500, MAT_GLASS = 1000) - build_path = /obj/item/gun/ballistic/shotgun/toy/mag - category = list("hacked", "Misc") - //////Magrifle////// ///projectiles/// @@ -502,14 +477,6 @@ w_class = WEIGHT_CLASS_BULKY weapon_weight = WEAPON_HEAVY -/datum/design/foam_magrifle - name = "Foam Force MagRifle" - id = "foam_magrifle" - build_type = AUTOLATHE - materials = list(MAT_METAL = 15000, MAT_GLASS = 7500) - build_path = /obj/item/gun/ballistic/automatic/magrifle/toy - category = list("hacked", "Misc") - /* // TECHWEBS IMPLEMENTATION */ @@ -648,14 +615,6 @@ name = "toy mag burst rifle power supply" maxcharge = 4000 -/datum/design/foam_hyperburst - name = "MagTag Hyper Rifle" - id = "foam_hyperburst" - build_type = AUTOLATHE - materials = list(MAT_METAL = 35000, MAT_GLASS = 25000) - build_path = /obj/item/gun/energy/laser/practice/hyperburst - category = list("hacked", "Misc") - /* made redundant by reskinnable stetchkins //////Stealth Pistol////// @@ -708,15 +667,6 @@ cut_overlays() icon_state = "[initial(icon_state)][chambered ? "" : "-e"]" -/datum/design/foam_sp - name = "Foam Force Stealth Pistol" - id = "foam_sp" - build_type = AUTOLATHE - materials = list(MAT_METAL = 30000, MAT_GLASS = 15000) - build_path = /obj/item/gun/ballistic/automatic/toy/pistol/stealth - category = list("hacked", "Misc") - - //////10mm soporific bullets////// obj/item/projectile/bullet/c10mm/soporific @@ -923,14 +873,6 @@ obj/item/projectile/bullet/c10mm/soporific ammo_type = list(/obj/item/ammo_casing/energy/laser/raytag) selfcharge = TRUE -/datum/design/toyray - name = "RayTag Gun" - id = "toyray" - build_type = AUTOLATHE - materials = list(MAT_METAL = 7500, MAT_GLASS = 1000) - build_path = /obj/item/gun/energy/laser/practice/raygun - category = list("hacked", "Misc") - /*///////////////////////////////////////////////////////////////////////////////////////////// The Recolourable Gun *////////////////////////////////////////////////////////////////////////////////////////////// @@ -1179,15 +1121,6 @@ obj/item/projectile/bullet/c10mm/soporific can_suppress = FALSE actions_types = list(/datum/action/item_action/pick_color) -/datum/design/foam_p37 - name = "Foam Force Mk.37F" - id = "foam_p37" - build_type = AUTOLATHE - materials = list(MAT_METAL = 15000, MAT_GLASS = 10000) - build_path = /obj/item/gun/ballistic/automatic/pistol/p37/foam - category = list("hacked", "Misc") - - /*///////////////////////////////////////////////////////////////////////////////////////////// The Recolourable Energy Gun *////////////////////////////////////////////////////////////////////////////////////////////// @@ -1311,11 +1244,3 @@ obj/item/gun/energy/e_gun/cx/worn_overlays(isinhands, icon_file) w_class = WEIGHT_CLASS_NORMAL burst_size = 4 //Shh. fire_delay = 1 - -/datum/design/am4c - name = "Foam Force AM4-C Rifle" - id = "foam_am4c" - build_type = AUTOLATHE - materials = list(MAT_METAL = 24000, MAT_GLASS = 14000) - build_path = /obj/item/gun/ballistic/automatic/AM4C - category = list("hacked", "Misc") diff --git a/code/datums/components/material_container.dm b/code/datums/components/material_container.dm index 830f2d9a42..e3f0685ebb 100644 --- a/code/datums/components/material_container.dm +++ b/code/datums/components/material_container.dm @@ -350,3 +350,8 @@ /datum/material/biomass name = "Biomass" id = MAT_BIOMASS + +/datum/material/plastic + name = "Plastic" + id = MAT_PLASTIC + sheet_type = /obj/item/stack/sheet/plastic diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm index 91b3ebeb55..e5468675e2 100644 --- a/code/game/objects/items/stacks/sheets/sheet_types.dm +++ b/code/game/objects/items/stacks/sheets/sheet_types.dm @@ -458,6 +458,7 @@ GLOBAL_LIST_INIT(plastic_recipes, list( desc = "Compress dinosaur over millions of years, then refine, split and mold, and voila! You have plastic." singular_name = "plastic sheet" icon_state = "sheet-plastic" + materials = list(MAT_PLASTIC=MINERAL_MATERIAL_AMOUNT) throwforce = 7 merge_type = /obj/item/stack/sheet/plastic diff --git a/code/game/objects/items/toys.dm b/code/game/objects/items/toys.dm index 8350fce2b5..4bad63b5ee 100644 --- a/code/game/objects/items/toys.dm +++ b/code/game/objects/items/toys.dm @@ -42,7 +42,6 @@ icon_state = "waterballoon-e" item_state = "balloon-empty" - /obj/item/toy/balloon/New() create_reagents(10) ..() @@ -287,7 +286,6 @@ w_class = WEIGHT_CLASS_SMALL resistance_flags = FLAMMABLE - /obj/item/toy/windupToolbox name = "windup toolbox" desc = "A replica toolbox that rumbles when you turn the key." @@ -334,7 +332,7 @@ /obj/item/toy/katana name = "replica katana" - desc = "Woefully underpowered in D20." + desc = "Woefully underpowered in D20. Almost has a sharp edge." icon = 'icons/obj/items_and_weapons.dmi' icon_state = "katana" item_state = "katana" diff --git a/modular_citadel/code/datums/wires/autoylathe.dm b/modular_citadel/code/datums/wires/autoylathe.dm new file mode 100644 index 0000000000..736c9551ec --- /dev/null +++ b/modular_citadel/code/datums/wires/autoylathe.dm @@ -0,0 +1,48 @@ +/datum/wires/autoylathe + holder_type = /obj/machinery/autoylathe + proper_name = "Autoylathe" + +/datum/wires/autoylathe/New(atom/holder) + wires = list( + WIRE_HACK, WIRE_DISABLE, + WIRE_SHOCK, WIRE_ZAP + ) + add_duds(6) + ..() + +/datum/wires/autoylathe/interactable(mob/user) + var/obj/machinery/autoylathe/A = holder + if(A.panel_open) + return TRUE + +/datum/wires/autoylathe/get_status() + var/obj/machinery/autoylathe/A = holder + var/list/status = list() + status += "The red light is [A.disabled ? "on" : "off"]." + status += "The blue light is [A.hacked ? "on" : "off"]." + return status + +/datum/wires/autoylathe/on_pulse(wire) + var/obj/machinery/autoylathe/A = holder + switch(wire) + if(WIRE_HACK) + A.adjust_hacked(!A.hacked) + addtimer(CALLBACK(A, /obj/machinery/autoylathe.proc/reset, wire), 60) + if(WIRE_SHOCK) + A.shocked = !A.shocked + addtimer(CALLBACK(A, /obj/machinery/autoylathe.proc/reset, wire), 60) + if(WIRE_DISABLE) + A.disabled = !A.disabled + addtimer(CALLBACK(A, /obj/machinery/autoylathe.proc/reset, wire), 60) + +/datum/wires/autoylathe/on_cut(wire, mend) + var/obj/machinery/autoylathe/A = holder + switch(wire) + if(WIRE_HACK) + A.adjust_hacked(!mend) + if(WIRE_HACK) + A.shocked = !mend + if(WIRE_DISABLE) + A.disabled = !mend + if(WIRE_ZAP) + A.shock(usr, 50) diff --git a/modular_citadel/code/game/machinery/toylathe.dm b/modular_citadel/code/game/machinery/toylathe.dm new file mode 100644 index 0000000000..903235c763 --- /dev/null +++ b/modular_citadel/code/game/machinery/toylathe.dm @@ -0,0 +1,379 @@ +#define AUTOYLATHE_MAIN_MENU 1 +#define AUTOYLATHE_CATEGORY_MENU 2 +#define AUTOYLATHE_SEARCH_MENU 3 + +/obj/machinery/autoylathe + name = "autoylathe" + desc = "It produces items using plastic, metal and glass." + icon_state = "autolathe" + density = TRUE + anchored = TRUE + use_power = IDLE_POWER_USE + idle_power_usage = 10 + active_power_usage = 100 + circuit = /obj/item/circuitboard/machine/autoylathe + var/hacked = FALSE + var/disabled = FALSE + var/shocked = FALSE + var/busy = FALSE + var/prod_coeff = 1 + var/datum/design/being_built + var/datum/techweb/stored_research + var/list/datum/design/matching_designs + var/selected_category + var/screen = 1 + var/list/categories = list( + "Toys", + "Figurines", + "Pistols", + "Rifles", + "Heavy", + "Melee", + "Armor", + "Adult", + "Misc", + "Imported" + ) + +/obj/machinery/autoylathe/Initialize() + . = ..() + AddComponent(/datum/component/material_container, list(MAT_METAL, MAT_GLASS, MAT_PLASTIC), 0, TRUE, null, null, CALLBACK(src, .proc/AfterMaterialInsert)) + + wires = new /datum/wires/autoylathe(src) + stored_research = new /datum/techweb/specialized/autounlocking/autoylathe + matching_designs = list() + +/obj/machinery/autoylathe/Destroy() + QDEL_NULL(wires) + return ..() + +/obj/machinery/autoylathe/interact(mob/user) + if(!is_operational()) + return + + if(shocked && !(stat & NOPOWER)) + shock(user,50) + + var/dat + + switch(screen) + if(AUTOYLATHE_MAIN_MENU) + dat = main_win(user) + if(AUTOYLATHE_CATEGORY_MENU) + dat = category_win(user,selected_category) + if(AUTOYLATHE_SEARCH_MENU) + dat = search_win(user) + + var/datum/browser/popup = new(user, "Autoylathe", name, 400, 500) + popup.set_content(dat) + popup.open() + +/obj/machinery/autoylathe/on_deconstruction() + GET_COMPONENT(materials, /datum/component/material_container) + materials.retrieve_all() + +/obj/machinery/autoylathe/attackby(obj/item/O, mob/user, params) + if (busy) + to_chat(user, "The autoylathe is busy. Please wait for completion of previous operation.") + return TRUE + + if(default_deconstruction_screwdriver(user, "autolathe_t", "autolathe", O)) + updateUsrDialog() + return TRUE + + if(exchange_parts(user, O)) + return TRUE + + if(default_deconstruction_crowbar(O)) + return TRUE + + if(panel_open && is_wire_tool(O)) + wires.interact(user) + return TRUE + + if(user.a_intent == INTENT_HARM) //so we can hit the machine + return ..() + + if(stat) + return TRUE + + if(istype(O, /obj/item/disk/design_disk)) + user.visible_message("[user] begins to load \the [O] in \the [src]...", + "You begin to load a design from \the [O]...", + "You hear the chatter of a floppy drive.") + busy = TRUE + var/obj/item/disk/design_disk/D = O + if(do_after(user, 14.4, target = src)) + for(var/B in D.blueprints) + if(B) + stored_research.add_design(B) + busy = FALSE + return TRUE + + return ..() + +/obj/machinery/autoylathe/proc/AfterMaterialInsert(type_inserted, id_inserted, amount_inserted) + if(ispath(type_inserted, /obj/item/stack/ore/bluespace_crystal)) + use_power(amount_inserted / 10) + else + switch(id_inserted) + if (MAT_METAL) + flick("autolathe_o",src)//plays metal insertion animation + if (MAT_GLASS) + flick("autolathe_r",src)//plays glass insertion animation + if (MAT_PLASTIC) + flick("autolathe_o",src)//plays metal insertion animation + use_power(amount_inserted / 10) + updateUsrDialog() + +/obj/machinery/autoylathe/Topic(href, href_list) + if(..()) + return + if (!busy) + if(href_list["menu"]) + screen = text2num(href_list["menu"]) + updateUsrDialog() + + if(href_list["category"]) + selected_category = href_list["category"] + updateUsrDialog() + + if(href_list["make"]) + + ///////////////// + //href protection + being_built = stored_research.isDesignResearchedID(href_list["make"]) + if(!being_built) + return + + var/multiplier = text2num(href_list["multiplier"]) + var/is_stack = ispath(being_built.build_path, /obj/item/stack) + + ///////////////// + + var/coeff = (is_stack ? 1 : prod_coeff) //stacks are unaffected by production coefficient + var/metal_cost = being_built.materials[MAT_METAL] + var/glass_cost = being_built.materials[MAT_GLASS] + var/plastic_cost = being_built.materials[MAT_PLASTIC] + var/power = max(2000, (metal_cost+glass_cost+plastic_cost)*multiplier/5) + + GET_COMPONENT(materials, /datum/component/material_container) + if((materials.amount(MAT_METAL) >= metal_cost*multiplier*coeff) && (materials.amount(MAT_GLASS) >= glass_cost*multiplier*coeff) && (materials.amount(MAT_PLASTIC) >= plastic_cost*multiplier*coeff)) + busy = TRUE + use_power(power) + icon_state = "autolathe_n" + var/time = is_stack ? 32 : 32*coeff*multiplier + addtimer(CALLBACK(src, .proc/make_item, power, metal_cost, glass_cost, plastic_cost, multiplier, coeff, is_stack), time) + + if(href_list["search"]) + matching_designs.Cut() + + for(var/v in stored_research.researched_designs) + var/datum/design/D = stored_research.researched_designs[v] + if(findtext(D.name,href_list["to_search"])) + matching_designs.Add(D) + updateUsrDialog() + else + to_chat(usr, "The autoylathe is busy. Please wait for completion of previous operation.") + + updateUsrDialog() + + return + +/obj/machinery/autoylathe/proc/make_item(power, metal_cost, glass_cost, plastic_cost, multiplier, coeff, is_stack) + GET_COMPONENT(materials, /datum/component/material_container) + var/atom/A = drop_location() + use_power(power) + var/list/materials_used = list(MAT_METAL=metal_cost*coeff*multiplier, MAT_GLASS=glass_cost*coeff*multiplier, MAT_PLASTIC=plastic_cost*coeff*multiplier) + materials.use_amount(materials_used) + + if(is_stack) + var/obj/item/stack/N = new being_built.build_path(A, multiplier) + N.update_icon() + N.autoylathe_crafted(src) + else + for(var/i=1, i<=multiplier, i++) + var/obj/item/new_item = new being_built.build_path(A) + for(var/mat in materials_used) + new_item.materials[mat] = materials_used[mat] / multiplier + new_item.autoylathe_crafted(src) + icon_state = "autolathe" + busy = FALSE + updateDialog() + +/obj/machinery/autoylathe/RefreshParts() + var/T = 0 + for(var/obj/item/stock_parts/matter_bin/MB in component_parts) + T += MB.rating*75000 + GET_COMPONENT(materials, /datum/component/material_container) + materials.max_amount = T + T=1.2 + for(var/obj/item/stock_parts/manipulator/M in component_parts) + T -= M.rating*0.2 + prod_coeff = CLAMP(T,1,0) // Coeff going 1 -> 0,8 -> 0,6 -> 0,4 + +/obj/machinery/autoylathe/proc/main_win(mob/user) + var/dat = "

" + return dat + +/obj/machinery/autoylathe/proc/category_win(mob/user,selected_category) + var/dat = "Return to main menu" + dat += "

Browsing [selected_category]:


" + dat += materials_printout() + + for(var/v in stored_research.researched_designs) + var/datum/design/D = stored_research.researched_designs[v] + if(!(selected_category in D.category)) + continue + + if(disabled || !can_build(D)) + dat += "[D.name]" + else + dat += "[D.name]" + + if(ispath(D.build_path, /obj/item/stack)) + GET_COMPONENT(materials, /datum/component/material_container) + var/max_multiplier = min(D.maxstack, D.materials[MAT_METAL] ?round(materials.amount(MAT_METAL)/D.materials[MAT_METAL]):INFINITY,D.materials[MAT_GLASS] ?round(materials.amount(MAT_GLASS)/D.materials[MAT_GLASS]):INFINITY,D.materials[MAT_PLASTIC] ?round(materials.amount(MAT_PLASTIC)/D.materials[MAT_PLASTIC]):INFINITY) + if (max_multiplier>10 && !disabled) + dat += " x10" + if (max_multiplier>25 && !disabled) + dat += " x25" + if(max_multiplier > 0 && !disabled) + dat += " x[max_multiplier]" + else + if(!disabled && can_build(D, 5)) + dat += " x5" + if(!disabled && can_build(D, 10)) + dat += " x10" + + dat += "[get_design_cost(D)]
" + + dat += "
" + return dat + +/obj/machinery/autoylathe/proc/search_win(mob/user) + var/dat = "Return to main menu" + dat += "

Search results:


" + dat += materials_printout() + + for(var/v in matching_designs) + var/datum/design/D = v + if(disabled || !can_build(D)) + dat += "[D.name]" + else + dat += "[D.name]" + + if(ispath(D.build_path, /obj/item/stack)) + GET_COMPONENT(materials, /datum/component/material_container) + var/max_multiplier = min(D.maxstack, D.materials[MAT_METAL] ?round(materials.amount(MAT_METAL)/D.materials[MAT_METAL]):INFINITY,D.materials[MAT_GLASS] ?round(materials.amount(MAT_GLASS)/D.materials[MAT_GLASS]):INFINITY,D.materials[MAT_PLASTIC] ?round(materials.amount(MAT_PLASTIC)/D.materials[MAT_PLASTIC]):INFINITY) + if (max_multiplier>10 && !disabled) + dat += " x10" + if (max_multiplier>25 && !disabled) + dat += " x25" + if(max_multiplier > 0 && !disabled) + dat += " x[max_multiplier]" + + dat += "[get_design_cost(D)]
" + + dat += "
" + return dat + +/obj/machinery/autoylathe/proc/materials_printout() + GET_COMPONENT(materials, /datum/component/material_container) + var/dat = "Total amount: [materials.total_amount] / [materials.max_amount] cm3
" + for(var/mat_id in materials.materials) + var/datum/material/M = materials.materials[mat_id] + dat += "[M.name] amount: [M.amount] cm3
" + return dat + +/obj/machinery/autoylathe/proc/can_build(datum/design/D, amount = 1) + if(D.make_reagents.len) + return FALSE + + var/coeff = (ispath(D.build_path, /obj/item/stack) ? 1 : prod_coeff) + + GET_COMPONENT(materials, /datum/component/material_container) + if(D.materials[MAT_METAL] && (materials.amount(MAT_METAL) < (D.materials[MAT_METAL] * coeff * amount))) + return FALSE + if(D.materials[MAT_GLASS] && (materials.amount(MAT_GLASS) < (D.materials[MAT_GLASS] * coeff * amount))) + return FALSE + if(D.materials[MAT_PLASTIC] && (materials.amount(MAT_PLASTIC) < (D.materials[MAT_PLASTIC] * coeff * amount))) + return FALSE + return TRUE + +/obj/machinery/autoylathe/proc/get_design_cost(datum/design/D) + var/coeff = (ispath(D.build_path, /obj/item/stack) ? 1 : prod_coeff) + var/dat + if(D.materials[MAT_METAL]) + dat += "[D.materials[MAT_METAL] * coeff] metal " + if(D.materials[MAT_GLASS]) + dat += "[D.materials[MAT_GLASS] * coeff] glass " + if(D.materials[MAT_PLASTIC]) + dat += "[D.materials[MAT_PLASTIC] * coeff] plastic" + return dat + +/obj/machinery/autoylathe/proc/reset(wire) + switch(wire) + if(WIRE_HACK) + if(!wires.is_cut(wire)) + adjust_hacked(FALSE) + if(WIRE_SHOCK) + if(!wires.is_cut(wire)) + shocked = FALSE + if(WIRE_DISABLE) + if(!wires.is_cut(wire)) + disabled = FALSE + +/obj/machinery/autoylathe/proc/shock(mob/user, prb) + if(stat & (BROKEN|NOPOWER)) // unpowered, no shock + return FALSE + if(!prob(prb)) + return FALSE + var/datum/effect_system/spark_spread/s = new /datum/effect_system/spark_spread + s.set_up(5, 1, src) + s.start() + if (electrocute_mob(user, get_area(src), src, 0.7, TRUE)) + return TRUE + else + return FALSE + +/obj/machinery/autoylathe/proc/adjust_hacked(state) + hacked = state + for(var/id in SSresearch.techweb_designs) + var/datum/design/D = SSresearch.techweb_designs[id] + if((D.build_type & AUTOYLATHE) && ("hacked" in D.category)) + if(hacked) + stored_research.add_design(D) + else + stored_research.remove_design(D) + +/obj/machinery/autoylathe/hacked/Initialize() + . = ..() + adjust_hacked(TRUE) + +//Called when the object is constructed by an autoylathe +//Has a reference to the autoylathe so you can do !!FUN!! things with hacked lathes +/obj/item/proc/autoylathe_crafted(obj/machinery/autoylathe/A) + return diff --git a/modular_citadel/code/game/objects/items/circuitboards/machine_circuitboards.dm b/modular_citadel/code/game/objects/items/circuitboards/machine_circuitboards.dm index e0abfbb574..812f26748f 100644 --- a/modular_citadel/code/game/objects/items/circuitboards/machine_circuitboards.dm +++ b/modular_citadel/code/game/objects/items/circuitboards/machine_circuitboards.dm @@ -1,4 +1,12 @@ /obj/item/circuitboard/machine/kinkmate name = "Kinkmate Vendor (Machine Board)" build_path = /obj/machinery/vending/kink - req_components = list(/obj/item/vending_refill/kink) \ No newline at end of file + req_components = list(/obj/item/vending_refill/kink) + +/obj/item/circuitboard/machine/autoylathe + name = "Autoylathe (Machine Board)" + build_path = /obj/machinery/autoylathe + req_components = list( + /obj/item/stock_parts/matter_bin = 3, + /obj/item/stock_parts/manipulator = 1, + /obj/item/stack/sheet/glass = 1) diff --git a/modular_citadel/code/modules/research/designs/autoylathe_designs.dm b/modular_citadel/code/modules/research/designs/autoylathe_designs.dm new file mode 100644 index 0000000000..a257513e96 --- /dev/null +++ b/modular_citadel/code/modules/research/designs/autoylathe_designs.dm @@ -0,0 +1,626 @@ +/datum/design/autoylathe + build_type = AUTOYLATHE + +/datum/design/autoylathe/mech + category = list("initial", "Figurines") + +/datum/design/autoylathe/mech/contraband + category = list("hacked", "Figurines") + +/datum/design/autoylathe/figure + category = list("initial", "Figurines") + +/datum/design/autoylathe/balloon + name = "Empty Water balloon" + id = "waterballoon" + materials = list(MAT_PLASTIC = 50) + build_path = /obj/item/toy/balloon + category = list("initial", "Toys") + +/datum/design/autoylathe/spinningtoy + name = "Toy Singularity" + id = "singuloutoy" + materials = list(MAT_PLASTIC = 500) + build_path = /obj/item/toy/spinningtoy + category = list("initial", "Toys") + +/datum/design/autoylathe/capgun + name = "Cap Gun" + id = "capgun" + materials = list(MAT_PLASTIC = 500) + build_path = /obj/item/toy/gun + category = list("initial", "Pistols") + +/datum/design/autoylathe/capgunammo + name = "Capgun Ammo" + id = "capgunammo" + materials = list(MAT_PLASTIC = 50) + build_path = /obj/item/toy/ammo/gun + category = list("initial", "misc") + +/datum/design/autoylathe/toysword + name = "Toy Sword" + id = "toysword" + materials = list(MAT_PLASTIC = 500) + build_path = /obj/item/toy/sword + category = list("initial", "Melee") + +/datum/design/autoylathe/foamblade + name = "Foam Armblade" + id = "foamblade" + materials = list(MAT_PLASTIC = 500) + build_path = /obj/item/toy/foamblade + category = list("initial", "Melee") + +/datum/design/autoylathe/windupbox + name = "Wind Up Toolbox" + id = "windupbox" + materials = list(MAT_PLASTIC = 500) + build_path = /obj/item/toy/windupToolbox + category = list("initial", "Toys") + +/datum/design/autoylathe/toydualsword + name = "Double-Bladed Toy Sword" + id = "dbtoysword" + materials = list(MAT_PLASTIC = 1000) + build_path = /obj/item/twohanded/dualsaber/toy + category = list("initial", "Melee") + +/datum/design/autoylathe/toykatana + name = "Replica Katana" + id = "toykatana" + materials = list(MAT_PLASTIC = 50, MAT_METAL = 450) + build_path = /obj/item/toy/katana + category = list("initial", "Melee") + +/datum/design/autoylathe/snappop + name = "Snap Pop" + id = "snappop_phoenix" + materials = list(MAT_PLASTIC = 50) + build_path = /obj/item/toy/snappop + category = list("initial", "Toys") + +/datum/design/autoylathe/mech/model1 + name = "Toy Ripley" + id = "toymech1" + materials = list(MAT_PLASTIC = 250) + build_path = /obj/item/toy/prize/ripley + +/datum/design/autoylathe/mech/model2 + name = "Toy Firefighter Ripley" + id = "toymech2" + materials = list(MAT_PLASTIC = 250) + build_path = /obj/item/toy/prize/fireripley + +/datum/design/autoylathe/mech/contraband/model3 + name = "Toy Deathsquad fireripley " + id = "toymech3" + materials = list(MAT_PLASTIC = 250) + build_path = /obj/item/toy/prize/deathripley + +/datum/design/autoylathe/mech/model4 + name = "Toy Gygax" + id = "toymech4" + materials = list(MAT_PLASTIC = 250) + build_path = /obj/item/toy/prize/gygax + +/datum/design/autoylathe/mech/model5 + name = "Toy Durand" + id = "toymech5" + materials = list(MAT_PLASTIC = 250) + build_path = /obj/item/toy/prize/durand + +/datum/design/autoylathe/mech/contraband/model6 + name = "Toy H.O.N.K." + id = "toymech6" + materials = list(MAT_PLASTIC = 250) + build_path = /obj/item/toy/prize/honk + +/datum/design/autoylathe/mech/contraband/model7 + name = "Toy Marauder" + id = "toymech7" + materials = list(MAT_PLASTIC = 250) + build_path = /obj/item/toy/prize/marauder + +/datum/design/autoylathe/mech/contraband/model8 + name = "Toy Seraph" + id = "toymech8" + materials = list(MAT_PLASTIC = 250) + build_path = /obj/item/toy/prize/seraph + +/datum/design/autoylathe/mech/contraband/model9 + name = "Toy Mauler" + id = "toymech9" + materials = list(MAT_PLASTIC = 250) + build_path = /obj/item/toy/prize/mauler + +/datum/design/autoylathe/mech/model10 + name = "Toy Odysseus" + id = "toymech10" + materials = list(MAT_PLASTIC = 250) + build_path = /obj/item/toy/prize/odysseus + +/datum/design/autoylathe/mech/model11 + name = "Toy Phazon" + id = "toymech11" + materials = list(MAT_PLASTIC = 250) + build_path = /obj/item/toy/prize/phazon + +/datum/design/autoylathe/mech/contraband/model12 + name = "Toy Reticence" + id = "toymech12" + materials = list(MAT_PLASTIC = 250) + build_path = /obj/item/toy/prize/reticence + category = list("hacked", "Figurines") + +/datum/design/autoylathe/talking/AI + name = "Toy AI" + id = "ToyAICore" + materials = list(MAT_PLASTIC = 250, MAT_METAL = 50) + build_path = /obj/item/toy/talking/AI + category = list("initial", "Toys") + +/datum/design/autoylathe/talking/codex_gigas + name = "Toy Codex Gigas" + id = "ToyCodex" + materials = list(MAT_PLASTIC = 250, MAT_METAL = 50) + build_path = /obj/item/toy/talking/codex_gigas + category = list("initial", "Toys") + +/datum/design/autoylathe/talking/owl + name = "Owl Action Figure" + id = "owlactionfig" + materials = list(MAT_PLASTIC = 250, MAT_METAL = 50) + build_path = /obj/item/toy/talking/owl + +/datum/design/autoylathe/talking/griffin + name = "Griffon Action Figure" + id = "griffinactionfig" + materials = list(MAT_PLASTIC = 250, MAT_METAL = 50) + build_path = /obj/item/toy/talking/griffin + +/datum/design/autoylathe/cards + name = "Deck of Cards" + id = "carddeck" + materials = list(MAT_PLASTIC = 250) + build_path = /obj/item/toy/cards/deck + category = list("initial", "Toys") + +/datum/design/autoylathe/nuke + name = "Nuclear Fission Explosive Toy" + id = "nuketoy" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/nuke + category = list("initial", "Toys") + +/datum/design/autoylathe/minimeteor + name = "Mini-Meteor" + id = "meattoy" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/minimeteor + category = list("hacked", "Misc") + +/datum/design/autoylathe/redbutton + name = "Big Red Button" + id = "redbutton" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/redbutton + category = list("initial", "Toys") + +/datum/design/autoylathe/beach_ball + name = "Beach Ball" + id = "beachball" + materials = list(MAT_PLASTIC = 500) + build_path = /obj/item/toy/beach_ball + category = list("initial", "Toys") + +/datum/design/autoylathe/clockwork_watch + name = "Clockwork Watch" + id = "clockwatch" + materials = list(MAT_PLASTIC = 1000) + build_path = /obj/item/toy/clockwork_watch + category = list("initial", "misc") + +/datum/design/autoylathe/dagger + name = "Toy Dagger" + id = "toydagger" + materials = list(MAT_PLASTIC = 1000) + build_path = /obj/item/toy/toy_dagger + category = list("initial", "Melee") + +/datum/design/autoylathe/xeno + name = "Xenomorph" + id = "xenomorph" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/toy_xeno + +/datum/design/autoylathe/cattoy + name = "Toy Mouse" + id = "cattoy" + materials = list(MAT_PLASTIC = 500) + build_path = /obj/item/toy/cattoy + category = list("initial", "Toys") + +/datum/design/autoylathe/figure/assistant + name = "Assistant" + id = "assfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/assistant + +/datum/design/autoylathe/figure/atmos + name = "Atmos Tech" + id = "atmfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/atmos + +/datum/design/autoylathe/figure/bartender + name = "Bartender" + id = "barfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/bartender + +/datum/design/autoylathe/figure/botanist + name = "Botanist" + id = "botfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/botanist + +/datum/design/autoylathe/figure/captain + name = "Captain" + id = "capfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/captain + +/datum/design/autoylathe/figure/cargotech + name = "Cargo Technician" + id = "carfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/cargotech + +/datum/design/autoylathe/figure/ce + name = "Chief Engineer" + id = "cefigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/ce + +/datum/design/autoylathe/figure/chaplain + name = "Chaplain" + id = "chafigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/chaplain + +/datum/design/autoylathe/figure/chef + name = "Chef" + id = "chefigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/chef + +/datum/design/autoylathe/figure/chemist + name = "Chemist" + id = "chmfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/chemist + +/datum/design/autoylathe/figure/clown + name = "Clown" + id = "clnfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/clown + +/datum/design/autoylathe/figure/cmo + name = "Chief Medical Officer" + id = "cmofigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/cmo + +/datum/design/autoylathe/figure/curator + name = "Curator" + id = "curfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/curator + +/datum/design/autoylathe/figure/borg + name = "Cyborg" + id = "cybfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/borg + +/datum/design/autoylathe/figure/detective + name = "Detective" + id = "detfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/detective + +/datum/design/autoylathe/figure/engineer + name = "Engineer" + id = "engfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/engineer + +/datum/design/autoylathe/figure/geneticist + name = "Geneticist" + id = "genfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/geneticist + +/datum/design/autoylathe/figure/hop + name = "Head of Personnel" + id = "hopfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/hop + +/datum/design/autoylathe/figure/hos + name = "Head of Security" + id = "hosfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/hos + +/datum/design/autoylathe/figure/janitor + name = "Janitor" + id = "janfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/janitor + +/datum/design/autoylathe/figure/lawyer + name = "Lawyer" + id = "lawfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/lawyer + +/datum/design/autoylathe/figure/md + name = "Medical Doctor" + id = "medfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/md + +/datum/design/autoylathe/figure/mime + name = "Mime" + id = "mimfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/mime + +/datum/design/autoylathe/figure/miner + name = "Miner" + id = "minfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/miner + +/datum/design/autoylathe/figure/rd + name = "Research Director" + id = "rdfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/rd + +/datum/design/autoylathe/figure/robotocist + name = "Robotocist" + id = "robfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/roboticist + +/datum/design/autoylathe/figure/qm + name = "Quartermaster" + id = "qtmfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/qm + +/datum/design/autoylathe/figure/scientist + name = "Scientist" + id = "scifigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/scientist + +/datum/design/autoylathe/figure/secofficer + name = "Security Officer" + id = "secfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/secofficer + +/datum/design/autoylathe/figure/virologist + name = "Virologist" + id = "virfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/virologist + +/datum/design/autoylathe/figure/warden + name = "Warden" + id = "warfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/warden + +/datum/design/autoylathe/figure/dsquad + name = "Deathsquad" + id = "dsqfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/dsquad + category = list("hacked", "Figurines") + +/datum/design/autoylathe/figure/ian + name = "Ian" + id = "ianfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/ian + category = list("hacked", "Figurines") + +/datum/design/autoylathe/figure/ninja + name = "Ninja" + id = "ninfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/ninja + category = list("hacked", "Figurines") + +/datum/design/autoylathe/figure/syndie + name = "Nuclear Operative" + id = "nucfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/syndie + category = list("hacked", "Figurines") + +/datum/design/autoylathe/figure/wizard + name = "Wizard" + id = "wizfigure" + materials = list(MAT_PLASTIC = 500, MAT_METAL = 50) + build_path = /obj/item/toy/figure/wizard + category = list("hacked", "Figurines") + +/datum/design/autoylathe/dildo + name = "Customizable Dildo" + id = "dildo" + materials = list(MAT_PLASTIC = 2000) + build_path = /obj/item/dildo/custom + category = list("initial", "Adult") + +/datum/design/autoylathe/collar + name = "Collar" + id = "collar" + materials = list(MAT_PLASTIC = 250, MAT_METAL = 50) + build_path = /obj/item/clothing/neck/petcollar + category = list("initial", "Adult") + +/datum/design/autoylathe/lastag/blue/gun + name = "Blue Lasertag Rifle" + id = "lastagrifleblue" + materials = list(MAT_PLASTIC = 2000, MAT_METAL = 500, MAT_GLASS = 500) + build_path = /obj/item/gun/energy/laser/bluetag + category = list("initial", "Rifles") + +/datum/design/autoylathe/lastag/red/gun + name = "Red Lasertag Rifle" + id = "lastagriflered" + materials = list(MAT_PLASTIC = 2000, MAT_METAL = 500, MAT_GLASS = 500) + build_path = /obj/item/gun/energy/laser/redtag + category = list("initial", "Rifles") + +/datum/design/autoylathe/lastag/blue/hat + name = "Blue Lasertag Helmet" + id = "lastaghatblue" + materials = list(MAT_PLASTIC = 4000, MAT_METAL = 1000, MAT_GLASS = 500) + build_path = /obj/item/clothing/head/helmet/bluetaghelm + category = list("initial", "Armor") + +/datum/design/autoylathe/lastag/blue/armor + name = "Blue Lasertag Armor" + id = "lastagarmorblue" + materials = list(MAT_PLASTIC = 8000, MAT_METAL = 2000, MAT_GLASS = 100) + build_path = /obj/item/clothing/suit/bluetag + category = list("initial", "Armor") + +/datum/design/autoylathe/lastag/red/hat + name = "Red Lasertag Helmet" + id = "lastaghelmetred" + materials = list(MAT_PLASTIC = 4000, MAT_METAL = 1000, MAT_GLASS = 500) + build_path = /obj/item/clothing/head/helmet/redtaghelm + category = list("initial", "Armor") + +/datum/design/autoylathe/lastag/red/armor + name = "Red Lasertag Armor" + id = "lastagarmorred" + materials = list(MAT_PLASTIC = 8000, MAT_METAL = 2000, MAT_GLASS = 1000) + build_path = /obj/item/clothing/suit/redtag + category = list("initial", "Armor") + +//because why not make a boxed kit with all of the lastag shit? +/obj/item/storage/box/blueteam + name = "Blue Team Kit" +/obj/item/storage/box/blueteam/PopulateContents() + new /obj/item/clothing/head/helmet/bluetaghelm(src) + new /obj/item/clothing/suit/bluetag(src) + new /obj/item/gun/energy/laser/bluetag(src) + new /obj/item/clothing/gloves/color/blue(src) + new /obj/item/clothing/shoes/sneakers/blue(src) + new /obj/item/clothing/under/color/blue(src) + +/obj/item/storage/box/redteam + name = "Red Team Kit" +/obj/item/storage/box/redteam/PopulateContents() + new /obj/item/clothing/head/helmet/redtaghelm(src) + new /obj/item/clothing/suit/redtag(src) + new /obj/item/gun/energy/laser/redtag(src) + new /obj/item/clothing/gloves/color/red(src) + new /obj/item/clothing/shoes/sneakers/red(src) + new /obj/item/clothing/under/color/red(src) + +/datum/design/autoylathe/lastag/blue + name = "Blue Lasertag Kit" + id = "lastagkitblue" + materials = list(MAT_PLASTIC = 16000, MAT_METAL = 4000, MAT_GLASS = 2000) + build_path = /obj/item/storage/box/blueteam + category = list("initial", "Misc") + +/datum/design/autoylathe/lastag/red + name = "Red Lasertag Kit" + id = "lastagkitred" + materials = list(MAT_PLASTIC = 16000, MAT_METAL = 4000, MAT_GLASS = 2000) + build_path = /obj/item/storage/box/redteam + category = list("initial", "Misc") + +/datum/design/foam_x9 + name = "Foam Force X9 Rifle" + id = "foam_x9" + build_type = AUTOYLATHE + materials = list(MAT_PLASTIC = 4000, MAT_METAL = 500) + build_path = /obj/item/gun/ballistic/automatic/x9/toy + category = list("initial", "Rifles") + +/datum/design/magfoam_dart + name = "Box of MagFoam Darts" + id = "magfoam_dart" + build_type = AUTOYLATHE + materials = list(MAT_PLASTIC = 500, MAT_METAL = 100) + build_path = /obj/item/ammo_box/foambox/mag + category = list("initial", "Misc") + +/datum/design/foam_magpistol + name = "Foam Force Magpistol" + id = "magfoam_launcher" + build_type = AUTOYLATHE + materials = list(MAT_PLASTIC = 2000, MAT_METAL = 250) + build_path = /obj/item/gun/ballistic/shotgun/toy/mag + category = list("initial", "Pistols") + +/datum/design/foam_magrifle + name = "Foam Force MagRifle" + id = "foam_magrifle" + build_type = AUTOYLATHE + materials = list(MAT_PLASTIC = 4000, MAT_METAL = 500) + build_path = /obj/item/gun/ballistic/automatic/magrifle/toy + category = list("initial", "Rifles") + +/datum/design/foam_hyperburst + name = "MagTag Hyper Rifle" + id = "foam_hyperburst" + build_type = AUTOYLATHE + materials = list(MAT_PLASTIC = 4000, MAT_METAL = 2000, MAT_GLASS = 1000) + build_path = /obj/item/gun/energy/laser/practice/hyperburst + category = list("initial", "Rifles") + +/datum/design/foam_sp + name = "Foam Force Stealth Pistol" + id = "foam_sp" + build_type = AUTOYLATHE + materials = list(MAT_PLASTIC = 2000, MAT_METAL = 1000) + build_path = /obj/item/gun/ballistic/automatic/toy/pistol/stealth + category = list("initial", "Pistols") + +/datum/design/toyray + name = "RayTag Gun" + id = "toyray" + build_type = AUTOYLATHE + materials = list(MAT_PLASTIC = 2000, MAT_METAL = 1000, MAT_GLASS = 1000) + build_path = /obj/item/gun/energy/laser/practice/raygun + category = list("initial", "Pistols") + +/datum/design/foam_p37 + name = "Foam Force Mk.37F" + id = "foam_p37" + build_type = AUTOYLATHE + materials = list(MAT_PLASTIC = 2000, MAT_METAL = 1000, MAT_GLASS = 250) + build_path = /obj/item/gun/ballistic/automatic/pistol/p37/foam + category = list("initial", "Pistols") + +/datum/design/am4c + name = "Foam Force AM4-C Rifle" + id = "foam_am4c" + build_type = AUTOYLATHE + materials = list(MAT_PLASTIC = 4000, MAT_METAL = 500) + build_path = /obj/item/gun/ballistic/automatic/AM4C + category = list("initial", "Rifles") diff --git a/modular_citadel/code/modules/research/designs/machine_designs.dm b/modular_citadel/code/modules/research/designs/machine_designs.dm new file mode 100644 index 0000000000..6a1331dddc --- /dev/null +++ b/modular_citadel/code/modules/research/designs/machine_designs.dm @@ -0,0 +1,6 @@ +/datum/design/board/autoylathe + name = "Machine Design (Autoylathe)" + desc = "The circuit board for an autoylathe." + id = "autoylathe" + build_path = /obj/item/circuitboard/machine/autoylathe + category = list("Misc. Machinery") diff --git a/modular_citadel/code/modules/research/techweb/_techweb.dm b/modular_citadel/code/modules/research/techweb/_techweb.dm new file mode 100644 index 0000000000..1c96229594 --- /dev/null +++ b/modular_citadel/code/modules/research/techweb/_techweb.dm @@ -0,0 +1,3 @@ +/datum/techweb/specialized/autounlocking/autoylathe + design_autounlock_buildtypes = AUTOYLATHE + allowed_buildtypes = AUTOYLATHE diff --git a/modular_citadel/code/modules/research/techweb/all_nodes.dm b/modular_citadel/code/modules/research/techweb/all_nodes.dm new file mode 100644 index 0000000000..d8babf011b --- /dev/null +++ b/modular_citadel/code/modules/research/techweb/all_nodes.dm @@ -0,0 +1,8 @@ +/datum/techweb_node/computer_board_gaming + id = "computer_board_gaming" + display_name = "Games and Toys" + description = "For the slackers on the station." + prereq_ids = list("comptech") + design_ids = list("arcade_battle", "arcade_orion", "slotmachine", "autoylathe") + research_cost = 1000 + export_price = 5000 diff --git a/tgstation.dme b/tgstation.dme index e8054cfceb..7f467630a8 100755 --- a/tgstation.dme +++ b/tgstation.dme @@ -2524,9 +2524,11 @@ #include "modular_citadel\code\controllers\subsystem\shuttle.dm" #include "modular_citadel\code\datums\uplink_items_cit.dm" #include "modular_citadel\code\datums\mutations\hulk.dm" +#include "modular_citadel\code\datums\wires\autoylathe.dm" #include "modular_citadel\code\game\gamemodes\miniantags\bot_swarm\swarmer_event.dm" #include "modular_citadel\code\game\machinery\cryopod.dm" #include "modular_citadel\code\game\machinery\Sleeper.dm" +#include "modular_citadel\code\game\machinery\toylathe.dm" #include "modular_citadel\code\game\machinery\vending.dm" #include "modular_citadel\code\game\objects\ids.dm" #include "modular_citadel\code\game\objects\items\handcuffs.dm" @@ -2585,5 +2587,9 @@ #include "modular_citadel\code\modules\mob\living\silicon\robot\robot_modules.dm" #include "modular_citadel\code\modules\mob\living\simple_animal\banana_spider.dm" #include "modular_citadel\code\modules\mob\living\simple_animal\kiwi.dm" +#include "modular_citadel\code\modules\research\designs\autoylathe_designs.dm" +#include "modular_citadel\code\modules\research\designs\machine_designs.dm" +#include "modular_citadel\code\modules\research\techweb\_techweb.dm" +#include "modular_citadel\code\modules\research\techweb\all_nodes.dm" #include "modular_citadel\interface\skin.dmf" // END_INCLUDE From 7fe1c876665e343ef16563fe52a356677873d021 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 17 Feb 2018 19:18:24 -0600 Subject: [PATCH 94/94] Automatic changelog generation for PR #5534 [ci skip] --- html/changelogs/AutoChangeLog-pr-5534.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-5534.yml diff --git a/html/changelogs/AutoChangeLog-pr-5534.yml b/html/changelogs/AutoChangeLog-pr-5534.yml new file mode 100644 index 0000000000..5099a198f2 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-5534.yml @@ -0,0 +1,5 @@ +author: "Zna12" +delete-after: True +changes: + - rscadd: "Autoylathe" + - tweak: "Tweaked the description of replica katana to show that it's not as much of a toy as i thought it was."